:root {
  --green-1: #1cdf73;
  --green-2: #15c9a7;
  --green-3: #00aebb;
  --ink: #1d2e4f;
  --muted: #1d2e4f;
  --line: #d9e4df;
  --paper: #ffffff;
  --soft: #f5faf7;
  --brand-bg: #0d1022;
  --brand-bg-image: url("assets/mywaycard-brand-background.png");
  --surface: rgba(255, 255, 255, 0.96);
  --surface-soft: rgba(245, 250, 247, 0.94);
  --section-white: rgba(255, 255, 255, 0.97);
  --section-tint: rgba(239, 245, 251, 0.96);
  --mint: #e8fbf3;
  --amber: #f6b73c;
  --shadow: 0 22px 70px rgba(23, 33, 29, 0.11);
  --radius: 8px;
  --container: 1360px;
  --topbar-height: 38px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-height) + 98px);
  scroll-snap-type: none;
}

.snap-section {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

@media (min-width: 1041px) {
  html {
    scroll-snap-type: y proximity;
  }

  .early-partner-counter .early-partner-counter-caption {
    font-size: 1.52rem;
    line-height: 1.26;
  }

  main > section {
    min-height: 100vh;
    min-height: 100svh;
  }

  .stats-section,
  .category-section,
  .redemption-section,
  .process-section,
  .conditions-section,
  .ad-comparison-section,
  .packages-section,
  .faq-section,
  .registration-section,
  .split-band,
  .band,
  .final-cta {
    display: grid;
    align-items: center;
    padding: clamp(42px, 6vh, 72px) 0;
  }
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    var(--brand-bg-image) center / cover fixed no-repeat,
    var(--brand-bg);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(21, 201, 167, 0.58);
  outline-offset: 4px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.launch-topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  min-height: var(--topbar-height);
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 16px;
  color: #ffffff;
  background: #012855;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(1, 40, 85, 0.28);
  font-size: 0.92rem;
  line-height: 1.1;
  letter-spacing: 0;
  overflow: hidden;
}

.launch-topbar-state {
  display: inline-grid;
  min-width: 34ch;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.launch-topbar span {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.launch-topbar-weekly,
.launch-topbar-join {
  grid-area: 1 / 1;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
  transition:
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.launch-topbar-weekly {
  opacity: 1;
  transform: translateY(0);
}

.launch-topbar-join {
  opacity: 0;
  transform: translateY(9px);
  pointer-events: none;
}

.launch-topbar-state.is-join .launch-topbar-weekly {
  opacity: 0;
  transform: translateY(-9px);
  pointer-events: none;
}

.launch-topbar-state.is-join .launch-topbar-join {
  opacity: 1;
  transform: translateY(0);
}

.launch-topbar strong {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: #ffffff;
  font-weight: 900;
  white-space: nowrap;
}

.launch-topbar [hidden] {
  display: none !important;
}

.partner-funnel-progress[hidden],
.partner-funnel-steps[hidden],
.partner-funnel-nav[hidden],
.partner-funnel-step[hidden],
.partner-funnel-intro[hidden] {
  display: none !important;
}

.partner-funnel-shell.is-intro .partner-funnel-progress,
.partner-funnel-shell.is-intro .partner-funnel-steps,
.partner-funnel-shell.is-intro .partner-funnel-nav,
.partner-funnel-shell.is-intro .funnel-back,
.partner-funnel-shell.is-intro .funnel-next,
.partner-funnel-shell.is-intro .funnel-submit {
  display: none !important;
}

.partner-funnel-shell:not(.is-last-step) .funnel-submit {
  display: none !important;
}

.partner-funnel-shell.is-last-step .funnel-next {
  display: none !important;
}

.launch-topbar strong span {
  color: #ffffff;
  font-weight: 950;
}

.launch-provider-count {
  display: inline-block;
  min-width: 5ch;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.launch-provider-count.is-updating {
  animation: topbar-count-pop 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes topbar-count-pop {
  0% {
    transform: translateY(0) scale(1);
    text-shadow: none;
  }

  45% {
    transform: translateY(-1px) scale(1.08);
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.62);
  }

  100% {
    transform: translateY(0) scale(1);
    text-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-snap-type: none;
  }

  .launch-topbar-weekly,
  .launch-topbar-join,
  .launch-provider-count.is-updating {
    transition: none;
    animation: none;
  }
}

.site-header {
  position: fixed;
  inset: var(--topbar-height) 0 auto;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  padding: 14px max(3vh, calc((100vw - var(--container)) / 2));
  color: #012855;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(1, 40, 85, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(1, 40, 85, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.header-menu {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.header-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 14px;
  padding: 0;
  color: #012855;
  background: transparent;
  cursor: pointer;
}

.header-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(34px, 4vw, 50px);
  max-width: min(46vw, 540px);
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.35vw, 18px);
  flex: 1 1 auto;
  justify-content: flex-end;
  color: rgba(1, 40, 85, 0.74);
  font-size: clamp(0.82rem, 0.95vw, 0.94rem);
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.header-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 18px;
  flex: 0 0 auto;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 8px 2px;
  color: rgba(1, 40, 85, 0.74);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #19e6a7, #12c7b8);
  box-shadow: 0 0 12px rgba(25, 230, 167, 0.24);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #012855;
  transform: translateY(-1px);
}

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

.nav-links a:focus-visible {
  outline: none;
}

.primary-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 15px 25px;
  color: #012855;
  background: linear-gradient(135deg, #1cdf73 0%, #15c9a7 55%, #00aebb 100%);
  box-shadow: 0 12px 30px rgba(21, 201, 167, 0.28);
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(21, 201, 167, 0.36);
  filter: brightness(1.04);
}

.primary-cta:active {
  transform: translateY(0);
  box-shadow: 0 8px 22px rgba(21, 201, 167, 0.24);
}

.header-cta {
  min-height: 42px;
  padding: 12px 20px;
  font-size: 0.92rem;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid rgba(1, 40, 85, 0.12);
  border-radius: 999px;
  padding: 3px;
  background: rgba(1, 40, 85, 0.04);
}

.language-toggle button {
  display: inline-flex;
  min-width: 36px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: rgba(1, 40, 85, 0.72);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.language-toggle button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-1), var(--green-3));
}

body.menu-open {
  overflow: hidden;
}

.secondary-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 33, 29, 0.18);
  border-radius: 999px;
  padding: 14px 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 750;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.secondary-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 201, 167, 0.6);
  background: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: clamp(64px, 8vw, 96px) 0 82px;
  background:
    linear-gradient(90deg, rgba(7, 9, 25, 0.97) 0%, rgba(13, 25, 62, 0.9) 46%, rgba(13, 25, 62, 0.42) 100%),
    var(--brand-bg-image) center / cover no-repeat,
    var(--brand-bg);
  color: #ffffff;
}

.hero-showcase {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  margin-top: calc(var(--topbar-height) + 78px);
  overflow: hidden;
  color: #ffffff;
  background: #07152f;
}

.hero-showcase-media,
.hero-showcase-overlay,
.hero-showcase-content {
  grid-area: 1 / 1;
}

.hero-showcase-media {
  background:
    linear-gradient(90deg, rgba(7, 21, 47, 0.14), rgba(7, 21, 47, 0.06)),
    url("assets/hero-collage-wide-v2.jpg") center / cover no-repeat;
  filter: saturate(1) brightness(0.98);
  transform: scale(1.01);
}

.hero-showcase-overlay {
  position: relative;
  background:
    radial-gradient(circle at center, rgba(7, 21, 47, 0.76) 0%, rgba(7, 21, 47, 0.72) 22%, rgba(7, 21, 47, 0.46) 42%, rgba(7, 21, 47, 0.14) 72%, rgba(7, 21, 47, 0.02) 100%),
    linear-gradient(180deg, rgba(5, 15, 36, 0.1) 0%, rgba(10, 26, 70, 0.24) 58%, rgba(7, 21, 47, 0.42) 100%),
    linear-gradient(90deg, rgba(8, 28, 86, 0.28) 0%, rgba(25, 52, 136, 0.1) 46%, rgba(7, 21, 47, 0.2) 100%);
}

.hero-showcase-overlay::before {
  position: absolute;
  inset: 0;
  background: url("assets/hero-overlay-mywaycard.png") center / cover no-repeat;
  opacity: 0.42;
  content: "";
  pointer-events: none;
}

.hero-showcase-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  padding: clamp(72px, 10vh, 118px) 0 clamp(96px, 14vh, 148px);
  text-align: center;
}

.hero-showcase-logo {
  width: min(420px, 48vw);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.34));
  animation: heroShowcaseFadeIn 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-showcase-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 920px;
  animation: heroShowcaseFadeIn 1050ms cubic-bezier(0.16, 1, 0.3, 1) 90ms both;
}

.hero-showcase h1 {
  color: #ffffff;
}

.hero-showcase-copy .hero-copy {
  max-width: 760px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 12px 28px rgba(2, 8, 20, 0.42);
}

.hero-showcase-copy .hero-copy span {
  margin-top: 0.75em;
}

.hero-showcase-actions {
  justify-content: center;
  animation: heroShowcaseFadeIn 1150ms cubic-bezier(0.16, 1, 0.3, 1) 160ms both;
}

.hero-showcase-countdown {
  justify-items: center;
  width: fit-content;
  margin-inline: auto;
  padding: 18px 22px 0;
  border-bottom: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(2, 8, 20, 0.18);
  backdrop-filter: blur(10px);
}

.hero-showcase-countdown .launch-countdown-values {
  justify-content: center;
}

.hero-showcase-countdown .launch-countdown-values div {
  justify-items: center;
}

.hero-showcase-scroll {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: clamp(10px, 1.8vh, 18px);
  border: 0;
  padding: 0;
  color: #ffffff;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  cursor: pointer;
  justify-self: center;
  align-self: start;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.hero-showcase-scroll:hover,
.hero-showcase-scroll:focus-visible {
  outline: none;
  opacity: 1;
  transform: translateY(-4px);
}

.hero-showcase-scroll span {
  display: block;
  width: 18px;
  height: 18px;
  border-right: 3px solid rgba(255, 255, 255, 0.96);
  border-bottom: 3px solid rgba(255, 255, 255, 0.96);
  transform: rotate(45deg);
  filter: drop-shadow(0 0 16px rgba(25, 230, 167, 0.28));
  animation: heroScrollArrow 1.5s ease-in-out infinite;
}

.hero-showcase-scroll span + span {
  margin-top: -8px;
  opacity: 0.58;
  animation-delay: 0.18s;
}

@keyframes heroScrollArrow {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.42;
  }

  45% {
    opacity: 1;
  }

  60% {
    transform: rotate(45deg) translate(5px, 5px);
    opacity: 1;
  }
}

@keyframes heroShowcaseFadeIn {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-video-section {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 16, 42, 0.2), rgba(7, 21, 47, 0.08)),
    url("assets/hero-overlay-mywaycard.png") center / cover no-repeat,
    linear-gradient(180deg, #07152f 0%, #112a63 100%);
}

.hero-video-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 18, 48, 0.34) 0%, rgba(10, 31, 74, 0.42) 52%, rgba(7, 21, 47, 0.5) 100%),
    radial-gradient(circle at 50% 38%, rgba(47, 91, 205, 0.28) 0%, rgba(47, 91, 205, 0.04) 62%, rgba(47, 91, 205, 0) 78%),
    linear-gradient(90deg, rgba(9, 34, 97, 0.2) 0%, rgba(9, 34, 97, 0.08) 46%, rgba(10, 31, 74, 0.18) 100%);
  content: "";
  pointer-events: none;
}

.hero-video-stage {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100% - 32px, 1680px);
  min-height: 100vh;
  min-height: 100svh;
  margin-inline: auto;
  place-items: center;
  padding: clamp(36px, 6vh, 72px) 0;
}

@media (min-width: 1041px) {
  .hero-video-stage {
    width: 100%;
    padding: 0;
  }
}

.hero-video-shell {
  --video-progress: 0;
  --video-scale: 0.7;
  --video-offset-y: 48px;
  --video-radius: 22px;
  position: relative;
  width: min(72vw, 1120px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--video-radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    0 36px 96px rgba(4, 8, 24, 0.38),
    0 0 42px rgba(25, 230, 167, 0.08);
  opacity: calc(0.72 + (var(--video-progress) * 0.28));
  transform: translateY(var(--video-offset-y)) scale(var(--video-scale));
  transform-origin: center center;
  will-change: transform;
  transition: box-shadow 0.32s ease, border-color 0.32s ease, border-radius 0.24s ease;
}

.hero-video-shell.is-playing {
  border-color: rgba(25, 230, 167, 0.3);
  box-shadow:
    0 42px 108px rgba(4, 8, 24, 0.44),
    0 0 48px rgba(25, 230, 167, 0.12);
}

.hero-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: grid;
  width: clamp(92px, 10vw, 128px);
  height: clamp(92px, 10vw, 128px);
  place-items: center;
  border: 1px solid rgba(25, 230, 167, 0.5);
  border-radius: 50%;
  padding: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04) 34%, rgba(7, 21, 47, 0.78) 100%),
    linear-gradient(135deg, rgba(8, 28, 86, 0.94), rgba(12, 54, 116, 0.92));
  box-shadow:
    0 18px 48px rgba(4, 8, 24, 0.42),
    0 0 36px rgba(25, 230, 167, 0.2);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    opacity 0.24s ease;
}

.hero-video-play:hover,
.hero-video-play:focus-visible {
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow:
    0 22px 58px rgba(4, 8, 24, 0.48),
    0 0 46px rgba(25, 230, 167, 0.28);
}

.hero-video-play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 32px solid #ffffff;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
}

.hero-video-shell.is-playing .hero-video-play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.86);
}

.hero-video-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-video-shell::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 22, 62, 0.16) 0%, rgba(15, 53, 127, 0.12) 56%, rgba(6, 18, 48, 0.2) 100%),
    radial-gradient(circle at 50% 35%, rgba(41, 110, 255, 0.12) 0%, rgba(41, 110, 255, 0) 60%);
  content: "";
  pointer-events: none;
}

.early-partner-section {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 18, 48, 0.98) 0%, rgba(10, 31, 74, 0.95) 52%, rgba(7, 21, 47, 0.98) 100%);
}

.early-partner-backdrop,
.early-partner-inner {
  grid-area: 1 / 1;
}

.early-partner-backdrop {
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(25, 230, 167, 0.12) 0%, rgba(25, 230, 167, 0) 30%),
    radial-gradient(circle at 82% 24%, rgba(24, 169, 224, 0.18) 0%, rgba(24, 169, 224, 0) 28%),
    linear-gradient(180deg, rgba(5, 15, 36, 0.06), rgba(5, 15, 36, 0.32));
}

.early-partner-backdrop::before,
.early-partner-backdrop::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.early-partner-backdrop::before {
  inset: 0;
  background: url("assets/hero-overlay-mywaycard.png") center / cover no-repeat;
  opacity: 0.24;
  mix-blend-mode: screen;
}

