/* ============================================================
   Restock Notify · v2 marketing surface
   Warm cream + brass · editorial-boutique · "Aesop × Square"
   Shared by /, /about, /pricing, /run-my-numbers, /help
   ============================================================ */

/* ---------- Fonts (Fraunces + General Sans + JetBrains Mono) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT@0,9..144,300..900,30..100;1,9..144,300..900,30..100&family=JetBrains+Mono:wght@400;500;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=general-sans@200,300,400,500,600,700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Warm-cream palette */
  --bg:          #F4EFE4;      /* warm bone — page background */
  --bg-card:     #FCF9F2;      /* warmer cream — surfaces */
  --bg-warm:     #ECE3D0;      /* mid-warmth */
  --bg-deep:     #16233E;      /* warm near-black — for inversion */
  --bg-deep-2:   #18233A;      /* slightly lifted warm dark */

  /* Inks */
  --ink:         #16233E;      /* warm near-black */
  --ink-2:       #2E3A52;      /* warm sienna ink */
  --ink-dim:     #5A6478;      /* warm graphite */
  --ink-hush:    #5F6672;      /* warm taupe — darkened to 5:1 on cream (was 2.3:1) */
  --ink-faint:   #C2C6CE;      /* very soft warm */

  /* Brass + warm accents */
  --brass:       #B5743E;      /* primary brass */
  --brass-deep:  #8F5A30;      /* darker brass */
  --brass-glow:  #E7DCC4;      /* soft luminous brass */
  --rust:        #1F3A5C;      /* terracotta CTA / emphasis */
  --rust-deep:   #162C46;      /* darker rust on hover */
  --sage:        #2F5D45;      /* positive / earnings */
  --berry:       #8E3B3B;      /* warning / loss */

  /* Hairlines */
  --line:        rgba(22, 35, 62, 0.08);
  --line-2:      rgba(22, 35, 62, 0.16);
  --line-brass:  rgba(181, 116, 62, 0.32);

  /* Type stacks */
  --serif:       'Fraunces', 'Georgia', 'Times New Roman', serif;
  --sans:        'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:        'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Type sizing — fluid */
  --t-display:   clamp(64px, 11vw, 168px);
  --t-h1:        clamp(48px, 7.5vw, 112px);
  --t-h2:        clamp(38px, 5.5vw, 84px);
  --t-h3:        clamp(28px, 3.4vw, 44px);
  --t-h4:        clamp(20px, 2vw, 26px);
  --t-body:      17px;
  --t-body-lg:   19px;
  --t-small:     14px;
  --t-eyebrow:   11px;
  --eyebrow-track: 0.18em;

  /* Spacing */
  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap-md: 28px;
  --gap-lg: 56px;
  --gap-xl: 96px;
  --gap-2xl: 144px;

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    0.18s;
  --dur-base:    0.32s;
  --dur-slow:    0.72s;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
}

/* ---------- Reset + base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
html, body {
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: var(--t-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--brass); color: var(--bg); }

/* ---------- Paper-grain texture overlay (always on, very subtle) ---------- */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  background-image:
    radial-gradient(rgba(22, 35, 62, 0.045) 1px, transparent 1px),
    radial-gradient(rgba(181, 116, 62, 0.035) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1.5px 1.5px;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

/* Soft warm vignette */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(231, 220, 196, 0.18), transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(31, 58, 92, 0.06), transparent 50%);
}

/* ---------- Typography ---------- */
.serif    { font-family: var(--serif); }
.sans     { font-family: var(--sans); }
.mono     { font-family: var(--mono); }
.italic   { font-style: italic; }

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: var(--t-display);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.display em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--brass-deep);
}

h1, .h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: var(--t-h1);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h1 em, .h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--brass-deep);
}

h2, .h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 120, "SOFT" 60;
  font-size: var(--t-h2);
  line-height: 0.98;
  letter-spacing: -0.028em;
  color: var(--ink);
}
h2 em, .h2 em {
  font-style: italic;
  font-variation-settings: "opsz" 120, "SOFT" 100;
  color: var(--brass-deep);
}

h3, .h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 60, "SOFT" 40;
  font-size: var(--t-h3);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h4, .h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: var(--t-h4);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}

