/* ============================================================
   RxShield — Marketing site styles
   Mobile-first, responsive
   ============================================================ */

:root {
  --primary: #2D6A5F;
  --primary-light: #5FA894;
  --primary-surface: #E8F3F0;
  --accent: #F2A65A;
  --accent-light: #FFF0E0;
  --ink: #1C2321;
  --ink-soft: #46514B;
  --ink-faint: #6B736F;
  --surface: #FBFAF7;
  --surface-card: #FFFFFF;
  --border: #DDD8CF;
  --major: #C4432B;
  --moderate: #D68A2E;
  --minor: #8A8F45;
  --safe: #3E8968;
  --dark: #14181A;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(28, 35, 33, 0.06);
  --shadow-md: 0 12px 34px rgba(28, 35, 33, 0.10);
  --shadow-lg: 0 24px 60px rgba(28, 35, 33, 0.14);

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Sora", var(--font-body);

  --container: 1120px;
  --gutter: 24px;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0; font-weight: 700; }
p { margin: 0; }
a { color: var(--primary); }
img, svg { display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 8px 22px rgba(45,106,95,.30); }
.btn--primary:hover { background: #256054; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(45,106,95,.36); }
.btn--ghost { background: transparent; color: var(--primary); border-color: rgba(45,106,95,.45); }
.btn--ghost:hover { background: var(--primary-surface); transform: translateY(-2px); }
.btn--outline { border-color: var(--primary); color: var(--primary); background: transparent; padding: 12px 20px; font-size: .9rem; }
.btn--outline:hover { background: var(--primary-surface); }
.btn--accent { background: var(--accent); color: #3a2a12; box-shadow: 0 8px 22px rgba(242,166,90,.42); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(242,166,90,.5); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-light);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--accent); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, .82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--border); box-shadow: 0 4px 20px rgba(28,35,33,.05); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand__mark { width: 30px; height: 30px; color: var(--primary); }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; }

.nav__toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; padding: 10px; }
.nav__toggle span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__menu {
  position: absolute;
  top: 66px; left: 0; right: 0;
  display: flex; flex-direction: column; gap: 4px;
  background: var(--surface-card);
  padding: 12px var(--gutter) 22px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform .22s ease, opacity .22s ease, visibility .22s;
}
.nav__menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
.nav__link { padding: 12px 8px; color: var(--ink-soft); font-weight: 500; text-decoration: none; border-radius: 10px; }
.nav__link:hover { color: var(--primary); background: var(--primary-surface); }
.nav__cta { margin-top: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-top: 48px; padding-bottom: 72px; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; pointer-events: none; }
.hero__blob--a { width: 340px; height: 340px; background: var(--primary-surface); top: -80px; right: -120px; animation: floatBlob 12s ease-in-out infinite; }
.hero__blob--b { width: 240px; height: 240px; background: #FDEAD0; bottom: 0; left: -100px; animation: floatBlob 16s ease-in-out infinite reverse; }

.hero__grid { display: grid; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero__title { font-size: clamp(2.1rem, 8vw, 3.3rem); letter-spacing: -.03em; margin: 16px 0 18px; }
.hero__sub { color: var(--ink-soft); font-size: 1.06rem; max-width: 30ch; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__trust { list-style: none; display: grid; gap: 10px; margin: 28px 0 0; padding: 0; }
.hero__trust li { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-weight: 500; font-size: .92rem; }
.hero__trust svg { width: 20px; height: 20px; color: var(--primary-light); flex-shrink: 0; }

/* Phone mock */
.hero__phone-wrap { position: relative; width: min(320px, 100%); margin-inline: auto; }
.phone { position: relative; width: 100%; aspect-ratio: 0.5; max-width: 300px; margin-inline: auto; background: #101416; border-radius: 44px; padding: 12px; box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.06) inset; }
.phone__speaker { width: 90px; height: 20px; margin: 2px auto 10px; background: #23292c; border-radius: 10px; }
.phone__screen { position: relative; width: 100%; height: calc(100% - 32px); border-radius: 32px; overflow: hidden; background: var(--surface); animation: screenGlow 6s ease-in-out infinite; }

.app { display: flex; flex-direction: column; gap: 12px; padding: 18px 16px; height: 100%; }
.app__top { display: flex; align-items: center; justify-content: space-between; }
.app__kicker { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.app__date { font-size: .78rem; color: var(--ink-faint); }
.app__avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--primary); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .9rem; }

.app__streak { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; background: var(--accent-light); border-radius: 999px; padding: 6px 12px; font-weight: 700; color: #7a4a10; }
.app__streak-num { font-family: var(--font-display); font-size: 1.05rem; }
.app__streak-label { font-size: .78rem; }
.app__flame { font-size: .95rem; animation: pulse 1.6s ease-in-out infinite; }

.app__card { background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); padding: 12px; }
.app__card--dose { display: flex; align-items: center; gap: 12px; }
.app__pill { position: relative; width: 30px; height: 30px; flex-shrink: 0; animation: bob 3.2s ease-in-out infinite; }
.app__pill-body { position: absolute; inset: 6px 2px; border-radius: 999px; background: var(--primary); }
.app__pill-cap { position: absolute; inset: 0; border-radius: 999px; border: 3px solid var(--primary-light); }
.app__card-info { flex: 1; min-width: 0; }
.app__card-name { font-weight: 600; font-size: .88rem; color: var(--ink); }
.app__card-time { font-size: .76rem; color: var(--ink-faint); }
.app__check { width: 34px; height: 34px; border-radius: 50%; border: none; background: var(--primary); color: #fff; display: grid; place-items: center; box-shadow: 0 6px 14px rgba(45,106,95,.4); }
.app__check svg { width: 18px; height: 18px; animation: markIn .4s ease-out; }

.app__card--next .app__card-kicker { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-faint); margin-bottom: 6px; }
.app__card-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.app__card-chip { background: var(--accent); color: #3a2a12; font-size: .76rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; }

.app__card--flag { display: flex; align-items: center; gap: 10px; }
.app__flag-icon svg { width: 24px; height: 24px; color: var(--minor); }
.app__card-sub { font-size: .74rem; color: var(--ink-faint); }
.app__safe-badge { background: var(--primary-surface); color: var(--primary); font-weight: 700; font-size: .74rem; padding: 4px 10px; border-radius: 999px; }

.app__card--health { display: flex; flex-direction: column; gap: 8px; }
.app__card-head { display: flex; align-items: center; gap: 8px; }
.app__card-head-icon { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: var(--primary-surface); color: var(--primary); flex-shrink: 0; }
.app__card-head-icon svg { width: 15px; height: 15px; }
.app__card-head-label { font-weight: 700; font-size: .78rem; }
.app__health-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.app__health-tile { border-radius: 9px; padding: 6px 4px 7px; text-align: center; background: #FBFAF7; }
.app__health-tile b { display: block; font-weight: 600; font-size: .62rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .04em; }
.app__health-tile span { display: block; font-family: var(--font-display); font-weight: 700; font-size: .74rem; margin-top: 2px; }

.app__nav { display: flex; justify-content: center; gap: 6px; margin-top: auto; }
.app__nav-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); }
.app__nav-dot.is-active { background: var(--primary); width: 18px; border-radius: 999px; }

.phone-float { position: absolute; display: flex; align-items: center; gap: 8px; background: var(--surface-card); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-md); padding: 10px 14px; font-size: .8rem; color: var(--ink); z-index: 3; }
.phone-float svg { width: 22px; height: 22px; color: var(--primary); }
.phone-float b { font-weight: 700; }
.phone-float--remind { top: 16%; left: -14px; animation: floaty 5s ease-in-out infinite; }
.phone-float--taken { bottom: 14%; right: -14px; color: var(--safe); animation: floaty 6s ease-in-out infinite reverse; }
.phone-float--taken svg { color: var(--safe); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar { border-block: 1px solid var(--border); background: var(--surface-card); }
.trustbar__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); }
.trustbar__item { display: flex; align-items: center; gap: 12px; background: var(--surface-card); padding: 22px 16px; font-weight: 600; font-size: .92rem; }
.trustbar__item svg { width: 24px; height: 24px; color: var(--primary); flex-shrink: 0; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding-block: 64px; }
.section__head { max-width: 640px; margin-bottom: 40px; }
.section__title { font-size: clamp(1.6rem, 6vw, 2.4rem); letter-spacing: -.025em; margin: 14px 0 14px; }
.section__sub { color: var(--ink-soft); font-size: 1.02rem; }

.card { background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* ---------- Features ---------- */
.features { background: var(--surface); }
.features__grid { display: grid; gap: 16px; }
.feature { padding: 26px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.feature__icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--primary-surface); color: var(--primary); margin-bottom: 16px; }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Safety ---------- */
.safety { background: #f4f2ec; }
.safety__grid { display: grid; gap: 14px; }
.severity { display: flex; gap: 14px; padding: 20px; align-items: flex-start; }
.severity__dot { width: 14px; height: 14px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.severity--major { border-color: #f0cdc6; border-left: 5px solid var(--major); }
.severity--major .severity__dot { background: var(--major); }
.severity--major h3 { color: var(--major); }
.severity--moderate { border-color: #f0dfc2; border-left: 5px solid var(--moderate); }
.severity--moderate .severity__dot { background: var(--moderate); }
.severity--moderate h3 { color: #b5750f; }
.severity--minor { border-color: #e7e8cf; border-left: 5px solid var(--minor); }
.severity--minor .severity__dot { background: var(--minor); }
.severity--minor h3 { color: var(--minor); }
.severity h3 { margin-bottom: 4px; font-size: 1.05rem; }
.severity p { color: var(--ink-soft); font-size: .9rem; }

.safety__note { display: flex; gap: 14px; margin-top: 18px; padding: 18px 20px; border-radius: var(--radius); background: var(--accent-light); border: 1px solid #f5d9b5; }
.safety__note svg { width: 24px; height: 24px; color: var(--moderate); flex-shrink: 0; margin-top: 3px; }
.safety__note p { color: var(--ink-soft); font-size: .9rem; }
.safety__note strong { color: var(--ink); }

/* ---------- Health ---------- */
.health { background: var(--surface); }
.health__grid { display: grid; gap: 48px; align-items: center; }
.health__points { display: grid; gap: 20px; margin-top: 28px; }

.health-chart-card { max-width: 420px; margin-inline: auto; background: var(--surface-card); border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow-md); padding: 24px; }
.health-chart-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.health-chart-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.health-chart-card__chip { background: var(--primary-surface); color: var(--primary); font-size: .76rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.health-metric { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); margin-bottom: 16px; }
.health-metric__label { font-size: .78rem; color: var(--ink-faint); font-weight: 600; }
.health-metric__value { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--ink); letter-spacing: -.02em; }
.health-metric__badge { font-size: .72rem; font-weight: 700; padding: 5px 10px; border-radius: 999px; }
.health-metric__badge--good { background: var(--primary-surface); color: var(--primary); }
.health-chart-card__chart { margin-bottom: 12px; }
.health-chart-card__chart svg { width: 100%; height: 84px; }
.health-chart-card__legend { display: flex; gap: 18px; margin-bottom: 16px; }
.health-chart-card__legend span { display: inline-flex; align-items: center; gap: 7px; font-size: .76rem; color: var(--ink-soft); }
.health-chart-card__legend i { width: 14px; height: 4px; border-radius: 999px; display: inline-block; }
.health-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.health-stat { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; }
.health-stat__label { font-size: .7rem; color: var(--ink-faint); font-weight: 600; margin-bottom: 2px; }
.health-stat__value { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.health-stat__value span { font-size: .7rem; color: var(--ink-faint); font-weight: 500; }

/* ---------- Privacy ---------- */
.privacy__grid { display: grid; gap: 48px; align-items: center; }
.privacy__points { display: grid; gap: 20px; margin: 28px 0 32px; }
.privacy__point { display: flex; gap: 16px; }
.privacy__point-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--primary-surface); color: var(--primary); flex-shrink: 0; }
.privacy__point-icon svg { width: 22px; height: 22px; }
.privacy__point h3 { font-size: 1.05rem; margin-bottom: 4px; }
.privacy__point p { color: var(--ink-soft); font-size: .92rem; }

.shield-card { position: relative; max-width: 380px; margin-inline: auto; background: var(--dark); color: #fff; border-radius: 22px; padding: 26px; box-shadow: var(--shadow-lg); }
.shield-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.shield-card__head svg { width: 26px; height: 26px; color: var(--primary-light); }
.shield-card__head span { font-family: var(--font-display); font-weight: 700; }
.shield-card__row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.09); }
.shield-card__lock { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(95,168,148,.16); color: var(--primary-light); flex-shrink: 0; }
.shield-card__lock svg { width: 20px; height: 20px; }
.shield-card__row b { font-size: .98rem; }
.shield-card__row p { color: #a9b4b0; font-size: .82rem; }
.shield-card__float { position: absolute; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--primary-light); color: var(--dark); box-shadow: var(--shadow-md); }
.shield-card__float svg { width: 26px; height: 26px; }
.shield-card__float--check { top: 74px; right: -22px; animation: floaty 5.5s ease-in-out infinite; }

/* ---------- How ---------- */
.how { background: var(--surface); }
.how__list { counter-reset: none; display: grid; gap: 14px; }
.how__item { position: relative; display: flex; flex-direction: column; gap: 6px; padding: 20px 22px 20px 66px; border-radius: var(--radius); background: var(--surface-card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.how__num { position: absolute; left: 18px; top: 20px; width: 34px; height: 34px; border-radius: 50%; background: var(--primary); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); }
.how__item h3 { font-size: 1.08rem; }
.how__item p { color: var(--ink-soft); font-size: .95rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--surface-card); border-block: 1px solid var(--border); }
.faq__inner { max-width: 760px; }
.faq__list { display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq__item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 20px; font-weight: 600; font-size: 1rem; cursor: pointer; color: var(--ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--primary); transition: transform .2s ease; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 20px 20px; color: var(--ink-soft); font-size: .95rem; }

/* ============================================================
   CTA
   ============================================================ */
.cta { padding-bottom: 64px; background: var(--surface); }
.cta__card { text-align: center; padding: 48px 24px; border-radius: 24px; background: var(--primary); color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta__card::before, .cta__card::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.06); }
.cta__card::before { width: 260px; height: 260px; top: -110px; right: -80px; }
.cta__card::after { width: 200px; height: 200px; bottom: -90px; left: -60px; }
.cta__title { font-size: clamp(1.8rem, 6vw, 2.5rem); letter-spacing: -.03em; margin-bottom: 14px; }
.cta__sub { color: #d3e6e1; max-width: 44ch; margin: 0 auto 26px; font-size: 1rem; }
.cta__card .btn { position: relative; z-index: 1; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding-block: 64px; }
.contact__grid { display: grid; gap: 32px; align-items: start; }
.contact__card { padding: 24px; }
.contact__row { display: flex; gap: 16px; align-items: center; margin-bottom: 16px; }
.contact__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--primary-surface); color: var(--primary); flex-shrink: 0; }
.contact__icon svg { width: 24px; height: 24px; }
.contact__label { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-faint); }
.contact__value { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; text-decoration: none; color: var(--primary); word-break: break-all; }
.contact__value:hover { text-decoration: underline; }
.contact__note { color: var(--ink-faint); font-size: .88rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: #cfd6d3; padding: 56px 0 28px; }
.footer .brand { color: #fff; }
.footer__grid { display: grid; gap: 32px; grid-template-columns: 1fr; padding-bottom: 36px; }
.footer__brand p { color: #8f9b97; font-size: .92rem; max-width: 30ch; margin-top: 12px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { color: #fff; font-size: .9rem; margin-bottom: 6px; }
.footer__col a { color: #A9b4b0; text-decoration: none; font-size: .92rem; }
.footer__col a:hover { color: var(--primary-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer__bottom p { font-size: .84rem; color: #7d8884; }
.footer__disclaimer { font-style: italic; }

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-page { padding-block: 56px 80px; }
.privacy-page__card { max-width: 760px; margin-inline: auto; background: var(--surface-card); border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow-md); padding: 34px 24px; }
.privacy-page__card h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); letter-spacing: -.03em; margin-bottom: 8px; }
.privacy-page__updated { color: var(--ink-faint); font-size: .9rem; margin-bottom: 24px; }
.privacy-page__lead { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 28px; }
.privacy-page__intro { color: var(--ink-soft); }
.privacy-page__card h2 { font-size: 1.25rem; margin: 34px 0 10px; padding-top: 22px; border-top: 1px solid var(--border); }
.privacy-page__card h2:first-of-type { border-top: none; }
.privacy-page__card p, .privacy-page__card li { color: var(--ink-soft); font-size: .97rem; }
.privacy-page__card ul { padding-left: 20px; margin: 10px 0; }
.privacy-page__card li { margin: 6px 0; }
.privacy__contact-block { margin-top: 12px; padding: 18px 20px; border-radius: 14px; background: var(--primary-surface); }
.privacy__contact-block p { margin: 4px 0; color: var(--ink); }
.privacy__contact-block a { color: var(--primary); font-weight: 600; word-break: break-all; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

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

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatBlob { 0%,100% { transform: translate(0,0); } 50% { transform: translate(18px, -14px); } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.18); } }
@keyframes screenGlow { 0%,100% { box-shadow: inset 0 0 0 rgba(45,106,95,0); } 50% { box-shadow: inset 0 0 60px rgba(45,106,95,.06); } }
@keyframes dPill { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-3px) rotate(-6deg); } }
@keyframes mark { 0% { transform: scale(0); } 70% { transform: scale(1.2); } 100% { transform: scale(1); } }

/* ============================================================
   RESPONSIVE — TABLET (>=640px)
   ============================================================ */
@media (min-width: 640px) {
  .hero { padding-top: 64px; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero__title { font-size: clamp(2.3rem, 4.5vw, 3.2rem); }
  .trustbar__grid { grid-template-columns: repeat(4, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .safety__grid { grid-template-columns: 2fr 1.5fr 1.5fr; }
  .how__list { grid-template-columns: repeat(2, 1fr); }
  .privacy__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .health__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact__grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

/* ============================================================
   RESPONSIVE — DESKTOP (>=1000px)
   ============================================================ */
@media (min-width: 1000px) {
  .nav__toggle { display: none; }
  .nav__menu {
    position: static; flex-direction: row; align-items: center; gap: 4px;
    background: none; border: none; box-shadow: none; padding: 0;
    transform: none; opacity: 1; visibility: visible; pointer-events: auto;
  }
  .nav__link { padding: 10px 14px; }
  .nav__cta { margin: 0 0 0 12px; padding: 12px 20px; }
  .section { padding-block: 96px; }
  .features__grid { grid-template-columns: repeat(3, 1fr); }
  .safety__grid { grid-template-columns: repeat(3, 1fr); }
  .how__list { grid-template-columns: repeat(4, 1fr); }
  .cta__card { padding: 76px 40px; }
}