/* Driftline site-final — components ported from the bake-off winners (Marketer / Super / P/F / Coda),
   rebuilt in the Super Side chassis grammar. Tokens live in styles.css. */

/* ---------- announcement bar (Marketer device, FROZEN: slow step-rotation) · desktop only ---------- */
.ticker { background: var(--ink); color: var(--fog); overflow: hidden; height: 34px; display: flex; align-items: center; position: relative; z-index: 60; }
.ticker-rot { position: relative; width: 100%; height: 100%; }
.ticker-rot span {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 14px;
  font: 400 11px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; color: rgba(244,240,230,.85);
  white-space: nowrap; opacity: 0; transition: opacity .3s ease;
}
.ticker-rot span.on { opacity: 1; transition-delay: .34s; } /* outgoing finishes before incoming starts — no double exposure */
.ticker-rot i { width: 16px; height: 4px; position: relative; flex: none; }
.ticker-rot i::before, .ticker-rot i::after { content: ""; position: absolute; height: 3px; border-radius: 2px; background: var(--line); }
.ticker-rot i::before { left: 0; top: -2px; width: 10px; }
.ticker-rot i::after { right: 0; bottom: -2px; width: 10px; }
@media (max-width: 1080px) { .ticker { display: none; } }

/* ---------- nav: hide-on-down / show-on-up (Super behavior) ---------- */
.nav { transition: background .35s ease, box-shadow .35s ease, transform .35s ease; }
.nav.is-hidden { transform: translateY(-110%); }
.nav-textbtn { padding: 10px 18px; font-size: 13.5px; color: var(--fog); border-color: rgba(244,240,230,.4); }
.nav.is-scrolled .nav-textbtn, .nav.nav--open .nav-textbtn { border-color: rgba(244,240,230,.4); }
@media (max-width: 1080px) { .nav-textbtn { display: none; } }

/* ---------- shine devices (Marketer) ---------- */
.hero-pill {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(244,240,230,.35); border-radius: var(--radius-pill);
  background: rgba(244,240,230,.08);
  padding: 8px 16px; font: 400 12px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-pill .shine-label {
  background: linear-gradient(110deg, var(--fog) 42%, var(--line) 50%, var(--fog) 58%);
  background-size: 280% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: pillShine 5.5s ease-in-out infinite;
}
@keyframes pillShine { 0% { background-position: 210% 0; } 55% { background-position: -40% 0; } 100% { background-position: -40% 0; } }
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(201,111,46,.3) 50%, transparent 58%);
  background-size: 260% 100%;
  animation: btnShine 5s linear infinite;
}
@keyframes btnShine { 0% { background-position: 230% 0; } 100% { background-position: -130% 0; } }

/* ---------- hero adjustments: arc line, 2-col collage, stats, glass float ---------- */
.hero-arc { font: 500 clamp(17px, 1.5vw, 21px)/1.4 var(--font-body); color: var(--line); margin-bottom: 18px; letter-spacing: .01em; }
.hero-copy .hero-pill { margin-bottom: 20px; }
.hero-visual { position: relative; }
.hero-visual .hero-collage { grid-template-columns: 1fr 1fr; }
.hero-stats { display: flex; gap: 0; border-top: 1px solid rgba(244,240,230,.22); padding-top: 22px; margin-top: 40px; max-width: 640px; }
.hstat { flex: 1; padding-right: 22px; }
.hstat + .hstat { border-left: 1px solid rgba(244,240,230,.22); padding-left: 22px; }
.hstat-n { display: block; font: 400 22px/1.1 var(--font-mono); margin-bottom: 6px; }
.hstat-l { display: block; font: 400 12.5px/1.45 var(--font-body); color: var(--text-muted-rev); max-width: 190px; }

/* liquid-glass floating booking card (Super, LOVED): lives on the week-logged panel */
.hero-float {
  position: absolute; left: -34px; top: 48%; width: 260px; z-index: 4;
  background: rgba(244,240,230,.14);
  border: 1px solid rgba(244,240,230,.24);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 14px; padding: 16px 18px; color: var(--fog);
  box-shadow: 0 24px 60px rgba(22,35,43,.35);
  animation: floatIn .9s cubic-bezier(.22,1,.36,1) .5s both;
  transition: transform .3s ease;
}
.hero-float:hover { transform: translateY(-6px) rotate(-.5deg); }
@keyframes floatIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* glass card, reused: territory check over the partnership photo */
.st-media { position: relative; }
.st-float {
  position: absolute; left: 22px; bottom: 22px; width: 250px;
  background: rgba(22,35,43,.55);
  border: 1px solid rgba(244,240,230,.28);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 14px; padding: 16px 18px; color: var(--fog);
  box-shadow: 0 24px 60px rgba(22,35,43,.35);
}
@media (max-width: 640px) { .st-float { left: 12px; bottom: 12px; width: min(230px, 80%); } }

/* hero collage: calmer scroll (site-final override of the chassis speed) */
.hero-visual .collage-col { animation-duration: 84s; }
.hero-visual .collage-col--slow { animation-duration: 100s; }
.float-head { display: flex; align-items: center; gap: 8px; font: 400 11px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; color: rgba(244,240,230,.75); margin-bottom: 10px; }
.float-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line); position: relative; }
.float-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--line); animation: ping 1.6s cubic-bezier(0,0,.2,1) infinite; }
@keyframes ping { 75%, 100% { transform: scale(2.1); opacity: 0; } }
.float-title { font: 600 14px/1.3 var(--font-body); }
.float-meta { font: 400 12.5px/1.4 var(--font-body); color: rgba(244,240,230,.75); margin-top: 3px; }
.float-actions { display: flex; gap: 8px; margin-top: 12px; }
.float-chip { font: 500 12px/1 var(--font-body); background: var(--fog); color: var(--ink); padding: 7px 14px; border-radius: var(--radius-pill); }
.float-chip-ghost { background: transparent; color: var(--fog); border: 1px solid rgba(244,240,230,.4); }
/* weeklog placement: overlaps the log panel's top-right corner */
.wl-float {
  left: auto; right: -18px; top: -26px;
  background: rgba(22,35,43,.62);
  border-color: rgba(244,240,230,.3);
  animation: none; opacity: 0; transform: translateY(18px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1) .35s, transform .8s cubic-bezier(.22,1,.36,1) .35s;
}
.logpanel { position: relative; }
.log-arrived .wl-float { opacity: 1; transform: translateY(0); }
.no-js .wl-float { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .wl-float { opacity: 1; transform: none; transition: none; } }
@media (max-width: 1080px) { .wl-float { right: 6px; top: -20px; width: 230px; } }

@media (max-width: 1080px) {
  .hero-stats { flex-direction: column; gap: 14px; max-width: none; }
  .hstat + .hstat { border-left: 0; padding-left: 0; border-top: 1px solid rgba(244,240,230,.18); padding-top: 14px; }
  .hstat-l { max-width: none; }
}

/* ---------- trip-type marquee separator (P/F) ---------- */
.tripband { background: var(--ink); color: var(--fog); padding: 22px 0; border-top: 1px solid var(--hairline-rev); border-bottom: var(--rule-w) solid var(--line); }
.trip-track { gap: 30px; animation-duration: 32s; }
.trip { font: 500 italic 24px/1 var(--font-display); font-variation-settings: var(--frx); white-space: nowrap; opacity: .9; }
.trip-track i { width: 16px; height: 4px; position: relative; flex: none; align-self: center; }
.trip-track i::before, .trip-track i::after { content: ""; position: absolute; height: 3px; border-radius: 2px; background: var(--line); }
.trip-track i::before { left: 0; top: -2px; width: 10px; }
.trip-track i::after { right: 0; bottom: -2px; width: 10px; }

/* ---------- pillar link cards ---------- */
.pillar { text-decoration: none; }
.pillar-go { display: block; font: 500 14px/1 var(--font-body); margin-top: 14px; transition: transform .2s ease; }
.pillar:hover .pillar-go { transform: translateX(3px); }

/* ---------- four-tab product window (Marketer) ---------- */
.prodwin { padding: 130px 0 150px; }
.prodwin-head { text-align: center; max-width: 860px; margin: 0 auto 44px; }
.prodwin-head .eyebrow { text-align: center; }
.seg { display: flex; gap: 6px; justify-content: center; margin: 0 auto 34px; background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius-pill); padding: 6px; width: max-content; max-width: 100%; overflow-x: auto; }
.seg button {
  border: 0; background: transparent; border-radius: var(--radius-pill);
  padding: 11px 22px; font: 500 14.5px/1 var(--font-body); color: var(--text-muted);
  transition: background .25s ease, color .25s ease; white-space: nowrap;
}
.seg button[aria-selected="true"] { background: var(--ink); color: var(--fog); box-shadow: inset 0 -3px 0 0 var(--line); }
.stage { position: relative; max-width: 980px; margin: 0 auto; }
.chip {
  position: absolute; z-index: 5; display: flex; align-items: center; gap: 9px;
  background: var(--paper); border: 1px solid var(--hairline); border-radius: 12px;
  box-shadow: 0 14px 40px rgba(22,35,43,.14); padding: 10px 14px;
  font-size: 13px; font-weight: 500; color: var(--ink);
}
.chip small { display: block; font-weight: 400; color: var(--text-muted); font-size: 11.5px; }
.chip .mk { width: 8px; height: 8px; border-radius: 50%; background: var(--line); position: relative; }
.chip .mk::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--line); animation: ping 1.6s cubic-bezier(0,0,.2,1) infinite; }
.chip.fa { animation: chipFloatA 4.8s ease-in-out infinite; }
.chip.fb { animation: chipFloatB 5.6s ease-in-out .4s infinite; }
.chip.fc { animation: chipFloatC 6.4s ease-in-out .9s infinite; }
@keyframes chipFloatA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes chipFloatB { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@keyframes chipFloatC { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (max-width: 899px) { .chip { display: none; } }
.window {
  position: relative; background: var(--paper); border-radius: 16px;
  border: 1px solid var(--hairline);
  box-shadow: 0 40px 90px rgba(22,35,43,.16);
  overflow: hidden; text-align: left;
}
.win-pane { display: none; }
.win-pane.on { display: block; animation: paneIn .35s ease-out both; }
@keyframes paneIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.chrome { display: flex; align-items: center; gap: 10px; height: 44px; padding: 0 16px; border-bottom: 1px solid var(--hairline); background: var(--paper); }
.chrome .dots { display: flex; gap: 6px; }
.chrome .dots i { width: 10px; height: 10px; border-radius: 50%; background: #E4DFD3; display: block; }
.chrome .dots i:first-child { background: var(--line); }
.chrome .url { flex: 0 1 420px; margin: 0 auto; height: 26px; border-radius: var(--radius-pill); background: var(--fog); display: flex; align-items: center; justify-content: center; font: 400 11.5px/1 var(--font-mono); color: var(--text-muted); letter-spacing: .02em; white-space: nowrap; overflow: hidden; padding: 0 12px; }
.win-shot { aspect-ratio: 16/9.6; overflow: hidden; background: var(--fog); }
.win-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.win-shot--ad { position: relative; }
.ad-cap { position: absolute; left: 24px; bottom: 24px; right: 24px; background: rgba(22,35,43,.86); color: var(--fog); border-radius: 12px; padding: 16px 18px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.ad-k { font: 400 10.5px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; color: rgba(244,240,230,.7); display: block; margin-bottom: 6px; }
.ad-cap p { font: 600 16px/1.3 var(--font-body); }
.ad-note { display: block; font: 400 12px/1.4 var(--font-body); color: rgba(244,240,230,.7); margin-top: 6px; }

/* report document (Marketer rp-app) */
.rp-app { display: grid; grid-template-columns: 210px 1fr; }
.rp-side { border-right: 1px solid var(--hairline); background: var(--fog); padding: 20px 18px; display: flex; flex-direction: column; gap: 18px; }
.rp-side-head { display: flex; align-items: center; gap: 9px; font: 600 13.5px/1 var(--font-body); }
.rp-nav { display: grid; gap: 4px; font-size: 13px; }
.rp-nav span { padding: 7px 10px; border-radius: 8px; color: var(--text-muted); }
.rp-nav span.on { background: rgba(22,35,43,.06); color: var(--ink); font-weight: 500; }
.rp-recent { display: grid; gap: 9px; margin-top: auto; }
.rp-recent-h { font: 400 10px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.rp-recent .sk { height: 9px; border-radius: 5px; background: rgba(22,35,43,.08); display: block; }
.rp-main { padding: 28px 34px; }
.rp-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.rp-head .t { font: 500 22px/1.15 var(--font-display); font-variation-settings: var(--frx); }
.tag-sample { font: 400 10px/1 var(--font-mono); letter-spacing: .07em; text-transform: uppercase; border: 1px solid var(--hairline); border-radius: var(--radius-pill); padding: 5px 10px; color: var(--text-muted); }
.rp-insights { margin-top: 18px; display: grid; gap: 9px; }
.rp-ins { display: flex; align-items: center; gap: 12px; background: var(--paper); border: 1px solid var(--hairline); border-radius: 10px; padding: 10px 14px; font-size: 13px; }
.rp-ins b { font-weight: 500; flex: 0 0 158px; }
.rp-ins .orb { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.rp-ins .o1 { background: var(--line); } .rp-ins .o2 { background: var(--river); } .rp-ins .o3 { background: var(--reed); }
.rp-ins .bar { height: 10px; border-radius: 5px; background: rgba(22,35,43,.06); flex: 1; position: relative; overflow: hidden; }
.rp-ins .bar::after {
  content: ""; position: absolute; inset: 0; border-radius: 5px;
  background: linear-gradient(90deg, rgba(124,139,110,.5), rgba(124,139,110,.28));
  width: var(--w, 60%);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.1s cubic-bezier(.22,1,.36,1);
}
.rp-ins .bar.em::after { background: linear-gradient(90deg, var(--line), rgba(201,111,46,.55)); }
.bars-live .rp-ins .bar::after { transform: scaleX(1); }
.bars-live .rp-ins:nth-child(2) .bar::after { transition-delay: .12s; }
.bars-live .rp-ins:nth-child(3) .bar::after { transition-delay: .24s; }
.bars-live .rp-ins:nth-child(4) .bar::after { transition-delay: .36s; }
.bars-live .rp-ins:nth-child(5) .bar::after { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) { .rp-ins .bar::after { transform: scaleX(1); transition: none; } }
.rp-mathline { margin-top: 16px; font: 400 12px/1.6 var(--font-mono); color: var(--text-muted); letter-spacing: .01em; }
.rp-note { margin-top: 10px; font-size: 13px; color: var(--text-muted); }
@media (max-width: 760px) { .rp-app { grid-template-columns: 1fr; } .rp-side { display: none; } .rp-ins b { flex-basis: 120px; } }

/* dark variant for the platform card */
.rp-insights--dark { margin-top: 22px; }
.rp-insights--dark .rp-ins { background: rgba(244,240,230,.06); border-color: var(--hairline-rev); color: var(--fog); }
.rp-insights--dark .rp-ins .bar { background: rgba(244,240,230,.1); }
.plat-link { display: inline-block; margin-top: 18px; font: 600 14.5px/1 var(--font-body); color: var(--fog); text-decoration: none; border-bottom: 1px solid rgba(244,240,230,.4); padding-bottom: 3px; align-self: flex-start; }

/* sms pane (Marketer support tab) */
.sms { padding: 26px 30px 22px; max-width: 560px; margin: 0 auto; }
.sms-head { display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--hairline); padding-bottom: 14px; margin-bottom: 16px; }
.sms-ava { width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: var(--fog); display: flex; align-items: center; justify-content: center; font: 600 13px/1 var(--font-body); box-shadow: inset 0 -3px 0 0 var(--line); }
.sms-head .who b { display: block; font-size: 14.5px; }
.sms-head .who span { font: 400 12px/1.4 var(--font-mono); color: var(--text-muted); }
.sms-thread { display: flex; flex-direction: column; gap: 9px; }
.bub { max-width: 78%; font: 400 14px/1.45 var(--font-body); padding: 10px 14px; border-radius: 16px; }
.bub.me { background: var(--river); color: var(--fog); align-self: flex-start; border-bottom-left-radius: 4px; }
.bub.you { background: var(--fog); color: var(--ink); align-self: flex-end; border-bottom-right-radius: 4px; }
.promptbar { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 16px; border: 1px solid var(--hairline); border-radius: var(--radius-pill); padding: 10px 8px 10px 16px; }
.promptbar .ph { font: 400 13.5px/1 var(--font-body); color: var(--text-muted); }
.send-orb { width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: var(--fog); display: flex; align-items: center; justify-content: center; }
.sms-foot { margin-top: 14px; font-size: 13px; color: var(--text-muted); text-align: center; }

/* ---------- how it works (3 steps) ---------- */
.steps { padding: 120px 0 100px; }
.steps-head { text-align: center; max-width: 820px; margin: 0 auto 60px; }
.steps-head .eyebrow { text-align: center; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { border: 1px solid var(--hairline); border-radius: var(--radius); background: var(--paper); padding: 30px 28px; }
.step-n { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: var(--fog); font: 500 17px/1 var(--font-display); box-shadow: inset 0 -3px 0 0 var(--line); margin-bottom: 18px; }
.step h3 { font: 500 21px/1.25 var(--font-display); font-variation-settings: var(--frx); margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--text-muted); }
.found-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; justify-content: center; margin-top: 56px; border-top: 1px solid var(--hairline); padding-top: 28px; }
.found-k { font: 400 11px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.found-i { font: 600 15px/1 var(--font-body); color: var(--text-muted); opacity: .85; }
@media (max-width: 1080px) { .steps-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* ---------- grow with driftline (Coda content) ---------- */
.grow { padding: 110px 0; }
.grow-head { text-align: center; max-width: 820px; margin: 0 auto 60px; }
.grow-head .eyebrow { text-align: center; }
.grow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grow-card { border-radius: var(--radius); padding: 28px 26px; min-height: 220px; display: flex; flex-direction: column; }
.grow-card h3 { font: 500 21px/1.25 var(--font-display); font-variation-settings: var(--frx); margin: 16px 0 10px; }
.grow-card p { font-size: 14.5px; }
.grow-card .tag { display: inline-block; font: 400 10px/1 var(--font-mono); letter-spacing: .06em; text-transform: uppercase; border: 1px solid currentColor; border-radius: var(--radius-pill); padding: 4px 8px; opacity: .8; margin-left: 4px; }
.g-ico { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: rgba(22,35,43,.08); }
.grow-card--ember { background: var(--line); color: #0E161C; }
.grow-card--ember h3, .grow-card--ember p { color: #0E161C; } /* ember bg needs deeper-than-ink to clear WCAG 4.5 */
.grow-card--river { background: var(--river); color: var(--fog); }
.grow-card--river p { color: var(--text-muted-rev); }
.grow-card--river .g-ico { background: rgba(244,240,230,.12); }
.grow-card--reed { background: rgba(124,139,110,.22); color: var(--ink); }
.grow-card--reed p { color: var(--text-muted); }
.grow-card--ink { background: var(--ink); color: var(--fog); }
.grow-card--ink p { color: var(--text-muted-rev); }
.grow-card--ink .g-ico { background: rgba(244,240,230,.12); }
.grow-card--ember p { color: #0E161C; } /* was ink@.78 = 3.35:1 on ember; solid deep ink = 5.04:1 */
@media (max-width: 1080px) { .grow-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grow-grid { grid-template-columns: 1fr; } }

/* ---------- proof breakdown (Marketer fact grid + case card) ---------- */
.breakdown { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 64px; }
.fact-cell { border: 1px solid var(--hairline); border-radius: var(--radius); background: var(--paper); padding: 20px 22px; font: 500 17px/1.3 var(--font-display); font-variation-settings: var(--frx); transition: background .25s ease; }
.fact-cell:hover { background: rgba(201,111,46,.06); }
.fact-cell small { display: block; font: 400 13px/1.4 var(--font-body); color: var(--text-muted); margin-top: 4px; }
.case-card { grid-row: span 2; position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px; display: flex; text-decoration: none; color: var(--fog); isolation: isolate; }
.case-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; z-index: -2; transition: transform .5s ease-in-out; }
.case-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(22,35,43,.55) 0%, rgba(22,35,43,.9) 100%); }
.case-card:hover img { transform: scale(1.03); }
.case-body { margin-top: auto; padding: 26px; display: flex; flex-direction: column; gap: 4px; }
.case-body .k { font: 400 11px/1.4 var(--font-mono); letter-spacing: .07em; text-transform: uppercase; color: rgba(244,240,230,.75); }
.case-body .n { font: 500 56px/1 var(--font-display); font-variation-settings: var(--frx); }
.case-body .s { font-size: 14px; color: rgba(244,240,230,.85); }
.case-body .go-link { margin-top: 12px; font: 600 14.5px/1 var(--font-body); border-bottom: 1px solid rgba(244,240,230,.5); padding-bottom: 3px; align-self: flex-start; }
@media (max-width: 1080px) { .breakdown { grid-template-columns: 1fr 1fr; } .case-card { grid-column: span 2; grid-row: auto; min-height: 340px; } }
@media (max-width: 640px) { .breakdown { grid-template-columns: 1fr; } .case-card { grid-column: auto; } }

/* ---------- a week logged (Marketer, LOVED) ---------- */
.weeklog { padding: 120px 0; }
.weeklog .split { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.wl-copy h2 { margin-bottom: 20px; }
.wl-copy .body-copy { margin-bottom: 26px; }
.wl-sms { margin-bottom: 30px; }
.sms-demo.is-inline { align-self: flex-start; width: min(340px, 100%); }
.sms-demo.is-inline .sms-tag { align-self: flex-start; color: var(--text-muted); background: transparent; border-color: var(--hairline); }
.sms-demo.is-inline .sms-bubble--in { background: var(--river); color: var(--fog); box-shadow: 0 10px 26px rgba(46,74,86,.28); }
.logpanel { background: linear-gradient(160deg, rgba(46,74,86,.14), rgba(201,111,46,.1)); border-radius: 16px; padding: clamp(18px, 3vw, 34px); }
.logcard { background: var(--paper); border-radius: 16px; box-shadow: 0 30px 70px rgba(22,35,43,.14); padding: 22px 24px; border: 1px solid var(--hairline); }
.logcard .lc-head { display: flex; align-items: center; gap: 9px; font: 600 14.5px/1 var(--font-body); border-bottom: 1px solid var(--hairline); padding-bottom: 13px; }
.logcard .lc-head svg { color: var(--line); }
.logrows { position: relative; margin-top: 8px; }
.logrows::before { content: ""; position: absolute; left: 66px; top: 12px; bottom: 12px; width: 1px; background: var(--hairline); }
.logrow { display: flex; align-items: center; gap: 14px; padding: 11px 0; font-size: 14px; opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; }
.log-live .logrow { opacity: 1; transform: none; }
.log-live .logrow:nth-child(2) { transition-delay: .12s; }
.log-live .logrow:nth-child(3) { transition-delay: .24s; }
.log-live .logrow:nth-child(4) { transition-delay: .36s; }
.log-live .logrow:nth-child(5) { transition-delay: .48s; }
.log-live .logrow:nth-child(6) { transition-delay: .6s; }
@media (prefers-reduced-motion: reduce) { .logrow { opacity: 1; transform: none; transition: none; } }
.no-js .logrow { opacity: 1; transform: none; }
.logrow .tm { flex: 0 0 44px; font: 400 12px/1 var(--font-mono); color: var(--river); }
.logrow .ic { flex: 0 0 26px; height: 26px; border-radius: 50%; background: var(--fog); display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; color: var(--ink); }
.logrow .tx { flex: 1; min-width: 0; overflow-wrap: anywhere; }
.ltag { font: 400 10.5px/1 var(--font-mono); letter-spacing: .05em; text-transform: uppercase; border: 1px solid var(--hairline); border-radius: var(--radius-pill); padding: 5px 9px; color: var(--text-muted); }
.ltag.em { border-color: var(--line); color: var(--line); }
@media (max-width: 1080px) { .weeklog .split { grid-template-columns: 1fr; } }

/* ---------- message-type pills (Stay Booked card) ---------- */
.msg-types { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 20px; }
.msg-types span { font: 400 11.5px/1 var(--font-mono); letter-spacing: .04em; text-transform: uppercase; border: 1px solid rgba(244,240,230,.35); border-radius: var(--radius-pill); padding: 6px 11px; color: rgba(244,240,230,.85); }

/* ---------- compare table (columns = the options) ---------- */
.compare2 { padding: 140px 0 150px; }
.compare2 .compare-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.cmp-sub { color: var(--text-muted-rev); font-size: 16.5px; margin-top: 16px; }
.cmp2-scroll { overflow-x: auto; }
.cmp2 { border-collapse: separate; border-spacing: 0; min-width: 940px; width: 100%; font-size: 14.5px; }
.cmp2 thead th { font: 500 17px/1.2 var(--font-display); font-variation-settings: var(--frx); padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--hairline-rev); color: var(--fog); }
.cmp2 thead th.crit-col { width: 26%; }
.cmp2 tbody th { font: 500 14.5px/1.4 var(--font-body); text-align: left; padding: 15px 18px; color: var(--text-muted-rev); border-bottom: 1px solid var(--hairline-rev); }
.cmp2 td { padding: 15px 18px; border-bottom: 1px solid var(--hairline-rev); color: var(--text-muted-rev); }
.cmp2 .ok { color: var(--fog); }
.cmp2 td.no { opacity: .55; }
.cmp2 .win { background: var(--fog); color: var(--ink); }
.cmp2 thead th.win { border-radius: var(--radius) var(--radius) 0 0; box-shadow: inset 0 3px 0 0 var(--line); }
.cmp2 tbody tr:last-child td.win { border-radius: 0 0 var(--radius) var(--radius); }
.cmp2 td.win { border-bottom-color: var(--hairline); font-weight: 500; }
.win-mark { display: inline-flex; align-items: center; gap: 8px; }
.win-mark::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--line); }

/* ---------- pricing: compare dropdown + dot table (Super) ---------- */
.pt-toggle-row { text-align: center; margin-top: 34px; }
#ptToggle svg { transition: transform .3s ease; }
#ptToggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.pt-panel { max-width: 980px; margin: 26px auto 0; animation: paneIn .4s ease-out both; }
.pt-scroll { overflow-x: auto; }
.price-table { min-width: 720px; border: 1px solid var(--hairline); border-radius: var(--radius); background: var(--paper); overflow: hidden; }
.pt-head, .pt-row { display: grid; grid-template-columns: 1fr 130px 130px 130px; align-items: center; }
.pt-head { border-bottom: 1px solid var(--hairline); background: var(--fog); }
.pt-head .pt-feature { padding: 18px 26px; }
.pt-tier { text-align: center; padding: 16px 8px; display: flex; flex-direction: column; gap: 3px; }
.pt-tier strong { font: 600 14px/1.2 var(--font-body); }
.pt-tier em { font: 400 12.5px/1 var(--font-mono); font-style: normal; color: var(--text-muted); }
.pt-tier-hi { background: var(--ink); color: var(--fog); }
.pt-tier-hi em { color: var(--text-muted-rev); }
.pt-row { border-bottom: 1px solid rgba(22,35,43,.08); transition: background-color .25s ease; }
.pt-row:hover { background: rgba(201,111,46,.06); }
.pt-row:last-child { border-bottom: none; }
.pt-row:nth-child(odd) { background: rgba(22,35,43,.02); }
.pt-row .pt-feature { padding: 14px 26px; display: flex; flex-direction: column; gap: 2px; }
.pt-feature strong { font: 500 15px/1.35 var(--font-body); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pt-feature small { font: 400 13px/1.4 var(--font-body); color: var(--text-muted); }
.pt-tag { font: 400 10px/1 var(--font-mono); letter-spacing: .06em; text-transform: uppercase; border: 1px solid rgba(22,35,43,.3); border-radius: var(--radius-pill); padding: 4px 8px; color: var(--text-muted); }
.pt-dot { justify-self: center; width: 9px; height: 9px; border-radius: 50%; background: rgba(22,35,43,.12); }
.pt-dot.on { background: var(--reed); }
.pt-dot.on.hi { background: var(--line); }
.pt-dot.hi-off { background: rgba(22,35,43,.12); }

/* ---------- know cards (Coda, tightened) ---------- */
.know { padding: 110px 0; }
.know-head { text-align: center; max-width: 820px; margin: 0 auto 60px; }
.know-head .eyebrow { text-align: center; }
.know-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.know-card { border: 1px solid var(--hairline); border-left: var(--rule-w) solid var(--line); border-radius: var(--radius); background: var(--paper); padding: 26px 26px 28px; }
.know-card h3 { font: 500 19px/1.3 var(--font-display); font-variation-settings: var(--frx); margin-bottom: 10px; }
.know-card p { font-size: 14.5px; color: var(--text-muted); }
@media (max-width: 1080px) { .know-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .know-grid { grid-template-columns: 1fr; } }

/* ---------- fit panels ---------- */
.fit { padding: 0 0 120px; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fit-panel { border-radius: var(--radius); padding: 34px 32px; }
.fit-panel--yes { background: var(--river); color: var(--fog); }
.fit-panel--yes .eyebrow { color: rgba(244,240,230,.75); }
.fit-panel--no { background: var(--paper); border: 1px solid var(--hairline); }
.fit-panel ul { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; font-size: 15.5px; }
.fit-panel li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.5; }
.fit-panel--yes li::before { content: "✓"; color: var(--line); font-weight: 700; flex-shrink: 0; }
.fit-panel--no li::before { content: "✗"; color: var(--text-muted); flex-shrink: 0; }
.fit-panel--no li { color: var(--text-muted); }
@media (max-width: 1080px) { .fit-grid { grid-template-columns: 1fr; } }

/* ---------- available territories ---------- */
.waters .marquee + .marquee { margin-top: 18px; }
.terr-track { gap: 40px; animation-duration: 44s; }
.terr-track--rev { animation-direction: reverse; animation-duration: 52s; }
.terr { font: 500 italic 26px/1 var(--font-display); font-variation-settings: var(--frx); white-space: nowrap; color: var(--ink); opacity: .85; text-decoration: none; transition: opacity .2s ease, color .2s ease; }
.terr:hover { opacity: 1; color: var(--line); }

/* ---------- founder badge ---------- */
.founder-badge { display: inline-flex; align-items: center; gap: 12px; border: 1px solid rgba(244,240,230,.25); border-radius: var(--radius-pill); padding: 10px 18px 10px 10px; margin-bottom: 32px; align-self: flex-start; }
.fb-ava { width: 38px; height: 38px; border-radius: 50%; background: var(--line); color: var(--ink); display: flex; align-items: center; justify-content: center; font: 600 13px/1 var(--font-body); }
.founder-badge b { display: block; font-size: 14.5px; color: var(--fog); }
.founder-badge small { display: block; font: 400 11.5px/1.4 var(--font-mono); color: var(--text-muted-rev); }

/* ---------- text me your water box (P/F) ---------- */
.textbox { padding: 0 0 120px; }
.textbox-card { background: var(--ink); color: var(--fog); border-radius: 16px; padding: clamp(32px, 5vw, 56px); display: flex; align-items: center; justify-content: space-between; gap: 32px; box-shadow: inset 0 calc(-1 * var(--rule-w) - 2px) 0 0 var(--line); }
.textbox-card h2 { font-size: clamp(28px, 3vw, 44px); margin-bottom: 12px; }
.textbox-card p { color: var(--text-muted-rev); max-width: 46ch; }
.textbox-card .btn { flex-shrink: 0; }
@media (max-width: 900px) { .textbox-card { flex-direction: column; align-items: flex-start; } }

/* ---------- manifesto (Super) ---------- */
.manifesto { padding: 130px 0 140px; }
.manifesto-h { font-weight: 500; font-size: clamp(52px, 7.5vw, 110px); line-height: 1; letter-spacing: -.015em; margin: 10px 0 40px; }
.manifesto-body { max-width: 560px; display: flex; flex-direction: column; gap: 18px; }
.manifesto-body p { font: 400 17px/1.65 var(--font-body); color: var(--text-muted-rev); }
.manifesto-sign { font: 400 14px/1.6 var(--font-mono); color: rgba(244,240,230,.65); }
.manifesto-sign a { color: rgba(244,240,230,.85); }

/* ---------- FAQ (Marketer accordions) ---------- */
.faqsec { padding: 120px 0; }
.faq-grid { display: grid; grid-template-columns: .9fr 2fr; gap: 40px; }
.faq-title { font: 600 clamp(64px, 9vw, 110px)/0.95 var(--font-display); font-variation-settings: var(--frx); letter-spacing: -.02em; }
.faq-intro { margin-top: 18px; color: var(--text-muted); font-size: 15.5px; max-width: 30ch; }
details.qa { border-bottom: 1px solid var(--hairline); }
details.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; cursor: pointer; list-style: none;
  font: 500 18px/1.35 var(--font-body);
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary .pm { flex: 0 0 18px; position: relative; height: 18px; transition: transform .3s ease-out; }
details.qa summary .pm::before, details.qa summary .pm::after { content: ""; position: absolute; background: var(--ink); transition: transform .3s ease-out; }
details.qa summary .pm::before { left: 0; right: 0; top: 8px; height: 1.5px; }
details.qa summary .pm::after { top: 0; bottom: 0; left: 8px; width: 1.5px; }
details.qa[open] summary .pm { transform: rotate(45deg); }
details.qa .ans { padding: 0 40px 24px 0; color: var(--text-muted); font-size: 15.5px; line-height: 1.6; max-width: 66ch; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }

/* ---------- start form (dark close) ---------- */
.startsec { padding: 120px 0; }
.start-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: start; }
.start-copy h2 { margin-bottom: 22px; }
.start-copy .body-copy { margin-bottom: 24px; }
.start-alt { font: 400 14px/1.6 var(--font-mono); color: var(--text-muted-rev); }
.start-alt a { color: var(--fog); }
.start-form { background: var(--paper); color: var(--ink); border-radius: 16px; padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; gap: 16px; border-bottom: var(--rule-w) solid var(--line); box-shadow: 0 40px 90px rgba(0,0,0,.3); }
.start-form label { font: 400 11px/1 var(--font-mono); letter-spacing: .07em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 6px; }
.start-form label small { text-transform: none; letter-spacing: 0; }
.start-form input { width: 100%; border: 1px solid var(--hairline); border-radius: var(--radius-pill); padding: 13px 18px; font: 400 15px/1.3 var(--font-body); background: var(--fog); color: var(--ink); }
.start-form input:focus { outline: 2px solid var(--line); outline-offset: 1px; border-color: transparent; }
.form-2col { display: grid; grid-template-columns: 1fr 1.4fr; gap: 14px; }
.start-form .btn { justify-content: center; margin-top: 6px; }
.form-micro { font: 400 12.5px/1.6 var(--font-mono); color: var(--text-muted); text-align: center; }
.form-success { display: none; text-align: center; padding: 20px 0 8px; }
.start-form.is-sent > div:not(.form-success), .start-form.is-sent button, .start-form.is-sent .form-micro { display: none; }
.start-form.is-sent .form-success { display: block; }
.form-success .check { width: 56px; height: 56px; border-radius: 50%; background: var(--ink); color: var(--fog); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 24px; box-shadow: inset 0 -3px 0 0 var(--line); }
@media (max-width: 1080px) { .start-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .form-2col { grid-template-columns: 1fr; } }

/* ---------- footer: AI ask buttons ---------- */
.ai-ask { margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.ai-k { flex-basis: 100%; font: 400 11px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted-rev); margin-bottom: 2px; }
.ai-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: 500 13px/1 var(--font-body); text-decoration: none; color: var(--fog);
  border: 1px solid var(--hairline-rev); border-radius: var(--radius-pill); padding: 9px 15px;
  transition: background .2s ease, border-color .2s ease;
}
.ai-btn:hover { background: rgba(244,240,230,.08); border-color: rgba(244,240,230,.4); }

/* ---------- mobile bottom CTA bar ---------- */
.mcta { display: none; }
@media (max-width: 900px) {
  .mcta {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(22,35,43,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--hairline-rev);
    transform: translateY(110%); transition: transform .35s ease;
  }
  .mcta.is-on { transform: none; }
  .mcta .btn { justify-content: center; padding: 13px 10px; font-size: 14px; }
  .mcta .btn-ghost { color: var(--fog); }
  body { padding-bottom: 0; }
  .no-js .mcta { transform: none; }
}

/* mini metric tile (collage) */
.tile-metric { background: var(--ink); color: var(--fog); aspect-ratio: 1/1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 16px; box-shadow: inset 0 calc(-1 * var(--rule-w)) 0 0 var(--line); }
.tile-metric .tm-k { font: 400 9.5px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted-rev); }
.tile-metric .tm-n { font: 500 40px/1 var(--font-display); font-variation-settings: var(--frx); }
.tile-metric .tm-l { font: 400 10px/1.3 var(--font-mono); letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted-rev); }

/* ---------- reduced motion for ported components ---------- */
@media (prefers-reduced-motion: reduce) {
  .trip-track, .terr-track, .hero-float, .chip.fa, .chip.fb, .chip.fc,
  .hero-pill .shine-label, .btn-shine::after, .float-dot::after, .chip .mk::after { animation: none !important; }
  .hero-float { opacity: 1; }
  .ticker-rot span { transition: none; }
  .win-pane.on, .pt-panel { animation: none; }
  .mcta { transition: none; }
}

/* H1: exactly two lines (Evan 7/4) */
.hero-copy h1 { font-size: clamp(40px, 5.6vw, 84px); }
.hero-copy h1 .nowrap { white-space: nowrap; }
@media (max-width: 1080px) { .hero-copy h1 .nowrap { white-space: normal; } }

/* inline single-bubble sms: no conversation stagger */
.sms-demo.is-inline.is-live .sms-bubble--in { transition-delay: .25s; }

/* ---------- collage micro-moment mockups (hero, round 3) ---------- */
.tile-mock {
  background: var(--paper); color: var(--ink);
  padding: 18px; display: flex; flex-direction: column; gap: 12px;
  border: 1px solid var(--hairline);
  box-shadow: 0 18px 44px rgba(22,35,43,.16);
}
.mk-head { display: flex; align-items: center; gap: 8px; font: 400 10px/1 var(--font-mono); letter-spacing: .07em; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--hairline); padding-bottom: 10px; }
.mk-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line); flex: none; }
.mk-body { display: flex; flex-direction: column; gap: 3px; }
.mk-title { font: 600 13.5px/1.35 var(--font-body); }
.mk-meta { font: 400 11.5px/1.45 var(--font-body); color: var(--text-muted); }
.mk-footrow { margin-top: 2px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mk-pill { font: 500 10.5px/1 var(--font-body); background: var(--fog); border: 1px solid var(--hairline); border-radius: var(--radius-pill); padding: 6px 10px; white-space: nowrap; }
.mk-pill--ok { background: rgba(124,139,110,.18); border-color: rgba(124,139,110,.4); }
.mk-time { font: 400 9.5px/1.4 var(--font-mono); letter-spacing: .04em; text-transform: uppercase; color: var(--text-muted); text-align: right; }
.mk-stars { font-size: 17px; letter-spacing: 3px; color: var(--line); line-height: 1; }
.mk-ava { width: 24px; height: 24px; border-radius: 50%; background: var(--river); color: var(--fog); display: inline-flex; align-items: center; justify-content: center; font: 600 11px/1 var(--font-body); flex: none; }
.mk-stat-row { display: flex; align-items: baseline; gap: 8px; }
.mk-stat { font: 500 40px/1 var(--font-display); font-variation-settings: var(--frx); }
.mk-statlabel { font: 400 10px/1.3 var(--font-mono); letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); }
.mk-bars { display: flex; align-items: flex-end; gap: 6px; height: 64px; }
.mk-bars i { display: block; width: 100%; background: var(--river); border-radius: 3px 3px 0 0; opacity: .85; }
.mk-bars i.hot { background: var(--line); opacity: 1; }
.mk-query { display: flex; align-items: center; gap: 8px; font: 400 11.5px/1 var(--font-body); color: var(--text-muted); background: var(--fog); border: 1px solid var(--hairline); border-radius: var(--radius-pill); padding: 9px 12px; }
.mk-result { border: 1px solid var(--hairline); border-radius: 10px; padding: 10px 12px; }
.mk-result .mk-title { font-size: 12.5px; color: var(--river); }
.mk-result .mk-meta { font-size: 11px; }
.mk-result:not(.mk-result--dim) { border-color: rgba(201,111,46,.5); box-shadow: inset 3px 0 0 0 var(--line); }
.mk-result--dim { opacity: .45; }
.mk-result--dim .mk-title { color: var(--text-muted); font-weight: 500; }

/* ---------- round 4: pillar mockups, fb ad, value grid, heading one-liners ---------- */
.pillar-img { aspect-ratio: 4/3.1; }
.pillar-mockwrap { display: flex; align-items: center; justify-content: center; padding: 22px; background: rgba(244,240,230,.08); overflow: hidden; }
.pillar--ember .pillar-mockwrap { background: rgba(22,35,43,.16); }
.pillar--paper .pillar-mockwrap { background: rgba(22,35,43,.06); }

/* mini site mockup */
.pm-site { width: min(320px, 100%); background: var(--paper); border-radius: 12px; overflow: hidden; box-shadow: 0 24px 54px rgba(22,35,43,.3); }
.pm-site .chrome { height: 32px; padding: 0 12px; }
.pm-site .chrome .url { height: 20px; font-size: 10px; flex-basis: 190px; }
.pm-site-hero { position: relative; aspect-ratio: 16/10.5; }
.pm-site-hero img { width: 100%; height: 100%; object-fit: cover; }
.pm-site-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,35,43,.2), rgba(22,35,43,.68)); }
.pm-site-copy { position: absolute; left: 14px; bottom: 12px; right: 14px; z-index: 1; color: var(--fog); }
.pm-kicker { display: block; font: 400 8.5px/1 var(--font-mono); letter-spacing: .1em; text-transform: uppercase; color: rgba(244,240,230,.8); margin-bottom: 5px; }
.pm-site-copy h4 { margin: 0 0 8px; font: 500 20px/1.1 var(--font-display); font-variation-settings: var(--frx); }
.pm-btn { display: inline-block; font: 600 10.5px/1 var(--font-body); background: var(--fog); color: var(--ink); border-radius: var(--radius-pill); padding: 7px 12px; box-shadow: inset 0 -2px 0 0 var(--line); }

/* mini artsy ad mockup */
.pm-ad { position: relative; width: min(300px, 100%); aspect-ratio: 4/4.6; border-radius: 12px; overflow: hidden; box-shadow: 0 24px 54px rgba(22,35,43,.35); }
.pm-ad img { width: 100%; height: 100%; object-fit: cover; }
.pm-ad::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,35,43,.35), rgba(22,35,43,.15) 45%, rgba(22,35,43,.5)); }
.pm-ad-tag { position: absolute; top: 12px; left: 12px; z-index: 1; font: 400 9px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--fog); background: rgba(22,35,43,.6); border-radius: var(--radius-pill); padding: 5px 9px; }
.pm-ad-line { position: absolute; left: 0; right: 0; bottom: 20%; z-index: 1; text-align: center; color: var(--fog); font: 500 clamp(22px, 2vw, 30px)/1.15 var(--font-display); font-variation-settings: var(--frx); text-shadow: 0 4px 24px rgba(22,35,43,.5); }
.pm-ad-line em { font-style: italic; }

/* mini report mockup inside pillar */
.pm-report { width: min(300px, 100%); background: var(--paper); color: var(--ink); border-radius: 12px; padding: 18px; display: flex; flex-direction: column; gap: 12px; box-shadow: 0 24px 54px rgba(22,35,43,.25); border: 1px solid var(--hairline); }
.pm-report .mk-bars { height: 58px; }

/* fb-feed ad mockup (product window) */
.win-shot--fb { display: flex; align-items: center; justify-content: center; background: var(--fog); padding: 28px; aspect-ratio: 16/9.6; }
.fbad { width: min(430px, 100%); background: var(--paper); border: 1px solid var(--hairline); border-radius: 14px; overflow: hidden; box-shadow: 0 30px 70px rgba(22,35,43,.18); }
.fb-head { display: flex; align-items: center; gap: 10px; padding: 12px 14px 8px; }
.fb-ava { width: 34px; height: 34px; border-radius: 50%; background: var(--river); color: var(--fog); display: flex; align-items: center; justify-content: center; font: 600 11px/1 var(--font-body); flex: none; }
.fb-who b { display: block; font-size: 13px; }
.fb-who small { font: 400 10.5px/1.3 var(--font-body); color: var(--text-muted); }
.fb-dots { margin-left: auto; color: var(--text-muted); letter-spacing: 1px; }
.fb-copy { padding: 0 14px 10px; font: 400 13px/1.45 var(--font-body); }
.fb-img { position: relative; aspect-ratio: 16/8.5; overflow: hidden; }
.fb-img img { width: 100%; height: 100%; object-fit: cover; }
.fb-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,35,43,.15), rgba(22,35,43,.4)); }
.fb-img .pm-ad-line { bottom: 12%; font-size: 22px; z-index: 1; }
.fb-cta { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 14px; background: var(--fog); }
.fb-cta-copy small { display: block; font: 400 9.5px/1.3 var(--font-mono); letter-spacing: .05em; text-transform: uppercase; color: var(--text-muted); }
.fb-cta-copy b { font-size: 12.5px; }
.fb-btn { font: 600 12px/1 var(--font-body); background: var(--ink); color: var(--fog); border-radius: 8px; padding: 9px 14px; white-space: nowrap; box-shadow: inset 0 -2px 0 0 var(--line); }

/* support pane: use the width */
.sms { max-width: 720px; }

/* stats: 3-up now */
.stats-grid { grid-template-columns: repeat(3, 1fr); column-gap: clamp(24px, 3vw, 48px); }
.stats-grid .stat { flex-direction: column; align-items: flex-start; gap: 14px; }
@media (max-width: 1080px) { .stats-grid { grid-template-columns: 1fr; } .stats-grid .stat { flex-direction: row; align-items: center; } }

/* value grid (proof breakdown, rebuilt) */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 64px; }
.value-card { position: relative; border: 1px solid var(--hairline); border-radius: var(--radius); background: var(--paper); padding: 26px 26px 28px; }
.vc-n { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--fog); border: 1px solid var(--hairline); font: 500 14px/1 var(--font-display); margin-bottom: 14px; color: var(--line); }
.value-card h3 { font: 500 19px/1.3 var(--font-display); font-variation-settings: var(--frx); margin-bottom: 10px; }
.value-card p { font-size: 14.5px; color: var(--text-muted); }
.proof-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.preview-mock { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); background: var(--paper); display: flex; flex-direction: column; }
.preview-mock .chrome { flex: none; }
.preview-shot { position: relative; flex: 1; min-height: 300px; }
.preview-shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.proof-duo .case-card { min-height: 340px; grid-row: auto; grid-column: auto; }
@media (max-width: 1080px) { .value-grid { grid-template-columns: 1fr 1fr; } .proof-duo { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .value-grid { grid-template-columns: 1fr; } }

/* partnership: second glass card, top-right */
.st-float--top { top: 22px; bottom: auto; right: 22px; left: auto; }
@media (max-width: 640px) { .st-float--top { top: 12px; right: 12px; } }

/* one-line headings */
.cmp-one { font-size: clamp(30px, 3.6vw, 52px); }
.pr-one { font-size: clamp(28px, 3.3vw, 48px); }
@media (min-width: 1081px) { .cmp-one, .pr-one { white-space: nowrap; } }

/* ---------- round 5 ---------- */
/* pricing: tier names aligned — the hero card raises instead of pushing its name down */
@media (min-width: 1081px) {
  .price-card--hero { margin-top: -52px; padding-top: 38px; padding-bottom: 50px; }
}
/* territories: much slower */
.terr-track { animation-duration: 110s; }
.terr-track--rev { animation-duration: 130s; }
/* fit heading */
.fit-head { text-align: center; margin-bottom: 44px; }
/* footer: 4 columns, tighter */
.footer-cols { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; }
.f-col a small { font: 400 11px/1.3 var(--font-mono); color: var(--text-muted-rev); opacity: .8; }
@media (max-width: 1080px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-cols { grid-template-columns: 1fr; } }

/* ---------- round 6 ---------- */
/* buttons: no colored shadow */
.btn-primary { box-shadow: none; }
[data-mood] .btn-primary { box-shadow: none; }
.btn:hover { box-shadow: 0 8px 20px rgba(22,35,43,.14); }
.price-card--hero { box-shadow: none; border-color: var(--ink); }
.start-form { border-bottom-color: var(--hairline); }
.textbox-card { box-shadow: none; }

/* mega: compact icon list */
.mega--list { min-width: 230px; grid-template-columns: 1fr; gap: 2px; padding: 12px; }
.mega--list a { align-items: center; gap: 12px; padding: 10px 12px; font: 500 15px/1 var(--font-body); }
.mg-ico { width: 34px; height: 34px; border-radius: 9px; background: rgba(22,35,43,.06); display: inline-flex; align-items: center; justify-content: center; color: var(--line); flex: none; }

/* mobile nav: services links live in the burger menu */
.m-only { display: none; }
@media (max-width: 1080px) {
  .nav.nav--open .m-only { display: block; }
  .m-label { font: 400 11px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted-rev); border-bottom: 1px solid var(--hairline-rev); padding-bottom: 10px; }
  .m-svc a { padding-left: 12px; }
}

/* fb ad unit: natural portrait width, social rows */
.win-shot--fb { aspect-ratio: auto; padding: 34px 20px; }
.fbad { width: min(400px, 100%); }
.fb-img--tall { aspect-ratio: 4/4.4; }
.fb-social { display: flex; justify-content: space-between; padding: 9px 14px 8px; font: 400 12px/1 var(--font-body); color: var(--text-muted); border-bottom: 1px solid var(--hairline); }
.fb-social i { font-style: normal; font-size: 11px; }
.fb-actions { display: flex; padding: 8px 14px 10px; }
.fb-actions span { flex: 1; text-align: center; font: 600 12.5px/1 var(--font-body); color: var(--text-muted); }

/* value grid: preview card with grey gradient click-through */
.value-card--preview { position: relative; overflow: hidden; padding: 0; text-decoration: none; display: flex; min-height: 220px; isolation: isolate; }
.value-card--preview img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; z-index: -2; transition: transform .5s ease-in-out; }
.value-card--preview::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(22,35,43,.35), rgba(22,35,43,.88)); }
.value-card--preview:hover img { transform: scale(1.03); }
.vp-body { margin-top: auto; padding: 24px 26px; display: flex; flex-direction: column; gap: 8px; color: var(--fog); }
.vp-k { font: 400 11px/1 var(--font-mono); letter-spacing: .07em; text-transform: uppercase; color: rgba(244,240,230,.75); }
.vp-link { font: 600 17px/1.2 var(--font-body); border-bottom: 1px solid rgba(244,240,230,.5); padding-bottom: 4px; align-self: flex-start; }

