/* ScaleDNA Homepage — marketing surface
   Built on top of colors_and_type.css tokens.
   ----------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Instrument+Serif:ital@0;1&family=DM+Mono:wght@400;500&family=Inter:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Space+Grotesk:wght@400;500;600;700&family=Geist:wght@400;500;600;700&family=Fraunces:ital,opsz,wght@0,9..144,400..600;1,9..144,400..600&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600;1,700&family=EB+Garamond:ital,wght@0,500;1,500;1,600&family=Lora:ital,wght@0,500;0,600;1,500;1,600&family=Caveat:wght@500;600;700&display=swap');

:root {
  /* ScaleDNA tokens (mirroring colors_and_type.css for self-containment) */
  --brand-50:  rgb(240 233 233);
  --brand-100: rgb(235 215 216);
  --brand-200: rgb(236 191 192);
  --brand-300: rgb(243 161 163);
  --brand-400: rgb(250 133 135);
  --brand-500: rgb(255 105 108);
  --brand-600: rgb(253 32 37);
  --brand-700: rgb(208 3 7);
  --brand-800: rgb(131 5 7);
  --brand-900: rgb(58 3 5);

  --ink-50:  #F7F7F6;
  --ink-100: #EFEFED;
  --ink-200: #E5E4E1;
  --ink-300: #D4D4D0;
  --ink-400: #9C9B99;
  --ink-500: #6B7280;
  --ink-600: #4B5563;
  --ink-700: #374151;
  --ink-800: #1F2937;
  --ink-900: #0F172A;

  --surface:       #F5F4F1;
  --surface-card:  #FFFFFF;
  --surface-muted: #FAF9F6;
  --surface-dark:  #1A1A1A;
  --surface-cream: #F5F4F1;

  /* Dynamic — tweakable */
  --primary: #FF696C;
  --primary-50:  #FCEEEE;
  --primary-100: #FADADA;
  --primary-700: #D0030A;
  --primary-900: #3A0305;

  --font-h: 'Outfit', system-ui, sans-serif;
  --font-b: 'Outfit', system-ui, sans-serif;
  --font-em: 'Instrument Serif', Georgia, serif;
  --font-mono: 'DM Mono', 'SF Mono', Menlo, monospace;

  --maxw: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px; /* leave room for sticky header */
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  background-color: var(--surface);
  background-image:
    radial-gradient(ellipse 1400px 900px at 90% 0%, color-mix(in srgb, var(--primary) 14%, transparent), transparent 65%),
    radial-gradient(ellipse 1200px 800px at 5% 55%, color-mix(in srgb, var(--primary) 7%, transparent), transparent 65%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--ink-800);
  font-family: var(--font-b);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
p { margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-h); color: var(--ink-800); letter-spacing: -0.02em; }

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

/* ========== HEADER (floating pill) ========== */
.sdn-header {
  position: sticky; top: 16px; z-index: 50;
  margin: 16px auto 0;
  max-width: calc(var(--maxw) - 64px);
  padding: 0 8px;
  background: color-mix(in srgb, white 72%, transparent);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid color-mix(in srgb, var(--ink-900) 8%, transparent);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 12px 28px -16px rgba(15, 23, 42, 0.18),
    0 4px 10px -6px rgba(15, 23, 42, 0.08);
}
.sdn-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
  padding: 0 12px 0 18px;
}
.sdn-logo { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink-800); }
.sdn-logo svg { height: 22px; width: auto; }
.sdn-logo-name { font-size: 18px; letter-spacing: -0.01em; }
.sdn-nav { display: flex; gap: 8px; align-items: center; }
.sdn-nav a {
  padding: 8px 14px; border-radius: 999px;
  font-size: 14px; color: var(--ink-700); font-weight: 500;
}
.sdn-nav a:hover { background: var(--ink-100); color: var(--ink-800); }
.sdn-nav-cta {
  background: var(--primary); color: white !important;
  padding: 9px 18px !important; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: opacity .2s;
}
.sdn-nav-cta:hover { opacity: 0.9; background: var(--primary) !important; color: white !important; }

/* ========== Nav dropdown (Features) ========== */
.sdn-nav-dd { position: relative; }
.sdn-nav-dd-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 0;
  padding: 8px 14px; border-radius: 999px;
  font-family: inherit;
  font-size: 14px; color: var(--ink-700); font-weight: 500;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.sdn-nav-dd-trigger:hover,
.sdn-nav-dd:hover .sdn-nav-dd-trigger,
.sdn-nav-dd:focus-within .sdn-nav-dd-trigger {
  background: var(--ink-100); color: var(--ink-800);
}
.sdn-nav-dd-trigger svg { transition: transform .2s ease; opacity: 0.7; }
.sdn-nav-dd:hover .sdn-nav-dd-trigger svg,
.sdn-nav-dd:focus-within .sdn-nav-dd-trigger svg { transform: rotate(180deg); }

.sdn-nav-dd-menu {
  position: absolute;
  top: calc(100% + 8px); left: 50%;
  transform: translate(-50%, -6px);
  min-width: 280px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 18px 40px -16px rgba(15, 23, 42, 0.18);
  opacity: 0; pointer-events: none;
  transition: opacity .18s ease .12s, transform .18s ease .12s;
  z-index: 60;
  display: flex; flex-direction: column; gap: 2px;
}
.sdn-nav-dd:hover .sdn-nav-dd-menu,
.sdn-nav-dd:focus-within .sdn-nav-dd-menu {
  opacity: 1; pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}
.sdn-nav-dd-menu::before {
  content: '';
  position: absolute; top: -16px; left: -8px; right: -8px; height: 20px;
  /* Invisible hover bridge so cursor can travel from trigger to menu without closing */
}
.sdn-nav-dd-menu a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 14px !important;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink-800);
  background: transparent;
}
.sdn-nav-dd-menu a:hover { background: var(--ink-100); }
.sdn-nav-dd-menu a .t { font-size: 14px; font-weight: 600; color: var(--ink-800); }
.sdn-nav-dd-menu a .d { font-size: 12px; color: var(--ink-500); font-weight: 400; }

