/* ═══════════════════════════════════════════════════════════
   911 WEBSITES - design system (light, warm, craftsman)
   Paper base, ink text, one deep red accent. Dark only where it
   works: photos, the guarantee band, slate blocks, the footer.

   SECTION CONTRACT (locked - reflow content, not the grid):
     <section class="section [section--dark|--white|--seam]" id="...">
       <div class="wrap">
         <div class="section__head"> .kicker + .h2 + .lead </div>
         ...content components...
   Content components: .tile / .tile--feature (cards), .pillars,
   .steps, .imgbreak, .plans, .quote (+ .carousel), .form, .cred.
   All colors/spacing/radii come from the :root tokens below;
   adjust the theme there, never inline.
   Tokens -> Base -> Type -> Components -> Sections -> Breakpoints
═══════════════════════════════════════════════════════════ */

:root {
  /* Surfaces (warm paper, no pure white page bg) */
  --bg:         #FAF8F3;
  --bg-2:       #F2EFE7;
  --surface:    #FFFFFF;
  --surface-2:  #F2EFE7;
  --line:       rgba(28, 25, 20, 0.10);
  --line-2:     rgba(28, 25, 20, 0.20);

  /* Single accent: deep brand red (AA on paper and as button bg) */
  --red:        #D0141C;
  --red-deep:   #A50F15;
  --red-soft:   rgba(208, 20, 28, 0.07);

  /* Ink (tertiary raised to 0.58 for AA on paper) */
  --text:       #1C1917;
  --text-2:     rgba(28, 25, 23, 0.70);
  --text-3:     rgba(28, 25, 23, 0.58);

  /* Dark pockets: one slate for dark sections + footer (centralized) */
  --slate:      #24211D;
  --on-slate:   #F5F2EC;
  --on-slate-2: rgba(245, 242, 236, 0.72);
  /* Étienne read the old #FF9B9F as pink on the dark bands. The brand red
     itself only reaches 2.9:1 against --slate, so it cannot be used here;
     this is as red as the accent gets while staying legible (5.75:1). */
  --red-on-slate: #FF6B63;

  /* Type */
  --font-display: 'Bricolage Grotesque', Georgia, serif;
  --font-body:    'Hanken Grotesk', system-ui, sans-serif;

  --fs-display: clamp(2.4rem, 6vw, 4.25rem);
  --fs-h2:      clamp(1.9rem, 4.4vw, 3rem);
  --fs-h3:      1.3125rem;
  --fs-lead:    clamp(1.125rem, 1.5vw, 1.3125rem);
  --fs-body:    1.0625rem;
  --fs-sm:      0.9375rem;
  --fs-xs:      0.8125rem;
  --fs-kicker:  0.75rem;

  /* Spacing */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px; --s5: 20px;
  --s6: 24px; --s8: 32px; --s10: 40px; --s12: 48px; --s16: 64px;
  --s20: 80px; --s24: 96px; --s32: 128px;

  /* Radii (locked scale) */
  --r-xs: 8px;
  --r-sm: 12px;
  --r:    16px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* Shadows (warm-tinted, never pure black) */
  --shadow-lift: 0 20px 50px -22px rgba(60, 42, 24, 0.28), 0 0 0 1px var(--line);
  --shadow-red:  0 22px 55px -26px rgba(180, 18, 24, 0.38);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:  0.55s;
  --t:    0.22s ease;

  --nav-h: 70px;
  --maxw: 1240px;
}

/* ── RESET / BASE ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
sup { font-size: 0.5em; vertical-align: super; font-weight: inherit; }

/* Subtle paper grain (click-through) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── TYPOGRAPHY ────────────────────────────────── */
.display, .h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.02;
  color: var(--text);
  text-wrap: balance;
}
.display { font-size: var(--fs-display); }
.h2      { font-size: var(--fs-h2); line-height: 1.06; letter-spacing: -0.024em; }
.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h3);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.accent { color: var(--red); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--text-2);
  max-width: 56ch;
  text-wrap: pretty;
}
.muted { color: var(--text-3); }

