:root {
  --ink: #090b0d;
  --ink-soft: #11151a;
  --ink-raised: #171c22;
  --paper: #0b0e12;
  --paper-raised: #12161b;
  --white: #e7ebe8;
  --text: #f7f8f4;
  --text-dark: #e7ebe8;
  --muted: #9ba4ae;
  --muted-dark: #929b96;
  --accent: #caff18;
  --accent-soft: #e7ffa1;
  --purple: #9d83ff;
  --blue: #69d8ff;
  --warm: #ffb66d;
  --danger: #ef6b6b;
  --line: rgba(202, 255, 24, 0.12);
  --line-strong: rgba(202, 255, 24, 0.24);
  --line-dark: rgba(202, 255, 24, 0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  --shadow-soft: 0 18px 50px rgba(18, 23, 28, 0.1);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --max-width: 1280px;
  --frontend-home-shell: 89.375vw;
  --frontend-service-shell: 73.958333vw;
  --frontend-content-shell: 66.666667vw;
  --frontend-mobile-gutter: 14px;
  --frontend-touch-target: 44px;
  --frontend-overlay-scale: 1;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Barlow Condensed', Impact, 'Arial Narrow', sans-serif;
}

/* Reference-locked homepage rebuild (1920×1080 design system) */

.home-reference-page {
  --reference-shell: var(--frontend-home-shell);
  --reference-header: clamp(72px, 9.26svh, 100px);
  --reference-trust-panel: clamp(75px, 8.2svh, 92px);
  --reference-bottom-gap: clamp(16px, 2.2svh, 24px);
  --reference-trust: calc(var(--reference-trust-panel) + var(--reference-bottom-gap));
  --reference-hero: max(560px, calc(100svh - var(--reference-header) - var(--reference-trust)));
  background: #020305;
  color: #f6f7f4;
  overflow-x: hidden;
}

.home-reference-page .top-announcement {
  display: none !important;
}

.home-reference-page .floating-support {
  display: none !important;
}

.home-reference-page .site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--reference-header);
  border-bottom: 1px solid rgba(112, 121, 128, 0.28);
  background: rgba(2, 4, 6, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.home-reference-page .header-inner {
  width: var(--reference-shell);
  height: 100%;
  margin-inline: auto;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: clamp(18px, 1.2vw, 24px);
}

.home-reference-page .brand-logo {
  width: clamp(184px, 11.46vw, 220px);
  display: block;
}

.home-reference-page .desktop-nav {
  align-self: stretch;
  justify-content: center;
  gap: clamp(0px, 0.12vw, 3px);
  white-space: nowrap;
}

.home-reference-page .desktop-nav a {
  position: relative;
  min-height: 100%;
  padding-inline: clamp(8px, 0.68vw, 13px);
  display: inline-flex;
  align-items: center;
  color: #f0f2ee;
  font-size: clamp(11px, 0.73vw, 14px);
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease;
}

.home-reference-page .desktop-nav a::after {
  content: '';
  position: absolute;
  right: clamp(8px, 0.68vw, 13px);
  bottom: -1px;
  left: clamp(8px, 0.68vw, 13px);
  height: 3px;
  background: #cfff00;
  box-shadow: 0 0 16px rgba(207, 255, 0, 0.32);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 150ms ease;
}

.home-reference-page .desktop-nav a:hover,
.home-reference-page .desktop-nav a:focus-visible,
.home-reference-page .desktop-nav a[aria-current='page'] {
  color: #d6ff00;
}

.home-reference-page .desktop-nav a:hover::after,
.home-reference-page .desktop-nav a:focus-visible::after,
.home-reference-page .desktop-nav a[aria-current='page']::after {
  transform: scaleX(1);
}

.home-reference-page .header-actions {
  gap: clamp(8px, 0.72vw, 18px);
}

.home-reference-page .header-balance {
  min-height: 44px;
  padding-inline: 16px;
  border-color: rgba(207, 255, 0, 0.2);
  border-radius: 6px;
  background: #0a0d0f;
}

.home-reference-page .header-cta {
  min-width: 132px;
  min-height: 44px;
  padding-inline: 18px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, #ceff00, #baf400);
  box-shadow: 0 0 24px rgba(207, 255, 0, 0.16);
  color: #050700;
  font-size: 13px;
  font-weight: 800;
}

.home-reference-page .header-cta:hover {
  background: #dcff37;
  transform: translateY(-1px);
}

.home-reference-page main {
  position: relative;
  background: #020305;
}

.home-reference-page .hero {
  position: relative;
  width: 100%;
  max-width: none;
  height: var(--reference-hero);
  min-height: var(--reference-hero);
  margin: 0;
  padding: clamp(42px, 6.48svh, 70px) calc((100vw - var(--reference-shell)) / 2) clamp(20px, 2.96svh, 32px);
  box-sizing: border-box;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 62%);
  grid-template-rows: minmax(0, 1fr) clamp(224px, 24.07svh, 260px);
  column-gap: 0;
  row-gap: 0;
  align-items: start;
  isolation: isolate;
  background: #020305;
}

.home-reference-page .hero::before {
  content: '';
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: url('images/hero-combined-reference-v3.png');
  background-color: #020305;
  background-repeat: no-repeat;
  background-position: right calc(113.5px - 26.15svh);
  background-size: min(1920px, 177.78svh) auto;
  transform: none;
  opacity: 1;
}

.home-reference-page .hero::after {
  content: '';
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 3, 5, 0.98) 0%, rgba(2, 3, 5, 0.9) 25%, rgba(2, 3, 5, 0.44) 42%, transparent 60%),
    linear-gradient(180deg, rgba(2, 3, 5, 0.12) 0%, transparent 48%, rgba(2, 3, 5, 0.12) 65%, rgba(2, 3, 5, 0.8) 91%, #020305 100%);
  mask-image: none;
  opacity: 1;
  pointer-events: none;
}

.home-reference-page .hero-copy {
  position: relative;
  z-index: 3;
  grid-column: 1;
  grid-row: 1;
  width: min(100%, 610px);
  max-width: none;
  margin: 0;
  align-self: start;
}

.home-reference-page .hero .eyebrow {
  gap: clamp(10px, 0.72vw, 14px);
  color: #d3ff00;
  font-size: clamp(11px, 0.73vw, 14px);
  font-weight: 800;
  letter-spacing: 0.055em;
}

.home-reference-page .hero .eyebrow > span {
  width: clamp(26px, 1.72vw, 33px);
  height: 2px;
  background: #d3ff00;
  box-shadow: 0 0 12px rgba(211, 255, 0, 0.45);
}

.home-reference-page .hero h1 {
  margin: clamp(14px, 1.08vw, 21px) 0 0;
  color: #f8f8f5;
  font-family: var(--font-display);
  font-size: clamp(58px, 4.28vw, 86px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.78);
}

.home-reference-page .hero h1 span,
.home-reference-page .hero h1 em {
  display: block;
}

.home-reference-page .hero h1 em {
  margin-top: clamp(2px, 0.25vw, 5px);
  color: #cfff00;
  font-style: normal;
}

.home-reference-page .hero-copy > p {
  max-width: 500px;
  margin: clamp(18px, 1.22vw, 24px) 0 0;
  color: #e0e3df;
  font-size: clamp(13px, 0.87vw, 16px);
  font-weight: 450;
  line-height: 1.55;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.82);
}

.home-reference-page .hero-actions {
  margin-top: clamp(20px, 1.55vw, 30px);
  display: flex;
}

.home-reference-page .mobile-services-cta {
  display: none;
}

.home-reference-page .hero .hero-actions .button {
  min-width: 186px;
  min-height: 50px;
  padding-inline: 22px;
  border: 1px solid rgba(207, 255, 0, 0.62);
  border-radius: clamp(5px, 0.35vw, 7px);
  background: rgba(3, 6, 7, 0.76);
  color: #f1f3ef;
  font-size: 13px;
  font-weight: 750;
  box-shadow: inset 0 0 0 1px rgba(207, 255, 0, 0.06);
}

.home-reference-page .hero .hero-actions .button:hover {
  border-color: #d2ff00;
  background: rgba(207, 255, 0, 0.08);
  color: #d2ff00;
}

.home-reference-page .hero-graphic-stage {
  display: none;
}

.home-reference-page .hero-service-carousel {
  position: relative;
  z-index: 5;
  width: 100%;
  min-width: 0;
  height: 100%;
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
}

.home-reference-page .hero-services-title {
  position: absolute;
  top: clamp(-44px, -2.25vw, -32px);
  left: 0;
  margin: 0;
  gap: clamp(10px, 0.75vw, 14px);
  color: #f5f6f3;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.02vw, 20px);
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 3px 13px rgba(0, 0, 0, 0.8);
}

.home-reference-page .hero-services-title > span {
  width: clamp(27px, 1.72vw, 33px);
  height: 2px;
  background: #d3ff00;
  box-shadow: 0 0 12px rgba(211, 255, 0, 0.45);
}

.home-reference-page .hero-service-rail {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: clamp(8px, 0.55vw, 11px);
  overflow: visible;
}

.home-reference-page .hero-service-rail::before {
  display: none;
}

.home-reference-page .hero-service-rail .hero-service-card {
  position: relative;
  width: auto;
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
  padding: clamp(14px, 0.92vw, 18px);
  overflow: hidden;
  border: 1px solid rgba(131, 143, 151, 0.28);
  border-radius: clamp(6px, 0.42vw, 8px);
  display: block;
  background:
    radial-gradient(circle at 52% 33%, rgba(207, 255, 0, 0.035), transparent 35%),
    linear-gradient(145deg, rgba(13, 18, 21, 0.96), rgba(4, 7, 9, 0.98));
  color: #f4f5f2;
  text-decoration: none;
  box-shadow: inset 0 -1px 0 rgba(126, 39, 255, 0.2), 0 18px 42px rgba(0, 0, 0, 0.22);
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.home-reference-page .hero-service-rail .hero-service-card::before {
  content: '01';
  position: absolute;
  z-index: 3;
  top: clamp(7px, 0.48vw, 10px);
  left: clamp(10px, 0.72vw, 14px);
  color: #d2ff00;
  font-family: var(--font-display);
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: 750;
}

.home-reference-page .hero-service-card:nth-child(2)::before { content: '02'; }
.home-reference-page .hero-service-card:nth-child(3)::before { content: '03'; }
.home-reference-page .hero-service-card:nth-child(4)::before { content: '04'; }
.home-reference-page .hero-service-card:nth-child(5)::before { content: '05'; }
.home-reference-page .hero-service-card:nth-child(6)::before { content: '06'; }
.home-reference-page .hero-service-card:nth-child(7)::before { content: '07'; }
.home-reference-page .hero-service-card:nth-child(8)::before { content: '08'; }

.home-reference-page .hero-service-rail .hero-service-card::after {
  content: '›';
  position: absolute;
  right: clamp(12px, 0.82vw, 16px);
  bottom: clamp(13px, 0.88vw, 17px);
  width: clamp(30px, 1.92vw, 37px);
  height: clamp(30px, 1.92vw, 37px);
  border: 1px solid #d2ff00;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #d2ff00;
  font-size: clamp(21px, 1.42vw, 27px);
  line-height: 1;
}

.home-reference-page .hero-service-rail .hero-service-card:hover,
.home-reference-page .hero-service-rail .hero-service-card:focus-visible {
  border-color: rgba(207, 255, 0, 0.72);
  background:
    radial-gradient(circle at 52% 33%, rgba(207, 255, 0, 0.085), transparent 37%),
    linear-gradient(145deg, rgba(17, 23, 26, 0.98), rgba(5, 8, 10, 0.98));
  transform: translateY(-4px);
}

.home-reference-page .hero-service-icon {
  position: absolute;
  top: clamp(8px, 0.52vw, 11px);
  left: 50%;
  width: clamp(102px, 6.55vw, 126px);
  height: clamp(102px, 6.55vw, 126px);
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: transparent;
  font-size: 0;
  filter: drop-shadow(0 10px 13px rgba(0, 0, 0, 0.54));
  transform: translateX(-50%);
}

.home-reference-page .hero-service-card:nth-child(1) .hero-service-icon { background-image: url('images/service-emblem-coin-buy.webp'); }
.home-reference-page .hero-service-card:nth-child(2) .hero-service-icon { background-image: url('images/service-emblem-weekend-league.webp'); }
.home-reference-page .hero-service-card:nth-child(3) .hero-service-icon { background-image: url('images/service-emblem-rivals.webp'); }
.home-reference-page .hero-service-card:nth-child(4) .hero-service-icon { background-image: url('images/service-emblem-draft.webp'); }
.home-reference-page .hero-service-card:nth-child(5) .hero-service-icon { background-image: url('images/service-emblem-squad-battles.webp'); }
.home-reference-page .hero-service-card:nth-child(6) .hero-service-icon { background-image: url('images/service-emblem-objective.webp'); }
.home-reference-page .hero-service-card:nth-child(7) .hero-service-icon { background-image: url('images/service-emblem-coaching.webp'); }
.home-reference-page .hero-service-card:nth-child(8) .hero-service-icon { background-image: url('images/service-emblem-trade-group.webp'); }

/* Normalize differing transparent margins so every visible emblem reads at the same height. */
.home-reference-page .hero-service-card:nth-child(1) .hero-service-icon { background-size: 95% auto; }
.home-reference-page .hero-service-card:nth-child(5) .hero-service-icon { background-size: auto 93.2%; }

.home-reference-page .hero-service-rail .hero-service-card > span:last-child {
  position: absolute;
  right: clamp(13px, 0.85vw, 16px);
  bottom: clamp(13px, 0.85vw, 16px);
  left: clamp(14px, 0.92vw, 18px);
  display: grid;
}

.home-reference-page .hero-service-rail strong {
  padding-right: clamp(34px, 2.2vw, 42px);
  color: #f7f8f5;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.06vw, 20px);
  font-weight: 850;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.home-reference-page .hero-service-rail b {
  min-height: 2.8em;
  margin-top: clamp(6px, 0.42vw, 8px);
  padding-right: clamp(34px, 2.2vw, 42px);
  color: #b3bbb6;
  font-size: clamp(9px, 0.59vw, 11px);
  font-weight: 500;
  line-height: 1.42;
}

.home-reference-page .hero-service-rail small {
  display: none;
}

.home-reference-page .trust-strip {
  width: 100%;
  height: var(--reference-trust);
  padding: 0;
  display: block !important;
  background: #020305;
}

.home-reference-page .trust-grid {
  width: var(--reference-shell);
  height: var(--reference-trust-panel);
  min-height: 0;
  margin-inline: auto;
  border: none;
  border-radius: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: transparent;
  box-shadow: none;
}

.home-reference-page .trust-grid article {
  min-width: 0;
  padding: clamp(12px, 1.1vw, 18px) clamp(10px, 1vw, 16px);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 0.85vw, 16px);
}

.home-reference-page .trust-grid article:last-child,
.home-reference-page .trust-grid article:last-of-type {
  border-right: 0 !important;
}

.home-reference-page .trust-icon {
  width: clamp(28px, 2.0vw, 36px);
  height: clamp(28px, 2.0vw, 36px);
  border: 0;
  display: grid;
  place-items: center;
  color: var(--accent);
  opacity: 1;
}

.home-reference-page .trust-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-reference-page .trust-symbol {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.2vw, 38px);
  font-weight: 400;
  line-height: 1;
}