/* Disabled dropdown items + "Coming soon" pill */
.sdn-nav-dd-menu a.sdn-nav-dd-disabled {
  cursor: default;
  opacity: 0.55;
}
.sdn-nav-dd-menu a.sdn-nav-dd-disabled:hover { background: transparent; }
.sdn-nav-dd-menu .ss-pill {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--ink-100);
  color: var(--ink-600);
  font-family: var(--font-mono, monospace);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ========== Buttons ========== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--primary); color: white; border: 0;
  padding: 14px 24px; border-radius: 999px;
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px -8px color-mix(in srgb, var(--primary) 70%, transparent),
              0 1px 0 rgba(255,255,255,0.2) inset;
  transition: background .18s ease, transform .18s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-primary:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px color-mix(in srgb, var(--primary) 65%, transparent),
              0 1px 0 rgba(255,255,255,0.25) inset;
  filter: brightness(1.04);
}
.btn-primary:active { transform: translateY(0); filter: brightness(0.96); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--surface-card); color: var(--ink-800);
  padding: 13px 22px; border-radius: 999px;
  font-size: 15px; font-weight: 600;
  border: 1px solid var(--ink-300);
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .2s ease;
}
.btn-secondary:hover {
  background: var(--ink-800);
  color: white;
  border-color: var(--ink-800);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(15, 23, 42, 0.30);
}
.btn-secondary:active { transform: translateY(0); }

.sdn-nav-cta {
  box-shadow: 0 4px 14px -6px color-mix(in srgb, var(--primary) 70%, transparent);
  transition: background .18s ease, transform .18s ease, box-shadow .2s ease, filter .2s ease;
}
.sdn-nav-cta:hover {
  background: var(--primary-700) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px color-mix(in srgb, var(--primary) 70%, transparent);
  filter: brightness(1.04);
  opacity: 1 !important;
}

.sdn-nav-cta-ghost {
  background: transparent !important;
  color: var(--primary-700) !important;
  border: 1.5px solid color-mix(in srgb, var(--primary) 50%, var(--ink-200));
  box-shadow: none !important;
}
.sdn-nav-cta-ghost:hover {
  background: color-mix(in srgb, var(--primary) 12%, white) !important;
  color: var(--primary-700) !important;
  border-color: var(--primary);
  filter: none;
}

