/* ─── SHARED LANDING PAGE STYLES ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }
html, body { overscroll-behavior-x: none; }

:root {
  --bg:      #07070d;
  --bg2:     #0d0d18;
  --gold:    #d4af37;
  --gold-l:  #f0cc55;
  --magenta: #fc0a7e;
  --indigo:  #818cf8;
  --white:   #ffffff;
  --muted:   #8888aa;
  --card-bg: rgba(255,255,255,0.04);
  --card-bd: rgba(255,255,255,0.08);
  --nav-h:   72px;
  --radius:  16px;
  --ease:    cubic-bezier(0.4,0,0.2,1);
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--magenta); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; }

/* ── NAV ─────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-h); z-index: 100;
  background: rgba(7,7,13,0.85);
  backdrop-filter: saturate(150%) blur(22px);
  -webkit-backdrop-filter: saturate(150%) blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo   { display: flex; align-items: center; }
.nav-logo img { height: 32px; width: auto; }
.nav-links  { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color 0.3s var(--ease); }
.nav-links a:hover { color: var(--white); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px;
  background: linear-gradient(135deg, var(--gold), var(--magenta));
  color: #fff; font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 0.88rem;
  border-radius: 100px; border: none; cursor: pointer;
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(252,10,126,0.3); }
.btn-primary--lg   { padding: 14px 36px; font-size: 1rem; border-radius: 12px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px;
  background: transparent; color: var(--white);
  font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 0.88rem;
  border-radius: 100px; border: 1px solid rgba(255,255,255,0.2); cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(212,175,55,0.08); transform: translateY(-2px); }
.btn-outline--lg   { padding: 14px 36px; font-size: 1rem; border-radius: 12px; }

/* ── HERO ────────────────────────────────────────────────────── */
.lp-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 0;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(90px);
  animation: float 14s ease-in-out infinite; pointer-events: none;
}
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-24px) scale(1.04); }
}

.hero-content { position: relative; z-index: 2; padding-top: var(--nav-h); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.25);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.8rem; font-weight: 600; color: var(--gold); letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; display: block; animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.7); } }

.lp-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--gold-l) 0%, var(--gold) 40%, var(--magenta) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lp-sub {
  font-size: clamp(1rem, 2vw, 1.15rem); color: var(--muted);
  max-width: 580px; line-height: 1.75; margin-bottom: 40px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 60px; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 48px; }
.stat-num   { font-family:'Syne',sans-serif; font-size:2rem; font-weight:800; color:var(--gold); line-height:1; margin-bottom:4px; }
.stat-lbl   { font-size:0.85rem; color:var(--muted); font-weight:500; }

/* ── SECTION BASICS ──────────────────────────────────────────── */
section { padding: 100px 0; }
section.bg2 { background: var(--bg2); }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-label::before { content:''; width:28px; height:1px; background:var(--gold); display:block; }
.section-label--indigo { color: var(--indigo); }
.section-label--indigo::before { background: var(--indigo); }

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 18px;
}
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 560px; line-height: 1.7; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ── CARDS ───────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 56px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 56px; }

.card {
  background: var(--card-bg); border: 1px solid var(--card-bd);
  border-radius: var(--radius); padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-4px); }
.card--mag:hover  { border-color: rgba(252,10,126,0.3); }
.card--indigo:hover { border-color: rgba(129,140,248,0.35); }

.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 20px;
}
.card-icon--gold   { background: rgba(212,175,55,0.1);  color: var(--gold); }
.card-icon--mag    { background: rgba(252,10,126,0.1);  color: var(--magenta); }
.card-icon--indigo { background: rgba(129,140,248,0.1); color: var(--indigo); }

.card h3 { font-family:'Syne',sans-serif; font-size:1.15rem; font-weight:700; margin-bottom:10px; }
.card p  { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* ── PROCESS ─────────────────────────────────────────────────── */
.process-row { display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin-top:56px; position:relative; }
.process-row::before {
  content:''; position:absolute; top:36px;
  left:calc(12.5% + 12px); right:calc(12.5% + 12px);
  height:1px; background:linear-gradient(90deg,var(--gold),var(--magenta));
}
.process-step { display:flex; flex-direction:column; align-items:center; text-align:center; padding:0 16px; position:relative; z-index:1; }
.step-circle {
  width:72px; height:72px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:'Syne',sans-serif; font-size:1.2rem; font-weight:800;
  margin-bottom:24px; background:var(--bg2); border:1px solid rgba(255,255,255,0.1);
}
.step-circle--1 { background:var(--gold); color:#000; border-color:var(--gold); }
.step-circle--2 { background:rgba(212,175,55,0.15); color:var(--gold); border-color:rgba(212,175,55,0.4); }
.step-circle--3 { background:rgba(252,10,126,0.15); color:var(--magenta); border-color:rgba(252,10,126,0.4); }
.step-circle--4 { background:var(--magenta); color:#fff; border-color:var(--magenta); }
.process-step h3 { font-family:'Syne',sans-serif; font-size:1rem; font-weight:700; margin-bottom:10px; }
.process-step p  { color:var(--muted); font-size:0.88rem; line-height:1.6; }

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(252,10,126,0.08));
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px; padding: 64px 48px; text-align: center;
  margin-top: 56px;
}
.cta-banner h2 { font-family:'Syne',sans-serif; font-size:clamp(1.6rem,3.5vw,2.4rem); font-weight:800; margin-bottom:16px; }
.cta-banner p  { color:var(--muted); font-size:1.05rem; margin-bottom:36px; max-width:520px; margin-left:auto; margin-right:auto; }
.cta-btns      { display:flex; flex-wrap:wrap; gap:16px; justify-content:center; }

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--muted);
  padding: calc(var(--nav-h) + 24px) 0 0;
  margin-bottom: 40px;
}
.breadcrumb a { color: var(--muted); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--white); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq { margin-top: 56px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-bg); border: 1px solid var(--card-bd);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; color: var(--white);
  font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 600;
  padding: 22px 28px; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}
.faq-a p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; padding-bottom: 22px; }
.faq-item.open .faq-a { max-height: 400px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: #050508; border-top: 1px solid rgba(255,255,255,0.07);
  padding: 48px 0 36px; margin-top: 0;
}
.footer-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.footer-inner img { height: 26px; opacity: 0.8; }
.footer-links { display:flex; gap:24px; flex-wrap:wrap; }
.footer-links a { color:var(--muted); font-size:0.85rem; transition:color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color:var(--muted); font-size:0.85rem; }

/* ── REVEAL ──────────────────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.d1 { transition-delay:0.1s; } .d2 { transition-delay:0.2s; }
.d3 { transition-delay:0.3s; } .d4 { transition-delay:0.4s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .process-row { grid-template-columns:1fr 1fr; gap:40px; }
  .process-row::before { display:none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 72px 0; }
  .nav-links, .nav-desktop-cta { display: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; justify-content: center; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .stat-num { font-size: 1.4rem; }
  .stat-lbl { font-size: 0.72rem; }
  .card { padding: 28px 20px; }
  .cta-banner { padding: 32px 20px; }
  .lp-h1 { font-size: 2rem; }
}
