:root {
  --navy-950: #06111f;
  --navy-900: #091827;
  --navy-800: #0e2236;
  --navy-700: #14304a;
  --ink: #eef5f7;
  --muted: #9fb1bd;
  --muted-strong: #c6d2d8;
  --gold: #d9aa45;
  --gold-bright: #f4cb6a;
  --teal: #47d5c5;
  --rose: #ff7272;
  --line: rgba(255, 255, 255, 0.11);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  font-family: Inter, Satoshi, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--navy-950);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(120deg, rgba(217, 170, 69, 0.12), transparent 32rem),
    radial-gradient(circle at 80% 8%, rgba(71, 213, 197, 0.14), transparent 25rem),
    var(--navy-950);
  color: var(--ink);
}

body.has-submitted main,
body.has-submitted .site-header,
body.has-submitted .site-footer {
  display: none;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(217, 170, 69, 0.08) 42.2% 42.7%, transparent 43%),
    linear-gradient(45deg, transparent 0 65%, rgba(71, 213, 197, 0.065) 65.2% 65.7%, transparent 66%);
  opacity: 0.72;
}

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 36px));
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(6, 17, 31, 0.78);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
  animation: dropIn 560ms ease both;
}

.site-header.is-scrolled {
  border-color: rgba(217, 170, 69, 0.28);
  background: rgba(6, 17, 31, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 186px;
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(217, 170, 69, 0.15));
  animation: markGlow 4s ease-in-out infinite;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 8px;
  color: var(--muted-strong);
  font-size: 0.94rem;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  align-items: center;
  padding: 78px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  position: relative;
  animation: riseIn 760ms 120ms ease both;
}

.hero-copy::before {
  position: absolute;
  top: -34px;
  left: -28px;
  width: 88px;
  height: 88px;
  border-top: 2px solid rgba(244, 203, 106, 0.55);
  border-left: 2px solid rgba(244, 203, 106, 0.55);
  content: "";
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 6vw, 6.75rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.04rem;
  letter-spacing: 0;
}

.hero-lede,
.payout-copy p,
.cta-copy p {
  max-width: 620px;
  color: var(--muted-strong);
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 28px;
}

.button {
  --button-x: 50%;
  --button-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at var(--button-x) var(--button-y), rgba(255, 255, 255, 0.34), transparent 28%);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.button::after {
  position: absolute;
  top: -140%;
  left: -35%;
  width: 34%;
  height: 380%;
  background: rgba(255, 255, 255, 0.2);
  content: "";
  transform: rotate(24deg) translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
}

.button:hover::after,
.button:focus-visible::after {
  transform: rotate(24deg) translateX(420%);
}