.early-partner-backdrop::after {
  inset: 12% auto auto 8%;
  width: clamp(220px, 26vw, 380px);
  aspect-ratio: 1;
  border: 1px solid rgba(25, 230, 167, 0.24);
  border-radius: 999px;
  box-shadow:
    0 0 0 22px rgba(25, 230, 167, 0.04),
    0 0 0 48px rgba(25, 230, 167, 0.025);
  opacity: 0.9;
}

.early-partner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  grid-template-areas:
    "copy side"
    "cta side";
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  padding: clamp(88px, 12vh, 132px) 0 clamp(54px, 8vh, 84px);
}

.early-partner-copy {
  grid-area: copy;
  display: grid;
  gap: 20px;
  max-width: 740px;
}

.early-partner-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid rgba(25, 230, 167, 0.36);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(25, 230, 167, 0.2), rgba(18, 199, 184, 0.12));
  box-shadow: 0 0 24px rgba(25, 230, 167, 0.14);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.early-partner-section h2 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.98;
  color: #ffffff;
}

.animated-underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding: 0 0.12em 0.18em;
  margin: 0 0.05em;
}

.animated-underline::before,
.animated-underline::after {
  content: "";
  position: absolute;
  bottom: 0.03em;
  border-radius: 999px;
}

.animated-underline::before {
  left: 0.08em;
  right: 0.08em;
  height: 0.11em;
  background: linear-gradient(90deg, rgba(25, 230, 167, 0.9), rgba(18, 199, 184, 0.82));
  box-shadow:
    0 0 10px rgba(25, 230, 167, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
  opacity: 0.95;
}

.animated-underline::after {
  left: 0.02em;
  width: 30%;
  height: 0.2em;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0));
  filter: blur(1px);
  opacity: 0.8;
  mix-blend-mode: screen;
  animation: early-underline-glint 4.8s ease-in-out infinite;
}

@keyframes early-underline-glint {
  0%, 12%, 100% {
    transform: translateX(-18%) skewX(-18deg);
    opacity: 0;
  }
  22% {
    opacity: 0.78;
  }
  52% {
    transform: translateX(250%) skewX(-18deg);
    opacity: 0.88;
  }
}

.early-partner-subline {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 1.65vw, 1.26rem);
  line-height: 1.58;
}

.early-partner-cta-group {
  grid-area: cta;
  display: grid;
  gap: 12px;
  justify-items: start;
  width: fit-content;
  margin-top: -20px;
  max-width: 560px;
}

.early-partner-cta {
  min-height: 60px;
  padding: 18px 34px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #04142b;
  background: linear-gradient(135deg, #d8ff72 0%, #52f0a0 48%, #10d7c2 100%);
  box-shadow:
    0 0 0 1px rgba(216, 255, 114, 0.34),
    0 22px 50px rgba(16, 215, 194, 0.34),
    0 10px 24px rgba(4, 20, 43, 0.24);
}

.early-partner-cta:hover {
  box-shadow:
    0 0 0 1px rgba(216, 255, 114, 0.42),
    0 26px 58px rgba(16, 215, 194, 0.4),
    0 12px 26px rgba(4, 20, 43, 0.28);
}

.early-partner-cta-note {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.5;
}

.early-partner-cta-note strong {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.35;
}

.early-partner-cta-note p {
  margin: 0;
}

.early-partner-side {
  grid-area: side;
  display: grid;
  gap: 18px;
  justify-items: stretch;
}

.early-partner-counter {
  display: grid;
  gap: 14px;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: clamp(28px, 3.2vw, 38px);
  border: 1px solid rgba(25, 230, 167, 0.42);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(25, 230, 167, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  box-shadow:
    0 0 34px rgba(25, 230, 167, 0.16),
    0 22px 62px rgba(3, 10, 28, 0.34);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.early-partner-counter span,
.early-partner-counter small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.early-partner-counter-kicker {
  color: rgba(220, 248, 241, 0.9);
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.early-partner-counter strong {
  color: #19e6a7;
  font-size: clamp(4.8rem, 8.2vw, 6.4rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0.01em;
  transition: transform 0.32s ease, text-shadow 0.32s ease;
  text-shadow:
    0 0 24px rgba(25, 230, 167, 0.16),
    0 0 42px rgba(25, 230, 167, 0.14);
}

.early-partner-counter strong.is-updating {
  transform: scale(1.04);
  text-shadow: 0 0 34px rgba(25, 230, 167, 0.3);
}

.early-partner-counter-caption {
  max-width: 22ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  line-height: 1.34;
  letter-spacing: 0.06em;
}

.early-partner-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.early-partner-benefits li {
  display: grid;
  gap: 6px;
  min-height: 136px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.early-partner-benefits strong {
  color: #ffffff;
  font-size: 1.06rem;
  line-height: 1.25;
}

.early-partner-benefits span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(9, 12, 31, 0.28), rgba(9, 12, 31, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 44px);
  align-items: center;
}

.hero-text {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  align-content: center;
}

.hero-text > * {
  max-width: 980px;
}

.hero-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(4, 8, 24, 0.42);
}

.hero-video::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: #08745d;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: #74f6b4;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.55rem, 7vw, 5.75rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  color: #ffffff;
}

.no-break {
  white-space: nowrap;
}

.gradient-text {
  display: inline-block;
  color: transparent;
  background: linear-gradient(135deg, var(--green-1), var(--green-3));
  background-clip: text;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.45rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-copy {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.48;
}

.hero-copy span {
  display: block;
  margin-top: 0.9em;
}

.hero-points {
  display: grid;
  gap: 22px;
  align-self: center;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  list-style: none;
  font-size: 1.02rem;
  font-weight: 700;
}

.hero-points li {
  position: relative;
  padding-left: 42px;
}

.hero-points li::before {
  position: absolute;
  left: 2px;
  top: 0.1em;
  color: var(--green-1);
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1;
  content: "✓";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.breaking-news-banner {
  position: relative;
  grid-column: 1 / -1;
  width: min(100%, var(--container));
  margin-top: clamp(22px, 4vw, 34px);
  overflow: hidden;
  color: #ffffff;
  border: 1px solid rgba(25, 230, 167, 0.45);
  border-radius: 18px;
  background: linear-gradient(90deg, #07152f 0%, #0a1f4a 65%, #12365c 100%);
  box-shadow:
    0 0 40px rgba(25, 230, 167, 0.18),
    0 24px 70px rgba(3, 10, 28, 0.32);
  isolation: isolate;
}

.breaking-news-banner::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 50%, rgba(25, 230, 167, 0.18) 0, rgba(25, 230, 167, 0.08) 18%, transparent 19%),
    radial-gradient(circle at 10% 50%, rgba(25, 230, 167, 0.12) 0, rgba(25, 230, 167, 0.05) 31%, transparent 32%),
    radial-gradient(circle at 10% 50%, rgba(25, 230, 167, 0.08) 0, rgba(25, 230, 167, 0.03) 44%, transparent 45%),
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.1) 20%, transparent 40%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 220% 100%;
  content: "";
  animation: breakingNewsShine 5.2s ease-in-out infinite;
}

.breaking-news-banner::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  content: "";
  pointer-events: none;
}

.breaking-news-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  width: 100%;
  margin-inline: auto;
  padding: clamp(26px, 3.4vw, 36px);
}

.breaking-news-close {
  display: none;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(25, 230, 167, 0.24);
  border-radius: 999px;
  padding: 0;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(4, 8, 24, 0.2);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.breaking-news-close:hover,
.breaking-news-close:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  outline: none;
  transform: translateY(-1px);
}

.breaking-news-close span {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-1px);
}

.breaking-news-banner.is-hidden {
  display: none;
}

.breaking-news-side {
  position: relative;
  display: grid;
  gap: 14px;
  justify-items: start;
  align-content: center;
  min-width: 156px;
}

.breaking-news-side::before {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(25, 230, 167, 0.14);
  border-radius: 50%;
  content: "";
}

.breaking-news-side::after {
  position: absolute;
  left: 38px;
  top: 38px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(25, 230, 167, 0.18);
  border-radius: 50%;
  content: "";
}

.breaking-news-copy {
  display: grid;
  gap: 14px;
  justify-items: start;
  text-align: left;
}

.breaking-news-label {
  position: relative;
  z-index: 1;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 12px 24px;
  color: #061330;
  background: linear-gradient(90deg, #19e6a7, #12c7b8);
  box-shadow:
    0 0 24px rgba(25, 230, 167, 0.28),
    0 12px 28px rgba(18, 199, 184, 0.18);
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.breaking-news-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(25, 230, 167, 0.26);
  border-radius: 16px;
  color: #19e6a7;
  background: rgba(5, 18, 48, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 24px rgba(25, 230, 167, 0.16);
  font-size: 1.55rem;
  line-height: 1;
}

.breaking-news-copy strong {
  max-width: 860px;
  color: #ffffff;
  font-size: clamp(1.28rem, 2.25vw, 2.05rem);
  font-weight: 900;
  line-height: 1.18;
}

.breaking-news-highlight {
  color: #19e6a7;
  text-shadow: 0 0 24px rgba(25, 230, 167, 0.22);
}

.breaking-news-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.breaking-news-benefits span {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.82rem, 0.92vw, 0.95rem);
  font-weight: 720;
  line-height: 1.35;
}

.breaking-news-benefits span::before {
  position: absolute;
  left: 0;
  top: 0.18em;
  color: #19e6a7;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  content: "✓";
}

.breaking-news-counter {
  display: grid;
  min-width: clamp(208px, 18vw, 244px);
  justify-items: center;
  gap: 6px;
  padding: clamp(22px, 2.5vw, 28px);
  border: 2px solid #19e6a7;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 28px rgba(25, 230, 167, 0.28),
    0 20px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.breaking-news-counter span,
.breaking-news-counter small {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.82rem, 0.92vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}

.breaking-news-counter strong {
  color: #f7fffd;
  font-size: clamp(4.1rem, 5vw, 4.5rem);
  font-weight: 950;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
  text-shadow:
    0 0 28px rgba(25, 230, 167, 0.22),
    0 12px 34px rgba(21, 201, 167, 0.22);
}

.breaking-news-counter strong.is-updating {
  animation: bannerCounterPop 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes breakingNewsShine {
  0%,
  100% {
    background-position: 0 0, 0 0, 0 0, -120% 50%;
  }

  50% {
    background-position: 0 0, 0 0, 0 0, 120% 50%;
  }
}

@keyframes breakingNewsLine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 240% 50%;
  }
}

@keyframes bannerCounterPop {
  0% {
    transform: translateY(0) scale(1);
  }

  42% {
    transform: translateY(-2px) scale(1.055);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

.stats-section,
.category-section,
.redemption-section,
.process-section,
.conditions-section,
.ad-comparison-section,
.packages-section,
.faq-section,
.registration-section,
.split-band,
.band {
  scroll-margin-top: calc(86px + var(--topbar-height));
  padding: clamp(56px, 8vh, 96px) 0;
}

.stats-section,
.category-section,
.redemption-section,
.process-section,
.conditions-section,
.ad-comparison-section,
.faq-section {
  background: var(--surface);
  backdrop-filter: blur(10px);
}

.conditions-section {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100vh;
  max-height: 100vh;
  padding-block: clamp(24px, 4vh, 42px);
  overflow: hidden;
  background: #1d2e4f;
}

.conditions-section::before,
.conditions-section::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.conditions-section::before {
  z-index: -2;
  background: url("assets/conditions-dashboard-bg.png") center / cover no-repeat;
  filter: blur(4px) brightness(0.82) saturate(1.05);
  transform: scale(1.04);
}

.conditions-section::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 18, 36, 0.48), rgba(3, 18, 36, 0.3) 48%, rgba(3, 18, 36, 0.52)),
    linear-gradient(180deg, rgba(3, 18, 36, 0.22), rgba(3, 18, 36, 0.48));
}

.band {
  background: var(--surface-soft);
  backdrop-filter: blur(10px);
}

.scroll-rise {
  opacity: 0;
  transform: translate3d(0, 46px, 0);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--scroll-rise-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-rise.is-scroll-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section-heading {
  display: grid;
  gap: 18px;
  align-content: start;
}

.section-heading p {
  font-size: 1.05rem;
}

.section-heading.narrow {
  max-width: 760px;
  margin-inline: 0;
  text-align: left;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.stat-card,
.category-card,
.info-card,
.redeem-panel,
.partner-form,
.visual-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 16px 50px rgba(23, 33, 29, 0.06);
}

.stat-card {
  position: relative;
  display: grid;
  min-height: 166px;
  align-content: space-between;
  gap: 14px;
  padding: 22px;
  border-color: rgba(29, 46, 79, 0.12);
  color: #1d2e4f;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(13, 25, 62, 0.08);
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.stat-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 18px 0 0 18px;
  background: linear-gradient(180deg, var(--green-1), var(--green-3));
  content: "";
  pointer-events: none;
}

.stat-card::after {
  content: none;
}

.stat-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stat-card.is-visible:nth-child(2) {
  transition-delay: 0.08s;
}

.stat-card.is-visible:nth-child(3) {
  transition-delay: 0.16s;
}

.stat-card.is-visible:nth-child(4) {
  transition-delay: 0.04s;
}

.stat-card.is-visible:nth-child(5) {
  transition-delay: 0.12s;
}

.stat-card.is-visible:nth-child(6) {
  transition-delay: 0.2s;
}

.stat-card.is-visible:hover {
  transition-delay: 0s;
}

.stat-card:hover {
  border-color: rgba(29, 46, 79, 0.2);
  box-shadow: 0 20px 54px rgba(13, 25, 62, 0.12);
  transform: translateY(-3px);
}

.stat-kicker {
  position: relative;
  z-index: 1;
  width: fit-content;
  border: 1px solid rgba(29, 46, 79, 0.12);
  border-radius: 999px;
  padding: 5px 9px;
  color: #1d2e4f;
  background: #f3f7fb;
  font-size: 0.72rem;
  font-weight: 880;
  line-height: 1;
  text-transform: uppercase;
}

.stat-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #1d2e4f;
  font-size: 3.45rem;
  line-height: 1;
}

.stat-number {
  display: inline-block;
  min-width: 3ch;
  color: #1d2e4f;
  transform: translateY(6px);
}

.stat-card.is-counting .stat-number {
  animation: statPulse 0.72s ease both;
}

.stat-label {
  position: relative;
  z-index: 1;
  color: #1d2e4f;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
}

.category-section {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 76px) 0;
}

.category-section .container {
  position: relative;
  z-index: 1;
}

.category-spotlight-section {
  isolation: isolate;
}

.category-section .section-heading {
  gap: 10px;
}

.category-backgrounds {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.category-backgrounds::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(239, 245, 251, 0.88), rgba(239, 245, 251, 0.72)),
    rgba(255, 255, 255, 0.58);
  content: "";
}

.category-backgrounds img {
  position: absolute;
  inset: -12%;
  width: 124%;
  height: 124%;
  object-fit: cover;
  opacity: 0;
  filter: blur(18px) saturate(1.16);
  transform: scale(1.04);
  transition:
    opacity 0.75s ease,
    transform 1.2s ease;
}

.category-backgrounds img.is-active {
  opacity: 0.28;
  transform: scale(1);
}

