:root {
  --bg: #020c0b;
  --bg-soft: #061512;
  --panel: #0a201a;
  --panel-strong: #0d2b22;
  --line: rgba(92, 235, 154, 0.2);
  --line-gold: rgba(231, 188, 83, 0.42);
  --text: #f4fbf7;
  --muted: #a9bbb2;
  --jade: #3ee68b;
  --jade-strong: #18bd65;
  --gold: #e8bd57;
  --gold-light: #ffe59a;
  --danger: #ffcf70;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 20px;
  --radius-sm: 13px;
  --shell: min(1140px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 15% 3%, rgba(24, 189, 101, 0.12), transparent 28rem),
    linear-gradient(180deg, #020b0a, var(--bg));
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

[hidden] {
  display: none !important;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 9px;
  background: var(--jade);
  color: #02130c;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 12, 11, 0.88);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 14px;
}

.brand {
  flex: 0 0 auto;
  color: var(--gold-light);
  font-size: 26px;
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
  text-shadow: 0 2px 18px rgba(232, 189, 87, 0.24);
}

.brand span {
  color: var(--jade);
}

.desktop-nav {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 20px;
}

.desktop-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--text);
}

.site-header__actions {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 8px;
}

.header-login {
  display: none;
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
}

.header-register {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(75, 245, 147, 0.55);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--jade), var(--jade-strong));
  box-shadow: 0 10px 26px rgba(24, 189, 101, 0.24);
  color: #03150d;
  font-size: 11px;
  font-weight: 950;
  padding: 0 12px;
}

.menu-trigger {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  cursor: pointer;
}

.menu-trigger span,
.menu-trigger::before,
.menu-trigger::after {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
  content: "";
}

.menu-trigger {
  gap: 4px;
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: #04100e;
  padding: 12px 16px 18px;
}

.mobile-menu nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mobile-menu a {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  padding: 11px 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.02em;
  padding: 0 18px;
  transition: transform 0.18s ease, filter 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.button--large {
  min-height: 54px;
  font-size: 15px;
  padding-inline: 22px;
}

.button--primary {
  border-color: rgba(93, 255, 160, 0.62);
  background: linear-gradient(135deg, var(--jade), var(--jade-strong));
  box-shadow: 0 14px 36px rgba(24, 189, 101, 0.25);
  color: #03170e;
}

.button--gold {
  border-color: rgba(255, 229, 154, 0.55);
  background: linear-gradient(135deg, var(--gold-light), #d9a337);
  box-shadow: 0 14px 36px rgba(232, 189, 87, 0.2);
  color: #201603;
}

.button--quiet {
  border-color: var(--line);
  background: rgba(4, 20, 16, 0.7);
  color: var(--text);
}

.button--full {
  width: 100%;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--jade);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 660px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 10, 9, 0.12), rgba(2, 12, 11, 0.95) 86%),
    linear-gradient(90deg, rgba(2, 12, 11, 0.94), rgba(2, 12, 11, 0.12)),
    url("/assets/images/hero-go99-v2.webp") 67% center / cover no-repeat;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 45%, rgba(62, 230, 139, 0.09), transparent 19rem);
  content: "";
}

.hero__inner {
  display: flex;
  min-height: 660px;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: 90px 58px;
}

.hero h1,
.page-hero h1,
.article-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 11vw, 70px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero__copy {
  max-width: 610px;
  margin: 18px 0 0;
  color: #d1dfd8;
  font-size: clamp(16px, 4.5vw, 20px);
}