p, .body {
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.65;
  color: var(--ink-2);
}
.body-lg { font-size: var(--t-body-lg); line-height: 1.6; }
.body-dim { color: var(--ink-dim); }

.eyebrow {
  font-family: var(--mono);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--brass-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

/* Inline brass-deep underline (hand-drawn feel via SVG mask) */
.underline-brass {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'><path d='M2 8 Q 50 3, 100 6 T 198 7' stroke='%238A6A3E' stroke-width='2' fill='none' stroke-linecap='round' opacity='0.55'/></svg>");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 0.36em;
  padding-bottom: 0.1em;
}

/* Drop cap (use on first paragraph of long-form sections) */
.dropcap::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  float: left;
  font-size: 5.2em;
  line-height: 0.85;
  padding: 0.12em 0.12em 0 0;
  color: var(--brass-deep);
}

/* ---------- Layout containers ---------- */
.frame {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
}
.frame-narrow {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
}
.frame-wide {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
}

.stripe {
  padding-top:    clamp(72px, 10vw, 144px);
  padding-bottom: clamp(72px, 10vw, 144px);
  position: relative;
}
.stripe.tight  { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 80px); }
.stripe.deep   { background: var(--bg-deep); color: var(--bg); }
.stripe.deep p, .stripe.deep .body { color: rgba(250, 246, 238, 0.78); }
.stripe.deep h1, .stripe.deep h2, .stripe.deep h3 { color: var(--bg); }
.stripe.deep h1 em, .stripe.deep h2 em, .stripe.deep h3 em { color: var(--brass-glow); }
.stripe.deep .eyebrow { color: var(--brass-glow); }
.stripe.warm   { background: var(--bg-warm); }
.stripe.card-bg { background: var(--bg-card); }

/* Brass divider hairline */
.divider-brass {
  width: 100%; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--line-brass) 30%,
    var(--brass) 50%,
    var(--line-brass) 70%,
    transparent 100%);
  margin: 0;
}
.divider-thin {
  width: 100%; height: 1px;
  background: var(--line);
}

/* Centered short rule under an eyebrow */
.rule-center {
  width: 56px; height: 1px;
  background: var(--brass);
  margin: 18px auto;
  opacity: 0.7;
}

/* ---------- Nav ---------- */
.nav-top {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(250, 246, 238, 0.78);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  max-width: 1480px; margin: 0 auto;
}
.brand-mark {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--ink);
}
.brand-mark .seal {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--brass-glow), var(--brass) 55%, var(--brass-deep));
  box-shadow:
    inset 0 0 0 1px var(--brass-deep),
    0 0 0 1px rgba(181, 116, 62, 0.25),
    0 4px 12px rgba(143, 90, 48, 0.25);
  position: relative;
  display: inline-grid; place-items: center;
}
.brand-mark .seal::after {
  content: 'RN';
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 9px;
  color: var(--bg-deep);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-links a:hover { color: var(--ink); background: rgba(22, 35, 62, 0.04); }
.nav-links a.current { color: var(--brass-deep); background: rgba(181, 116, 62, 0.10); }
.nav-links a.cta-nav {
  background: var(--rust);
  color: var(--bg);
  padding: 10px 18px;
  font-weight: 600;
}
.nav-links a.cta-nav:hover {
  background: var(--rust-deep);
  color: var(--bg);
}
@media (max-width: 880px) {
  .nav-inner { padding: 14px 20px; }
  .nav-links .nav-opt { display: none; }
  .nav-links a.cta-nav { padding: 9px 14px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast),
              color var(--dur-fast),
              border-color var(--dur-fast),
              box-shadow var(--dur-base);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn .arr {
  display: inline-block;
  transition: transform var(--dur-base) var(--ease-out);
}
.btn:hover .arr { transform: translateX(4px); }

.btn-primary {
  background: var(--rust);
  color: var(--bg);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.08) inset,
    0 12px 26px -10px rgba(31, 58, 92, 0.45);
}
.btn-primary:hover {
  background: var(--rust-deep);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.10) inset,
    0 18px 32px -10px rgba(31, 58, 92, 0.55);
}