.category-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  margin-top: 34px;
}

.category-visual {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(13, 25, 62, 0.18);
}

.category-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 34, 0.02) 35%, rgba(8, 12, 34, 0.78) 100%);
  content: "";
}

.category-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.62s ease,
    transform 1.05s ease;
}

.category-visual img.is-active {
  opacity: 1;
  transform: scale(1);
}

.category-visual-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 12px;
  color: #ffffff;
}

.category-visual-caption span {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(8, 12, 34, 0.36);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  font-weight: 900;
  transition:
    opacity 0.26s ease,
    transform 0.26s ease;
}

.category-visual-caption h3 {
  max-width: 14ch;
  color: #ffffff;
  font-size: 2.35rem;
  line-height: 1;
  text-shadow: 0 18px 42px rgba(8, 12, 34, 0.42);
  transition:
    opacity 0.26s ease,
    transform 0.26s ease,
    filter 0.26s ease;
}

.category-visual-caption.is-switching > span,
.category-visual-caption.is-switching > h3 {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(10px);
}

.category-visual-caption.is-switching .subcategory-chips {
  opacity: 0;
  transform: translateY(8px);
}

.category-control-panel {
  align-self: center;
}

.category-picker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.spotlight-category-list {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 22px;
}

.spotlight-category-list::before {
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(29, 46, 79, 0.22), transparent);
  content: "";
}

.category-button {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 46px;
  border: 0;
  border-radius: 0;
  padding: 8px 0;
  color: rgba(29, 46, 79, 0.62);
  background: transparent;
  box-shadow: none;
  text-align: left;
  cursor: pointer;
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.category-button::before {
  position: absolute;
  left: -25px;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green-1), var(--green-3));
  content: "";
  transform: translateY(-50%);
  transition: height 0.2s ease;
}

.category-button::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(29, 46, 79, 0.12), rgba(29, 46, 79, 0));
  content: "";
}

.category-button:last-child::after {
  content: none;
}

.category-button.is-active {
  color: var(--ink);
  transform: translateX(5px);
}

.category-button.is-active {
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.category-button.is-active::before {
  height: 30px;
}

.category-button span {
  color: rgba(29, 46, 79, 0.42);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  transition: color 0.2s ease;
}

.category-button.is-active span {
  color: var(--green-3);
  background: transparent;
}

.category-button strong {
  min-width: 0;
  font-size: 1.08rem;
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: 0;
}

.category-button.is-active strong {
  font-size: 1.18rem;
  font-weight: 900;
}

.category-arrows {
  display: grid;
  gap: 12px;
}

.category-arrow {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(28, 223, 115, 0.96), rgba(0, 174, 187, 0.96)),
    var(--green-2);
  box-shadow:
    0 18px 42px rgba(13, 25, 62, 0.16),
    0 0 0 6px rgba(255, 255, 255, 0.45);
  line-height: 1;
  cursor: pointer;
  transition:
    filter 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.category-arrow::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 48%);
  content: "";
  opacity: 0.72;
}

.category-arrow span {
  position: relative;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.category-arrow[data-category-direction="previous"] span {
  transform: translateY(3px) rotate(45deg);
}

.category-arrow[data-category-direction="next"] span {
  transform: translateY(-3px) rotate(225deg);
}

.category-arrow:hover,
.category-arrow:focus-visible {
  filter: brightness(1.04);
  box-shadow:
    0 22px 54px rgba(13, 25, 62, 0.2),
    0 0 0 7px rgba(28, 223, 115, 0.12);
  transform: translateY(-2px) scale(1.03);
}

.category-arrow:active {
  transform: translateY(0) scale(0.98);
}

.subcategory-chips {
  display: flex;
  flex-wrap: wrap;
  max-width: 620px;
  gap: 7px;
  margin-top: 2px;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.subcategory-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0;
  transform: translateY(10px);
  animation: chipIn 0.48s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--chip-delay);
}

.subcategory-chips span:last-child {
  color: #ffffff;
  background: rgba(28, 223, 115, 0.24);
}

.category-mobile-strip {
  display: none;
}

.category-wanted {
  display: grid;
  gap: 18px;
  margin-top: 42px;
  border-top: 1px solid rgba(29, 46, 79, 0.12);
  padding-top: 30px;
}

.category-wanted-head {
  display: grid;
  gap: 6px;
  max-width: 620px;
}

.category-wanted-head .eyebrow {
  margin: 0;
}

.category-wanted-head h3 {
  color: var(--ink);
  font-size: clamp(1.32rem, 2.2vw, 1.85rem);
}

.category-wanted-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.category-wanted-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-wanted-list li:not(.category-wanted-action),
.category-wanted-action button {
  display: inline-flex;
  max-width: 100%;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(29, 46, 79, 0.11);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 26px rgba(13, 25, 62, 0.06);
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1.1;
  overflow-wrap: anywhere;
  white-space: normal;
}

.category-wanted-list li[hidden] {
  display: none;
}

.category-wanted-action {
  display: inline-flex;
}

.category-wanted-action button {
  gap: 7px;
  border-color: rgba(21, 201, 167, 0.28);
  color: #08745d;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.category-wanted-action button:hover,
.category-wanted-action button:focus-visible {
  border-color: rgba(21, 201, 167, 0.48);
  color: var(--green-3);
  background: #ffffff;
  outline: none;
  transform: translateX(2px);
}

.category-wanted-action button i {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  color: currentColor;
}

.category-wanted-action button i::before,
.category-wanted-action button i::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease;
}

.category-wanted-action button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.category-wanted-action button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

@keyframes chipIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes statPulse {
  0% {
    filter: blur(5px);
    opacity: 0.2;
    transform: translateY(10px) scale(0.96);
  }

  58% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(-3px) scale(1.04);
  }

  100% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 86px);
}

.align-center {
  align-items: center;
}

.gift-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.gift-heading {
  grid-column: 1 / -1;
  max-width: 1120px;
}

.gift-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 330px;
}

.gift-copy p {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.58;
}

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

.info-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(28, 223, 115, 0.24), rgba(0, 174, 187, 0.2));
  font-weight: 900;
}

.hero-benefits {
  grid-column: 1;
  grid-row: auto;
  display: grid;
  gap: 28px;
  align-self: center;
  max-width: 620px;
}

.launch-countdown {
  display: grid;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.launch-countdown[hidden] {
  display: none !important;
}

.launch-countdown > span {
  color: #74f6b4;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-countdown-values {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.launch-countdown-values div {
  display: grid;
  gap: 4px;
  min-width: 72px;
}

.launch-countdown-values strong {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 850;
  line-height: 1;
}

.launch-countdown-values span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-list {
  --process-scale: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 34px;
  left: 42px;
  right: 42px;
  height: 2px;
  background: rgba(29, 46, 79, 0.16);
  content: "";
}

.process-list::after {
  position: absolute;
  top: 34px;
  left: 42px;
  z-index: 0;
  width: calc(100% - 84px);
  height: 2px;
  background: linear-gradient(90deg, var(--green-1), var(--green-3));
  content: "";
  transform: scaleX(var(--process-scale));
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.process-list li {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 92px;
  opacity: 0.42;
  transform: translateY(18px);
  transition:
    opacity 0.34s ease,
    transform 0.34s ease;
}

.process-list span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 8px solid #ffffff;
  border-radius: 50%;
  color: rgba(29, 46, 79, 0.58);
  background: #ffffff;
  box-shadow:
    inset 0 0 0 2px rgba(29, 46, 79, 0.16),
    0 10px 24px rgba(13, 25, 62, 0.1);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0;
  transform: scale(0.84);
  transition:
    color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.process-list li.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.process-list li.is-visible span {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-1), var(--green-3));
  box-shadow: 0 16px 38px rgba(13, 25, 62, 0.16);
  transform: scale(1);
}

.process-list h3 {
  max-width: 18ch;
  color: var(--ink);
  font-size: 1.2rem;
}

.process-list p {
  max-width: 24ch;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}

.redemption-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  margin-top: 40px;
}

.redemption-visual {
  position: sticky;
  top: 104px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(29, 46, 79, 0.09);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 26px 72px rgba(13, 25, 62, 0.13);
}

.redemption-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.redemption-visual figcaption {
  display: grid;
  gap: 12px;
  padding: 20px 22px 22px;
}

.redemption-visual figcaption span {
  color: #08745d;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.redemption-visual figcaption strong {
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.2;
}

.redemption-visual figcaption p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.48;
}

.redemption-detail-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.redemption-detail-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.38;
}

.redemption-detail-list li::before {
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-1), var(--green-3));
  content: "";
}

.redemption-options {
  display: grid;
  gap: 14px;
}

.redemption-option {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(29, 46, 79, 0.09);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 38px rgba(13, 25, 62, 0.07);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.redemption-option:hover,
.redemption-option:focus-visible,
.redemption-option.is-active {
  border-color: rgba(21, 201, 167, 0.42);
  background: #ffffff;
  box-shadow:
    0 18px 48px rgba(13, 25, 62, 0.1),
    0 0 0 4px rgba(21, 201, 167, 0.08);
}

.redemption-option:hover,
.redemption-option:focus-visible {
  transform: translateY(-1px);
}

.redemption-option.is-active {
  transform: none;
}

.redemption-option > img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  object-fit: cover;
  background: #eef5fb;
}

.redemption-option > div {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.redemption-option-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

.redemption-option-head span {
  color: #08745d;
  font-size: 0.76rem;
  font-weight: 900;
}

.redemption-option h3 {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.18;
}

.redemption-option p {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.45;
}

.redemption-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.redemption-tags span {
  max-width: 100%;
  border: 1px solid rgba(21, 201, 167, 0.2);
  border-radius: 999px;
  padding: 6px 9px;
  color: #08745d;
  background: rgba(232, 251, 243, 0.72);
  font-size: 0.72rem;
  font-weight: 820;
  line-height: 1;
  overflow-wrap: anywhere;
}

@media (min-width: 1041px) {
  .redemption-option {
    position: relative;
    padding-right: 48px;
  }

  .redemption-option::before {
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--green-1), var(--green-3));
    content: "";
    opacity: 0;
    transform: scaleY(0.45);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .redemption-option::after {
    position: absolute;
    right: 16px;
    top: 16px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(29, 46, 79, 0.1);
    border-radius: 50%;
    color: rgba(29, 46, 79, 0.48);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 18px rgba(13, 25, 62, 0.06);
    font-size: 1rem;
    font-weight: 850;
    line-height: 1;
    content: "→";
    transition:
      border-color 0.2s ease,
      color 0.2s ease,
      background 0.2s ease,
      box-shadow 0.2s ease,
      transform 0.2s ease;
  }

  .redemption-option:hover::after,
  .redemption-option:focus-visible::after {
    border-color: rgba(21, 201, 167, 0.34);
    color: #08745d;
    background: rgba(232, 251, 243, 0.94);
    box-shadow: 0 10px 24px rgba(21, 201, 167, 0.14);
    transform: translateX(3px);
  }

  .redemption-option.is-active::before {
    opacity: 1;
    transform: scaleY(1);
  }

  .redemption-option.is-active::after {
    border-color: rgba(21, 201, 167, 0.34);
    color: #ffffff;
    background: linear-gradient(135deg, var(--green-1), var(--green-3));
    box-shadow: 0 10px 24px rgba(21, 201, 167, 0.2);
    content: "✓";
    transform: none;
  }
}

.visual-panel {
  overflow: hidden;
}

.video-panel {
  position: relative;
  align-self: stretch;
  width: 100%;
  min-height: 330px;
  border: 1px solid rgba(29, 46, 79, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(28, 223, 115, 0.1), rgba(0, 174, 187, 0.08)),
    #071020;
  box-shadow:
    0 30px 86px rgba(13, 25, 62, 0.18),
    0 0 0 8px rgba(255, 255, 255, 0.46);
}

.video-panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.video-panel::after {
  position: absolute;
  left: 22px;
  top: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 7px 11px;
  color: #ffffff;
  background: rgba(8, 12, 34, 0.38);
  backdrop-filter: blur(12px);
  content: "Video";
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.video-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}

.visual-panel img {
  width: 100%;
  height: min(470px, 52vw);
  object-fit: cover;
  object-position: 62% 50%;
}

.bonus-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(21, 201, 167, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(28, 223, 115, 0.14), rgba(0, 174, 187, 0.08)),
    #ffffff;
  box-shadow: 0 16px 42px rgba(13, 25, 62, 0.08);
}

.gift-bonus {
  grid-column: 1 / -1;
  width: min(100%, 760px);
  justify-self: center;
  margin-top: 0;
}

.bonus-number {
  position: relative;
  display: inline-grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-1), var(--green-3));
  box-shadow: 0 14px 34px rgba(21, 201, 167, 0.32);
  font-size: 2.15rem;
  font-weight: 950;
  line-height: 1;
  animation: bonusPop 2.7s ease-in-out infinite;
}

.bonus-number::after {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(21, 201, 167, 0.26);
  border-radius: 24px;
  content: "";
  animation: bonusRing 2.7s ease-in-out infinite;
}

.bonus-text {
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1.34;
}

@keyframes bonusPop {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  38% {
    transform: translateY(-4px) scale(1.06);
  }

  52% {
    transform: translateY(0) scale(0.98);
  }
}

@keyframes bonusRing {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.88);
  }

  42% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.mini-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.mini-grid p {
  margin-top: 8px;
  font-size: 0.94rem;
}

.gift-feature-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1120px);
  justify-self: center;
  margin: 18px auto 0;
}

.gift-feature-grid div {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  padding: 24px;
  border-color: rgba(29, 46, 79, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98)),
    #ffffff;
  box-shadow: 0 16px 42px rgba(13, 25, 62, 0.08);
}

.gift-feature-grid div::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green-1), var(--green-3));
  content: "";
}

.gift-feature-grid h3 {
  color: var(--ink);
  font-size: 1.05rem;
}

.gift-feature-grid p {
  margin-top: 12px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.45;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 74px rgba(13, 25, 62, 0.16);
  backdrop-filter: blur(14px);
}

.conditions-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: clamp(18px, 2.8vh, 30px);
  max-height: calc(100vh - clamp(48px, 8vh, 84px));
}

.conditions-layout .section-heading {
  max-width: 900px;
}

.conditions-layout .eyebrow,
.conditions-layout .section-heading h2 {
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(13, 25, 62, 0.3);
}

.conditions-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(14px, 2vh, 22px);
  width: min(100%, 1120px);
  margin-inline: auto;
  align-items: start;
  justify-items: center;
}

.commission-highlight {
  display: grid;
  gap: 8px;
  margin-top: 6px;
  padding: 18px;
  border: 1px solid rgba(21, 201, 167, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(28, 223, 115, 0.11), rgba(0, 174, 187, 0.07)),
    #ffffff;
  box-shadow: 0 14px 38px rgba(13, 25, 62, 0.07);
}

