/*
  Lab landing for distribute.you. Hand-written, no framework.

  Recipes lifted from the competitor clones beside this directory, then recoloured to the
  charter blue and a light surface:
  - explee: the hero (trust strip, accent h1, gift pill, glass launch field with the
    gradient hairline, "I don't have a website"), the showcase card grid and its enter /
    pulse keyframes, the pricing slider window and its stat tiles, the FAQ row.
  - gojiberry: the floating pill nav, the section hairline with a "+" and corner brackets,
    the numbered label pills, the two-column feature cards with a framed illustration panel,
    the dashed vertical step timeline, the big count-up stat band, the two pricing cards
    with circle-check lists, the closing CTA box with line ornaments.

  Colour rhythm (2026-09): the page read as white + grey + one blue spent on hairlines.
  Every recipe below is lifted from a clone and recoloured to the charter:
  - revid: the dual-hue radial blob behind the hero media with a slow opacity breathe,
    the dark band whose headline is white-to-grey gradient text, the LED glow on a pill.
  - gojiberry: the full-section white-to-tint wash, the per-word blurred headline reveal,
    the tinted label pill, the coloured 1px border that marks a featured card, the dark
    closing CTA slab.
  - outrank: the white ring + whisper lift card shadow, the brand hairline capping a card,
    the ambient glow under the featured plan, the CSS-var reveal stagger.
  - explee: the corner sheen on a flat panel, the accent hover glow brighter than its fill.
  Blue is the primary; the secondary (purple) and tertiary (orange) appear only where a
  reader must tell siblings apart (the three pipeline cards), never as decoration.
*/

:root {
  --bg: #ffffff;
  --surface: #fafafa;
  --text: #0a0a0a;
  --text-2: #111111;
  --muted: #6b6b6b;
  --muted-2: #919191;
  --hair: #ececec;
  --hair-2: #e0e0e0;
  --accent: #2563eb;
  --accent-600: #1d4ed8;
  --accent-50: #eef3ff;
  --accent-100: #dbe6ff;
  --accent-text: #1a4fc3;
  --good: #10b981;
  --secondary: #7c3aed;
  --secondary-50: #f3eeff;
  --secondary-100: #e4d9ff;
  --tertiary: #ea580c;
  --tertiary-50: #fff4ec;
  --tertiary-100: #ffe0c7;
  --dark: #0a0a0a;
  --shadow-ring: 0 0 0 4px #fff, 0 8px 32px 0 rgba(6, 11, 19, 0.06);
  --shadow-card: 0 1px 2px rgba(10, 10, 10, 0.04), 0 8px 24px -12px rgba(10, 10, 10, 0.12);
  --radius: 16px;
  --font-display: "Fustat", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --max: 1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; }