/* ========== Eyebrow ========== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary);
  font-family: var(--font-b);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.eyebrow.muted { color: var(--ink-500); }

/* ========== Card surfaces (flat, no glass) ========== */
:root {
  --glass-bg: #FFFFFF;
  --glass-bg-strong: #FFFFFF;
  --glass-border: rgba(15, 23, 42, 0.06);
  --glass-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 28px -16px rgba(15, 23, 42, 0.14);
  --glass-blur: none;
}
.card {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -10% -5% 0 -5%;
  height: 110%;
  background:
    radial-gradient(ellipse 600px 360px at 80% 30%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 70%);
  z-index: 0; pointer-events: none; filter: blur(20px);
}
.hero > * { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 5px 14px 5px 5px;
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 13px; color: var(--ink-700);
  margin-bottom: 28px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 4px 14px -6px rgba(15, 23, 42, 0.10);
}
.hero-pill .tag {
  background: var(--primary-50); color: var(--primary-700);
  padding: 3px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
}
.hero h1 {
  font-size: clamp(34px, 4.4vw, 50px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink-800);
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero h1 em {
  font-family: var(--font-em);
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-600);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-cta-row {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
  margin-bottom: 18px;
}
.hero-microcopy {
  font-size: 13px;
  color: var(--ink-500);
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.hero-microcopy .pip {
  width: 4px; height: 4px; border-radius: 50%; background: var(--ink-300);
}

/* ========== Hero Mock ========== */
.mock {
  position: relative;
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 24px 60px -24px rgba(15, 23, 42, 0.18), 0 1px 2px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}
.mock-app {
  display: grid;
  grid-template-columns: 130px 1fr;
  min-height: 460px;
}
.mock-side {
  background: var(--surface-card);
  border-right: 1px solid var(--ink-200);
  padding: 14px 10px;
  font-family: var(--font-b);
}
.mock-side-logo { display: flex; align-items: center; height: 36px; padding: 0 6px; margin-bottom: 18px; }
.mock-side-logo svg { width: 28px; height: auto; }
.mock-side-section { font-size: 9px; color: var(--ink-400); letter-spacing: 0.16em; text-transform: uppercase; padding: 10px 8px 4px; font-weight: 600; }
.mock-side-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px; font-size: 11px; color: var(--ink-600);
  border-radius: 6px; margin-bottom: 1px;
}
.mock-side-item.active { background: var(--primary-50); color: var(--primary-700); font-weight: 600; }
.mock-side-item .dot {
  width: 4px; height: 4px; border-radius: 50%; background: currentColor;
  opacity: 0.5;
}
.mock-main { padding: 16px 18px; background: var(--surface-cream); display: flex; flex-direction: column; gap: 10px; }
.mock-h {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.mock-h-title { font-size: 14px; font-weight: 600; color: var(--ink-800); }
.mock-h-sub { font-size: 11px; color: var(--ink-500); margin-top: 2px; }
.mock-progress {
  background: var(--surface-card);
  border-radius: 12px;
  border: 1px solid var(--ink-200);
  padding: 9px 12px;
  display: flex; align-items: center; gap: 10px;
  font-size: 11px;
}
.mock-progress-bar {
  flex: 1; height: 4px; background: var(--ink-100); border-radius: 999px; overflow: hidden;
}
.mock-progress-bar > i {
  display: block; width: 70%; height: 100%; background: var(--primary);
}
.mock-card {
  background: var(--surface-card);
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  padding: 12px;
  display: flex; gap: 10px; align-items: flex-start;
}
.mock-card.active {
  border-color: var(--primary-100);
  box-shadow: 0 4px 14px -6px rgba(255, 105, 108, 0.25);
}
.mock-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  flex-shrink: 0;
}
.mock-postbody { flex: 1; font-size: 11px; line-height: 1.45; color: var(--ink-700); }
.mock-postbody .meta { display: flex; gap: 6px; font-size: 9px; color: var(--ink-500); margin-bottom: 4px; }
.mock-postbody .meta .name { color: var(--ink-700); font-weight: 600; }
.mock-postbody .body { color: var(--ink-700); }
.mock-postbody .actions { display: flex; gap: 6px; margin-top: 8px; }
.mock-postbody .actions .a {
  font-size: 9px; padding: 3px 8px; border-radius: 999px;
  background: var(--ink-100); color: var(--ink-700); font-weight: 600;
}
.mock-postbody .actions .a.go { background: var(--state-success-bg, #F0FDF4); color: #16A34A; }
.mock-postbody .actions .a.no { background: var(--primary-50); color: var(--primary-700); }

.mock-stat {
  position: absolute;
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 11px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 12px 30px -12px rgba(15, 23, 42, 0.22);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-b);
}
.mock-stat .pip {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--primary-50); color: var(--primary-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.mock-stat .num { font-weight: 700; color: var(--ink-800); font-size: 13px; }
.mock-stat .lbl { color: var(--ink-500); font-size: 10px; letter-spacing: 0.04em; }

/* ========== Stats Strip ========== */
.stats-strip {
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  padding: 28px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-tile {
  padding: 6px 24px;
  border-right: 1px solid var(--ink-100);
  text-align: center;
}
.stat-tile:last-child { border-right: 0; }
.stat-tile .num {
  font-size: 36px; font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.03em;
  font-family: var(--font-h);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-tile .lbl {
  font-size: 13px; color: var(--ink-600); line-height: 1.4;
}

/* ========== Generic section ========== */
.section { padding: 88px 0; }
.section.tight { padding: 64px 0; }
.section.dark { background: var(--surface-dark); color: white; }
.section.dark h2, .section.dark h3 { color: white; }
.section.dark p { color: rgba(255, 255, 255, 0.7); }
.section.cream { background: color-mix(in srgb, var(--primary) 5%, var(--surface-cream)); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 14px 0 18px;
}
.section-head h2 em {
  font-family: var(--font-em);
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}
.section-head .sub {
  font-size: 19px;
  color: var(--ink-600);
  line-height: 1.5;
}

/* ========== TRIED TABLE ========== */
.tried-table {
  border-top: 1px solid var(--ink-200);
}
.tried-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  padding: 24px 8px;
  border-bottom: 1px solid var(--ink-200);
  align-items: baseline;
}
.tried-row .what {
  font-size: 20px; font-weight: 600; color: var(--ink-800);
  letter-spacing: -0.01em;
}
.tried-row .happened {
  font-family: var(--font-em);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-600);
  line-height: 1.5;
}
.tried-closer {
  margin-top: 56px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-800);
  line-height: 1.25;
  max-width: 880px;
}
.tried-closer em {
  font-family: var(--font-em);
  color: var(--primary);
  font-style: italic;
  font-weight: 400;
}

/* ========== ENGINES ========== */
.engines-block { margin-bottom: 24px; }
.engines-label {
  display: flex; align-items: center; gap: 14px;
  margin: 32px 0 20px;
}
.engines-label .lbl {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary);
}
.engines-label .line {
  flex: 1; height: 1px; background: var(--ink-200);
}
.engines-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.engines-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.engine-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: box-shadow .25s, border-color .2s, transform .25s, background .25s;
  box-shadow: 0 1px 0 rgba(255,255,255,0.55) inset, 0 6px 18px -10px rgba(15, 23, 42, 0.08);
}
.engine-card:hover {
  background: var(--glass-bg-strong);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 18px 38px -14px rgba(15, 23, 42, 0.18);
  transform: translateY(-2px);
}
.engine-card .question {
  font-family: var(--font-em);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-500);
  margin-bottom: 14px;
  line-height: 1.4;
}
.engine-card h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.engine-card p {
  color: var(--ink-600);
  font-size: 15px;
  line-height: 1.55;
}
.engine-card .ico {
  position: absolute; top: 24px; right: 24px;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--primary-50);
  color: var(--primary-700);
  display: inline-flex; align-items: center; justify-content: center;
}
.engines-closer {
  margin-top: 36px;
  text-align: center;
  font-size: 16px;
  color: var(--ink-500);
}

/* ========== Big numbered section ========== */
.big-section {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.big-section.flip { grid-template-columns: 1.05fr 1fr; }
.big-section.flip .copy { order: 2; }
.big-section.flip .visual { order: 1; }
.big-eyebrow {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.big-section h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.big-section h2 em {
  font-family: var(--font-em); font-style: italic; color: var(--primary); font-weight: 400;
}
.big-sub {
  font-size: 19px;
  color: var(--ink-600);
  line-height: 1.5;
  margin-bottom: 24px;
  font-family: var(--font-em);
  font-style: italic;
  font-weight: 400;
}
.big-section .body {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.65;
  margin-bottom: 20px;
}
.big-list {
  list-style: none; padding: 0; margin: 0 0 24px;
}
.big-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.5;
  border-bottom: 1px solid var(--ink-100);
}
.big-list li:before {
  content: '';
  position: absolute; left: 0; top: 18px;
  width: 12px; height: 2px; background: var(--primary);
}
.big-list li:last-child { border-bottom: 0; }
.bridge {
  margin-top: 64px;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-b);
  letter-spacing: -0.01em;
}
.bridge .bridge-lead {
  display: block;
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.bridge .bridge-next {
  display: block;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--ink-800);
  font-weight: 500;
  line-height: 1.25;
  font-family: var(--font-em);
  font-style: italic;
}
.bridge .bridge-next em {
  color: var(--primary);
  font-style: italic;
  font-family: var(--font-em);
  font-weight: 400;
}

