/* ============================================================
   Ayla Calm — Editorial Dark / Copper
   Tokens from AYLA_CALM/DESIGN.md (2026-04-28)
   ============================================================ */

:root {
  /* Backgrounds */
  --bg-deep:      #050507;
  --bg-surface:   #0A0A0E;
  --bg-card:      #14141C;
  --bg-elevated:  #1A1A22;

  /* Typography colors */
  --cream:        #F5E6D3;
  --cream-mute:   #8B8276;

  /* Accents */
  --copper:       #C68B5C;
  --gold:         #D4A574;
  --sage:         #6B8E6B;
  --rose:         #B87575;

  /* Lines */
  --line:         rgba(198, 139, 92, .18);
  --line-soft:    rgba(245, 230, 211, .08);
  --line-strong:  rgba(198, 139, 92, .35);

  /* Radii */
  --r-sm: 4px;
  --r-md: 12px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* Spacing */
  --gutter: 28px;
  --gutter-lg: 40px;
  --section-y: 140px;

  /* Fonts */
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================================
   Reset
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
*, *::before, *::after { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg-deep);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Grain overlay — signature element of Editorial Dark */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .35;
  mix-blend-mode: overlay;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ============================================================
   Typography utilities
   ============================================================ */

.serif { font-family: var(--serif); font-weight: 300; letter-spacing: -.5px; }
.italic { font-style: italic; color: var(--copper); }

.label-up {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--copper);
}

.label-mute {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream-mute);
}

/* ============================================================
   Layout
   ============================================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter-lg);
  position: relative;
  z-index: 2;
}

.section { padding: var(--section-y) 0; }
.section-tight { padding: 80px 0; }

.section-head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-bottom: 56px;
}
.section-head .num { font-family: var(--serif); font-size: 16px; color: var(--copper); letter-spacing: 1px; }
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.5px;
}
.section-head h2 em { font-style: italic; color: var(--copper); }

/* ============================================================
   Navigation
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(5, 5, 7, .7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s ease, border-color .3s ease;
}
.nav.scrolled {
  background: rgba(5, 5, 7, .92);
  border-bottom-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  color: var(--cream);
}
.nav-logo .mono {
  width: 34px; height: 34px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 16px;
  font-style: italic;
  color: var(--copper);
}
.nav-logo .name {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 500;
}
.nav-logo .name em { color: var(--copper); font-style: normal; font-weight: 400; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-mute);
  font-weight: 500;
  transition: color .25s ease;
}
.nav-links a:hover { color: var(--copper); }

.lang-toggle {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--cream);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: border-color .25s ease, color .25s ease;
}
.lang-toggle:hover { border-color: var(--copper); color: var(--copper); }

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 32px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cream);
  color: var(--bg-deep);
  border: 1px solid var(--cream);
}
.btn-primary:hover { transform: translateY(-1px); background: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--copper);
  border: 1px solid var(--copper);
}
.btn-ghost:hover { background: rgba(198, 139, 92, .08); }

.btn-lg { padding: 22px 44px; font-size: 13px; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  align-items: center;
}
.hero-text { max-width: 560px; }
.hero-label {
  display: block;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--copper); }
.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--cream-mute);
  max-width: 480px;
  margin-bottom: 44px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line-soft);
  padding-top: 32px;
  max-width: 520px;
}
.stat-value {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  display: block;
}
.stat-value em { font-style: italic; color: var(--copper); }
.stat-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-top: 8px;
  display: block;
  line-height: 1.4;
}

/* Hero visual — phone preview */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.device-frame {
  width: 320px;
  height: 660px;
  border-radius: 44px;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  box-shadow:
    0 0 0 1px rgba(198, 139, 92, .08),
    0 50px 120px rgba(0, 0, 0, .8);
  position: relative;
  overflow: hidden;
}
.device-frame::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 28px;
  background: #000;
  border-radius: 16px;
  z-index: 5;
}
.device-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  opacity: .45;
  mix-blend-mode: overlay;
  z-index: 4;
}