.hero__actions {
  display: flex;
  margin-top: 26px;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.trust-strip {
  position: relative;
  z-index: 4;
  display: grid;
  margin-top: -28px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  background: rgba(6, 26, 21, 0.96);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-strip__item {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
}

.trust-strip__item:last-child {
  border-bottom: 0;
}

.trust-strip__icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 12px;
  color: var(--gold-light);
  font-size: 23px;
}

.trust-strip strong,
.trust-strip small {
  display: block;
}

.trust-strip strong {
  font-size: 14px;
}

.trust-strip small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.section {
  padding-block: 64px;
}

.section--tinted {
  border-block: 1px solid rgba(92, 235, 154, 0.08);
  background:
    radial-gradient(circle at 80% 20%, rgba(24, 189, 101, 0.08), transparent 25rem),
    var(--bg-soft);
}

.section-heading {
  max-width: 670px;
  margin-bottom: 26px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.benefit-card h2,
.split-cta h2 {
  margin: 0;
  font-size: clamp(28px, 8vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.benefit-card p:not(.eyebrow),
.split-cta p {
  margin: 12px 0 0;
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.category-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.category-card::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(1, 10, 8, 0.96));
  content: "";
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-card:hover img {
  transform: scale(1.035);
}

.category-card__label {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  left: 12px;
}

.category-card__label strong,
.category-card__label small {
  display: block;
}

.category-card__label strong {
  font-size: 16px;
}

.category-card__label small {
  color: #bed0c7;
  font-size: 11px;
}

.benefit-card {
  display: grid;
  gap: 24px;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 50%, rgba(232, 189, 87, 0.15), transparent 17rem),
    linear-gradient(135deg, #0b3526, #061713);
  box-shadow: var(--shadow);
  padding: 28px;
}

.benefit-card__art {
  width: 100%;
  height: 100%;
  min-height: 190px;
  border-radius: 16px;
  object-fit: cover;
}

.benefit-card__content .button {
  margin-top: 20px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.reason-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(8, 34, 27, 0.72);
  padding: 20px 16px;
}

.reason-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 12px;
  color: var(--gold-light);
  font-size: 22px;
  font-weight: 900;
}

.reason-card h3 {
  margin: 14px 0 6px;
  font-size: 16px;
}

.reason-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.steps {
  display: grid;
  margin: 0;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.steps li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, var(--panel-strong), rgba(5, 20, 16, 0.8));
  padding: 20px;
}

.steps__number {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--jade);
  color: #03150d;
  font-weight: 950;
}

.steps h3 {
  margin: 0;
  font-size: 18px;
}

.steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.guide-card {
  min-height: 150px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, #0c2a20, #06130f);
  padding: 20px;
}

.guide-card span {
  color: var(--jade);
  font-size: 28px;
}

.guide-card h3 {
  margin: 18px 0 6px;
  font-size: 15px;
  line-height: 1.25;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.faq-layout {
  display: grid;
  gap: 10px 34px;
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(6, 28, 22, 0.78);
  padding: 0 16px;
}

.faq-list details[open] {
  border-color: var(--line-gold);
}

.faq-list summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--jade);
  content: "+";
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -2px 0 16px;
  color: var(--muted);
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 12, 11, 0.15), rgba(2, 12, 11, 0.98) 86%),
    linear-gradient(90deg, rgba(2, 12, 11, 0.91), rgba(2, 12, 11, 0.1)),
    var(--page-image) center / cover no-repeat;
}

.page-hero__inner {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-block: 80px 52px;
}

.page-hero__inner > p:not(.eyebrow) {
  max-width: 650px;
  margin: 16px 0 22px;
  color: #cedbd5;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 7px;
  color: #c5d3cc;
  font-size: 12px;
}

.breadcrumbs a {
  color: var(--jade);
}

.breadcrumbs span[aria-hidden="true"] {
  color: #61766c;
}

.article-list {
  display: grid;
  gap: 14px;
}

.article-card {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--panel), rgba(5, 19, 15, 0.82));
  padding: 20px;
}

.article-card:hover {
  border-color: var(--line-gold);
}

.article-card__index {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 14px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 950;
}

.article-card h3 {
  margin: 0;
  font-size: clamp(20px, 5.5vw, 28px);
  line-height: 1.18;
}

.article-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.article-card__more {
  display: inline-flex;
  margin-top: 14px;
  align-items: center;
  gap: 8px;
  color: var(--jade);
  font-size: 13px;
  font-weight: 900;
}

.split-cta {
  display: grid;
  gap: 24px;
  align-items: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.related-card {
  min-height: 126px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  padding: 18px;
}

.related-card small {
  color: var(--jade);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.related-card strong {
  display: block;
  margin-top: 9px;
  font-size: 15px;
  line-height: 1.3;
}

.article-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 20%, rgba(62, 230, 139, 0.14), transparent 24rem),
    linear-gradient(165deg, #071d17, #020c0b);
}

.article-hero__inner {
  padding-block: 64px 50px;
}

.article-hero__lead {
  max-width: 740px;
  margin: 20px 0 0;
  color: #c6d6ce;
  font-size: clamp(17px, 4.5vw, 21px);
}

.article-hero__trust {
  display: flex;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 8px;
}

.article-hero__trust span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 34, 27, 0.7);
  color: #cfe0d7;
  font-size: 11px;
  padding: 7px 10px;
}

.article-layout {
  display: grid;
  gap: 24px;
  padding-block: 42px 70px;
}