/* Kicker: the signature dash is a red rule, not a character */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--s6);
}
.kicker::before {
  content: '';
  width: 32px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

/* ── LAYOUT ────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--s5);
}

.section {
  padding-block: clamp(var(--s20), 10vw, var(--s24));
  position: relative;
}
.section--seam { border-top: 1px solid var(--line); }
.section--white { background: var(--surface); border-block: 1px solid var(--line); }
.section__head { max-width: 780px; margin-bottom: var(--s12); }
.section__head .h2 { margin-bottom: var(--s5); }

/* ── REVEAL / STAGGER ──────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur) ease, transform var(--dur) var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }

.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur) ease, transform var(--dur) var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
[data-reveal].in .stagger > *,
.stagger.in > * { opacity: 1; transform: none; }

/* ── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--r-pill);
  padding: 16px 28px;
  min-height: 54px;
  white-space: nowrap;
  transition: background var(--t), color var(--t), transform var(--t), border-color var(--t), box-shadow var(--t);
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--red);
  color: #FFFFFF;
}
.btn--primary:hover  { background: var(--red-deep); transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-2);
}
.btn--ghost:hover { border-color: var(--text); background: rgba(28, 25, 20, 0.04); }
.btn--on-red {
  background: #FFFFFF;
  color: var(--red-deep);
}
.btn--on-red:hover { background: var(--bg); transform: translateY(-2px); }
.btn--lg { font-size: 1.0625rem; padding: 18px 34px; min-height: 60px; }
.btn--full { width: 100%; }
.btn--nav { min-height: 44px; padding: 11px 20px; font-size: var(--fs-sm); }
.btn__arrow { transition: transform var(--t); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ── LOGO ──────────────────────────────────────── */
.logo { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo__sq-group { display: flex; gap: 3px; }
.logo__sq {
  display: grid;
  place-items: center;
  width: 25px; height: 27px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  border-radius: 6px;
  line-height: 1;
}
.logo__word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

/* ── LANGUAGE TOGGLE ───────────────────────────── */
.lang {
  display: inline-flex;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface);
}
.lang button {
  padding: 0 14px;
  min-height: 42px;
  min-width: 46px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-3);
  transition: background var(--t), color var(--t);
}
.lang button:hover { color: var(--text); }
.lang button[aria-pressed="true"] {
  background: var(--text);
  color: var(--bg);
}

/* ── NAV ───────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(250, 248, 243, 0.82);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(250, 248, 243, 0.94); }
.nav__inner { display: flex; align-items: center; gap: var(--s4); width: 100%; }
.nav__links { display: none; gap: var(--s6); margin-left: auto; margin-right: var(--s2); }
.nav__links a {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-2);
  transition: color var(--t);
}
.nav__links a:hover { color: var(--text); }
.nav__cta { display: none; }
.nav .lang { margin-left: auto; }

.nav__burger {
  display: grid;
  gap: 5px;
  width: 44px; height: 44px;
  place-content: center;
  flex-shrink: 0;
}
.nav__burger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav.open .nav__links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: var(--s6) var(--s5) var(--s16);
  gap: var(--s5);
  margin: 0;
}
.nav.open .nav__links a { font-size: 1.15rem; }
.nav.open .nav__cta {
  display: inline-flex;
  position: absolute;
  top: calc(var(--nav-h) + 178px);
  left: var(--s5); right: var(--s5);
}

/* ── HERO ──────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + var(--s16));
  padding-bottom: var(--s20);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  position: relative;
  display: grid;
  gap: var(--s12);
}
.hero__copy { display: flex; flex-direction: column; align-items: flex-start; }
.hero__title { margin-bottom: var(--s6); }
.hero__title .line { display: block; }
.hero__lead { margin-bottom: var(--s8); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s4); align-items: center; }
.hero__micro {
  margin-top: var(--s5);
  font-size: var(--fs-sm);
  color: var(--text-3);
}

/* Rotating trade word in a bordered pill */
.trade {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--red);
  background: var(--red-soft);
  border-radius: var(--r-sm);
  padding: 0 0.3em;
  color: var(--text);
  transition: opacity 0.24s ease;
  white-space: nowrap;
}