.btn-brass {
  background: linear-gradient(180deg, var(--brass) 0%, var(--brass-deep) 100%);
  color: var(--bg);
  box-shadow:
    0 1px 0 0 var(--brass-glow) inset,
    0 12px 26px -10px rgba(143, 90, 48, 0.55);
}
.btn-brass:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 0 var(--brass-glow) inset,
    0 18px 36px -10px rgba(143, 90, 48, 0.75);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  background: rgba(22, 35, 62, 0.04);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-link {
  padding: 12px 0;
  background: transparent;
  color: var(--brass-deep);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--brass);
  border-radius: 0;
}
.btn-link:hover { color: var(--rust); border-color: var(--rust); }

/* Magnetic CTA marker — JS adds .is-magnetic + translates on mouse-near */
.btn[data-magnetic] {
  will-change: transform;
}

/* CTA row helpers */
.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center;
}
.cta-row.center { justify-content: center; }

/* ---------- Hero (landing) ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}
.hero-copy { max-width: 720px; }
.hero h1 {
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 24px 0 28px;
}
.hero h1 .lead {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--brass-deep);
}
.hero p.sub {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 520px;
  margin-bottom: 36px;
}

/* Hero proof strip — 3 stats, brass divider between */
.proof-strip {
  display: flex; flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.proof-item {
  display: flex; flex-direction: column; gap: 4px;
}
.proof-num {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 80, "SOFT" 60;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.proof-num small {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-left: 2px;
}
.proof-lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--ink-dim);
}
.proof-sep {
  width: 1px; height: 36px;
  background: var(--line-2);
  align-self: center;
}
@media (max-width: 680px) { .proof-sep { display: none; } }

/* ---------- SMS demo (hero right side) ---------- */
.sms-stage {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(20px, 3vw, 32px);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.4) inset,
    0 30px 60px -20px rgba(22, 35, 62, 0.18),
    0 10px 24px -10px rgba(143, 90, 48, 0.18);
  position: relative;
  overflow: hidden;
}
.sms-stage::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(231, 220, 196, 0.24), transparent 60%);
  pointer-events: none;
}
.sms-stage-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
  position: relative;
}
.sms-stage-title {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--ink-dim);
}
.sms-stage-dots { display: flex; gap: 5px; }
.sms-stage-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bg-warm);
  border: 1px solid var(--line);
}
.sms-stage-dots span:nth-child(1) { background: #E08C7A; }
.sms-stage-dots span:nth-child(2) { background: #E7DCC4; }
.sms-stage-dots span:nth-child(3) { background: #A5B89A; }

.sms-thread {
  display: flex; flex-direction: column; gap: 12px;
  min-height: 380px;
  padding: 8px 0 12px;
  position: relative;
  z-index: 1;
}
.sms-bubble {
  max-width: 78%;
  padding: 12px 16px;
  border-radius: 18px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.45;
  position: relative;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.sms-bubble.is-in { opacity: 1; transform: none; }
.sms-bubble .from {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
  opacity: 0.65;
}
.sms-bubble.from-shop {
  align-self: flex-end;
  background: var(--ink);
  color: var(--bg);
  border-bottom-right-radius: 6px;
}
.sms-bubble.from-shop .from { color: var(--brass-glow); }
.sms-bubble.from-customer {
  align-self: flex-start;
  background: var(--bg-warm);
  color: var(--ink);
  border: 1px solid var(--line);
  border-bottom-left-radius: 6px;
}
.sms-bubble.from-customer .from { color: var(--ink-dim); }
.sms-bubble.is-typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 14px 18px;
}
.sms-bubble.is-typing .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; opacity: 0.4;
  animation: sms-dot 1.2s infinite;
}
.sms-bubble.is-typing .dot:nth-child(2) { animation-delay: 0.18s; }
.sms-bubble.is-typing .dot:nth-child(3) { animation-delay: 0.36s; }
@keyframes sms-dot {
  0%, 60%, 100% { opacity: 0.4; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.sms-receipt {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-2);
  display: none;
  align-items: center;
  gap: 8px;
}
.sms-receipt.is-on { display: inline-flex; }
.sms-receipt .check {
  display: inline-grid; place-items: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--sage); color: var(--bg);
  font-size: 10px;
}

/* ---------- Trust strip (shop wordmarks) ---------- */
.trust-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: clamp(24px, 5vw, 56px);
  padding: 40px clamp(20px, 4vw, 56px);
  margin-top: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--ink-hush);
}
.trust-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 60, "SOFT" 100;
  font-size: 18px;
  color: var(--ink-dim);
  letter-spacing: -0.01em;
  opacity: 0.85;
  transition: opacity var(--dur-fast), color var(--dur-fast);
}
.trust-mark:hover { opacity: 1; color: var(--brass-deep); }
.trust-mark.coming {
  border: 1px dashed var(--line-2);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--ink-hush);
}

