/* ============================================================
   Brand Studio & Co - Brand Audit landing page
   Palette and type are locked. Edit copy in index.html.
   ============================================================ */

:root {
  --white: #f7f4ef;
  --paper: #fffaf4;
  --black: #0e0e0e;
  --ink: #201d1a;
  --muted: #6d665f;
  --grey: #b8b0a9;
  --rose: #d47c91;
  --blush: #f6e6e9;
  --line: rgba(14, 14, 14, 0.12);
  --line-dark: rgba(247, 244, 239, 0.18);
  --display: "Fraunces", Georgia, serif;
  --body: "Instrument Sans", -apple-system, Helvetica, Arial, sans-serif;
  --pad-x: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14,14,14,0.035) 1px, transparent 1px) 0 0 / 12.5vw 100%,
    radial-gradient(circle at 78% 12%, rgba(212,124,145,0.14), transparent 28vw);
}

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
  text-wrap: balance;
}

h1 { font-size: clamp(44px, 7.2vw, 96px); line-height: 0.98; font-weight: 900; }
h2 { font-size: clamp(32px, 4.6vw, 60px); line-height: 1.02; max-width: 18ch; }
h3 { font-size: clamp(21px, 2.2vw, 28px); line-height: 1.1; }
p  { margin: 0 0 1em; max-width: 62ch; }

.lead { font-size: clamp(18px, 1.9vw, 21px); line-height: 1.5; color: var(--muted); }
.lead.strong { color: var(--ink); font-weight: 500; }

/* Labels: spaced caps reserved for small metadata, per brand rules */
.eyebrow, .index, .card-kicker, .doc-kicker, .doc-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}
.index.rose, .eyebrow.rose { color: var(--rose); }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--black); color: var(--white);
  padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px var(--pad-x);
  background: color-mix(in srgb, var(--white) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 240ms var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); }

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 25px;
  line-height: 0.86;
  letter-spacing: -0.035em;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark-brand {
  font-family: var(--body);
  display: block;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink);
}
.wordmark-line { display: block; }
.wordmark-co {
  color: var(--rose);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.055em;
  margin-left: 2px;
}
.wordmark.small { font-size: 29px; margin-bottom: 10px; }

.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none; color: var(--muted);
  transition: color 180ms var(--ease);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--ink); }

/* ---------- Buttons ---------- */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 13px 26px;
  background: var(--black); color: var(--white);
  border: 1px solid var(--black); border-radius: 999px;
  font-family: var(--body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; text-decoration: none;
  transition: transform 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
}
.button:hover, .button:focus-visible { background: var(--rose); border-color: var(--rose); color: var(--black); transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button.on-dark { background: var(--white); border-color: var(--white); color: var(--black); }
.button.on-dark:hover, .button.on-dark:focus-visible { background: var(--rose); border-color: var(--rose); color: var(--black); }
.nav-cta { min-height: 42px; padding: 10px 20px; font-size: 13px; }

.text-link {
  font-weight: 600; font-size: 15px; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid var(--rose);
  padding-bottom: 2px;
  transition: color 180ms var(--ease);
}
.text-link:hover { color: var(--rose); }

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 10vw, 140px) var(--pad-x); }
.section-head { margin-bottom: clamp(36px, 5vw, 64px); }
.section-head .lead { margin-top: 14px; }

.dark { background: var(--black); color: var(--white); }
.dark .index { color: var(--rose); }
.dark p { color: rgba(247, 244, 239, 0.82); }
.dark h2 { color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  min-height: calc(100svh - 74px);
  padding: clamp(48px, 6vw, 96px) var(--pad-x) clamp(64px, 8vw, 120px);
  position: relative;
}
.hero-copy { max-width: 760px; }
.hero .eyebrow { color: var(--rose); }
.hero h1 { position: relative; }
.hero h1::after {
  content: "";
  position: absolute;
  left: 0.04em;
  bottom: -0.08em;
  width: min(260px, 42%);
  height: 10px;
  background: var(--rose);
  opacity: 0.88;
  transform: skewX(-12deg);
  z-index: -1;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 34px; }

.trust-row {
  display: flex; flex-wrap: wrap; gap: 8px 26px;
  margin: 34px 0 0; padding: 0; list-style: none;
  font-size: 14px; color: var(--muted);
}
.trust-row li { position: relative; padding-left: 16px; }
.trust-row li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--rose);
}

/* Hero document mockup: the deliverable as a real surface */
.hero-visual { position: relative; min-height: 520px; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 9% 0 6% 8%;
  border: 1px solid rgba(14,14,14,0.1);
  border-radius: 999px 999px 18px 18px;
  transform: rotate(-7deg);
}
.signal-strip {
  position: absolute;
  z-index: 3;
  left: 4%;
  top: 12%;
  display: flex;
  gap: 8px;
  transform: rotate(-4deg);
}
.signal-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(14,14,14,0.08);
}
.audit-stamp {
  position: absolute;
  right: 0;
  bottom: 12%;
  z-index: 4;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(14,14,14,0.13);
  transform: rotate(8deg);
}
.audit-stamp::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--rose);
  border-radius: 50%;
}
.audit-stamp span {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 900;
  line-height: 0.9;
  color: var(--ink);
}
.audit-stamp small {
  color: var(--rose);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.doc {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 30px 70px rgba(14, 14, 14, 0.16);
  padding: 34px 30px;
  display: flex; flex-direction: column;
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
}
.doc-front {
  width: min(360px, 80%);
  aspect-ratio: 210 / 260;
  right: 4%; top: 3%;
  background: var(--black);
  border-color: rgba(247,244,239,0.14);
  color: var(--white);
  transform: rotate(1.2deg);
}
.doc-back {
  width: min(314px, 72%);
  aspect-ratio: 210 / 250;
  left: 0; bottom: 1%;
  transform: rotate(-3.5deg);
  gap: 14px;
}
.doc-rule { width: 64px; height: 3px; background: var(--rose); margin-bottom: 26px; }
.doc-kicker { color: var(--rose); margin-bottom: 14px; }
.doc-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(27px, 2.8vw, 38px); line-height: 1.03;
  letter-spacing: -0.02em;
}
.doc-annotation {
  width: max-content;
  max-width: 100%;
  margin-top: 24px;
  padding: 7px 12px;
  border: 1px solid rgba(247,244,239,0.22);
  border-left: 3px solid var(--rose);
  color: rgba(247,244,239,0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.doc-meta { margin-top: auto; font-size: 12px; line-height: 1.6; color: var(--grey); }
.doc-label { color: var(--rose); margin: 0; }
.doc-line { display: block; height: 10px; border-radius: 2px; background: rgba(14,14,14,0.1); }
.doc-line.w80 { width: 80%; } .doc-line.w60 { width: 60%; }
.doc-tags { display: flex; gap: 8px; margin-top: auto; }
.doc-tags em, .card-tags em {
  font-style: normal; font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 5px 11px; color: var(--muted);
}
.hero-visual:hover .doc-front { transform: translateY(-8px) rotate(0.4deg); box-shadow: 0 38px 90px rgba(14,14,14,0.2); }
.hero-visual:hover .doc-back { transform: translateY(6px) rotate(-4.5deg); }

/* ---------- Problem ---------- */
.credibility {
  display: grid;
  grid-template-columns: minmax(150px, 0.4fr) minmax(0, 1fr) minmax(220px, 0.65fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  padding: 28px var(--pad-x);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 72%, transparent);
}
.credibility-kicker,
.proof-card-label {
  margin: 0;
  color: var(--rose);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.credibility ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.credibility li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}
.credibility li:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--rose) 60%, var(--line));
  background: var(--paper);
}
.credibility-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.signal-ribbon {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
}
.signal-ribbon-track {
  display: flex;
  width: max-content;
  gap: clamp(28px, 5vw, 72px);
  padding: 12px var(--pad-x);
  animation: ribbon-drift 32s linear infinite;
}
.signal-ribbon span {
  color: rgba(247,244,239,0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.signal-ribbon span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 14px;
  border-radius: 50%;
  background: var(--rose);
}
@keyframes ribbon-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

.problem-grid { max-width: 820px; }
.symptom-list { list-style: none; margin: 32px 0; padding: 0; }
.symptom-list li {
  position: relative;
  padding: 18px 0 18px 34px;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(19px, 2.1vw, 24px);
  font-weight: 600; letter-spacing: -0.01em; line-height: 1.25;
}
.symptom-list li:last-child { border-bottom: 1px solid var(--line); }
.symptom-list li::before {
  content: "["; position: absolute; left: 0; top: 14px;
  font-family: var(--display); font-size: 1.3em; color: var(--rose); font-weight: 500;
}
.symptom-list li::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms var(--ease);
}
.symptom-list li:hover::after { transform: scaleX(1); }

