:root {
  --navy-950: #031126;
  --navy-900: #071b3b;
  --navy-800: #0a2850;
  --navy-700: #103d63;
  --cyan-500: #00dfe4;
  --cyan-400: #35f0ed;
  --mint-300: #9dfff3;
  --lime-300: #eaff55;
  --white: #ffffff;
  --ink: #0b1b2c;
  --muted: #5d6e7d;
  --surface: #f4fbfc;
  --border: rgba(8, 53, 78, .12);
  --shadow: 0 24px 70px rgba(5, 25, 52, .16);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--navy-950);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, summary { font: inherit; }
button { border: 0; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-light { background: var(--surface); color: var(--ink); }

.skip-link {
  position: fixed; left: 16px; top: -70px; z-index: 1000;
  padding: 12px 18px; border-radius: 10px; background: var(--white); color: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: rgba(3, 17, 38, .74);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.header-inner { height: 74px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.4rem; font-weight: 700; letter-spacing: -.02em; }
.brand img { width: 44px; height: 44px; border-radius: 12px; }

.button {
  display: inline-flex; justify-content: center; align-items: center; gap: 8px;
  min-height: 52px; padding: 0 26px; border-radius: 14px;
  color: var(--navy-950); background: linear-gradient(135deg, var(--mint-300), var(--cyan-500));
  font-weight: 800; box-shadow: 0 12px 36px rgba(0, 223, 228, .25);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(0, 223, 228, .36); filter: brightness(1.04); }
.button:focus-visible, .carousel-button:focus-visible, summary:focus-visible, a:focus-visible { outline: 3px solid var(--lime-300); outline-offset: 4px; }
.button-small { min-height: 42px; padding: 0 20px; border-radius: 12px; font-size: .92rem; }
.button-ghost { color: var(--white); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); box-shadow: none; }
.button-light { background: var(--white); color: var(--navy-900); box-shadow: none; }

.hero {
  min-height: 780px; padding: 150px 0 105px; position: relative; isolation: isolate; overflow: hidden;
  background:
    linear-gradient(115deg, rgba(3,17,38,.98) 0%, rgba(7,27,59,.96) 50%, rgba(0,116,133,.78) 100%),
    radial-gradient(circle at 75% 40%, rgba(0,223,228,.4), transparent 35%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -3; opacity: .25;
  background-image: linear-gradient(115deg, transparent 48%, rgba(255,255,255,.08) 49%, transparent 50%);
  background-size: 38px 38px;
}
.hero-grid { min-height: 560px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 18px; display: flex; align-items: center; gap: 10px; color: var(--mint-300); font-size: .78rem; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow span { width: 38px; height: 2px; background: linear-gradient(90deg, var(--cyan-500), var(--lime-300)); }
.eyebrow.dark { color: #087e86; }
.hero h1, .section-heading h2, .section-copy h2, .faq-intro h2, .final-cta h2 {
  margin: 0; font-weight: 850; letter-spacing: -.045em; line-height: 1.03;
}
.hero h1 { max-width: 780px; font-size: clamp(3rem, 6vw, 5.8rem); }
.hero-text { max-width: 690px; margin: 26px 0 0; color: rgba(255,255,255,.78); font-size: 1.1rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-points { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 30px; color: rgba(255,255,255,.74); font-size: .92rem; }
.hero-points span::before { content: "✓"; margin-right: 8px; color: var(--cyan-400); font-weight: 900; }
.hero-visual { position: relative; display: grid; place-items: center; min-height: 520px; }
.hero-card {
  width: min(430px, 86vw); aspect-ratio: 1; padding: 38px; border-radius: 50px;
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(0,223,228,.08));
  border: 1px solid rgba(255,255,255,.22); box-shadow: var(--shadow); backdrop-filter: blur(20px);
  transform: rotate(3deg); position: relative;
}
.hero-card::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(157,255,243,.3); border-radius: 38px; pointer-events: none; }
.hero-card > picture img { border-radius: 36px; width: 100%; height: auto; object-fit: contain; }
.logo-orbit { position: absolute; width: 540px; height: 540px; border-radius: 50%; border: 1px solid rgba(157,255,243,.18); box-shadow: 0 0 100px rgba(0,223,228,.22) inset; }
.floating-stat {
  position: absolute; z-index: 4; display: grid; padding: 14px 18px; min-width: 175px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 16px; background: rgba(3,17,38,.82); backdrop-filter: blur(16px); box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.floating-stat strong { color: var(--mint-300); font-size: 1.22rem; }
.floating-stat span { color: rgba(255,255,255,.68); font-size: .76rem; }
.stat-one { left: -56px; top: 68px; }
.stat-two { right: -50px; bottom: 70px; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(18px); z-index: -2; opacity: .65; }
.hero-glow-one { width: 420px; height: 420px; right: -130px; top: 70px; background: rgba(0,223,228,.24); }
.hero-glow-two { width: 330px; height: 330px; left: 36%; bottom: -180px; background: rgba(53,240,237,.2); }
.hero-wave { position: absolute; inset: auto -5% -110px; height: 210px; border-radius: 50% 50% 0 0; background: var(--surface); transform: rotate(-2deg); }

.split-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: center; }
.flyer-frame { padding: 14px; border-radius: var(--radius-xl); background: linear-gradient(145deg, var(--white), #d7ffff); box-shadow: var(--shadow); transform: rotate(-1deg); }
.flyer-frame img { border-radius: 22px; width: 100%; }
.section-copy h2, .section-heading h2, .faq-intro h2 { font-size: clamp(2.2rem, 4vw, 4.1rem); }
.section-copy > p { color: var(--muted); font-size: 1.04rem; }
.earnings-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 30px 0; }
.earning-card { padding: 18px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 10px 28px rgba(5,25,52,.05); }
.earning-card span { display: block; color: var(--muted); font-size: .82rem; }
.earning-card strong { display: block; margin-top: 3px; color: var(--navy-900); font-size: 1.3rem; }
.earning-card.featured { color: var(--white); background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); border-color: transparent; }
.earning-card.featured span { color: var(--mint-300); }
.earning-card.featured strong { color: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: #087e86; font-weight: 850; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.opportunities { background: linear-gradient(160deg, var(--navy-950), var(--navy-800)); }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading p:last-child { color: rgba(255,255,255,.68); }
.dark-heading p:last-child { color: var(--muted); }
.carousel { position: relative; max-width: 650px; margin-inline: auto; }
.carousel-viewport { overflow: hidden; border-radius: 30px; box-shadow: 0 30px 80px rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.14); background: var(--navy-900); }
.carousel-track { display: flex; transition: transform .6s cubic-bezier(.2,.75,.25,1); will-change: transform; }
.slide { min-width: 100%; }
.slide img { width: 100%; height: auto; aspect-ratio: 1114 / 1280; object-fit: cover; }
.carousel-button {
  position: absolute; top: 50%; z-index: 3; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; color: var(--navy-950); background: var(--white); font-size: 2rem; line-height: 1; cursor: pointer; box-shadow: 0 14px 32px rgba(0,0,0,.2); transform: translateY(-50%); transition: transform .2s ease;
}
.carousel-button:hover { transform: translateY(-50%) scale(1.06); }
.carousel-prev { left: -76px; }
.carousel-next { right: -76px; }
.carousel-dots { display: flex; justify-content: center; gap: 9px; margin-top: 24px; }
.carousel-dots button { width: 9px; height: 9px; padding: 0; border-radius: 999px; background: rgba(255,255,255,.35); cursor: pointer; transition: width .25s ease, background .25s ease; }
.carousel-dots button[aria-selected="true"] { width: 32px; background: var(--cyan-400); }

.outstanding::before { content: ""; position: absolute; width: 470px; height: 470px; right: -210px; top: -140px; border-radius: 50%; background: rgba(0,223,228,.12); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card { padding: 28px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--border); box-shadow: 0 16px 44px rgba(5,25,52,.07); transition: transform .25s ease, box-shadow .25s ease; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 22px 52px rgba(5,25,52,.12); }
.benefit-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: var(--navy-900); background: linear-gradient(135deg, var(--mint-300), var(--cyan-500)); font-weight: 900; }
.benefit-card h3 { margin: 18px 0 6px; color: var(--navy-900); font-size: 1.12rem; }
.benefit-card p { margin: 0 0 20px; color: var(--muted); font-size: .9rem; }
.benefit-card strong { color: #087e86; font-size: 1.35rem; }
.benefit-card strong small { font-size: .7rem; color: var(--muted); font-weight: 700; }
.benefit-card.wide { grid-column: span 3; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; }
.benefit-card.wide h3 { margin: 0 0 4px; }
.benefit-card.wide p { margin: 0; }

.how-it-works { background: var(--navy-950); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: steps; }
.step { min-height: 260px; padding: 28px; border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(0,223,228,.045)); border: 1px solid rgba(255,255,255,.11); }
.step-number { display: block; margin-bottom: 34px; color: var(--cyan-400); font-size: 1.02rem; font-weight: 900; letter-spacing: .12em; }
.step h3 { margin: 0 0 10px; font-size: 1.2rem; }
.step p { margin: 0; color: rgba(255,255,255,.64); font-size: .92rem; }

.faq-section { background: linear-gradient(140deg, var(--navy-900), #07546a); }
.faq-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.faq-intro p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.faq-intro .button { margin-top: 24px; }
.faq-list { display: grid; gap: 12px; }
details { border: 1px solid rgba(255,255,255,.15); border-radius: 16px; background: rgba(3,17,38,.32); overflow: hidden; }
summary { position: relative; padding: 20px 56px 20px 22px; cursor: pointer; list-style: none; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); color: var(--cyan-400); font-size: 1.5rem; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 22px 22px; color: rgba(255,255,255,.68); }

.final-cta { padding: 62px 0; background: linear-gradient(110deg, var(--cyan-500), var(--mint-300)); color: var(--navy-950); }
.final-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 34px; }
.final-cta .eyebrow { color: var(--navy-800); }
.final-cta h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
.final-cta p:not(.eyebrow) { margin: 10px 0 0; color: rgba(3,17,38,.72); }

.site-footer { padding: 66px 0 24px; background: #020c1b; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: start; }
.footer-brand { margin-bottom: 12px; }
.footer-grid > div > p { max-width: 430px; color: rgba(255,255,255,.55); }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(120px, 1fr)); gap: 12px 30px; }
.footer-links a { color: rgba(255,255,255,.7); }
.footer-links a:hover { color: var(--cyan-400); }
.footer-bottom { display: grid; grid-template-columns: auto 1fr; gap: 40px; margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.45); font-size: .78rem; }
.footer-bottom p { margin: 0; }
.disclaimer { text-align: right; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .hero { min-height: auto; }
  .hero-grid, .split-layout, .faq-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 40px; }
  .hero-copy { text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-visual { min-height: 470px; }
  .split-layout { gap: 54px; }
  .flyer-frame { width: min(650px, 100%); margin-inline: auto; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-card.wide { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { gap: 38px; }
  .faq-intro { max-width: 680px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .header-inner { height: 66px; }
  .brand span { font-size: 1.16rem; }
  .brand img { width: 40px; height: 40px; }
  .hero { padding: 118px 0 84px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4.3rem); }
  .hero-text { font-size: 1rem; }
  .hero-visual { min-height: 390px; }
  .hero-card { padding: 25px; border-radius: 36px; }
  .hero-card::after { inset: 12px; border-radius: 28px; }
  .logo-orbit { width: 390px; height: 390px; }
  .floating-stat { min-width: 146px; padding: 11px 14px; }
  .stat-one { left: -4px; top: 18px; }
  .stat-two { right: -4px; bottom: 20px; }
  .earnings-grid { grid-template-columns: 1fr 1fr; }
  .carousel-button { width: 44px; height: 44px; }
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card.wide { grid-column: span 1; grid-template-columns: auto 1fr; }
  .benefit-card.wide strong { grid-column: 2; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 220px; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid, .footer-bottom { grid-template-columns: 1fr; }
  .disclaimer { text-align: left; }
}

@media (max-width: 480px) {
  .button-small { min-height: 40px; padding-inline: 15px; }
  .hero-actions .button { width: 100%; }
  .hero-points { gap: 10px 18px; }
  .hero-points span { font-size: .82rem; }
  .earnings-grid { grid-template-columns: 1fr; }
  .section-heading h2, .section-copy h2, .faq-intro h2 { font-size: 2.25rem; }
  .carousel-viewport { border-radius: 20px; }
  .benefit-card.wide { grid-template-columns: 1fr; }
  .benefit-card.wide strong { grid-column: 1; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
