:root {
  --bg: #FAF8F5;
  --bg-alt: #F2EDE6;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #D4613A;
  --accent-dark: #B84F2E;
  --border: #E2DDD6;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px 60px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 97, 58, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 97, 58, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 48px;
  transition: background 0.15s;
}

.hero-cta:hover { background: var(--accent-dark); }

.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── CALENDAR MOCK ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-mock {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  width: 340px;
  box-shadow: 0 20px 60px rgba(26, 26, 26, 0.08), 0 4px 12px rgba(26, 26, 26, 0.04);
  position: relative;
  z-index: 2;
}

.mock-header {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.mock-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.mock-event {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 8px;
  border-left: 3px solid;
}

.mock-event-1 {
  background: #F0FAF0;
  border-color: #2E7D32;
}

.mock-event-2 {
  background: #FFF8F0;
  border-color: var(--accent);
}

.mock-event-3 {
  background: #F5F0FF;
  border-color: #6B4FD6;
}

.event-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--fg-muted);
  white-space: nowrap;
  padding-top: 1px;
}

.event-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2px;
}

.event-detail {
  font-size: 11px;
  color: var(--fg-muted);
}

.mock-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: #2E7D32;
  margin-top: 8px;
  background: #E8F5E8;
  padding: 4px 8px;
  border-radius: 20px;
}

/* ── ORBS ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 97, 58, 0.12) 0%, transparent 70%);
  top: -60px;
  right: -40px;
}

.hero-orb-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(26, 26, 26, 0.05) 0%, transparent 70%);
  bottom: 20px;
  left: -60px;
}

/* ── SECTION SHARED ── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 60px;
  max-width: 640px;
}

/* ── PROOF ── */
.proof {
  background: var(--fg);
  color: var(--bg);
  padding: 80px 48px;
}

.proof-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.proof-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.5);
  margin-bottom: 32px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 48px;
}

.proof-item {
  padding: 36px;
  border: 1px solid rgba(250, 248, 245, 0.15);
}

.proof-item:first-child {
  border-right: none;
}

.proof-item:last-child {
  border-left: none;
}

.proof-big {
  font-family: var(--serif);
  font-size: 24px;
  color: rgba(250, 248, 245, 0.5);
  margin-bottom: 12px;
}

.proof-highlight {
  color: var(--accent);
}

.proof-item p {
  font-size: 14px;
  color: rgba(250, 248, 245, 0.6);
  line-height: 1.6;
}

.proof-vs {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  padding: 0 20px;
}

.proof-gap {
  border-top: 1px solid rgba(250, 248, 245, 0.15);
  padding-top: 32px;
  text-align: center;
}

.proof-gap-text {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  color: var(--bg);
}

/* ── FEATURES ── */
.features {
  padding: 100px 48px;
  background: var(--bg);
}

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

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

.feature-card {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: #FFF;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: #FFF;
}

.feature-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 48px;
  background: var(--bg-alt);
}

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

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
}

.step-number {
  font-family: var(--serif);
  font-size: 64px;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
}

.step-content h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.step-connector {
  width: 80px;
  height: 1px;
  background: var(--border);
  margin: 36px 24px 0;
  flex-shrink: 0;
}

/* ── WHO IT'S FOR ── */
.who {
  padding: 100px 48px;
  background: var(--bg);
}

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

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.who-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
}

.who-icon {
  width: 48px;
  height: 48px;
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.who-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 12px;
}

.who-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.who-quote {
  border-top: 1px solid var(--border);
  padding-top: 48px;
  max-width: 600px;
}

.who-quote blockquote {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 16px;
}

.who-quote cite {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: normal;
}

/* ── CLOSING ── */
.closing {
  background: var(--fg);
  color: var(--bg);
  padding: 120px 48px;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--bg);
  margin-bottom: 28px;
}

.closing p {
  font-size: 18px;
  color: rgba(250, 248, 245, 0.65);
  line-height: 1.7;
  margin-bottom: 64px;
}

.closing-cta {
  border: 1px solid rgba(250, 248, 245, 0.15);
  border-radius: 16px;
  padding: 40px;
}

.cta-number {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--accent);
  line-height: 1.4;
  margin-bottom: 12px;
}

.closing-cta p {
  font-size: 15px;
  color: rgba(250, 248, 245, 0.5);
  margin-bottom: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--fg);
  color: rgba(250, 248, 245, 0.6);
  padding: 60px 48px 40px;
  border-top: 1px solid rgba(250, 248, 245, 0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--bg);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.4);
  margin-bottom: 16px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(250, 248, 245, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(250, 248, 245, 0.08);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(250, 248, 245, 0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .calendar-mock {
    width: 100%;
    max-width: 340px;
  }

  .hero {
    padding: 60px 24px 48px;
  }

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

  .steps {
    flex-direction: column;
    gap: 40px;
  }

  .step-connector {
    width: 1px;
    height: 40px;
    margin: 0;
  }

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

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .proof-vs {
    display: none;
  }

  .proof-item {
    border: 1px solid rgba(250, 248, 245, 0.15);
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 32px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .features, .how-it-works, .who {
    padding: 60px 24px;
  }

  .closing, .proof {
    padding: 80px 24px;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 28px;
  }

  .hero-stats {
    gap: 20px;
  }
}