/* ========== Score CTA bar ========== */
.score-cta-section {
  padding: 56px 0;
}
.score-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 48px;
  background: var(--ink-900, #0F172A);
  color: #FAF7F2;
  border-radius: 20px;
  padding: 44px 52px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.4);
}
.score-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--primary) 35%, transparent) 0%, transparent 45%),
    radial-gradient(circle at 0% 100%, color-mix(in srgb, var(--primary) 18%, transparent) 0%, transparent 40%);
  pointer-events: none;
}
.score-cta > * { position: relative; z-index: 1; }

.score-cta-eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 14px;
}
.score-cta-title {
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin: 0 0 12px;
  color: #FAF7F2;
}
.score-cta-title em {
  color: var(--primary);
  font-style: italic;
  font-family: var(--font-em);
  font-weight: 400;
}
.score-cta-sub {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(250, 247, 242, 0.72);
  margin: 0;
  max-width: 52ch;
}
.score-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  justify-self: end;
}
.score-cta-actions .btn-primary {
  font-size: 16px;
  padding: 16px 26px;
  white-space: nowrap;
}
.score-cta-micro {
  font-size: 12px;
  color: rgba(250, 247, 242, 0.5);
  letter-spacing: 0.02em;
}

@media (max-width: 860px) {
  .score-cta {
    grid-template-columns: 1fr;
    padding: 32px 28px;
    gap: 24px;
  }
  .score-cta-actions { justify-self: stretch; align-items: stretch; }
  .score-cta-actions .btn-primary { justify-content: center; }
  .score-cta-micro { text-align: center; }
}

/* ========== AUDIT GAUGE ========== */
.gauge-wrap {
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--glass-shadow);
}
.gauge-img-wrap {
  position: relative;
  margin: 24px auto 40px;
  max-width: 360px;
}
.gauge-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.gauge-floater {
  position: absolute;
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.18);
  font-family: var(--font-b);
  z-index: 2;
}
.gauge-floater.top-right { top: -14px; right: -18px; }
.gauge-floater.bottom-left { bottom: -22px; left: -14px; }
.gauge-floater .pip {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}
.gauge-floater .lbl {
  color: var(--ink-500); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600;
}
.gauge-floater .num {
  font-weight: 700; color: var(--ink-800); font-size: 14px;
  letter-spacing: -0.01em;
}
.gauge-findings {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.gauge-findings li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; gap: 12px;
  padding: 10px 14px;
  background: var(--surface-cream);
  border-radius: 10px;
  font-size: 14px; color: var(--ink-800);
  font-weight: 500;
}
.gauge-findings .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.gauge-findings .dot.up { background: #16A34A; }
.gauge-findings .dot.down { background: #DC2626; }
.gauge-findings .dot.flat { background: var(--ink-400); }
.gauge-findings .chg {
  font-size: 15px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.gauge-findings .chg.up { color: #16A34A; }
.gauge-findings .chg.down { color: #DC2626; }
.gauge-findings .chg.flat { color: var(--ink-400); }
.gauge-bands {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  margin: 0 0 18px;
  padding: 14px 16px;
  background: var(--surface-cream);
  border-radius: 12px;
}
.gauge-bands .band-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  color: var(--ink-800);
}
.gauge-bands .band-sw {
  width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0;
}
.gauge-bands .band-item small {
  color: var(--ink-500); font-weight: 500; margin-left: auto;
  font-variant-numeric: tabular-nums;
}

/* ========== STRATEGY DNA cards ========== */
.dna-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.dna-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.55) inset, 0 6px 18px -12px rgba(15, 23, 42, 0.08);
}
.dna-card .lbl {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
}
.dna-card h4 { font-size: 16px; font-weight: 600; color: var(--ink-800); margin-bottom: 10px; }
.dna-card .chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.dna-card .chip {
  font-size: 12px; padding: 4px 10px; border-radius: 999px;
  background: var(--primary-50); color: var(--primary-700);
  font-weight: 500;
}
.dna-card .chip.muted { background: var(--ink-100); color: var(--ink-700); }

/* ========== Content engine post mock ========== */
.feedmock {
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--glass-shadow);
}
.feedmock-post {
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 16px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.feedmock-post.hi {
  border-color: var(--primary-100);
  box-shadow: 0 1px 2px rgba(255, 105, 108, 0.1);
}
.feedmock-post .top { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.feedmock-post .av { width: 32px; height: 32px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.feedmock-post .who .name { font-size: 13px; font-weight: 600; color: var(--ink-800); }
.feedmock-post .who .meta { font-size: 11px; color: var(--ink-500); }
.feedmock-post .body { font-size: 13px; color: var(--ink-700); line-height: 1.55; }
.feedmock-post .body mark {
  background: #FFF4CE; color: var(--ink-800);
  padding: 1px 4px; border-radius: 3px;
}
.feedmock-post .image {
  margin-top: 10px; aspect-ratio: 1.91 / 1;
  border-radius: 10px; overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-h); font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center; padding: 24px;
  font-size: 22px;
  line-height: 1.15;
}

/* Billboard mock — real photo background, brand-coloured panel + text overlay */
.feedmock-post .billboard {
  margin-top: 10px;
  aspect-ratio: 518 / 412; /* matches the source photo exactly */
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #b9c8d4;
}
.feedmock-post .billboard .bb-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Coral panel overlaid exactly where the green panel sits in the source photo
   (measured from assets/billboard.png: 518x412, panel x:17-499, y:86-308) */
.feedmock-post .billboard .bb-face {
  position: absolute;
  left: 3.3%;
  right: 3.9%;
  top: 20.9%;
  bottom: 21.1%;
  background: var(--primary, #FF696C);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4% 6%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}
.feedmock-post .billboard .bb-text {
  margin: 0;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-900, #0F172A);
  text-align: center;
  text-wrap: balance;
}
.feedmock-post .billboard .bb-accent {
  color: #FFFFFF;
  font-style: italic;
}
.feedmock-post .billboard .bb-handle {
  margin: 6px 0 0;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.02em;
  color: rgba(15, 23, 42, 0.55);
}
@media (max-width: 720px) {
  .feedmock-post .billboard .bb-text { font-size: 22px; }
  .feedmock-post .billboard .bb-handle { font-size: 8px; }
}
.feedmock-post .actions {
  display: flex; gap: 8px; margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--ink-100);
}
.feedmock-post .actions .b {
  font-size: 12px; padding: 6px 14px; border-radius: 999px;
  font-weight: 600;
}
.feedmock-post .actions .b.app { background: var(--primary); color: white; }
.feedmock-post .actions .b.ed { background: var(--ink-100); color: var(--ink-700); }
.feedmock-post .actions .b.rj { background: transparent; color: var(--ink-500); }

.notetaker-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--surface-cream);
  border: 1px dashed var(--ink-300);
  border-radius: 12px;
  font-size: 13px; color: var(--ink-600);
}
.notetaker-pill .arrow { color: var(--ink-400); }
.notetaker-pill .step { font-weight: 600; color: var(--ink-700); }

/* ========== Audience campaigns ========== */
.campaigns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.campaign-card {
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--glass-shadow);
}
.campaign-card .head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.campaign-card .pill {
  font-size: 11px; padding: 4px 10px; border-radius: 999px;
  background: var(--primary-50); color: var(--primary-700);
  font-weight: 700; letter-spacing: 0.06em;
}
.campaign-card h4 { font-size: 18px; font-weight: 600; color: var(--ink-800); }
.campaign-card .filter-row {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px;
}
.campaign-card .filter {
  font-size: 12px; padding: 5px 11px; border-radius: 8px;
  background: var(--surface-cream); border: 1px solid var(--ink-200);
  color: var(--ink-700);
}
.campaign-counter {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--ink-800); color: white;
  padding: 12px 14px; border-radius: 10px;
  font-size: 13px;
}
.campaign-counter .num { font-weight: 700; font-size: 18px; }
.engager-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink-100);
  font-size: 13px;
}
.engager-row:last-child { border-bottom: 0; }
.engager-row .av {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink-200); color: var(--ink-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}
.engager-row .info { flex: 1; }
.engager-row .info .n { font-weight: 600; color: var(--ink-800); }
.engager-row .info .ctx { font-size: 11px; color: var(--ink-500); }
.engager-row .stat {
  font-size: 11px; padding: 3px 9px; border-radius: 999px;
  background: var(--primary-50); color: var(--primary-700);
  font-weight: 600;
}