.toc-card {
  align-self: start;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-sm);
  background: var(--panel);
  padding: 20px;
}

.toc-card nav {
  display: grid;
  margin: 12px 0 20px;
  gap: 9px;
}

.toc-card nav a {
  color: var(--muted);
  font-size: 13px;
}

.toc-card nav a:hover,
.toc-card nav a:focus-visible {
  color: var(--jade);
}

.article-content {
  min-width: 0;
}

.article-content section + section {
  margin-top: 38px;
}

.article-content h2 {
  margin: 0 0 14px;
  scroll-margin-top: 95px;
  font-size: clamp(26px, 7vw, 38px);
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.article-content h3 {
  margin: 25px 0 9px;
  font-size: 20px;
}

.article-content p {
  margin: 0 0 16px;
  color: #c5d3cc;
}

.article-content ul,
.article-content ol {
  display: grid;
  margin: 18px 0;
  gap: 10px;
  color: #c5d3cc;
  padding-left: 22px;
}

.checklist {
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(10, 39, 30, 0.62);
  padding: 18px;
}

.checklist strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
}

.checklist ul {
  margin: 0;
}

.inline-cta {
  display: grid;
  margin: 30px 0;
  gap: 18px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 30%, rgba(232, 189, 87, 0.12), transparent 15rem),
    #08251c;
  padding: 24px;
}

.inline-cta h3 {
  margin: 0;
}

.inline-cta p {
  margin: 6px 0 0;
}

.responsible-box {
  margin-top: 38px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(232, 189, 87, 0.08);
  padding: 18px;
}

.responsible-box strong {
  color: var(--gold-light);
}

.responsible-box p {
  margin: 6px 0 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #010706;
  padding-block: 46px 30px;
}

.responsible-strip {
  display: flex;
  margin-bottom: 38px;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-sm);
  background: rgba(14, 36, 28, 0.78);
  padding: 16px;
}

.responsible-strip__badge {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-weight: 950;
}

.responsible-strip strong,
.responsible-strip small {
  display: block;
}

.responsible-strip small {
  margin-top: 2px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand p {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #75877e;
  font-size: 11px;
  padding-top: 20px;
}

.mobile-cta {
  position: fixed;
  z-index: 90;
  right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  left: 12px;
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(125, 255, 179, 0.72);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--jade), var(--jade-strong));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  color: #02140c;
  font-size: 16px;
  font-weight: 950;
}

.error-page {
  display: grid;
  min-height: calc(100vh - 70px);
  place-items: center;
  text-align: center;
  padding: 60px 16px;
}