/* ---------- Who ---------- */
.who-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.who-col { border-top: 3px solid var(--black); padding-top: 26px; }
.who-col.quiet { border-top-color: var(--grey); }
.who-col h3 { margin-bottom: 18px; }
.who-col ul { list-style: none; margin: 0; padding: 0; }
.who-col li { padding: 10px 0 10px 26px; position: relative; color: var(--ink); }
.who-col.quiet li { color: var(--muted); }
.who-col li::before { content: "→"; position: absolute; left: 0; color: var(--rose); font-weight: 600; }
.who-col.quiet li::before { content: "×"; color: var(--grey); }

/* ---------- Audit lens ---------- */
.lens-list { list-style: none; margin: 0; padding: 0; max-width: 980px; }
.lens-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(120px, 220px);
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.lens-row:last-child { border-bottom: 1px solid var(--line); }
.lens-num { font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--rose); }
.lens-row h3 { font-size: clamp(20px, 2vw, 26px); margin-bottom: 4px; }
.lens-row p { margin: 0; color: var(--muted); font-size: 15px; }
.lens-bar { display: block; height: 4px; background: rgba(14,14,14,0.08); border-radius: 2px; overflow: hidden; }
.lens-bar span {
  display: block; height: 100%; width: var(--w, 60%);
  background: var(--black);
  transform: scaleX(0); transform-origin: left;
  transition: transform 900ms var(--ease);
}
.lens-row.in-view .lens-bar span { transform: scaleX(1); }

/* ---------- What you get ---------- */
.get-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); }
.get-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(28px, 3.4vw, 48px);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}
.get-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(14,14,14,0.09); }
.get-card .card-kicker { color: var(--rose); margin-bottom: 12px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; }

.pull {
  margin: clamp(48px, 6vw, 80px) auto 0;
  max-width: 760px;
  border-left: 3px solid var(--rose);
  padding-left: clamp(20px, 3vw, 36px);
}
.pull p {
  font-family: var(--display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600; font-style: italic;
  line-height: 1.25; letter-spacing: -0.01em;
  color: var(--ink); margin: 0; max-width: none;
}
.pull em { color: var(--rose); }

/* ---------- Steps ---------- */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
  list-style: none; margin: 0; padding: 0;
  counter-reset: step;
}
.steps li { border-top: 1px solid var(--line); padding-top: 24px; }
.step-num {
  display: block;
  font-family: var(--display); font-weight: 600;
  font-size: 15px; color: var(--rose); margin-bottom: 14px;
}
.steps p { color: var(--muted); margin: 0; }

/* ---------- No calls + price (dark) ---------- */
.nocalls { padding-bottom: clamp(40px, 5vw, 72px); }
.nocalls-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px); max-width: 980px; }
.nocalls-grid p { font-size: clamp(17px, 1.9vw, 20px); }