/* ---------- Manifesto / quote block ---------- */
.manifesto-wrap {
  position: relative;
  padding: clamp(96px, 14vw, 200px) 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(231, 220, 196, 0.28), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(31, 58, 92, 0.10), transparent 55%),
    var(--bg-warm);
  text-align: left;
}
.manifesto-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(120px, 18vw, 220px);
  line-height: 0.7;
  color: var(--brass);
  opacity: 0.55;
  margin-bottom: -20px;
}
.manifesto-text {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  font-size: clamp(38px, 6vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 1080px;
}
.manifesto-text .dim { color: var(--ink-hush); }
.manifesto-text em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--brass-deep);
}
.manifesto-tags {
  margin-top: 48px;
  display: flex; flex-wrap: wrap;
  gap: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--ink-dim);
}
.manifesto-tags span {
  display: inline-flex; align-items: center; gap: 8px;
}
.manifesto-tags span::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--brass);
}

/* ---------- Pain / stats grid ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}
@media (max-width: 1080px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .stats-grid { grid-template-columns: 1fr; } }

.stat-block {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-fast);
}
.stat-block:hover {
  transform: translateY(-4px);
  border-color: var(--line-brass);
}
.stat-num {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.stat-num.warm { color: var(--rust); }
.stat-num.brass { color: var(--brass-deep); }
.stat-lbl {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink-2);
}
.stat-src {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--ink-hush);
  margin-top: auto;
}

/* ---------- Product panel (alternating left/right) ---------- */
.panel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(56px, 8vw, 112px) 0;
}
.panel-row.reverse { direction: rtl; }
.panel-row.reverse > * { direction: ltr; }
@media (max-width: 880px) {
  .panel-row, .panel-row.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
}
.panel-copy { max-width: 480px; display: flex; flex-direction: column; gap: 20px; }
.panel-copy h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.025em;
}
.panel-copy .lede {
  font-family: var(--sans);
  font-size: 17px; line-height: 1.55;
  color: var(--ink-dim);
}
.panel-copy .feature-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.panel-copy .feature-list li {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-2);
  display: flex; gap: 12px;
  align-items: baseline;
}
.panel-copy .feature-list li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0;
  transform: translateY(-2px);
}

.preview-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 26px;
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.5) inset,
    0 30px 60px -25px rgba(22, 35, 62, 0.20),
    0 10px 24px -10px rgba(143, 90, 48, 0.16);
  overflow: hidden;
}
.preview-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 25% 0%, rgba(231, 220, 196, 0.20), transparent 55%);
  pointer-events: none;
}
.preview-card > * { position: relative; }
.preview-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.preview-title {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* KPI grid inside preview */
.kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kpi {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px;
}
.kpi-lbl {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--ink-hush);
  margin-bottom: 8px;
}
.kpi-num {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 80, "SOFT" 50;
  font-size: 28px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.kpi-delta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--sage);
  margin-top: 8px;
}
.kpi-delta.down { color: var(--berry); }
.kpi-spark {
  grid-column: 1 / -1;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px;
  height: 100px;
}
.kpi-spark svg { width: 100%; height: 100%; }