.error-page__code {
  color: var(--jade);
  font-size: clamp(90px, 30vw, 180px);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.error-page h1 {
  margin: 24px 0 8px;
  font-size: 34px;
}

.error-page p {
  margin: 0 0 24px;
  color: var(--muted);
}

@media (max-width: 559px) {
  .home-page {
    --shell: calc(100% - 24px);
    font-size: 13px;
    line-height: 1.45;
    padding-bottom: 0;
  }

  .home-page .site-header__inner {
    min-height: 58px;
    gap: 7px;
  }

  .home-page .menu-trigger {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    order: 1;
    border-color: transparent;
    background: transparent;
  }

  .home-page .brand {
    order: 2;
    color: var(--gold-light);
    font-size: 25px;
  }

  .home-page .brand span {
    color: var(--gold-light);
  }

  .home-page .desktop-nav {
    order: 3;
  }

  .home-page .site-header__actions {
    order: 4;
    gap: 5px;
  }

  .home-page .header-login {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px solid rgba(75, 245, 147, 0.65);
    border-radius: 7px;
    font-size: 8px;
    padding-inline: 8px;
  }

  .home-page .header-register {
    min-height: 34px;
    border-radius: 7px;
    font-size: 8px;
    padding-inline: 9px;
  }

  .home-page .hero,
  .home-page .hero__inner {
    min-height: 355px;
  }

  .home-page .hero__media {
    background:
      linear-gradient(90deg, rgba(1, 10, 9, 0.96) 2%, rgba(1, 10, 9, 0.7) 42%, rgba(1, 10, 9, 0.08) 72%),
      linear-gradient(180deg, rgba(1, 10, 9, 0.06), rgba(2, 12, 11, 0.72)),
      url("/assets/images/hero-go99-v2.webp") center / auto 100% no-repeat;
  }

  .home-page .hero__inner {
    align-items: flex-start;
    justify-content: center;
    padding-block: 26px 20px;
  }

  .home-page .hero .eyebrow,
  .home-page .hero .button--quiet,
  .home-page .hero__note {
    display: none;
  }

  .home-page .hero h1 {
    max-width: 61%;
    font-size: clamp(23px, 6.7vw, 28px);
    letter-spacing: -0.045em;
    line-height: 1.06;
    text-wrap: wrap;
  }

  .home-page .hero__brand-word {
    color: var(--jade);
  }

  .home-page .hero__copy {
    max-width: 58%;
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.4;
  }

  .home-page .hero__actions {
    margin-top: 17px;
  }

  .home-page .hero__actions .button {
    min-height: 45px;
    border-radius: 10px;
    font-size: 11px;
    padding-inline: 16px;
  }

  .home-page .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: -14px;
    border-radius: 12px;
  }

  .home-page .trust-strip__item {
    min-width: 0;
    min-height: 64px;
    gap: 6px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    padding: 7px 5px;
  }

  .home-page .trust-strip__item:last-child {
    border-right: 0;
  }

  .home-page .trust-strip__icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    font-size: 15px;
  }

  .home-page .trust-strip strong {
    font-size: 8px;
    line-height: 1.2;
  }

  .home-page .trust-strip small {
    font-size: 7px;
    line-height: 1.2;
  }

  .home-page .section {
    padding-block: 25px;
  }

  .home-page .section-heading {
    margin-bottom: 14px;
  }

  .home-page .section-heading .eyebrow,
  .home-page .section-heading > p:not(.eyebrow) {
    display: none;
  }

  .home-page .section-heading h2,
  .home-page .benefit-card h2 {
    font-size: 22px;
    line-height: 1.05;
  }

  .home-page .section-heading--center h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
  }

  .home-page .section-heading--center h2::before,
  .home-page .section-heading--center h2::after {
    width: 31px;
    height: 1px;
    flex: 0 0 auto;
    background: linear-gradient(90deg, transparent, var(--jade));
    content: "";
  }

  .home-page .section-heading--center h2::after {
    background: linear-gradient(90deg, var(--jade), transparent);
  }

  .home-page .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .home-page .category-card {
    min-height: 0;
    aspect-ratio: 1.12;
    border-radius: 10px;
  }

  .home-page .category-card img {
    height: 100%;
    min-height: 0;
  }

  .home-page .category-card__label {
    right: 4px;
    bottom: 5px;
    left: 4px;
    text-align: center;
  }

  .home-page .category-card__label strong {
    font-size: 10px;
    line-height: 1.1;
  }

  .home-page .category-card__label small {
    display: none;
  }

  .home-page .category-card::after {
    inset: 45% 0 0;
  }

  .home-page .benefit-card {
    grid-template-columns: 42% 58%;
    min-height: 145px;
    gap: 0;
    border-radius: 12px;
    padding: 0;
  }

  .home-page .benefit-card__art {
    min-height: 145px;
    border-radius: 0;
  }

  .home-page .benefit-card__content {
    align-self: center;
    padding: 12px 12px 12px 9px;
  }

  .home-page .benefit-card .eyebrow {
    display: none;
  }

  .home-page .benefit-card h2 {
    color: var(--gold-light);
    font-size: 17px;
  }

  .home-page .benefit-card p:not(.eyebrow) {
    margin-top: 7px;
    font-size: 9px;
    line-height: 1.35;
  }

  .home-page .benefit-card__content .button {
    min-height: 32px;
    margin-top: 9px;
    border-radius: 7px;
    font-size: 9px;
    padding-inline: 10px;
  }

  .home-page .reason-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line-gold);
    border-radius: 12px;
    background: rgba(8, 34, 27, 0.72);
  }

  .home-page .reason-card {
    min-width: 0;
    border: 0;
    border-right: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    text-align: center;
    padding: 10px 4px;
  }

  .home-page .reason-card:last-child {
    border-right: 0;
  }

  .home-page .reason-card > span {
    width: 31px;
    height: 31px;
    margin-inline: auto;
    border-radius: 8px;
    font-size: 16px;
  }

  .home-page .reason-card h3 {
    margin: 8px 0 4px;
    font-size: 9px;
    line-height: 1.2;
  }

  .home-page .reason-card p {
    font-size: 7px;
    line-height: 1.25;
  }

  .home-page .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .home-page .steps li {
    display: block;
    min-width: 0;
    min-height: 128px;
    text-align: center;
    padding: 10px 6px;
  }

  .home-page .steps__number {
    width: 30px;
    height: 30px;
    margin-inline: auto;
    font-size: 11px;
  }

  .home-page .steps h3 {
    margin-top: 8px;
    font-size: 10px;
  }

  .home-page .steps p {
    margin-top: 4px;
    font-size: 8px;
    line-height: 1.3;
  }

  .home-page .guide-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .home-page .guide-card {
    min-width: 0;
    min-height: 124px;
    border-radius: 10px;
    text-align: center;
    padding: 10px 5px;
  }

  .home-page .guide-card span {
    font-size: 24px;
  }

  .home-page .guide-card h3 {
    margin: 9px 0 0;
    font-size: 9px;
    line-height: 1.22;
  }

  .home-page .guide-card p {
    display: none;
  }

  .home-page .faq-layout {
    gap: 8px;
  }

  .home-page .faq-layout .section-heading {
    margin-inline: auto;
    text-align: center;
  }

  .home-page .faq-list {
    gap: 6px;
  }

  .home-page .faq-list details {
    border-radius: 8px;
    padding-inline: 10px;
  }

  .home-page .faq-list summary {
    min-height: 37px;
    font-size: 9px;
  }

  .home-page .faq-list summary::after {
    font-size: 16px;
  }

  .home-page .faq-list details p {
    margin: 0 0 10px;
    font-size: 8px;
    line-height: 1.35;
  }

  .home-page .site-footer {
    text-align: center;
    padding-block: 22px 18px;
  }

  .home-page .responsible-strip {
    margin-bottom: 20px;
    min-height: 68px;
    justify-content: center;
    border-radius: 10px;
    padding: 10px;
    text-align: left;
  }

  .home-page .responsible-strip__badge {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .home-page .responsible-strip strong {
    font-size: 10px;
  }

  .home-page .responsible-strip small,
  .home-page .footer-brand p,
  .home-page .footer-links a {
    font-size: 8px;
  }

  .home-page .footer-grid {
    gap: 14px;
  }

  .home-page .footer-brand .brand {
    display: inline-flex;
    font-size: 29px;
  }

  .home-page .footer-brand p {
    margin: 7px auto 0;
  }

  .home-page .footer-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .home-page .footer-bottom {
    margin-top: 16px;
    justify-content: center;
    font-size: 7px;
    padding-top: 12px;
  }

  .home-page .mobile-cta {
    position: static;
    width: auto;
    min-height: 48px;
    margin: 10px 12px calc(12px + env(safe-area-inset-bottom));
    border-radius: 9px;
    font-size: 14px;
  }
}

