/* ============================================================
   Margot — Landing Page
   Brand System v2.0 · white · ink · air (pure black & white, no colour)
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  /* neutrals — the whole palette */
  --paper:    #F5F6F8;   /* clean cool off-white page */
  --card:     #FFFFFF;   /* raised surfaces */
  --ink:      #16181D;   /* cool near-black */
  --hairline: #E6E8EC;
  --hairline-soft: #EEF0F3;

  /* NO brand colour — legacy accent vars now resolve to ink/neutral.
     Emphasis is earned with contrast: underline, heavy weight, ink invert. */
  --rouge:     #16181D;  /* was the accent → now ink (buttons, marks, guillemets) */
  --bordeaux:  #000000;  /* hover / depth → near-black */
  --blush:     #FFFFFF;  /* soft fills → white card */
  --blush-br:  #E6E8EC;  /* → hairline */
  --champagne: #F5F6F8;  /* stars on ink → paper */
  --pink-soft: #9AA1AC;  /* on-ink accents → muted-2 */
  --pink-faint:#6B7280;

  /* text levels (cool greys) */
  --t1: #16181D;
  --t2: #374151;
  --t3: #4B5563;
  --t4: #6B7280;
  --t5: #9AA1AC;

  /* type */
  --display: 'Newsreader', Georgia, serif;
  --ui: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --guillemet: 'Playfair Display', serif;
  --script: 'Mrs Saint Delafield', cursive;

  --maxw: 1040px;
  --radius: 18px;
  --radius-sm: 14px;
  --shadow-card: 0 1px 2px rgba(22,24,29,0.05), 0 18px 48px -28px rgba(22,24,29,0.32);
  --shadow-rouge: 0 10px 24px -12px rgba(22,24,29,0.42);
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--paper);
  /* a soft near-white glow behind the hero for depth; everything stays light + legible */
  background-image: radial-gradient(1100px 560px at 50% -170px, #FFFFFF 0%, rgba(255,255,255,0) 62%);
  background-repeat: no-repeat;
  color: var(--ink);
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--rouge); color: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rouge);
}
.serif { font-family: var(--display); }
.ital { font-style: italic; }
.rouge { color: var(--rouge); }
.u { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.hairline { height: 1px; background: var(--hairline); }

.section-head h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 14px 0 0;
}
.section-head p.lede {
  font-family: var(--display);
  font-size: clamp(18px, 2.4vw, 21px);
  line-height: 1.55;
  color: var(--t2);
  max-width: 680px;
  margin: 20px 0 0;
  text-wrap: pretty;
}

/* ---------- guillemet device ---------- */
.guill {
  font-family: var(--guillemet);
  font-weight: 700;
  color: var(--rouge);
  line-height: 0.5;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: rgba(245,246,248,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wordmark .guill { font-size: 30px; line-height: 1; }
.wordmark .name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 25px;
  position: relative;
  top: 3px;
}
.nav-cta {
  background: var(--rouge);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 15px;
  padding: 11px 22px;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--bordeaux); transform: translateY(-1px); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 22px 0 16px; text-align: center; }
.hero .platforms {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t4);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 7px 16px;
  background: var(--card);
}
.hero .platforms .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rouge); }
.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 4.1vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 14px auto 0;
  max-width: 26ch;
  text-wrap: balance;
}
.hero h1 .said {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.hero h1 .guill { font-size: 0.7em; }
.hero .sub {
  font-family: var(--display);
  font-size: clamp(19px, 2.6vw, 24px);
  line-height: 1.5;
  color: var(--t2);
  max-width: 600px;
  margin: 16px auto 0;
  text-wrap: pretty;
}
.hero .cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}
.btn-rouge {
  background: var(--rouge);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 18px;
  padding: 17px 34px;
  box-shadow: var(--shadow-rouge);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn-rouge:hover { background: var(--bordeaux); transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(22,24,29,0.32); }
.btn-ink {
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 100px;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 26px;
  transition: transform .2s ease, opacity .2s ease;
}
.btn-ink:hover { transform: translateY(-2px); opacity: 0.92; }
.hero .reassure {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t4);
}

/* ============================================================
   section scaffolding
   ============================================================ */
section { position: relative; }
.block { padding: 78px 0; }
.divider .hairline { max-width: var(--maxw); margin: 0 auto; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.step {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 30px;
}
.step .num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--rouge);
}
.step h3 {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 19px;
  margin: 14px 0 0;
}
.step p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--t3);
  margin: 8px 0 0;
}

/* ============================================================
   A TASTE  (the report kit)
   ============================================================ */
.label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t4);
  margin: 38px 0 16px;
}
/* verdict hero unit */
.verdict {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: clamp(28px, 5vw, 44px);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.verdict .q-open, .verdict .q-close {
  flex: none;
  font-family: var(--guillemet);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 64px);
  color: var(--rouge);
  line-height: 0.8;
}
.verdict .q-close { align-self: flex-end; }
.verdict blockquote {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.3;
  color: var(--ink);
  text-wrap: pretty;
}
.verdict .sign {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.verdict .autograph {
  font-family: var(--script); font-style: italic;
  font-size: 42px;
  color: var(--rouge);
  line-height: 1;
  padding-right: 18px;
}
.verdict .on {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--bordeaux);
}

.taste-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 18px;
  margin-top: 34px;
}
/* superlative card */
.superlative {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 28px 30px;
  height: 100%;
}
.superlative .tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--pink-soft);
}
.superlative .big {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 64px);
  line-height: 0.9;
  margin: 10px 0 6px;
  color: var(--rouge);
}
.superlative .desc { font-weight: 600; font-size: 17px; line-height: 1.35; }
/* evidence bubble — styled like real WhatsApp messages */
.evidence {
  background: #EFE7DC; /* WhatsApp chat wallpaper warm beige */
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 26px 28px;
  height: 100%;
}
.bubble {
  font-family: var(--ui);
  font-size: 15.5px;
  line-height: 1.45;
  padding: 9px 13px 22px;
  max-width: 82%;
  position: relative;
}
/* received message — white, left side */
.bubble.them {
  background: #fff;
  color: #111;
  border-radius: 0 12px 12px 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.13);
}
.bubble.them::before {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  width: 0; height: 0;
  border-right: 9px solid #fff;
  border-top: 9px solid transparent;
}
/* sent message — WhatsApp green, right side */
.bubble.her {
  background: #DCF8C6;
  color: #111;
  border-radius: 12px 0 12px 12px;
  margin: 10px 0 0 auto;
  box-shadow: 0 1px 2px rgba(0,0,0,0.13);
}
.bubble.her::before {
  content: '';
  position: absolute;
  top: 0; right: -8px;
  width: 0; height: 0;
  border-left: 9px solid #DCF8C6;
  border-top: 9px solid transparent;
}
/* time + tick stamp on every bubble */
.bubble::after {
  content: attr(data-time, '') ' ✓✓';
  position: absolute;
  bottom: 5px; right: 10px;
  font-size: 10px;
  color: rgba(0,0,0,0.38);
  white-space: nowrap;
}
.bubble.her::after { color: #53a065; }
.evidence .quip {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--bordeaux);
  margin-top: 16px;
}

/* superlative tags */
.tagrow { display: flex; flex-wrap: wrap; gap: 11px; }
.stag {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  padding: 7px 18px;
  border-radius: 100px;
}
.stag.blush { background: var(--card); color: var(--ink); border: 1px solid var(--hairline); }
.stag.ink { background: var(--ink); color: var(--paper); }
.stag.rouge-bg { background: var(--rouge); color: #fff; }

/* ============================================================
   WALL OF LOVE  (carousel)
   ============================================================ */
.wall .eyebrow { color: var(--rouge); }
.carousel {
  display: flex;
  gap: 18px;
  margin-top: 40px;
  padding: 4px 40px 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.react-card {
  scroll-snap-align: center;
  flex: 0 0 320px;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.react-card .who {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rouge);
}
.chat { display: flex; flex-direction: column; gap: 8px; }
.msg {
  font-size: 14.5px;
  line-height: 1.4;
  padding: 10px 13px;
  max-width: 88%;
}
.msg.them { background: #fff; border: 1px solid var(--hairline-soft); border-radius: 12px 12px 12px 3px; }
.msg.me { background: var(--rouge); color: #fff; border-radius: 12px 12px 3px 12px; align-self: flex-end; }
.react-card .react {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--bordeaux);
  margin-top: auto;
}
.carousel-hint {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t4);
  text-align: center;
  margin-top: 4px;
}

/* ============================================================
   PRICING
   ============================================================ */
.price-wrap { display: flex; justify-content: center; margin-top: 44px; }
.price-card {
  background: var(--card);
  border: 1.5px solid var(--rouge);
  border-radius: 24px;
  padding: 44px 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.price-card .free {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bordeaux);
  background: var(--blush);
  border: 1px solid var(--blush-br);
  border-radius: 100px;
  padding: 6px 14px;
  display: inline-block;
}
.price-card .amount {
  font-family: var(--display);
  font-weight: 500;
  font-size: 84px;
  line-height: 1;
  margin: 22px 0 0;
}
.price-card .amount sup { font-size: 36px; vertical-align: 28px; color: var(--rouge); }
.price-card .unit {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t4);
  margin-top: 6px;
}
.price-card .burrito {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--t2);
  margin: 22px 0 0;
  text-wrap: pretty;
}
.price-card .btn-rouge { margin-top: 28px; width: 100%; }
.price-card .fineprint {
  font-size: 13px;
  color: var(--t4);
  margin-top: 14px;
}

/* ============================================================
   PRIVACY
   ============================================================ */
.privacy { background: var(--ink); }
.privacy .section-head h2 { color: var(--paper); }
.privacy .section-head p.lede { color: #9AA1AC; }
.privacy .eyebrow { color: #9AA1AC; }
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.priv {
  background: rgba(255,255,255,0.04);
  padding: 32px 28px 28px;
  border-right: 2px solid rgba(255,255,255,0.08);
  transition: background .2s ease;
}
.priv:last-child { border-right: none; }
.priv:hover { background: rgba(255,255,255,0.07); }
.priv .ic {
  font-size: 36px;
  line-height: 1;
  display: block;
  margin-bottom: 18px;
}
.priv h3 {
  font-family: var(--ui); font-weight: 700; font-size: 17px;
  color: var(--paper); margin: 0;
}
.priv p {
  font-size: 14.5px; line-height: 1.6;
  color: rgba(255,255,255,0.48); margin: 10px 0 0;
}
.priv .priv-tag {
  display: inline-block;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 3px 10px;
  margin-top: 18px;
}
.privacy .promise {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.45;
  color: rgba(255,255,255,0.75);
  text-align: center;
  max-width: 660px;
  margin: 44px auto 0;
  text-wrap: pretty;
  padding: 0 20px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: 40px; border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 4px;
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 24px);
  color: var(--ink);
  line-height: 1.3;
}
.faq-q .plus {
  flex: none;
  font-family: var(--guillemet);
  font-size: 28px;
  color: var(--rouge);
  transition: transform .3s ease;
  line-height: 1;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 4px 26px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--t3);
  max-width: 760px;
}
.faq-a-inner em { color: var(--bordeaux); font-style: italic; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 74px 40px 56px;
  text-align: center;
}
.footer .icon {
  display: inline-flex;
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--rouge);
  align-items: center; justify-content: center;
  margin: 0 auto;
}
.footer .icon span {
  font-family: var(--guillemet);
  font-weight: 700;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  margin-top: -2px;
}
.footer .signoff {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.15;
  margin: 24px auto 0;
  max-width: 16ch;
  text-wrap: balance;
}
.footer .signoff .pink { color: var(--paper); font-style: italic; }
.footer-cta {
  background: var(--paper); color: var(--ink); border: none; border-radius: 100px;
  font-family: var(--ui); font-weight: 700; font-size: 16px; padding: 15px 28px;
  margin-top: 24px; cursor: pointer; transition: transform .2s ease, opacity .2s ease;
}
.footer-cta:hover { transform: translateY(-2px); opacity: 0.92; }
.foot-priv {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--t5); margin-top: 18px;
}
.foot-trust {
  display: flex; flex-direction: column; align-items: center; gap: 7px; margin-top: 22px;
}
.foot-trust span {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #BFC5CE;
}
.foot-trust span:first-child { color: var(--paper); }
.footer .links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
  font-size: 15px;
  color: #BFC5CE;
}
.footer .links a:hover { color: var(--paper); }
.footer .meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t4);
  margin-top: 28px;
}

/* ============================================================
   sticky mobile CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(245,246,248,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--hairline);
  transform: translateY(120%);
  transition: transform .3s ease;
  display: none;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn-rouge { width: 100%; padding: 15px; font-size: 16px; }

/* ============================================================
   scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 860px) {
  .wrap { padding: 0 24px; }
  .nav { padding: 12px 24px; }
  .block { padding: 54px 0; }
}
@media (max-width: 600px) {
  .nav-cta { display: none; }
  .sticky-cta { display: block; }
  body { padding-bottom: 78px; }
  .hero { padding: 18px 0 14px; }
  .social.block { padding: 24px 0 44px; }
  .footer { padding: 54px 24px 44px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .wall-track { animation: none; }
  .wall { overflow-x: auto; }
}

/* ============================================================
   Margot persona (hero) + taste hook
   ============================================================ */
.hero-persona {
  display: flex; flex-direction: column; align-items: center; gap: 9px; margin-bottom: 2px;
}
.margot-face {
  width: 82px; height: 82px; border-radius: 50%;
  object-fit: cover; object-position: 54% 24%;
  border: 2px solid var(--ink); background: var(--ink);
  box-shadow: 0 12px 28px -16px rgba(22,24,29,0.6);
}
.plat-logo { width: 18px; height: 18px; border-radius: 5px; display: inline-block; }
.persona-label { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.persona-label .pname { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 26px; line-height: 1; }
.persona-label .ptag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rouge); }