/* Trust row: hairline-separated, no dot characters */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4) var(--s6);
  margin-top: var(--s10);
  padding-top: var(--s8);
  border-top: 1px solid var(--line);
  width: 100%;
}
.trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-2);
  padding-left: var(--s6);
  border-left: 1px solid var(--line);
}
.trust li:first-child { padding-left: 0; border-left: none; }
.trust svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

/* ── PANEL CARDS (hero visuals) ────────────────── */
.panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s5);
  box-shadow: var(--shadow-lift);
  max-width: 430px;
  width: 100%;
  justify-self: center;
}
.panel__head {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding-bottom: var(--s4);
  margin-bottom: var(--s4);
  border-bottom: 1px solid var(--line);
}
.panel__avatar {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  background: var(--red);
  color: #fff;
  flex-shrink: 0;
}
.panel__avatar svg { width: 20px; height: 20px; }
.panel__who { font-weight: 700; font-size: var(--fs-sm); line-height: 1.3; }
.panel__status {
  display: flex; align-items: center; gap: 6px;
  font-size: var(--fs-xs); color: var(--text-3);
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #1E9E63;
  animation: livePulse 2s var(--ease) infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(30, 158, 99, 0.45); }
  70%  { box-shadow: 0 0 0 7px rgba(30, 158, 99, 0); }
  100% { box-shadow: 0 0 0 0 rgba(30, 158, 99, 0); }
}

/* Chat card (variant A) - CSS-driven cascade once .in */
.chatcard__feed { display: flex; flex-direction: column; gap: var(--s3); }
.msg {
  max-width: 86%;
  padding: 11px 15px;
  font-size: var(--fs-sm);
  line-height: 1.45;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(8px);
}
.msg--ai {
  align-self: flex-start;
  background: var(--bg-2);
  color: var(--text);
  border-bottom-left-radius: 5px;
}
.msg--user {
  align-self: flex-end;
  background: var(--red);
  color: #fff;
  border-bottom-right-radius: 5px;
}
@keyframes msgIn { to { opacity: 1; transform: none; } }
.panel.in .msg {
  animation: msgIn 0.45s var(--ease) forwards;
  animation-delay: calc(0.4s + var(--i, 0) * 0.85s);
}
.panel__capture {
  margin-top: var(--s4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: var(--r-sm);
  background: var(--red-soft);
  color: var(--red-deep);
  font-size: var(--fs-xs);
  font-weight: 700;
  opacity: 0;
}
.panel.in .panel__capture { animation: msgIn 0.5s var(--ease) 4s forwards; }
.panel__capture svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Digest card (variant B) */
.digest__rows { display: flex; flex-direction: column; }
.digest__row {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  padding-block: var(--s3);
  border-top: 1px solid var(--line);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text);
  opacity: 0;
  transform: translateY(8px);
}
.digest__row:first-child { border-top: none; }
.digest__row svg { width: 17px; height: 17px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.digest__row--muted { color: var(--text-3); }
.digest__row--muted svg { color: var(--text-3); }
.panel.in .digest__row {
  animation: msgIn 0.4s var(--ease) forwards;
  animation-delay: calc(0.4s + var(--i, 0) * 0.5s);
}
.panel.in .panel__capture--digest { animation-delay: 3.2s; }

/* ── TILES / BENTO ─────────────────────────────── */
.bento { display: grid; gap: var(--s4); grid-template-columns: 1fr; margin-top: var(--s12); }
.tile {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s6);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.tile:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.tile__ico {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: var(--red-soft);
  color: var(--red);
  margin-bottom: var(--s5);
}
.tile__ico svg { width: 23px; height: 23px; }
.tile .h3 { margin-bottom: var(--s2); }
.tile p { color: var(--text-2); font-size: var(--fs-sm); }

.tile--feature {
  background:
    radial-gradient(120% 120% at 100% 0%, var(--red-soft), transparent 55%),
    var(--surface);
  border-color: rgba(208, 20, 28, 0.28);
}
.tile--feature .tile__big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin-bottom: var(--s3);
}
.tile__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s5); }
.minichip {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-2);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 12px;
}