.commission-highlight span,
.example-head span,
.example-flow span,
.commission-result span {
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commission-highlight strong {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.15;
}

.commission-highlight p {
  color: var(--ink);
  font-weight: 400;
}

.reveal-table tbody tr {
  opacity: 0;
  transform: translateY(14px);
}

.reveal-table.is-visible tbody tr {
  animation: tableRowIn 0.78s ease forwards;
}

.reveal-table.is-visible tbody tr:nth-child(1) {
  animation-delay: 0.08s;
}

.reveal-table.is-visible tbody tr:nth-child(2) {
  animation-delay: 0.22s;
}

.reveal-table.is-visible tbody tr:nth-child(3) {
  animation-delay: 0.36s;
}

.reveal-table.is-visible tbody tr:nth-child(4) {
  animation-delay: 0.5s;
}

.reveal-table.is-visible tbody tr:nth-child(5) {
  animation-delay: 0.64s;
}

.reveal-table.is-visible tbody tr:nth-child(6) {
  animation-delay: 0.78s;
}

.reveal-table.is-visible tbody tr:nth-child(7) {
  animation-delay: 0.92s;
}

@keyframes tableRowIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

th {
  width: 46%;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
}

td {
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.table-note {
  padding: 17px 20px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(28, 223, 115, 0.13), rgba(0, 174, 187, 0.08)),
    var(--mint);
  font-weight: 800;
  text-align: center;
}

.commission-example {
  position: relative;
  display: block;
  width: min(100%, 1080px);
  min-height: 100%;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(29, 46, 79, 0.12);
  border-radius: 24px;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 74px rgba(13, 25, 62, 0.1);
}

.commission-example > * {
  position: relative;
  z-index: 1;
}

.commission-example-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.commission-example-nav button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(21, 201, 167, 0.26);
  border-radius: 999px;
  color: #08745d;
  background:
    linear-gradient(135deg, rgba(232, 251, 243, 0.95), rgba(239, 245, 251, 0.82)),
    #ffffff;
  box-shadow: 0 10px 24px rgba(13, 25, 62, 0.08);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.commission-example-nav button:hover,
.commission-example-nav button:focus-visible {
  border-color: rgba(21, 201, 167, 0.5);
  box-shadow: 0 14px 32px rgba(21, 201, 167, 0.16);
  transform: translateY(-1px);
}

.commission-examples-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 4px 12px;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.commission-example-card {
  display: grid;
  flex: 0 0 min(100%, 940px);
  gap: clamp(12px, 1.8vw, 18px);
  align-content: start;
  padding: 0;
  scroll-snap-align: start;
}

.example-head {
  display: grid;
  gap: 4px;
  justify-items: start;
  padding: 0 4px;
  text-align: left;
}

.example-head strong {
  color: var(--ink);
  font-size: clamp(1.28rem, 2vw, 1.62rem);
  line-height: 1.12;
}

.example-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 14px);
}

.example-flow div {
  display: grid;
  gap: 8px;
  min-height: 86px;
  align-content: space-between;
  justify-items: start;
  border-left: 3px solid rgba(21, 201, 167, 0.32);
  padding: 12px 12px 12px 14px;
  background: rgba(246, 250, 252, 0.72);
  text-align: left;
}

.example-flow strong {
  color: var(--ink);
  font-size: clamp(1.38rem, 2.4vw, 1.8rem);
  line-height: 1;
}

.example-flow .is-muted {
  background: rgba(246, 248, 251, 0.64);
}

.example-flow .is-muted strong {
  color: var(--green-3);
}

.commission-result {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.48fr);
  gap: clamp(14px, 2vw, 22px);
  margin-top: 0;
  border-radius: 20px;
  padding: clamp(20px, 2.5vw, 30px);
  overflow: visible;
  align-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 16%, rgba(28, 223, 115, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(29, 46, 79, 0.95), rgba(34, 87, 126, 0.9));
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 44px rgba(13, 25, 62, 0.2);
}

.commission-result::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  content: "";
  pointer-events: none;
  animation: commissionShine 4.6s ease-in-out infinite;
}

.commission-result span,
.commission-result p {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}

.commission-result > span:first-child {
  grid-column: 1;
  align-self: end;
  width: fit-content;
  border: 1px solid rgba(116, 246, 180, 0.42);
  border-radius: 999px;
  padding: 7px 10px;
  color: #dfffee;
  background: rgba(28, 223, 115, 0.12);
}

.commission-result > strong {
  grid-column: 1;
  position: relative;
  color: #ffffff;
  font-size: clamp(2.25rem, 4vw, 3.45rem);
  line-height: 1;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  animation: commissionTextPop 3.4s ease-in-out infinite;
}

.commission-after {
  position: relative;
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 3;
  gap: 8px;
  justify-items: start;
  align-self: stretch;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  text-align: left;
}

.commission-after span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  line-height: 1.15;
}

.commission-after strong {
  color: #ffffff;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  text-shadow: none;
  animation: none;
}

.commission-result em {
  grid-column: 1;
  position: relative;
  width: fit-content;
  margin-top: 0;
  border: 1px solid rgba(28, 223, 115, 0.58);
  border-radius: 999px;
  padding: 10px 15px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(28, 223, 115, 0.34), rgba(0, 174, 187, 0.26)),
    rgba(28, 223, 115, 0.2);
  box-shadow:
    0 0 0 0 rgba(28, 223, 115, 0.28),
    0 14px 34px rgba(28, 223, 115, 0.16);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  animation: effectivePulse 3s ease-in-out infinite;
}

.commission-info {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: inline-grid;
  grid-column: auto;
  place-items: center;
}

.commission-info button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 10px 24px rgba(13, 25, 62, 0.2);
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1;
  cursor: help;
}

.commission-info-popup {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 5;
  display: grid;
  width: min(78vw, 360px);
  gap: 8px;
  border: 1px solid rgba(21, 201, 167, 0.28);
  border-radius: 14px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 60px rgba(13, 25, 62, 0.24);
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translateY(-6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.commission-info-popup strong {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.15;
  text-shadow: none;
  animation: none;
}

.commission-info-popup span {
  grid-column: auto;
  color: rgba(29, 46, 79, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.commission-info:hover .commission-info-popup,
.commission-info:focus-within .commission-info-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.commission-result p {
  grid-column: 1 / -1;
  position: relative;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.conditions-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 10px;
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.conditions-points li {
  position: relative;
  display: grid;
  gap: 2px;
  min-height: 48px;
  align-content: center;
  padding: 9px 10px 9px 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 36px rgba(13, 25, 62, 0.12);
  backdrop-filter: blur(10px);
  text-align: left;
}

.conditions-points li::before {
  position: absolute;
  top: 50%;
  left: 10px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 999px;
  color: #073b31;
  background: #74f6b4;
  box-shadow: 0 8px 18px rgba(28, 223, 115, 0.22);
  content: "✓";
  font-size: 0.82rem;
  font-weight: 950;
  transform: translateY(-50%);
}

.conditions-points span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conditions-points strong {
  color: #ffffff;
  font-size: 0.86rem;
  line-height: 1.24;
}

@keyframes commissionShine {
  0%,
  100% {
    opacity: 0.42;
    transform: translateX(-18%);
  }

  50% {
    opacity: 0.9;
    transform: translateX(18%);
  }
}

@keyframes commissionTextPop {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.025);
  }
}

@keyframes effectivePulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 0 0 0 rgba(28, 223, 115, 0.2),
      0 14px 34px rgba(28, 223, 115, 0.16);
  }

  50% {
    transform: translateY(-2px);
    box-shadow:
      0 0 0 7px rgba(28, 223, 115, 0.08),
      0 18px 42px rgba(28, 223, 115, 0.24);
  }
}

.ad-comparison {
  display: grid;
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-top: 6px;
}

.ad-comparison-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 58px);
  align-items: start;
}

.ad-comparison-content {
  display: grid;
  gap: clamp(24px, 3.2vw, 38px);
  min-width: 0;
}

.ad-comparison-head {
  display: grid;
  gap: 16px;
  max-width: 900px;
}

.ad-comparison-head h2 {
  color: var(--ink);
}

.ad-comparison-head p:not(.eyebrow) {
  color: var(--ink);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  font-weight: 400;
  line-height: 1.5;
}

.ad-comparison-matrix {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(29, 46, 79, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 56px rgba(13, 25, 62, 0.08);
}

.ad-matrix-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.58fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 34px);
  align-items: start;
  padding: clamp(20px, 2.5vw, 30px);
}

.ad-matrix-row + .ad-matrix-row {
  border-top: 1px solid rgba(29, 46, 79, 0.09);
}

.ad-matrix-head {
  align-items: center;
  padding-block: 18px;
  background:
    linear-gradient(135deg, rgba(21, 201, 167, 0.12), rgba(0, 174, 187, 0.08)),
    #1d2e4f;
}

.ad-matrix-logo-head {
  display: inline-flex;
  align-items: center;
}

.ad-matrix-logo-head img {
  width: auto;
  height: 30px;
  max-width: 190px;
  object-fit: contain;
}

.ad-matrix-row span {
  color: rgba(29, 46, 79, 0.68);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.16;
  text-transform: uppercase;
}

.ad-matrix-row strong {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.18;
}

.ad-matrix-head span,
.ad-matrix-head strong {
  color: rgba(255, 255, 255, 0.92);
}

.ad-matrix-row p {
  position: relative;
  margin: 0;
  color: rgba(29, 46, 79, 0.74);
  font-weight: 520;
  line-height: 1.5;
}

.ad-matrix-row p:last-child {
  color: var(--ink);
  font-weight: 740;
}

.ad-matrix-row p:last-child::before {
  position: absolute;
  left: -17px;
  top: 0.3em;
  width: 5px;
  height: calc(100% - 0.6em);
  min-height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green-1), var(--green-3));
  content: "";
}

.ad-comparison-board {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.08fr);
  gap: 0;
  align-items: start;
  overflow: hidden;
  border: 1px solid rgba(29, 46, 79, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(13, 25, 62, 0.08);
}

.ad-compare-column {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: start;
  min-width: 0;
  min-height: 100%;
  padding: clamp(22px, 3vw, 32px);
}

.ad-compare-column.is-traditional {
  color: rgba(29, 46, 79, 0.76);
  background:
    linear-gradient(180deg, rgba(29, 46, 79, 0.045), rgba(29, 46, 79, 0.02)),
    rgba(255, 255, 255, 0.6);
}

.ad-compare-column.is-myway {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(28, 223, 115, 0.2), rgba(0, 174, 187, 0.13)),
    rgba(255, 255, 255, 0.86);
  box-shadow: inset 1px 0 0 rgba(29, 46, 79, 0.1);
}

.ad-compare-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  color: rgba(29, 46, 79, 0.76);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(29, 46, 79, 0.08);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.ad-compare-column.is-myway .ad-compare-kicker {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.ad-compare-column h3 {
  color: var(--ink);
  font-size: clamp(1.26rem, 2.1vw, 1.78rem);
  line-height: 1.08;
}

.ad-compare-column.is-traditional h3 {
  color: rgba(29, 46, 79, 0.8);
}

.ad-compare-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ad-compare-column li {
  position: relative;
  min-height: 24px;
  padding-left: 32px;
  color: var(--ink);
  font-size: 0.97rem;
  font-weight: 650;
  line-height: 1.45;
}

.ad-compare-column.is-traditional li {
  color: rgba(29, 46, 79, 0.68);
}

.ad-compare-column li::before {
  position: absolute;
  left: 7px;
  top: 10px;
  display: inline-flex;
  width: 8px;
  height: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(29, 46, 79, 0.08);
  color: rgba(29, 46, 79, 0.58);
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1;
  content: "";
}

.ad-compare-column.is-myway li::before {
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--green-1), var(--green-3));
  color: #ffffff;
  content: "✓";
}

.ad-comparison-result {
  display: grid;
  gap: 8px;
  max-width: 850px;
  padding: 0;
}

.ad-comparison-result span {
  color: rgba(29, 46, 79, 0.64);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.ad-comparison-result strong {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  line-height: 1.18;
}

.ad-comparison-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(29, 46, 79, 0.08);
  box-shadow: 0 26px 70px rgba(13, 23, 49, 0.16);
}

.ad-comparison-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(28, 223, 115, 0.18), transparent 32%);
  content: "";
}

.ad-comparison-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ad-comparison-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  width: fit-content;
  max-width: calc(100% - 36px);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  padding: 9px 13px;
  color: #ffffff;
  background: rgba(29, 46, 79, 0.76);
  box-shadow: 0 16px 34px rgba(13, 25, 62, 0.22);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.12;
}

.ad-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 38px;
  align-items: center;
}

.brand-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(29, 46, 79, 0.1);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(13, 25, 62, 0.06);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
}

.brand-pill i {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.google-ads-mark i {
  border-radius: 5px;
  background:
    linear-gradient(135deg, #4285f4 0 42%, transparent 42%),
    linear-gradient(45deg, #34a853 0 46%, transparent 46%),
    radial-gradient(circle at 70% 72%, #fbbc04 0 27%, transparent 28%);
}

.meta-mark i::before,
.meta-mark i::after {
  position: absolute;
  top: 5px;
  width: 12px;
  height: 8px;
  border: 3px solid #0866ff;
  border-radius: 999px;
  content: "";
}

.meta-mark i::before {
  left: -1px;
  transform: rotate(-28deg);
}

.meta-mark i::after {
  right: -1px;
  transform: rotate(28deg);
}

.myway-mark {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-1), var(--green-3));
}

.myway-mark i {
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    #ffffff;
}

.myway-mark i::before {
  position: absolute;
  left: 3px;
  right: 3px;
  top: 5px;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.myway-logo-pill {
  display: inline-flex;
  width: min(100%, 270px);
  min-height: 46px;
  align-items: center;
  border: 1px solid rgba(29, 46, 79, 0.1);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(13, 25, 62, 0.08);
}

.myway-logo-pill img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 34px;
  object-fit: contain;
}

.comparison-result-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #1d2e4f, #274d82);
  box-shadow: 0 12px 28px rgba(13, 25, 62, 0.16);
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1;
}

.package-overview {
  grid-column: 1 / -1;
  display: grid;
  gap: 30px;
}

.package-heading {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.package-heading p {
  color: var(--ink);
  font-weight: 400;
}

.package-heading h2 {
  max-width: 780px;
}

.package-highlight {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(100%, 760px);
  justify-items: start;
  margin-top: 0;
  padding: 6px 0 22px;
  color: var(--ink);
  text-align: left;
}

.package-highlight::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, var(--green-1), var(--green-3), transparent);
  background-size: 220% 100%;
  content: "";
  animation: packageLineFlow 3.6s linear infinite;
}

.package-highlight::after {
  display: none;
}

.package-highlight strong {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3.4vw, 36px);
  color: var(--ink);
  line-height: 1;
}

.package-highlight-count {
  display: grid;
  gap: 3px;
  min-width: max-content;
  padding-right: clamp(18px, 3.4vw, 36px);
  border-right: 1px solid rgba(29, 46, 79, 0.18);
  color: var(--ink);
  line-height: 1;
  text-align: center;
}

.package-highlight-count small {
  color: rgba(29, 46, 79, 0.72);
  font-size: clamp(0.9rem, 1.5vw, 1.08rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-highlight em,
.package-highlight b {
  font-style: normal;
  font-weight: 950;
}

.package-highlight em {
  display: block;
  min-width: max-content;
  background: linear-gradient(135deg, var(--green-1), var(--green-3), #2b4a91);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(3.7rem, 8vw, 6.4rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow: 0 12px 30px rgba(28, 223, 115, 0.14);
  animation:
    packageNumberPop 3.4s ease-in-out infinite,
    packageGradientFlow 6.4s ease-in-out infinite;
}

.package-highlight-copy {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: clamp(1.12rem, 2.4vw, 1.85rem);
  line-height: 1.1;
  font-weight: 900;
  text-align: left;
}

.package-highlight-copy small {
  color: rgba(29, 46, 79, 0.68);
  font-size: clamp(0.88rem, 1.4vw, 1.02rem);
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.package-highlight b {
  display: block;
  color: var(--green-3);
  max-width: 360px;
}

@keyframes packageNumberPop {
  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.045);
  }
}

@keyframes packageGradientFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes packageLineFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 220% 50%;
  }
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.package-card {
  position: relative;
  display: grid;
  gap: 22px;
  align-content: start;
  min-height: 0;
  padding: 26px;
  border: 1px solid rgba(29, 46, 79, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 20px 58px rgba(13, 25, 62, 0.09);
}

.package-card-featured {
  color: #ffffff;
  background:
    linear-gradient(155deg, rgba(9, 12, 31, 0.98), rgba(32, 57, 126, 0.95)),
    var(--brand-bg);
  box-shadow: 0 30px 86px rgba(13, 25, 62, 0.22);
}

.package-card:first-child {
  border-color: rgba(21, 201, 167, 0.34);
  box-shadow: 0 24px 68px rgba(21, 201, 167, 0.12);
}

.package-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  padding: 9px 18px;
  color: #ffffff;
  background: var(--amber);
  box-shadow: 0 12px 28px rgba(246, 183, 60, 0.34);
  font-weight: 900;
}

.package-card h3 {
  margin: 0;
  color: inherit;
  font-size: 2rem;
  line-height: 1;
}

.package-price {
  display: grid;
  gap: 6px;
}

.package-price span {
  color: currentColor;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-price strong {
  color: inherit;
  font-size: clamp(2.25rem, 4vw, 3.05rem);
  line-height: 1;
}

.package-price small {
  color: currentColor;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.78;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 24px;
  color: currentColor;
  font-weight: 400;
  line-height: 1.34;
}

.package-card li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-1), var(--green-3));
  content: "";
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.check-grid span,
.category-list span {
  position: relative;
  min-height: 52px;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font-weight: 500;
}

.check-grid span::before,
.category-list span::before {
  position: absolute;
  left: 16px;
  top: 17px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-2);
  content: "";
}

.section-note {
  max-width: 880px;
  margin-top: 22px;
  color: var(--ink);
  font-weight: 400;
}

.launch-partner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.launch-partner-section .check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.launch-image-panel {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  background: #ffffff;
  box-shadow:
    0 28px 86px rgba(13, 25, 62, 0.16),
    0 0 0 8px rgba(255, 255, 255, 0.42);
}

.launch-image-panel::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.launch-image-panel img {
  width: 100%;
  height: min(560px, 52vw);
  object-fit: cover;
  object-position: 50% 42%;
}

.split-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 248, 0.94));
  backdrop-filter: blur(10px);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.category-list span {
  min-height: 0;
  padding: 10px 14px 10px 36px;
}

.category-list span::before {
  left: 14px;
  top: 15px;
  width: 10px;
  height: 10px;
  background: var(--amber);
}

.redeem-panel {
  padding: clamp(24px, 4vw, 36px);
}

.redeem-panel ol {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 500;
}

.faq-list {
  counter-reset: faq-item;
  display: grid;
  gap: 14px;
  align-content: start;
}

.faq-heading-block {
  max-width: 520px;
}

.faq-intro-copy {
  max-width: 48ch;
  color: rgba(29, 46, 79, 0.82);
}

.faq-intro-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(25, 230, 167, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(25, 230, 167, 0.14), transparent 42%),
    linear-gradient(160deg, #0b1d44 0%, #102b60 68%, #12386d 100%);
  box-shadow: 0 24px 58px rgba(8, 23, 58, 0.22);
  overflow: hidden;
}

.faq-intro-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.16) 0, rgba(255, 255, 255, 0.04) 2px, transparent 2px) 0 0 / 22px 22px;
  opacity: 0.24;
  content: "";
  pointer-events: none;
}

.faq-intro-badge,
.faq-intro-points,
.faq-intro-note {
  position: relative;
  z-index: 1;
}

.faq-intro-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 16px;
  color: #061330;
  background: linear-gradient(90deg, #19e6a7, #12c7b8);
  box-shadow: 0 0 24px rgba(25, 230, 167, 0.28);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.faq-intro-points li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
}

.faq-intro-points li::before {
  position: absolute;
  left: 0;
  top: 0.38rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #19e6a7, #12c7b8);
  box-shadow: 0 0 14px rgba(25, 230, 167, 0.35);
  content: "";
}

.faq-intro-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.faq-item {
  position: relative;
  border: 1px solid rgba(7, 31, 74, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.96));
  box-shadow:
    0 16px 42px rgba(7, 21, 47, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  overflow: hidden;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.faq-item[open] {
  border-color: rgba(25, 230, 167, 0.34);
  box-shadow:
    0 20px 48px rgba(7, 21, 47, 0.12),
    0 0 0 1px rgba(25, 230, 167, 0.12);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(7, 21, 47, 0.11);
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
}

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

.faq-item summary::before {
  counter-increment: faq-item;
  content: counter(faq-item, decimal-leading-zero);
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #0a1f4a, #145681);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 30px rgba(10, 31, 74, 0.18);
  font-size: 0.95rem;
  font-weight: 900;
}

.faq-item summary::after {
  width: 12px;
  height: 12px;
  justify-self: end;
  border-right: 2px solid rgba(10, 31, 74, 0.7);
  border-bottom: 2px solid rgba(10, 31, 74, 0.7);
  content: "";
  transform: rotate(45deg);
  transition: transform 0.24s ease;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px 90px;
  color: rgba(29, 46, 79, 0.82);
  font-size: 0.98rem;
  line-height: 1.62;
}

.registration-section {
  background:
    linear-gradient(135deg, rgba(28, 223, 115, 0.08), transparent 34%),
    var(--surface);
  backdrop-filter: blur(10px);
}

.registration-layout {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
}

.registration-layout .section-heading {
  max-width: 760px;
}

.registration-choice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  margin-top: 2px;
  color: var(--ink);
  font-weight: 500;
}

.registration-choice a {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--green-3);
  background: rgba(232, 251, 243, 0.72);
  font-weight: 950;
  box-shadow: 0 0 0 0 rgba(21, 201, 167, 0.26);
  animation: directSignupPulse 2.4s ease-in-out infinite;
}

.registration-choice a::after {
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: -3px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-1), var(--green-3));
  content: "";
}

@keyframes directSignupPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(21, 201, 167, 0.22);
    transform: translateY(0);
  }

  48% {
    box-shadow: 0 0 0 7px rgba(21, 201, 167, 0.08);
    transform: translateY(-1px);
  }
}

.handdrawn-arrow {
  display: inline-flex;
  width: 74px;
  height: 30px;
  margin-left: 4px;
  color: #e53935;
  transform: rotate(-2deg);
  animation: arrow-nudge 1800ms cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.handdrawn-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.handdrawn-arrow-line,
.handdrawn-arrow-head {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4.4;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.72));
}

.handdrawn-arrow-head {
  stroke-width: 4.1;
}

@keyframes arrow-nudge {
  0%,
  46%,
  100% {
    transform: translateX(0) rotate(-2deg);
  }

  58% {
    transform: translateX(-7px) rotate(-4deg);
  }

  70% {
    transform: translateX(0) rotate(-2deg);
  }

  80% {
    transform: translateX(-4px) rotate(-3deg);
  }
}

main > section:nth-of-type(n + 2):not(.early-partner-section) {
  border-top: 1px solid rgba(29, 46, 79, 0.08);
  background: var(--section-white);
  backdrop-filter: blur(10px);
}

main > section:nth-of-type(odd):not(.hero):not(.early-partner-section) {
  background:
    linear-gradient(180deg, rgba(239, 245, 251, 0.98), rgba(232, 240, 248, 0.96)),
    var(--section-tint);
}