/* Type scale (gojiberry: 56/-2.8 h1, 38/-1.5 h2, 24/-1 h3, 17 body) */
h1 { font-size: clamp(38px, 5.2vw, 64px); line-height: 1; letter-spacing: -0.05em; }
h2 { font-size: clamp(30px, 3.4vw, 40px); line-height: 1.08; letter-spacing: -0.04em; color: var(--text-2); }
h3 { font-size: 24px; line-height: 28px; letter-spacing: -0.04em; color: var(--text-2); }
p { color: var(--muted); }
.lead { font-size: 20px; line-height: 26px; letter-spacing: -0.02em; color: var(--text); }
.accent { color: var(--accent); }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Section frame (gojiberry: hairline + "+" + corner brackets) ---------- */
section { position: relative; padding: 112px 0; }
/* gojiberry: a full-section wash, white at the top so the frame's "+" still sits on white. */
section.tint { background: linear-gradient(180deg, #ffffff 0%, var(--accent-50) 100%); }
section.tint.tint-both { background: linear-gradient(180deg, #ffffff 0%, var(--accent-50) 50%, #ffffff 100%); }
/* revid: a dark band lit from the top by the accent. The frame is hidden: a "+" on white
   would straddle a dark edge. */
section.dark { background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(37, 99, 235, 0.28), transparent 70%), var(--dark); color: #fff; }
section.dark.framed::before, section.dark.framed::after { display: none; }
section.dark + section.framed::before, section.dark + section.framed::after { display: none; }
section.dark h2, section.dark h3 { color: #fff; }
section.dark p { color: rgba(255, 255, 255, 0.7); }
section.framed::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hair-2) 15%, var(--hair-2) 85%, transparent);
}
section.framed::after {
  content: "+";
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 13px; line-height: 1;
  color: #bdbdbd; background: var(--bg); padding: 0 6px;
}
.corners { position: relative; }
.corners::before, .corners::after,
.corners > .c::before, .corners > .c::after {
  content: ""; position: absolute; width: 10px; height: 10px;
  border: 1px solid #c9c9c9; pointer-events: none;
}
.corners::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.corners::after { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.corners > .c::before { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.corners > .c::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.corners > .c { position: absolute; inset: 0; pointer-events: none; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; line-height: 20px; letter-spacing: -0.01em;
  color: var(--accent-text); background: rgba(37, 99, 235, 0.09);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  border-radius: 8px; padding: 4px 12px;
  font-family: var(--font-display);
}
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head p { margin-top: 14px; font-size: 18px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Nav (gojiberry floating pill) ---------- */
.nav {
  position: sticky; top: 14px; z-index: 50;
  display: flex; justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}
.nav-pill {
  pointer-events: auto;
  display: flex; align-items: center; gap: 6px;
  width: 100%; max-width: var(--max);
  height: 58px; padding: 0 10px 0 16px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--hair);
  border-radius: 100px;
  box-shadow: 0 1px 2px rgba(10, 10, 10, 0.04), 0 10px 30px -18px rgba(10, 10, 10, 0.3);
  transition: max-width 0.4s ease, box-shadow 0.4s ease;
}
.nav.compact .nav-pill { max-width: 820px; box-shadow: 0 1px 2px rgba(10, 10, 10, 0.05), 0 14px 40px -18px rgba(10, 10, 10, 0.35); }
.brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-size: 20px; letter-spacing: -0.03em; color: var(--text); }
.brand img { width: 26px; height: 26px; border-radius: 6px; }
.nav-links { display: flex; gap: 2px; margin-left: 22px; }
.nav-links a { padding: 8px 12px; border-radius: 100px; font-size: 15px; color: #333; transition: background 0.2s; }
.nav-links a:hover { background: var(--surface); color: var(--text); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding: 0 16px; border-radius: 100px;
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-ghost { color: #333; }
.btn-ghost:hover { background: var(--surface); color: var(--text); }
.btn-primary { background: var(--text); color: #fff; }
.btn-primary:hover { background: #222; transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-600); transform: translateY(-1px); box-shadow: 0 8px 25px -8px rgba(37, 99, 235, 0.5); }
.btn-lg { height: 48px; padding: 0 22px; font-size: 16px; }
.btn-outline { border: 1px solid var(--hair-2); background: #fff; color: var(--text); }
.btn-outline:hover { border-color: #bbb; }
.nav-burger { display: none; }

/* ---------- Hero (explee) ---------- */
.hero { padding: 72px 0 40px; min-height: calc(100dvh - 72px); display: flex; align-items: center; overflow: hidden; }
.hero-inner { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; width: 100%; }
.hero-lines { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
/* revid: a dual-hue radial blob behind the media, blurred, breathing over six seconds. */
.hero-glow {
  position: absolute; left: 50%; top: 58%; z-index: 0; pointer-events: none;
  width: min(1100px, 120vw); height: 640px; transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.22) 0%, rgba(124, 58, 237, 0.1) 45%, transparent 72%);
  filter: blur(48px);
  animation: hero-glow 6s ease-in-out infinite;
}
@keyframes hero-glow { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
/* gojiberry: the headline arrives one word at a time, blurred then sharp. main.js wraps
   the words; without JS nothing is hidden. */
.hero h1 .w { display: inline-block; opacity: 0.001; filter: blur(10px); transform: translateY(20px); animation: word-in 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; animation-delay: calc(var(--i, 0) * 70ms); }
@keyframes word-in { to { opacity: 1; filter: blur(0); transform: none; } }
.trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 36px; margin-bottom: 26px; font-size: 14px; color: var(--muted); }
.trust span { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.trust b { font-weight: 500; color: var(--text); font-variant-numeric: tabular-nums; }
.trust svg { width: 16px; height: 16px; color: var(--accent); }
.hero h1 { max-width: 780px; margin: 0 auto 14px; color: var(--text); }
.hero h1 .sub {
  display: block; margin-top: 14px;
  font-size: clamp(18px, 2.4vw, 26px); line-height: 1.3; letter-spacing: -0.02em; color: var(--muted);
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 8px 0 26px;
  padding: 6px 16px; border-radius: 100px;
  font-size: 14px; color: var(--text);
  background: var(--accent-50); border: 1px solid var(--accent-100);
}
.pill svg { width: 16px; height: 16px; color: var(--accent); }

/* explee: glass-edge + hero-launch-field, light version */
.launch { position: relative; width: 100%; max-width: 520px; }
.launch-field {
  position: relative; display: flex; align-items: center; gap: 8px;
  padding: 5px 5px 5px 20px; border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 2px rgba(10, 10, 10, 0.05), 0 12px 40px -18px rgba(10, 10, 10, 0.35);
  transition: box-shadow 0.3s;
}
.launch-field::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.18) 0%, rgba(10, 10, 10, 0.1) 50%, rgba(10, 10, 10, 0.08) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.launch-field:focus-within { box-shadow: 0 0 0 2px var(--accent), 0 12px 40px -18px rgba(37, 99, 235, 0.45); }
.launch-field:focus-within::before { background: rgba(37, 99, 235, 0.3); }
.launch-field input { flex: 1; min-width: 0; height: 46px; background: transparent; border: 0; outline: 0; font-size: 16px; }
.launch-field input::placeholder { color: var(--muted-2); }
.launch-field .btn { height: 44px; border-radius: 12px; padding: 0 18px; }
.no-site { margin-top: 14px; font-size: 14px; color: var(--muted); transition: color 0.2s; }
.no-site:hover { color: var(--text); }
.hero-sub { margin-top: 32px; max-width: 560px; font-size: 18px; }

/* explee showcase grid */
.showcase { width: 100%; max-width: 680px; margin: 48px auto 0; text-align: left; }
.showcase-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 12px; padding-left: 4px;
}
.showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.show-card {
  display: flex; flex-direction: column; justify-content: space-between;
  height: 136px; padding: 16px 18px; border-radius: 16px;
  background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(20px);
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-card);
  animation: lp-card-enter 0.4s ease-out both;
  transition: border-color 0.3s, box-shadow 0.4s ease-out, transform 0.3s;
}
.show-card:hover { border-color: var(--accent-100); transform: translateY(-2px); box-shadow: 0 8px 25px -8px rgba(37, 99, 235, 0.25), var(--shadow-card); }
.show-card:nth-child(2) { animation-delay: 90ms; }
.show-card:nth-child(3) { animation-delay: 180ms; }
.show-card:nth-child(4) { animation-delay: 270ms; }
.show-top { display: flex; align-items: center; gap: 10px; min-width: 0; }
.show-top img { width: 32px; height: 32px; border-radius: 8px; background: var(--surface); flex: none; }
.show-name { font-weight: 500; font-size: 15px; line-height: 20px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.show-domain { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.show-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: var(--muted); background: var(--surface); border: 1px solid var(--hair); border-radius: 100px; padding: 3px 8px; white-space: nowrap; }
.show-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--good); animation: lp-live-pulse 2s ease-in-out infinite; }
.show-stats { display: flex; gap: 16px; font-size: 13px; color: var(--muted); }
.show-stats b { font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; }
.show-stats .roi b { color: var(--accent); }
@keyframes lp-card-enter { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lp-live-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.75); } }

/* ---------- Proof (customers) ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.proof-card {
  position: relative; display: flex; flex-direction: column; gap: 18px;
  padding: 26px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--hair); box-shadow: var(--shadow-ring);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.proof-card:hover { border-color: var(--accent-100); transform: translateY(-2px); }
.proof-top { display: flex; align-items: center; gap: 12px; }
.proof-top img { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }
/* A person, not a company: the portrait is round so it never reads as a logo. */
.proof-top img.face { border-radius: 50%; }
.proof-top .name { font-weight: 500; line-height: 1.2; }
.proof-top .meta { font-size: 13px; color: var(--muted); }
.proof-roi { display: flex; align-items: baseline; gap: 14px; }
.proof-roi .big { font-family: var(--font-display); font-size: 56px; line-height: 1; letter-spacing: -0.05em; color: var(--accent-text); }
.proof-roi .big small { font-size: 26px; letter-spacing: -0.02em; color: var(--accent); margin-left: 2px; }
.proof-roi .lbl { font-size: 14px; line-height: 1.3; color: var(--muted); }
.proof-line { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--hair); font-size: 14px; color: var(--muted); }
.proof-line b { color: var(--text); font-weight: 500; }
.proof-quote { font-size: 15px; line-height: 1.5; color: var(--text); }
.proof-quote::before { content: "\201C"; color: var(--accent); }
.proof-quote::after { content: "\201D"; color: var(--accent); }
.proof-who { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.proof-who img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.proof-who b { color: var(--text); font-weight: 500; }
.stars { color: #f5b301; letter-spacing: 1px; font-size: 13px; }

/* ---------- Steps (gojiberry timeline) ---------- */
.steps { display: grid; grid-template-columns: 220px 1fr; gap: 48px; }
.steps-nav { position: sticky; top: 110px; align-self: start; display: flex; flex-direction: column; gap: 4px; }
.steps-nav a { padding: 10px 0; border-bottom: 1px solid var(--hair); font-size: 17px; color: #b3b3b3; transition: color 0.3s; }
.steps-nav a.active { color: var(--text); }
.steps > * { min-width: 0; }
.timeline { position: relative; padding-left: 40px; min-width: 0; }
.timeline::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; border-left: 1px dashed #c8c8c8; }
.step { position: relative; padding: 8px 0 88px; }
.step:last-child { padding-bottom: 8px; }
.step::before { content: ""; position: absolute; left: -44px; top: 16px; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px #fff; }
.step .eyebrow { margin-bottom: 14px; }
.step h3 { font-size: 30px; line-height: 1.1; letter-spacing: -0.04em; }
.step p { margin-top: 14px; max-width: 480px; font-size: 16px; }
.step .note { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--hair); color: var(--muted-2); font-size: 15px; }
.step-visual {
  margin-top: 22px; max-width: 560px; padding: 18px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--hair);
}
.fake-field { display: flex; align-items: center; gap: 10px; height: 44px; padding: 0 14px; border-radius: 10px; background: #fff; border: 1px solid var(--hair-2); font-size: 15px; color: var(--muted); }
.fake-field .cursor { width: 1px; height: 18px; background: var(--text); animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.fake-rows { display: grid; gap: 8px; min-width: 0; }
.fake-rows > * { min-width: 0; }
.step-visual { min-width: 0; overflow: hidden; }
.fake-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; background: #fff; border: 1px solid var(--hair); font-size: 14px; }
.fake-row .k { color: var(--muted); width: 120px; flex: none; }
.fake-row .v { color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; flex: 1; }
.fake-row .v.chips { white-space: normal; }
.fake-row .ok { margin-left: auto; color: var(--good); font-size: 12px; font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { font-size: 12px; padding: 3px 9px; border-radius: 100px; background: var(--accent-50); color: var(--accent-text); }

/* ---------- Features (gojiberry two-column cards) ---------- */
.features { display: grid; gap: 16px; }
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  padding: 36px; border-radius: 20px;
  background: #fff; border: 1px solid var(--hair); box-shadow: var(--shadow-card);
}
.feature .eyebrow { margin-bottom: 18px; }
.feature h3 { font-size: 34px; line-height: 1.08; letter-spacing: -0.04em; }
.feature p { margin-top: 14px; font-size: 16px; max-width: 460px; }
.panel {
  position: relative; padding: 22px; border-radius: 12px; min-height: 250px;
  background: radial-gradient(circle at 0 0, rgba(37, 99, 235, 0.09) 0%, transparent 60%), var(--surface);
  display: flex; align-items: center;
}
.feature { transition: border-color 0.3s, transform 0.3s; }
.feature:hover { border-color: var(--accent-100); }
.panel::before, .panel::after, .panel .c::before, .panel .c::after {
  content: ""; position: absolute; width: 10px; height: 10px; border: 1px solid #c9c9c9;
}
.panel::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.panel::after { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.panel .c { position: absolute; inset: 0; pointer-events: none; }
.panel .c::before { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.panel .c::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.roi-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.roi-table th { text-align: left; font-weight: 500; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); padding: 0 8px 10px; }
.roi-table th:last-child, .roi-table td:last-child { text-align: right; }
.roi-table td { padding: 10px 8px; border-top: 1px solid var(--hair); background: #fff; }
.roi-table tr td:first-child { border-radius: 8px 0 0 8px; }
.roi-table tr td:last-child { border-radius: 0 8px 8px 0; }
.roi-table tbody tr { box-shadow: 0 1px 0 var(--hair); }
.roi-table .roi { font-family: var(--font-mono); font-weight: 500; color: var(--accent); }
.roi-table .win { display: inline-flex; align-items: center; gap: 6px; }
.roi-table .win::before { content: "#1"; font-size: 10px; font-weight: 600; padding: 2px 6px; border-radius: 100px; background: var(--accent); color: #fff; }
.roi-table .dim td { color: var(--muted); }
.roi-table .ind { padding-left: 24px; color: var(--muted); }
.roi-table .sub { display: block; font-size: 12px; color: var(--muted-2); margin-top: 2px; }
.roi-table .icon { display: inline-flex; width: 22px; height: 22px; border-radius: 6px; align-items: center; justify-content: center; margin-right: 8px; vertical-align: middle; background: var(--accent-50); color: var(--accent); font-size: 12px; font-weight: 600; }
.bars { display: grid; gap: 12px; width: 100%; }
.bar { display: grid; grid-template-columns: 168px 1fr 52px; align-items: center; gap: 12px; font-size: 14px; }
.bar .track { height: 10px; border-radius: 100px; background: #fff; border: 1px solid var(--hair); overflow: hidden; }
.bar .fill { height: 100%; border-radius: 100px; background: var(--accent); width: 0; transition: width 1.2s cubic-bezier(0.2, 0.7, 0.2, 1); }
.bar .fill.soft { background: var(--accent-100); }
.bar .v { text-align: right; font-family: var(--font-mono); color: var(--accent); }
.bar .v.dim { color: var(--muted-2); }
.bar .name { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.avatar { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, #dbe6ff, #2563eb); flex: none; }
.controls { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; width: 100%; }
.control { background: #fff; border: 1px solid var(--hair); border-radius: 12px; padding: 14px; }
.control .k { font-size: 12px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.06em; }
.control .v { font-family: var(--font-display); font-size: 28px; letter-spacing: -0.04em; margin-top: 6px; }
.control .ok { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 12px; color: var(--good); font-weight: 600; }

/* ---------- Stats band (gojiberry) ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
/* revid: white-to-grey gradient text on the dark band. */
.stat .n { font-family: var(--font-display); font-size: clamp(56px, 7vw, 88px); line-height: 1; letter-spacing: -0.06em; color: #fff; font-variant-numeric: tabular-nums; background: linear-gradient(180deg, #fff 30%, rgba(255, 255, 255, 0.55)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .n .u { font-size: 0.55em; letter-spacing: -0.03em; -webkit-text-fill-color: #6ea0ff; }
.stat .l { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.14); font-size: 22px; line-height: 27px; letter-spacing: -0.04em; color: rgba(255, 255, 255, 0.78); font-family: var(--font-display); max-width: 300px; }

/* ---------- Fit ---------- */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fit-card { padding: 30px; border-radius: 20px; border: 1px solid var(--hair); background: #fff; box-shadow: var(--shadow-card); }
.fit-card.yes { background: linear-gradient(180deg, #fff 0%, var(--accent-50) 100%); border-color: var(--accent-100); box-shadow: var(--shadow-ring); }
.fit-card.yes h3 { color: var(--accent-text); }
.fit-card.no { background: var(--surface); box-shadow: none; }
.fit-card h3 { margin-bottom: 18px; }
.fit-card ul { list-style: none; display: grid; gap: 10px; }
.fit-card li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--text); }
.fit-card li i { flex: none; width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; margin-top: 2px; }
.fit-card.yes li i { background: var(--accent); color: #fff; }
.fit-card.no li { color: var(--muted); }
.fit-card.no li i { background: #eee; color: #999; }

/* ---------- Pricing ---------- */
.calc {
  max-width: 720px; margin: 0 auto 48px; padding: 28px 36px 32px; border-radius: 16px;
  background: radial-gradient(at 0 0, rgba(37, 99, 235, 0.12) 0%, transparent 60%), #fff;
  border: 1px solid var(--accent-100); box-shadow: var(--shadow-ring);
  position: relative;
}
.calc-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 10px; }
.calc-head .t { font-size: 15px; color: var(--muted); }
.calc-val { font-family: var(--font-display); font-size: 34px; letter-spacing: -0.04em; color: var(--text); font-variant-numeric: tabular-nums; }
.calc-val small { font-size: 15px; letter-spacing: 0; color: var(--muted); font-family: var(--font-body); }
.slider { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 100px; background: linear-gradient(90deg, var(--accent) var(--pct, 40%), #ececec var(--pct, 40%)); outline: none; margin: 8px 0 6px; }
.slider::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 1px solid #d0d0d0; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18); cursor: pointer; transition: box-shadow 0.2s; }
.slider::-webkit-slider-thumb:hover { box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.15), 0 1px 4px rgba(0, 0, 0, 0.18); }
.slider::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 1px solid #d0d0d0; }
.slider-scale { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted-2); font-family: var(--font-mono); margin-bottom: 22px; }
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.tile { position: relative; display: flex; flex-direction: column; padding: 12px; border-radius: 10px; background: var(--surface); border: 1px solid var(--hair); min-height: 86px; }
.tile .n { font-size: 24px; line-height: 32px; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--text); }
.tile .l { margin-top: auto; padding-top: 6px; font-size: 14px; font-weight: 500; color: var(--muted); }
.tile svg { position: absolute; top: 12px; right: 12px; width: 16px; height: 16px; color: var(--muted-2); }
.calc-note { margin-top: 16px; font-size: 13px; color: var(--muted-2); text-align: center; }

.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.plan { position: relative; padding: 32px; border-radius: 20px; background: #fff; border: 1px solid var(--hair); box-shadow: var(--shadow-card); }
.plan { transition: border-color 0.3s, transform 0.3s; }
.plan:hover { border-color: var(--accent-100); }
.plan.featured { border-color: var(--accent-100); box-shadow: 0 0 0 4px #fff, 1px 1px 25px 0 rgba(37, 99, 235, 0.12), 0 2px 80px 10px rgba(37, 99, 235, 0.1); }
.plan.featured .plan-tag { color: var(--accent-text); background: rgba(37, 99, 235, 0.09); padding: 4px 10px; border-radius: 100px; }
.plan-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.plan-tag i { width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--text); }
.plan.featured .plan-tag i { border-color: var(--accent); background: var(--accent-50); }
.plan-price { margin-top: 18px; font-family: var(--font-display); font-size: 40px; letter-spacing: -0.05em; line-height: 1; display: flex; align-items: baseline; gap: 6px; }
.plan-price small { font-family: var(--font-body); font-size: 14px; letter-spacing: 0; color: var(--muted); }
.plan-desc { margin-top: 12px; font-size: 16px; color: var(--muted); min-height: 48px; }
.plan .btn { margin-top: 22px; width: 100%; }
.plan-included { margin-top: 26px; font-family: var(--font-display); font-size: 20px; letter-spacing: -0.03em; }
.plan ul { list-style: none; margin-top: 12px; display: grid; gap: 9px; }
.plan li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text); }
.plan li i { flex: none; width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid var(--accent-100); display: inline-flex; align-items: center; justify-content: center; }
.plan li i::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.plan li.later { color: var(--muted); }
.plan li.later i { border-color: #ddd; }
.plan li.later i::after { background: #ccc; }
.soon { position: relative; display: inline-flex; margin-left: 4px; }
.soon > b { width: 16px; height: 16px; border-radius: 50%; border: 1px solid #ccc; color: #999; font-size: 10px; font-weight: 600; font-style: normal; display: inline-flex; align-items: center; justify-content: center; cursor: help; }
.soon > span {
  position: absolute; left: 50%; bottom: calc(100% + 8px); transform: translateX(-50%);
  padding: 6px 10px; border-radius: 8px; font-size: 12px; white-space: nowrap;
  background: var(--text); color: #fff; opacity: 0; pointer-events: none; transition: opacity 0.15s, transform 0.15s;
}
.soon:hover > span, .soon:focus-within > span { opacity: 1; transform: translateX(-50%) translateY(-2px); }
.plan-foot { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--hair); font-size: 14px; color: var(--muted); }
.plan-foot b { color: var(--text); font-weight: 500; }

/* ---------- FAQ (explee) ---------- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 18px 0; text-align: left; font-size: 17px; font-weight: 500; }
.faq-q svg { width: 18px; height: 18px; flex: none; color: var(--muted); transition: transform 0.25s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 0 18px; font-size: 16px; max-width: 640px; }

/* ---------- CTA (gojiberry box) ---------- */
.cta-box {
  position: relative; overflow: hidden; text-align: center;
  padding: 88px 24px; border-radius: 24px;
  /* gojiberry / revid: a dark slab lit by the accent from below. */
  background: radial-gradient(ellipse 60% 70% at 50% 110%, rgba(37, 99, 235, 0.55), transparent 70%), var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}
.cta-box h2 { font-size: clamp(34px, 4.2vw, 56px); letter-spacing: -0.05em; line-height: 1; color: #fff; }
.cta-box h2 .accent { color: #6ea0ff; }
.cta-box .lead { margin-top: 18px; color: rgba(255, 255, 255, 0.7); font-size: 18px; }
.cta-box .launch { margin: 28px auto 0; }
.cta-box .launch-field { box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6); }
.cta-box .fine { margin-top: 16px; font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.cta-lines { position: absolute; top: 50%; width: 260px; height: 320px; transform: translateY(-50%); pointer-events: none; opacity: 0.9; }
.cta-lines.l { left: 40px; }
.cta-lines.r { right: 40px; transform: translateY(-50%) scaleX(-1); }

/* ---------- Footer ---------- */
footer { padding: 64px 0 40px; border-top: 1px solid var(--hair); }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; }
.foot h4 { font-family: var(--font-display); font-size: 18px; letter-spacing: -0.02em; margin-bottom: 14px; }
.foot ul { list-style: none; display: grid; gap: 9px; }
.foot a { font-size: 14px; color: var(--muted); }
.foot a:hover { color: var(--text); }
.foot .tag { margin-top: 12px; font-size: 14px; color: var(--muted); max-width: 260px; }
.foot-bottom { margin-top: 48px; display: flex; justify-content: space-between; font-size: 13px; color: var(--muted-2); }

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; transition-delay: var(--d, 0s); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } .show-card { animation: none; } .hero-glow { animation: none; } .hero h1 .w { animation: none; opacity: 1; filter: none; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .steps { grid-template-columns: 1fr; }
  .steps-nav { display: none; }
  .feature { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .proof-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 28px; }
  .fit { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .foot { grid-template-columns: 1fr 1fr; }
  .cta-lines { display: none; }
  section { padding: 80px 0; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { padding-top: 40px; min-height: 0; }
  .nav-pill { height: 52px; padding: 0 8px 0 14px; }
  .brand { font-size: 17px; gap: 7px; }
  .brand img { width: 22px; height: 22px; }
  .nav-right .btn { padding: 0 12px; font-size: 14px; }
  .nav-right .btn-ghost { padding: 0 8px; }
  .launch-field { padding: 5px 5px 5px 14px; }
  .launch-field .btn span { display: none; }
  .launch-field .btn { padding: 0 14px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .show-card { height: auto; gap: 14px; }
  .controls { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr 1fr; }
  .calc { padding: 22px 20px 26px; }
  .feature h3, .step h3 { font-size: 28px; }
  .bar { grid-template-columns: 104px 1fr 48px; }
  .fake-row { flex-wrap: wrap; }
  .fake-row .k { width: 100%; font-size: 12px; }
  .fake-field { font-size: 14px; }
  .roi-table { font-size: 13px; }
  .panel { padding: 14px; min-height: 0; }
  .foot { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 8px; }
  .cta-box { padding: 56px 20px; }
}

/* ---------- v3: faces row (gojiberry / explee trust) ---------- */
.faces { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 44px; flex-wrap: wrap; }
.faces-row { display: flex; }
.faces-row img, .faces-row .face-initial { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; object-fit: cover; box-shadow: 0 1px 3px rgba(0,0,0,0.12); }
.faces-row > :first-child { margin-left: 0; }
.face-initial { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--tint, var(--accent-100)); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0; flex: none; }
.faces-text { display: flex; flex-direction: column; line-height: 1.2; font-size: 14px; color: var(--muted); }
.faces-text .stars { font-size: 15px; letter-spacing: 1px; }
/* Under the live showcase cards the row is a caption of the grid, not a section of its own. */
.faces-showcase { margin: 22px 0 0; }

/* ---------- v3: live showcase cards (explee live pulse + delta flash) ---------- */
.show-card { height: auto; gap: 14px; }
.show-live em { font-style: normal; }
.show-funnel { display: flex; flex-wrap: wrap; gap: 6px 10px; }
.sf { position: relative; display: flex; flex: 1 1 0; min-width: 62px; flex-direction: column; gap: 2px; }
.sf[data-zero] { display: none; }
.sf b { font-size: 15px; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--text); transition: color 0.4s; }
.sf b.up, .hstat b.up { color: var(--good); }
.sf small { font-size: 11px; color: var(--muted); white-space: nowrap; }
.sf .delta, .hstat-n .delta { position: absolute; left: 0; top: -2px; font-size: 11px; font-weight: 700; color: var(--good); pointer-events: none; animation: lp-delta-flash 1.4s ease-out forwards; }
@keyframes lp-delta-flash { 0% { opacity: 0; transform: translateY(4px); } 15% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(-16px); } }
.show-card.yours .sf b { color: var(--muted-2); }
.show-card.yours .sf b:last-child { color: var(--accent); }

/* ---------- Hero proof row (live fleet hot leads) ----------
   Sits ABOVE the headline, one inline line per stat: a mark, the number, the
   words. Small and quiet on purpose - it is the proof you walk past on the way
   to the h1, not a second headline competing with it. */
.hero-stats { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; column-gap: 20px; row-gap: 10px; margin: 0 0 24px; }
.hstat { position: relative; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; font-size: 12px; }
.hstat-i { width: 15px; height: 15px; flex: none; color: var(--muted); }
.hstat-n { position: relative; display: inline-flex; }
.hstat b { font-weight: 500; color: var(--text); font-variant-numeric: tabular-nums; transition: color 0.3s; }
.hstat-l { color: var(--muted); }
/* The "+N" floats above the NUMBER, so it hangs off .hstat-n rather than the
   whole line - anchored on .hstat it would sit over the mark. margin-left
   rather than a transform: lp-delta-flash animates transform. */
.hstat-n .delta { left: 50%; top: -13px; margin-left: -5px; }
@media (min-width: 768px) {
  .hero-stats { column-gap: 36px; }
  .hstat { gap: 8px; font-size: 14px; }
  .hstat-i { width: 16px; height: 16px; }
}

/* ---------- v3: proof funnel line ---------- */
.proof-funnel { display: flex; gap: 14px; flex-wrap: wrap; padding-top: 14px; border-top: 1px solid var(--hair); font-size: 13px; color: var(--muted); }
.proof-funnel span { display: flex; flex-direction: column; gap: 1px; }
.proof-funnel b { font-size: 16px; font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; }

/* ---------- v3: quotes grid (explee) ---------- */
.wrap.wide { max-width: 100%; padding: 0; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 16px; width: max-content; animation: marquee 60s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 8px)); } }
.quote { width: 380px; flex: none; display: flex; flex-direction: column; justify-content: space-between; gap: 26px; padding: 26px; border-radius: 16px; background: #fff; border: 1px solid var(--hair); box-shadow: var(--shadow-card); transition: border-color 0.3s; }
.quote:hover { border-color: var(--accent-100); }
.quote blockquote { font-size: 18px; line-height: 1.5; color: var(--text); }
/* The stars sit tight above the quote they rate, so they do not take the card's
   full gap, which is sized for the space between the quote and its author. */
.quote .stars { font-size: 15px; margin-bottom: -12px; }
.quote blockquote::before { content: "\201C"; } .quote blockquote::after { content: "\201D"; }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.quote figcaption img, .quote figcaption .face-initial { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.quote figcaption b { display: block; font-weight: 500; font-size: 15px; }
.quote figcaption small { display: block; font-size: 13px; color: var(--muted); }

/* ---------- v3: pipeline stacked cards (explee) ---------- */
.stack { display: grid; gap: 18px; }
.stack-card {
  position: sticky; top: 92px;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center;
  padding: 36px; border-radius: 20px;
  background: #fff; border: 1px solid var(--hair); box-shadow: 0 1px 2px rgba(10,10,10,0.04), 0 24px 60px -30px rgba(10,10,10,0.25);
}
/* Three cards, three tones, so a reader can tell the legs apart while scrolling the stack:
   blue (primary), purple (secondary), orange (tertiary). outrank: a brand hairline caps the
   card; explee: a corner sheen in the same tone. */
.stack-card { --tone: var(--accent); --tone-50: var(--accent-50); overflow: hidden; }
.stack-card:nth-child(2) { top: 108px; --tone: var(--secondary); --tone-50: var(--secondary-50); }
.stack-card:nth-child(3) { top: 124px; --tone: var(--tertiary); --tone-50: var(--tertiary-50); }
.stack-card::before { content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--tone), transparent); }
.stack-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 100% 0, var(--tone-50) 0%, transparent 45%); }
.stack-card > * { position: relative; z-index: 1; }
.stack-card h3::before { content: ""; display: block; width: 28px; height: 4px; border-radius: 100px; background: var(--tone); margin-bottom: 18px; }
.stack-card:nth-child(2) .bubble.out { background: var(--secondary-50); border-color: var(--secondary-100); }
.stack-card:nth-child(2) .booked { border-color: var(--secondary-100); color: var(--secondary); }
.stack-card h3 { font-size: 32px; line-height: 1.08; letter-spacing: -0.04em; }
.stack-card p { margin-top: 12px; font-size: 16px; max-width: 420px; }
.stack-visual { min-width: 0; }
.mail { border-radius: 12px; border: 1px solid var(--hair); background: var(--surface); overflow: hidden; }
.mail-row { display: flex; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--hair); font-size: 14px; color: var(--muted); background: #fff; }
.mail-row b { color: var(--text); font-weight: 500; }
.mail-body { padding: 16px; font-size: 14px; line-height: 1.55; color: var(--text); }
.chat { display: flex; flex-direction: column; gap: 10px; }
.bubble { max-width: 78%; padding: 12px 16px; border-radius: 14px; font-size: 14px; line-height: 1.45; }
.bubble.in { align-self: flex-start; background: var(--surface); border: 1px solid var(--hair); color: var(--text); }
.bubble.out { align-self: flex-end; background: var(--accent-50); border: 1px solid var(--accent-100); color: var(--text); }
.booked { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; padding: 5px 10px; border-radius: 8px; background: #fff; border: 1px solid var(--accent-100); color: var(--accent-text); font-size: 13px; font-weight: 500; }
/* Calendar that fills up (gojiberry's "books demos" visual, rebuilt in DOM).
   Five stages; each event names the stage it appears on and fades in when the
   calendar reaches it. main.js advances the stage once a second and loops. */
.cal { border-radius: 12px; border: 1px solid var(--hair); background: #fff; overflow: hidden; font-size: 11px; box-shadow: var(--shadow-card); }
.cal-days { display: grid; grid-template-columns: 44px repeat(5, 1fr); border-bottom: 1px solid var(--hair); background: var(--surface); }
.cal-days span { padding: 8px 0; text-align: center; font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.cal-body { display: grid; grid-template-columns: 44px 1fr; }
.cal-hours { display: grid; grid-template-rows: repeat(6, 1fr); border-right: 1px solid var(--hair); }
.cal-hours span { display: flex; align-items: flex-start; justify-content: flex-end; padding: 4px 6px 0 0; font-size: 10px; color: var(--muted-2); }
.cal-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(6, 44px); }
.cal-grid i { border-right: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.cal-grid i:nth-child(5n) { border-right: 0; }
.cal-ev { position: absolute; left: calc((var(--d) - 1) * 20% + 3px); width: calc(20% - 6px); top: calc(var(--s) / 24 * 100% + 1px); height: calc(var(--l) / 24 * 100% - 3px); padding: 4px 6px; border-radius: 6px; overflow: hidden; line-height: 1.25; opacity: 0; transition: opacity 0.4s ease; }
.cal-ev b, .cal-ev span { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.3; }
.cal-ev b { font-weight: 600; color: var(--text); }
.cal-ev span { color: var(--muted); font-size: 10px; }
.cal-ev.short span { display: none; }
.cal-ev.ta { background: #dbeafe; } .cal-ev.tb { background: #fef3c7; } .cal-ev.tc { background: #d1fae5; } .cal-ev.td { background: #ede9fe; } .cal-ev.te { background: #fee2e2; }
.cal[data-cal-stage="1"] .cal-ev[data-stage="1"],
.cal[data-cal-stage="2"] .cal-ev[data-stage="1"], .cal[data-cal-stage="2"] .cal-ev[data-stage="2"],
.cal[data-cal-stage="3"] .cal-ev[data-stage="1"], .cal[data-cal-stage="3"] .cal-ev[data-stage="2"], .cal[data-cal-stage="3"] .cal-ev[data-stage="3"],
.cal[data-cal-stage="4"] .cal-ev[data-stage="1"], .cal[data-cal-stage="4"] .cal-ev[data-stage="2"], .cal[data-cal-stage="4"] .cal-ev[data-stage="3"], .cal[data-cal-stage="4"] .cal-ev[data-stage="4"],
.cal[data-cal-stage="5"] .cal-ev { opacity: 1; }
.st { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.st::before { content: ""; width: 6px; height: 6px; border-radius: 2px; background: #ccc; }
.st.on { color: var(--text); } .st.on::before { background: var(--good); }
.integr { margin-top: 56px; display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.integr-label { font-size: 13px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.integr-logos { display: flex; gap: 10px; flex-wrap: wrap; }
.integr-logos span { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 100px; border: 1px solid var(--hair); background: #fff; font-size: 14px; }
.integr-logos img { width: 18px; height: 18px; border-radius: 4px; }

.avatar.person { display: inline-flex; align-items: center; justify-content: center; background: var(--accent-50); color: var(--accent); }
.avatar.person svg { width: 14px; height: 14px; }

@media (max-width: 960px) {
  .quote { width: 300px; }
  .stack-card { grid-template-columns: 1fr; gap: 20px; padding: 24px; position: static; }
}
@media (max-width: 640px) {
  .cal-ev { padding: 3px 4px; font-size: 10px; } .cal-ev span { font-size: 9px; }
  .faces { gap: 10px; }
}

/* ---------- Comparison cluster (/compare, /compare/<slug>, /alternatives) ----------
   Same recipes as the homepage: the hero, the framed sections, .fit-card for the two
   "where each wins" columns, .roi-table for the competitor's plans, .plan for ours, the
   dark stat band for the live figures. Only the side-by-side table and the hub grid are
   new; the table is outrank's compare table recoloured (our column tinted, first
   column a row header). */
.stats.two { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }
.cmp-hero { min-height: 0; padding: 72px 0 56px; }
.cmp-hero h1 { max-width: 900px; }
.cmp-hero .hero-sub { margin-top: 18px; max-width: 720px; font-size: 18px; }
.cmp-logos { display: flex; align-items: center; gap: 16px; margin: 8px 0 22px; }
.cmp-logo { display: inline-flex; width: 64px; height: 64px; border-radius: 16px; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--hair); box-shadow: var(--shadow-card); }
.cmp-logo img { width: 40px; height: 40px; border-radius: 8px; }
.cmp-vs { font-family: var(--font-display); font-size: 22px; color: var(--muted-2); }
.cmp-cta { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 26px; }
.cmp-table-wrap { border-radius: 20px; border: 1px solid var(--hair); background: #fff; box-shadow: var(--shadow-card); overflow: hidden; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.cmp-table thead th { text-align: left; padding: 18px 20px; font-family: var(--font-display); font-size: 18px; letter-spacing: -0.02em; font-weight: 400; border-bottom: 1px solid var(--hair); background: var(--surface); }
.cmp-table thead th.us { background: var(--accent-50); color: var(--accent-text); }
.cmp-table tbody th { text-align: left; padding: 16px 20px; font-weight: 500; color: var(--text); width: 22%; vertical-align: top; border-top: 1px solid var(--hair); }
.cmp-table tbody td { padding: 16px 20px; color: var(--muted); vertical-align: top; border-top: 1px solid var(--hair); width: 39%; line-height: 1.5; }
.cmp-table tbody td.us { background: linear-gradient(180deg, rgba(238, 243, 255, 0.6), rgba(238, 243, 255, 0.6)); color: var(--text); }
.cmp-cols { display: grid; grid-template-columns: 1.3fr 1fr; gap: 16px; align-items: start; }
.cmp-cols .panel { display: block; min-height: 0; }
.cmp-prices td:last-child, .cmp-prices th:last-child { text-align: left; }
.cmp-prices td:nth-child(2) { white-space: nowrap; }
.cmp-source { margin-top: 14px; font-size: 13px; color: var(--muted-2); }
.cmp-source a { color: var(--accent-text); text-decoration: underline; }
.fit-card.no li i { font-weight: 700; }
.cmp-more { margin-top: 40px; text-align: center; font-size: 14px; color: var(--muted); line-height: 2; }
.cmp-more a { color: var(--accent-text); }
.cmp-hub h3 { margin: 40px 0 16px; }
.cmp-hub h3:first-child { margin-top: 0; }
.cmp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cmp-card { display: flex; flex-direction: column; gap: 12px; padding: 22px; border-radius: 16px; background: #fff; border: 1px solid var(--hair); box-shadow: var(--shadow-card); transition: border-color 0.3s, transform 0.3s; }
.cmp-card:hover { border-color: var(--accent-100); transform: translateY(-2px); }
.cmp-card-top { display: flex; align-items: center; gap: 12px; }
.cmp-card-top img { width: 32px; height: 32px; border-radius: 8px; }
.cmp-card-top b { display: block; font-weight: 500; color: var(--text); }
.cmp-card-top small { display: block; font-size: 13px; color: var(--muted-2); }
.cmp-card p { font-size: 14px; }
/* Responsive rules sit AFTER the base rules above: same specificity, so order decides. */
@media (max-width: 960px) {
  .stats.two { grid-template-columns: 1fr; gap: 28px; }
  .cmp-table th:first-child, .cmp-table td:first-child { display: none; }
  .cmp-cols { grid-template-columns: 1fr; }
  .cmp-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cmp-table { font-size: 14px; }
  .cmp-table thead th, .cmp-table tbody td { padding: 12px 14px; }
  .cmp-logo { width: 52px; height: 52px; } .cmp-logo img { width: 32px; height: 32px; }
  /* The plan table stacks: plan and price on one line, what it buys underneath. */
  .cmp-prices, .cmp-prices tbody { display: block; width: 100%; }
  .cmp-prices thead { display: none; }
  .cmp-prices tbody tr { display: grid; grid-template-columns: 1fr auto; box-shadow: none; border-top: 1px solid var(--hair); padding: 10px 0; }
  .cmp-prices tbody td { border: 0; padding: 2px 4px; }
  .cmp-prices tbody td:nth-child(2) { text-align: right; }
  .cmp-prices tbody td:last-child { grid-column: 1 / -1; text-align: left; color: var(--muted); }
  .cmp-cta .btn { width: 100%; }
}