/* Customer rows */
.cx-rows { display: flex; flex-direction: column; gap: 2px; }
.cx-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background var(--dur-fast);
}
.cx-row:hover { background: rgba(181, 116, 62, 0.06); }
.cx-who { display: flex; align-items: center; gap: 12px; }
.cx-av {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11px;
  background: linear-gradient(135deg, var(--brass-glow), var(--brass));
  color: var(--bg-deep);
}
.cx-nm {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}
.cx-met {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-hush);
  margin-top: 2px;
}
.cx-met .drift { color: var(--rust); }
.cx-tier {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.cx-tier.gold   { background: rgba(181, 116, 62, 0.18); color: var(--brass-deep); }
.cx-tier.silver { background: rgba(158, 146, 130, 0.15); color: var(--ink-dim); }
.cx-tier.bronze { background: rgba(31, 58, 92, 0.14); color: var(--rust-deep); }

/* Stock bars */
.stock-list { display: flex; flex-direction: column; gap: 16px; }
.stock-row { display: flex; flex-direction: column; gap: 8px; }
.stock-meta { display: flex; justify-content: space-between; align-items: baseline; }
.stock-nm {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
}
.stock-cnt {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-hush);
}
.stock-cnt.low { color: var(--rust); font-weight: 600; }
.stock-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(22, 35, 62, 0.06);
  overflow: hidden;
}
.stock-bar > i {
  display: block; height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--brass), var(--brass-deep));
  transform-origin: left;
  animation: bar-grow 1.4s var(--ease-out) both;
}
.stock-bar.low > i { background: linear-gradient(90deg, var(--rust), var(--rust-deep)); }
@keyframes bar-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Email-like preview */
.email-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
}
.email-head {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: var(--eyebrow-track); text-transform: uppercase;
  color: var(--ink-hush);
  margin-bottom: 14px;
}
.email-head .from-shop { color: var(--ink); }
.email-subj {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 60, "SOFT" 60;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  color: var(--ink);
}
.email-body {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-2);
}
.email-body em {
  font-style: normal;
  font-weight: 600;
  color: var(--brass-deep);
}
.email-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
}

/* ---------- Product tour video ---------- */
.tour-stage {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.4) inset,
    0 40px 80px -28px rgba(22, 35, 62, 0.22),
    0 14px 32px -12px rgba(143, 90, 48, 0.22);
}
.tour-stage::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-xl);
  pointer-events: none;
  box-shadow:
    0 0 0 1px var(--line-brass) inset,
    0 60px 100px -40px rgba(31, 58, 92, 0.22) inset;
}
.tour-video {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  background: var(--bg-card);
}
.tour-stage.is-playing .tour-play { opacity: 0; pointer-events: none; }
.tour-stage.is-playing .tour-sound { opacity: 1; transform: translateY(0); }

/* Center play button (overlay) */
.tour-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  opacity: 1;
  transition: opacity var(--dur-base) var(--ease-out);
  z-index: 2;
}
.tour-play-disc {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--brass-glow), var(--brass) 55%, var(--brass-deep));
  color: var(--bg);
  box-shadow:
    0 0 0 8px rgba(250, 246, 238, 0.7),
    0 0 0 9px rgba(181, 116, 62, 0.35),
    0 18px 36px -10px rgba(143, 90, 48, 0.55);
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base);
}
.tour-play:hover .tour-play-disc {
  transform: scale(1.06);
  box-shadow:
    0 0 0 8px rgba(250, 246, 238, 0.85),
    0 0 0 9px rgba(181, 116, 62, 0.55),
    0 24px 48px -10px rgba(143, 90, 48, 0.75);
}
.tour-play-disc svg {
  transform: translateX(3px);
}

/* Sound toggle (bottom-right) */
.tour-sound {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(22, 35, 62, 0.78);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              background var(--dur-fast);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
}
.tour-sound:hover { background: rgba(22, 35, 62, 0.92); }
.tour-sound-disc {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--bg-deep);
}
.tour-stage.is-unmuted .tour-sound-disc { background: var(--rust); color: var(--bg); }
.tour-stage.is-unmuted .ic-muted { display: none; }
.tour-stage.is-unmuted .ic-unmuted { display: block !important; }

@media (max-width: 720px) {
  .tour-play-disc { width: 64px; height: 64px; }
  .tour-sound { padding: 8px 14px 8px 10px; }
  .tour-sound-lbl { display: none; }
}