@media (min-width: 560px) {
  .header-login {
    display: inline-flex;
  }

  .header-register {
    min-height: 42px;
    font-size: 12px;
    padding-inline: 15px;
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-strip__item {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .trust-strip__item:last-child {
    border-right: 0;
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-card,
  .split-cta,
  .inline-cta {
    grid-template-columns: minmax(200px, 0.7fr) minmax(0, 1.3fr);
  }

  .split-cta,
  .inline-cta {
    align-items: center;
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps li {
    display: block;
  }

  .steps h3 {
    margin-top: 16px;
  }

  .guide-grid,
  .reason-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .article-card {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 820px) {
  body {
    padding-bottom: 0;
  }

  .site-header__inner {
    min-height: 76px;
  }

  .desktop-nav {
    display: flex;
  }

  .menu-trigger,
  .mobile-menu {
    display: none !important;
  }

  .hero {
    min-height: 720px;
  }

  .hero__inner {
    min-height: 720px;
    justify-content: center;
    padding-block: 100px;
  }

  .hero__media {
    background:
      linear-gradient(90deg, rgba(1, 10, 9, 0.95) 5%, rgba(1, 10, 9, 0.55) 47%, rgba(1, 10, 9, 0.04) 72%),
      linear-gradient(180deg, rgba(1, 10, 9, 0.05), rgba(2, 12, 11, 0.7)),
      url("/assets/images/hero-go99-v2.webp") center / cover no-repeat;
  }

  .trust-strip {
    margin-top: -44px;
  }

  .section {
    padding-block: 90px;
  }

  .category-card,
  .category-card img {
    min-height: 250px;
  }

  .benefit-card {
    padding: 42px;
  }

  .faq-layout {
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
  }

  .article-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    padding-block: 62px 100px;
  }

  .toc-card {
    position: sticky;
    top: 100px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

  .mobile-cta {
    display: none;
  }
}

@media (min-width: 1080px) {
  .category-grid {
    gap: 18px;
  }

  .reason-grid,
  .guide-grid {
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