.button:active,
.button.is-pressing {
  transform: translateY(1px) scale(0.985);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #071320;
  box-shadow: 0 16px 42px rgba(217, 170, 69, 0.23);
  animation: buttonPulse 3.5s ease-in-out infinite;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-row span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.dashboard-wrap {
  position: relative;
  min-height: 550px;
  animation: riseIn 820ms 240ms ease both;
}

.dashboard-wrap::before {
  position: absolute;
  inset: 32px 20px 40px 10px;
  border: 1px solid rgba(217, 170, 69, 0.14);
  border-radius: 8px;
  content: "";
  transform: rotate(-4deg);
  animation: frameDrift 9s ease-in-out infinite;
}

.dashboard-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(9, 24, 39, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  transition: border-color 180ms ease, transform 180ms ease;
}

.offer-card:hover,
.payout-card:hover,
.offer-tile:hover,
.platform-item:hover,
.feature-list article:hover {
  border-color: rgba(244, 203, 106, 0.35);
  transform: translateY(-4px);
}

.main-dashboard {
  top: 42px;
  right: 0;
  width: min(100%, 520px);
  padding: 24px;
}

.dashboard-topbar,
.metric-grid,
.payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dashboard-topbar strong {
  display: block;
  margin-top: 6px;
  font-size: 2rem;
}

.tiny-label {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-pill {
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(71, 213, 197, 0.12);
  color: var(--teal);
  font-weight: 800;
}

.chart {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  height: 210px;
  align-items: end;
  margin: 28px 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    repeating-linear-gradient(to top, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 42px),
    rgba(0, 0, 0, 0.13);
}

.chart span {
  display: block;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(to top, var(--gold), var(--gold-bright));
  box-shadow: 0 8px 18px rgba(217, 170, 69, 0.18);
  transform-origin: bottom;
  animation: growBar 1200ms ease both, barBreathe 3.8s ease-in-out infinite;
}

.chart span:nth-child(2) {
  animation-delay: 120ms, 1500ms;
}

.chart span:nth-child(3) {
  animation-delay: 210ms, 1800ms;
}

.chart span:nth-child(4) {
  animation-delay: 300ms, 1200ms;
}

.chart span:nth-child(5) {
  animation-delay: 390ms, 1700ms;
}

.chart span:nth-child(6) {
  animation-delay: 480ms, 1400ms;
}

.chart span:nth-child(7) {
  animation-delay: 570ms, 1600ms;
}

.chart span:nth-child(8) {
  animation-delay: 660ms, 1300ms;
}

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

.metric-grid div,
.payment-panel,
.platform-item,
.lead-form,
.filter-card,
.feature-list article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.metric-grid div {
  padding: 14px;
}

.metric-grid strong {
  display: block;
  margin-top: 5px;
}

.offer-card {
  left: 0;
  bottom: 72px;
  width: 225px;
  padding: 18px;
}

.payout-card {
  right: 22px;
  bottom: 0;
  width: 245px;
  padding: 18px;
}

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

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.stat {
  padding: 30px;
  background: rgba(9, 24, 39, 0.86);
}

.stat strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: 2.45rem;
}

.stat span,
.feature-list p,
.platform-item p,
.filter-card p {
  color: var(--muted-strong);
  line-height: 1.6;
}

.split-section,
.payout-section,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
  padding: 105px 0 0;
}

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

.feature-list article {
  padding: 24px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.feature-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(217, 170, 69, 0.12);
  color: var(--gold-bright);
  font-weight: 900;
}

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

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold-bright);
  font-weight: 900;
}

.payment-panel {
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(71, 213, 197, 0.08), transparent 35%),
    rgba(255, 255, 255, 0.045);
}