/* ── PILLARS (home: the two offers, side by side) ── */
.pillars { display: grid; gap: var(--s4); margin-top: var(--s12); }
.pillars .tile--feature { grid-column: auto; display: flex; flex-direction: column; }

/* Sales CRM: compact extension card below the two pillars */
/* ── Pillar mockups: a still frame of the product, inside the card ── */
.mock {
  margin-top: var(--s5);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
  overflow: hidden;
}
.mock__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.mock__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); }
.mock__dot:nth-child(1) { background: #E9807E; }
.mock__dot:nth-child(2) { background: #E7C46A; }
.mock__dot:nth-child(3) { background: #7FC08A; }
.mock__url {
  margin-left: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--text-3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mock__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}
.mock__ico {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 9px;
  background: var(--red-soft);
  color: var(--red);
}
.mock__ico svg { width: 16px; height: 16px; }
.mock__id { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.mock__id b { font-size: var(--fs-sm); color: var(--text); }
.mock__id em { font-style: normal; font-size: 12px; color: #357A49; }
.mock__feed { display: flex; flex-direction: column; gap: 8px; padding: 12px; }
/* These bubbles are static art, not the animated hero panel. */
.mock__feed .msg { opacity: 1; transform: none; max-width: 92%; font-size: 13px; padding: 9px 12px; }

.mock--call { padding: 12px; }
.call__head { display: flex; align-items: center; gap: 10px; }
.call__avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--text-2);
}
.call__avatar svg { width: 18px; height: 18px; }
.call__id { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }
.call__id b { font-size: var(--fs-sm); color: var(--text); }
.call__id em { font-style: normal; font-size: 12px; color: var(--text-3); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.call__timer {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red-deep);
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.call__wave { display: flex; align-items: center; gap: 3px; height: 34px; margin: 14px 2px 12px; }
.call__wave i {
  flex: 1;
  border-radius: 2px;
  background: var(--red);
  opacity: 0.55;
  height: 30%;
}
.call__wave i:nth-child(3n) { height: 85%; }
.call__wave i:nth-child(3n+1) { height: 55%; }
.call__wave i:nth-child(4n) { height: 100%; }
.call__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 2px;
}
.mock__feed--call { padding: 8px 0 0; }

.pillar-mini {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s4);
  margin-top: var(--s4);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s5) var(--s6);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.pillar-mini:hover { border-color: rgba(208, 20, 28, 0.35); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.pillar-mini .tile__ico { margin-bottom: 0; flex-shrink: 0; }
.pillar-mini__body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 200px; }
.pillar-mini__t {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.pillar-mini__s { font-size: var(--fs-sm); color: var(--text-2); }
.pillar__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--s6);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--red-deep);
  min-height: 44px;
}
.pillar__link svg { width: 16px; height: 16px; transition: transform var(--t); }
.pillar__link:hover svg { transform: translateX(4px); }

/* ── STEPS ─────────────────────────────────────── */
.steps { display: grid; gap: var(--s8); margin-top: var(--s12); }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s5);
  align-items: start;
  padding-bottom: var(--s8);
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step__n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3rem);
  line-height: 1;
  color: var(--red-deep);
  font-variant-numeric: tabular-nums;
  min-width: 1.5em;
}
.step .h3 { margin-bottom: var(--s2); }
.step p { color: var(--text-2); }

/* ── BENEFITS STRIP ────────────────────────────── */
.benefits {
  display: grid;
  gap: var(--s6);
  padding-block: var(--s8);
  border-block: 1px solid var(--line);
}
.benefit__t {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin-bottom: var(--s1);
}
.benefit p { color: var(--text-2); font-size: var(--fs-sm); max-width: 34ch; }

