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

:root {
  --bg: #0B0D11;
  --bg-surface: #111520;
  --bg-raised: #171D2A;
  --fg: #E8D5B7;
  --fg-muted: #8B7A62;
  --fg-subtle: #4A3F33;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --accent-glow: rgba(245, 166, 35, 0.06);
  --border: rgba(232, 213, 183, 0.08);
  --border-accent: rgba(245, 166, 35, 0.25);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1100px;
  --section-pad: clamp(80px, 10vw, 120px);
}

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;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-accent); border-radius: 3px; }

/* === SELECTION === */
::selection { background: rgba(245, 166, 35, 0.2); color: var(--fg); }

/* === FOCUS === */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

/* === LAYOUT UTILITIES === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(24px, 5vw, 64px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(24px, 5vw, 64px);
  border-bottom: 1px solid var(--border);
  background: rgba(11, 13, 17, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Subtle grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* The sun circle */
.hero-sun {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, rgba(245, 166, 35, 0.04) 40%, transparent 70%);
  pointer-events: none;
}

/* Diagonal light beams */
.hero-beam {
  position: absolute;
  width: 2px;
  height: 300px;
  background: linear-gradient(to bottom, rgba(245, 166, 35, 0.2), transparent);
  transform-origin: top center;
}
.hero-beam-1 {
  right: 15%;
  top: 20%;
  transform: rotate(35deg);
  opacity: 0.4;
}
.hero-beam-2 {
  right: 22%;
  top: 15%;
  transform: rotate(48deg);
  opacity: 0.25;
}

/* Floating circles */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-accent);
}
.hero-circle-1 {
  width: 320px;
  height: 320px;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.3;
}
.hero-circle-2 {
  width: 500px;
  height: 500px;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.12;
}

/* Hero content */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 36px;
  padding: 8px 16px;
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  background: var(--accent-dim);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.meta-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.hero-meta-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  padding: var(--section-pad) clamp(24px, 5vw, 64px);
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 60px;
  align-items: start;
}

.manifesto-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  padding-top: 8px;
  border-top: 2px solid var(--accent);
}

.manifesto-statement {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.manifesto-accent { color: var(--accent); }

.manifesto-body p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
  max-width: 640px;
}

.manifesto-body strong {
  color: var(--fg);
  font-weight: 500;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  padding: var(--section-pad) clamp(24px, 5vw, 64px);
}

.how-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.how-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 56px;
  border-top: 2px solid var(--accent);
  display: inline-block;
  padding-top: 8px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.how-step {
  position: relative;
}

.step-number {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.step-icon {
  margin-bottom: 16px;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.3;
}

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

.how-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider-icon { display: flex; }

.how-additional {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 48px;
  max-width: 680px;
}

.additional-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.additional-desc {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   NUMBERS
   ============================================================ */
.numbers {
  padding: var(--section-pad) clamp(24px, 5vw, 64px);
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.numbers-inner { max-width: var(--max-w); margin: 0 auto; }

.numbers-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 48px;
  border-top: 2px solid var(--accent);
  display: inline-block;
  padding-top: 8px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.number-card {
  background: var(--bg);
  padding: 36px 32px;
}

.number-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}

.number-context {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: var(--section-pad) clamp(24px, 5vw, 64px);
}

.pricing-inner { max-width: var(--max-w); margin: 0 auto; }

.pricing-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
  border-top: 2px solid var(--accent);
  display: inline-block;
  padding-top: 8px;
}

.pricing-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.pricing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 56px;
  font-weight: 300;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}

.pricing-card-primary {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, var(--bg-raised) 0%, var(--bg-surface) 100%);
}

.pricing-tier {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.pricing-card-primary .pricing-price { color: var(--accent); }

.per-mo {
  font-size: 0.5em;
  font-family: var(--font-body);
  color: var(--fg-muted);
  font-weight: 400;
}

.pricing-detail {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
  font-weight: 300;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.pricing-card-primary .pricing-features li::before { opacity: 1; }

.pricing-validation {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.55;
  max-width: 580px;
  font-weight: 300;
}

.validation-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

/* ============================================================
   CLOSING
   ============================================================ */
.closing {
  padding: var(--section-pad) clamp(24px, 5vw, 64px);
  text-align: center;
}

.closing-inner { max-width: 680px; margin: 0 auto; }

.closing-sun {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 48px clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-weight: 300;
}

.footer-note {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--fg-subtle);
  font-weight: 300;
  font-style: italic;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 24px; }
  .manifesto-label { border-top: none; padding-top: 0; }
  .footer-note { margin-left: 0; width: 100%; }
}

@media (max-width: 600px) {
  .hero-meta-sep { display: none; }
  .how-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr; }
  .how-additional { padding: 28px 24px; }
  .hero-headline { font-size: 2.6rem; }
}