.dv-screen {
  position: absolute;
  inset: 50px 0 0 0;
  padding: 0 22px 22px;
  display: flex;
  flex-direction: column;
}
.dv-greet { color: var(--copper); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; font-weight: 500; }
.dv-h {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -1.2px;
  margin-bottom: 24px;
}
.dv-h em { font-style: italic; color: var(--copper); }
.dv-card {
  height: 220px;
  border-radius: var(--r-md);
  background:
    linear-gradient(180deg, transparent 30%, rgba(10, 10, 14, .9) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(198, 139, 92, .25), transparent 60%),
    linear-gradient(135deg, #1a1a22, #050507);
  border: 1px solid var(--line);
  position: relative;
  padding: 16px;
  display: flex; flex-direction: column; justify-content: space-between;
  margin-bottom: 18px;
}
.dv-card .top { font-family: var(--serif); font-size: 10px; color: var(--cream); opacity: .7; }
.dv-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.3px;
}
.dv-card h3 em { font-style: italic; color: var(--cream); }
.dv-card .meta { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cream); opacity: .8; margin-top: 4px; }
.dv-card .play {
  position: absolute;
  right: 16px; bottom: 16px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--bg-deep);
  display: grid; place-items: center;
  font-size: 14px;
}
.dv-qs {
  display: flex;
  gap: 6px;
}
.dv-qs .q {
  flex: 1;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  padding: 10px 0;
  text-align: center;
  font-size: 9px;
  color: var(--cream);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.dv-qs .q strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--copper);
  letter-spacing: 0;
}

/* Hero ambient — pulsing copper glow */
.hero::before {
  content: '';
  position: absolute;
  top: 50%; right: -200px;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 139, 92, .08) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: hero-glow 12s ease-in-out infinite;
}
@keyframes hero-glow {
  0%, 100% { opacity: .6; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.08); }
}

/* ============================================================
   MANIFESTO (about / philosophy)
   ============================================================ */

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-side .label-up { display: block; margin-bottom: 18px; }
.manifesto-side h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
}
.manifesto-side h2 em { font-style: italic; color: var(--copper); }
.manifesto-body p {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.55;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 24px;
}
.manifesto-body p:last-child { color: var(--cream-mute); font-style: normal; font-family: var(--sans); font-size: 15px; }

/* ============================================================
   FEATURES
   ============================================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
}
.feature {
  background: var(--bg-deep);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background .35s ease;
}
.feature:hover { background: var(--bg-card); }
.feature .num { font-family: var(--serif); font-size: 13px; color: var(--copper); letter-spacing: 1px; }
.feature h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.3px;
  color: var(--cream);
}
.feature h3 em { font-style: italic; color: var(--copper); }
.feature p {
  font-size: 14px;
  color: var(--cream-mute);
  line-height: 1.6;
  margin-top: 4px;
}

/* ============================================================
   STEPS — How it works
   ============================================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.step {
  padding: 0 40px 0 0;
  border-right: 1px solid var(--line-soft);
}
.step:last-child { border-right: none; padding-right: 0; }
.step + .step { padding-left: 40px; }
.step-num {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 300;
  font-style: italic;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: -2px;
}
.step h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.2;
  color: var(--cream);
}
.step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream-mute);
}

/* ============================================================
   CATEGORIES — image frames
   ============================================================ */

.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat {
  position: relative;
  height: 220px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-soft);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform .4s ease, border-color .4s ease;
  cursor: default;
}
.cat:hover { transform: translateY(-3px); border-color: var(--line); }
.cat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 5, 7, .92) 100%);
  z-index: 1;
}
.cat .lbl {
  position: absolute;
  left: 18px; bottom: 18px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -.2px;
}
.cat .lbl small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 6px;
}
.c-sleep   { background-image: linear-gradient(180deg, rgba(20,20,28,.4), rgba(5,5,7,.5)), url('https://images.unsplash.com/photo-1532978879514-6cb1cf1209a1?w=600&q=80'); }
.c-stress  { background-image: linear-gradient(180deg, rgba(20,20,28,.4), rgba(5,5,7,.5)), url('https://images.unsplash.com/photo-1518173946687-a4c8892bbd9f?w=600&q=80'); }
.c-anxiety { background-image: linear-gradient(180deg, rgba(20,20,28,.4), rgba(5,5,7,.5)), url('https://images.unsplash.com/photo-1499002238440-d264edd596ec?w=600&q=80'); }
.c-focus   { background-image: linear-gradient(180deg, rgba(20,20,28,.4), rgba(5,5,7,.5)), url('https://images.unsplash.com/photo-1465353168145-93deebc59cf3?w=600&q=80'); }
.c-morning { background-image: linear-gradient(180deg, rgba(20,20,28,.4), rgba(5,5,7,.5)), url('https://images.unsplash.com/photo-1502905960862-a05f23fa1c6c?w=600&q=80'); }
.c-breath  { background-image: linear-gradient(180deg, rgba(20,20,28,.4), rgba(5,5,7,.5)), url('https://images.unsplash.com/photo-1473773508845-188df298d2d1?w=600&q=80'); }
.c-love    { background-image: linear-gradient(180deg, rgba(20,20,28,.4), rgba(5,5,7,.5)), url('https://images.unsplash.com/photo-1494548162494-384bba4ab999?w=600&q=80'); }
.c-grat    { background-image: linear-gradient(180deg, rgba(20,20,28,.4), rgba(5,5,7,.5)), url('https://images.unsplash.com/photo-1414609245224-afa02bfb3fda?w=600&q=80'); }