/* ---------- Quote / pull-quote ---------- */
.pull-quote {
  position: relative;
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  padding: 0 0 0 36px;
  border-left: 2px solid var(--brass);
}
.pull-quote-attrib {
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 18px;
  display: block;
}

/* ---------- ROI calculator ---------- */
.roi {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.5) inset,
    0 30px 60px -25px rgba(22, 35, 62, 0.18);
  position: relative;
  overflow: hidden;
}
.roi::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(231, 220, 196, 0.30), transparent 60%);
  pointer-events: none;
}
.roi-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
  position: relative;
  flex-wrap: wrap; gap: 16px;
}
.roi-title {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 80, "SOFT" 60;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.roi-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  position: relative;
}
@media (max-width: 600px) { .roi-controls { grid-template-columns: 1fr; } }
.roi-control { display: flex; flex-direction: column; gap: 10px; }
.roi-control label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--ink-dim);
  display: flex; align-items: baseline; justify-content: space-between;
}
.roi-control label .v {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 60, "SOFT" 100;
  font-size: 16px;
  color: var(--brass-deep);
  letter-spacing: -0.01em;
  text-transform: none;
}
.roi-range {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
}
.roi-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--brass) 0%, var(--brass-deep) 100%);
  border: 2px solid var(--bg);
  box-shadow: 0 2px 8px rgba(143, 90, 48, 0.45);
  cursor: pointer;
  transition: transform var(--dur-fast);
}
.roi-range::-webkit-slider-thumb:hover { transform: scale(1.1); }
.roi-range::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--brass) 0%, var(--brass-deep) 100%);
  border: 2px solid var(--bg);
  box-shadow: 0 2px 8px rgba(143, 90, 48, 0.45);
  cursor: pointer;
}

.roi-output {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}
@media (max-width: 600px) {
  .roi-output { grid-template-columns: 1fr; }
}
.roi-out-block { display: flex; flex-direction: column; gap: 4px; }
.roi-out-lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--ink-dim);
}
.roi-out-num {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--rust);
  font-variant-numeric: tabular-nums;
}
.roi-out-num.brass { color: var(--brass-deep); }
.roi-out-num.sage  { color: var(--sage); }
.roi-out-sub {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-dim);
}

/* ---------- Pricing plans ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) { .plans { grid-template-columns: 1fr 1fr; max-width: 760px; margin: 0 auto; } }
@media (max-width: 580px)  { .plans { grid-template-columns: 1fr; } }
.plan {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-fast), box-shadow var(--dur-base);
  position: relative;
}
.plan:hover {
  transform: translateY(-6px);
  border-color: var(--line-brass);
  box-shadow: 0 30px 60px -25px rgba(143, 90, 48, 0.25);
}
.plan.feature {
  background: linear-gradient(165deg, var(--bg-card) 0%, var(--bg) 100%);
  border-color: var(--brass);
  box-shadow:
    0 0 0 1px var(--brass) inset,
    0 30px 60px -20px rgba(181, 116, 62, 0.32);
}
.plan.feature::before {
  content: 'Most chosen';
  position: absolute;
  top: -10px; left: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  background: var(--brass-deep);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: 999px;
}
.plan.enterprise {
  background: linear-gradient(165deg, rgba(31, 58, 92, 0.05), var(--bg-card) 50%);
  border-color: rgba(31, 58, 92, 0.30);
}
.plan-nm {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--ink-dim);
}
.plan-pitch {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 60, "SOFT" 70;
  font-size: 16px;
  line-height: 1.35;
  color: var(--ink-2);
  min-height: 44px;
}
.plan-price {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(38px, 4vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1;
  display: flex; align-items: baseline; gap: 4px;
  color: var(--ink);
}
.plan-price small {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.plan-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin: 6px 0 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.plan-features li {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
  display: flex; gap: 10px;
}
.plan-features li::before {
  content: '✓';
  color: var(--brass-deep);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-features li.muted {
  color: var(--ink-hush);
}
.plan-features li.muted::before {
  content: '—';
  color: var(--ink-faint);
}
.plan .btn { margin-top: auto; justify-content: center; }

/* ---------- Founder letter / about ---------- */
.letter {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 60, "SOFT" 60;
  font-size: 21px;
  line-height: 1.7;
  color: var(--ink-2);
}
.letter p { margin-bottom: 24px; }
.letter p strong {
  font-weight: 600;
  font-variation-settings: "opsz" 60, "SOFT" 50;
  color: var(--ink);
}
.signature {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.signature-name {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 38px;
  line-height: 1;
  color: var(--brass-deep);
  letter-spacing: -0.01em;
}
.signature-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 8px;
}

