/* Gluco AI — brand palette sampled from the iOS app icon gradient */
:root {
  --rose-light: #f8a7b8;   /* top of icon gradient */
  --rose: #ef7991;         /* mid */
  --rose-deep: #e05a7a;    /* bottom of icon gradient */
  --rose-soft: #ffd9e1;    /* soft pill / tint */
  --cream: #fff4f7;        /* page cream, faint pink */
  --ink: #2a0e18;          /* deep plum-ink, reads as brand */
  --ink-soft: #4a2733;
  --muted: #8a6b74;
  --line: rgba(42, 14, 24, 0.08);
  --white: #ffffff;
  --green: #3ec28f;
  --amber: #f5b041;
  --red: #e05a5a;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 10px 40px -10px rgba(42, 14, 24, 0.15);
  --shadow-lg: 0 30px 80px -20px rgba(224, 90, 122, 0.35);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream) 0%, #ffffff 40%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255, 245, 242, 0.75);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: block;
  object-fit: cover;
  box-shadow: 0 6px 16px -4px rgba(224, 90, 122, 0.45);
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--rose-deep); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose-light), var(--rose-deep));
  color: white;
  box-shadow: 0 10px 24px -8px rgba(224, 90, 122, 0.6);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -8px rgba(224, 90, 122, 0.75); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--rose-soft); border-color: transparent; }

.btn-lg { padding: 16px 28px; font-size: 16px; }