.payment-row {
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-row:last-of-type {
  border-bottom: 0;
}

.payment-row span {
  color: var(--muted-strong);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
}

.payment-methods span {
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(217, 170, 69, 0.12);
  color: var(--gold-bright);
  font-weight: 800;
}

.featured-section {
  padding: 105px 0 0;
}

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

.offer-tile {
  position: relative;
  display: grid;
  min-height: 310px;
  align-content: start;
  gap: 16px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
  transition: border-color 180ms ease, transform 180ms ease;
}

.offer-tile::after {
  position: absolute;
  inset: auto -20% -44% 24%;
  height: 140px;
  border-radius: 50%;
  background: rgba(217, 170, 69, 0.12);
  content: "";
  filter: blur(14px);
}

.offer-tile.is-highlighted {
  border-color: rgba(244, 203, 106, 0.34);
  background:
    linear-gradient(155deg, rgba(217, 170, 69, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
}

.offer-tile-top,
.offer-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.offer-tile-top strong {
  color: var(--gold-bright);
  font-size: 1.2rem;
}

.vertical-tag,
.offer-meta span {
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.vertical-tag {
  background: rgba(71, 213, 197, 0.12);
  color: var(--teal);
  text-transform: uppercase;
}

.offer-tile h3,
.offer-tile p {
  position: relative;
  z-index: 1;
}

.offer-tile p {
  color: var(--muted-strong);
  line-height: 1.6;
}

.offer-meta {
  margin-top: auto;
  flex-wrap: wrap;
}

.offer-meta span {
  background: rgba(217, 170, 69, 0.12);
  color: var(--gold-bright);
}

.platform-section {
  padding: 105px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2,
.faq-intro h2 {
  position: relative;
}

.section-heading h2::after,
.faq-intro h2::after {
  display: block;
  width: 88px;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-bright), var(--teal));
  content: "";
}

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

.platform-item {
  min-height: 215px;
  padding: 24px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.protection-section {
  padding: 105px 0 0;
}

.protection-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: stretch;
}

.risk-panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 26px;
  border: 1px solid rgba(244, 203, 106, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(217, 170, 69, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.05);
}

.risk-panel::after {
  position: absolute;
  right: -90px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(71, 213, 197, 0.22);
  border-radius: 50%;
  content: "";
}

.risk-panel-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.risk-panel-top strong {
  color: var(--gold-bright);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
}

.risk-meter {
  position: relative;
  z-index: 1;
  height: 12px;
  margin: 28px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.risk-meter span {
  display: block;
  width: 98.6%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold-bright));
  transform-origin: left;
  animation: meterFill 1200ms ease both, meterGlow 3.6s ease-in-out infinite;
}

.risk-events {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.risk-events div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(6, 17, 31, 0.45);
}

.risk-events span {
  color: var(--muted-strong);
}

.risk-events strong {
  color: var(--teal);
}

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

.filter-card {
  padding: 24px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.filter-card:hover {
  border-color: rgba(71, 213, 197, 0.32);
  transform: translateY(-4px);
}

.filter-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(71, 213, 197, 0.12);
  color: var(--teal);
  font-weight: 900;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 44px;
  align-items: start;
  padding: 105px 0 0;
}

.faq-intro {
  position: sticky;
  top: 118px;
}

.faq-intro p:not(.eyebrow) {
  color: var(--muted-strong);
  font-size: 1.08rem;
  line-height: 1.65;
}

.faq-shell {
  position: relative;
  display: grid;
  gap: 18px;
}

.faq-orbit {
  position: relative;
  display: grid;
  min-height: 138px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(244, 203, 106, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 170, 69, 0.1), rgba(71, 213, 197, 0.06)),
    rgba(255, 255, 255, 0.045);
}

.faq-orbit::before,
.faq-orbit::after {
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.faq-orbit::before {
  animation: orbitTurn 14s linear infinite;
}

.faq-orbit::after {
  width: 122px;
  height: 122px;
  border-color: rgba(244, 203, 106, 0.22);
  animation: orbitTurn 9s linear infinite reverse;
}

.faq-orbit span {
  position: absolute;
  display: grid;
  min-width: 52px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(6, 17, 31, 0.72);
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
}

.faq-orbit span:nth-child(1) {
  top: 20px;
  left: 18%;
}

.faq-orbit span:nth-child(2) {
  top: 28px;
  right: 16%;
  color: var(--teal);
}

.faq-orbit span:nth-child(3) {
  bottom: 20px;
  left: 26%;
  color: var(--teal);
}

.faq-orbit span:nth-child(4) {
  right: 24%;
  bottom: 24px;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.faq-item:hover {
  border-color: rgba(244, 203, 106, 0.26);
  transform: translateY(-2px);
}

.faq-item[open] {
  border-color: rgba(71, 213, 197, 0.28);
  background:
    linear-gradient(135deg, rgba(71, 213, 197, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.055);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(244, 203, 106, 0.24);
  border-radius: 8px;
  color: var(--gold-bright);
  content: "+";
  transition: transform 180ms ease, background 180ms ease;
}

.faq-item[open] summary::after {
  background: rgba(244, 203, 106, 0.12);
  content: "-";
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted-strong);
  line-height: 1.65;
}

.cta-section {
  align-items: center;
  padding-bottom: 96px;
}

.lead-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(6, 17, 31, 0.74);
  color: var(--ink);
  outline: none;
}

.lead-form input::placeholder {
  color: rgba(198, 210, 216, 0.55);
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(244, 203, 106, 0.7);
  box-shadow: 0 0 0 4px rgba(217, 170, 69, 0.12);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.site-footer a {
  color: var(--muted-strong);
}

.thank-you-page {
  display: grid;
  min-height: 100vh;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  place-items: center;
  padding: 58px 0;
}

.thank-you-panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid rgba(244, 203, 106, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(217, 170, 69, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(9, 24, 39, 0.88);
  box-shadow: var(--shadow);
  animation: riseIn 640ms ease both;
}

.thank-you-panel::after {
  position: absolute;
  inset: auto -20% -38% 38%;
  height: 210px;
  border-radius: 50%;
  background: rgba(71, 213, 197, 0.12);
  content: "";
  filter: blur(18px);
}

.success-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: rgba(71, 213, 197, 0.13);
  color: var(--teal);
  font-size: 1.7rem;
  font-weight: 900;
}

.thank-you-panel h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.thank-you-panel p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: var(--muted-strong);
  font-size: 1.12rem;
  line-height: 1.65;
}

.thank-you-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.js [data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.js [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js [data-animate].is-visible .stat,
.js [data-animate].is-visible .feature-list article,
.js [data-animate].is-visible .offer-tile,
.js [data-animate].is-visible .platform-item,
.js [data-animate].is-visible .filter-card,
.js [data-animate].is-visible .faq-item,
.js [data-animate].is-visible .risk-panel {
  animation: riseIn 620ms ease both;
}

.js [data-animate].is-visible .stat:nth-child(2),
.js [data-animate].is-visible .feature-list article:nth-child(2),
.js [data-animate].is-visible .offer-tile:nth-child(2),
.js [data-animate].is-visible .platform-item:nth-child(2),
.js [data-animate].is-visible .filter-card:nth-child(2),
.js [data-animate].is-visible .faq-item:nth-child(2) {
  animation-delay: 90ms;
}

.js [data-animate].is-visible .stat:nth-child(3),
.js [data-animate].is-visible .feature-list article:nth-child(3),
.js [data-animate].is-visible .offer-tile:nth-child(3),
.js [data-animate].is-visible .platform-item:nth-child(3),
.js [data-animate].is-visible .filter-card:nth-child(3),
.js [data-animate].is-visible .faq-item:nth-child(3) {
  animation-delay: 180ms;
}

.js [data-animate].is-visible .offer-tile:nth-child(4),
.js [data-animate].is-visible .platform-item:nth-child(4),
.js [data-animate].is-visible .filter-card:nth-child(4),
.js [data-animate].is-visible .faq-item:nth-child(4) {
  animation-delay: 270ms;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes growBar {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes barBreathe {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.22) brightness(1.08);
  }
}

@keyframes frameDrift {
  0%,
  100% {
    transform: rotate(-4deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-2.5deg) translate3d(4px, -6px, 0);
  }
}

@keyframes markGlow {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(217, 170, 69, 0.24);
  }
  50% {
    box-shadow: 0 14px 42px rgba(244, 203, 106, 0.42);
  }
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: 0 16px 42px rgba(217, 170, 69, 0.2);
  }
  50% {
    box-shadow: 0 18px 54px rgba(217, 170, 69, 0.34);
  }
}

@keyframes meterFill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes meterGlow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.18);
  }
}