main > section.packages-section {
  background:
    linear-gradient(135deg, rgba(28, 223, 115, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(238, 245, 251, 0.96)),
    var(--section-white);
}

.partner-form {
  width: min(100%, 1040px);
  margin-inline: auto;
  padding: 0;
}

.partner-funnel-shell {
  display: grid;
  gap: 26px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(1, 40, 85, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.96)),
    var(--section-white);
  box-shadow:
    0 26px 70px rgba(7, 21, 47, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.partner-funnel-intro {
  display: none;
  gap: 22px;
}

.partner-funnel-intro.is-active {
  display: grid;
}

.partner-funnel-intro-copy {
  max-width: 52ch;
  color: rgba(29, 46, 79, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

.partner-funnel-intro-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.partner-funnel-intro-stats div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(1, 40, 85, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(7, 21, 47, 0.06);
}

.partner-funnel-intro-stats strong {
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.partner-funnel-intro-stats span {
  color: rgba(29, 46, 79, 0.7);
  font-size: 0.9rem;
  font-weight: 700;
}

.funnel-start {
  width: fit-content;
  min-width: 240px;
  justify-self: center;
}

.partner-funnel-progress {
  display: grid;
  gap: 12px;
}

.partner-funnel-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.partner-funnel-progress-kicker {
  color: #08745d;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-funnel-progress-head strong {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 850;
}

.partner-funnel-progress-track {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(1, 40, 85, 0.08);
}

.partner-funnel-progress-track span {
  display: block;
  width: 14.2857%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-1), var(--green-3));
  box-shadow: 0 0 18px rgba(21, 201, 167, 0.26);
  transition: width 0.28s ease;
}

.partner-funnel-step {
  display: grid;
  gap: 22px;
}

.partner-funnel-step:not(.is-active) {
  display: none;
}

.partner-funnel-step-number {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 13px;
  color: #ffffff;
  background: linear-gradient(135deg, #0a1f4a, #124b7a);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-funnel-step h3 {
  max-width: 18ch;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.partner-funnel-note {
  margin-top: -10px;
  color: rgba(29, 46, 79, 0.72);
  font-size: 0.95rem;
}

.partner-funnel-fields {
  display: grid;
  gap: 16px;
}

.partner-funnel-fields.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-funnel-fields.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-funnel-fields.one-up {
  grid-template-columns: 1fr;
}

.partner-funnel-fields label {
  display: grid;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.partner-funnel-fields input,
.partner-funnel-fields textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(1, 40, 85, 0.14);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.partner-funnel-fields textarea {
  min-height: 170px;
  resize: vertical;
}

.partner-funnel-fields input:focus,
.partner-funnel-fields textarea:focus {
  border-color: var(--green-2);
  box-shadow:
    0 0 0 4px rgba(21, 201, 167, 0.12),
    0 14px 34px rgba(7, 21, 47, 0.06);
  outline: none;
}

.partner-choice-grid {
  display: grid;
  gap: 12px;
}

.partner-choice-grid.category,
.partner-choice-grid.redemption {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-choice-chip,
.partner-choice-card {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 66px;
  align-content: center;
  border: 1px solid rgba(1, 40, 85, 0.1);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(7, 21, 47, 0.06);
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.partner-choice-chip:hover,
.partner-choice-chip:focus-visible,
.partner-choice-card:hover,
.partner-choice-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(21, 201, 167, 0.34);
  box-shadow:
    0 16px 38px rgba(7, 21, 47, 0.09),
    0 0 0 1px rgba(21, 201, 167, 0.08);
  outline: none;
}

.partner-choice-chip.is-selected,
.partner-choice-card.is-selected {
  border-color: rgba(21, 201, 167, 0.56);
  background:
    linear-gradient(135deg, rgba(29, 223, 115, 0.12), rgba(0, 174, 187, 0.1)),
    rgba(255, 255, 255, 0.98);
  box-shadow:
    0 18px 44px rgba(7, 21, 47, 0.1),
    0 0 0 1px rgba(21, 201, 167, 0.18);
}

.partner-choice-card strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.partner-choice-card span {
  color: rgba(29, 46, 79, 0.74);
  font-size: 0.92rem;
  line-height: 1.45;
}

.checkbox-row.assistant-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: -4px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(1, 40, 85, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  line-height: 1.45;
}

.checkbox-row.assistant-consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 0.15em;
  accent-color: var(--green-2);
}

.partner-step-error {
  margin: -6px 0 0;
  color: #b42318;
  font-size: 0.92rem;
  font-weight: 700;
}

.partner-funnel-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.funnel-back,
.funnel-next,
.funnel-submit {
  min-width: 180px;
}

.funnel-back[disabled] {
  opacity: 0.45;
  pointer-events: none;
}

.submit-btn {
  width: auto;
  min-width: 190px;
  max-width: 100%;
  padding-inline: 26px;
}

.submit-btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  filter: grayscale(0.2);
}

.success-message {
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(21, 201, 167, 0.4);
  border-radius: 18px;
  color: #0b6c55;
  background: rgba(232, 251, 243, 0.9);
  font-weight: 700;
}

.success-message.is-error {
  border-color: rgba(196, 57, 57, 0.32);
  background: rgba(255, 238, 238, 0.96);
  color: #b42318;
}

.final-cta {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(74px, 10vw, 128px) 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 9, 25, 0.9), rgba(25, 55, 133, 0.76)),
    var(--brand-bg-image) center / cover no-repeat,
    var(--brand-bg);
}

.final-cta-inner {
  display: grid;
  justify-items: start;
  gap: 18px;
  max-width: 760px;
  text-align: left;
}

.final-cta h2,
.final-cta p,
.final-cta small,
.final-cta .eyebrow {
  color: #ffffff;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
}

.site-footer {
  padding: clamp(34px, 5vw, 54px) 0;
  background:
    linear-gradient(135deg, rgba(7, 9, 25, 0.96), rgba(10, 31, 74, 0.9)),
    var(--brand-bg-image) center / cover no-repeat,
    var(--brand-bg);
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.8fr)) minmax(220px, 0.9fr);
  gap: 24px;
  align-items: start;
  font-size: 0.94rem;
}

.footer-brand,
.footer-links,
.footer-meta {
  display: grid;
  gap: 12px;
}

.footer-logo {
  width: min(240px, 100%);
  height: auto;
}

.footer-brand p,
.footer-links span,
.footer-links a,
.footer-meta span,
.footer-meta a:not(.footer-cta) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.footer-heading {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-meta a:not(.footer-cta) {
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-meta a:not(.footer-cta):hover {
  color: #ffffff;
}

.footer-meta {
  justify-items: start;
}

.footer-cta {
  min-width: 0;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.72);
}

.footer-meta a:not(.footer-cta) {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  min-height: 100vh;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(6, 19, 48, 0.94), rgba(10, 31, 74, 0.96)),
    var(--brand-bg-image) center / cover fixed no-repeat,
    var(--brand-bg);
}

.legal-page .site-header {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(1, 40, 85, 0.08) !important;
  box-shadow: 0 10px 28px rgba(1, 40, 85, 0.08) !important;
  backdrop-filter: blur(18px) !important;
}

.legal-page .nav-links,
.legal-page .nav-links a,
.legal-page .header-menu-toggle,
.legal-page .brand,
.legal-page .language-toggle button {
  color: #012855 !important;
}

.legal-page .nav-links a::after {
  background: linear-gradient(90deg, #19e6a7, #12c7b8);
}

.legal-page .nav-links a:hover,
.legal-page .nav-links a:focus-visible {
  color: #012855 !important;
}

.legal-page .header-menu {
  color: #012855 !important;
}

.legal-shell {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
  padding: calc(var(--topbar-height) + 112px) 0 72px;
}

.legal-topbar {
  min-height: var(--topbar-height);
  background: #012855;
}

.legal-header {
  position: sticky;
  top: var(--topbar-height);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(1, 40, 85, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.legal-brand {
  display: inline-flex;
  align-items: center;
}

.legal-brand img {
  width: min(440px, 42vw);
  min-width: 180px;
}

.legal-back {
  color: #012855;
  font-weight: 800;
  text-decoration: none;
}

.legal-hero {
  display: grid;
  gap: 0;
  margin-bottom: 26px;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.legal-kicker {
  color: #86ffd7;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.98;
  color: #ffffff !important;
}

.legal-grid {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(10, 31, 74, 0.82), rgba(6, 19, 48, 0.74)) !important;
  box-shadow: 0 20px 60px rgba(4, 10, 28, 0.22);
  backdrop-filter: blur(12px);
}

.legal-card h2,
.legal-card h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.legal-card h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
}

.legal-card h3 {
  font-size: 1.12rem;
}

.legal-card p,
.legal-card li,
.legal-card dd,
.legal-card dt,
.legal-card address {
  color: rgba(255, 255, 255, 0.82);
}

.legal-card p,
.legal-card li,
.legal-card dd,
.legal-card address {
  line-height: 1.65;
}

.legal-card a {
  color: #86ffd7;
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.legal-card dl {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 10px 18px;
  margin: 0;
}

.legal-card dt {
  font-weight: 800;
}

.legal-card dd {
  margin: 0;
}

.legal-stack {
  display: grid;
  gap: 12px;
}

@media (max-width: 1040px) {
  .legal-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
  }

  .legal-brand img {
    width: min(320px, 74vw);
  }

  .legal-shell {
    width: min(100% - 20px, 1120px);
    padding: calc(var(--topbar-height) + 96px) 0 48px;
  }

  .legal-hero,
  .legal-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .legal-card dl {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  html {
    scroll-padding-top: calc(var(--topbar-height) + 128px);
  }

  body {
    background-attachment: scroll;
  }

  .site-header {
    overflow: visible;
    align-items: center;
    gap: 10px 14px;
    padding-inline: max(3vh, 14px);
  }

  .site-header.is-menu-open {
    border-bottom-color: transparent;
    box-shadow: none;
  }

  .header-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    margin-left: auto;
  }

  .site-header.is-menu-open .header-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .header-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .header-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-menu {
    position: absolute;
    z-index: 60;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    align-content: start;
    justify-items: stretch;
    gap: 28px;
    min-height: calc(100dvh - var(--topbar-height) - 78px);
    padding: 24px max(24px, 5vw) 32px;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 28px 58px rgba(1, 40, 85, 0.14);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    transform: translateY(-14px);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s ease;
  }

  .site-header.is-menu-open .header-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .brand-logo {
    max-width: min(48vw, 300px);
  }

  .hero-top {
    gap: clamp(34px, 5vw, 54px);
  }

  .hero h1 {
    font-size: clamp(3rem, 6.2vw, 4.8rem);
  }

  .hero-copy {
    font-size: clamp(1rem, 1.8vw, 1.22rem);
  }

  .launch-countdown-values {
    gap: 14px;
  }

  .stats-section,
  .category-section,
  .redemption-section,
  .process-section,
  .conditions-section,
  .ad-comparison-section,
  .packages-section,
  .faq-section,
  .registration-section,
  .split-band,
  .band,
  .final-cta {
    padding: clamp(48px, 7vh, 82px) 0;
  }

  main > section,
  .hero,
  .hero-showcase,
  .hero-video-section,
  .early-partner-section,
  .final-cta {
    min-height: auto;
  }

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

  .footer-links-quick,
  .footer-cta {
    display: none;
  }

  .footer-inner {
    gap: 20px 26px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .stat-card {
    padding: 18px;
  }

  .stat-card strong {
    font-size: clamp(2.1rem, 3.8vw, 2.65rem);
  }

  .benefit-grid,
  .process-list,
  .check-grid,
  .gift-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .redemption-layout {
    grid-template-columns: 1fr;
  }

  .redemption-visual {
    position: relative;
    top: auto;
  }

  .process-list::before {
    display: none;
  }

  .process-list::after {
    display: none;
  }

  .process-list li {
    padding-top: 82px;
  }

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

  .category-control-panel {
    width: 100%;
  }

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

  .spotlight-category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
  }

  .category-visual {
    min-height: 420px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .package-card {
    min-height: 0;
    padding: 22px;
  }

  .package-card li {
    font-size: 0.94rem;
  }

  .faq-heading-block {
    max-width: 100%;
  }

  .faq-intro-card {
    max-width: 680px;
  }

  .faq-item summary {
    grid-template-columns: 58px minmax(0, 1fr) 22px;
    gap: 14px;
    padding: 18px 20px;
  }

  .faq-item p {
    padding: 0 20px 20px 78px;
  }

  .partner-funnel-fields.two-up,
  .partner-funnel-fields.three-up,
  .partner-choice-grid.category,
  .partner-choice-grid.redemption {
    grid-template-columns: 1fr;
  }

  .partner-funnel-intro-stats {
    grid-template-columns: 1fr;
  }

  .partner-funnel-step h3 {
    max-width: 20ch;
  }

  .package-price strong {
    font-size: clamp(2rem, 3.6vw, 2.65rem);
  }

  .conditions-panel {
    grid-template-columns: 1fr;
    width: min(100%, 960px);
  }

  .conditions-points {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
  }

  .commission-examples-track {
    max-height: none;
  }

  .commission-example-card {
    flex-basis: auto;
  }

  .commission-example-nav {
    display: none;
  }

  .ad-comparison-layout {
    grid-template-columns: 1fr;
  }

  .ad-comparison-board {
    grid-template-columns: 1fr;
  }

  .ad-compare-column.is-myway {
    box-shadow: inset 0 1px 0 rgba(29, 46, 79, 0.1);
  }

  .ad-comparison-visual {
    max-width: 760px;
    width: 100%;
  }

  .ad-comparison-visual img {
    aspect-ratio: 16 / 9;
  }

  .gift-layout {
    grid-template-columns: 1fr;
  }

  .gift-copy {
    min-height: 0;
  }

  .video-panel {
    min-height: 420px;
  }

  .launch-partner-layout {
    grid-template-columns: 1fr;
  }

  .launch-image-panel img {
    height: 460px;
  }

  .nav-links {
    display: grid;
    justify-content: stretch;
    gap: 14px;
    overflow: visible;
    padding: 0;
    margin: 0;
    width: 100%;
    font-size: clamp(1.35rem, 2.9vw, 1.8rem);
    scrollbar-width: auto;
    -webkit-overflow-scrolling: auto;
  }

  .nav-links a {
    min-height: 50px;
    justify-content: flex-start;
    padding: 14px 0;
    opacity: 0;
    transform: translateX(-34px);
    transition:
      color 0.2s ease,
      transform 0.28s ease,
      opacity 0.28s ease;
  }

  .nav-links a::after {
    left: 0;
    right: auto;
    bottom: 6px;
    width: 100%;
    transform-origin: left center;
  }

  .header-meta {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-left: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(1, 40, 85, 0.08);
  }

  .header-cta {
    min-width: 196px;
  }

  .site-header.is-menu-open .nav-links a {
    opacity: 1;
    transform: translateX(0);
  }

  .site-header.is-menu-open .nav-links a:nth-child(1) { transition-delay: 40ms; }
  .site-header.is-menu-open .nav-links a:nth-child(2) { transition-delay: 80ms; }
  .site-header.is-menu-open .nav-links a:nth-child(3) { transition-delay: 120ms; }
  .site-header.is-menu-open .nav-links a:nth-child(4) { transition-delay: 160ms; }
  .site-header.is-menu-open .nav-links a:nth-child(5) { transition-delay: 200ms; }
  .site-header.is-menu-open .nav-links a:nth-child(6) { transition-delay: 240ms; }
  .site-header.is-menu-open .nav-links a:nth-child(7) { transition-delay: 280ms; }

  .hero-video-stage {
    width: 100%;
    min-height: auto;
    padding: 0;
  }

  .hero-video-section {
    min-height: auto;
    background: transparent;
  }

  .hero-video-section::before {
    display: none;
  }

  .hero-video-shell {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .early-partner-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "side"
      "cta";
    gap: 24px;
    padding: 96px 0 52px;
  }

  .early-partner-cta-group {
    width: 100%;
    margin-top: 0;
    justify-items: stretch;
  }

  .early-partner-cta {
    width: 100%;
    justify-self: stretch;
    color: #061330;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: calc(var(--topbar-height) + 132px);
    scroll-snap-type: none;
  }

  .hero-showcase {
    min-height: auto;
    margin-top: calc(var(--topbar-height) + 74px);
  }

  .hero-showcase-content {
    justify-items: center;
    gap: 14px;
    padding: clamp(72px, 10vh, 104px) 0 52px;
    text-align: center;
  }

  .hero-showcase-logo {
    width: min(360px, 64vw);
  }

  .hero-showcase-copy .hero-copy {
    max-width: 540px;
  }

  .hero-showcase-countdown {
    padding: 16px 18px 0;
  }

  .stats-section,
  .category-section,
  .redemption-section,
  .process-section,
  .conditions-section,
  .ad-comparison-section,
  .packages-section,
  .faq-section,
  .registration-section,
  .split-band,
  .band,
  .final-cta {
    padding: clamp(40px, 6.5vh, 62px) 0;
  }

  .hero-video-stage {
    width: 100%;
    min-height: auto;
    padding: 0;
  }

  .hero-video-shell {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .early-partner-copy {
    max-width: 100%;
  }

  .early-partner-section h2 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 6.8vw, 4.8rem);
  }

  .early-partner-side {
    width: min(100%, 780px);
  }

  .hero {
    min-height: auto;
    padding: 60px 0 56px;
  }

  .hero-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-text,
  .hero-benefits,
  .breaking-news-banner {
    grid-column: 1;
    grid-row: auto;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 8.2vw, 4rem);
  }

  .hero-benefits {
    max-width: 620px;
  }

  .breaking-news-banner {
    margin-top: 18px;
  }

  .breaking-news-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 0 16px;
  }

  .breaking-news-close {
    display: inline-grid;
  }

  .breaking-news-side {
    justify-items: center;
    min-width: 0;
  }

  .breaking-news-copy {
    gap: 10px;
    padding-top: 6px;
    justify-items: center;
    text-align: center;
  }

  .breaking-news-copy strong {
    max-width: 720px;
    font-size: clamp(1.06rem, 2.4vw, 1.5rem);
    line-height: 1.22;
  }

  .breaking-news-benefits {
    justify-content: center;
    max-width: 700px;
    gap: 8px 14px;
  }

  .breaking-news-counter {
    width: min(100%, 340px);
    min-width: 0;
    padding: 18px 18px 20px;
  }

  .hero-points {
    gap: 12px 18px;
  }

  .redemption-option {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: calc(var(--topbar-height) + 132px);
    scroll-snap-type: none;
  }

  .launch-topbar {
    min-height: var(--topbar-height);
    padding-inline: 10px;
    font-size: 0.8rem;
  }

  .launch-topbar-state {
    min-width: 30ch;
    gap: 8px;
  }

  .site-header {
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
    align-items: center;
    gap: 8px 10px;
    padding: 9px max(3vh, 12px);
  }

  .header-menu {
    top: 100%;
    left: 0;
    right: 0;
    min-height: calc(100dvh - var(--topbar-height) - 66px);
    gap: 22px;
    padding: 20px 18px 28px;
  }

  .header-meta {
    gap: 10px;
    margin-left: 0;
  }

  .brand-logo {
    max-width: 68vw;
  }

  .nav-links {
    gap: 12px;
    width: 100%;
    font-size: 1.32rem;
  }

  .nav-links a {
    min-height: 48px;
    padding: 12px 0;
  }

  .header-cta {
    min-height: 40px;
    min-width: 0;
    flex: 1 1 auto;
    max-width: none;
    padding: 10px 14px;
    font-size: 0.82rem;
    line-height: 1.08;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 42px;
    background:
      linear-gradient(180deg, rgba(7, 9, 25, 0.96) 0%, rgba(13, 25, 62, 0.88) 68%, rgba(13, 25, 62, 0.68) 100%),
      var(--brand-bg-image) center / cover no-repeat,
      var(--brand-bg);
  }

  .hero-showcase {
    min-height: auto;
    margin-top: calc(var(--topbar-height) + 92px);
  }

  .hero-showcase-logo {
    display: none;
  }

  .hero-showcase-media {
    background:
      linear-gradient(180deg, rgba(7, 21, 47, 0.26), rgba(7, 21, 47, 0.18)),
      url("assets/hero-mobile-portrait.jpg") center top / cover no-repeat;
  }

  .hero-showcase-overlay {
    background:
      linear-gradient(180deg, rgba(5, 15, 36, 0.34) 0%, rgba(10, 26, 70, 0.62) 54%, rgba(7, 21, 47, 0.84) 100%),
      linear-gradient(90deg, rgba(8, 28, 86, 0.76) 0%, rgba(25, 52, 136, 0.28) 46%, rgba(7, 21, 47, 0.72) 100%);
  }

  .hero-showcase-content {
    gap: 10px;
    width: min(100% - 20px, var(--container));
    padding: 58px 0 44px;
  }

  .stats-section,
  .category-section,
  .redemption-section,
  .process-section,
  .conditions-section,
  .ad-comparison-section,
  .packages-section,
  .faq-section,
  .registration-section,
  .split-band,
  .band,
  .final-cta {
    padding: clamp(34px, 5.8vh, 54px) 0;
  }

  main > section,
  .hero,
  .hero-showcase,
  .hero-video-section,
  .early-partner-section,
  .final-cta {
    min-height: auto;
  }

  .hero-showcase-copy .hero-copy {
    font-size: 0.9rem;
    line-height: 1.36;
  }

  .hero-showcase-countdown {
    width: 100%;
    gap: 10px;
    padding: 12px 12px 0;
    border-radius: 14px;
  }

  .hero-showcase-scroll span {
    width: 16px;
    height: 16px;
    border-right-width: 2.5px;
    border-bottom-width: 2.5px;
  }

  .partner-funnel-shell {
    gap: 18px;
    padding: 18px 14px;
    border-radius: 20px;
  }

  .partner-funnel-intro-stats div {
    padding: 14px;
    border-radius: 16px;
  }

  .partner-funnel-progress-head {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .partner-funnel-step {
    gap: 16px;
  }

  .partner-funnel-step h3 {
    max-width: 100%;
    font-size: clamp(1.45rem, 6vw, 2rem);
    line-height: 1.12;
  }

  .partner-choice-chip,
  .partner-choice-card {
    min-height: 0;
    padding: 13px 14px;
    border-radius: 16px;
  }

  .partner-funnel-nav {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .funnel-back,
  .funnel-next,
  .funnel-submit {
    width: 100%;
    min-width: 0;
  }

  .faq-intro-card {
    gap: 14px;
    padding: 16px 16px;
    border-radius: 18px;
  }

  .faq-intro-note {
    display: none;
  }

  .faq-intro-points li {
    font-size: 0.93rem;
    line-height: 1.42;
  }

  .faq-item {
    border-radius: 18px;
  }

  .faq-item summary {
    grid-template-columns: 46px minmax(0, 1fr) 18px;
    gap: 12px;
    padding: 16px;
    font-size: 0.96rem;
    line-height: 1.4;
  }

  .faq-item summary::before {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 0.82rem;
  }

  .faq-item summary::after {
    width: 10px;
    height: 10px;
  }

  .faq-item p {
    padding: 0 16px 18px 16px;
    font-size: 0.93rem;
    line-height: 1.56;
  }

  .hero-video-stage {
    width: 100%;
    min-height: auto;
    padding: 0;
  }

  .hero-video-shell {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0;
  }

  .hero-video-play {
    width: clamp(76px, 20vw, 96px);
    height: clamp(76px, 20vw, 96px);
  }

  .hero-video-play-icon {
    margin-left: 6px;
    border-top-width: 16px;
    border-bottom-width: 16px;
    border-left-width: 26px;
  }

  .early-partner-inner {
    width: min(100% - 20px, var(--container));
    gap: 18px;
    padding: 82px 0 38px;
  }

  .early-partner-badge {
    min-height: 36px;
    padding: 9px 14px;
    font-size: 0.76rem;
  }

  .early-partner-section h2 {
    max-width: none;
    font-size: clamp(2.2rem, 9vw, 3.4rem);
    line-height: 1.02;
  }

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

  .footer-brand {
    gap: 10px;
  }

  .footer-links-quick,
  .footer-cta {
    display: none;
  }

  .footer-links,
  .footer-meta {
    gap: 8px;
  }

  .footer-logo {
    width: min(220px, 72vw);
  }

  .early-partner-subline {
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .early-partner-cta-group {
    gap: 10px;
  }

  .early-partner-cta {
    width: 100%;
    color: #061330;
  }

  .early-partner-cta-note {
    font-size: 0.88rem;
  }

  .early-partner-cta-note strong {
    font-size: 0.94rem;
  }

  .early-partner-counter {
    gap: 8px;
    padding: 20px;
    border-radius: 18px;
  }

  .early-partner-counter span,
  .early-partner-counter small {
    font-size: 0.76rem;
  }

  .early-partner-counter strong {
    font-size: clamp(3.2rem, 17vw, 4.6rem);
  }

  .early-partner-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .early-partner-benefits li {
    min-height: 0;
    padding: 16px;
    border-radius: 16px;
  }

  .hero-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-text > * {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2rem, 9.2vw, 3rem);
    line-height: 1.02;
  }

  .hero-copy {
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.46;
  }

  .hero-copy span {
    margin-top: 0.75em;
  }

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

  .breaking-news-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100% - 20px, var(--container));
    padding: 16px 0 14px;
  }

  .breaking-news-close {
    top: 8px;
    right: 0;
    width: 34px;
    height: 34px;
  }

  .breaking-news-copy {
    gap: 8px;
    padding-top: 8px;
    justify-items: center;
    text-align: center;
  }

  .breaking-news-label {
    font-size: clamp(0.8rem, 3.6vw, 0.96rem);
    padding: 7px 12px;
  }

  .breaking-news-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 1.35rem;
  }

  .breaking-news-copy strong {
    font-size: 1.02rem;
    line-height: 1.26;
  }

  .breaking-news-benefits {
    display: grid;
    justify-items: center;
    gap: 7px;
  }

  .breaking-news-benefits span {
    padding-left: 18px;
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .breaking-news-counter {
    width: min(100%, 420px);
    min-width: 0;
    justify-self: center;
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 6px;
    padding: 18px 16px 20px;
  }

  .breaking-news-counter strong {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .hero-points {
    gap: 8px;
    font-size: 0.86rem;
  }

  .hero-points li {
    min-height: 54px;
    padding: 12px 12px 12px 36px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
  }

  .hero-points li::before {
    left: 12px;
    top: 15px;
    font-size: 0.92rem;
  }

  .hero-video {
    border-radius: 16px;
  }

  .hero-actions,
  .hero-actions .primary-cta,
  .hero-actions .secondary-cta {
    width: 100%;
  }

  .stats-grid,
  .process-list,
  .check-grid,
  .launch-partner-section .check-grid,
  .example-flow,
  .mini-grid,
  .gift-feature-grid,
  .form-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

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

  .stats-section,
  .category-section,
  .redemption-section,
  .process-section,
  .conditions-section,
  .ad-comparison-section,
  .packages-section,
  .faq-section,
  .registration-section,
  .split-band,
  .band {
    padding: clamp(40px, 6.5vh, 62px) 0;
  }

  .section-heading {
    gap: 12px;
  }

  .section-heading p {
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .eyebrow {
    margin-bottom: 6px;
    font-size: 0.7rem;
  }

  .hero-benefits {
    gap: 22px;
  }

  .launch-countdown-values {
    gap: 16px;
  }

  .launch-countdown-values strong {
    font-size: 1.7rem;
  }

  .process-list {
    gap: 18px;
    margin-top: 30px;
  }

  .process-list::before {
    display: block;
    top: 0;
    bottom: 0;
    left: 34px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .process-list::after {
    display: block;
    top: 0;
    bottom: auto;
    left: 34px;
    width: 2px;
    max-width: none;
    height: 100%;
    max-height: 100%;
    transform: scaleY(var(--process-scale));
    transform-origin: center top;
    transition: transform 0.28s ease;
  }

  .process-list li {
    min-height: 78px;
    padding: 0 0 0 82px;
  }

  .process-list span {
    width: 58px;
    height: 58px;
    border-width: 6px;
  }

  .process-list h3,
  .process-list p {
    max-width: 100%;
  }

  .stat-card {
    min-height: 132px;
    gap: 10px;
    padding: 18px;
  }

  .stat-card strong {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .stat-label {
    font-size: 0.86rem;
    line-height: 1.28;
  }

  .stat-kicker {
    font-size: 0.64rem;
  }

  .category-showcase {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .category-visual {
    min-height: 330px;
    border-radius: 20px;
  }

  .category-visual-caption h3 {
    font-size: 1.85rem;
  }

  .spotlight-category-list {
    grid-template-columns: 1fr;
    max-height: 290px;
    overflow-y: auto;
    padding-right: 6px;
  }

  .category-picker {
    gap: 12px;
  }

  .category-button.is-active {
    transform: translateX(4px);
  }

  .category-arrows {
    align-self: start;
    position: sticky;
    top: 8px;
  }

  .category-arrow {
    width: 42px;
    height: 42px;
  }

  .category-arrow span {
    width: 10px;
    height: 10px;
    border-top-width: 2px;
    border-left-width: 2px;
  }

  .category-button strong {
    font-size: 1rem;
  }

  .category-button.is-active strong {
    font-size: 1.08rem;
  }

  .subcategory-chips {
    gap: 8px;
  }

  .subcategory-chips span {
    min-height: 28px;
    padding: 6px 9px;
    font-size: 0.76rem;
  }

  .conditions-panel {
    gap: 18px;
  }

  .table-wrap {
    border-radius: 18px;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  table {
    display: block;
    min-width: 0;
  }

  tbody {
    display: grid;
    gap: 8px;
  }

  tr {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid rgba(29, 46, 79, 0.1);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(13, 25, 62, 0.06);
  }

  th,
  td {
    display: block;
    padding: 0;
    border: 0;
    text-align: left;
  }

  th {
    width: auto;
    color: rgba(29, 46, 79, 0.72);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  td {
    font-size: 1rem;
    line-height: 1.28;
  }

  .table-note {
    margin-top: 10px;
    border-radius: 14px;
    padding: 14px;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .commission-highlight {
    padding: 15px;
  }

  .commission-example {
    border-radius: 18px;
    gap: 18px;
    padding: 18px;
  }

  .commission-examples-track {
    max-height: 640px;
  }

  .example-head {
    padding: 16px;
  }

  .example-flow div {
    min-height: 0;
    gap: 10px;
    padding: 18px;
  }

  .commission-result {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 42px 20px 20px;
  }

  .commission-after {
    width: 100%;
    justify-items: start;
    text-align: left;
  }

  .commission-info {
    top: 12px;
    right: 12px;
  }

  .commission-info-popup {
    right: -4px;
    width: min(82vw, 330px);
  }

  .commission-result em {
    white-space: normal;
    line-height: 1.2;
  }

  .ad-comparison {
    padding-top: 0;
  }

  .ad-comparison-content {
    gap: 18px;
  }

  .ad-comparison-visual {
    border-radius: 22px;
  }

  .ad-comparison-visual img {
    aspect-ratio: 4 / 3;
  }

  .ad-comparison-board {
    border-radius: 18px;
  }

  .ad-comparison-matrix {
    border-radius: 18px;
  }

  .ad-matrix-head {
    display: none;
  }

  .ad-matrix-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .ad-matrix-row p {
    padding-left: 0;
  }

  .ad-matrix-row p::before {
    display: block;
    position: static;
    width: auto;
    height: auto;
    min-height: 0;
    margin-bottom: 5px;
    border-radius: 0;
    background: none;
    color: rgba(29, 46, 79, 0.58);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .ad-matrix-row p:first-of-type::before {
    content: "Google Ads / Meta Ads";
  }

  .ad-matrix-row p:last-child::before {
    display: block;
    position: static;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    min-height: 0;
    margin-bottom: 5px;
    border-radius: 0;
    background: none;
    color: rgba(29, 46, 79, 0.58);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
    content: "my-waycard.com";
  }

  .ad-compare-column {
    gap: 14px;
    padding: 20px;
  }

  .ad-compare-column h3 {
    font-size: 1.18rem;
  }

  .ad-compare-column li {
    font-size: 0.93rem;
  }

  .ad-comparison-result {
    padding: 0;
  }

  .section-heading.narrow {
    text-align: left;
  }

  .package-highlight strong {
    display: grid;
    justify-items: center;
    gap: 10px;
  }

  .package-highlight-count {
    padding-right: 0;
    border-right: 0;
  }

  .package-highlight em {
    font-size: clamp(3.7rem, 16vw, 5.4rem);
  }

  .package-highlight-copy {
    text-align: center;
  }

  .visual-panel img {
    height: 280px;
  }

  .video-panel {
    min-height: 240px;
  }

  .launch-image-panel {
    border-radius: 18px;
  }

  .launch-image-panel img {
    height: 360px;
  }

  .video-panel {
    border-radius: 18px;
    box-shadow:
      0 22px 58px rgba(13, 25, 62, 0.16),
      0 0 0 5px rgba(255, 255, 255, 0.5);
  }

  .video-panel::after {
    left: 14px;
    top: 14px;
  }

  .bonus-callout {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .bonus-number {
    width: 74px;
    height: 74px;
    font-size: 1.85rem;
  }

  .gift-feature-grid div {
    min-height: 0;
    padding: 20px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .package-card {
    gap: 16px;
    padding: 20px;
  }

  .package-badge {
    top: -14px;
    padding: 8px 14px;
    font-size: 0.86rem;
  }

  .launch-partner-section .check-grid {
    grid-template-columns: 1fr;
  }

  .partner-form {
    padding: 16px;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(13, 25, 62, 0.08);
  }

  .registration-choice {
    line-height: 1.45;
  }

  .handdrawn-arrow {
    display: none;
  }

  input,
  select,
  textarea {
    min-height: 48px;
    font-size: 16px;
  }

  label,
  fieldset {
    gap: 7px;
    font-size: 0.9rem;
  }

  fieldset {
    padding: 12px;
  }

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

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

@media (max-width: 430px) {
  .container,
  .hero-content {
    width: min(100% - 24px, var(--container));
  }

  .brand-logo {
    height: 32px;
    max-width: 44vw;
  }

  .header-cta {
    max-width: 44vw;
    padding-inline: 9px;
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(1.88rem, 9vw, 2.12rem);
  }

  h2 {
    font-size: 1.78rem;
  }

  .primary-cta,
  .secondary-cta {
    padding-inline: 18px;
  }

  .hero {
    padding-top: calc(136px + var(--topbar-height));
  }

  .hero-points,
  .stats-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .hero-points li {
    min-height: 0;
  }

  .hero-video {
    border-radius: 14px;
  }

  .redemption-layout {
    gap: 20px;
    margin-top: 28px;
  }

  .redemption-visual {
    border-radius: 16px;
  }

  .redemption-visual figcaption {
    padding: 16px;
  }

  .redemption-visual figcaption strong {
    font-size: 1.05rem;
  }

  .redemption-option {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    border-radius: 14px;
    padding: 10px;
  }

  .redemption-option > img {
    border-radius: 10px;
  }

  .redemption-option h3 {
    font-size: 1rem;
  }

  .redemption-option p {
    font-size: 0.9rem;
  }

  .stat-card {
    min-height: 118px;
    padding: 18px;
  }

  .stat-card strong {
    font-size: 2.45rem;
  }

  .launch-countdown-values {
    gap: 8px;
  }

  .launch-countdown-values div {
    min-width: 62px;
  }

  .launch-countdown-values strong {
    font-size: 1.42rem;
  }

  .launch-countdown-values span {
    font-size: 0.62rem;
  }

  .category-visual {
    min-height: 330px;
  }

  .category-visual-caption {
    padding: 18px;
  }

  .category-visual-caption h3 {
    font-size: 1.55rem;
  }

  .subcategory-chips span {
    font-size: 0.7rem;
  }

  .category-wanted {
    gap: 16px;
    margin-top: 30px;
    padding-top: 24px;
  }

  .category-wanted-list {
    gap: 7px;
  }

  .category-wanted-list li {
    min-height: 30px;
    padding: 7px 10px;
    font-size: 0.78rem;
    line-height: 1.18;
  }

  .category-wanted-action button {
    min-height: 32px;
    padding: 8px 11px;
    font-size: 0.8rem;
  }

  th,
  td {
    font-size: 0.9rem;
  }

  tr {
    padding: 13px 14px;
  }

  .example-head strong {
    font-size: 1.35rem;
  }

  .commission-result > strong {
    font-size: 2rem;
  }

  .package-highlight {
    width: 100%;
  }

  .package-highlight em {
    font-size: clamp(3.1rem, 17vw, 4.5rem);
  }

  .package-highlight-copy {
    font-size: 1.1rem;
  }

  .package-card h3 {
    font-size: 1.72rem;
  }

  .package-card li {
    font-size: 0.92rem;
  }

  .ad-compare-column {
    padding: 18px;
  }

  .ad-comparison-visual figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    border-radius: 14px;
    font-size: 0.78rem;
  }

  .launch-image-panel img {
    height: 300px;
  }

  .partner-form {
    padding: 18px;
  }

  .checkbox-row {
    align-items: flex-start;
  }
}

@media (max-width: 1040px) {
  .site-header {
    display: flex;
    grid-template-columns: none;
  }

  .brand {
    grid-column: auto;
    grid-row: auto;
  }

  .header-meta {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    justify-self: auto;
    margin-left: 0;
  }

  .nav-links {
    grid-column: auto;
    grid-row: auto;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero-points {
    display: none;
  }

  .hero-top,
  .hero-text {
    display: contents;
  }

  .hero h1 {
    order: 1;
  }

  .hero-copy {
    order: 2;
  }

  .hero-video {
    order: 3;
    margin-top: 22px;
    border-radius: 18px;
  }

  .hero-actions {
    order: 4;
    margin-top: 20px;
  }

  .hero-benefits {
    order: 5;
    justify-self: center;
    width: min(100%, 380px);
    text-align: center;
  }

  .launch-countdown {
    justify-items: center;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .launch-countdown-values {
    justify-content: center;
  }

  .launch-countdown-values div {
    justify-items: center;
  }

  .category-backgrounds,
  .category-showcase {
    display: none;
  }

  .commission-examples-track {
    display: block;
    max-height: none;
    overflow: visible;
    padding: 0;
  }

  .commission-example-card {
    display: grid;
  }

  .commission-example-card + .commission-example-card {
    display: none;
  }

  .category-mobile-strip {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    margin-inline: -16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 16px 14px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .category-mobile-strip::-webkit-scrollbar {
    display: none;
  }

  .category-mobile-card {
    position: relative;
    flex: 0 0 min(62vw, 430px);
    height: clamp(360px, 58vw, 520px);
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 22px 58px rgba(13, 25, 62, 0.16);
    scroll-snap-align: start;
  }

  .category-mobile-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 12, 34, 0.02) 35%, rgba(8, 12, 34, 0.78) 100%);
    content: "";
    pointer-events: none;
  }

  .category-mobile-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .category-mobile-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    display: grid;
    gap: 11px;
    color: #ffffff;
  }

  .category-mobile-caption > span {
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(8, 12, 34, 0.36);
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
    font-weight: 900;
  }

  .category-mobile-caption h3 {
    max-width: 100%;
    color: #ffffff;
    font-size: clamp(1.35rem, 4vw, 2rem);
    line-height: 1;
    text-shadow: 0 18px 42px rgba(8, 12, 34, 0.42);
  }

  .category-mobile-chips {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    gap: 6px;
  }

  .category-mobile-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 6px 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1;
  }

  .category-mobile-chips span:last-child {
    background: rgba(28, 223, 115, 0.24);
  }

  .category-showcase {
    margin-top: 24px;
  }

  .category-visual {
    display: block;
    min-height: clamp(360px, 58vw, 520px);
    overflow: hidden;
    overflow-x: hidden;
    border-radius: 20px;
    padding: 0;
    background: #ffffff;
    box-shadow: 0 22px 58px rgba(13, 25, 62, 0.16);
    overscroll-behavior-inline: none;
    touch-action: pan-y;
  }

  .category-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    opacity: 0;
    object-fit: cover;
    transform: scale(1.04);
    box-shadow: none;
  }

  .category-visual img.is-active {
    opacity: 1;
    transform: scale(1);
  }

  .category-visual-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    gap: 11px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .category-visual-caption h3 {
    max-width: 100%;
    font-size: clamp(1.35rem, 4vw, 2rem);
  }

  .subcategory-chips {
    max-width: 100%;
    gap: 6px;
  }

  .subcategory-chips span {
    min-height: 26px;
    padding: 6px 8px;
    font-size: 0.72rem;
  }

  .redemption-visual {
    display: none;
  }

  .redemption-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ad-comparison-matrix {
    display: grid;
    gap: 14px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .ad-matrix-head {
    display: none;
  }

  .ad-matrix-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    border: 1px solid rgba(29, 46, 79, 0.1);
    border-radius: 18px;
    padding: 16px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(13, 25, 62, 0.07);
  }

  .ad-matrix-row + .ad-matrix-row {
    border-top: 1px solid rgba(29, 46, 79, 0.1);
  }

  .ad-matrix-row span {
    grid-column: 1 / -1;
    color: var(--ink);
    font-size: 0.78rem;
    line-height: 1.18;
  }

  .ad-matrix-row p {
    min-height: 100%;
    border: 1px solid rgba(29, 46, 79, 0.09);
    border-radius: 14px;
    padding: 14px;
    background: rgba(245, 250, 247, 0.76);
    color: rgba(29, 46, 79, 0.72);
    font-size: 0.94rem;
    font-weight: 560;
    line-height: 1.42;
  }

  .ad-matrix-row p::before,
  .ad-matrix-row p:first-of-type::before,
  .ad-matrix-row p:last-child::before {
    display: block;
    position: static;
    width: auto;
    height: auto;
    min-height: 0;
    margin-bottom: 7px;
    border-radius: 0;
    background: none;
    color: rgba(29, 46, 79, 0.58);
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .ad-matrix-row p:first-of-type::before {
    content: "Google Ads / Meta";
  }

  .ad-matrix-row p:last-child {
    border-color: rgba(21, 201, 167, 0.22);
    background: linear-gradient(135deg, rgba(232, 251, 243, 0.95), rgba(239, 245, 251, 0.88));
    color: var(--ink);
    font-weight: 760;
  }

  .ad-matrix-row p:last-child::before {
    color: #08745d;
    content: "my-waycard.com";
  }

  .ad-comparison-result {
    border: 1px solid rgba(21, 201, 167, 0.2);
    border-radius: 18px;
    padding: 16px;
    background: rgba(232, 251, 243, 0.72);
  }

  .ad-comparison-result strong {
    font-size: 1.08rem;
    line-height: 1.28;
  }
}

@media (max-width: 760px) {
  .category-mobile-card {
    flex-basis: min(78vw, 330px);
    height: 350px;
  }

  .ad-matrix-row {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .ad-matrix-row p {
    padding: 13px;
  }
}

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

  .category-backgrounds img {
    transition: none !important;
  }

  .bonus-number,
  .bonus-number::after,
  .handdrawn-arrow {
    animation: none !important;
  }

}

.legal-page .site-header {
  color: #012855 !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(1, 40, 85, 0.08) !important;
  box-shadow: 0 10px 28px rgba(1, 40, 85, 0.08) !important;
  backdrop-filter: blur(18px) !important;
}

.legal-page .header-menu,
.legal-page .nav-links,
.legal-page .nav-links a,
.legal-page .header-menu-toggle {
  color: #012855 !important;
}

.legal-page main > section,
.legal-page main > section:nth-of-type(n),
.legal-page .legal-hero {
  min-height: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.legal-page .legal-hero {
  width: min(100% - 32px, 1120px);
  margin: 0 auto 28px !important;
  padding: 0 !important;
}

.legal-page .legal-hero h1 {
  color: #ffffff !important;
}

.legal-page .legal-card {
  background: linear-gradient(180deg, rgba(10, 31, 74, 0.86), rgba(6, 19, 48, 0.78)) !important;
}

@media (max-width: 1040px) {
  .legal-page .header-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    border-top: 1px solid rgba(1, 40, 85, 0.08);
    backdrop-filter: blur(18px);
  }
}

body:not(.legal-page) .conditions-section {
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  padding-block: clamp(22px, 3.5vh, 38px);
}

body:not(.legal-page) .conditions-layout {
  align-content: center;
  gap: clamp(14px, 2.4vh, 24px);
  max-height: calc(100vh - clamp(44px, 7vh, 76px));
  overflow: visible;
}

body:not(.legal-page) .conditions-layout .section-heading {
  max-width: 820px;
}

body:not(.legal-page) .conditions-layout .section-heading h2 {
  font-size: clamp(1.75rem, 3.2vw, 3rem);
}

body:not(.legal-page) .commission-example {
  width: min(100%, 1060px);
}

body:not(.legal-page) .commission-example-card {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

body:not(.legal-page) .example-head {
  border: 0;
  border-radius: 0;
  padding: 0 4px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body:not(.legal-page) .example-flow div {
  border: 0;
  border-left: 3px solid rgba(21, 201, 167, 0.38);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body:not(.legal-page) .commission-result {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.48fr);
}

body:not(.legal-page) .commission-result > span:first-child,
body:not(.legal-page) .commission-result > strong,
body:not(.legal-page) .commission-result > em {
  grid-column: 1;
}

body:not(.legal-page) .commission-after {
  grid-column: 2;
  grid-row: 1 / span 3;
  width: auto;
}

@media (max-width: 980px) {
  body:not(.legal-page) .conditions-section {
    padding-block: 20px;
  }

  body:not(.legal-page) .conditions-layout {
    gap: 12px;
    max-height: calc(100vh - 40px);
  }

  body:not(.legal-page) .commission-example {
    padding: 14px;
  }

  body:not(.legal-page) .commission-example-nav {
    margin-bottom: 8px;
  }

  body:not(.legal-page) .example-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body:not(.legal-page) .example-flow div {
    min-height: 68px;
    padding: 9px 8px 9px 10px;
  }

  body:not(.legal-page) .commission-result {
    grid-template-columns: 1fr;
    padding: 40px 18px 18px;
  }

  body:not(.legal-page) .commission-after {
    grid-column: 1;
    grid-row: auto;
  }

  body:not(.legal-page) .conditions-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }
}

@media (max-width: 640px) {
  body:not(.legal-page) .conditions-section {
    padding-block: 16px;
  }

  body:not(.legal-page) .conditions-layout .section-heading {
    gap: 7px;
  }

  body:not(.legal-page) .conditions-layout .section-heading h2 {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  body:not(.legal-page) .commission-example {
    padding: 12px;
  }

  body:not(.legal-page) .commission-example-nav button {
    width: 32px;
    height: 32px;
  }

  body:not(.legal-page) .example-head strong {
    font-size: 1.05rem;
  }

  body:not(.legal-page) .example-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body:not(.legal-page) .example-flow span {
    font-size: 0.58rem;
  }

  body:not(.legal-page) .example-flow strong {
    font-size: 1.05rem;
  }

  body:not(.legal-page) .commission-result > strong {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  body:not(.legal-page) .commission-after {
    padding: 12px;
  }

  body:not(.legal-page) .conditions-points {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  body:not(.legal-page) .conditions-points li {
    min-height: 34px;
    padding-block: 6px;
  }

  body:not(.legal-page) .conditions-points span {
    display: none;
  }
}

body:not(.legal-page) .commission-example {
  min-height: clamp(460px, 58vh, 560px);
  overflow: visible;
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 252, 0.9)),
    #ffffff;
  box-shadow: 0 26px 80px rgba(3, 18, 36, 0.22);
}

body:not(.legal-page) .commission-examples-track {
  align-items: stretch;
  overflow-y: visible;
}

body:not(.legal-page) .commission-example-card {
  min-height: clamp(390px, 50vh, 486px);
  align-content: space-between;
}

body:not(.legal-page) .commission-example-nav button {
  animation: conditionsArrowNudge 2.8s ease-in-out infinite;
}

body:not(.legal-page) .commission-example-nav button:first-child {
  animation-name: conditionsArrowNudgeLeft;
}

body:not(.legal-page) .example-flow {
  border-block: 1px solid rgba(29, 46, 79, 0.1);
  padding-block: 10px;
}

body:not(.legal-page) .example-flow div {
  min-height: 0;
  border: 0;
  border-right: 1px solid rgba(29, 46, 79, 0.1);
  padding: 4px 16px 4px 0;
  background: transparent;
}

body:not(.legal-page) .example-flow div:last-child {
  border-right: 0;
}

body:not(.legal-page) .commission-result {
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.55fr);
  gap: 8px 26px;
  border: 0;
  border-radius: 16px;
  padding: clamp(20px, 2.4vw, 28px);
  overflow: visible;
  background:
    linear-gradient(135deg, rgba(21, 201, 167, 0.2), rgba(29, 46, 79, 0.06)),
    #1d2e4f;
}

body:not(.legal-page) .commission-result::before {
  display: none;
}

body:not(.legal-page) .commission-result > span:first-child {
  border: 0;
  border-radius: 0;
  padding: 0;
  color: #8ff8c4;
  background: transparent;
}

body:not(.legal-page) .commission-result > strong {
  font-size: clamp(2.15rem, 4.2vw, 3.35rem);
  animation: none;
}

body:not(.legal-page) .commission-result > em {
  border: 0;
  border-radius: 0;
  padding: 0;
  color: #ffffff;
  background: transparent;
  box-shadow: none;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  animation: none;
}

body:not(.legal-page) .commission-action-note {
  grid-column: 1;
  margin: 6px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.88rem, 1.35vw, 1rem);
  font-weight: 600;
  line-height: 1.4;
}

body:not(.legal-page) .commission-action-note strong {
  color: #8ff8c4;
  font-size: inherit;
}

body:not(.legal-page) .commission-after {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: stretch;
  justify-content: center;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  padding: 0 0 0 clamp(18px, 2.2vw, 26px);
  background: transparent;
  box-shadow: none;
}

body:not(.legal-page) .commission-after span {
  color: rgba(255, 255, 255, 0.72);
}

body:not(.legal-page) .commission-after strong {
  font-size: clamp(1.45rem, 2.7vw, 2.05rem);
}

body:not(.legal-page) .conditions-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 12px;
}

body:not(.legal-page) .conditions-points li {
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: 0 10px 0 32px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body:not(.legal-page) .conditions-points li::before {
  top: 4px;
  left: 0;
  width: 22px;
  height: 22px;
  transform: none;
}

body:not(.legal-page) .conditions-points span {
  font-size: 0.78rem;
}

body:not(.legal-page) .conditions-points strong {
  font-size: clamp(1.04rem, 1.35vw, 1.2rem);
}

@keyframes conditionsArrowNudge {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(3px);
  }
}

@keyframes conditionsArrowNudgeLeft {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-3px);
  }
}

@media (max-width: 980px) {
  body:not(.legal-page) .commission-result {
    grid-template-columns: 1fr;
  }

  body:not(.legal-page) .commission-after {
    grid-column: 1;
    grid-row: auto;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 12px 0 0;
  }
}

@media (max-width: 640px) {
  body:not(.legal-page) .example-flow {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  body:not(.legal-page) .example-flow div {
    border-right: 0;
    border-bottom: 1px solid rgba(29, 46, 79, 0.1);
    padding: 0 0 6px;
  }

  body:not(.legal-page) .example-flow div:last-child {
    border-bottom: 0;
  }

  body:not(.legal-page) .conditions-points span {
    display: inline;
  }
}