/* ── PRICING ───────────────────────────────────── */
.plans { display: grid; gap: var(--s4); margin-top: var(--s12); }
.plan {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s8) var(--s6);
  position: relative;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.plan:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.plan--featured {
  border-color: rgba(208, 20, 28, 0.4);
  background:
    radial-gradient(130% 100% at 50% 0%, var(--red-soft), transparent 55%),
    var(--bg);
  box-shadow: var(--shadow-red);
}
.plan--featured:hover { border-color: rgba(208, 20, 28, 0.6); }
.badge {
  position: absolute;
  top: calc(-1 * var(--s3));
  left: var(--s6);
  background: var(--red);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 13px;
  border-radius: var(--r-pill);
}
.plan__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.plan__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.plan__price span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--text-3);
  margin-left: 6px;
}
.plan__desc { color: var(--text-2); font-size: var(--fs-sm); min-height: 2.6em; }
.plan__features { display: flex; flex-direction: column; gap: var(--s3); flex: 1; }
.plan__features li {
  display: flex;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--text);
  line-height: 1.5;
}
.plan__features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}
.plan .btn { margin-top: var(--s2); }

.addons { margin-top: var(--s12); }
.addons__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--s5);
  color: var(--text);
}
.addons__list { display: grid; gap: var(--s3); }
.addons__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 16px 18px;
}
.addons__price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--red-deep);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.pricing__note { margin-top: var(--s8); font-size: var(--fs-sm); color: var(--text-3); }

/* ── CREDIBILITY STRIP (founder pedigree, text only) ── */
.cred {
  border-block: 1px solid var(--line);
  padding-block: var(--s8);
  background: var(--surface);
}
.cred__inner { display: flex; flex-direction: column; gap: var(--s4); }
.cred__label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.cred__names {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3) var(--s6);
}
.cred__names li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text-2);
  white-space: nowrap;
}

/* ── PROBLEM SPLIT ─────────────────────────────── */
.probgrid { display: grid; gap: var(--s10); }
.pains { display: flex; flex-direction: column; gap: var(--s6); }
.pain {
  border-left: 2px solid var(--red);
  padding-left: var(--s6);
}
.pain .h3 { margin-bottom: var(--s2); }
.pain p { color: var(--text-2); }

/* ── IMAGE BREAK (full-bleed photo + one line) ── */
.imgbreak {
  position: relative;
  min-height: clamp(360px, 55vw, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.imgbreak img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.imgbreak::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 19, 16, 0.1) 0%, rgba(23, 19, 16, 0.78) 100%);
}
.imgbreak .wrap { position: relative; z-index: 1; padding-block: var(--s12); }
.imgbreak .h2 { color: #FFFFFF; max-width: 22ch; }

/* ── GUARANTEE BAND (the single full-red moment) ── */
.guarantee {
  background: var(--red-deep);
  color: #FFFFFF;
}
.guarantee .kicker { color: rgba(255, 255, 255, 0.85); }
.guarantee .kicker::before { background: #FFFFFF; }
.guarantee .h2 { color: #FFFFFF; max-width: 20ch; }
.guarantee__sub {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
  margin-top: var(--s5);
  text-wrap: pretty;
}
.guarantee .btn { margin-top: var(--s8); }

/* ── QUOTES: one featured + carousel for the rest ── */
.proof-feature { margin-top: var(--s12); }
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s5);
  transition: border-color var(--t), box-shadow var(--t);
}
.quote:hover { border-color: rgba(208, 20, 28, 0.28); box-shadow: var(--shadow-lift); }
.quote__stars { color: #C77800; letter-spacing: 3px; font-size: 1rem; }
.quote__text { font-size: var(--fs-body); line-height: 1.6; color: var(--text); }
.quote--feature .quote__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
}
.quote__by { display: flex; align-items: center; gap: var(--s3); margin-top: auto; }
.quote__avatar {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--av, var(--red));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.quote__name { font-weight: 700; font-size: var(--fs-sm); }
.quote__role { color: var(--text-3); font-size: var(--fs-xs); }
.proof__note { margin-top: var(--s6); font-size: var(--fs-xs); color: var(--text-3); }

/* Carousel (desktop + mobile), sober: scroll-snap track + chevrons */
.carousel { position: relative; margin-top: var(--s4); }
.carousel__track {
  display: flex;
  gap: var(--s4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--s2);
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track .quote {
  flex: 0 0 84%;
  scroll-snap-align: start;
}
.carousel__nav { display: flex; gap: var(--s3); justify-content: flex-end; margin-top: var(--s4); }
.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: border-color var(--t), background var(--t);
}
.carousel__btn:hover { border-color: var(--text); }
.carousel__btn svg { width: 18px; height: 18px; }

/* ── FAQ ───────────────────────────────────────── */
.faq { max-width: 820px; margin-inline: auto; }
.faq__head { text-align: center; margin-bottom: var(--s12); }
.faq__head .kicker { justify-content: center; }
.qa { border-top: 1px solid var(--line); }
.qa:last-of-type { border-bottom: 1px solid var(--line); }
.qa__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  text-align: left;
  padding: var(--s6) 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  min-height: 68px;
  transition: color var(--t);
}
.qa__q:hover { color: var(--red); }
.qa__icon { position: relative; width: 26px; height: 26px; flex-shrink: 0; }
.qa__icon::before, .qa__icon::after {
  content: '';
  position: absolute;
  inset: 50% 4px auto 4px;
  height: 2px;
  background: var(--red);
  transform: translateY(-50%);
  transition: transform var(--t);
}
.qa__icon::after { transform: translateY(-50%) rotate(90deg); }
.qa__q[aria-expanded="true"] .qa__icon::after { transform: translateY(-50%) rotate(0); }
.qa__a[hidden] { display: none; }
.qa__a p { color: var(--text-2); padding-bottom: var(--s6); max-width: 64ch; }