/* pricing sub line */
.pr-sub { text-align: center; font: 400 13px/1.4 var(--font-mono); letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); margin-top: 14px; }

/* compare: tighter */
.cmp2 { min-width: 780px; font-size: 14px; }
.cmp2 td, .cmp2 tbody th { padding: 12px 16px; }
.cmp2 thead th { padding: 14px 16px; }

/* round 6 fixes: mega link color (was inheriting nav's fog), nav CTA fill, tab underline */
.mega--list a { color: var(--ink); }
.mega--list a:hover { color: var(--ink); background: rgba(22,35,43,.05); }
.nav .btn-primary { background: var(--fog); color: var(--ink); }
.seg button[aria-selected="true"] { box-shadow: none; }
@media (max-width: 1080px) {
  #navDrop { display: none; }
  .nav-ctas .btn { white-space: nowrap; font-size: 13px; padding: 10px 14px; }
}

/* pillar mini FB-ad unit (round 7: the pillar media must read as an AD, not a photo) */
.pm-fb { width: min(300px, 100%); background: var(--paper); color: var(--ink); border-radius: 12px; overflow: hidden; box-shadow: 0 24px 54px rgba(22,35,43,.3); }
.pm-fb .fb-head { padding: 10px 12px 7px; }
.pm-fb .fb-ava { width: 28px; height: 28px; font-size: 10px; }
.pm-fb .fb-who b { font-size: 12px; }
.pm-fb .fb-who small { font-size: 10px; }
.pm-fb .fb-img { aspect-ratio: 16/10.5; }
.pm-fb .fb-img .pm-ad-line { bottom: 10%; font-size: 19px; }
.pm-fb .fb-cta { padding: 8px 12px; }
.pm-fb .fb-cta-copy small { font-size: 8.5px; }
.pm-fb .fb-cta-copy b { font-size: 11.5px; }
.pm-fb .fb-btn { font-size: 11px; padding: 8px 12px; }

/* mega: invisible hover bridge across the 18px gap (menu closed when cursor crossed it) */
.mega::before { content: ""; position: absolute; top: -22px; left: 0; right: 0; height: 22px; }

/* ---------- round 7: ink-on-ink buttons get their container back ---------- */
.price-card--hero .btn-primary,
.textbox-card .btn-primary,
.mcta .btn-primary,
.plat-card--report .btn-primary {
  background: var(--fog); color: var(--ink);
}
/* overscroll rubber-band shows ink, not white */
html { background: var(--ink); }

/* footer email line */
.f-mail { margin-top: 10px; }
.f-mail a { font: 400 13.5px/1 var(--font-mono); color: var(--text-muted-rev); text-decoration: none; border-bottom: 1px solid var(--hairline-rev); padding-bottom: 2px; }
.f-mail a:hover { color: var(--fog); }

/* ---------- round 10: Marketer step visuals + The Service section ---------- */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.scard { border-radius: var(--radius); background: linear-gradient(170deg, var(--paper), var(--fog)); border: 1px solid var(--hairline); padding: 24px; min-height: 360px; display: flex; flex-direction: column; }
.sc-num { font: 400 13px/1 var(--font-mono); color: var(--text-muted); }
.mockzone { flex: 1; display: flex; align-items: center; justify-content: center; padding: 20px 4px; }
.scard h3 { font: 500 20px/1.3 var(--font-display); font-variation-settings: var(--frx); margin-bottom: 8px; }
.scard p { color: var(--text-muted); font-size: 14.5px; }
.mz-sms { display: flex; flex-direction: column; gap: 9px; width: 100%; max-width: 280px; }
.mz-sms .bub { font-size: 13.5px; }
.mz-sms .bub.you { background: var(--fog); border: 1px solid var(--hairline); }
.connlist { display: grid; gap: 8px; width: 100%; max-width: 300px; }
.connrow { display: flex; align-items: center; justify-content: space-between; background: var(--paper); border: 1px solid var(--hairline); border-radius: 10px; padding: 11px 14px; font-size: 13.5px; font-weight: 500; box-shadow: 0 8px 20px rgba(22,35,43,.06); }
.connrow .st { font: 400 11px/1 var(--font-mono); letter-spacing: .05em; text-transform: uppercase; color: var(--text-muted); }
.connrow .st.done { color: var(--ink); }
.connrow .st.done::before { content: "✓ "; color: var(--line); }
.connrow .st.shimmer {
  background: linear-gradient(100deg, var(--text-muted) 40%, var(--line) 50%, var(--text-muted) 60%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shinyText 3.2s linear infinite;
}
@keyframes shinyText { 0% { background-position: 200% 0; } 100% { background-position: -80% 0; } }
.uic { background: var(--paper); border: 1px solid var(--hairline); border-radius: 12px; box-shadow: 0 14px 34px rgba(22,35,43,.1); padding: 16px; width: 100%; max-width: 300px; font-size: 13.5px; }
.uic p { margin: 0; line-height: 1.5; font-weight: 500; text-align: center; }
.uic .chiprow { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; justify-content: center; }
.pillbtn { border-radius: var(--radius-pill); padding: 7px 14px; font: 500 12.5px/1 var(--font-body); border: 1px solid var(--hairline); background: var(--fog); }
.pillbtn.em { background: rgba(201,111,46,.18); border-color: transparent; }
@media (max-width: 1080px) { .steps3 { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } .scard { min-height: 0; } .mockzone { padding: 26px 4px; } }

.servicesec { padding: 110px 0 60px; }
.svc-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.svc-sms .window { max-width: 520px; margin: 0 auto; }
.svc-copy h2 { font-size: clamp(30px, 3.4vw, 48px); margin-bottom: 8px; }
.svc-copy h2 em { display: block; color: var(--text-muted); font-size: .72em; margin-top: 8px; }
.numlist { display: grid; margin-top: 26px; }
.nrow { display: flex; gap: 16px; align-items: baseline; padding: 16px 0; border-top: 1px solid var(--hairline); font-size: 16px; }
.nrow:first-child { border-top: 0; }
.nrow .n { flex: 0 0 26px; height: 26px; border-radius: 50%; background: var(--paper); border: 1px solid var(--hairline); display: inline-flex; align-items: center; justify-content: center; font: 400 12px/1 var(--font-mono); color: var(--line); }
@media (max-width: 1080px) { .svc-split { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .connrow .st.shimmer { animation: none; color: var(--text-muted); background: none; -webkit-background-clip: initial; } }

/* credit chips inside ad mocks sit top-right so they never collide with the bottom-anchored pm-ad-line */
.fb-img .ph-credit { bottom: auto; top: 8px; }
