/* ===== TOKENS ===== */
:root {
  --bg: #F5F2ED;
  --bg-alt: #EDE9E1;
  --fg: #0F0F0F;
  --fg-muted: #6B6B6B;
  --accent: #E8870A;
  --accent-subtle: #FEF3E2;
  --border: #DDD9D0;
  --card-bg: #FFFFFF;

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --radius: 6px;
  --radius-lg: 12px;
}

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 242, 237, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.site-header nav {
  display: flex;
  gap: 2rem;
}

.site-header nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.site-header nav a:hover { color: var(--fg); }

/* ===== SECTION UTILITIES ===== */
.section-inner { max-width: 1100px; margin: 0 auto; padding: var(--space-2xl) 1.5rem; }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--fg);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) 0 var(--space-xl);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(232, 135, 10, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 100%, rgba(232, 135, 10, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-subtle);
  border: 1px solid rgba(232, 135, 10, 0.25);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  max-width: 18ch;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-badge {
  display: inline-block;
  background: var(--fg);
  color: var(--bg);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  letter-spacing: 0.01em;
}

/* ===== WHAT IT DOES ===== */
.what-it-does {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 3rem;
}

.step { padding: 0 1rem; }

.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.step-content p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-connector {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0.5rem 0;
}

.process-note {
  background: var(--accent-subtle);
  border: 1px solid rgba(232, 135, 10, 0.2);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
}

.process-note p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ===== WHO IT'S FOR ===== */
.who-its-for { background: var(--bg-alt); }

.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.persona-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.persona-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.persona-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing { background: var(--card-bg); border-top: 1px solid var(--border); }

.pricing-card {
  background: var(--fg);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 460px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(232, 135, 10, 0.15);
  border-radius: 50%;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-period {
  font-size: 0.9375rem;
  color: rgba(245, 242, 237, 0.6);
  margin-bottom: 2.5rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.pricing-note {
  font-size: 0.8125rem;
  color: rgba(245, 242, 237, 0.4);
  border-top: 1px solid rgba(245, 242, 237, 0.1);
  padding-top: 1.25rem;
}

/* ===== CLOSING ===== */
.closing { background: var(--bg); }

.closing-content {
  max-width: 700px;
}

.closing h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
}

.closing p {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 56ch;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--fg);
  color: var(--bg);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.footer-brand .wordmark {
  color: var(--bg);
  margin-bottom: 0.5rem;
  display: block;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(245, 242, 237, 0.45);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(245, 242, 237, 0.6);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--bg); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-md) 1.5rem 0;
  border-top: 1px solid rgba(245, 242, 237, 0.08);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(245, 242, 237, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-header nav { display: none; }

  .hero-headline { max-width: 100%; }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-connector {
    width: 40px;
    height: 1px;
    background: var(--border);
  }

  .pricing-card { padding: 2rem; }
}

/* ===== SELECTION ===== */
::selection { background: rgba(232, 135, 10, 0.2); color: var(--fg); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--fg-muted); }