/* ── CONTACT / FORM ────────────────────────────── */
.contact { background: var(--bg-2); border-top: 1px solid var(--line); }
.contact__grid { display: grid; gap: var(--s12); }
.contact__pitch .display { margin-bottom: var(--s5); }
.contact__pitch .lead { margin-bottom: var(--s6); }

.founding {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 0;
  margin-bottom: var(--s2);
  padding: 11px 18px;
  border-radius: var(--r-pill);
  background: var(--red-soft);
  border: 1px solid rgba(208, 20, 28, 0.25);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--red-deep);
}
.founding svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--red); }

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s8);
  box-shadow: var(--shadow-lift);
}
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: var(--s5); }
.field label { font-size: var(--fs-sm); font-weight: 600; color: var(--text); }
.field .req { color: var(--red); }
.field input,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: 15px 16px;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  min-height: 54px;
  transition: border-color var(--t), background var(--t);
  -webkit-appearance: none;
}
.field textarea { min-height: 110px; resize: vertical; line-height: 1.5; }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-3); }
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--red); background: var(--surface); }
.field input.invalid { border-color: var(--red); }
.field__err { font-size: var(--fs-xs); color: var(--red-deep); min-height: 15px; }
.form__hint {
  font-size: var(--fs-xs);
  color: var(--text-3);
  text-align: center;
  margin-top: var(--s4);
  line-height: 1.6;
}

/* ── DARK SECTIONS (slate: pillars + contact) ──── */
.section--dark { background: var(--slate); }
.section--dark .display,
.section--dark .h2,
.section--dark .h3 { color: var(--on-slate); }
/* Tiles stay light cards inside a slate section, so their type keeps ink colour. */
.section--dark .tile .h3,
.section--dark .tile .tile__big { color: var(--text); }
.section--dark .accent { color: var(--red-on-slate); }
.section--dark .lead { color: var(--on-slate-2); }
.section--dark .kicker { color: var(--red-on-slate); }
.section--dark .trust { border-top-color: rgba(255, 255, 255, 0.14); }
.section--dark .trust li { color: var(--on-slate-2); border-left-color: rgba(255, 255, 255, 0.14); }
.section--dark .trust svg { color: var(--red-on-slate); }
.section--dark .founding {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 155, 159, 0.35);
  color: var(--red-on-slate);
}
.section--dark .founding svg { color: var(--red-on-slate); }
.section--dark .btn--ghost { color: var(--on-slate); border-color: rgba(255, 255, 255, 0.3); }
.section--dark .btn--ghost:hover { border-color: #FFFFFF; background: rgba(255, 255, 255, 0.06); }
.section--dark .minichip { background: var(--bg); }
.section--dark .form { box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.5); }

