/* ── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #f5f0eb;
  --bg-dark:   #0f0c08;
  --card:      #ffffff;
  --card-2:    #faf6f1;
  --accent:    #ff6b2b;
  --accent-2:  #ffd700;
  --black:     #0f0c08;
  --white:     #f5f0eb;
  --muted:     #8a7a6a;
  --border:    rgba(15,12,8,0.1);
  --font-head: 'Syne', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'Inter', sans-serif;
  --max-w:     1200px;
  --pad:       clamp(24px, 5vw, 80px);
  --section-py:clamp(80px, 12vw, 140px);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

/* ── NAV ──────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(245,240,235,0.94);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo {
  font-family: var(--font-mono); font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.06em; color: var(--black); flex-shrink: 0;
}
.nav-logo .dot { color: var(--accent); }
.nav-links { display: flex; gap: 28px; }
.nav-link {
  font-size: 0.85rem; font-weight: 500; color: var(--muted);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--black); }
.nav-cta {
  font-size: 0.85rem; font-weight: 700;
  background: var(--black); color: var(--white);
  padding: 10px 22px; border-radius: 100px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--accent); }
.arrow { display: inline-block; transition: transform 0.2s; }
a:hover .arrow { transform: translateX(3px); }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--bg-dark);
}
.hero-video-wrap { position: absolute; inset: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,12,8,0.88) 0%, rgba(15,12,8,0.5) 60%, rgba(15,12,8,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  padding: 120px var(--pad) 80px;
}
.hero-eyebrow {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(3.6rem, 9vw, 8rem);
  font-weight: 800; line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 28px;
}
.hero-h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(245,240,235,0.65);
  max-width: 520px; line-height: 1.8; margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-ghost {
  font-size: 0.9rem; font-weight: 600;
  color: rgba(245,240,235,0.6);
  border-bottom: 1px solid rgba(245,240,235,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 700;
  color: var(--white); border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 28px; border-radius: 100px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(255,107,43,0.06); }

.hero-social-proof { display: flex; align-items: center; gap: 12px; }
.sp-avatars { display: flex; }
.sp-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  font-size: 0.72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg-dark);
  margin-right: -8px;
}
.sp-avatar:nth-child(2) { background: #ff9500; }
.sp-avatar:nth-child(3) { background: #8b5cf6; }
.sp-text { font-size: 0.78rem; color: rgba(245,240,235,0.5); margin-left: 16px; }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 1;
}
@keyframes scroll-drop { 0%{opacity:0;transform:scaleY(0) translateY(-50%)} 50%{opacity:1} 100%{opacity:0;transform:scaleY(1) translateY(0)} }
.scroll-line {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scroll-drop 2s infinite;
}

/* ── TICKER ───────────────────────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--accent); overflow: hidden;
  padding: 14px 0; white-space: nowrap;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker {
  display: inline-flex; gap: 40px;
  animation: ticker 22s linear infinite;
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--white);
}
.ticker .sep { opacity: 0.5; }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
  padding: 16px 32px; border-radius: 100px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: #ff5510; transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,107,43,0.3);
}

/* ── SECTION SHARED ───────────────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-mono); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 24px;
}
.section-body {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--muted); max-width: 580px;
  line-height: 1.8; margin-bottom: 48px;
}

/* ── PROBLEM ──────────────────────────────────────────────────────────────── */
.problem { padding: var(--section-py) 0; background: var(--bg); }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px); align-items: start;
}
.problem-list { display: flex; flex-direction: column; gap: 0; }
.problem-item {
  display: flex; gap: 20px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.problem-item:last-child { border-bottom: none; }
.pi-icon { font-size: 1.4rem; flex-shrink: 0; padding-top: 2px; }
.pi-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.pi-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── HOW IT WORKS ─────────────────────────────────────────────────────────── */
.how { padding: var(--section-py) 0; background: var(--black); color: var(--white); }
.how .section-h2 { color: var(--white); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 56px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; overflow: hidden;
}
.step {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-mono); font-size: 0.65rem;
  color: var(--accent); margin-bottom: 20px;
}
.step-line {
  width: 32px; height: 2px;
  background: var(--accent); margin-bottom: 20px;
}
.step-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-desc { font-size: 0.85rem; color: rgba(245,240,235,0.5); line-height: 1.65; }

/* ── WAVE DIVIDER ─────────────────────────────────────────────────────────── */
.wave-divider {
  height: 80px; background: var(--black);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}

/* ── PROOF ────────────────────────────────────────────────────────────────── */
.proof { padding: var(--section-py) 0; background: var(--bg); }
.accounts-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 48px 0;
}
.account-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  box-shadow: 0 2px 20px rgba(15,12,8,0.06);
}
.account-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.account-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: white; flex-shrink: 0;
}
.account-avatar--neo { background: linear-gradient(135deg, #1a1a2e, #4a4af0); }
.account-avatar--shay { background: linear-gradient(135deg, #f9a825, #ff6b2b); }
.account-handle { font-family: var(--font-mono); font-size: 0.9rem; font-weight: 700; }
.account-type { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.account-live {
  margin-left: auto; display: flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 700; color: #22c55e;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2);
  padding: 4px 10px; border-radius: 20px;
}
@keyframes live-pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; animation: live-pulse 2s infinite;
}
.account-stats {
  display: flex; gap: 0;
  border-top: 1px solid var(--border); padding-top: 20px;
}
.account-stat { flex: 1; text-align: center; border-right: 1px solid var(--border); }
.account-stat:last-child { border-right: none; }
.as-num { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; }
.as-label { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }

.image-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.image-cell {
  aspect-ratio: 3/4; border-radius: 12px; overflow: hidden;
  background: var(--card-2); border: 1px solid var(--border);
}

/* ── PRICING ──────────────────────────────────────────────────────────────── */
.pricing { padding: var(--section-py) 0; background: var(--black); color: var(--white); }
.pricing .section-label { color: var(--accent); }
.pricing .section-h2 { color: var(--white); }
.pricing-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 48px; align-items: start;
}
.pricing-grid-3 {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 24px; margin-top: 48px; align-items: start;
}
.pricing-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 44px 40px; position: relative;
}
.pricing-badge {
  position: absolute; top: -12px; left: 32px;
  background: var(--accent); color: var(--white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
}
.pricing-tier {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; margin-top: 8px;
}
.pricing-amount {
  font-family: var(--font-head); font-size: 4rem; font-weight: 800;
  line-height: 1; margin-bottom: 16px;
}
.pricing-amount span { font-size: 1.2rem; color: rgba(245,240,235,0.4); font-weight: 400; }
.pricing-setup { font-size: 0.78rem; color: rgba(245,240,235,0.35); margin-bottom: 16px; margin-top: -10px; }
.pricing-desc { font-size: 0.9rem; color: rgba(245,240,235,0.5); margin-bottom: 28px; line-height: 1.65; }
.pricing-card--featured {
  border-color: var(--accent); background: rgba(255,107,43,0.06);
  transform: scale(1.02); transform-origin: top center;
}
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pricing-list li {
  font-size: 0.88rem; color: rgba(245,240,235,0.7);
  padding-left: 22px; position: relative;
}
.pricing-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}
.pricing-side { display: flex; flex-direction: column; gap: 16px; }
.pricing-compare {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 32px;
}
.compare-title {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,240,235,0.3); margin-bottom: 20px;
}
.compare-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem; color: rgba(245,240,235,0.6);
}
.compare-item:last-child { border-bottom: none; }
.compare-cost { font-weight: 700; }
.compare-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 8px 0; }
.compare-total .compare-cost { text-decoration: line-through; color: rgba(245,240,235,0.3); }
.compare-new { font-weight: 700; color: var(--white) !important; }
.compare-new .accent { color: var(--accent) !important; font-size: 1.1rem; }
.strike { text-decoration: line-through; opacity: 0.4; }
.accent { color: var(--accent); }

.pricing-agency {
  background: rgba(255,107,43,0.08); border: 1px solid rgba(255,107,43,0.2);
  border-radius: 16px; padding: 28px;
}
.pa-label {
  font-size: 0.78rem; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px;
}
.pa-text { font-size: 0.85rem; color: rgba(245,240,235,0.5); line-height: 1.65; margin-bottom: 14px; }
.pa-link { font-size: 0.85rem; font-weight: 700; color: var(--accent); }

/* ── CTA ──────────────────────────────────────────────────────────────────── */
.cta { padding: var(--section-py) 0; background: var(--bg); }
.cta-inner {
  background: var(--black); border-radius: 24px;
  padding: clamp(48px, 8vw, 100px) clamp(32px, 6vw, 80px);
  text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,43,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-eyebrow {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.cta-h2 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.cta-sub {
  font-size: 1rem; color: rgba(245,240,235,0.5);
  max-width: 480px; margin: 0 auto 40px; line-height: 1.75;
}
.cta-form { max-width: 700px; margin: 0 auto; }
.cta-form-row {
  display: flex; gap: 10px; flex-wrap: wrap;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; padding: 8px 8px 8px 24px;
}
.cta-form-row input {
  flex: 1; min-width: 140px; background: transparent; border: none;
  color: var(--white); font-family: var(--font-body);
  font-size: 0.9rem; outline: none; padding: 8px 0;
}
.cta-form-row input::placeholder { color: rgba(245,240,235,0.3); }
.cta-submit { border-radius: 100px; padding: 12px 24px; font-size: 0.9rem; flex-shrink: 0; }
.cta-fine {
  font-size: 0.72rem; color: rgba(245,240,235,0.25);
  margin-top: 16px; font-family: var(--font-mono);
}
.cta-success { color: var(--white); padding: 40px 0; }
.success-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,107,43,0.15); border: 1px solid rgba(255,107,43,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--accent);
  margin: 0 auto 16px;
}
.success-title { font-family: var(--font-head); font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.success-body { font-size: 0.95rem; color: rgba(245,240,235,0.5); }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer { background: var(--black); color: var(--white); padding: 60px 0 32px; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 40px; gap: 24px; flex-wrap: wrap;
}
.footer-logo { font-family: var(--font-mono); font-size: 1.2rem; font-weight: 700; }
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 0.78rem; color: rgba(245,240,235,0.3); margin-top: 4px; }
.footer-links { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; color: rgba(245,240,235,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between;
  font-size: 0.72rem; color: rgba(245,240,235,0.2);
  font-family: var(--font-mono); padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; gap: 8px;
}

/* ── REVEAL ANIMATIONS ────────────────────────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal-scale { transform: scale(0.95); }
.revealed { opacity: 1 !important; transform: none !important; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .problem-grid, .pricing-wrap, .pricing-grid-3 { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .accounts-grid { grid-template-columns: 1fr; }
  .image-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .cta-form-row { border-radius: 16px; flex-direction: column; padding: 16px; }
  .cta-form-row input { min-width: 100%; }
  .cta-submit { border-radius: 100px; }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .image-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-h1 { font-size: 3rem; }
}