.price { padding-top: 0; }
.price-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  border-top: 1px solid var(--line-dark);
  padding-top: clamp(48px, 6vw, 80px);
}
.price-figure {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(84px, 12vw, 168px);
  line-height: 0.9; letter-spacing: -0.03em;
  color: var(--white); margin: 0 0 24px;
}
.price-note { font-size: clamp(18px, 2vw, 22px); color: var(--white) !important; font-weight: 500; }
.price-honest { font-size: 15px; color: var(--grey) !important; }
.price-cta { display: grid; gap: 16px; justify-items: start; }
.price-micro { font-size: 13px; color: var(--grey) !important; margin: 0; }

/* ---------- Founder ---------- */
.founder-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.founder-proof {
  position: sticky;
  top: 104px;
  border-top: 3px solid var(--black);
  padding-top: 24px;
}
.founder-proof-kicker {
  margin: 0 0 22px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.founder-proof ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--line);
}
.founder-proof li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  transition: padding-left 240ms var(--ease), border-color 240ms var(--ease);
}
.founder-proof li:hover {
  padding-left: 12px;
  border-top-color: color-mix(in srgb, var(--rose) 60%, var(--line));
}
.founder-proof span {
  display: block;
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.founder-proof small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.sig {
  font-family: var(--display); font-style: italic; font-weight: 600;
  font-size: 28px; color: var(--rose); margin-top: 28px;
}
.proof-card {
  margin: 30px 0 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
}
.proof-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.proof-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}
.proof-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 22px 0;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(18px, 2vw, 23px); letter-spacing: -0.01em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; flex: none;
  font-family: var(--display); font-size: 1.2em; color: var(--rose);
  transition: transform 240ms var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--muted); padding-bottom: 24px; margin: 0; }
.faq-list summary:hover { color: var(--rose); }

/* ---------- Final CTA ---------- */
.final { text-align: left; }
.final-inner { max-width: 900px; }
.final .button { margin: 18px 0 14px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--black); color: var(--grey);
  padding: clamp(48px, 6vw, 72px) var(--pad-x);
  border-top: 1px solid var(--line-dark);
  font-size: 14px;
}
.footer p { margin: 0 0 10px; }
.footer .wordmark { color: var(--white); }
.footer .wordmark-brand { color: var(--grey); }
.footer nav { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 22px 0; }
.footer a { color: var(--grey); text-decoration: none; }
.footer a:hover { color: var(--white); }
.footer-sig { color: var(--rose); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 180ms; }
.delay-3 { transition-delay: 270ms; }

/* No-JS and reduced motion: everything visible, nothing moves */
.no-js .reveal { opacity: 1; transform: none; }
.no-js .lens-bar span { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .lens-bar span { transform: scaleX(1); transition: none; }
  .signal-ribbon-track { animation: none; }
  .button, .get-card, .doc, .credibility li, .founder-proof li, .symptom-list li::after { transition: none; }
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 0; padding-top: 40px; }
  .hero-visual { min-height: 420px; margin-top: 12px; }
  .doc-front { right: 0; }
  .nav-links { display: none; }
  .credibility { grid-template-columns: 1fr; align-items: start; }
  .who-cols, .get-grid, .nocalls-grid, .steps { grid-template-columns: 1fr; }
  .price-panel { grid-template-columns: 1fr; align-items: start; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-proof { position: static; }
  .lens-row { grid-template-columns: 40px 1fr; }
  .lens-bar { grid-column: 2; margin-top: 4px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  body::before { background: radial-gradient(circle at 88% 5%, rgba(212,124,145,0.12), transparent 70vw); }
  .wordmark { font-size: 22px; }
  .wordmark-brand { font-size: 8px; }
  .nav { gap: 14px; }
  .button { width: 100%; }
  .nav-cta { width: auto; }
  .signal-strip { left: 0; top: 6%; flex-wrap: wrap; max-width: 260px; }
  .audit-stamp { width: 90px; height: 90px; right: 4px; bottom: 10%; }
  .audit-stamp span { font-size: 29px; }
  .signal-ribbon-track { animation-duration: 44s; }
  .proof-card ul { grid-template-columns: 1fr; }
  .hero-actions .text-link { margin-top: 4px; }
}