/* ---------- Principle cards ---------- */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 720px) { .principles-grid { grid-template-columns: 1fr; } }
.principle {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-fast);
}
.principle:hover { transform: translateY(-3px); border-color: var(--line-brass); }
.principle-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: var(--eyebrow-track);
  color: var(--brass-deep);
}
.principle-title {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 60, "SOFT" 50;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.principle-desc {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.principle-desc strong { color: var(--ink); font-weight: 600; }

/* ---------- Contact card / direct line ---------- */
.contact-card {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(231, 220, 196, 0.35), transparent 55%),
    var(--bg-card);
  border: 1px solid var(--line-brass);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
  display: flex; flex-direction: column; gap: 22px;
  align-items: center;
}
.contact-card .eyebrow { color: var(--brass-deep); }
.contact-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 120, "SOFT" 70;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.contact-card p {
  max-width: 540px;
  color: var(--ink-2);
}

/* ---------- Help cards ---------- */
.help-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 960px) { .help-categories { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .help-categories { grid-template-columns: 1fr; } }
.help-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-fast);
}
.help-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-brass);
}
.help-cat-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--brass-deep);
}
.help-card-title {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 60, "SOFT" 50;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.help-articles {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 6px;
}
.help-articles a {
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.45;
  display: inline-flex; align-items: baseline; gap: 8px;
  transition: color var(--dur-fast);
}
.help-articles a:hover { color: var(--brass-deep); }
.help-articles a::before {
  content: '→';
  color: var(--brass);
  font-size: 12px;
  flex-shrink: 0;
}

/* ---------- Closing CTA ---------- */
.closing {
  text-align: center;
  padding: clamp(72px, 10vw, 144px) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(231, 220, 196, 0.35), transparent 50%),
    var(--bg);
}
.closing h2 {
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: 16px;
}
.closing p {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--ink-dim);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ---------- Footer ---------- */
.site-foot {
  background: var(--bg-deep);
  color: rgba(250, 246, 238, 0.65);
  padding: 56px clamp(20px, 4vw, 56px) 32px;
  position: relative;
}
.site-foot::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1280px; margin: 0 auto 40px;
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand .brand-mark { color: var(--bg); margin-bottom: 14px; }
.foot-tag {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 60, "SOFT" 100;
  font-size: 16px;
  color: rgba(250, 246, 238, 0.55);
  max-width: 280px;
  line-height: 1.4;
}
.foot-col h5 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--brass-glow);
  margin-bottom: 16px;
  font-weight: 500;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col ul a {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(250, 246, 238, 0.65);
  transition: color var(--dur-fast);
}
.foot-col ul a:hover { color: var(--brass-glow); }
.foot-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(250, 246, 238, 0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.45);
}
.foot-bottom .made {
  display: inline-flex; align-items: center; gap: 8px;
}
.foot-bottom .made::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 8px var(--brass);
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .stock-bar > i { animation: none; transform: scaleX(1); }
  .sms-bubble { opacity: 1; transform: none; transition: none; }
}

/* ---------- Helpers ---------- */
.text-center { text-align: center; }
.center { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-sm { gap: var(--gap-sm); }
.gap-md { gap: var(--gap-md); }
.gap-lg { gap: var(--gap-lg); }
.mt-md { margin-top: var(--gap-md); }
.mt-lg { margin-top: var(--gap-lg); }
.mt-xl { margin-top: var(--gap-xl); }
.mb-md { margin-bottom: var(--gap-md); }
.mb-lg { margin-bottom: var(--gap-lg); }
.brass { color: var(--brass-deep); }
.rust  { color: var(--rust); }
.sage  { color: var(--sage); }
.dim   { color: var(--ink-dim); }
.hush  { color: var(--ink-hush); }
.italic-serif { font-family: var(--serif); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }
