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

:root {
  --bg:          #111110;
  --bg-alt:      #181817;
  --fg:          #F5F4F0;
  --fg-muted:    #8A8A82;
  --accent:      #E8A836;
  --accent-dim:  rgba(232,168,54,0.12);
  --amber-glow:  rgba(232,168,54,0.06);
  --border:      rgba(245,244,240,0.08);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Nav ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(24px, 5vw, 80px);
  height: 60px;
  display: flex;
  align-items: center;
  background: rgba(17,17,16,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── Hero ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px) clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 40%, var(--amber-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-amber-bar {
  width: 3px;
  height: clamp(80px, 12vw, 160px);
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(232,168,54,0.5), 0 0 60px rgba(232,168,54,0.2);
  margin-right: clamp(32px, 5vw, 64px);
  flex-shrink: 0;
}

.hero-content {
  max-width: 680px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 540px;
}

.hero-image-wrap {
  position: absolute;
  right: -5vw;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 35vw, 520px);
  aspect-ratio: 4/3;
  opacity: 0;
  pointer-events: none;
}

.hero-image-glow {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(232,168,54,0.18) 0%, rgba(232,168,54,0.04) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

/* ─── Section Shared ───────────────────────────────────── */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 660px;
}

/* ─── How It Works ─────────────────────────────────────── */
.how {
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how .section-heading {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── Why ──────────────────────────────────────────────── */
.why {
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--border);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why .section-heading {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
}

.why-icon {
  margin-bottom: 20px;
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}

.why-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── Pricing ──────────────────────────────────────────── */
.pricing {
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing .section-heading {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  max-width: 900px;
}

.pricing-card {
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--border);
  border-radius: 2px;
  position: relative;
}

.pricing-card--growth {
  border-color: rgba(232,168,54,0.3);
  background: linear-gradient(135deg, rgba(232,168,54,0.04) 0%, transparent 60%);
}

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.price-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.price-sub {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.pricing-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  line-height: 1.5;
}

/* ─── Gap ──────────────────────────────────────────────── */
.gap {
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.gap-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gap-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 720px;
  margin-bottom: 40px;
}

.gap-body p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 20px;
}

.gap-body p:last-child {
  margin-bottom: 0;
}

/* ─── Closing ──────────────────────────────────────────── */
.closing-section {
  padding: clamp(100px, 14vw, 160px) clamp(24px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, var(--amber-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── Footer ────────────────────────────────────────────── */
.footer {
  padding: 40px clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  display: block;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  max-width: 280px;
  line-height: 1.5;
}

.footer-meta {
  text-align: right;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.footer-note {
  font-size: 0.75rem;
  color: rgba(138,138,130,0.5);
  letter-spacing: 0.04em;
}

/* ─── Mobile ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: auto 1fr;
    align-items: flex-start;
  }

  .hero-amber-bar {
    margin-right: 20px;
    height: 60px;
  }

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

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

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.4rem;
  }

  .nav-tagline {
    display: none;
  }
}

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(232,168,54,0.3); border-radius: 3px; }

/* ─── Selection ─────────────────────────────────────────── */
::selection { background: rgba(232,168,54,0.25); color: var(--fg); }
