:root {
  --bg: #070a12;
  --bg-2: #0b1020;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-solid: #0f1626;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #eef2fb;
  --muted: #9aa6bd;
  --orange: #f7931a;
  --orange-soft: #ffc06b;
  --blue: #4d9fff;
  --violet: #9a7bff;
  --green: #34d399;
  --grad: linear-gradient(120deg, #f7931a, #ff7a45 45%, #9a7bff);
  --grad-blue: linear-gradient(120deg, #4d9fff, #9a7bff);
  --radius: 16px;
  --radius-lg: 22px;
  --font: "SF Pro Display", Inter, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
* { scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.12) transparent; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { margin: 0; line-height: 1.1; letter-spacing: -0.02em; }
p { margin: 0; }

.section {
  position: relative;
  width: min(1340px, 92vw);
  margin: 0 auto;
  padding: 96px 0;
}

.label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid rgba(247, 147, 26, 0.3);
  border-radius: 999px;
  background: rgba(247, 147, 26, 0.08);
  color: var(--orange-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-head.align-left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); }
.section-head > p { margin-top: 16px; color: var(--muted); font-size: 17px; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(1340px, 92vw);
  margin: 0 auto;
  padding: 16px 0;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 -50vw;
  background: rgba(7, 10, 18, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  z-index: -1;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 21px; letter-spacing: -0.02em; }
.brand > span:last-child span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  border: 9px solid #fff; border-right-color: var(--orange);
  display: grid; place-items: center;
  box-shadow: 0 0 24px rgba(247, 147, 26, 0.4);
}
.brand-mark span { width: 12px; height: 12px; border-radius: 50%; background: var(--bg); }

.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; flex-wrap: nowrap; }
.nav a {
  padding: 9px 11px; border-radius: 10px; color: var(--muted); white-space: nowrap;
  font-size: 14px; font-weight: 600; transition: color 160ms ease, background 160ms ease;
}
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav .ghost-link { color: var(--text); }
.nav .signin {
  margin-left: 6px; padding: 10px 18px; border-radius: 999px;
  background: var(--grad); color: #160d02; font-weight: 800;
  box-shadow: 0 10px 28px rgba(247, 147, 26, 0.32);
}
.nav .signin:hover { transform: translateY(-1px); }

.menu-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; padding: 0;
  flex-direction: column; justify-content: center; gap: 5px;
  border: 1px solid var(--border); border-radius: 12px; background: var(--panel); cursor: pointer;
}
.menu-toggle span { width: 20px; height: 2px; margin: 0 auto; background: var(--text); border-radius: 2px; transition: transform 200ms ease, opacity 200ms ease; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1340px, 92vw);
  margin: 0 auto;
  padding: 80px 0 40px;
}
/* Background bleeds to the full viewport width so the hero isn't a boxed panel. */
.hero-bg {
  position: absolute;
  top: -6%;
  right: calc(50% - 50vw);
  width: min(64vw, 900px);
  opacity: 0.55;
  filter: saturate(1.1);
  -webkit-mask-image: radial-gradient(circle at 68% 32%, #000 42%, transparent 74%);
  mask-image: radial-gradient(circle at 68% 32%, #000 42%, transparent 74%);
  pointer-events: none;
  animation: float 9s ease-in-out infinite;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  background:
    radial-gradient(900px 540px at 22% 22%, rgba(247, 147, 26, 0.16), transparent 60%),
    radial-gradient(820px 600px at 82% 78%, rgba(77, 159, 255, 0.15), transparent 62%);
  pointer-events: none;
  z-index: -1;
}
.hero-content { position: relative; max-width: 760px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 22px; padding: 8px 16px;
  border: 1px solid var(--border-strong); border-radius: 999px;
  background: rgba(255, 255, 255, 0.04); color: #d6deee; font-size: 14px; font-weight: 600;
}
.eyebrow span { filter: drop-shadow(0 0 6px rgba(247, 147, 26, 0.8)); }
.hero h1 {
  font-size: clamp(38px, 6.4vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero h1::after {
  content: "";
  display: block;
  width: 120px; height: 5px; margin-top: 24px;
  border-radius: 999px; background: var(--grad);
  box-shadow: 0 0 24px rgba(247, 147, 26, 0.5);
}
.hero-copy { margin-top: 22px; max-width: 540px; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.primary-btn, .secondary-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 30px; border-radius: 999px;
  font-size: 16px; font-weight: 800; letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.primary-btn { background: var(--grad); color: #160d02; box-shadow: 0 16px 40px rgba(247, 147, 26, 0.36); }
.primary-btn:hover { transform: translateY(-2px); box-shadow: 0 22px 54px rgba(247, 147, 26, 0.5); }
.secondary-btn { border: 1px solid var(--border-strong); background: rgba(255, 255, 255, 0.04); color: var(--text); }
.secondary-btn:hover { transform: translateY(-2px); border-color: rgba(247, 147, 26, 0.5); background: rgba(247, 147, 26, 0.08); }

.press-strip {
  position: relative;
  display: flex; flex-wrap: wrap; align-items: center; gap: 36px;
  margin-top: 64px; padding-top: 30px;
  border-top: 1px solid var(--border);
}
.press-strip span { color: rgba(255, 255, 255, 0.42); font-size: 18px; font-weight: 800; letter-spacing: 0.02em; transition: color 200ms ease; }
.press-strip span:hover { color: rgba(255, 255, 255, 0.85); }

/* ---------------- Stats / framework ---------------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease;
}
.stat-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad); opacity: 0.85;
}
.stat-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.stat-card h3 { font-size: 14px; font-weight: 600; color: var(--muted); }
.stat-card strong {
  display: block; margin: 14px 0 10px; font-size: 40px; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-card p { color: var(--muted); font-size: 14px; }

.visual-band {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: 56px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--panel);
}
.visual-band img { height: 100%; min-height: 320px; object-fit: cover; }
.visual-band > div { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.visual-band h3 { font-size: 26px; margin-bottom: 14px; }
.visual-band p { color: var(--muted); }

/* ---------------- Services / choice ---------------- */
.image-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 44px; }
.image-pair img { width: 100%; height: 280px; object-fit: cover; border: 1px solid var(--border); border-radius: var(--radius); }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-grid article {
  padding: 30px 24px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--panel); transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.service-grid article:hover { transform: translateY(-4px); border-color: rgba(247, 147, 26, 0.4); background: rgba(247, 147, 26, 0.05); }
.service-grid .icon {
  display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 20px;
  border-radius: 14px; background: var(--grad); color: #160d02; font-size: 22px; font-weight: 800;
  box-shadow: 0 10px 26px rgba(247, 147, 26, 0.28);
}
.service-grid h3 { font-size: 18px; margin-bottom: 10px; }
.service-grid p { color: var(--muted); font-size: 14.5px; }

/* ---------------- Steps (process / referral) ---------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps article {
  position: relative; padding: 34px 28px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--panel); transition: transform 220ms ease, border-color 220ms ease;
}
.steps article:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.steps span {
  display: inline-block; font-size: 42px; font-weight: 800; line-height: 1;
  background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.steps h3 { font-size: 20px; margin: 18px 0 10px; }
.steps p { color: var(--muted); }

/* ---------------- Plans ---------------- */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan-card {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 30px 26px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--panel);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.plan-card:hover { transform: translateY(-5px); border-color: rgba(247, 147, 26, 0.55); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4); }
.plan-card.featured {
  border-color: transparent;
  background:
    linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
    var(--grad) border-box;
  box-shadow: 0 24px 60px rgba(247, 147, 26, 0.18);
}
.plan-tag {
  margin-bottom: 18px; padding: 6px 13px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.06); color: var(--orange-soft);
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.plan-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 18px; min-height: 52px; }
.plan-card .price {
  font-size: 40px; font-weight: 800; margin-bottom: 20px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.plan-specs { list-style: none; width: 100%; margin: 0 0 24px; padding: 0; display: grid; gap: 11px; }
.plan-specs li {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding-bottom: 11px; border-bottom: 1px solid var(--border); font-size: 14px;
}
.plan-specs li:last-child { padding-bottom: 0; border-bottom: 0; }
.plan-specs span { color: var(--muted); }
.plan-specs b { color: var(--text); font-weight: 700; text-align: right; }
.plan-card.featured .plan-specs b { color: var(--orange-soft); }
.plan-card a {
  margin-top: auto; width: 100%; min-height: 50px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; background: rgba(255, 255, 255, 0.06); color: var(--text);
  font-weight: 800; transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.plan-card a:hover { background: var(--grad); color: #160d02; transform: translateY(-1px); }
.plan-card.featured a { background: var(--grad); color: #160d02; }

/* ---------------- Payout / account preview ---------------- */
.payout-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.payout-copy h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 18px; }
.payout-copy > p { color: var(--muted); font-size: 16.5px; margin-bottom: 28px; }
.payout-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.payout-preview {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  overflow: hidden; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.preview-top { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--border); }
.preview-top span { font-weight: 700; }
.preview-top small { color: var(--green); font-weight: 700; }
.preview-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.preview-stats > div { padding: 20px 22px; background: var(--bg-2); }
.preview-stats span { display: block; color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.preview-stats strong { font-size: 22px; font-weight: 800; }
.preview-table { padding: 14px 22px 22px; }
.preview-table > div { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.preview-table > div:first-child { color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.preview-table > div:last-child { border-bottom: 0; }

/* ---------------- Insights ---------------- */
.article-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.article-grid article {
  display: flex; flex-direction: column; padding: 26px 22px;
  border: 1px solid var(--border); border-radius: var(--radius); background: var(--panel);
  transition: transform 220ms ease, border-color 220ms ease;
}
.article-grid article:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.article-grid p { color: var(--orange-soft); font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 14px; }
.article-grid h3 { font-size: 16px; font-weight: 600; line-height: 1.35; flex: 1; }
.article-grid a { margin-top: 18px; color: var(--blue); font-weight: 700; font-size: 14px; }

/* ---------------- FAQ ---------------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-list details {
  border: 1px solid var(--border); border-radius: 14px; background: var(--panel);
  padding: 4px 22px; transition: border-color 200ms ease, background 200ms ease;
}
.faq-list details[open] { border-color: rgba(247, 147, 26, 0.4); background: rgba(247, 147, 26, 0.04); }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-weight: 700; font-size: 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 24px; color: var(--orange); font-weight: 400; transition: transform 200ms ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { padding: 0 0 20px; color: var(--muted); }

/* ---------------- CTA ---------------- */
.cta {
  position: relative;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 28px;
  width: min(1340px, 92vw); margin: 40px auto 96px; padding: 52px;
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  background:
    radial-gradient(600px 300px at 15% 10%, rgba(247, 147, 26, 0.18), transparent 60%),
    radial-gradient(500px 320px at 90% 90%, rgba(77, 159, 255, 0.16), transparent 60%),
    var(--bg-2);
  overflow: hidden;
}
.cta h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 10px; }
.cta p { color: var(--muted); }

/* ---------------- Footer ---------------- */
footer {
  display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px;
  width: min(1340px, 92vw); margin: 0 auto; padding: 64px 0 56px;
  border-top: 1px solid var(--border);
}
.footer-brand p { margin-top: 16px; color: var(--muted); max-width: 320px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-grid h3 { font-size: 14px; margin-bottom: 16px; color: var(--text); }
.footer-grid a { display: block; padding: 6px 0; color: var(--muted); font-size: 14px; transition: color 160ms ease; }
.footer-grid a:hover { color: var(--orange-soft); }

/* ---------------- Reveal animations ---------------- */
.reveal, .stat-card, .service-grid article, .steps article, .plan-card, .article-grid article {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}
.in-view { opacity: 1 !important; transform: none !important; }
.stats-grid .stat-card:nth-child(2), .service-grid article:nth-child(2), .steps article:nth-child(2), .plan-grid .plan-card:nth-child(2) { transition-delay: 80ms; }
.stats-grid .stat-card:nth-child(3), .service-grid article:nth-child(3), .steps article:nth-child(3), .plan-grid .plan-card:nth-child(3) { transition-delay: 160ms; }
.stats-grid .stat-card:nth-child(4), .service-grid article:nth-child(4) { transition-delay: 240ms; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  .reveal, .stat-card, .service-grid article, .steps article, .plan-card, .article-grid article { opacity: 1; transform: none; transition: none; }
}

/* ---------------- Responsive ---------------- */
/* Collapse the nav to a menu before it would get cramped. */
@media (max-width: 1140px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed; inset: 76px 4vw auto; flex-direction: column; align-items: stretch; gap: 4px;
    max-width: 340px; margin-left: auto;
    padding: 14px; border: 1px solid var(--border); border-radius: 18px;
    background: rgba(10, 14, 24, 0.97); backdrop-filter: blur(20px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    transform: translateY(-14px); opacity: 0; pointer-events: none; transition: opacity 200ms ease, transform 200ms ease;
  }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { white-space: normal; }
  .nav .signin { margin-left: 0; text-align: center; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 1000px) {
  .stats-grid, .service-grid, .article-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .visual-band, .payout-section, .image-pair { grid-template-columns: 1fr; }
  .visual-band img { min-height: 240px; }
  footer { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding: 60px 0 30px; }
  .hero-bg { width: 110%; inset: -4% -30% auto auto; opacity: 0.32; }
  .stats-grid, .service-grid, .article-grid, .steps, .plan-grid, .footer-grid, .preview-stats { grid-template-columns: 1fr; }
  .cta { padding: 36px 24px; }
}