/* ========== Analytics dashboard ========== */
.analytics-grid {
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--glass-shadow);
}
.kpi-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.kpi {
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 14px;
  background: var(--surface-cream);
}
.kpi .lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 8px; }
.kpi .num { font-size: 26px; font-weight: 700; color: var(--ink-800); letter-spacing: -0.02em; line-height: 1; font-family: var(--font-h); }
.kpi .delta { font-size: 11px; color: #16A34A; margin-top: 6px; font-weight: 600; }
.kpi .delta.red { color: var(--primary-700); }

.chart-card {
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 14px;
}
.chart-card .head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px;
}
.chart-card h5 { font-size: 14px; font-weight: 600; color: var(--ink-800); }
.chart-card .legend { font-size: 11px; color: var(--ink-500); }
.chart-card svg { width: 100%; height: 110px; display: block; }

.donut-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.donut-card, .brew-card {
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 16px;
}
.donut-card h5, .brew-card h5 { font-size: 13px; font-weight: 600; color: var(--ink-800); margin-bottom: 12px; }
.brew-card .scoreline {
  display: flex; align-items: baseline; gap: 8px;
}
.brew-card .from { font-size: 14px; color: var(--ink-400); text-decoration: line-through; }
.brew-card .to { font-size: 32px; font-weight: 700; color: var(--ink-800); letter-spacing: -0.02em; font-family: var(--font-h); }
.brew-card .delta { color: #16A34A; font-weight: 700; font-size: 14px; }
.brew-card .bar {
  margin-top: 10px; height: 6px; background: var(--ink-100); border-radius: 999px; overflow: hidden;
}
.brew-card .bar > i { display: block; height: 100%; background: var(--primary); width: 73%; }
.callout {
  margin-top: 16px;
  padding: 14px 18px;
  border-left: 3px solid var(--primary);
  background: var(--primary-50);
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  color: var(--ink-800);
}
.callout strong { color: var(--primary-700); }

/* ========== Week section (timeline) ========== */
.week-flow {
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--glass-shadow);
}
.week-step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-100);
  align-items: center;
}
.week-step:last-child { border-bottom: 0; }
.week-time {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--primary-700);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.week-action {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.5;
}
.week-action em {
  font-family: var(--font-em);
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
  font-size: 16px;
}
.week-action strong { color: var(--ink-800); font-weight: 600; }
.week-coffee {
  text-align: center;
  margin-top: 28px;
  padding: 20px;
  background: var(--surface-cream);
  border-radius: 16px;
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.55;
}
.week-coffee em {
  font-family: var(--font-em);
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
  font-size: 18px;
}

.pricing-grid-single {
  grid-template-columns: minmax(0, 480px) !important;
  justify-content: center;
  max-width: none !important;
}
.pricing-grid-single .pricing-tier.featured {
  transform: none;
}

