:root {
  --bg: #F6F2EC;
  --surface: #EDEAE3;
  --sage: #8B9E7D;
  --sage-dark: #6B7E5E;
  --sage-light: #B4C4A8;
  --charcoal: #2A2A28;
  --warm-mid: #6B6560;
  --warm-light: #A8A49E;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1080px;
  --space-section: 120px;
}

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

body {
  background: var(--bg);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  padding: 28px 40px;
  border-bottom: 1px solid rgba(42,42,40,0.08);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  text-decoration: none;
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--warm-mid);
  font-weight: 300;
}
.nav-links {
  margin-left: auto;
}
.nav-link {
  font-size: 0.9rem;
  color: var(--warm-mid);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--charcoal); }

/* ── HERO ── */
.hero {
  padding: 100px 40px 120px;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 400;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 32px;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--warm-mid);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--sage);
  color: white;
}
.btn-primary:hover { background: var(--sage-dark); }

/* Orb visual */
.hero-visual {
  flex-shrink: 0;
}
.stillness-orb {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--sage-light);
}
.orb-ring-1 { width: 120px; height: 120px; animation: pulse 4s ease-in-out infinite; }
.orb-ring-2 { width: 160px; height: 160px; animation: pulse 4s ease-in-out infinite 0.8s; }
.orb-ring-3 { width: 200px; height: 200px; animation: pulse 4s ease-in-out infinite 1.6s; }
.orb-center {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  color: white;
  letter-spacing: 0.05em;
  font-style: italic;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.03); }
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--surface);
  padding: var(--space-section) 40px;
}
.manifesto-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 400;
  margin-bottom: 36px;
}
.manifesto-quote {
  border-left: 3px solid var(--sage);
  padding-left: 32px;
  margin-bottom: 40px;
}
.manifesto-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--charcoal);
}
.manifesto-body {
  font-size: 1rem;
  color: var(--warm-mid);
  max-width: 620px;
  line-height: 1.8;
  padding-left: 32px;
}

/* ── FEATURES ── */
.features {
  padding: var(--space-section) 40px;
}
.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.features-header {
  margin-bottom: 72px;
}
.features-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--surface);
}
.feature-card {
  background: var(--bg);
  padding: 40px 36px 44px;
}
.feature-icon {
  color: var(--sage-dark);
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--warm-mid);
  line-height: 1.65;
}

/* ── HOW IT FEELS ── */
.how-it-feels {
  background: var(--charcoal);
  color: white;
  padding: var(--space-section) 40px;
}
.how-it-feels-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.how-it-feels .section-label {
  color: var(--sage-light);
  margin-bottom: 52px;
}
.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contrast-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 28px;
}
.contrast-heading-wrong { color: var(--warm-light); }
.contrast-heading-right { color: var(--sage-light); }
.contrast-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contrast-list li {
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.contrast-col-wrong .contrast-list li { color: rgba(255,255,255,0.45); }
.contrast-col-wrong .contrast-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 1px; background: rgba(255,255,255,0.2); }
.contrast-col-right .contrast-list li { color: rgba(255,255,255,0.75); }
.contrast-col-right .contrast-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 1px; background: var(--sage-light); }

/* ── CLOSING ── */
.closing {
  background: var(--sage);
  padding: var(--space-section) 40px;
}
.closing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}
.closing-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 52px;
}
.closing-tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  padding: 48px 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: white;
  font-weight: 400;
  display: block;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 64px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .manifesto, .features, .how-it-feels, .closing { padding-left: 24px; padding-right: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .contrast-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .closing-headline { font-size: 2rem; }
}