/* ============================================================================
   BeaglePrep marketing site
   "Field journal meets national park" — warm, tactile, calm.
   Shared by the landing page (index.html) and the privacy policy (privacy/).
   ========================================================================= */

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

:root {
  /* ── Palette (see planning handoff) ── */
  --paper:       #f3ecdb;  /* primary background, light text on dark, cards */
  --paper-2:     #efe6d0;  /* alternating section background */
  --forest:      #2c4632;  /* primary action, dark spotlights, Pro card */
  --forest-deep: #23381f;  /* inner ring of prep-score gauge */
  --sage:        #6b8a6e;  /* secondary; canning bg; positive bars */
  --khaki:       #b09767;  /* warm tan accent, index numerals */
  --rust:        #b8593a;  /* alerts, "expiring soon", low supply */
  --amber:       #c68a2e;  /* hero bg, CTA accent, gauge arc */
  --bark:        #5a4a32;  /* trust strip bg, metadata text */
  --ink:         #1f1b14;  /* primary text on paper, near-black surfaces */
  --ink-2:       #1a160f;  /* footer background */
  --body:        #3f3a2e;  /* body copy on paper */
  --body-muted:  #5a5240;  /* muted body copy */
  --accent-tint: #e3e9da;  /* pale sage chip background */
  --hairline:    rgba(90, 74, 50, 0.16);

  /* ── Type ── */
  --font-display: 'Bitter', Georgia, 'Times New Roman', serif;
  --font-body:    'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* ── Layout ── */
  --maxw: 1140px;
  --pad: 48px;
  --radius: 13px;
  --radius-card: 16px;

  /* ── Shadows ── */
  --shadow-card:   0 16px 30px -18px rgba(31, 27, 20, 0.5);
  --shadow-phone:  0 28px 50px -22px rgba(31, 27, 20, 0.6);
  --shadow-btn:    0 12px 24px -8px rgba(44, 70, 50, 0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--amber);
  color: var(--ink);
}

img {
  display: block;
  max-width: 100%;
}

/* ── Shared layout helpers ─────────────────────────────────────────────── */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  max-width: 480px;
}

/* Topographic "contour line" texture. Applied via ::before so it can sit on
   any colored section without disturbing layout. Dark lines by default. */
.topo {
  position: relative;
  overflow: hidden;
}
.topo > * {
  position: relative;
  z-index: 1;
}
.topo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 14% -10%, transparent 0 30px, rgba(31, 27, 20, 0.055) 30px 31px),
    repeating-radial-gradient(circle at 94% 120%, transparent 0 26px, rgba(31, 27, 20, 0.045) 26px 27px);
}
/* On dark sections the contour lines are pale paper instead of ink. */
.topo--light::before {
  background-image:
    repeating-radial-gradient(circle at 18% 110%, transparent 0 34px, rgba(243, 236, 219, 0.05) 34px 35px),
    repeating-radial-gradient(circle at 95% -10%, transparent 0 30px, rgba(243, 236, 219, 0.045) 30px 31px);
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  padding: 15px 24px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--dark {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 12px 24px -8px rgba(31, 27, 20, 0.4);
}
.btn--dark:hover { background: #000; }

.btn--light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--ink);
}
.btn--light:hover { background: #fff; }

.btn--amber {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 14px 28px -10px rgba(198, 138, 46, 0.6);
}
.btn--amber:hover { background: #d2962f; }

.btn--sm {
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 11px;
}

/* Play triangle glyph (Google Play). Color set per button. */
.tri {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}
.btn--sm .tri {
  border-top-width: 6.5px;
  border-bottom-width: 6.5px;
  border-left-width: 10px;
}

/* ── Header (sticky paper-blur bar — shared) ───────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 236, 219, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 2px solid var(--ink);
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  color: var(--ink);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  opacity: 0.82;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.nav-links a:hover { opacity: 1; }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  background: var(--amber);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 72px;
}
.hero-medallion {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.medallion {
  width: 248px;
  height: 248px;
  max-width: 100%;
  border-radius: 50%;
  background: var(--paper);
  border: 4px solid var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 26px 48px -18px rgba(31, 27, 20, 0.5);
}
.medallion img {
  width: 202px;
  height: 202px;
  border-radius: 50%;
}
.medallion-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--bark);
  margin-top: 26px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 18px;
}
.hero-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18.5px;
  line-height: 1.55;
  color: #3a2f1c;
  margin: 0 0 30px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.hero-shots {
  display: flex;
  gap: 14px;
}
.hero-shots img {
  width: 132px;
  height: auto;
  border-radius: 14px;
  border: 3px solid var(--ink);
  box-shadow: 0 16px 30px -16px rgba(31, 27, 20, 0.5);
}
.hero-shots img:nth-child(1) { transform: rotate(-3deg); }
.hero-shots img:nth-child(2) { position: relative; z-index: 2; box-shadow: 0 18px 34px -16px rgba(31, 27, 20, 0.55); }
.hero-shots img:nth-child(3) { transform: rotate(3deg); }

/* ── Trust strip ───────────────────────────────────────────────────────── */
.trust {
  background: var(--bark);
}
.trust .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 18px;
}
.trust-data {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--paper);
}
.trust-data b {
  color: var(--amber);
  font-weight: 600;
}
.trust-meta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  color: rgba(243, 236, 219, 0.75);
}

/* ── Two-column content rows ───────────────────────────────────────────── */
.row {
  display: grid;
  align-items: center;
}
.media {
  display: flex;
  justify-content: center;
}

/* Phone screenshot with bezel + tilted tint slab behind it */
.phone {
  position: relative;
}
.phone img {
  position: relative;
  width: 264px;
  height: auto;
  border-radius: 22px;
  border: 5px solid var(--ink);
  box-shadow: var(--shadow-phone);
}
.phone--tint::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 30px;
  background: var(--khaki);
  opacity: 0.18;
  transform: rotate(-3deg);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 18px;
}

/* ── How it works (barcode) ────────────────────────────────────────────── */
.how { background: var(--paper); }
.how .row { grid-template-columns: 0.85fr 1fr; gap: 60px; }
.how .eyebrow { color: var(--rust); }
.how .section-title { font-size: 40px; line-height: 1.1; }

.numbered {
  display: grid;
  gap: 14px;
  max-width: 480px;
  margin-top: 26px;
}
.numbered li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  list-style: none;
}
.num {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--accent-tint);
  border: 1px solid rgba(44, 70, 50, 0.2);
  color: var(--forest);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  display: grid;
  place-items: center;
}
.numbered span:last-child {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
}

/* ── Canning ───────────────────────────────────────────────────────────── */
.canning { background: var(--sage); }
.canning .row { grid-template-columns: 1.02fr 0.98fr; gap: 56px; }
.canning .eyebrow { color: var(--forest-deep); }
.canning .section-title { font-size: 42px; }
.canning .lead { color: #243a26; }

.checks {
  display: grid;
  gap: 14px;
  max-width: 480px;
  margin-top: 28px;
}
.checks li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  list-style: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--ink);
}
.checks li::before {
  content: "✓";
  color: var(--ink);
  font-weight: 900;
  flex: none;
  font-size: 16px;
  line-height: 1.3;
}

.jars {
  display: grid;
  gap: 14px;
}
.jar {
  background: var(--paper);
  border: 1px solid rgba(31, 27, 20, 0.14);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 16px;
}
.jar-badge {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--paper);
}
.jar-body { flex: 1; }
.jar-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.jar-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.jar-status {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}
.jar-meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--bark);
  margin-top: 4px;
}
.jar-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 4px;
}
.jar-summary .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
}
.jar-summary span:last-child {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
}
.is-sage { color: var(--sage); }
.is-amber { color: var(--amber); }

/* ── Feature grid ──────────────────────────────────────────────────────── */
.features {
  background: var(--paper-2);
  border-top: 1px solid rgba(90, 74, 50, 0.12);
  border-bottom: 1px solid rgba(90, 74, 50, 0.12);
}
.section-head {
  text-align: center;
  margin-bottom: 50px;
}
.section-head .eyebrow { color: var(--sage); }
.section-head .section-title {
  font-size: 42px;
  margin: 0;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 26px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.feat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
}
.feat-idx {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--khaki);
}
.feat-card h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 8px;
}
.feat-card p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--body-muted);
  margin: 0;
}
.feat-card--pro {
  background: var(--forest);
  border-color: var(--forest);
}
.feat-card--pro h3 { color: var(--paper); }
.feat-card--pro p { color: rgba(243, 236, 219, 0.8); }
.pro-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  background: var(--amber);
  padding: 3px 8px;
  border-radius: 5px;
}

/* Icon tile colors */
.tile-forest { background: var(--forest); }
.tile-amber  { background: var(--amber); }
.tile-sage   { background: var(--sage); }
.tile-rust   { background: var(--rust); }
.tile-bark   { background: var(--bark); }

/* CSS glyphs inside icon tiles (no emoji, minimal line shapes) */
.g-square { width: 14px; height: 14px; border: 2.5px solid var(--paper); border-radius: 3px; }
.g-ring   { width: 16px; height: 16px; border: 3px solid var(--paper); border-radius: 50%; }
.g-arc    { width: 14px; height: 14px; border: 2.5px solid var(--paper); border-radius: 50%; border-top-color: transparent; transform: rotate(45deg); }
.g-bars   { display: flex; gap: 2px; }
.g-bars i { width: 2.5px; height: 14px; background: var(--paper); }
.g-stack  { display: flex; flex-direction: column; gap: 3px; }
.g-stack i { height: 2.5px; background: var(--paper); }
.g-stack i:nth-child(1) { width: 15px; }
.g-stack i:nth-child(2) { width: 15px; }
.g-stack i:nth-child(3) { width: 9px; }
.feat-card--pro .g-square { border-color: var(--forest); }

/* ── Prep score spotlight ──────────────────────────────────────────────── */
.prep { background: var(--forest); }
.prep .row { grid-template-columns: 1fr 0.82fr; gap: 60px; }
.prep .eyebrow { color: var(--amber); }
.prep .section-title { font-size: 44px; color: var(--paper); }
.prep .lead { color: rgba(243, 236, 219, 0.82); margin-bottom: 36px; }

.gauge-cluster {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}
.gauge {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: conic-gradient(var(--amber) 0 86%, rgba(243, 236, 219, 0.14) 86% 100%);
  display: grid;
  place-items: center;
  flex: none;
}
.gauge-inner {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--forest-deep);
  display: grid;
  place-items: center;
  text-align: center;
}
.gauge-pct {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 34px;
  color: var(--paper);
  line-height: 1;
}
.gauge-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--amber);
  margin-top: 5px;
}
.bars {
  display: grid;
  gap: 14px;
  min-width: 240px;
  flex: 1;
}
.bar-head {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--paper);
  margin-bottom: 6px;
}
.bar-head .days { font-family: var(--font-mono); }
.bar-track {
  height: 8px;
  border-radius: 5px;
  background: rgba(243, 236, 219, 0.14);
  overflow: hidden;
}
.bar-fill { height: 100%; }
.bar-fill--sage  { background: var(--sage); }
.bar-fill--amber { background: var(--amber); }
.bar-fill--rust  { background: var(--rust); }

/* ── Three-column detail ───────────────────────────────────────────────── */
.detail { background: var(--paper); }
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.detail-col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(90, 74, 50, 0.18);
}
.detail-col ul { list-style: none; display: grid; gap: 12px; }
.detail-col li {
  display: flex;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--body);
}
.detail-col li::before {
  content: "—";
  font-weight: 900;
  flex: none;
}
.dash-sage  li::before { color: var(--sage); }
.dash-amber li::before { color: var(--amber); }
.dash-bark  li::before { color: var(--bark); }

/* ── Pricing ───────────────────────────────────────────────────────────── */
.pricing {
  background: var(--paper-2);
  border-top: 1px solid rgba(90, 74, 50, 0.12);
}
.pricing .section-head .eyebrow { color: var(--rust); }
.pricing .section-head .section-title { margin: 0 0 10px; }
.pricing-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  color: var(--body-muted);
  margin: 0;
}
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
  align-items: stretch;
}
.plan {
  border-radius: 20px;
  padding: 34px;
  display: flex;
  flex-direction: column;
}
.plan--free {
  background: var(--paper);
  border: 1px solid rgba(90, 74, 50, 0.2);
}
.plan--pro {
  background: var(--forest);
  border: 1px solid var(--forest);
  box-shadow: 0 26px 50px -24px rgba(44, 70, 50, 0.6);
}
.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.plan-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bark);
}
.plan--pro .plan-name { color: var(--amber); }
.plan-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  background: var(--amber);
  padding: 4px 10px;
  border-radius: 6px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0 4px;
}
.plan-price .amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 46px;
  color: var(--ink);
}
.plan--pro .plan-price .amount { color: var(--paper); }
.plan-price .per {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: rgba(243, 236, 219, 0.7);
}
.plan-note {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--body-muted);
  margin: 0 0 24px;
}
.plan--pro .plan-note { color: rgba(243, 236, 219, 0.8); }
.plan-features {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
}
.plan-features li::before {
  content: "✓";
  color: var(--forest);
  font-weight: 900;
  flex: none;
}
.plan-features li.limit::before {
  content: "·";
  color: inherit;
}
.plan-features li.limit { color: #8a7c5f; }
.plan--pro .plan-features li { color: var(--paper); }
.plan--pro .plan-features li::before { color: var(--amber); }
.plan-cta { margin-top: auto; }
.plan-cta .btn { width: 100%; justify-content: center; }
.plan-cta--outline {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  color: var(--forest);
  border: 1.5px solid rgba(90, 74, 50, 0.4);
  border-radius: 12px;
  padding: 13px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.plan-cta--outline:hover {
  border-color: var(--forest);
  background: rgba(44, 70, 50, 0.04);
}
.plan-cta--solid {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 12px;
  padding: 14px;
  text-decoration: none;
  display: block;
  transition: background-color 0.2s ease, transform 0.12s ease;
}
.plan-cta--solid:hover { background: #d2962f; transform: translateY(-1px); }
.plan-unlock {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(243, 236, 219, 0.6);
  margin-top: 12px;
}

/* ── Final CTA ─────────────────────────────────────────────────────────── */
.final-cta { background: var(--ink); }
.final-cta .wrap {
  max-width: 760px;
  text-align: center;
  padding-top: 88px;
  padding-bottom: 88px;
}
.cta-medallion {
  display: inline-flex;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--forest);
  border: 2px solid var(--sage);
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.cta-medallion img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 0 0 16px;
}
.final-cta p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(243, 236, 219, 0.78);
  margin: 0 auto 32px;
  max-width: 480px;
}
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.ios-note {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(243, 236, 219, 0.6);
}

/* ── Footer (shared) ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink-2);
  border-top: 1px solid rgba(243, 236, 219, 0.08);
}
.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 30px;
  padding-bottom: 30px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.footer-brand img {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  opacity: 0.92;
}
.footer-brand span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: rgba(243, 236, 219, 0.85);
}
.footer-copy {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: rgba(243, 236, 219, 0.45);
}
.footer-links {
  display: flex;
  gap: 22px;
}
.footer-links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: rgba(243, 236, 219, 0.6);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--paper); }

/* ── Privacy policy content ────────────────────────────────────────────── */
.policy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px var(--pad) 80px;
}
.policy-content h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 40px);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}
.policy-content .updated {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--body-muted);
  margin-bottom: 36px;
}
.policy-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 10px;
}
.policy-content p,
.policy-content ul,
.policy-content ol {
  font-size: 15.5px;
  color: var(--body);
  margin-bottom: 14px;
  line-height: 1.65;
}
.policy-content ul,
.policy-content ol {
  padding-left: 1.4rem;
}
.policy-content li { margin-bottom: 6px; }
.policy-content a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy-content a:hover { color: #9c4830; }

/* ── Responsive ────────────────────────────────────────────────────────── */

/* Tablet: collapse 2-col rows; feature grid → 2-up */
@media (max-width: 860px) {
  :root { --pad: 28px; }

  .hero .wrap,
  .how .row,
  .canning .row,
  .prep .row,
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero .wrap { padding-top: 40px; }
  .hero-medallion { order: -1; }
  .hero h1 { font-size: 40px; }

  /* Lead each spotlight row with its heading; the screenshot stacks below.
     Section rows set their columns via two-class selectors (e.g. .canning
     .row), so this single-column override must be equally specific to win —
     a bare `.row` here loses the cascade and the columns never collapse. */
  .how .media { order: 1; }

  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 460px; }

  .section { padding-top: 64px; padding-bottom: 64px; }
  .how .section-title,
  .canning .section-title,
  .prep .section-title,
  .section-head .section-title { font-size: 34px; }
  .final-cta h2 { font-size: 38px; }
}

/* Phone: hide inline nav links; feature grid → 1-up */
@media (max-width: 600px) {
  .nav-links { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .detail-grid { gap: 32px; }
  .hero h1 { font-size: 36px; }
  .trust .wrap { flex-direction: column; align-items: flex-start; gap: 10px; }
  .site-footer .wrap { justify-content: center; text-align: center; }
  /* Three fixed-width phone shots (3×132px) overflow a narrow column and get
     clipped at the screen edges — size them to share the row width instead. */
  .hero-shots { gap: 10px; justify-content: center; }
  .hero-shots img { width: calc((100% - 20px) / 3); }
}

/* Very narrow: drop the hero phone strip to two shots so they stay legible */
@media (max-width: 380px) {
  .hero-shots img:nth-child(3) { display: none; }
  .hero-shots img { width: calc((100% - 10px) / 2); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover,
  .feat-card:hover,
  .plan-cta--solid:hover { transform: none; }
}