.home-reference-page .trust-order-icon {
  position: relative;
}

.home-reference-page .trust-order-icon::before {
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 25%;
  width: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.72;
}

.home-reference-page .trust-order-icon i {
  position: absolute;
  left: 14%;
  width: 24%;
  aspect-ratio: 1;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #020305;
}

.home-reference-page .trust-order-icon i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 150%;
  width: 230%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
}

.home-reference-page .trust-order-icon i:nth-child(1) {
  top: 5%;
}

.home-reference-page .trust-order-icon i:nth-child(2) {
  top: 38%;
}

.home-reference-page .trust-order-icon i:nth-child(3) {
  top: 71%;
}

.home-reference-page .trust-star {
  font-family: Arial, sans-serif;
  font-size: clamp(26px, 2.0vw, 34px);
}

.home-reference-page .trust-grid article > div {
  min-width: 0;
  display: grid;
}

.home-reference-page .trust-grid b {
  color: #f0f4f1;
  font-family: var(--font-body);
  font-size: clamp(14px, 0.9vw, 16px);
  font-weight: 750;
  line-height: 1.15;
  text-transform: none;
}

.home-reference-page .trust-grid small {
  margin-top: 3px;
  overflow: hidden;
  color: #9aa49c;
  font-size: clamp(11px, 0.7vw, 12px);
  font-weight: 400;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*
 * Physical desktop reference: use only viewport-relative measurements here.
 * Fixed px limits inside clamp() become physically oversized when Windows
 * display scaling reduces the CSS viewport on QHD/4K monitors.
 */
@media (min-width: 1241px) {
  .home-reference-page {
    --reference-header: 9.26svh;
    --reference-trust-panel: 8.2svh;
    --reference-bottom-gap: 2.2svh;
    --reference-hero: calc(100svh - var(--reference-header) - var(--reference-trust));
  }

  .home-reference-page .header-inner {
    grid-template-columns: 11.46vw minmax(0, 1fr) auto;
    gap: 1.2vw;
  }

  .home-reference-page .brand-logo {
    width: 11.46vw;
  }

  .home-reference-page .desktop-nav {
    gap: 0.12vw;
  }

  .home-reference-page .desktop-nav a {
    padding-inline: 0.68vw;
    font-size: 0.73vw;
  }

  .home-reference-page .desktop-nav a::after {
    right: 0.68vw;
    left: 0.68vw;
  }

  .home-reference-page .header-actions {
    gap: 0.72vw;
  }

  .home-reference-page .header-balance {
    min-height: 4.07svh;
    padding-inline: 0.83vw;
    border-radius: 0.31vw;
  }

  .home-reference-page .header-cta {
    min-width: 6.88vw;
    min-height: 4.07svh;
    padding-inline: 0.94vw;
    border-radius: 0.31vw;
    font-size: 0.68vw;
  }

  .home-reference-page .hero {
    padding: 6.48svh calc((100vw - var(--reference-shell)) / 2) 2.96svh;
    grid-template-rows: minmax(0, 1fr) 24.07svh;
  }

  .home-reference-page .hero::before {
    background-position: right calc(5.91vw - 26.15svh);
    background-size: 177.78svh auto;
  }

  .home-reference-page .hero-copy {
    width: min(100%, 31.77vw);
  }

  .home-reference-page .hero .eyebrow {
    gap: 0.72vw;
    font-size: 0.73vw;
  }

  .home-reference-page .hero .eyebrow > span {
    width: 1.72vw;
  }

  .home-reference-page .hero h1 {
    margin-top: 1.08vw;
    font-size: 4.28vw;
  }

  .home-reference-page .hero h1 em {
    margin-top: 0.25vw;
  }

  .home-reference-page .hero-copy > p {
    max-width: 26.04vw;
    margin-top: 1.22vw;
    font-size: 0.87vw;
  }

  .home-reference-page .hero-actions {
    margin-top: 1.55vw;
  }

  .home-reference-page .hero .hero-actions .button {
    min-width: 9.69vw;
    min-height: 4.63svh;
    padding-inline: 1.15vw;
    border-radius: 0.35vw;
    font-size: 0.68vw;
  }

  .home-reference-page .hero-services-title {
    top: -2.25vw;
    gap: 0.75vw;
    font-size: 1.02vw;
  }

  .home-reference-page .hero-services-title > span {
    width: 1.72vw;
  }

  .home-reference-page .hero-service-rail {
    gap: 0.55vw;
  }

  .home-reference-page .hero-service-rail .hero-service-card {
    padding: 0.92vw;
    border-radius: 0.42vw;
  }

  .home-reference-page .hero-service-rail .hero-service-card::before {
    top: 0.48vw;
    left: 0.72vw;
    font-size: 0.78vw;
  }

  .home-reference-page .hero-service-rail .hero-service-card::after {
    right: 0.82vw;
    bottom: 0.88vw;
    width: 1.92vw;
    height: 1.92vw;
    font-size: 1.42vw;
  }

  .home-reference-page .hero-service-icon {
    top: 0.52vw;
    width: 6.55vw;
    height: 6.55vw;
  }

  .home-reference-page .hero-service-rail .hero-service-card > span:last-child {
    right: 0.85vw;
    bottom: 0.85vw;
    left: 0.92vw;
  }

  .home-reference-page .hero-service-rail strong {
    padding-right: 2.2vw;
    font-size: 1.06vw;
  }

  .home-reference-page .hero-service-rail b {
    margin-top: 0.42vw;
    padding-right: 2.2vw;
    font-size: 0.59vw;
  }

  .home-reference-page .trust-grid article {
    padding: 1.1vw 1vw;
    display: grid;
    grid-template-columns: 2vw minmax(0, 10.25vw);
    justify-content: center;
    gap: 0.85vw;
  }

  .home-reference-page .trust-grid article > div {
    width: 100%;
    align-content: center;
  }

  .home-reference-page .trust-icon {
    width: 2vw;
    height: 2vw;
  }

  .home-reference-page .trust-symbol {
    font-size: 2.2vw;
  }

  .home-reference-page .trust-order-icon::before {
    width: 0.1vw;
  }

  .home-reference-page .trust-order-icon i {
    border-width: 0.1vw;
  }

  .home-reference-page .trust-order-icon i::after {
    height: 0.1vw;
    width: 230%;
  }

  .home-reference-page .trust-star {
    font-size: 2vw;
  }

  .home-reference-page .trust-grid b {
    font-size: 0.9vw;
  }

  .home-reference-page .trust-grid small {
    margin-top: 0.16vw;
    font-size: 0.7vw;
  }
}

@media (max-width: 1240px) {
  .home-reference-page {
    --reference-shell: calc(100vw - 48px);
  }

  .home-reference-page .desktop-nav a {
    padding-inline: 7px;
    font-size: 10px;
  }

  .home-reference-page .header-inner {
    grid-template-columns: 178px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .home-reference-page .brand-logo {
    width: 172px;
  }

  .home-reference-page .hero {
    padding-inline: 24px;
  }

  .home-reference-page .hero-service-rail strong {
    font-size: 15px;
  }

  .home-reference-page .hero-service-rail b {
    font-size: 8px;
  }
}

@media (min-width: 1921px) {
  .home-reference-page .hero::before {
    background-position-x: right;
  }
}

@media (max-width: 980px) {
  .home-reference-page {
    --reference-header: 74px;
    --reference-shell: calc(100vw - 36px);
    --reference-hero: auto;
    --reference-trust: auto;
  }

  .home-reference-page .site-header {
    height: 74px;
  }

  .home-reference-page .header-inner {
    grid-template-columns: 1fr auto;
  }

  .home-reference-page .brand-logo {
    width: 176px;
  }

  .home-reference-page .desktop-nav {
    display: none;
  }

  .home-reference-page .header-cta {
    display: none;
  }

  .home-reference-page .mobile-menu-toggle {
    display: inline-grid;
  }

  .home-reference-page .mobile-menu {
    top: 74px;
  }

  .home-reference-page .hero {
    height: auto;
    min-height: 0;
    padding: 54px 18px 30px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 128px;
  }

  .home-reference-page .hero::before {
    background-position: right top;
    background-size: auto 660px;
  }

  .home-reference-page .hero::after {
    background:
      linear-gradient(90deg, rgba(2, 3, 5, 0.92), rgba(2, 3, 5, 0.28) 70%, rgba(2, 3, 5, 0.1)),
      linear-gradient(180deg, transparent 38%, rgba(2, 3, 5, 0.5) 58%, #020305 76%);
  }

  .home-reference-page .hero-copy {
    grid-column: 1;
    grid-row: 1;
    width: min(540px, 82%);
  }

  .home-reference-page .hero-graphic-stage {
    position: absolute;
    top: 24px;
    right: -84px;
    width: min(76vw, 520px);
    height: 440px;
    opacity: 0.72;
    transform: none;
    pointer-events: none;
  }

  .home-reference-page .hero h1 {
    font-size: clamp(58px, 9.5vw, 82px);
  }

  .home-reference-page .hero-copy > p {
    max-width: 440px;
    font-size: 14px;
  }

  .home-reference-page .hero-service-carousel {
    grid-column: 1;
    grid-row: 2;
    height: 250px;
  }

  .home-reference-page .hero-service-rail {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(184px, 28vw);
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 1px 10px;
    scroll-snap-type: x mandatory;
  }

  .home-reference-page .hero-service-rail .hero-service-card {
    scroll-snap-align: start;
  }

  .home-reference-page .hero-service-icon {
    width: 128px;
    height: 128px;
  }

  .home-reference-page .trust-strip {
    height: auto;
    padding: 0 18px 28px;
  }

  .home-reference-page .trust-grid {
    width: 100%;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-reference-page .trust-grid article,
  .home-reference-page .trust-grid article:first-child {
    min-height: 92px;
    padding: 16px 20px;
  }

  .home-reference-page .trust-grid article:nth-child(2) {
    border-right: 0;
  }

  .home-reference-page .trust-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(117, 129, 137, 0.22);
  }
}

@media (max-width: 620px) {
  .home-reference-page {
    --reference-shell: calc(100vw - 28px);
  }

  .home-reference-page .header-inner {
    width: calc(100vw - 28px);
  }

  .home-reference-page .brand-logo {
    width: 154px;
  }

  .home-reference-page .hero {
    padding-inline: 14px;
    gap: 118px;
  }

  .home-reference-page .hero::before {
    background-position: right top;
    background-size: auto 590px;
    opacity: 0.86;
  }

  .home-reference-page .hero-copy {
    width: 100%;
  }

  .home-reference-page .hero-graphic-stage {
    top: 42px;
    right: -122px;
    width: min(92vw, 440px);
    height: 370px;
    opacity: 0.58;
  }

  .home-reference-page .hero .eyebrow {
    font-size: 11px;
  }

  .home-reference-page .hero h1 {
    max-width: 390px;
    font-size: clamp(50px, 15.5vw, 70px);
  }

  .home-reference-page .hero-copy > p {
    width: min(90%, 380px);
    font-size: 13px;
  }

  .home-reference-page .hero-services-title {
    top: -36px;
    font-size: 17px;
  }

  .home-reference-page .hero-service-rail {
    grid-auto-columns: minmax(176px, 72vw);
  }

  .home-reference-page .trust-grid {
    grid-template-columns: 1fr;
  }

  .home-reference-page .trust-grid article,
  .home-reference-page .trust-grid article:first-child,
  .home-reference-page .trust-grid article:nth-child(2) {
    min-height: 82px;
    padding: 13px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(117, 129, 137, 0.22);
  }

  .home-reference-page .trust-grid article:last-child {
    border-bottom: 0;
  }

  .home-reference-page .trust-grid small {
    white-space: normal;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open,
body.mobile-menu-open,
body.coming-soon-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

a,
button {
  outline: none;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

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

::selection {
  background: var(--accent);
  color: var(--ink);
}

.section-shell {
  width: min(var(--max-width), calc(100% - 48px));
  margin-inline: auto;
}

.section-block {
  padding-block: clamp(84px, 9vw, 132px);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.eyebrow,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #66717d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 2px;
  background: var(--accent);
}

.button {
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: var(--ink);
}

.button-primary:hover:not(:disabled) {
  background: var(--accent-soft);
}

.button-secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: inherit;
}

.button-secondary:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}

.button-small {
  min-height: 38px;
  padding-inline: 14px;
  border-radius: 9px;
  font-size: 11px;
}

/* Announcement and navigation */

.top-announcement {
  min-height: 34px;
  padding-inline: 20px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--ink);
}

.announcement-content {
  width: min(var(--max-width), 100%);
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.announcement-message,
.announcement-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}

#siteAnnouncementText {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.announcement-spark {
  width: 12px;
  height: 12px;
  position: relative;
  flex: 0 0 12px;
}

.announcement-spark::before,
.announcement-spark::after {
  content: '';
  position: absolute;
  inset: 5px 0 auto;
  height: 2px;
  background: currentColor;
}

.announcement-spark::after {
  transform: rotate(90deg);
}

.announcement-link-label {
  border-bottom: 1px solid currentColor;
}

.announcement-arrow {
  transition: transform 160ms ease;
}

.announcement-link:hover .announcement-arrow {
  transform: translateX(3px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 88px;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 11, 13, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--max-width), calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 28px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 196px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.desktop-nav button {
  min-height: 40px;
  padding: 0 11px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #aab1b9;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.desktop-nav button:hover {
  background: rgba(202, 255, 24, 0.055);
  color: var(--white);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-balance {
  min-height: 46px;
  padding: 6px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  justify-items: end;
  background: rgba(202, 255, 24, 0.035);
  color: var(--text);
  cursor: pointer;
}

.header-balance small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-balance strong {
  color: var(--accent);
  font-size: 13px;
}

.header-cta {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  background: var(--accent);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.header-cta:hover {
  background: var(--accent-soft);
}

.mobile-menu-toggle {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: none;
  place-content: center;
  gap: 6px;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: transform 160ms ease;
}

.mobile-menu-toggle[aria-expanded='true'] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded='true'] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 78px;
  right: 0;
  left: 0;
  max-height: calc(100dvh - 78px);
  padding: 22px 24px 28px;
  overflow-y: auto;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 11, 13, 0.99);
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: grid !important;
}

.mobile-menu-label {
  margin-bottom: 7px;
  color: #727c87;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mobile-menu > button:not(.mobile-account) {
  min-height: 58px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
}

.mobile-menu > button > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.mobile-menu > button > b {
  color: #79838e;
  font-size: 10px;
  font-weight: 650;
}

.mobile-menu > a {
  padding: 18px 0 8px;
  color: #a7afb7;
  font-size: 12px;
  text-decoration: none;
}

.mobile-menu .mobile-account {
  min-height: 46px;
  margin-top: 12px;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
}

/* Hero */

.hero {
  position: relative;
  min-height: min(790px, calc(100svh - 78px));
  padding-block: clamp(70px, 8vw, 112px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  z-index: -2;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background:
    radial-gradient(circle at 79% 40%, rgba(202, 255, 24, 0.11), transparent 28%),
    radial-gradient(circle at 8% 88%, rgba(105, 216, 255, 0.06), transparent 24%),
    var(--ink);
}

.hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(202, 255, 24, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(202, 255, 24, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, black, transparent 68%);
  opacity: 0.55;
  pointer-events: none;
}

.hero-copy {
  max-width: 720px;
}

.hero .eyebrow {
  color: #9ea7b1;
}

.hero h1 {
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-size: clamp(76px, 8.2vw, 126px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.8;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-top: 12px;
  color: var(--accent);
  font-style: normal;
}

.hero-copy > p {
  max-width: 610px;
  margin: 30px 0 0;
  color: #aab2bb;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero .button-secondary {
  background: rgba(202, 255, 24, 0.025);
}

.hero-graphic-stage {
  position: relative;
}

.hero-graphic-stage::before {
  content: 'FUTGAINER / FC 27';
  position: absolute;
  top: -34px;
  right: 0;
  color: rgba(231, 235, 232, 0.34);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-service-rail {
  position: relative;
  display: grid;
  gap: 12px;
}

.hero-service-rail::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -32px;
  border: 1px solid rgba(202, 255, 24, 0.1);
  border-radius: 34px;
  background: rgba(202, 255, 24, 0.018);
  transform: rotate(2deg);
}

.hero-service-rail button {
  min-height: 138px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 22px;
  background: rgba(18, 22, 27, 0.9);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-service-rail button:nth-child(2) {
  margin-left: 36px;
}

.hero-service-rail button:hover {
  transform: translateX(-6px);
  border-color: rgba(202, 255, 24, 0.55);
  background: #151a20;
}

.hero-service-icon {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(202, 255, 24, 0.28);
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(202, 255, 24, 0.07);
  color: var(--accent);
}

.hero-service-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-service-rail button > span:last-child {
  min-width: 0;
  display: grid;
}

.hero-service-rail small {
  color: #77818c;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.hero-service-rail strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 750;
  line-height: 1;
}

.hero-service-rail b {
  margin-top: 8px;
  color: #9aa3ad;
  font-size: 11px;
  font-weight: 600;
}

/* Trust strip */

.trust-strip {
  border: none;
  border-block: none;
  background: transparent;
}

.trust-grid {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 112px;
  align-items: stretch;
}

.trust-grid article {
  padding: 22px 20px;
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 14px;
}

.trust-grid article:first-child {
  padding-left: 0;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(202, 255, 24, 0.25);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.trust-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-grid article > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.trust-grid b {
  font-size: 12px;
}

.trust-grid small {
  color: #7e8893;
  font-size: 10px;
  line-height: 1.45;
}

.trust-support {
  border: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 6px;
  background: transparent;
  color: #9ca5ae;
  cursor: pointer;
}

.trust-support > span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--ink);
  font-weight: 900;
}

.trust-support b {
  font-size: 9px;
}

/* Shared section headings */

.section-heading {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  align-items: end;
  gap: 48px;
}

.section-heading h2,
.security h2,
.support-banner h2 {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: clamp(54px, 5.8vw, 82px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-heading h2 em,
.security h2 em {
  color: #698700;
  font-style: normal;
}

.section-heading > p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.75;
}

/* Product catalog */

.services {
  position: relative;
  color: var(--text-dark);
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.catalog-heading .eyebrow {
  color: #68717b;
}

.catalog-toolbar {
  min-height: 68px;
  margin-bottom: 24px;
  padding: 9px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(15, 19, 23, 0.86);
}

.catalog-filters {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.catalog-filters button {
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: #69727b;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
}

.catalog-filters button:hover {
  color: var(--ink);
}

.catalog-filters button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.catalog-search {
  position: relative;
  flex: 0 1 300px;
}

.catalog-search input {
  width: 100%;
  min-height: 46px;
  padding: 0 42px 0 15px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: #11161c;
  color: var(--white);
  outline: 0;
}

.catalog-search input::placeholder {
  color: #8b9299;
}

.catalog-search i {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 13px;
  height: 13px;
  border: 1.5px solid #747d86;
  border-radius: 50%;
  transform: translateY(-58%);
  pointer-events: none;
}

.catalog-search i::after {
  content: '';
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 6px;
  height: 1.5px;
  background: #747d86;
  transform: rotate(45deg);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  background: var(--paper-raised);
  box-shadow: 0 1px 0 rgba(202, 255, 24, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 19, 24, 0.34);
  box-shadow: var(--shadow-soft);
}

.product-card:nth-last-child(2) {
  grid-column: 2 / span 2;
}

.product-card:nth-last-child(1) {
  grid-column: 4 / span 2;
}

.product-visual {
  position: relative;
  min-height: 226px;
  padding: 22px;
  overflow: hidden;
  border-bottom: 1px solid rgba(202, 255, 24, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 50% 44%, rgba(202, 255, 24, 0.19), transparent 36%),
    #111713;
  color: var(--white);
}

.product-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(202, 255, 24, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(202, 255, 24, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.product-visual-champions {
  background: radial-gradient(circle at 50% 44%, rgba(157, 131, 255, 0.3), transparent 37%), #171329;
}

.product-visual-rivals {
  background: radial-gradient(circle at 50% 44%, rgba(105, 216, 255, 0.27), transparent 37%), #0e2027;
}

.product-visual-battles,
.product-visual-coaching {
  background: radial-gradient(circle at 50% 44%, rgba(255, 182, 109, 0.28), transparent 37%), #24180f;
}

.product-visual-review {
  background: radial-gradient(circle at 50% 44%, rgba(202, 255, 24, 0.2), transparent 37%), #171d10;
}

.product-emblem.ut-emblem {
  position: absolute;
  z-index: 1;
  top: 28px;
  left: 50%;
  width: 144px;
  height: 148px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.42));
  transform: translateX(-50%);
}

.ut-emblem-coin-buy { background-image: url('images/service-emblem-coin-buy.webp'); }
.ut-emblem-champions,
.ut-emblem-battles { background-image: url('images/service-emblem-weekend-league.webp'); }
.ut-emblem-elite { background-image: url('images/service-emblem-rivals.webp'); }
.ut-emblem-coaching,
.ut-emblem-review { background-image: url('images/service-emblem-coaching.webp'); }

.product-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  min-height: 27px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.product-badge-dark {
  border: 1px solid rgba(202, 255, 24, 0.2);
  background: rgba(8, 11, 14, 0.82);
  color: var(--white);
}

.product-badge-purple { background: var(--purple); }
.product-badge-blue { background: var(--blue); }
.product-badge-warm { background: var(--warm); }

.product-visual > small,
.product-visual > strong {
  position: relative;
  z-index: 2;
  text-shadow: 0 3px 12px #000;
}

.product-visual > small {
  color: rgba(231, 235, 232, 0.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.product-visual > strong {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
}

.product-copy {
  padding: 24px 23px 19px;
}

.product-category {
  color: #678400;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.product-category-purple { color: #7559d7; }
.product-category-blue { color: #167d9f; }
.product-category-warm { color: #a65c12; }

.product-copy h3 {
  margin: 8px 0 10px;
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 760;
  letter-spacing: -0.025em;
  line-height: 1;
}

.product-copy > p {
  min-height: 68px;
  margin: 0;
  color: #66707a;
  font-size: 13px;
  line-height: 1.65;
}

.product-copy ul {
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
}

.product-copy li {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.product-copy li b {
  overflow: hidden;
  color: #252b31;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-copy li span {
  color: #8a929a;
  font-size: 10px;
}

.product-card > footer {
  margin-top: auto;
  padding: 17px 22px 20px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card > footer > div {
  min-width: 0;
  display: grid;
}

.product-card > footer small {
  color: #7a838c;
  font-size: 10px;
}

.product-card > footer strong {
  margin-top: 2px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1;
}

.product-card > footer button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.product-card > footer button:hover:not(:disabled) {
  border-color: #587000;
  background: var(--accent);
  color: var(--ink);
}

.catalog-empty {
  min-height: 190px;
  border: 1px dashed rgba(16, 19, 24, 0.25);
  border-radius: 20px;
  display: grid;
  place-content: center;
  gap: 5px;
  text-align: center;
}

.catalog-empty span {
  color: var(--muted-dark);
  font-size: 13px;
}

.sell-coins-card {
  min-height: 168px;
  margin-top: 20px;
  padding: 30px 34px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  background: var(--ink);
  color: var(--white);
}

.sell-coins-card .panel-kicker {
  color: var(--accent);
}

.sell-coins-card h3 {
  margin: 8px 0 5px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1;
}

.sell-coins-card p {
  max-width: 760px;
  margin: 0;
  color: #9fa8b1;
  font-size: 13px;
}

.sell-coins-card .button-secondary {
  border-color: var(--accent);
  color: var(--accent);
}

.service-risk-note {
  max-width: 980px;
  margin: 22px auto 0;
  color: #777f87;
  font-size: 11px;
  line-height: 1.65;
  text-align: center;
}

/* Process */

.process-section {
  position: relative;
  background: #101419;
}

.process-section .section-heading h2 em {
  color: var(--accent);
}

.process-section .section-heading > p {
  color: #8d97a1;
}

.process-grid {
  border-block: 1px solid var(--line);
  display: grid;
}

.process-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid article {
  min-height: 320px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.process-grid article:first-child {
  padding-left: 0;
}

.process-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-number {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
}

.process-line {
  width: 100%;
  height: 1px;
  margin: 40px 0 auto;
  background: linear-gradient(to right, rgba(202, 255, 24, 0.6), transparent);
}

.process-grid h3 {
  margin: 28px 0 10px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
}

.process-grid p {
  margin: 0;
  color: #8f99a3;
  font-size: 13px;
  line-height: 1.7;
}

/* Protection and order preview */

.security {
  padding-block: clamp(88px, 10vw, 140px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: clamp(56px, 8vw, 110px);
  color: var(--text-dark);
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.security-copy > p {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--muted-dark);
  line-height: 1.75;
}

.security-points {
  margin-top: 34px;
  border-top: 1px solid var(--line-dark);
}

.security-points article {
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
}

.security-points article > span {
  color: #779700;
  font-size: 11px;
  font-weight: 850;
}

.security-points article > div {
  display: grid;
  gap: 4px;
}

.security-points b {
  font-size: 13px;
}

.security-points small {
  color: #737c85;
  font-size: 11px;
  line-height: 1.55;
}

.order-preview {
  padding: 28px;
  border-radius: 24px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.order-preview-head,
.order-service,
.order-timeline li {
  display: flex;
  align-items: center;
}

.order-preview-head {
  justify-content: space-between;
  gap: 18px;
}

.order-preview-head > div {
  display: grid;
}

.order-preview-head small,
.order-service small {
  color: #75808c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.order-preview-head b {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 25px;
}

.order-preview-head > span {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(202, 255, 24, 0.24);
  border-radius: 999px;
  display: inline-flex;
  gap: 7px;
  color: #dff58e;
  font-size: 9px;
  font-weight: 750;
}

.order-preview-head i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.order-service {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  gap: 14px;
  background: rgba(202, 255, 24, 0.03);
}

.order-service-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 850;
}

.order-service > div {
  min-width: 0;
  display: grid;
}

.order-service b {
  font-size: 12px;
}

.order-service span {
  color: #8b95a0;
  font-size: 10px;
}

.order-timeline {
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
}

.order-timeline li {
  position: relative;
  min-height: 72px;
  gap: 14px;
}

.order-timeline li > span {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--ink);
  color: #6f7984;
  font-size: 8px;
  font-weight: 850;
}

.order-timeline li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 48px;
  bottom: -24px;
  left: 13px;
  width: 1px;
  background: var(--line);
}

.order-timeline li.complete > span,
.order-timeline li.active > span {
  border-color: var(--accent);
  color: var(--accent);
}

.order-timeline li > div {
  display: grid;
}

.order-timeline b {
  font-size: 11px;
}

.order-timeline small {
  color: #78838e;
  font-size: 9px;
}

.order-preview-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #7f8994;
  font-size: 9px;
}

.order-preview-note > span {
  width: 18px;
  height: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 800;
}

/* Support, FAQ and footer */

.support-banner {
  min-height: 300px;
  margin-block: 48px;
  padding: 48px 54px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.75fr) auto;
  align-items: center;
  gap: 42px;
  background: var(--accent);
  color: var(--ink);
}

.support-banner .panel-kicker {
  color: #526700;
}

.support-banner h2 {
  font-size: clamp(48px, 5vw, 72px);
}

.support-banner > p {
  margin: 0;
  color: #3d480d;
  font-size: 14px;
}

.support-banner .button-primary {
  background: var(--ink);
  color: var(--white);
}

.faq {
  color: var(--text-dark);
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  min-height: 76px;
  display: grid;
  grid-template-columns: 46px 1fr 28px;
  align-items: center;
  gap: 14px;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary > span {
  color: #809d12;
  font-size: 10px;
  font-weight: 850;
}

.faq-list summary b {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 650;
}

.faq-list summary i {
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  content: '';
  position: absolute;
  top: 11px;
  left: 5px;
  width: 14px;
  height: 1px;
  background: var(--ink);
}

.faq-list summary i::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-list details > p {
  max-width: 820px;
  margin: 0;
  padding: 0 0 24px 60px;
  color: #66707a;
  font-size: 13px;
  line-height: 1.75;
}

.site-footer {
  padding: 72px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.75fr);
  gap: 54px;
}

.footer-brand .brand-logo {
  width: 190px;
}

.footer-brand > p {
  max-width: 390px;
  margin: 22px 0 16px;
  color: #89939d;
  font-size: 12px;
}

.footer-mail {
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid h3 {
  margin: 0 0 7px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid button,
.footer-grid a,
.footer-grid span {
  padding: 0;
  border: 0;
  background: transparent;
  color: #89939d;
  font-size: 11px;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
}

.footer-grid button {
  cursor: pointer;
}

.footer-grid button:hover,
.footer-grid a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #69737e;
  font-size: 10px;
}

/* Dialog foundation */

.coming-soon {
  position: fixed;
  z-index: 620;
  inset: 0;
  padding: 28px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(202, 255, 24, 0.1), transparent 34%),
    rgba(2, 4, 6, 0.9);
  backdrop-filter: blur(14px);
}

.coming-soon.is-open {
  display: grid !important;
}

.coming-soon-panel {
  position: relative;
  width: min(560px, 100%);
  padding: 54px 48px 46px;
  border: 1px solid rgba(202, 255, 24, 0.24);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(202, 255, 24, 0.06), transparent 42%),
    var(--paper-raised);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.58);
}

.coming-soon-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 18%;
  left: 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 28px rgba(202, 255, 24, 0.7);
}

.coming-soon-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border: 1px solid rgba(202, 255, 24, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(202, 255, 24, 0.06);
  box-shadow: inset 0 0 28px rgba(202, 255, 24, 0.06), 0 0 32px rgba(202, 255, 24, 0.08);
}

.coming-soon-mark i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(202, 255, 24, 0.82);
  animation: coming-soon-pulse 1.2s ease-in-out infinite;
}

.coming-soon-mark i:nth-child(2) { animation-delay: 160ms; }
.coming-soon-mark i:nth-child(3) { animation-delay: 320ms; }

.coming-soon-panel .panel-kicker {
  color: var(--accent);
}

.coming-soon-panel h2 {
  margin: 12px 0 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.coming-soon-panel p {
  max-width: 410px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.coming-soon-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.coming-soon-actions .button {
  min-width: 190px;
}

@keyframes coming-soon-pulse {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon-mark i {
    animation: none;
  }
}

.modal-backdrop {
  position: fixed;
  z-index: 300;
  inset: 0;
  background: rgba(2, 4, 6, 0.78);
  backdrop-filter: blur(10px);
}

.modal-backdrop.is-open {
  display: block !important;
}

.service-modal,
.app-shell {
  position: fixed;
  z-index: 310;
  inset: 0;
  padding: 28px;
  overflow-y: auto;
  place-items: center;
}

.service-modal.is-open,
.app-shell.is-open {
  display: grid !important;
}

.service-modal-panel {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100dvh - 56px);
  overflow: hidden;
  border: 1px solid rgba(202, 255, 24, 0.18);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
  background: var(--paper-raised);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.52);
}

.modal-close,
.app-close {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(202, 255, 24, 0.04);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.modal-close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  border-color: rgba(16, 19, 24, 0.14);
  background: rgba(9, 12, 15, 0.9);
  color: var(--ink);
}

.modal-copy {
  position: relative;
  padding: 54px 42px 42px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 14% 10%, rgba(202, 255, 24, 0.1), transparent 30%),
    var(--ink-soft);
  color: var(--text);
}

.modal-copy .panel-kicker {
  color: var(--accent);
}

.service-modal h2 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.modal-copy > p {
  margin: 20px 0 0;
  color: #9ca6b0;
  font-size: 13px;
}

.modal-assurance {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 13px;
}

.modal-assurance > span {
  display: grid;
  grid-template-columns: 9px 1fr;
  align-items: start;
  gap: 10px;
}

.modal-assurance i {
  width: 6px;
  height: 6px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.modal-assurance b {
  color: #b4bdc6;
  font-size: 11px;
  font-weight: 600;
}

.modal-related {
  margin-top: 28px;
}

.modal-related > small {
  color: #68737e;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.modal-related > div {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.modal-related button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(202, 255, 24, 0.025);
  color: #aab3bc;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.modal-related button:hover {
  border-color: rgba(202, 255, 24, 0.5);
  color: var(--accent);
}

.service-form {
  padding: 56px 46px 40px;
  overflow-y: auto;
  color: var(--text-dark);
  background: var(--paper-raised);
}

#serviceFields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.service-field {
  display: grid;
  align-content: start;
  gap: 7px;
}

.service-field--wide,
.service-fields-divider {
  grid-column: 1 / -1;
}

.service-field__label {
  color: #4d555e;
  font-size: 11px;
  font-weight: 750;
}

.service-field input:not([type='checkbox']),
.service-field select,
.service-field textarea,
.auth-form input,
.topup-form input,
.topup-form textarea,
.setting-field input:not([type='checkbox']),
.setting-field textarea,
.admin-controls select,
.message-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(16, 19, 24, 0.18);
  border-radius: 10px;
  background: #11161c;
  color: var(--white);
  outline: 0;
}

.service-field textarea,
.topup-form textarea,
.setting-field textarea,
.message-form textarea {
  min-height: 84px;
  resize: vertical;
}

.service-field input:focus,
.service-field select:focus,
.service-field textarea:focus,
.auth-form input:focus,
.topup-form input:focus,
.topup-form textarea:focus,
.setting-field input:focus,
.setting-field textarea:focus,
.message-form textarea:focus {
  border-color: #718e00;
  box-shadow: 0 0 0 3px rgba(202, 255, 24, 0.22);
}

.service-field__help {
  color: #7c858e;
  font-size: 9px;
}

.service-checkbox {
  min-height: 58px;
  padding: 11px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 11px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: rgba(15, 19, 23, 0.88);
  cursor: pointer;
}

.service-checkbox input,
.setting-field input[type='checkbox'],
.admin-refund input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: #82a300;
}

.service-checkbox__copy {
  display: grid;
  gap: 3px;
}

.service-checkbox__copy strong {
  font-size: 11px;
}

.service-checkbox__copy small {
  color: #747d85;
  font-size: 9px;
}

.service-fields-divider {
  margin-top: 3px;
  padding: 15px 17px;
  border-left: 3px solid var(--accent);
  background: #151a16;
}

.service-fields-divider__eyebrow {
  color: #6f880f;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.service-fields-divider p {
  margin: 4px 0 0;
  color: #626a72;
  font-size: 10px;
}

.service-risk {
  margin-top: 17px;
  padding: 14px 16px;
  border: 1px solid rgba(169, 96, 26, 0.24);
  border-radius: 11px;
  background: #1b1711;
}

.service-risk strong {
  color: #925414;
  font-size: 10px;
}

.service-risk p {
  margin: 4px 0 0;
  color: #755d43;
  font-size: 9px;
  line-height: 1.55;
}

.service-summary {
  margin-top: 18px;
  padding: 18px;
  border-radius: 13px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
  background: var(--ink);
  color: var(--white);
}

.service-summary > div {
  display: grid;
}

.service-summary span {
  color: #79848f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-summary strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.service-summary p {
  max-width: 180px;
  margin: 0;
  color: #89939d;
  font-size: 9px;
  text-align: right;
}

.service-submit {
  width: 100%;
  margin-top: 12px;
}

.form-privacy {
  margin: 10px 0 0;
  color: #737c84;
  font-size: 9px;
  text-align: center;
}

.service-unavailable {
  pointer-events: none;
  opacity: 0.42;
}

/* Account and operations application */

.app-panel {
  position: relative;
  width: min(1320px, 100%);
  max-height: calc(100dvh - 56px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  background: #0e1216;
  color: var(--text-dark);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.app-panel:has(.auth-view:not([hidden])),
.app-panel.is-auth-mode {
  width: min(440px, 100%);
}

.app-panel-head {
  min-height: 78px;
  padding: 16px 22px 16px 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex: 0 0 auto;
  background: var(--ink);
  color: var(--white);
}

.app-panel-head > div {
  display: grid;
}

.app-panel-head .panel-kicker {
  color: var(--accent);
  font-size: 8px;
}

.app-panel-head h2 {
  margin: 1px 0 0;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.auth-view {
  width: 100%;
  min-height: auto;
  margin-inline: auto;
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.auth-brand {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
}

.auth-brand img {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 12px;
  background: var(--ink);
}

.auth-brand > div {
  display: grid;
}

.auth-brand strong {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}

.auth-brand span {
  margin-top: 4px;
  color: #6e7780;
  font-size: 11px;
}

.auth-tabs {
  padding: 4px;
  border-radius: 11px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #dfe3df;
}

.auth-tabs button {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #68717a;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.auth-tabs button.active {
  background: #171c22;
  color: var(--white);
  box-shadow: 0 3px 12px rgba(15, 20, 25, 0.08);
}

.auth-form {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.auth-form label {
  display: grid;
  gap: 5px;
  color: #4f5861;
  font-size: 11px;
  font-weight: 700;
}

.auth-form label small {
  color: #818991;
  font-size: 9px;
}

.auth-button {
  width: 100%;
  margin-top: 5px;
}

.auth-divider {
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8c949c;
  font-size: 9px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: var(--line-dark);
}

.oauth-placeholder {
  min-height: 48px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #151a20;
  color: var(--white);
  font-size: 11px;
  font-weight: 750;
  text-decoration: none;
}

.google-g {
  color: #4285f4;
  font-size: 16px;
  font-weight: 900;
}

.auth-view > p {
  margin: 16px 0 0;
  color: #7d858d;
  font-size: 9px;
  text-align: center;
}

.dashboard-view {
  height: min(760px, calc(100dvh - 134px));
  min-height: 600px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
}

.account-sidebar {
  padding: 24px 18px 18px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #11151a;
  color: var(--white);
}

.account-identity {
  padding: 0 7px 22px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 11px;
}

.account-identity > span {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--ink);
  font-weight: 900;
}

.account-identity > div {
  min-width: 0;
  display: grid;
}

.account-identity strong,
.account-identity small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-identity strong {
  font-size: 11px;
}

.account-identity small {
  color: #7d8792;
  font-size: 9px;
}

.account-sidebar nav {
  margin-top: 18px;
  display: grid;
  gap: 4px;
}

.account-sidebar nav button,
.account-signout {
  min-height: 43px;
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: transparent;
  color: #929ca6;
  font-size: 11px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.account-sidebar nav button:hover,
.account-sidebar nav button.active {
  background: rgba(202, 255, 24, 0.065);
  color: var(--white);
}

.account-sidebar nav button.active {
  box-shadow: inset 3px 0 var(--accent);
}

.account-sidebar nav button span {
  min-width: 22px;
  min-height: 20px;
  padding: 2px 6px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(202, 255, 24, 0.08);
  color: var(--accent);
  font-size: 8px;
}

.account-signout {
  margin-top: auto;
  color: #77818c;
}

.account-signout:hover {
  color: #f19494;
}

.account-content {
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  background: #0e1216;
}

.dashboard-section {
  min-height: 100%;
  padding: 34px clamp(24px, 4vw, 52px) 48px;
}

.dashboard-title {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-title .panel-kicker {
  color: #74810c;
  font-size: 8px;
}

.dashboard-title h3 {
  margin: 5px 0 0;
  font-family: var(--font-display);
  font-size: 39px;
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1;
}

.balance-display {
  color: #678400;
  font-family: var(--font-display);
  font-size: 34px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric-grid article,
.admin-metrics article {
  min-height: 140px;
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  background: #151a20;
}

.metric-grid article > span,
.admin-metrics article > span {
  color: #778089;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.metric-grid article > strong,
.admin-metrics article > strong {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
}

.metric-grid article > button {
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #658000;
  font-size: 9px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.recent-block {
  margin-top: 28px;
}

.block-title,
.admin-subtitle {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.block-title h4,
.admin-subtitle h4 {
  margin: 0;
  font-size: 12px;
}

.block-title button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #658000;
  font-size: 9px;
  font-weight: 750;
  cursor: pointer;
}

.order-list,
.admin-orders,
.admin-threads {
  display: grid;
  gap: 10px;
}

.order-card,
.admin-thread-card {
  padding: 17px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: #151a20;
}

.order-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.order-card-top > div {
  min-width: 0;
  display: grid;
}

.order-card-top strong {
  margin-top: 3px;
  font-size: 12px;
}

.order-code {
  color: #89919a;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 8px;
}

.status-pill {
  min-height: 25px;
  padding: 0 9px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  background: #22282d;
  color: #aab2ad;
  font-size: 8px;
  font-weight: 800;
}

.status-paid,
.status-completed {
  background: #1b2511;
  color: #caff18;
}

.status-in_progress,
.status-review {
  background: #201a32;
  color: #b9a7ff;
}

.status-cancelled,
.status-failed,
.status-initialization_failed {
  background: #2b1719;
  color: #f08d8d;
}

.order-card-meta {
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #7e8790;
  font-size: 9px;
}

.order-card-meta b {
  color: var(--ink);
}

.order-config {
  margin: 12px 0 0;
  color: #69727b;
  font-size: 10px;
}

.order-chat-button {
  margin-top: 13px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #658000;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.empty-state {
  min-height: 140px;
  padding: 22px;
  border: 1px dashed rgba(16, 19, 24, 0.22);
  border-radius: 14px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 5px;
  color: #4d555e;
  text-align: center;
}

.empty-state p {
  max-width: 390px;
  margin: 0;
  color: #7c858d;
  font-size: 10px;
}

.demo-notice {
  margin-bottom: 18px;
  padding: 15px 17px;
  border-left: 3px solid #7d9d0d;
  background: #151b12;
}

.demo-notice strong {
  font-size: 11px;
}

.demo-notice p {
  margin: 3px 0 0;
  color: #68716f;
  font-size: 10px;
}

.topup-form {
  max-width: 720px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  display: grid;
  gap: 17px;
  background: #151a20;
}

.topup-form > label,
.payment-fields label {
  display: grid;
  gap: 6px;
  color: #4f5861;
  font-size: 10px;
  font-weight: 750;
}

.topup-form > label > span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.quick-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.quick-amounts button {
  min-height: 39px;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  background: #11161c;
  color: #aab2ad;
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
}

.quick-amounts button:hover {
  border-color: #789500;
  color: #5b7200;
}

.payment-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.payment-field-wide,
.payment-privacy {
  grid-column: 1 / -1;
}

.payment-privacy,
.chat-security,
.settings-security-note {
  margin: 0;
  color: #747d85;
  font-size: 9px;
}

.messages-section {
  overflow: hidden;
}

.chat-layout {
  height: calc(100% - 76px);
  min-height: 480px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  overflow: hidden;
  background: #151a20;
}

.thread-list {
  padding: 10px;
  border-right: 1px solid var(--line-dark);
  overflow-y: auto;
  background: #101419;
}

.thread-item {
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: 10px;
  display: grid;
  gap: 6px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.thread-item:hover,
.thread-item.active {
  background: #1a2026;
  box-shadow: 0 3px 12px rgba(14, 18, 22, 0.07);
}

.thread-item-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 8px;
}

.thread-item-top strong {
  font-size: 10px;
}

.thread-item-top small,
.thread-preview {
  color: #838b93;
  font-size: 8px;
}

.thread-preview {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-window {
  min-width: 0;
  min-height: 0;
  position: relative;
}

#chatActive {
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
}

.chat-head {
  min-height: 60px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
}

.chat-head strong {
  font-size: 11px;
}

.chat-head span {
  color: #7c858e;
  font-size: 8px;
}

.message-list {
  padding: 18px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #0f1317;
}

.message {
  max-width: min(78%, 520px);
  padding: 11px 13px;
  border-radius: 13px;
  align-self: flex-start;
  background: #1a2026;
  box-shadow: 0 3px 12px rgba(14, 18, 22, 0.06);
}

.message--mine {
  align-self: flex-end;
  background: #1b2511;
}

.message small,
.message time {
  color: #7a838c;
  font-size: 7px;
}

.message p {
  margin: 3px 0;
  font-size: 10px;
}

.message-form {
  padding: 12px;
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.message-form textarea {
  min-height: 46px;
  max-height: 120px;
}

.chat-security {
  padding: 0 13px 10px;
}

.admin-metrics {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.admin-metrics article {
  min-height: 105px;
}

.admin-metrics article > strong {
  font-size: 30px;
}

.admin-subtitle {
  margin: 26px 0 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line-dark);
}

.admin-thread-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-thread-card > div {
  min-width: 0;
  display: grid;
}

.admin-thread-card strong {
  font-size: 11px;
}

.admin-thread-card small,
.admin-thread-card p,
.admin-user {
  margin: 3px 0 0;
  overflow: hidden;
  color: #7c858e;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-controls {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-controls select {
  width: auto;
  min-height: 38px;
  padding-block: 0;
}

.admin-refund {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #65707a;
  font-size: 9px;
}

.settings-form {
  display: grid;
  gap: 12px;
}

.settings-general,
.settings-platforms,
.settings-integrations,
.service-setting-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.settings-services {
  display: grid;
  gap: 12px;
}

.setting-field {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 6px;
}

.setting-field--wide {
  grid-column: 1 / -1;
}

.setting-field > span {
  color: #555e67;
  font-size: 9px;
  font-weight: 700;
}

.setting-field:has(input[type='checkbox']) {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #151a20;
}

.service-setting-card {
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 15px;
  background: #151a20;
}

.service-setting-head {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-setting-head strong {
  font-size: 11px;
}

.service-setting-head small {
  color: #7d868f;
  font-size: 8px;
}

.settings-save-bar {
  position: sticky;
  bottom: -1px;
  margin-top: 10px;
  padding: 13px 15px;
  border: 1px solid var(--line-dark);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(15, 19, 23, 0.96);
  backdrop-filter: blur(12px);
}

.settings-save-bar p {
  margin: 0;
  color: #6e7780;
  font-size: 9px;
}

.app-loader {
  position: absolute;
  inset: 78px 0 0;
  place-content: center;
  justify-items: center;
  gap: 10px;
  background: rgba(237, 240, 236, 0.94);
  color: #65707a;
  font-size: 10px;
}

.app-loader:not([hidden]) {
  display: grid !important;
}

.app-loader span {
  width: 28px;
  height: 28px;
  border: 3px solid #cfd4cf;
  border-top-color: #769300;
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Toasts and floating support */

.toast-region {
  position: fixed;
  z-index: 500;
  right: 20px;
  bottom: 20px;
  width: min(350px, calc(100vw - 40px));
  display: grid;
  gap: 9px;
  pointer-events: none;
}

.toast {
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 10px;
  background: #151a20;
  color: var(--white);
  box-shadow: var(--shadow);
  animation: toast-in 180ms ease-out;
}

.toast > span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
}

.toast p {
  margin: 0;
  font-size: 10px;
}

.toast--error > span {
  background: var(--danger);
}

.toast--info > span {
  background: var(--blue);
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(8px); }
}

.floating-support {
  position: fixed;
  z-index: 120;
  right: 18px;
  bottom: 18px;
  min-height: 48px;
  padding: 0 14px 0 7px;
  border: 1px solid rgba(202, 255, 24, 0.3);
  border-radius: 999px;
  display: none;
  align-items: center;
  gap: 8px;
  background: #151a20;
  color: var(--white);
  box-shadow: var(--shadow);
}

.floating-support > span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--ink);
  font-weight: 900;
}

.floating-support b {
  font-size: 10px;
}

/* Responsive */

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.85fr);
    gap: 52px;
  }

  .hero h1 {
    font-size: clamp(70px, 9vw, 100px);
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-support {
    display: none;
  }

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

  .product-card,
  .product-card:nth-last-child(2),
  .product-card:nth-last-child(1) {
    grid-column: auto;
  }

  .security {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    gap: 48px;
  }

  .support-banner {
    grid-template-columns: 1fr auto;
  }

  .support-banner > p {
    grid-column: 1;
  }

  .support-banner .button {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .admin-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .section-shell {
    width: min(var(--max-width), calc(100% - 36px));
  }

  .header-inner {
    width: calc(100% - 36px);
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding-block: 74px 82px;
    grid-template-columns: 1fr;
    gap: 74px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(76px, 13vw, 112px);
  }

  .hero-graphic-stage {
    width: min(620px, 100%);
  }

  .hero-service-rail button:nth-child(2) {
    margin-left: 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid article,
  .trust-grid article:first-child {
    padding: 20px;
  }

  .trust-grid article:nth-child(2n) {
    border-right: 0;
  }

  .trust-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .process-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid article:first-child {
    padding-left: 28px;
  }

  .process-grid article:nth-child(2) {
    border-right: 0;
  }

  .process-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .security {
    grid-template-columns: 1fr;
  }

  .order-preview {
    width: min(620px, 100%);
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .service-modal-panel {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .modal-copy,
  .service-form {
    overflow: visible;
  }

  .modal-copy {
    padding-right: 76px;
  }

  .dashboard-view {
    height: calc(100dvh - 134px);
    min-height: 560px;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .account-sidebar {
    padding: 10px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .account-identity {
    display: none;
  }

  .account-sidebar nav {
    margin: 0;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .account-sidebar nav::-webkit-scrollbar {
    display: none;
  }

  .account-sidebar nav button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .account-sidebar nav button.active {
    box-shadow: inset 0 -3px var(--accent);
  }

  .account-signout {
    min-height: 40px;
    margin: 8px 0 0 auto;
    flex: 0 0 auto;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid article {
    min-height: 116px;
  }

  .chat-layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .section-shell,
  .header-inner {
    width: calc(100% - 28px);
  }

  .section-block {
    padding-block: 72px;
  }

  .top-announcement {
    padding-inline: 12px;
  }

  .announcement-content {
    justify-content: flex-start;
  }

  .announcement-link {
    display: none;
  }

  .site-header {
    height: 70px;
  }

  .brand-logo {
    width: 150px;
  }

  .header-balance {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu {
    top: 70px;
    max-height: calc(100dvh - 70px);
  }

  .hero {
    padding-block: 60px 68px;
    gap: 64px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(65px, 19vw, 92px);
    line-height: 0.82;
  }

  .hero-copy > p {
    margin-top: 24px;
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-service-rail::before,
  .hero-graphic-stage::before {
    display: none;
  }

  .hero-service-rail button {
    min-height: 112px;
    padding: 18px;
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }

  .hero-service-icon {
    width: 50px;
    height: 50px;
  }

  .hero-service-rail strong {
    font-size: 27px;
  }

  .trust-grid article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .trust-icon {
    width: 34px;
    height: 34px;
  }

  .section-heading h2,
  .security h2 {
    font-size: clamp(50px, 15vw, 68px);
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-filters {
    padding-bottom: 3px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .catalog-filters::-webkit-scrollbar {
    display: none;
  }

  .catalog-search {
    flex-basis: auto;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-copy > p {
    min-height: 0;
  }

  .sell-coins-card {
    padding: 26px;
    grid-template-columns: 1fr;
  }

  .sell-coins-card .button {
    width: 100%;
  }

  .process-grid-four {
    grid-template-columns: 1fr;
  }

  .process-grid article,
  .process-grid article:first-child,
  .process-grid article:last-child {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .process-line {
    width: 100%;
    margin: 20px 0 0;
  }

  .support-banner {
    min-height: auto;
    margin-block: 28px;
    padding: 34px 28px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .support-banner h2 {
    font-size: 49px;
  }

  .support-banner .button,
  .support-banner > p {
    grid-column: auto;
    grid-row: auto;
  }

  .support-banner .button {
    width: 100%;
  }

  .faq-list summary {
    grid-template-columns: 30px 1fr 24px;
  }

  .faq-list summary b {
    font-size: 20px;
  }

  .faq-list details > p {
    padding-left: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .service-modal,
  .app-shell {
    padding: 0;
    place-items: stretch;
  }

  .service-modal-panel,
  .app-panel {
    width: 100%;
    min-height: 100dvh;
    max-height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .service-modal-panel {
    display: block;
  }

  .modal-copy {
    padding: 52px 58px 34px 24px;
  }

  .service-form {
    padding: 30px 20px 36px;
  }

  #serviceFields {
    grid-template-columns: 1fr;
  }

  .service-field--wide,
  .service-fields-divider {
    grid-column: auto;
  }

  .service-summary {
    grid-template-columns: 1fr;
  }

  .service-summary p {
    max-width: none;
    text-align: left;
  }

  .app-panel-head {
    min-height: 70px;
  }

  .auth-view {
    min-height: calc(100dvh - 70px);
    padding: 34px 20px;
  }

  .dashboard-view {
    height: calc(100dvh - 70px);
    min-height: 0;
  }

  .dashboard-section {
    padding: 25px 16px 38px;
  }

  .dashboard-title h3 {
    font-size: 32px;
  }

  .balance-display {
    font-size: 27px;
  }

  .quick-amounts,
  .payment-fields,
  .settings-general,
  .settings-platforms,
  .settings-integrations,
  .service-setting-fields {
    grid-template-columns: 1fr;
  }

  .payment-field-wide,
  .payment-privacy,
  .setting-field--wide {
    grid-column: auto;
  }

  .chat-layout {
    height: calc(100dvh - 190px);
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 140px minmax(0, 1fr);
  }

  .thread-list {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .message {
    max-width: 88%;
  }

  .admin-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .admin-thread-card,
  .admin-controls,
  .settings-save-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-controls select {
    width: 100%;
  }

  .floating-support {
    display: flex;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .product-card > footer {
    align-items: stretch;
    flex-direction: column;
  }

  .product-card > footer button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .admin-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 700px) and (min-width: 681px) {
  .auth-view {
    padding-block: 24px;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Reference-matched FUTGainer homepage */

:root {
  --home-header-height: clamp(72px, 9.26svh, 100px);
  --home-trust-height: 0px;
}

.top-announcement {
  display: none !important;
}

.site-header {
  height: var(--home-header-height);
  border-bottom: 1px solid rgba(202, 255, 24, 0.18);
  background: rgba(4, 6, 8, 0.97);
}

.header-inner {
  width: min(1420px, calc(100% - 56px));
  grid-template-columns: 208px minmax(0, 1fr) auto;
  gap: 26px;
}

.brand-logo {
  width: clamp(196px, 12.4vw, 208px);
}

.desktop-nav {
  min-width: 0;
  gap: 2px;
}

.desktop-nav button {
  position: relative;
  min-height: var(--home-header-height);
  padding-inline: 12px;
  border-radius: 0;
  color: #c7cdc9;
  font-size: 12px;
}

.desktop-nav button::after {
  content: '';
  position: absolute;
  right: 10px;
  bottom: -1px;
  left: 10px;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.desktop-nav button:hover {
  background: transparent;
  color: var(--accent);
}

.desktop-nav button:hover::after,
.desktop-nav button:focus-visible::after {
  transform: scaleX(1);
}

.desktop-nav button:disabled {
  opacity: 1;
}

.header-actions {
  gap: 16px;
}

.header-proof,
.header-support {
  min-height: 42px;
  padding: 0 15px 0 0;
  border: 0;
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #cbd0cd;
  text-align: left;
}

.header-support {
  cursor: pointer;
}

.header-proof > i,
.header-support > i {
  color: var(--accent);
  font-size: 23px;
  font-style: normal;
  line-height: 1;
}

.header-proof b,
.header-support b {
  display: grid;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.header-proof small,
.header-support small {
  margin-top: 3px;
  color: #737d77;
  font-size: 7px;
  font-weight: 650;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-width: 132px;
  min-height: 44px;
  padding-inline: 18px;
  font-size: 13px;
  border-radius: 6px;
  box-shadow: 0 0 25px rgba(202, 255, 24, 0.14);
}

.header-balance {
  border-color: rgba(202, 255, 24, 0.22);
  background: #0d1114;
}

.hero {
  width: 100%;
  max-width: none;
  min-height: calc(100vh - var(--home-header-height));
  min-height: calc(100svh - var(--home-header-height));
  height: auto;
  margin: 0;
  padding: clamp(44px, 4.5vh, 64px) max(28px, calc((100vw - 1420px) / 2)) 40px;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(440px, 0.82fr) minmax(600px, 1.18fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px 44px;
  isolation: isolate;
  background-color: #020305;
}

.hero::before {
  z-index: -3;
  inset: 0;
  background-image: url('images/hero-stadium.webp');
  background-position: center 45%;
  background-size: 106% auto;
  background-repeat: no-repeat;
  transform: none;
}

.hero::after {
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, #020305 0%, #020305 43%, rgba(2, 3, 5, 0.97) 48%, rgba(2, 3, 5, 0.72) 55%, rgba(2, 3, 5, 0.3) 63%, transparent 71%),
    linear-gradient(180deg, transparent 54%, rgba(2, 3, 5, 0.1) 64%, rgba(2, 3, 5, 0.66) 84%, #020305 100%);
  mask-image: none;
  opacity: 1;
}

.hero-copy {
  z-index: 3;
  width: min(650px, 100%);
  max-width: none;
  align-self: end;
  margin: 0 0 48px;
}

.hero .eyebrow {
  color: var(--accent);
  font-size: 12px;
}

.hero .eyebrow > span {
  width: 25px;
  box-shadow: 0 0 12px rgba(202, 255, 24, 0.6);
}

.hero h1 {
  margin-top: 20px;
  font-size: clamp(62px, 5.2vw, 86px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.86;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.65);
}

.hero h1 em {
  margin-top: 8px;
}

.hero-copy > p {
  max-width: 470px;
  margin-top: 24px;
  color: #aab1ad;
  font-size: 14px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 25px;
  gap: 14px;
}

.hero .button {
  min-width: 194px;
  min-height: 50px;
  border-radius: 6px;
}

.hero .button-secondary {
  border-color: rgba(202, 255, 24, 0.25);
  background: rgba(7, 10, 13, 0.78);
  color: #d4d9d5;
}

.hero-graphic-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 410px;
  background-image: url('images/hero-podium.webp');
  background-position: 46% bottom;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

.hero-graphic-stage::before {
  display: none;
}

.hero-graphic-stage::after {
  display: none;
}

.hero-service-rail {
  position: relative;
  z-index: 5;
  grid-column: 1 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.hero-service-rail::before {
  display: none;
}

.hero-service-rail button,
.hero-service-rail button:nth-child(2) {
  position: relative;
  min-height: 258px;
  margin: 0;
  padding: 16px 15px 17px;
  overflow: hidden;
  border: 1px solid rgba(173, 183, 178, 0.25);
  border-bottom-color: rgba(136, 54, 255, 0.78);
  border-radius: 7px;
  display: block;
  background:
    radial-gradient(circle at 50% 38%, rgba(202, 255, 24, 0.06), transparent 36%),
    linear-gradient(150deg, #15191d, #070a0d);
  color: #e2e6e3;
  text-align: left;
  box-shadow: inset 0 -2px 0 rgba(132, 52, 255, 0.22);
  opacity: 1;
  transform: none;
}

.hero-service-rail button:disabled {
  opacity: 1;
}

.hero-service-rail button::before {
  content: '01';
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 15px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 650;
}

.hero-service-rail button:nth-child(2)::before { content: '02'; }
.hero-service-rail button:nth-child(3)::before { content: '03'; }
.hero-service-rail button:nth-child(4)::before { content: '04'; }
.hero-service-rail button:nth-child(5)::before { content: '05'; }

.hero-service-rail button::after {
  content: '›';
  position: absolute;
  right: 14px;
  bottom: 17px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
}

.hero-service-rail button:hover {
  border-color: rgba(202, 255, 24, 0.65);
  border-bottom-color: #9446ff;
  background:
    radial-gradient(circle at 50% 38%, rgba(202, 255, 24, 0.11), transparent 38%),
    linear-gradient(150deg, #181d20, #090c0f);
  transform: translateY(-5px);
}

.hero-service-icon {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 140px;
  height: 130px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: transparent;
  font-size: 0;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.45));
  transform: translateX(-50%);
}

.hero-service-rail button > span:last-child {
  position: absolute;
  right: 15px;
  bottom: 16px;
  left: 15px;
  display: grid;
}

.hero-service-rail strong {
  padding-right: 36px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.015em;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  text-transform: uppercase;
}

.hero-service-rail b {
  margin-top: 5px;
  padding-right: 40px;
  color: #8f9892;
  font-size: 10px;
  font-weight: 500;
}

.hero-service-rail small {
  display: none;
}

.trust-strip {
  display: none !important;
}

.trust-grid {
  width: min(1420px, calc(100% - 56px));
  height: 100%;
  min-height: 0;
  border: none;
  border-radius: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: transparent;
}

.trust-grid article {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-grid article:last-child,
.trust-grid article:last-of-type {
  border-right: 0 !important;
}

.trust-icon {
  width: 32px;
  height: 32px;
  border: 0;
  color: var(--accent);
}

.trust-icon svg {
  width: 26px;
}

.trust-grid b {
  color: #f0f4f1;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 750;
  text-transform: none;
}

.trust-grid small {
  color: #9aa49c;
  font-size: 12px;
  margin-top: 3px;
}

.trust-support {
  padding: 18px 26px;
  border: 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  background: transparent;
  color: #e1e5e2;
  text-align: left;
  cursor: pointer;
}

.trust-support > span {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 25px;
}

.trust-support > div {
  display: grid;
}

.trust-support b {
  font-family: var(--font-display);
  font-size: 21px;
  text-transform: uppercase;
}

.trust-support small {
  color: #7c857f;
  font-size: 9px;
}

.services,
.security,
.faq {
  background: #0b0e12;
  box-shadow: 0 0 0 100vmax #0b0e12;
  color: #dfe4e0;
}

.section-heading h2 em,
.security h2 em {
  color: var(--accent);
}

.catalog-toolbar,
.product-card,
.sell-coins-card,
.order-preview,
.order-card,
.admin-thread-card,
.metric-grid article,
.admin-metrics article,
.topup-form,
.chat-layout,
.service-setting-card {
  background-color: #11161b;
}

.catalog-filters button.is-active,
.product-card > footer button {
  border-color: var(--accent);
  background: var(--accent);
  color: #080b0d;
}

.product-copy h3,
.product-card > footer strong,
.product-copy li b,
.faq-list summary b {
  color: #dfe4e0;
}

.support-banner {
  box-shadow: 0 0 32px rgba(202, 255, 24, 0.08);
}

.service-form,
.app-panel,
.account-content {
  background: #0e1216;
  color: #dfe4e0;
}

.service-field__label,
.auth-form label,
.topup-form > label,
.payment-fields label,
.setting-field > span,
.dashboard-title h3,
.block-title h4,
.admin-subtitle h4 {
  color: #cbd1cd;
}

@media (max-width: 1260px) {
  .header-proof,
  .header-support {
    display: none;
  }

  .header-inner {
    grid-template-columns: minmax(190px, 1fr) auto minmax(150px, 1fr);
  }

  .hero {
    grid-template-columns: minmax(390px, 0.78fr) minmax(520px, 1.22fr);
    grid-template-rows: minmax(0, 1fr) 235px;
  }

  .hero-service-rail button,
  .hero-service-rail button:nth-child(2) {
    min-height: 235px;
  }

  .hero-service-icon {
    width: 132px;
    height: 132px;
  }
}

@media (min-width: 1280px) and (min-height: 1200px) {
  .hero::before {
    background-position: center top;
  }
}

@media (min-width: 981px) and (max-height: 900px) {
  .hero,
  .service-landing-hero {
    padding-top: clamp(34px, 4.5svh, 48px);
    gap: 18px 44px;
  }

  .hero-copy,
  .service-landing-copy {
    align-self: center;
    margin-top: 0;
  }

  .hero .eyebrow,
  .service-landing-copy .eyebrow {
    font-size: 11px;
  }

  .hero h1,
  .service-landing-copy h1 {
    margin-top: 12px;
    font-size: clamp(62px, 8.5svh, 78px);
    line-height: 0.88;
  }

  .hero h1 em,
  .service-landing-copy h1 em {
    margin-top: 4px;
  }

  .hero-copy > p,
  .service-landing-copy > p {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-actions,
  .service-landing-actions {
    margin-top: 16px;
  }

  .hero .button,
  .service-landing-hero .button {
    min-height: 44px;
  }

  .hero-service-rail {
    height: 100%;
    align-self: stretch;
  }

  .hero-service-rail button,
  .hero-service-rail button:nth-child(2) {
    height: 100%;
    min-height: 0;
    padding: 12px 14px;
  }

  .hero-service-icon {
    top: 12px;
    width: clamp(112px, 14svh, 128px);
    height: clamp(108px, 13.5svh, 124px);
  }

  .hero-service-rail button > span:last-child {
    right: 14px;
    bottom: 12px;
    left: 14px;
  }

  .hero-service-rail strong {
    font-size: 20px;
  }

  .hero-service-rail b {
    margin-top: 3px;
    font-size: 9px;
  }

  .hero-service-rail button::after {
    right: 12px;
    bottom: 12px;
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 72px;
  }

  .header-inner {
    width: calc(100% - 36px);
    grid-template-columns: 1fr auto;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding: 58px 18px 22px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 430px auto;
    gap: 30px;
  }

  .trust-strip {
    height: auto;
    min-height: 0;
  }

  .hero-copy {
    width: min(650px, 100%);
    align-self: start;
    margin: 0;
  }

  .hero-graphic-stage {
    grid-row: 2;
    min-height: 430px;
  }

  .hero-graphic-stage::before {
    left: 58%;
    width: min(55vw, 390px);
  }

  .hero-service-rail {
    grid-row: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-service-rail button,
  .hero-service-rail button:nth-child(2) {
    min-height: 230px;
  }

  .hero-service-rail button:nth-child(4) {
    grid-column: 1 / 2;
  }

  .hero-service-rail button:nth-child(5) {
    grid-column: 2 / 3;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-inline: 14px;
    grid-template-rows: auto 340px auto;
  }

  .hero h1 {
    font-size: clamp(58px, 17vw, 76px);
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr;
  }

  .hero .button {
    min-width: 0;
    padding-inline: 12px;
  }

  .hero-graphic-stage {
    min-height: 340px;
  }

  .hero-graphic-stage::before {
    width: min(76vw, 330px);
  }

  .hero-service-rail {
    grid-template-columns: 1fr 1fr;
  }

  .hero-service-rail button,
  .hero-service-rail button:nth-child(2) {
    min-height: 220px;
  }

  .hero-service-rail button:nth-child(4),
  .hero-service-rail button:nth-child(5) {
    grid-column: auto;
  }

  .hero-service-rail button:nth-child(5) {
    grid-column: 1 / -1;
    width: calc(50% - 7px);
    justify-self: center;
  }

  .trust-grid {
    width: calc(100% - 28px);
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid article,
  .trust-grid article:first-child {
    padding: 16px 12px;
  }

  .trust-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-support {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 430px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-service-rail {
    grid-template-columns: 1fr;
  }

  .hero-service-rail button:nth-child(5) {
    grid-column: auto;
    width: 100%;
  }
}

/* Multi-page service navigation and five-card home rail */

.desktop-nav a {
  position: relative;
  min-height: var(--home-header-height);
  padding-inline: 7px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  color: #c7cdc9;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  right: 10px;
  bottom: -1px;
  left: 10px;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-current='page'] {
  color: var(--accent);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current='page']::after {
  transform: scaleX(1);
}

.mobile-menu > .mobile-service-link[aria-current='page'] {
  border-left: 3px solid var(--accent);
  background: rgba(202, 255, 24, 0.055);
  color: var(--accent);
}

.mobile-menu > .mobile-service-link {
  min-height: 62px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 8px;
  color: #d9dedb;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 750;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-menu > .mobile-service-link > span {
  color: var(--accent);
  font-size: 13px;
}

.mobile-menu > .mobile-service-link > b {
  color: #7d8781;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 650;
  text-transform: none;
}

.hero-service-carousel {
  position: relative;
  z-index: 5;
  width: 100%;
  height: auto;
  min-width: 0;
  grid-column: 1 / -1;
  align-self: end;
}

.hero-services-title {
  position: absolute;
  top: -39px;
  left: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-services-title > span {
  width: 25px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(202, 255, 24, 0.6);
}

.hero-service-rail {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 14px;
  overflow: visible;
  scrollbar-width: none;
}

.hero-service-rail::-webkit-scrollbar {
  display: none;
}

.hero-service-rail .hero-service-card {
  position: relative;
  width: auto;
  min-width: 0;
  min-height: 238px;
  margin: 0;
  padding: 18px 16px 18px;
  overflow: hidden;
  border: 1px solid rgba(173, 183, 178, 0.25);
  border-bottom-color: rgba(136, 54, 255, 0.78);
  border-radius: 7px;
  display: block;
  background:
    radial-gradient(circle at 50% 38%, rgba(202, 255, 24, 0.06), transparent 36%),
    linear-gradient(150deg, #15191d, #070a0d);
  color: #e2e6e3;
  text-align: left;
  text-decoration: none;
  box-shadow: inset 0 -2px 0 rgba(132, 52, 255, 0.22);
  scroll-snap-align: start;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.hero-service-rail .hero-service-card::before {
  content: '01';
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 15px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 650;
}

.hero-service-rail .hero-service-card:nth-child(2)::before { content: '02'; }
.hero-service-rail .hero-service-card:nth-child(3)::before { content: '03'; }
.hero-service-rail .hero-service-card:nth-child(4)::before { content: '04'; }
.hero-service-rail .hero-service-card:nth-child(5)::before { content: '05'; }
.hero-service-rail .hero-service-card:nth-child(6)::before { content: '06'; }
.hero-service-rail .hero-service-card:nth-child(7)::before { content: '07'; }
.hero-service-rail .hero-service-card:nth-child(8)::before { content: '08'; }
.hero-service-rail .hero-service-card:nth-child(9)::before { content: '09'; }
.hero-service-rail .hero-service-card:nth-child(10)::before { content: '10'; }

.hero-service-rail .hero-service-card::after {
  content: '›';
  position: absolute;
  right: 14px;
  bottom: 17px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
}

.hero-service-rail .hero-service-card:hover,
.hero-service-rail .hero-service-card:focus-visible {
  border-color: rgba(202, 255, 24, 0.65);
  border-bottom-color: #9446ff;
  background:
    radial-gradient(circle at 50% 38%, rgba(202, 255, 24, 0.11), transparent 38%),
    linear-gradient(150deg, #181d20, #090c0f);
  transform: translateY(-4px);
}

.hero-service-rail .hero-service-card > span:last-child {
  position: absolute;
  right: 15px;
  bottom: 16px;
  left: 15px;
  display: grid;
}

.hero-service-rail .hero-service-card:nth-child(1) .hero-service-icon { background-image: url('images/service-emblem-coin-buy.webp'); }
.hero-service-rail .hero-service-card:nth-child(2) .hero-service-icon { background-image: url('images/service-emblem-weekend-league.webp'); }
.hero-service-rail .hero-service-card:nth-child(3) .hero-service-icon { background-image: url('images/service-emblem-rivals.webp'); }
.hero-service-rail .hero-service-card:nth-child(4) .hero-service-icon { background-image: url('images/service-emblem-draft.webp'); }
.hero-service-rail .hero-service-card:nth-child(5) .hero-service-icon { background-image: url('images/service-emblem-squad-battles.webp'); }
.hero-service-rail .hero-service-card:nth-child(6) .hero-service-icon { background-image: url('images/service-emblem-objective.webp'); }
.hero-service-rail .hero-service-card:nth-child(7) .hero-service-icon { background-image: url('images/service-emblem-coaching.webp'); }
.hero-service-rail .hero-service-card:nth-child(8) .hero-service-icon { background-image: url('images/service-emblem-trade-group.webp'); }
.hero-service-card-empty { opacity: 0.7; border-style: dashed !important; }

.hero-service-pager {
  position: absolute;
  right: 0;
  top: -39px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-service-pager span {
  color: #8c958f;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.hero-service-pager button {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(202, 255, 24, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(5, 8, 10, 0.88);
  color: var(--accent);
  font-size: 22px;
  cursor: pointer;
}

/* SEO service landing pages */

.service-page {
  min-width: 320px;
  background: #05070a;
  color: #dfe4e0;
}

.service-page::before {
  content: '';
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(112, 37, 211, 0.18), transparent 32%),
    radial-gradient(circle at 18% 42%, rgba(202, 255, 24, 0.05), transparent 25%),
    #05070a;
}

.service-landing-hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: calc(100vh - var(--home-header-height));
  min-height: calc(100svh - var(--home-header-height));
  height: auto;
  margin: 0;
  padding: clamp(44px, 4.5vh, 64px) max(28px, calc((100vw - 1420px) / 2)) 40px;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(440px, 0.82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: 28px 44px;
  isolation: isolate;
  background-color: #020305;
}

.service-landing-hero::before {
  content: '';
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: url('images/hero-stadium.webp');
  background-position: center 45%;
  background-size: 106% auto;
  background-repeat: no-repeat;
  transform: none;
}

.service-landing-hero::after {
  content: '';
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, #020305 0%, #020305 43%, rgba(2, 3, 5, 0.97) 48%, rgba(2, 3, 5, 0.72) 55%, rgba(2, 3, 5, 0.3) 63%, transparent 71%),
    linear-gradient(180deg, transparent 54%, rgba(2, 3, 5, 0.1) 64%, rgba(2, 3, 5, 0.66) 84%, #020305 100%);
  mask-image: none;
  opacity: 1;
}

.service-breadcrumb {
  margin-bottom: 16px;
  display: flex;
  gap: 9px;
  color: #737d77;
  font-size: 11px;
}

.service-breadcrumb a {
  color: #9ba49e;
  text-decoration: none;
}

.service-landing-copy .eyebrow {
  color: var(--accent);
  font-size: 12px;
}

.service-landing-copy h1 {
  margin-top: 16px;
  color: #e8ebe8;
  font-family: var(--font-display);
  font-size: clamp(62px, 5.2vw, 86px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.86;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.65);
  text-transform: uppercase;
}

.service-landing-copy h1 em {
  margin-top: 8px;
  display: block;
  color: var(--accent);
  font-style: normal;
}

.service-landing-copy > p {
  max-width: 470px;
  margin-top: 24px;
  color: #aab1ad;
  font-size: 14px;
  line-height: 1.7;
}

.service-landing-actions {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-landing-actions .button {
  min-width: 194px;
  min-height: 50px;
  border-radius: 6px;
}

.service-facts {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
}

.service-facts li {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(12, 16, 19, 0.85);
  color: #d4ded7;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-facts .platform-ps {
  border-color: rgba(0, 112, 209, 0.35);
  background: rgba(0, 112, 209, 0.08);
}

.service-facts .platform-xbox {
  border-color: rgba(16, 124, 16, 0.35);
  background: rgba(16, 124, 16, 0.08);
}

.service-facts .platform-pc {
  border-color: rgba(255, 102, 0, 0.35);
  background: rgba(255, 102, 0, 0.08);
}

.service-facts .platform-icon,
.service-facts svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.service-emblem-panel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 410px;
  max-height: 520px;
  border: 1px solid rgba(202, 255, 24, 0.2);
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(202, 255, 24, 0.11), transparent 30%),
    radial-gradient(circle at 54% 50%, rgba(137, 48, 255, 0.24), transparent 56%),
    linear-gradient(145deg, #12171b, #07090c 72%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36), inset 0 -2px 0 rgba(130, 49, 255, 0.3);
}

.service-emblem-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero-stadium.webp');
  background-size: cover;
  background-position: 70% center;
  opacity: 0.24;
}

.service-emblem-panel img {
  position: relative;
  z-index: 1;
  width: min(72%, 360px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.55));
}

.service-emblem-panel figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  color: #88918b;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-emblem-panel figcaption b {
  color: var(--accent);
}

.service-content-section {
  width: min(1420px, calc(100% - 48px));
  margin-inline: auto;
  padding: 88px 0;
}

.service-section-head {
  max-width: 820px;
  margin-bottom: 38px;
}

.service-section-head .panel-kicker {
  color: var(--accent);
}

.service-section-head h2 {
  margin: 12px 0 0;
  color: #e3e7e4;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 0.98;
  text-transform: uppercase;
}

.service-section-head p {
  margin-top: 18px;
  color: #959f98;
  line-height: 1.7;
}

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

.service-option-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.service-option-card {
  min-height: 255px;
  padding: 28px;
  border: 1px solid rgba(157, 168, 161, 0.22);
  border-bottom-color: rgba(133, 55, 247, 0.75);
  border-radius: 8px;
  display: grid;
  align-content: start;
  background: linear-gradient(145deg, #13181c, #090c0f);
}

.service-option-card > span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 750;
}

.service-option-card h3 {
  margin: 34px 0 0;
  color: #e3e7e4;
  font-family: var(--font-display);
  font-size: 31px;
  text-transform: uppercase;
}

.service-option-card p {
  margin-top: 10px;
  color: #8f9993;
  font-size: 13px;
  line-height: 1.65;
}

.service-option-card a {
  width: fit-content;
  margin-top: 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.service-quick-form {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-quick-form label {
  display: grid;
  gap: 6px;
  color: #7f8983;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-quick-form input,
.service-quick-form select {
  width: 100%;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(157, 168, 161, 0.25);
  border-radius: 4px;
  background: #080b0e;
  color: #d7ddd9;
  font: 600 11px var(--font-body);
}

.service-quick-form .service-quick-check {
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(157, 168, 161, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aeb6b1;
  letter-spacing: 0;
  text-transform: none;
}

.service-quick-form .service-quick-check input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--accent);
}

.service-quick-form button {
  min-height: 42px;
  border: 0;
  border-radius: 4px;
  grid-column: 1 / -1;
  background: var(--accent);
  color: #080b0d;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-detail-grid article {
  padding: 30px;
  border-top: 1px solid rgba(202, 255, 24, 0.3);
  background: rgba(12, 16, 19, 0.72);
}

.service-detail-grid h2,
.service-detail-grid h3 {
  margin: 0;
  color: #dfe4e0;
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
}

.service-detail-grid p,
.service-detail-grid li {
  color: #929c96;
  font-size: 13px;
  line-height: 1.7;
}

.service-detail-grid ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.service-risk-box {
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(240, 181, 69, 0.28);
  border-radius: 6px;
  background: rgba(43, 31, 12, 0.3);
  color: #c2b28e;
  font-size: 12px;
  line-height: 1.65;
}

.service-crosslinks {
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto 70px;
  padding: 24px;
  border: 1px solid rgba(202, 255, 24, 0.2);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #0d1215;
}

.service-crosslinks strong {
  color: #dce1dd;
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
}

.service-crosslinks nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.service-crosslinks a {
  color: #98a29c;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.service-crosslinks a:hover {
  color: var(--accent);
}

@media (min-width: 981px) and (max-height: 900px) {
  .hero-service-carousel {
    align-self: stretch;
  }

  .hero-service-rail .hero-service-card {
    height: 100%;
    min-height: 0;
    padding: 12px 14px;
  }

  .hero-service-rail .hero-service-card > span:last-child {
    right: 14px;
    bottom: 12px;
    left: 14px;
  }

  .hero-service-rail .hero-service-card::after {
    right: 12px;
    bottom: 12px;
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 1240px) {
  .hero-service-rail .hero-service-card {
    min-height: 235px;
  }

  .service-landing-hero {
    padding-inline: max(28px, 5.3125vw);
    grid-template-columns: minmax(0, 1fr);
  }

  .service-emblem-panel {
    min-height: 420px;
  }
}

@media (max-width: 980px) {
  .hero::before {
    background-image: url('images/hero-stadium.webp');
    background-position: center;
    background-size: cover;
  }

  .hero::after {
    background: linear-gradient(180deg, #020305 0%, transparent 38%, rgba(2, 3, 5, 0.72) 78%, #020305 100%);
  }

  .hero-graphic-stage {
    background-image: url('images/hero-podium.webp');
    background-position: center bottom;
    background-size: auto 116%;
    background-repeat: no-repeat;
  }

  .hero-service-carousel {
    grid-row: 3;
  }

  .hero-service-rail {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-columns: auto;
  }

  .hero-service-rail .hero-service-card {
    min-height: 230px;
  }

  .hero-service-pager {
    top: -37px;
  }

  .service-landing-hero {
    padding-top: 54px;
    grid-template-columns: 1fr;
  }

  .service-emblem-panel {
    min-height: 420px;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero-service-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-columns: auto;
  }

  .hero-service-rail .hero-service-card {
    min-height: 220px;
  }

  .service-content-section,
  .service-crosslinks {
    width: calc(100% - 28px);
  }

  .service-landing-hero {
    min-height: 0;
    padding: 42px 0 48px;
  }

  .hero h1,
  .service-landing-copy h1 {
    font-size: clamp(58px, 17vw, 76px);
  }

  .service-option-grid {
    grid-template-columns: 1fr;
  }

  .service-quick-form {
    grid-template-columns: 1fr;
  }

  .service-emblem-panel {
    min-height: 340px;
  }

  .service-content-section {
    padding: 62px 0;
  }

  .service-crosslinks {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-crosslinks nav {
    justify-content: flex-start;
  }

}

@media (max-width: 430px) {
  .hero-service-rail {
    grid-template-columns: none;
    grid-auto-columns: 86%;
  }
}

/* Site-wide physical desktop contract: every public page scales from its 1920 reference at every desktop width. */
@media (min-width: 1241px) {
  html {
    font-size: calc(100vw / 1920);
  }

  .service-modal-panel,
  .app-panel,
  .coming-soon-panel {
    transform: scale(var(--frontend-overlay-scale));
    transform-origin: center;
  }

  .toast-region {
    transform: scale(var(--frontend-overlay-scale));
    transform-origin: right bottom;
  }

  :root {
    --home-header-height: 96rem;
    --home-trust-height: 154rem;
  }

  .header-inner {
    width: 1420rem;
    gap: 26rem;
    grid-template-columns: 208rem minmax(0, 1fr) auto;
  }

  .brand-logo {
    width: 208rem;
  }

  .desktop-nav {
    gap: 2rem;
  }

  .desktop-nav a {
    padding-inline: 7rem;
    font-size: 11rem;
  }

  .desktop-nav button {
    padding-inline: 12rem;
    font-size: 12rem;
  }

  .header-actions {
    gap: 16rem;
  }

  .header-cta {
    min-width: 132rem;
    min-height: 44rem;
    padding-inline: 18rem;
    font-size: 13rem;
    border-radius: 6rem;
  }

  .hero {
    padding: 65rem 250rem 0;
    grid-template-columns: minmax(440rem, 0.82fr) minmax(600rem, 1.18fr);
    grid-template-rows: minmax(0, 1fr) 258rem;
    gap: 28rem 44rem;
  }

  .hero-copy {
    width: min(650rem, 100%);
    margin: 0 0 48rem;
  }

  .hero .eyebrow {
    font-size: 12rem;
  }

  .hero .eyebrow > span {
    width: 25rem;
  }

  .hero h1 {
    margin-top: 20rem;
    font-size: 86rem;
  }

  .hero h1 em {
    margin-top: 8rem;
  }

  .hero-copy > p {
    max-width: 470rem;
    margin-top: 24rem;
    font-size: 14rem;
  }

  .hero-actions {
    margin-top: 25rem;
    gap: 14rem;
  }

  .hero .button {
    min-width: 194rem;
    min-height: 50rem;
    border-radius: 6rem;
    font-size: 13rem;
  }

  .hero-graphic-stage {
    min-height: 410rem;
  }

  .hero-service-rail {
    grid-auto-columns: calc((100% - 56rem) / 5);
    gap: 14rem;
  }

  .hero-services-title {
    top: -39rem;
    gap: 10rem;
    font-size: 15rem;
  }

  .hero-services-title > span {
    width: 25rem;
    height: 2rem;
  }

  .hero-service-rail .hero-service-card {
    min-height: 258rem;
    padding: 16rem 15rem 17rem;
    border-radius: 7rem;
  }

  .hero-service-icon {
    top: 22rem;
    width: 148rem;
    height: 142rem;
  }

  .hero-service-rail .hero-service-card::before {
    top: 12rem;
    left: 15rem;
    font-size: 16rem;
  }

  .hero-service-rail .hero-service-card::after {
    right: 14rem;
    bottom: 17rem;
    width: 34rem;
    height: 34rem;
    font-size: 24rem;
  }

  .hero-service-rail .hero-service-card > span:last-child {
    right: 15rem;
    bottom: 16rem;
    left: 15rem;
  }

  .hero-service-rail strong {
    padding-right: 40rem;
    font-size: 23rem;
  }

  .hero-service-rail b {
    margin-top: 5rem;
    padding-right: 40rem;
    font-size: 10rem;
  }

  .trust-strip {
    padding-block: 0;
  }

  .trust-grid {
    width: 1420rem;
    height: 80rem;
    border: none;
    border-radius: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    background: transparent;
    box-shadow: none;
  }

  .trust-grid article {
    padding: 14rem 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12rem;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }

  .trust-grid article:last-child,
  .trust-grid article:last-of-type {
    border-right: 0 !important;
  }

  .trust-icon {
    width: 32rem;
    height: 32rem;
    border: 0;
    color: var(--accent);
  }

  .trust-icon svg {
    width: 26rem;
  }

  .trust-symbol {
    font-family: var(--font-display);
    font-size: 32rem;
  }

  .trust-grid b {
    color: #f0f4f1;
    font-family: var(--font-body);
    font-size: 15rem;
    font-weight: 750;
    text-transform: none;
  }

  .trust-grid small {
    color: #9aa49c;
    font-size: 12rem;
    margin-top: 3rem;
  }

  .trust-support {
    padding: 18rem 26rem;
    grid-template-columns: 48rem 1fr;
    gap: 14rem;
  }

  .site-chrome-page .faq {
    width: var(--frontend-content-shell);
    padding: 132rem 0;
  }

  .site-chrome-page .faq .section-heading {
    margin-bottom: 42rem;
    grid-template-columns: minmax(0, 1fr) minmax(280rem, 460rem);
    gap: 48rem;
  }

  .site-chrome-page .faq .eyebrow {
    gap: 10rem;
    font-size: 11rem;
  }

  .site-chrome-page .faq .eyebrow > span {
    width: 26rem;
    height: 2rem;
  }

  .site-chrome-page .faq .section-heading h2 {
    margin-top: 16rem;
    font-size: 82rem;
  }

  .site-chrome-page .faq .section-heading > p {
    font-size: 14rem;
  }

  .site-chrome-page .faq-list summary {
    min-height: 76rem;
    grid-template-columns: 46rem minmax(0, 1fr) 28rem;
    gap: 14rem;
  }

  .site-chrome-page .faq-list summary > span {
    font-size: 10rem;
  }

  .site-chrome-page .faq-list summary b {
    font-size: 23rem;
  }

  .site-chrome-page .faq-list summary i {
    width: 24rem;
    height: 24rem;
  }

  .site-chrome-page .faq-list summary i::before,
  .site-chrome-page .faq-list summary i::after {
    top: 11rem;
    left: 5rem;
    width: 14rem;
    height: 1rem;
  }

  .site-chrome-page .faq-list details > p {
    max-width: 820rem;
    padding: 0 0 24rem 60rem;
    font-size: 13rem;
  }

  .site-chrome-page .site-footer {
    padding: 72rem 0 28rem;
  }

  .site-chrome-page .site-footer .section-shell {
    width: var(--frontend-content-shell);
  }

  .site-chrome-page .footer-grid {
    grid-template-columns: 1.45fr repeat(3, 0.75fr);
    gap: 54rem;
  }

  .site-chrome-page .footer-brand .brand-logo {
    width: 190rem;
  }

  .site-chrome-page .footer-brand > p {
    max-width: 390rem;
    margin: 22rem 0 16rem;
    font-size: 12rem;
  }

  .site-chrome-page .footer-mail {
    font-size: 12rem;
  }

  .site-chrome-page .footer-grid > div:not(.footer-brand) {
    gap: 10rem;
  }

  .site-chrome-page .footer-grid h3 {
    margin-bottom: 7rem;
    font-size: 11rem;
  }

  .site-chrome-page .footer-grid button,
  .site-chrome-page .footer-grid a,
  .site-chrome-page .footer-grid span {
    font-size: 11rem;
  }

  .site-chrome-page .footer-bottom {
    margin-top: 54rem;
    padding-top: 24rem;
    gap: 24rem;
    font-size: 10rem;
  }

  .service-landing-hero {
    width: var(--frontend-service-shell);
    min-height: 640rem;
    padding: 72rem 0 64rem;
    grid-template-columns: minmax(0, 0.98fr) minmax(420rem, 0.82fr);
    gap: 120rem;
  }

  .service-breadcrumb {
    margin-bottom: 30rem;
    gap: 9rem;
    font-size: 11rem;
  }

  .service-landing-copy .eyebrow {
    font-size: 12rem;
  }

  .service-landing-copy h1 {
    max-width: 760rem;
    margin-top: 18rem;
  }

  .service-landing-copy > p {
    max-width: 650rem;
    margin-top: 26rem;
    font-size: 16rem;
  }

  .service-landing-actions {
    margin-top: 30rem;
    gap: 12rem;
  }

  .service-landing-actions .button {
    min-height: 50rem;
    border-radius: 5rem;
  }

  .service-facts {
    margin-top: 30rem;
    gap: 10rem;
  }

  .service-facts li {
    padding: 10rem 13rem;
    border-radius: 4rem;
    font-size: 11rem;
  }

  .service-emblem-panel {
    min-height: 490rem;
    border-radius: 12rem;
  }

  .service-emblem-panel img {
    width: min(72%, 360rem);
  }

  .service-emblem-panel figcaption {
    right: 20rem;
    bottom: 18rem;
    left: 20rem;
    font-size: 10rem;
  }

  .service-content-section {
    width: var(--frontend-service-shell);
    padding: 88rem 0;
  }

  .service-section-head {
    max-width: 820rem;
    margin-bottom: 38rem;
  }

  .service-section-head h2 {
    margin-top: 12rem;
    font-size: 62rem;
  }

  .service-section-head p {
    margin-top: 18rem;
  }

  .service-option-grid,
  .service-detail-grid {
    gap: 18rem;
  }

  .service-option-card {
    min-height: 255rem;
    padding: 28rem;
    border-radius: 8rem;
  }

  .service-option-card > span {
    font-size: 14rem;
  }

  .service-option-card h3 {
    margin-top: 34rem;
    font-size: 31rem;
  }

  .service-option-card p {
    margin-top: 10rem;
    font-size: 13rem;
  }

  .service-option-card a {
    margin-top: 24rem;
    font-size: 12rem;
  }

  .service-quick-form {
    margin-top: 22rem;
    gap: 10rem;
  }

  .service-quick-form label {
    gap: 6rem;
    font-size: 9rem;
  }

  .service-quick-form input,
  .service-quick-form select,
  .service-quick-form .service-quick-check {
    min-height: 40rem;
    padding-inline: 10rem;
    border-radius: 4rem;
  }

  .service-quick-form input,
  .service-quick-form select {
    font-size: 11rem;
  }

  .service-quick-form button {
    min-height: 42rem;
    border-radius: 4rem;
    font-size: 11rem;
  }

  .service-detail-grid article {
    padding: 30rem;
  }

  .service-detail-grid h2,
  .service-detail-grid h3 {
    font-size: 26rem;
  }

  .service-detail-grid p,
  .service-detail-grid li {
    font-size: 13rem;
  }

  .service-risk-box {
    margin-top: 18rem;
    padding: 22rem 24rem;
    border-radius: 6rem;
    font-size: 12rem;
  }

  .service-crosslinks {
    width: var(--frontend-service-shell);
    margin-bottom: 70rem;
    padding: 24rem;
    border-radius: 7rem;
    gap: 28rem;
  }

  .service-crosslinks strong {
    font-size: 24rem;
  }

  .service-crosslinks nav {
    gap: 14rem;
  }

  .service-crosslinks a {
    font-size: 12rem;
  }

}

/* Site-wide mobile resilience contract: compact layout, safe gutters, touch targets and form sizing. */
@media (max-width: 980px) {
  .home-reference-page,
  .service-page {
    min-width: 0;
    overflow-x: hidden;
  }

  .service-landing-hero,
  .service-landing-copy,
  .service-emblem-panel,
  .service-option-card,
  .service-detail-grid article {
    min-width: 0;
  }

  .service-landing-hero {
    padding-inline: max(18px, 5.3125vw);
    grid-template-columns: minmax(0, 1fr);
  }

  .service-landing-copy h1,
  .service-landing-copy p,
  .service-option-card,
  .service-detail-grid article,
  .service-crosslinks {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 680px) {
  .home-reference-page,
  .service-page {
    --mobile-page-shell: calc(100% - var(--frontend-mobile-gutter) - var(--frontend-mobile-gutter));
  }

  .service-content-section,
  .service-crosslinks {
    width: var(--mobile-page-shell);
  }

  .service-landing-hero {
    padding-inline: var(--frontend-mobile-gutter);
  }

  .service-page :is(input, select, textarea),
  .home-reference-page :is(input, select, textarea) {
    font-size: 16px;
  }

  .service-page :is(button, .button, summary, input, select),
  .home-reference-page :is(button, .button, input, select) {
    min-height: var(--frontend-touch-target);
  }

  .service-landing-actions,
  .service-landing-actions .button {
    width: 100%;
  }

  .service-facts li,
  .service-landing-actions .button {
    min-height: var(--frontend-touch-target);
  }

  .service-emblem-panel img {
    width: min(72%, 300px);
    max-height: 72vw;
  }

  .coming-soon {
    padding-inline: var(--frontend-mobile-gutter);
  }

  .coming-soon-panel {
    padding: 44px 24px 36px;
  }

  .coming-soon-panel h2 {
    font-size: clamp(48px, 16vw, 64px);
  }

  .coming-soon-actions,
  .coming-soon-actions .button {
    width: 100%;
  }

  .coming-soon-actions .button {
    min-height: var(--frontend-touch-target);
  }
}

/* Canonical index header shared by the home page and every service page. */
.site-chrome-page {
  --shared-header-height: clamp(72px, 9.26svh, 100px);
  --shared-header-shell: var(--frontend-home-shell);
}

.site-chrome-page .site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--shared-header-height);
  min-height: 0;
  border-bottom: 1px solid rgba(112, 121, 128, 0.28);
  background: rgba(2, 4, 6, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.site-chrome-page .header-inner {
  width: var(--shared-header-shell);
  height: 100%;
  min-height: 0;
  margin-inline: auto;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: clamp(18px, 1.2vw, 24px);
}

.site-chrome-page .brand-logo {
  width: clamp(184px, 11.46vw, 220px);
}

.site-chrome-page .desktop-nav {
  align-self: stretch;
  justify-content: center;
  gap: clamp(0px, 0.12vw, 3px);
  white-space: nowrap;
}

.site-chrome-page .desktop-nav a {
  position: relative;
  min-height: 100%;
  padding-inline: clamp(8px, 0.68vw, 13px);
  display: inline-flex;
  align-items: center;
  color: #f0f2ee;
  font-size: clamp(11px, 0.73vw, 14px);
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease;
}

.site-chrome-page .desktop-nav a::after {
  content: '';
  position: absolute;
  right: clamp(8px, 0.68vw, 13px);
  bottom: -1px;
  left: clamp(8px, 0.68vw, 13px);
  height: 3px;
  background: #cfff00;
  box-shadow: 0 0 16px rgba(207, 255, 0, 0.32);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 150ms ease;
}

.site-chrome-page .desktop-nav a:hover,
.site-chrome-page .desktop-nav a:focus-visible,
.site-chrome-page .desktop-nav a[aria-current='page'] {
  color: #d6ff00;
}

.site-chrome-page .desktop-nav a:hover::after,
.site-chrome-page .desktop-nav a:focus-visible::after,
.site-chrome-page .desktop-nav a[aria-current='page']::after {
  transform: scaleX(1);
}

.site-chrome-page .header-actions {
  gap: clamp(8px, 0.72vw, 18px);
}

.site-chrome-page .header-balance {
  min-height: 44px;
  padding-inline: 16px;
  border-color: rgba(207, 255, 0, 0.2);
  border-radius: 6px;
  background: #0a0d0f;
}

.site-chrome-page .header-cta {
  min-width: 132px;
  min-height: 44px;
  padding-inline: 18px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, #ceff00, #baf400);
  box-shadow: 0 0 24px rgba(207, 255, 0, 0.16);
  color: #050700;
  font-size: 13px;
  font-weight: 800;
}

.site-chrome-page .header-cta:hover {
  background: #dcff37;
  transform: translateY(-1px);
}

@media (min-width: 1241px) {
  .site-chrome-page {
    --shared-header-height: 9.26svh;
  }

  .site-chrome-page .header-inner {
    grid-template-columns: 11.46vw minmax(0, 1fr) auto;
    gap: 1.2vw;
  }

  .site-chrome-page .brand-logo {
    width: 11.46vw;
  }

  .site-chrome-page .desktop-nav {
    gap: 0.12vw;
  }

  .site-chrome-page .desktop-nav a {
    padding-inline: 0.68vw;
    font-size: 0.73vw;
  }

  .site-chrome-page .desktop-nav a::after {
    right: 0.68vw;
    left: 0.68vw;
  }

  .site-chrome-page .header-actions {
    gap: 0.72vw;
  }

  .site-chrome-page .header-balance {
    min-height: 4.07svh;
    padding-inline: 0.83vw;
    border-radius: 0.31vw;
  }

  .site-chrome-page .header-cta {
    min-width: 6.88vw;
    min-height: 4.07svh;
    padding-inline: 0.94vw;
    border-radius: 0.31vw;
    font-size: 0.68vw;
  }
}

@media (max-width: 1240px) {
  .site-chrome-page {
    --shared-header-shell: calc(100vw - 48px);
  }

  .site-chrome-page .desktop-nav a {
    padding-inline: 7px;
    font-size: 10px;
  }

  .site-chrome-page .header-inner {
    grid-template-columns: 178px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .site-chrome-page .brand-logo {
    width: 172px;
  }
}

@media (max-width: 980px) {
  .site-chrome-page {
    --shared-header-height: 74px;
    --shared-header-shell: calc(100vw - 36px);
  }

  .site-chrome-page .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-chrome-page .brand-logo {
    width: 176px;
  }

  .site-chrome-page .desktop-nav,
  .site-chrome-page .header-cta {
    display: none;
  }

  .site-chrome-page .mobile-menu-toggle {
    display: inline-grid;
  }

  .site-chrome-page .mobile-menu {
    position: fixed;
    z-index: 99;
    top: var(--shared-header-height);
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: calc(100dvh - var(--shared-header-height));
    max-height: none;
    padding: 22px max(18px, var(--frontend-mobile-gutter)) max(28px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 0;
    background: #020305 !important;
    box-shadow: none;
    opacity: 1;
    backdrop-filter: none;
  }

  .site-chrome-page .mobile-menu.is-open {
    align-content: start;
  }

  body.mobile-menu-open .site-chrome-page .site-header {
    background: #020305;
  }
}

@media (max-width: 620px) {
  .site-chrome-page {
    --shared-header-shell: calc(100vw - 28px);
  }

  .site-chrome-page .brand-logo {
    width: 154px;
  }
}

/* Mobile-first home experience: clear hierarchy, compact choices and one scan axis. */
@media (max-width: 680px) {
  .home-reference-page {
    --reference-header: 68px;
    --reference-shell: calc(100vw - 28px);
    --shared-header-height: 68px;
    --shared-header-shell: calc(100vw - 28px);
  }

  .home-reference-page .site-header {
    height: var(--reference-header);
  }

  .home-reference-page .header-inner {
    width: var(--reference-shell);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .home-reference-page .brand-logo {
    width: clamp(118px, 32vw, 148px);
  }

  .home-reference-page .header-actions {
    gap: 7px;
  }

  .home-reference-page .header-balance {
    display: none;
  }

  .home-reference-page .header-cta {
    min-width: 82px;
    min-height: var(--frontend-touch-target);
    padding-inline: 10px;
    display: inline-flex !important;
    border: 0;
    border-radius: 9px;
    background: linear-gradient(135deg, #ceff00, #baf400);
    box-shadow: 0 0 24px rgba(207, 255, 0, 0.16);
    color: #050700;
    font-size: 11px;
  }

  .home-reference-page .header-cta span {
    display: none;
  }

  .home-reference-page .mobile-menu-toggle {
    width: var(--frontend-touch-target);
    height: var(--frontend-touch-target);
    border-color: rgba(202, 255, 24, 0.22);
    border-radius: 9px;
  }

  .home-reference-page .mobile-menu {
    top: var(--reference-header);
  }

  .home-reference-page .hero {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 34px var(--frontend-mobile-gutter) 36px;
    display: block;
    overflow: hidden;
    background: #020305;
  }

  .home-reference-page .hero::before {
    inset: 0;
    background-position: calc(50vw - 693px) 270px;
    background-size: auto 590px;
    opacity: 0.92;
  }

  .home-reference-page .hero::after {
    background:
      linear-gradient(180deg, #020305 0, rgba(2, 3, 5, 0.96) 245px, rgba(2, 3, 5, 0.18) 420px, rgba(2, 3, 5, 0.28) 630px, #020305 760px),
      linear-gradient(90deg, rgba(2, 3, 5, 0.42), transparent 46%, rgba(2, 3, 5, 0.2));
  }

  .home-reference-page .hero-copy {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 430px;
  }

  .home-reference-page .hero .eyebrow {
    gap: 9px;
    font-size: 10px;
  }

  .home-reference-page .hero .eyebrow > span {
    width: 24px;
  }

  .home-reference-page .hero h1 {
    max-width: 390px;
    margin-top: 14px;
    font-size: clamp(50px, 14.2vw, 66px);
    line-height: 0.88;
  }

  .home-reference-page .hero h1 em {
    margin-top: 5px;
  }

  .home-reference-page .hero-copy > p {
    width: 100%;
    max-width: 350px;
    margin-top: 18px;
    color: #d3d8d4;
    font-size: 13px;
    line-height: 1.5;
  }

  .home-reference-page .hero-actions {
    margin-top: 20px;
    width: min(220px, 100%);
    flex-direction: column;
    gap: 14px;
  }

  .home-reference-page .hero .hero-actions .button {
    width: 100%;
    flex: none;
    min-width: 0;
    min-height: 48px;
    justify-content: center;
    padding-inline: 12px;
    font-size: 12px;
  }

  .home-reference-page .hero .hero-actions .mobile-services-cta {
    order: -1;
    display: inline-flex;
    border-color: var(--accent);
    background: var(--accent);
    color: #050700;
  }

  .home-reference-page .hero-service-carousel {
    position: relative;
    z-index: 4;
    width: 100%;
    height: auto;
    margin-top: 330px;
  }

  .home-reference-page .hero-services-title {
    position: static;
    margin: 0 0 16px;
    gap: 9px;
    font-size: 17px;
  }

  .home-reference-page .hero-services-title > span {
    width: 25px;
  }

  .home-reference-page .hero-service-rail {
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    grid-auto-columns: unset !important;
    gap: 10px;
    padding: 0;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }

  .home-reference-page .hero-service-rail .hero-service-card {
    width: 100%;
    min-width: 0 !important;
    max-width: none;
    flex: none;
    height: clamp(174px, 47vw, 204px);
    min-height: 174px;
    padding: 12px;
    border-color: rgba(131, 143, 151, 0.34);
    border-radius: 10px;
    scroll-snap-align: none;
    background:
      radial-gradient(circle at 50% 31%, rgba(202, 255, 24, 0.055), transparent 40%),
      linear-gradient(150deg, #0d1215, #050709);
    box-shadow: inset 0 -1px 0 rgba(126, 39, 255, 0.3);
  }

  .home-reference-page .hero-service-rail .hero-service-card::before {
    top: 10px;
    left: 11px;
    font-size: 12px;
  }

  .home-reference-page .hero-service-rail .hero-service-card::after {
    right: 11px;
    bottom: 12px;
    width: 28px;
    height: 28px;
    font-size: 20px;
  }

  .home-reference-page .hero-service-icon {
    top: 16px;
    width: clamp(102px, 29vw, 128px);
    height: clamp(102px, 29vw, 128px);
  }

  .home-reference-page .hero-service-rail .hero-service-card > span:last-child {
    right: 10px;
    bottom: 13px;
    left: 11px;
  }

  .home-reference-page .hero-service-rail strong {
    padding-right: 32px;
    font-size: clamp(14px, 3.9vw, 17px);
    line-height: 0.95;
  }

  .home-reference-page .hero-service-rail b {
    display: none;
  }

  .home-reference-page .trust-strip {
    height: auto;
    padding: 4px var(--frontend-mobile-gutter) 42px;
    background: #020305;
  }

  .home-reference-page .trust-grid {
    width: 100%;
    height: auto;
    border: 1px solid rgba(131, 143, 151, 0.25);
    border-radius: 14px;
    overflow: hidden;
    display: block;
    background: linear-gradient(145deg, rgba(13, 18, 21, 0.96), rgba(4, 7, 9, 0.98));
  }

  .home-reference-page .trust-grid article,
  .home-reference-page .trust-grid article:first-child,
  .home-reference-page .trust-grid article:nth-child(2) {
    width: 100%;
    min-height: 72px;
    padding: 13px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(117, 129, 137, 0.2);
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    column-gap: 14px;
    text-align: left;
  }

  .home-reference-page .trust-grid article:last-child {
    border-bottom: 0;
  }

  .home-reference-page .trust-grid article > div {
    width: 100%;
  }

  .home-reference-page .trust-icon {
    width: 32px;
    height: 32px;
    justify-self: center;
  }

  .home-reference-page .trust-grid b {
    font-size: 14px;
  }

  .home-reference-page .trust-grid small {
    margin-top: 4px;
    font-size: 11px;
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .home-reference-page .header-inner {
    gap: 7px;
  }

  .home-reference-page .brand-logo {
    width: 116px;
  }

  .home-reference-page .header-actions {
    gap: 6px;
  }

  .home-reference-page .header-cta {
    min-width: 76px;
    padding-inline: 8px;
    font-size: 10px;
  }

  .home-reference-page .hero::before {
    background-position: calc(50vw - 634px) 285px;
    background-size: auto 540px;
  }

  .home-reference-page .hero-service-carousel {
    margin-top: 300px;
  }

  .home-reference-page .hero-service-rail {
    gap: 8px;
  }

  .home-reference-page .hero-service-rail .hero-service-card {
    height: clamp(168px, 48vw, 188px);
    min-height: 168px;
  }

  .home-reference-page .hero-service-rail strong {
    font-size: clamp(13px, 3.8vw, 15px);
  }
}