/* Hero */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(248, 167, 184, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  box-shadow: 0 16px 40px -12px rgba(224, 90, 122, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  margin-bottom: 24px;
  display: block;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose-deep);
}
h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  font-weight: 800;
}
h1 .accent {
  background: linear-gradient(135deg, var(--rose-light), var(--rose-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  font-size: 19px;
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 14px;
  color: var(--muted);
}
.stars { color: #f5b041; letter-spacing: 2px; }

/* Hero screenshot — uses real App Store screenshot */
.hero-shot {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-shot img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 36px;
  transform: rotate(-3deg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-shot img:hover { transform: rotate(0deg) scale(1.02); }

/* Screenshot rail */
.screens-section { padding-bottom: 100px; }
.screens-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 24px 40px;
  margin: 0 -24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.screens-rail::-webkit-scrollbar { display: none; }
.shot {
  flex: 0 0 auto;
  width: 240px;
  margin: 0;
  text-align: center;
  scroll-snap-align: center;
  transition: transform 0.25s ease;
}
.shot:hover { transform: translateY(-6px); }
.shot img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  display: block;
}
.shot figcaption {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}

/* Phone mockup (kept for reference / future use) */
.phone {
  position: relative;
  width: 320px;
  height: 660px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 52px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: linear-gradient(180deg, #fff4f7 0%, #ffe1ea 100%);
  overflow: hidden;
  position: relative;
  padding: 50px 20px 20px;
}
.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: var(--ink);
  border-radius: 999px;
  z-index: 2;
}
.screen-greet {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}
.screen-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.scan-card {
  background: white;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 30px -10px rgba(12, 7, 10, 0.1);
  margin-bottom: 12px;
}
.scan-meal {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.meal-img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8a7b8, #e05a7a);
  flex-shrink: 0;
}
.meal-info .meal-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}
.meal-info .meal-sub {
  font-size: 12px;
  color: var(--muted);
}
.impact-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.impact-low { background: rgba(62, 194, 143, 0.15); color: #1f8a5f; }
.impact-med { background: rgba(245, 176, 65, 0.18); color: #b57614; }
.impact-high { background: rgba(224, 90, 90, 0.15); color: #b33a3a; }
.impact-pill::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}
.macro-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
}
.macro-row span b { display: block; font-size: 15px; color: var(--ink); margin-bottom: 1px; }
.macro-row span { color: var(--muted); }

.glucose-card {
  background: white;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 30px -10px rgba(12, 7, 10, 0.1);
}
.glucose-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.glucose-label { font-size: 12px; color: var(--muted); }
.glucose-value { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.glucose-value small { font-size: 12px; color: var(--muted); font-weight: 500; margin-left: 4px; }
.glucose-chart {
  height: 50px;
  background: linear-gradient(180deg, rgba(248, 167, 184, 0.25), transparent);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.glucose-chart::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40' preserveAspectRatio='none'><path d='M0,30 C15,28 20,15 35,18 C50,22 55,8 70,12 C85,16 90,28 100,22' stroke='%23e05a7a' stroke-width='2' fill='none'/></svg>");
  background-size: 100% 100%;
}

/* Sections */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  font-weight: 800;
}
.section-head p { color: var(--ink-soft); font-size: 18px; margin: 0; }
.kicker {
  display: inline-block;
  color: var(--rose-deep);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Features grid */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  display: grid; place-items: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.feature h3 { font-size: 19px; margin: 0 0 8px; letter-spacing: -0.01em; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; }

/* How it works */
.how {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: step;
}
.step { position: relative; }
.step-demo {
  position: relative;
  height: 200px;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--line);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px -18px rgba(42, 14, 24, 0.25);
}
.step-demo::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--rose-deep);
  letter-spacing: 0.14em;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 9px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.step h3 { font-size: 20px; margin: 0 0 10px; letter-spacing: -0.01em; }
.step p { margin: 0; color: var(--muted); }

/* ————— Step 1: camera scan ————— */
.demo-snap {
  background: radial-gradient(circle at center, #2a0e18 0%, #14060a 100%);
}
.viewfinder {
  position: absolute;
  inset: 28px;
  border-radius: 14px;
  overflow: hidden;
}
.bracket {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  animation: bracket-pulse 2.6s ease-in-out infinite;
}
.bracket.tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.bracket.tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.bracket.bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
.bracket.br { bottom: 8px; right: 8px; border-left: none; border-top: none; }
@keyframes bracket-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
.plate {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 64px;
  opacity: 0;
  transform: scale(0.8);
  animation: plate-appear 4s ease-out infinite;
}
@keyframes plate-appear {
  0% { opacity: 0; transform: scale(0.8); }
  20%, 70% { opacity: 1; transform: scale(1); }
  85%, 100% { opacity: 0; transform: scale(1.05); }
}
.scanline {
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f8a7b8, transparent);
  box-shadow: 0 0 12px 2px rgba(248, 167, 184, 0.8);
  top: 10%;
  animation: scan 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  opacity: 0;
}
@keyframes scan {
  0%, 15% { top: 10%; opacity: 0; }
  20% { opacity: 1; }
  55% { top: 90%; opacity: 1; }
  60%, 100% { opacity: 0; }
}
.flash {
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  animation: flash 4s steps(1) infinite;
}
@keyframes flash {
  0%, 59%, 62%, 100% { opacity: 0; }
  60% { opacity: 0.7; }
}
.shutter-label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* ————— Step 2: glucose curve ————— */
.demo-chart {
  background: linear-gradient(180deg, #fff4f7 0%, #ffffff 100%);
  padding: 36px 18px 18px;
}
.demo-chart svg { width: 100%; height: 100%; display: block; }
.curve-area {
  opacity: 0;
  animation: area-fade 4.5s ease-in-out infinite;
}
@keyframes area-fade {
  0%, 35% { opacity: 0; }
  55%, 85% { opacity: 1; }
  95%, 100% { opacity: 0; }
}
.curve-line {
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: line-draw 4.5s ease-in-out infinite;
}
@keyframes line-draw {
  0%, 5% { stroke-dashoffset: 340; }
  55% { stroke-dashoffset: 0; }
  85% { stroke-dashoffset: 0; opacity: 1; }
  95%, 100% { stroke-dashoffset: 0; opacity: 0; }
}
.curve-dot {
  opacity: 0;
  transform-origin: center;
  animation: dot-pop 4.5s ease-out infinite;
}
.curve-dot.d1 { animation-delay: 0.6s; }
.curve-dot.d2 { animation-delay: 1.4s; }
.curve-dot.d3 { animation-delay: 2.2s; }
@keyframes dot-pop {
  0%, 8% { opacity: 0; transform: scale(0); }
  12% { opacity: 1; transform: scale(1.8); }
  18% { transform: scale(1); }
  85% { opacity: 1; }
  95%, 100% { opacity: 0; }
}
.impact-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--rose-deep);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 18px -4px rgba(224, 90, 122, 0.6);
  opacity: 0;
  transform: scale(0.6) translateY(-4px);
  animation: badge-in 4.5s ease-out infinite;
  animation-delay: 2.4s;
}
@keyframes badge-in {
  0%, 8% { opacity: 0; transform: scale(0.6) translateY(-4px); }
  15% { opacity: 1; transform: scale(1.15) translateY(0); }
  22%, 85% { opacity: 1; transform: scale(1) translateY(0); }
  95%, 100% { opacity: 0; transform: scale(0.9); }
}
.chart-axis {
  position: absolute;
  bottom: 10px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ————— Step 3: smart swap ————— */
.demo-swap {
  background: linear-gradient(180deg, #fff 0%, #fff4f7 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 30px 18px 18px;
}
.swap-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  width: 180px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 14px -6px rgba(42, 14, 24, 0.12);
}
.swap-emoji { font-size: 18px; }
.swap-name { flex: 1; color: var(--ink); }
.swap-impact {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}
.swap-impact.high { background: rgba(224, 90, 90, 0.15); color: #b33a3a; }
.swap-impact.low { background: rgba(62, 194, 143, 0.18); color: #1f8a5f; }
.swap-card.out {
  animation: swap-out 4.5s ease-in-out infinite;
}
@keyframes swap-out {
  0%, 20% { opacity: 1; transform: translateY(0) scale(1); filter: none; }
  35% { opacity: 0.35; transform: translateY(-4px) scale(0.96); filter: grayscale(0.6); }
  85% { opacity: 0.35; transform: translateY(-4px) scale(0.96); filter: grayscale(0.6); }
  95%, 100% { opacity: 1; transform: translateY(0) scale(1); filter: none; }
}
.swap-arrow {
  color: var(--rose-deep);
  opacity: 0;
  animation: arrow-in 4.5s ease-out infinite;
  animation-delay: 0.6s;
}
@keyframes arrow-in {
  0%, 10% { opacity: 0; transform: translateY(-6px); }
  25%, 88% { opacity: 1; transform: translateY(0); }
  98%, 100% { opacity: 0; }
}
.swap-card.in {
  opacity: 0;
  transform: translateY(8px);
  animation: swap-in 4.5s ease-out infinite;
  animation-delay: 0.9s;
  border-color: rgba(62, 194, 143, 0.4);
  box-shadow: 0 6px 18px -6px rgba(62, 194, 143, 0.35);
}
@keyframes swap-in {
  0%, 15% { opacity: 0; transform: translateY(10px) scale(0.94); }
  30% { opacity: 1; transform: translateY(0) scale(1.04); }
  38%, 85% { opacity: 1; transform: translateY(0) scale(1); }
  95%, 100% { opacity: 0; transform: translateY(4px); }
}
.swap-check {
  position: absolute;
  bottom: 18px;
  right: 22px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #3ec28f;
  color: white;
  font-size: 16px;
  font-weight: 800;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0);
  animation: check-pop 4.5s ease-out infinite;
  animation-delay: 1.8s;
  box-shadow: 0 8px 22px -4px rgba(62, 194, 143, 0.55);
}
@keyframes check-pop {
  0%, 10% { opacity: 0; transform: scale(0); }
  20% { opacity: 1; transform: scale(1.3); }
  28%, 85% { opacity: 1; transform: scale(1); }
  95%, 100% { opacity: 0; transform: scale(0.8); }
}

@media (prefers-reduced-motion: reduce) {
  .bracket, .plate, .scanline, .flash,
  .curve-area, .curve-line, .curve-dot, .impact-badge,
  .swap-card.out, .swap-arrow, .swap-card.in, .swap-check {
    animation: none !important;
  }
  .plate, .curve-area, .impact-badge, .swap-card.in, .swap-check { opacity: 1; transform: none; }
  .curve-line { stroke-dashoffset: 0; }
}

/* Testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quote {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.quote-stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 12px; font-size: 15px; }
.quote p { font-size: 16px; color: var(--ink-soft); margin: 0 0 16px; line-height: 1.6; }
.quote-author { font-size: 14px; color: var(--muted); font-weight: 600; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--rose-light), var(--rose-deep));
  color: white;
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-band h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin: 0 0 12px;
  letter-spacing: -0.025em;
  position: relative;
}
.cta-band p { font-size: 18px; opacity: 0.95; margin: 0 0 28px; position: relative; }
.btn-white {
  background: white;
  color: var(--rose-deep);
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(0,0,0,0.25); }

/* Footer */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
  margin-top: 60px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
}
.footer-links a:hover { color: var(--rose-deep); }
.footer-copy { font-size: 13px; color: var(--muted); }
.medical-disclaimer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 800px;
}

/* Legal pages */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.legal h1 { font-size: 40px; margin-bottom: 8px; letter-spacing: -0.025em; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 40px; }
.legal h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.legal h3 { font-size: 17px; margin-top: 24px; margin-bottom: 8px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--rose-deep); text-decoration: underline; }
.legal hr { border: none; border-top: 1px solid var(--line); margin: 32px 0; }

/* Responsive */
@media (max-width: 900px) {
  .hero { padding: 50px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .phone { transform: rotate(0deg) scale(0.9); }
  .features, .steps, .quotes { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  section { padding: 60px 0; }
  .cta-band { padding: 48px 28px; }
}