.taste-hook {
  margin-top: 38px; padding-top: 34px; border-top: 1px solid var(--hairline); text-align: center;
}
.taste-hook .hook-line {
  font-family: var(--display); font-size: clamp(20px, 3vw, 27px); line-height: 1.4;
  color: var(--ink); max-width: 600px; margin: 0 auto; text-wrap: pretty;
}
.taste-hook .hook-line em { font-style: italic; color: var(--rouge); }
.taste-hook .btn-rouge { margin-top: 24px; }
.taste-hook .hook-sub {
  display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--t4); margin-top: 14px;
}

/* ============================================================
   Trust strip (privacy, surfaced in the hero)
   ============================================================ */
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; margin-top: 14px;
}
.trust-strip span {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--t3); display: inline-flex; align-items: center;
}
.trust-strip span::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--rouge);
  display: inline-block; margin-right: 9px;
}

/* ============================================================
   Cinematic portrait band
   ============================================================ */
.cinematic { padding: 10px 0; }

/* ============================================================
   The wall — all the screenshots, auto-scrolling (social proof)
   ============================================================ */
.wall-sec {
  padding: 40px 0 52px;
  background: #fff;
}
.wall-cta .btn-rouge {
  background: var(--rouge); color: #fff;
}
.wall-cta .btn-rouge:hover { background: var(--rouge-dark, #b8243a); }
.wall {
  margin-top: 28px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.wall-track {
  display: flex; gap: 16px; width: max-content;
  animation: marquee 80s linear infinite; will-change: transform;
}
.wall:hover .wall-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.wshot {
  flex: 0 0 auto; margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
}
.wshot img {
  width: clamp(240px, 22vw, 300px); height: auto; display: block;
  image-rendering: -webkit-optimize-contrast;
}
.wall-cta { text-align: center; margin-top: 28px; }
@media (max-width: 600px) {
  .wall-track { gap: 12px; }
  .wshot img { width: 72vw; }
  .wall-sec { padding: 28px 0 36px; }
}

/* ============================================================
   Social proof — real chat screenshots (the receipts)
   ============================================================ */
.shots {
  display: flex; gap: 20px; margin-top: 16px;
  padding: 8px 40px 16px;
  overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; cursor: grab;
}
.shots::-webkit-scrollbar { display: none; }
.shots.grabbing { cursor: grabbing; }
/* phones held up — a dark device bezel framing each screenshot */
.shot {
  flex: 0 0 auto; margin: 0; scroll-snap-align: center;
  background: #0E0F12; border: 1px solid #2A2D34;
  border-radius: 34px; padding: 8px;
  box-shadow: 0 26px 56px -26px rgba(22,24,29,0.55), 0 3px 8px -4px rgba(22,24,29,0.25);
  transition: transform .25s ease, box-shadow .25s ease;
}
.shot:hover { transform: translateY(-4px); box-shadow: 0 34px 64px -24px rgba(22,24,29,0.6), 0 4px 10px -4px rgba(22,24,29,0.3); }
.shot img {
  width: 258px; height: auto; display: block;
  border-radius: 26px;
  pointer-events: none;
}
@media (max-width: 600px) {
  .shots { padding: 8px 24px 10px; }
  .shot img { width: 76vw; }
}
/* compact the receipts section so the phones peek above the fold */
.social.block { padding: 18px 0 52px; }
.social .section-head h2 { font-size: clamp(24px, 3.4vw, 34px); margin-top: 8px; }
.social .section-head p.lede { font-size: clamp(16px, 2vw, 18px); margin-top: 10px; }
.cine-panel {
  position: relative; margin: 0; border-radius: 22px; overflow: hidden;
  background: var(--ink); aspect-ratio: 16 / 7; min-height: 320px;
}
.cine-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 26%;
  filter: grayscale(1) contrast(1.04) brightness(1.02);
}
.cine-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(26px, 5vw, 46px);
  background: linear-gradient(90deg, rgba(15,16,20,0.82) 0%, rgba(15,16,20,0.34) 46%, rgba(15,16,20,0) 74%);
}
.cine-kicker {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #9AA1AC;
}
.cine-kicker .guill { font-size: 26px; }
.cine-quote {
  font-family: var(--display); font-weight: 500; font-size: clamp(34px, 6vw, 58px);
  line-height: 1.0; letter-spacing: -0.02em; color: var(--paper); margin-top: 12px; max-width: 18ch; text-wrap: balance;
}
@media (max-width: 600px) {
  .cine-overlay { background: linear-gradient(0deg, rgba(15,16,20,0.9) 12%, rgba(15,16,20,0.2) 70%); }
}
