/* ——— Variables ——— */
:root {
  --bg: #EDE6D6;
  --bg-alt: #E4DDD0;
  --fg: #1C1C2E;
  --fg-muted: #5A5A72;
  --accent: #C8963E;
  --accent-light: rgba(200, 150, 62, 0.12);
  --terracotta: #D4714E;
  --white: #FAFAF8;
  --navy-dark: #111122;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ——— Reset ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ——— Navbar ——— */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  background: rgba(237, 230, 214, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28, 28, 46, 0.08);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ——— Hero ——— */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200, 150, 62, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 95% 80%, rgba(212, 113, 78, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Hero Orb */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}
.hero-orb {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 150, 62, 0.2);
}
.orb-ring-1 { width: 100%; height: 100%; animation: pulse 4s ease-in-out infinite; }
.orb-ring-2 { width: 75%; height: 75%; animation: pulse 4s ease-in-out infinite 0.6s; }
.orb-ring-3 { width: 50%; height: 50%; animation: pulse 4s ease-in-out infinite 1.2s; }
.orb-core {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1C1C2E 0%, #2a2a4a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(200, 150, 62, 0.15);
}
.orb-core svg { width: 60px; height: 60px; }
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.03); }
}

/* ——— Shared Section ——— */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-label.centered { text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 56px;
}
.section-title.centered { text-align: center; }

/* ——— Problem ——— */
.problem {
  padding: 100px 0;
  background: var(--navy-dark);
  color: var(--white);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-statement h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}
.problem-body {
  color: rgba(250, 250, 248, 0.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.problem-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.3s;
}
.stat-card:hover { border-color: rgba(200, 150, 62, 0.4); }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(250, 250, 248, 0.55);
  line-height: 1.4;
}

/* ——— How It Works ——— */
.how-it-works {
  padding: 100px 0;
  background: var(--bg);
}
.process-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  padding: 40px 32px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(28, 28, 46, 0.08);
  position: relative;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  margin-top: 20px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-light);
  letter-spacing: -0.04em;
  line-height: 1;
}
.process-connector {
  display: flex;
  align-items: center;
  padding: 0 8px;
  margin-top: 60px;
  flex-shrink: 0;
}

/* ——— Features ——— */
.features {
  padding: 100px 0;
  background: var(--bg-alt);
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid rgba(28, 28, 46, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(28, 28, 46, 0.08);
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 14px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ——— Manifesto ——— */
.manifesto {
  padding: 100px 0;
  background: var(--navy-dark);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-rule {
  width: 60px;
  height: 1px;
  background: rgba(200, 150, 62, 0.4);
  margin: 0 auto 40px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.manifesto-body {
  font-size: 1.05rem;
  color: rgba(250, 250, 248, 0.6);
  line-height: 1.75;
  margin-bottom: 48px;
}
.manifesto-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

/* ——— Closing ——— */
.closing {
  padding: 100px 0;
  background: var(--bg);
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 40px;
}
.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tag {
  padding: 8px 18px;
  background: var(--accent-light);
  border: 1px solid rgba(200, 150, 62, 0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.02em;
}

/* ——— Footer ——— */
.footer {
  padding: 60px 0 40px;
  background: var(--navy-dark);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(250, 250, 248, 0.4);
  margin-bottom: 32px;
}
.footer-divider {
  width: 40px;
  height: 1px;
  background: rgba(200, 150, 62, 0.3);
  margin: 0 auto 28px;
}
.footer-note {
  font-size: 0.78rem;
  color: rgba(250, 250, 248, 0.3);
  letter-spacing: 0.05em;
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-flow { flex-direction: column; gap: 20px; }
  .process-connector { transform: rotate(90deg); margin: 0 auto; }
  .feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 24px 60px; }
  .section-inner { padding: 0 24px; }
  .problem-stat-grid { grid-template-columns: 1fr; }
  .navbar { padding: 16px 24px; }
}