/* ── HERO PHOTO VISUAL (photo + both-pillar overlays) ── */
.hero-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 340px;
  width: 100%;
  max-width: 520px;
  justify-self: center;
  box-shadow: var(--shadow-lift);
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.float-card {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid rgba(28, 25, 20, 0.06);
  border-radius: var(--r);
  box-shadow: 0 10px 30px rgba(40, 28, 16, 0.22), 0 2px 6px rgba(40, 28, 16, 0.10);
  padding: 13px 16px;
  font-size: var(--fs-xs);
  line-height: 1.5;
  max-width: 240px;
  opacity: 0;
  transform: translateY(8px);
}
/* Speech tail on the chat bubble */
.float-card--chat::after {
  content: '';
  position: absolute;
  right: 18px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: #FFFFFF;
  border-right: 1px solid rgba(28, 25, 20, 0.06);
  border-bottom: 1px solid rgba(28, 25, 20, 0.06);
  transform: rotate(45deg);
}
.hero-visual.in .float-card { animation: msgIn 0.5s var(--ease) forwards; }
.float-card--call {
  top: var(--s4);
  left: var(--s4);
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--text);
}
.hero-visual.in .float-card--call { animation-delay: 0.5s; }
.float-card--call svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; margin-top: 1px; }
.float-card--chat {
  bottom: var(--s4);
  right: var(--s4);
  border-bottom-right-radius: 4px;
  color: var(--text-2);
}
.hero-visual.in .float-card--chat { animation-delay: 1.1s; }
.float-card--chat .who {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

/* ── FOOTER (grounding dark pocket) ────────────── */
.footer { background: var(--slate); color: var(--on-slate); }
.footer .logo__word { color: #F2F0EB; }
.footer__top { display: grid; gap: var(--s10); padding-block: var(--s16) var(--s12); }
.footer__brand { display: flex; flex-direction: column; gap: var(--s4); }
.footer__brand p { color: rgba(242, 240, 235, 0.55); font-size: var(--fs-sm); max-width: 34ch; }
.footer__nav { display: flex; flex-direction: column; gap: var(--s3); }
.footer__nav a { color: rgba(242, 240, 235, 0.65); font-size: var(--fs-sm); transition: color var(--t); }
.footer__nav a:hover { color: #FFFFFF; }
.footer__contact { display: flex; flex-direction: column; gap: var(--s3); }
.footer__mail {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: #F2F0EB;
  transition: color var(--t);
  word-break: break-all;
}
.footer__mail:hover { color: #FF8A8F; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-block: var(--s5); }
.footer__bottom p { font-size: var(--fs-xs); color: rgba(242, 240, 235, 0.4); }

/* ── SELECTOR PAGE (internal, /lab) ────────────── */
.selector {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: var(--s16);
}
.selector__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s4);
  margin-bottom: var(--s12);
}
.selector .display { margin-bottom: var(--s4); }
.selector .lead { margin-bottom: var(--s12); }
.choices { display: grid; gap: var(--s5); }
.choice {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s3);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s8);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.choice:hover {
  border-color: rgba(208, 20, 28, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.choice__tag {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.choice .h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.choice p { color: var(--text-2); font-size: var(--fs-sm); }
.choice__go {
  margin-top: var(--s4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--text);
}
.choice__go svg { width: 16px; height: 16px; color: var(--red); transition: transform var(--t); }
.choice:hover .choice__go svg { transform: translateX(4px); }

/* ── SKIP LINK ─────────────────────────────────── */
.skip {
  position: absolute;
  top: -200%; left: var(--s4);
  z-index: 999;
  background: var(--red);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: top var(--t);
}
.skip:focus { top: 0; }

/* ── LIVE EXAMPLE / BEFORE-AFTER ────────────────── */
.cmp { padding: var(--s16) 0 var(--s24); }
.cmp__head { max-width: 46rem; }
.cmp__note {
  margin-top: var(--s8);
  padding-top: var(--s4);
  border-top: 1px solid var(--line);
  color: var(--text-3);
  font-size: var(--fs-sm);
  line-height: 1.55;
}

/* Segmented Before / After control */
.cmp__tabs {
  display: inline-flex;
  gap: var(--s1);
  margin: var(--s10) 0 var(--s5);
  padding: var(--s1);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.cmp__tab {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 11px 26px;
  border-radius: 999px;
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1;
  transition: background var(--t), color var(--t);
}
.cmp__tab:hover { color: var(--text); }
.cmp__tab[aria-selected="true"] {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 1px 2px rgba(28, 25, 20, 0.12);
}
.cmp__tab:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* Browser chrome */
.cmp__frame {
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(28, 25, 20, 0.10);
}
.cmp__bar {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: 10px var(--s4);
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.cmp__dots { display: flex; gap: 6px; flex: none; }
.cmp__dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.cmp__url {
  flex: 1;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text-3);
  font-size: var(--fs-xs);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cmp__stage { position: relative; height: 700px; background: var(--surface); }
.cmp__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t);
}
.cmp__panel[data-active] { opacity: 1; visibility: visible; }
.cmp__panel iframe { width: 100%; height: 100%; border: 0; display: block; }

.cmp__caption {
  margin-top: var(--s5);
  color: var(--text-2);
  font-size: var(--fs-sm);
  line-height: 1.6;
  max-width: 46rem;
}
.cmp__caption b { color: var(--text); font-weight: 600; }
.cmp__actions { margin-top: var(--s10); display: flex; flex-wrap: wrap; gap: var(--s3); }

/* No-JS: show both, stacked, already labelled */
.cmp__nojs { display: none; }
.no-js .cmp__tabs { display: none; }
.no-js .cmp__nojs { display: block; margin-bottom: var(--s3); font-weight: 600; }
.no-js .cmp__stage { height: auto; }
.no-js .cmp__panel {
  position: static;
  opacity: 1;
  visibility: visible;
  height: 700px;
  border-top: 1px solid var(--line);
}

@media (prefers-reduced-motion: reduce) {
  .cmp__panel { transition: none; }
}

/* ════════════════════════════════════════════════
   BREAKPOINT 768
════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .nav__burger { display: none; }
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav .lang { margin-left: 0; }

  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr; }
  .tile--feature { grid-column: 1 / -1; }
  .bento--three { grid-template-columns: repeat(3, 1fr); }
  .bento--three .tile { grid-column: auto; }

  .benefits { grid-template-columns: repeat(3, 1fr); }
  .plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .addons__list { grid-template-columns: repeat(2, 1fr); }
  .cred__inner { flex-direction: row; align-items: center; gap: var(--s8); }
  .cred__label { flex-shrink: 0; max-width: 200px; }
  .probgrid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
  .carousel__track .quote { flex: 0 0 46%; }

  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; }
  .choices { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════
   BREAKPOINT 1024
════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .hero { padding-top: calc(var(--nav-h) + var(--s20)); }
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: var(--s16); }
  .panel { justify-self: end; }

  .bento { grid-template-columns: repeat(3, 1fr); }
  /* Four tiles across three columns leave an orphan on the second row;
     hold this grid at 2x2 so the block stays balanced. */
  .bento--four { grid-template-columns: repeat(2, 1fr); }
  .tile--feature { grid-column: span 2; display: flex; flex-direction: column; justify-content: center; }
  .tile--feature .tile__ico { margin-bottom: var(--s4); }

  .carousel__track .quote { flex: 0 0 41%; }
  .addons__list { grid-template-columns: repeat(3, 1fr); }
  .pillars { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .hero-visual { justify-self: end; min-height: 460px; }

  .contact__grid { grid-template-columns: 1fr 1fr; align-items: start; gap: var(--s16); }
  .contact__pitch { position: sticky; top: calc(var(--nav-h) + var(--s8)); }
}

/* ── REDUCED MOTION ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
  }
  [data-reveal], .stagger > * { opacity: 1; transform: none; transition: none; }
  .msg, .digest__row, .panel__capture, .float-card { opacity: 1; transform: none; }
  body::after { display: none; }
}
