/* Vamos Viral Media design system, v2 (premium Aug-2026 spec).
   Research law: knowledge/research/vamosviral-pitch-premium-research-2026-08-13.md
   in Bruce Brain. The load-bearing choices:
   - Bricolage Grotesque VF (display) + Hanken Grotesk VF (body/UI), self-hosted,
     109KB total. System fonts are never the fallback aesthetic: that was the
     exact "not polished" look v1 was called out for.
   - Third voice = caps-tracked Hanken 12-13px +0.07em (eyebrows, chips, 01/02
     numerals). Costs zero bytes.
   - Light neutral ground; exactly ONE dark stage (after-reveal + closing CTA
     + footer). Hairline borders are the default card treatment; layered
     brand-hued shadows exist ONLY on staged mock groups and the CTA pill.
   - Brand tokens (--bp, --accent-text, --accent-on-dark, --stage, --ground,
     --hairline-brand) are computed at BUILD time (scripts/color-tokens.mjs)
     and injected as plain hex. No runtime relative color syntax.
   - Motion: additive scroll-driven reveals behind @supports + reduced-motion;
     one hero moment; 250-350ms micro-interactions; nothing loops.
   - WhatsApp pill: #25D366 with DARK ink #062e1f. White-on-green is a hard
     AA fail (1.98:1), measured. */

@font-face {
  font-family: "Bricolage";
  src: url("/assets/fonts/bricolage-var-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-stretch: 75% 125%;
  font-display: swap;
}
@font-face {
  font-family: "Hanken";
  src: url("/assets/fonts/hanken-var-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  /* static identity (Vamos Viral) */
  --ink: #1c1c21;
  --muted: #565c66;
  --paper: #ffffff;
  --line: #e8e8ec; /* neutral hairline ~9% ink */
  --accent: #e63e2e;
  --wa: #25d366;
  --wa-ink: #062e1f;

  /* brand-derived slots; pitch pages overwrite via build-time tokens */
  --bp: var(--accent);
  --accent-text: #b02417;
  --accent-on-dark: #ffb4a8;
  --hairline-brand: #ecdcda;
  --ground: #fafafa;
  --stage: #101014;

  /* type */
  --display: "Bricolage", "Hanken", -apple-system, "Segoe UI", sans-serif;
  --sans: "Hanken", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --fs-hero: clamp(2.25rem, 1.6rem + 3.2vw, 4.5rem);
  --fs-h2: clamp(1.75rem, 1.35rem + 1.6vw, 2.5rem);
  --fs-h3: clamp(1.15rem, 1.05rem + 0.4vw, 1.35rem);
  --fs-lead: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  --fs-body: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  --fs-caption: 0.9375rem;
  --fs-utility: 0.8125rem;

  /* rhythm + shape */
  --sect: clamp(64px, 10vw, 140px);
  --r-card: 12px;
  --r-img: 16px;
  --r-stage: 24px;
  --r-pill: 999px;

  /* staged-shadow ramp base (brand-tinted via color-mix) */
  --shadow-tint: color-mix(in srgb, var(--stage) 70%, #000000);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--fs-body);
  font-weight: 415;
  color: var(--ink);
  background: var(--ground);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
video,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

h1,
h2,
h3 {
  font-family: var(--display);
  margin: 0 0 0.45em;
}
h1 {
  font-size: var(--fs-hero);
  font-weight: 680;
  line-height: 1.06;
  letter-spacing: -0.03em;
}
h2 {
  font-size: var(--fs-h2);
  font-weight: 620;
  line-height: 1.16;
  letter-spacing: -0.015em;
}
h3 {
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.008em;
}
p {
  margin: 0 0 1em;
  max-width: 65ch;
}
.lead {
  font-size: var(--fs-lead);
  line-height: 1.4;
  font-weight: 430;
  color: var(--muted);
}
a {
  color: inherit;
}
:focus-visible {
  outline: 3px solid var(--accent-text);
  outline-offset: 2px;
  border-radius: 4px;
}

/* third voice: caps-tracked utility */
.eyebrow,
.chip,
.num {
  font-family: var(--sans);
  font-size: var(--fs-utility);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.eyebrow {
  color: var(--accent-text);
  margin: 0 0 14px;
}
.num {
  color: var(--muted);
}
.chip {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--paper);
  color: var(--muted);
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-weight: 640;
  font-size: 1.05rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    transform 280ms cubic-bezier(0.2, 0.7, 0.3, 1),
    box-shadow 280ms ease,
    filter 280ms ease;
}
.btn:active {
  transform: scale(0.985);
}
.btn-wa {
  background: var(--wa);
  color: var(--wa-ink);
  box-shadow:
    0 1px 2px color-mix(in srgb, var(--shadow-tint) 8%, transparent),
    0 2px 4px color-mix(in srgb, var(--shadow-tint) 7%, transparent),
    0 4px 8px color-mix(in srgb, var(--shadow-tint) 7%, transparent),
    0 8px 16px color-mix(in srgb, var(--shadow-tint) 6%, transparent);
}
.btn-wa:hover {
  transform: scale(1.03);
}
.btn-wa .wa-ic {
  width: 22px;
  height: 22px;
  flex: none;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  filter: brightness(1.15);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost-dark {
  background: transparent;
  color: #fff;
  border-color: rgb(255 255 255 / 0.4);
}

/* header / footer */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.brand span {
  color: var(--accent);
}
.site-header nav {
  display: flex;
  gap: 6px;
  align-items: center;
}
.site-header nav a {
  text-decoration: none;
  font-weight: 560;
  padding: 12px 16px;
  border-radius: 10px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  font-size: 0.98rem;
}
.site-header nav a:hover {
  background: var(--ground);
}
.lang-toggle {
  border: 1px solid var(--line);
}

.site-footer {
  margin-top: var(--sect);
  background: var(--stage);
  color: rgb(255 255 255 / 0.72);
  padding: 56px 0 72px;
  font-size: var(--fs-caption);
  position: relative;
  overflow: hidden;
}
.site-footer::after {
  /* grain, dark stage only */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.site-footer .wrap {
  position: relative;
  z-index: 1;
}
.footer-brand {
  font-family: var(--display);
  font-weight: 620;
  color: #fff;
  font-size: 1.05rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
  margin: 10px 0;
}
.footer-links a {
  color: rgb(255 255 255 / 0.72);
}
.footer-links a:hover {
  color: #fff;
}
.footer-copy {
  color: rgb(255 255 255 / 0.45);
}

/* sections + grids */
section {
  padding: calc(var(--sect) * 0.6) 0;
}
section.sect {
  padding: var(--sect) 0;
}
.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px;
  background: var(--paper);
  text-decoration: none;
  transition: border-color 280ms ease;
}
.card:hover {
  border-color: color-mix(in srgb, var(--ink) 28%, var(--line));
}
.card p {
  color: var(--muted);
  margin: 0;
  font-size: var(--fs-caption);
  line-height: 1.5;
}
.card .ic {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  color: var(--accent-text);
}
.card .ic svg {
  width: 100%;
  height: 100%;
}

/* home hero */
.hero {
  padding: calc(var(--sect) * 0.9) 0 calc(var(--sect) * 0.7);
}
.hero .lead {
  max-width: 46ch;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* steps */
.steps .card {
  position: relative;
  padding-top: 62px;
}
.steps .num {
  position: absolute;
  top: 24px;
  left: 26px;
  color: var(--accent-text);
}

/* service groups */
.svc-group {
  margin-top: 40px;
}
.svc-group .eyebrow {
  color: var(--muted);
}
.svc-group h3.group-title {
  font-size: 1.5rem;
  margin-bottom: 18px;
  letter-spacing: -0.012em;
}

/* lead form */
.lead-form {
  max-width: 500px;
}
.lead-form label {
  display: block;
  font-weight: 600;
  margin: 16px 0 6px;
  font-size: var(--fs-caption);
}
.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  min-height: 52px;
  background: var(--paper);
}
.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--ink);
  outline: none;
}
.consent-note {
  font-size: 0.9rem;
  color: var(--muted);
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
[data-status] {
  color: var(--accent-text);
  font-weight: 600;
}

/* ---------- device frames (flat, current geometry) ---------- */
.frame-browser {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
}
.frame-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  background: #f1f2f4;
  border-bottom: 1px solid var(--line);
}
.frame-browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(28 28 33 / 0.35);
  flex: none;
}
.frame-browser-bar .addr {
  margin-left: 10px;
  flex: 1;
  max-width: 260px;
  font-size: 12px;
  line-height: 18px;
  color: var(--muted);
  background: #fff;
  border-radius: 9px;
  padding: 0 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.frame-phone {
  margin: 0;
  width: min(280px, 78vw);
  aspect-ratio: 402 / 874;
  border: 12px solid #101013;
  border-radius: 3rem;
  overflow: hidden;
  background: #101013;
  position: relative;
}
.frame-phone::before {
  /* dynamic island */
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 29%;
  height: 21px;
  border-radius: 12px;
  background: #101013;
  z-index: 2;
}
.frame-phone-screen {
  border-radius: calc(3rem - 12px);
  overflow: hidden;
  height: 100%;
  background: #fff;
}
.frame-phone-screen img,
.frame-browser > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.frame-browser > img {
  height: auto;
}

/* ---------- pitch pages ---------- */
.disclaimer-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}
.disclaimer-bar p {
  margin: 0;
  padding: 9px 20px;
  max-width: none;
  text-align: center;
}

.pitch-hero {
  padding: calc(var(--sect) * 0.85) 0 calc(var(--sect) * 0.7);
}
.pitch-hero .compliment {
  font-size: var(--fs-lead);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 470;
  max-width: 44ch;
}
.pitch-hero h1 {
  max-width: 16ch;
}
.pitch-hero h1 em {
  font-style: normal;
  color: var(--accent-text);
}
.pitch-hero .hero-sub {
  color: var(--muted);
  max-width: 52ch;
}
.pitch-hero .btn {
  margin-top: 18px;
}
.pitch-hero .reply-note {
  margin-top: 12px;
  font-size: var(--fs-caption);
  color: var(--muted);
}

/* before / after: composed device groups */
.ba-stagegrid {
  display: grid;
  gap: 32px;
  margin-top: 40px;
}
@media (min-width: 980px) {
  .ba-stagegrid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}
.ba-state {
  border-radius: var(--r-stage);
  padding: clamp(20px, 3vw, 36px);
  position: relative;
}
.ba-state .chip {
  margin-bottom: 20px;
}
.ba-compose {
  position: relative;
  padding-bottom: 56px;
}
.ba-compose .frame-browser {
  width: 88%;
}
.ba-compose .frame-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(160px, 42%);
  z-index: 1;
}
.ba-before {
  background: var(--paper);
  border: 1px solid var(--line);
}
.ba-before .shot {
  filter: saturate(0.82);
}
.ba-after {
  background: var(--stage);
  overflow: hidden;
}
.ba-after::before {
  /* radial brand glow behind the mock */
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--bp) 16%, transparent),
    transparent 70%
  );
  pointer-events: none;
}
.ba-after::after {
  /* grain on the dark stage */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.ba-after .chip {
  background: transparent;
  color: var(--accent-on-dark);
  border-color: rgb(255 255 255 / 0.22);
  position: relative;
  z-index: 1;
}
.ba-after .ba-compose {
  z-index: 1;
}
.ba-after .frame-browser {
  border-color: rgb(255 255 255 / 0.12);
  transform: scale(1.015);
  box-shadow:
    0 1px 2px color-mix(in srgb, var(--shadow-tint) 9%, transparent),
    0 2px 4px color-mix(in srgb, var(--shadow-tint) 8%, transparent),
    0 4px 8px color-mix(in srgb, var(--shadow-tint) 8%, transparent),
    0 8px 16px color-mix(in srgb, var(--shadow-tint) 7%, transparent),
    0 16px 32px color-mix(in srgb, var(--shadow-tint) 7%, transparent);
}
.ba-after .frame-phone {
  box-shadow:
    0 2px 4px color-mix(in srgb, var(--shadow-tint) 9%, transparent),
    0 4px 8px color-mix(in srgb, var(--shadow-tint) 8%, transparent),
    0 8px 16px color-mix(in srgb, var(--shadow-tint) 8%, transparent),
    0 16px 32px color-mix(in srgb, var(--shadow-tint) 7%, transparent);
}

/* editorial captions outside the frames */
.ba-captions {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
@media (min-width: 720px) {
  .ba-captions {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ba-captions li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-size: var(--fs-caption);
  color: var(--ink);
}
.ba-captions .num {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-text);
}

/* findings: neutral opportunity block */
.findings-block {
  max-width: 62ch;
}
.findings {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.findings li {
  border-top: 1px solid var(--line);
  padding: 16px 0 16px 44px;
  position: relative;
}
.findings .num {
  position: absolute;
  left: 0;
  top: 18px;
  color: var(--accent-text);
}
.reassure {
  margin-top: 22px;
  font-weight: 560;
  color: var(--ink);
}

/* next steps strip */
.next-strip {
  border: 1px solid var(--line);
  border-radius: var(--r-stage);
  background: var(--paper);
  padding: clamp(24px, 4vw, 44px);
}
.next-steps {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 22px;
  counter-reset: paso;
}
@media (min-width: 820px) {
  .next-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.next-steps li {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.next-steps .num {
  color: var(--accent-text);
  display: block;
  margin-bottom: 6px;
}
.wa-preview {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e7f8ee;
  border: 1px solid #bfe8cf;
  color: #0b3d24;
  border-radius: 16px 16px 16px 4px;
  padding: 12px 18px;
  font-size: var(--fs-caption);
}

/* recommended bundle + service groups */
.rec-card {
  border: 1.5px solid var(--accent-text);
  border-radius: var(--r-stage);
  background: var(--paper);
  padding: clamp(24px, 4vw, 40px);
  position: relative;
}
.rec-card .eyebrow {
  color: var(--accent-text);
}
.rec-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
@media (min-width: 720px) {
  .rec-list {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}
.rec-list li {
  padding-left: 30px;
  position: relative;
  font-weight: 560;
}
.rec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-text);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center / contain no-repeat;
}
.rec-list li small {
  display: block;
  font-weight: 430;
  color: var(--muted);
  font-size: var(--fs-caption);
}

/* service artifacts (CSS-composed, zero bytes) */
.artifact {
  margin-top: 16px;
  border-radius: 10px;
  overflow: hidden;
}
.art-gbp {
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px;
  font-size: 13px;
  line-height: 1.45;
}
.art-gbp .g-name {
  font-weight: 650;
  font-size: 14px;
  color: #1a1a1e;
}
.art-gbp .g-stars {
  color: #f8b005;
  letter-spacing: 1.5px;
  font-size: 12px;
}
.art-gbp .g-meta {
  color: #5f6368;
  font-size: 12px;
}
.art-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.art-feed span {
  aspect-ratio: 1;
  display: block;
}
.art-feed span:nth-child(1) {
  background: var(--bp);
}
.art-feed span:nth-child(2) {
  background: color-mix(in srgb, var(--bp) 55%, #ffffff);
}
.art-feed span:nth-child(3) {
  background: var(--stage);
}
.art-feed span:nth-child(4) {
  background: color-mix(in srgb, var(--bp) 25%, #ffffff);
}
.art-feed span:nth-child(5) {
  background: color-mix(in srgb, var(--bp) 80%, #14161a);
}
.art-feed span:nth-child(6) {
  background: var(--bp);
}
.art-sms {
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 14px;
}
.art-sms .sms-b {
  background: #eef1f4;
  border-radius: 14px 14px 14px 4px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.45;
  color: #1a1a1e;
  max-width: 100%;
}
.art-sms .sms-from {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}

/* portfolio */
.pf-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.pf .frame-browser {
  margin-bottom: 14px;
}
.roster {
  font-size: var(--fs-caption);
  color: var(--muted);
  margin-top: 26px;
}
.see-more {
  text-align: center;
  margin-top: 30px;
}

/* closing CTA: the dark stage */
.pitch-close {
  background: var(--stage);
  border-radius: var(--r-stage);
  padding: clamp(40px, 7vw, 88px) clamp(24px, 5vw, 64px);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pitch-close::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--bp) 13%, transparent),
    transparent 70%
  );
  pointer-events: none;
}
.pitch-close::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.pitch-close > * {
  position: relative;
  z-index: 1;
}
.pitch-close h2 {
  color: #fff;
}
.pitch-close .negation {
  color: var(--accent-on-dark);
  font-weight: 560;
}
.pitch-close p {
  margin-left: auto;
  margin-right: auto;
  color: rgb(255 255 255 / 0.75);
}
.pitch-close .btn-wa {
  margin-top: 10px;
}
.qr {
  margin-top: 30px;
  display: none;
}
.qr img {
  margin: 0 auto 8px;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
}
.qr p {
  font-size: var(--fs-caption);
  color: rgb(255 255 255 / 0.6);
}
@media (min-width: 900px) {
  .qr {
    display: inline-block;
  }
}

.colophon {
  margin-top: 20px;
  font-size: var(--fs-caption);
  color: rgb(255 255 255 / 0.55);
  font-style: normal;
}

.pitch-footer {
  margin-top: 0;
}
.pitch-footer .removal,
.pitch-footer .privacy-line {
  max-width: 70ch;
}

/* sticky mobile bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  gap: 10px;
  padding: 10px max(12px, env(safe-area-inset-left))
    calc(10px + env(safe-area-inset-bottom))
    max(12px, env(safe-area-inset-right));
  background: rgb(255 255 255 / 0.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.sticky-bar .btn {
  flex: 1;
  min-height: 50px;
}
.sticky-bar .btn-call {
  background: var(--ink);
  color: #fff;
}
@media (min-width: 900px) {
  .sticky-bar {
    display: none;
  }
}
body.pitch {
  padding-bottom: 86px;
}
@media (min-width: 900px) {
  body.pitch {
    padding-bottom: 0;
  }
}

/* legal pages */
.legal {
  max-width: 72ch;
}
.legal h2 {
  font-size: 1.3rem;
  margin-top: 1.7em;
}

/* ---------- motion: additive only ---------- */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal {
      /* fill NONE on purpose: the default state is fully visible, and the
         animation only exists while the element is actually entering the
         viewport. fill:both parks below-fold content at opacity 0, which
         breaks full-page captures and any browser that stalls the timeline
         (the "never parked at opacity:0" research rule). */
      animation: vv-rise linear none;
      animation-timeline: view();
      animation-range: entry 0% entry 32%;
    }
  }
  .hero h1,
  .pitch-hero h1 {
    animation: vv-settle 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }
  .hero .lead,
  .pitch-hero .compliment {
    animation: vv-settle 700ms 90ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }
}
@keyframes vv-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes vv-settle {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}