/* ========== Pricing ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}
.pricing-tier {
  position: relative;
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 12px 36px -22px rgba(15, 23, 42, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-tier.featured {
  border-color: color-mix(in srgb, var(--primary) 40%, transparent);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 24px 60px -22px color-mix(in srgb, var(--primary) 35%, transparent),
    0 0 0 1px color-mix(in srgb, var(--primary) 25%, transparent);
  transform: translateY(-8px);
  background: rgba(255,255,255,0.95);
}
.pricing-tier.muted {
  opacity: 0.78;
  background: rgba(255,255,255,0.55);
}
.pricing-tier:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 24px 48px -22px rgba(15, 23, 42, 0.22);
}
.pricing-tier.featured:hover {
  transform: translateY(-12px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 32px 70px -22px color-mix(in srgb, var(--primary) 40%, transparent),
    0 0 0 1px color-mix(in srgb, var(--primary) 30%, transparent);
}
.pricing-tier.muted:hover { opacity: 1; }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px -4px color-mix(in srgb, var(--primary) 60%, transparent);
}
.pricing-badge.soon {
  background: var(--ink-700);
  box-shadow: 0 4px 12px -4px rgba(15, 23, 42, 0.3);
}
.pricing-tier-label {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.pricing-tier.muted .pricing-tier-label { color: var(--ink-500); }
.pricing-tier-price {
  font-family: var(--font-h);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink-800);
  line-height: 1.05;
  margin-bottom: 6px;
}
.pricing-tier-price .suffix {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-500);
  letter-spacing: 0;
  margin-left: 2px;
}
.pricing-tier.muted .pricing-tier-price {
  font-size: 26px;
  color: var(--ink-600);
  font-weight: 600;
}
.pricing-tier-tag {
  font-size: 14px;
  font-style: italic;
  color: var(--ink-600);
  margin: 0 0 22px;
  line-height: 1.5;
  min-height: 42px;
}
.pricing-list {
  list-style: none; padding: 0; margin: 0 0 24px;
  text-align: left;
  flex: 1;
}
.pricing-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--ink-100);
  font-size: 14.5px;
  color: var(--ink-700);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.45;
}
.pricing-list li:last-child { border-bottom: 0; }
.pricing-list .check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary-50);
  color: var(--primary-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-tier.muted .pricing-list .check {
  background: var(--ink-100);
  color: var(--ink-500);
}
.pricing-cta-wrap { margin-top: auto; }
.pricing-cta { width: 100%; padding: 14px 22px; font-size: 15px; }
.pricing-microcopy {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--ink-500);
  text-align: center;
}

/* Ghost button for Agency tier */
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent;
  color: var(--ink-700);
  border: 1px solid var(--ink-300);
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
  font-family: inherit;
}
.btn-ghost:hover {
  border-color: var(--ink-500);
  color: var(--ink-800);
  background: rgba(255,255,255,0.5);
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; gap: 32px; }
  .pricing-tier.featured { transform: none; }
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 800px; margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--ink-200);
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-size: 18px; font-weight: 500;
  color: var(--ink-800);
  cursor: pointer; user-select: none;
  letter-spacing: -0.01em;
  text-align: left;
  background: transparent; border: 0; width: 100%;
}
.faq-q .ico {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--surface-cream);
  border: 1px solid var(--ink-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-700);
  transition: transform .25s ease, background .2s, color .2s;
  flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-q .ico {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
  font-size: 16px; color: var(--ink-600); line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 240px;
  padding: 0 0 24px 0;
}

/* ========== Founder ========== */
.founder {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px;
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
}
.founder-photo {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 78%, black) 100%);
  box-shadow: 0 12px 30px -16px rgba(15, 23, 42, 0.25);
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.founder h3 {
  font-size: clamp(28px, 3.4vw, 40px); font-weight: 600;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.founder h3 em {
  font-family: var(--font-em); font-style: italic; color: var(--primary); font-weight: 400;
}
.founder .sub {
  font-family: var(--font-em); font-style: italic;
  font-size: 19px; color: var(--ink-500);
  margin-bottom: 18px;
}
.founder p {
  font-size: 16px; color: var(--ink-700); line-height: 1.65; margin-bottom: 20px;
}
.gostraight {
  margin-top: 28px;
  text-align: center;
  padding: 32px;
  border-top: 1px solid var(--ink-200);
}
.gostraight .or {
  font-family: var(--font-em); font-style: italic;
  font-size: 32px;
  color: var(--ink-800);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.gostraight .or em { color: var(--primary); font-style: italic; }
.gostraight .meta {
  font-size: 14px; color: var(--ink-500); margin: 8px 0 18px;
}

/* ========== Footer ========== */
.sdn-footer {
  border-top: 1px solid var(--ink-200);
  background: var(--surface-cream);
  padding: 64px 0 40px;
  font-size: 14px; color: var(--ink-600);
}
.sdn-footer-grid {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.sdn-footer h6 {
  font-family: var(--font-b);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-500); font-weight: 700;
  margin-bottom: 14px;
}
.sdn-footer ul { list-style: none; padding: 0; margin: 0; }
.sdn-footer ul li { padding: 6px 0; }
.sdn-footer ul a:hover { color: var(--ink-800); }
.sdn-footer-bottom {
  border-top: 1px solid var(--ink-200);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px;
  font-size: 13px; color: var(--ink-500);
}
.sdn-footer-reg {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sdn-footer-co {
  font-size: 12px;
  color: var(--ink-500);
  max-width: 680px;
  line-height: 1.5;
}
.sdn-footer-tagline {
  font-family: var(--font-em); font-style: italic;
  font-size: 16px; color: var(--ink-700); margin-top: 8px;
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .hero-grid, .big-section, .big-section.flip {
    grid-template-columns: 1fr; gap: 48px;
  }
  .big-section.flip .copy { order: 1; }
  .big-section.flip .visual { order: 2; }
  .stats-row { grid-template-columns: 1fr; gap: 0; }
  .stat-tile { border-right: 0; border-bottom: 1px solid var(--ink-100); padding: 20px 0; }
  .stat-tile:last-child { border-bottom: 0; }
  .engines-grid-2, .engines-grid-3, .campaigns, .dna-grid, .donut-row, .kpi-row {
    grid-template-columns: 1fr;
  }
  .tried-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .founder { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .founder-photo { max-width: 200px; margin: 0 auto; }
  .sdn-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sdn-nav a:not(.sdn-nav-cta) { display: none; }
  .section { padding: 64px 0; }
  .week-step { grid-template-columns: 1fr; gap: 4px; }
}


/* ========== Scroll reveal ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-r-delay="1"] { transition-delay: 0.08s; }
.reveal[data-r-delay="2"] { transition-delay: 0.16s; }
.reveal[data-r-delay="3"] { transition-delay: 0.24s; }
.reveal[data-r-delay="4"] { transition-delay: 0.32s; }
.reveal[data-r-delay="5"] { transition-delay: 0.40s; }

/* Slow drift on hero glow */
.hero::before {
  animation: heroGlowDrift 22s ease-in-out infinite alternate;
}
@keyframes heroGlowDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-3%, 2%) scale(1.06); }
}

/* Staggered entrance for the hero scorecard rows + floating badges */
.hero-metric-row {
  opacity: 0;
  animation: heroRowIn 0.7s ease-out both;
}
@keyframes heroRowIn {
  0%   { opacity: 0; transform: translateY(10px) scale(0.94); }
  55%  { opacity: 1; transform: translateY(0) scale(1.06); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.mock-stat-anim {
  opacity: 0;
  animation: heroBadgeIn 0.6s ease-out both;
}
@keyframes heroBadgeIn {
  0%   { opacity: 0; transform: translateY(6px) scale(0.8); }
  55%  { opacity: 1; transform: translateY(0) scale(1.1); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero::before { animation: none; }
  .hero-metric-row,
  .mock-stat-anim { opacity: 1; animation: none; }
}

/* Problem section: editorial two-column split (headline left, copy right) */
.problem-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 820px) {
  .problem-split { grid-template-columns: 1fr; gap: 22px; }
}

/* The maths / ROI calculator */
.maths-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: stretch;
  max-width: 980px;
  margin: 10px auto 0;
}
.maths-panel {
  background: var(--surface-card);
  border: 1px solid var(--ink-200);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 44px -28px rgba(15,23,42,0.18);
}
.maths-result { display: flex; flex-direction: column; }
.maths-fig {
  font-size: 34px; font-weight: 800; color: var(--primary-700);
  letter-spacing: -0.02em; line-height: 1; font-variant-numeric: tabular-nums;
}
.maths-cap { font-size: 12.5px; color: var(--ink-500); margin-top: 6px; font-weight: 500; }
@media (max-width: 820px) {
  .maths-grid { grid-template-columns: 1fr; }
}

/* Before/after comparison grid (Problem section) */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) {
  .ba-grid > div { padding-left: 14px !important; padding-right: 14px !important; }
}


/* ========== Inline feature links ========== */
.inline-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: opacity 0.18s ease;
}
.inline-link:hover { opacity: 0.7; }
a.big-eyebrow {
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: opacity 0.18s ease;
}
a.big-eyebrow::after {
  content: '→';
  font-size: 14px;
  letter-spacing: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
a.big-eyebrow:hover::after { opacity: 1; transform: translateX(0); }


/* ========== Engine card link ========== */
a.engine-card.linked {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
a.engine-card.linked .engine-arrow {
  display: inline-block;
  margin-left: 4px;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-weight: 400;
}
a.engine-card.linked:hover .engine-arrow {
  opacity: 1;
  transform: translateX(0);
}


/* ========== Feature "Read more" link inside big sections ========== */
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 18px 10px 18px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  color: var(--ink-800);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 0 rgba(15,23,42,0.04);
}
.feature-link .arrow {
  font-weight: 400;
  transition: transform 0.2s ease;
}
.feature-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -10px color-mix(in srgb, var(--primary) 50%, transparent);
}
.feature-link:hover .arrow { transform: translateX(3px); }


/* ========== Hero CTA stack (vertical) ========== */
.hero-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.hero-cta-stack .btn-primary {
  font-size: 16px;
  padding: 16px 28px;
}
.hero-microcopy-inline {
  margin: 0;
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.5;
}
.hero-secondary-link {
  margin-top: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.hero-secondary-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}


/* FREE tier "No card needed." styled as a tagline rather than a price */
.pricing-tier-price.tagline {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink-800);
  letter-spacing: -0.02em;
  line-height: 1.2;
}


/* ========== Proof Section: live LinkedIn post ========== */
.proof-section {
  background:
    radial-gradient(ellipse 900px 500px at 50% 0%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 70%),
    linear-gradient(180deg, #2A2522 0%, #221E1B 100%);
  padding: 96px 0 88px;
  color: rgba(255,255,255,0.9);
}
.proof-section .proof-title { color: #FAF7F2; }
.proof-section .proof-sub { color: rgba(250, 247, 242, 0.72); }
.proof-section .bridge { color: rgba(250, 247, 242, 0.5); }
.proof-section .bridge em { color: rgba(250, 247, 242, 0.85); }
.proof-section .bridge .bridge-lead { color: rgba(250, 247, 242, 0.5); }
.proof-section .bridge .bridge-next { color: rgba(250, 247, 242, 0.7); }
.proof-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.proof-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.proof-title {
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.proof-title em {
  font-family: var(--font-em);
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}
.proof-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-600);
  max-width: 560px;
  margin: 0 auto;
}

.proof-stage {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 0;
}

/* floating chips */
.proof-chip {
  position: absolute;
  background: var(--surface-card);
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 32px -12px rgba(15, 23, 42, 0.18);
  z-index: 2;
  min-width: 152px;
}
.proof-chip-num {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.proof-chip-lbl {
  font-size: 12px;
  color: var(--ink-600);
  line-height: 1.35;
}
.proof-chip-tl { top: 4px; left: -200px; transform: rotate(-3deg); }
.proof-chip-tr { top: 36px; right: -200px; transform: rotate(2.5deg); }
.proof-chip-bl { bottom: 24px; left: -180px; transform: rotate(2deg); }

@media (max-width: 1100px) {
  .proof-chip-tl { left: -16px; top: -28px; }
  .proof-chip-tr { right: -16px; top: -16px; }
  .proof-chip-bl { left: -16px; bottom: -16px; }
}
@media (max-width: 720px) {
  .proof-chip { display: none; }
}

/* the LinkedIn post card */
.li-post {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  padding: 16px 16px 0;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 24px 60px -20px rgba(15, 23, 42, 0.22);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  z-index: 1;
}
.li-post-head {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}
.li-post-av {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
  color: white;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.li-post-who {
  flex: 1;
  min-width: 0;
}
.li-post-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0,0,0,0.9);
  line-height: 1.3;
}
.li-post-pron {
  font-weight: 400;
  color: rgba(0,0,0,0.6);
  font-size: 13px;
}
.li-post-tag {
  font-size: 12px;
  color: rgba(0,0,0,0.6);
  line-height: 1.35;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.li-post-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(0,0,0,0.6);
  margin-top: 1px;
}
.li-post-globe {
  display: inline-flex;
  color: rgba(0,0,0,0.6);
}
.li-post-more {
  background: none;
  border: 0;
  color: rgba(0,0,0,0.6);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.li-post-more:hover { background: rgba(0,0,0,0.04); }

.li-post-body {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0,0,0,0.9);
  margin-bottom: 12px;
}
.li-post-body p { margin: 0 0 8px; }
.li-post-body p:last-of-type { margin-bottom: 4px; }
.li-post-body strong { font-weight: 600; }
.li-post-mark {
  background: color-mix(in srgb, var(--primary) 22%, transparent);
  padding: 0 4px;
  border-radius: 3px;
  font-weight: 600;
}
.li-post-seemore {
  background: none;
  border: 0;
  color: rgba(0,0,0,0.6);
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.li-post-seemore:hover { color: #0a66c2; text-decoration: underline; }

.li-post-reactions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(0,0,0,0.6);
  padding: 8px 0 6px;
}
.li-post-reax {
  display: flex;
  align-items: center;
  gap: 6px;
}
.li-reax {
  width: 16px; height: 16px;
  border-radius: 50%;
  display: inline-flex;
  border: 1.5px solid var(--surface-card);
}
.li-reax svg { width: 100%; height: 100%; display: block; border-radius: 50%; }
.li-reax-1 { z-index: 3; }
.li-reax-2 { margin-left: -6px; z-index: 2; }
.li-reax-3 { margin-left: -6px; z-index: 1; }
.li-reax-count { font-size: 12px; color: rgba(0,0,0,0.6); }
.li-post-counts { display: flex; gap: 4px; }
.li-post-counts span:hover:not([aria-hidden]) { color: #0a66c2; cursor: pointer; }

.li-post-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 0 -16px;
}
.li-post-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 4px 0;
}
.li-post-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
  border: 0;
  padding: 12px 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0,0,0,0.6);
  cursor: pointer;
  border-radius: 4px;
}
.li-post-action:hover { background: rgba(0,0,0,0.06); }
.li-post-action svg { stroke: currentColor; }