/* ============================================================
   PRICING preview
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.plan {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 36px 32px 32px;
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .25s ease, background .25s ease;
  position: relative;
}
.plan.featured {
  border-color: var(--copper);
  background: linear-gradient(180deg, rgba(198, 139, 92, .06), transparent 80%), var(--bg-surface);
}
.plan-badge {
  position: absolute;
  top: -10px; left: 32px;
  background: var(--copper);
  color: var(--bg-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-sm);
}
.plan-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -.3px;
}
.plan-price {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--copper);
  line-height: 1;
  letter-spacing: -1.5px;
}
.plan-price span {
  font-size: 14px;
  color: var(--cream-mute);
  font-family: var(--sans);
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  margin-left: 4px;
}
.plan-note { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cream-mute); }
.plan-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.plan-list li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--cream);
}
.plan-list li::before {
  content: '—';
  color: var(--copper);
  font-weight: 500;
  flex-shrink: 0;
}

/* ============================================================
   ECOSYSTEM
   ============================================================ */

.ecosystem-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 64px 56px;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
.ecosystem-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 139, 92, .12) 0%, transparent 65%);
  pointer-events: none;
}
.eco-head { display: flex; gap: 60px; align-items: baseline; margin-bottom: 48px; flex-wrap: wrap; }
.eco-head h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -1px;
  flex: 1;
  min-width: 280px;
}
.eco-head h2 em { font-style: italic; color: var(--copper); }
.eco-head p {
  flex: 1;
  min-width: 280px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream-mute);
}

.eco-apps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.eco-app {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  transition: border-color .25s ease, background .25s ease;
}
.eco-app:hover { border-color: var(--copper); }
.eco-app.active { border-color: var(--copper); background: rgba(198, 139, 92, .04); }
.eco-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--copper);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--copper);
  flex-shrink: 0;
}
.eco-app .name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -.3px;
}
.eco-app .name em { font-style: italic; color: var(--copper); }
.eco-app .desc { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cream-mute); margin-top: 4px; display: block; }

/* ============================================================
   FINAL CTA
   ============================================================ */

.cta-final {
  text-align: center;
  padding: 160px 0 140px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-deep), rgba(20, 20, 28, .4), var(--bg-deep));
  position: relative;
}
.cta-final .label-up { margin-bottom: 24px; display: block; }
.cta-final h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.cta-final h2 em { font-style: italic; color: var(--copper); }
.cta-final p {
  font-size: 17px;
  color: var(--cream-mute);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.55;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  padding: 80px 0 60px;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .nav-logo { margin-bottom: 8px; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--cream-mute);
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 13px;
  color: var(--cream-mute);
  transition: color .25s ease;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cream-mute); }

/* ============================================================
   Reveal animations (gentle, no bounce)
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease-out, transform .8s ease-out;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  :root { --section-y: 100px; --gutter-lg: 28px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { order: -1; }
  .device-frame { width: 280px; height: 580px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step { border-right: none; border-bottom: 1px solid var(--line-soft); padding: 0 0 40px; margin-bottom: 40px; }
  .step + .step { padding-left: 0; }
  .step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --section-y: 80px; --gutter-lg: 20px; }
  body { font-size: 14px; }
  .nav-links { display: none; }
  .hero { padding-top: 100px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat { height: 160px; }
  .ecosystem-card { padding: 40px 24px; }
  .eco-head { gap: 24px; margin-bottom: 32px; }
  .eco-apps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .device-frame { width: 240px; height: 500px; }
  .dv-h { font-size: 28px; }
  .dv-card { height: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