@keyframes orbitTurn {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 58px;
  }

  .hero-grid,
  .split-section,
  .payout-section,
  .protection-layout,
  .faq-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .dashboard-wrap {
    min-height: 500px;
  }

  .main-dashboard {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

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

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

  .risk-panel {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  .nav-toggle {
    display: block;
  }

  .brand-logo {
    width: 160px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(6, 17, 31, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-lede,
  .payout-copy p,
  .cta-copy p {
    font-size: 1.03rem;
  }

  .stat-band,
  .platform-grid,
  .offers-grid,
  .filter-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    padding: 24px;
  }

  .dashboard-wrap {
    min-height: 565px;
  }

  .main-dashboard {
    width: 100%;
    padding: 18px;
  }

  .offer-card,
  .payout-card {
    width: min(245px, 76%);
  }

  .offer-card {
    bottom: 82px;
  }

  .payout-card {
    right: 0;
  }

  .chart {
    gap: 7px;
    height: 180px;
    padding: 14px;
  }

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

  .split-section,
  .payout-section,
  .platform-section,
  .featured-section,
  .protection-section,
  .faq-section,
  .cta-section {
    padding-top: 76px;
  }

  .faq-orbit {
    min-height: 118px;
  }

  .cta-section {
    padding-bottom: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .js [data-animate] {
    opacity: 1;
    transform: none;
  }
}