/* the standout impressions chip */
.li-post-impressions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  bottom: -16px;
  right: 16px;
  background: var(--primary);
  color: var(--ink-900);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-b);
  box-shadow: 0 8px 24px -8px color-mix(in srgb, var(--primary) 60%, transparent);
}
.li-post-impressions strong {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.li-post-impressions span { color: color-mix(in srgb, var(--ink-900) 70%, transparent); }
.li-post-impressions-icon { display: inline-flex; color: var(--ink-900); }


/* ========== Integrations strip (Content Engine) ========== */
.integrations {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-200);
}
.integrations-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 14px;
}
.integrations-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  color: var(--ink-700);
}
.integration-logo {
  display: inline-flex;
  align-items: center;
  height: 22px;
  opacity: 0.75;
  transition: opacity .2s ease, color .2s ease;
}
.integration-logo:hover {
  opacity: 1;
  color: var(--primary-700);
}
.integration-logo svg {
  height: 22px;
  width: auto;
  display: block;
}


/* ========== Pricing additions: trial note, items heading, mobile order ========== */
.pricing-trial-note {
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 500;
  margin: -2px 0 4px;
  letter-spacing: 0.01em;
}
.pricing-items-heading {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

/* Mobile stack order: Growth Engine first, Audit second, Agency third */
@media (max-width: 1024px) {
  .pricing-tier[data-key="pro"]    { order: 1; }
  .pricing-tier[data-key="free"]   { order: 2; }
  .pricing-tier[data-key="agency"] { order: 3; }
}


/* ========== 360Brew explainer bar (homepage) ========== */
.brew-bar {
  padding: 56px 0;
  background: var(--surface-dark);
  color: white;
  position: relative;
  overflow: hidden;
}
.brew-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 50%,
      color-mix(in srgb, var(--primary) 40%, transparent) 0%,
      transparent 45%),
    radial-gradient(circle at 88% 30%,
      color-mix(in srgb, var(--primary) 18%, transparent) 0%,
      transparent 55%);
  pointer-events: none;
}
.brew-bar > * { position: relative; z-index: 1; }
.brew-bar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.brew-bar-mark {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 16px;
  background: color-mix(in srgb, var(--primary) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 28%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.brew-bar-mark::before {
  /* compass-ring echo from the system glyph */
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.brew-bar-mark .num {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--primary);
  position: relative;
  z-index: 1;
}
.brew-bar-text .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brew-bar-text .eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}
.brew-bar-text h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: white;
  margin: 0 0 6px;
}
.brew-bar-text h3 em {
  font-family: var(--font-em);
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}
.brew-bar-text p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 60ch;
}
.brew-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--ink-900);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 8px 20px -10px rgba(0,0,0,0.4);
}
.brew-bar-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -10px rgba(0,0,0,0.5);
}
.brew-bar-cta .arr {
  transition: transform 0.18s ease;
}
.brew-bar-cta:hover .arr { transform: translateX(3px); }

@media (max-width: 880px) {
  .brew-bar-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
  }
  .brew-bar-mark { width: 52px; height: 52px; }
  .brew-bar-cta { justify-self: start; }
}
.engine-card .ico-illus {
  position: static;
  width: 56px;
  height: 56px;
  background: transparent;
  border: 0;
  box-shadow: 0 0 0 0 transparent;
  padding: 0;
  margin: 0 0 18px;
  display: block;
  top: auto;
  right: auto;
}
.engine-card .ico-illus svg {
  width: 100%;
  height: 100%;
  display: block;
}
