/* =========================================================
   Narada landing — light theme
   Tokens mirror the macOS app design system
   ========================================================= */

:root {
  /* Brand */
  --accent: #7C5CFC;
  --accent-deep: #5B3EC4;
  --accent-light: #9B7FE6;
  --accent-ultra: #EDE9FE;
  --accent-grad: linear-gradient(135deg, #5B3EC4 0%, #7C5CFC 50%, #9B7FE6 100%);
  --accent-grad-soft: linear-gradient(135deg, #EDE9FE 0%, #F5F1FF 100%);

  /* Surface */
  --bg: #FAFAFB;
  --bg-warm: #F7F6F3;
  --surface: #FFFFFF;
  --surface-dim: #F4F4F7;
  --surface-2: #F0EFF3;
  --line: #E7E6EC;
  --line-soft: #EFEEF3;

  /* Text */
  --ink: #14131A;
  --ink-2: #2A2832;
  --ink-3: #5A5868;
  --ink-4: #8E8C99;
  --ink-5: #B5B3C0;

  /* Semantic */
  --green: #10B981;
  --green-bg: #DDF6E8;
  --green-ink: #047857;
  --amber: #F59E0B;
  --amber-bg: #FCEEC8;
  --amber-ink: #92400E;
  --red: #EF4444;

  /* Layout */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --container: 1200px;

  /* Type */
  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;

  /* Shadow */
  --sh-card: 0 1px 0 rgba(20,19,26,0.04), 0 24px 50px -22px rgba(20,19,26,0.10);
  --sh-soft: 0 1px 0 rgba(20,19,26,0.03), 0 12px 28px -16px rgba(20,19,26,0.08);
  --sh-elev: 0 22px 50px -10px rgba(20,19,26,0.18), 0 8px 20px -4px rgba(20,19,26,0.10);
  --sh-press: 0 1px 0 rgba(20,19,26,0.06), inset 0 1px 0 rgba(255,255,255,0.7);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; padding: 0; color: inherit; }
img { display: block; max-width: 100%; }
em { font-style: normal; color: var(--accent); font-weight: 500; }
.mono { font-family: var(--font-mono); font-feature-settings: "tnum"; }
.muted { color: var(--ink-3); }
.small { font-size: 13px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease, color 150ms ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn i { font-size: 15px; line-height: 1; }
.btn-meta {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.7;
  margin-left: 4px;
  border-left: 1px solid currentColor;
  padding-left: 8px;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--sh-press), 0 8px 18px -8px rgba(20,19,26,0.5);
}
.btn-primary:hover { background: #25232E; }
.btn-ghost {
  background: rgba(20,19,26,0.04);
  color: var(--ink);
}
.btn-ghost:hover { background: rgba(20,19,26,0.08); }
.btn-lg { padding: 14px 22px; font-size: 15px; border-radius: 999px; }
.btn-lg i { font-size: 17px; }
.btn-block { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 500;
  font-size: 14px;
}
.link-arrow i { font-size: 13px; transition: transform 150ms ease; }
.link-arrow:hover i { transform: translate(2px, -2px); }

/* =========================================================
   Type
   ========================================================= */

.h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 14px;
  color: var(--ink);
}
.h3 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.lead {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 60ch;
  margin: 0 0 12px;
}
.eyecaption {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.eyecaption::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

/* =========================================================
   Nav
   ========================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(250,250,251,0.7);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line-soft);
  background: rgba(250,250,251,0.92);
}
.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  display: inline-block;
  flex: 0 0 32px;
  background: var(--accent-deep);
  box-shadow: 0 4px 12px -4px rgba(124, 92, 252, 0.45), inset 0 1px 0 rgba(255,255,255,0.18);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-word {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  justify-self: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  transition: color 120ms ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: inline-flex; align-items: center; gap: 10px; }

/* =========================================================
   HERO
   ========================================================= */

/* Full-bleed image hero — content extends behind the (sticky) nav. */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  margin-top: -64px;
  padding: 96px 0 60px;
  background: #1B1140;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-bg.webp");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 8, 40, 0.78) 0%, rgba(15, 8, 40, 0.45) 35%, rgba(15, 8, 40, 0.15) 70%, transparent 100%),
    linear-gradient(180deg, rgba(15, 8, 40, 0.50) 0%, transparent 30%, rgba(15, 8, 40, 0.30) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}
.kicker-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.22);
  animation: pulse-soft 2.4s ease-in-out infinite;
}
@keyframes pulse-soft {
  0%, 100% { box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.22); }
  50%      { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.08); }
}

.hero-title {
  font-size: clamp(40px, 6.4vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: #fff;
  margin: 0 0 22px;
  max-width: 14ch;
  text-shadow: 0 2px 12px rgba(15, 8, 40, 0.35);
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, #E0D4FF 0%, #FFFFFF 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
  margin: 0 0 32px;
  text-shadow: 0 1px 6px rgba(15, 8, 40, 0.30);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}
.hero-chips i {
  font-size: 13px;
  color: #D6C5FF;
}

/* CTA on dark hero — invert button to read against the image */
.hero .btn-primary {
  background: #fff;
  color: var(--ink);
  box-shadow:
    0 14px 32px -10px rgba(15, 8, 40, 0.55),
    0 4px 10px -2px rgba(15, 8, 40, 0.30);
}
.hero .btn-primary:hover { background: #F4F2FA; }
.hero .btn-meta { opacity: 0.55; }

@media (max-width: 820px) {
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-title { max-width: 20ch; }
}

/* =========================================================
   MEETING LOAD section
   ========================================================= */

.load {
  padding: 90px 0 100px;
  background: var(--surface-dim);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.load-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}
.load-head .eyecaption { display: inline-block; }
.load-head .h2 { margin: 14px 0 14px; }
.load-head .lead { color: var(--ink-3); margin: 0 auto; }

.load-toggle {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
  font-size: 13px;
  color: var(--ink-2);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.load-toggle:hover { border-color: var(--accent-light); }
.load-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.load-toggle-track {
  position: relative;
  width: 34px;
  height: 20px;
  background: var(--ink-5);
  border-radius: 999px;
  transition: background 180ms ease;
  flex: 0 0 34px;
}
.load-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
  transition: transform 180ms ease;
}
.load-toggle input:checked + .load-toggle-track { background: var(--accent); }
.load-toggle input:checked + .load-toggle-track .load-toggle-thumb { transform: translateX(14px); }
.load-toggle-label { font-weight: 500; color: var(--ink); }
.load-toggle-hint { color: var(--ink-4); font-size: 12px; }

.load-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.load-stat {
  flex: 1 1 0;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 124px;
  overflow: hidden;
  transition:
    flex-grow 420ms cubic-bezier(.4,0,.2,1),
    max-width 420ms cubic-bezier(.4,0,.2,1),
    padding 420ms cubic-bezier(.4,0,.2,1),
    margin-right 420ms cubic-bezier(.4,0,.2,1),
    opacity 260ms ease;
  max-width: 100%;
}
.load-stat-ctx { white-space: nowrap; }
.load.ctx-off .load-stat-ctx {
  flex: 0 0 0;
  max-width: 0;
  padding-left: 0;
  padding-right: 0;
  margin-right: -16px;
  opacity: 0;
  pointer-events: none;
}
.load-stat-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
}
.load-stat-head i { font-size: 14px; }
.load-stat-value {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.6px;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  line-height: 1.05;
}
.load-stat-detail { font-size: 12px; color: var(--ink-4); }

.load-stat-accent {
  background: var(--accent-grad);
  border-color: transparent;
  color: #fff;
}
.load-stat-accent .load-stat-head { color: rgba(255,255,255,0.85); }
.load-stat-accent .load-stat-value { color: #fff; }
.load-stat-accent .load-stat-detail { color: rgba(255,255,255,0.78); }

.load-stat-green {
  background: var(--green-bg);
  border-color: transparent;
}
.load-stat-green .load-stat-head { color: var(--green-ink); }
.load-stat-green .load-stat-value { color: var(--green-ink); }
.load-stat-green .load-stat-detail { color: var(--green-ink); opacity: 0.75; }

.load-stat-amber {
  background: var(--amber-bg);
  border-color: transparent;
}
.load-stat-amber .load-stat-head { color: var(--amber-ink); }
.load-stat-amber .load-stat-value { color: var(--amber-ink); }
.load-stat-amber .load-stat-detail { color: var(--amber-ink); opacity: 0.78; }

/* Real-work value/detail crossfade based on toggle */
.load-stat-green .load-stat-value,
.load-stat-green .load-stat-detail {
  display: grid;
}
.load-stat-green .load-stat-value > *,
.load-stat-green .load-stat-detail > * {
  grid-column: 1;
  grid-row: 1;
  transition: opacity 260ms ease;
}
.load .load-rw-off { opacity: 0; pointer-events: none; }
.load.ctx-off .load-rw-on { opacity: 0; pointer-events: none; }
.load.ctx-off .load-rw-off { opacity: 1; pointer-events: auto; }

/* Timeline */
.load-timeline {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 24px 18px;
  box-shadow: var(--sh-soft);
}
.lt-times { display: flex; align-items: center; margin-bottom: 10px; }
.lt-times-spacer { width: 92px; flex: 0 0 92px; }
.lt-times-track {
  flex: 1;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ink-4);
  font-variant-numeric: tabular-nums;
}
.lt-lanes {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lt-row { display: flex; align-items: center; }
.lt-label {
  width: 92px;
  flex: 0 0 92px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
}
.lt-track {
  flex: 1;
  position: relative;
  background: var(--line-soft);
  border-radius: 8px;
  height: 18px;
}
.lt-track-tall { height: 28px; }
.lt-block {
  position: absolute;
  top: 0; bottom: 0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lt-block-meeting { background: var(--accent); }
.lt-block-ctx-pre  { background: rgba(245,158,11,0.55); border-radius: 4px; }
.lt-block-ctx-post { background: rgba(245,158,11,0.78); border-radius: 4px; }
.lt-block-free     {
  background: rgba(16,185,129,0.45);
  border-radius: 4px;
  transition: opacity 320ms ease, left 420ms cubic-bezier(.4,0,.2,1), width 420ms cubic-bezier(.4,0,.2,1);
}
/* Two layouts for the free row, crossfaded by toggle. Default = ctx on (tight). */
.lt-block-free-wide { opacity: 0; pointer-events: none; }
.load.ctx-off .lt-block-free-tight { opacity: 0; pointer-events: none; }
.load.ctx-off .lt-block-free-wide { opacity: 1; pointer-events: auto; }
.lt-block-ctx-pre, .lt-block-ctx-post {
  transition: opacity 220ms ease;
}
.load.ctx-off .lt-block-ctx-pre,
.load.ctx-off .lt-block-ctx-post { opacity: 0; }

.lt-now {
  position: absolute;
  top: -4px; bottom: -4px;
  width: 2px;
  background: rgba(239,68,68,0.5);
  margin-left: 92px;
  pointer-events: none;
}
.lt-now::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 8px; height: 8px;
  background: #EF4444;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(239,68,68,0.5);
}

.lt-legend {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 14px;
  margin-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--ink-3);
}
.ll-dot { display: inline-flex; align-items: center; gap: 6px; }
.ll-d { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.ll-d-accent  { background: var(--accent); }
.ll-d-warning { background: var(--amber); }
.ll-d-success { background: var(--green); }
.lt-now-label { margin-left: auto; color: var(--ink-2); font-weight: 500; }
.lt-now-time { color: var(--accent); font-variant-numeric: tabular-nums; margin-left: 4px; }

/* Toggle off — collapse ctx row from timeline (animated) */
.lt-row-ctx {
  overflow: hidden;
  max-height: 28px;
  opacity: 1;
  transition:
    max-height 360ms cubic-bezier(.4,0,.2,1),
    opacity 220ms ease,
    margin-top 360ms cubic-bezier(.4,0,.2,1);
}
.load.ctx-off .lt-row-ctx {
  max-height: 0;
  opacity: 0;
  margin-top: -8px;
  pointer-events: none;
}
.lt-legend-ctx {
  overflow: hidden;
  max-width: 260px;
  opacity: 1;
  white-space: nowrap;
  transition: opacity 220ms ease, max-width 320ms cubic-bezier(.4,0,.2,1), margin-right 320ms cubic-bezier(.4,0,.2,1);
}
.load.ctx-off .lt-legend-ctx {
  opacity: 0;
  max-width: 0;
  margin-right: -18px;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
  .load { padding: 70px 0 80px; }
  .load-stats { grid-template-columns: 1fr; }
  .load.ctx-off .load-stats { grid-template-columns: 1fr; }
  .lt-label, .lt-times-spacer { width: 70px; flex-basis: 70px; }
  .lt-now { margin-left: 70px; }
  .lt-times-track { font-size: 10px; }
}

/* =========================================================
   PRE-MEETING BRIEFS section
   Cards ported 1:1 from the live demo (.mc / .mc-row / .mc-brief-body)
   with landing color tokens.
   ========================================================= */

.briefs,
.chat-sec,
.fu-sec {
  padding: 100px 0 110px;
  background: var(--surface);
}
/* Mock-chat / mock-followups sit inside the right column of briefs-grid */
.chat-pane,
.fu-pane { min-width: 0; }
.chat-pane .mock-chat,
.fu-pane .mock-followups { margin-bottom: 0; }
.briefs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 56px;
  align-items: start;
}
.briefs-head {
  position: sticky;
  top: 88px;
}
.briefs-head .h2 { margin: 14px 0 16px; }
.briefs-head .lead { color: var(--ink-3); margin: 0 0 18px; }
.briefs-note {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-4);
  margin: 0;
}

.briefs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 4px 9px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.mc.has-brief:hover,
.mc.is-expanded {
  border-color: var(--accent-light);
  box-shadow: 0 7px 14px rgba(0,0,0,0.06);
}
.mc.has-brief .mc-row { cursor: pointer; }

.mc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}
.mc-time {
  width: 70px;
  flex: 0 0 70px;
  height: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}
.mc-time-start {
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.mc-time-dur {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-4);
}

.mc-divider {
  width: 3px;
  height: 38px;
  border-radius: 2px;
  background: var(--accent);
  flex: 0 0 3px;
}

.mc-body { min-width: 0; flex: 1; }
.mc-title-row { display: flex; align-items: center; gap: 8px; min-width: 0; }
.mc-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 0 1 auto;
}
.mc-brief-pill {
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  background: var(--accent);
  padding: 3px 9px;
  border-radius: 16px;
  flex: 0 0 auto;
}
.mc-meta {
  font-size: 12px;
  color: var(--ink-4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

/* Brief body — animated expand via grid-template-rows */
.mc-brief-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms cubic-bezier(.4,0,.2,1);
}
.mc-brief-inner {
  overflow: hidden;
  min-height: 0;
}
.mc.is-expanded .mc-brief-body { grid-template-rows: 1fr; }
.mc-brief-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  white-space: pre-wrap;
  background: var(--surface-dim);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 2px 14px 14px;
}

@media (max-width: 900px) {
  .briefs { padding: 70px 0 80px; }
  .briefs-grid { grid-template-columns: 1fr; gap: 28px; }
  .briefs-head { position: static; }
  .mc-time { width: 60px; flex-basis: 60px; }
}

/* =========================================================
   RECORDING DETAIL section
   .dt-* markup + styles ported 1:1 from site/live-demo
   (site/live-demo/styles.css:2555-3033). Local token aliases
   below let the live-demo CSS resolve against landing colors.
   ========================================================= */

.recview {
  padding: 100px 0;
  background: var(--surface-dim);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  --text-primary: var(--ink);
  --text-secondary: var(--ink-2);
  --text-tertiary: var(--ink-4);
  --border: var(--line);
  --surface-bg: #F8F8FA;
  --danger: #EF4444;
  --r-sm: 8px;
  --r-lg: 12px;
}
.recview-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.recview-head .h2 { margin: 14px 0 14px; }
.recview-head .lead { color: var(--ink-3); margin: 0; }

.recview-frame {
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 26px 60px -10px rgba(28, 18, 58, 0.18),
    0 8px 22px -4px rgba(28, 18, 58, 0.08),
    inset 0 0 0 0.5px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* === Ported verbatim from live-demo ===================== */
.recview .dt-content {
  padding: 28px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 0;
}

.dt-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.dt-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 0 0 6px;
  color: var(--text-primary);
}
.dt-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
}
.dt-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.dt-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 100ms ease;
}
.dt-action:hover { background: rgba(0,0,0,0.025); }
.dt-action i { font-size: 12px; }
.dt-action-regen {
  background: var(--accent-ultra);
  border-color: transparent;
  color: var(--accent);
}
.dt-action-regen:hover { background: rgba(124,92,252,0.18); }
.dt-action-delete {
  background: rgba(239,68,68,0.08);
  border-color: transparent;
  color: var(--danger);
}
.dt-action-delete:hover { background: rgba(239,68,68,0.14); }

.dt-row-top {
  display: grid;
  grid-template-columns: minmax(280px, 33%) 1fr;
  gap: 16px;
  align-items: stretch;
}
.dt-relevance {
  background: var(--accent-grad);
  color: #fff;
  padding: 18px 20px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 160px;
}
.dt-relevance-head {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.dt-relevance-value {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
}
.dt-relevance-bar {
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 999px;
  overflow: hidden;
}
.dt-relevance-bar-fill {
  height: 100%;
  background: rgba(255,255,255,0.85);
  border-radius: 999px;
}
.dt-relevance-detail {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-top: auto;
}

.dt-summary {
  background: var(--surface-bg);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 160px;
}
.dt-summary-label {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-tertiary);
}
.dt-summary-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-primary);
}

.dt-timeline {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dt-timeline-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.dt-timeline-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}
.dt-timeline-time {
  font-size: 12px;
  color: var(--text-tertiary);
  font-variant-numeric: tabular-nums;
}
.dt-timeline-active-pill {
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
}
.dt-timeline-legend {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--text-secondary);
}
.dt-timeline-legend-dot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.dt-timeline-legend-dot::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.dt-leg-off    { color: rgba(0,0,0,0.18); }
.dt-leg-ctx    { color: rgba(124,92,252,0.4); }
.dt-leg-rel    { color: var(--accent-light); }
.dt-leg-core   { color: var(--accent); }
.dt-timeline-speed {
  background: var(--accent-ultra);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

.dt-timeline-strip {
  display: flex;
  align-items: stretch;
  gap: 14px;
}
.dt-timeline-play {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  /* Center with the segment bars (segments has padding-bottom: 22px for the
     axis). Bars take the top 42px; play (44px) sits at -1px so its center
     aligns with the bar midline, not the strip+axis midline. */
  align-self: flex-start;
  margin-top: -1px;
  cursor: pointer;
  border: 0;
}
.dt-timeline-play:hover { filter: brightness(1.05); }

.dt-timeline-segments {
  flex: 1;
  display: flex;
  align-items: stretch;
  gap: 4px;
  position: relative;
  padding-bottom: 22px;
  min-height: 64px;
}
.dt-timeline-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  min-width: 0;
  cursor: pointer;
  transition: filter 100ms ease;
  overflow: hidden;
}
.dt-timeline-segment:hover { filter: brightness(1.05); }
.dt-seg-label {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.2;
  max-width: 100%;
  word-break: break-word;
}
.dt-segment-core    { background: var(--accent); }
.dt-segment-related { background: var(--accent-light); }
.dt-segment-context { background: rgba(124,92,252,0.4); color: rgba(255,255,255,0.95); }
.dt-segment-offtopic{ background: rgba(0,0,0,0.12); color: var(--text-secondary); }

.dt-timeline-axis {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-tertiary);
  font-variant-numeric: tabular-nums;
}

.dt-playhead {
  position: absolute;
  top: -10px;
  bottom: 22px;
  width: 2px;
  background: rgba(0,0,0,0.85);
  pointer-events: none;
  transform: translateX(-1px);
  z-index: 2;
}
.dt-playhead::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(0,0,0,0.85);
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.dt-row-bottom {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.dt-transcript {
  background: var(--surface-bg);
  border-radius: var(--r-lg);
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
}
.dt-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.dt-section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}
.dt-transcript-copy {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  background: transparent;
  border: 0;
}
.dt-transcript-copy:hover { background: rgba(0,0,0,0.04); }

.dt-transcript-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 4px;
}
.dt-line {
  display: flex;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  position: relative;
}
.dt-line-highlighted { background: var(--accent-ultra); }
.dt-line-flat        { background: transparent; padding-left: 12px; }
.dt-line-flat .dt-line-bar { background: transparent; }
.dt-line-bar {
  width: 2px;
  border-radius: 1px;
  background: var(--accent);
  flex: 0 0 2px;
}
.dt-line-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.dt-line-head { display: flex; align-items: baseline; gap: 8px; }
.dt-time {
  font-size: 11px;
  color: var(--text-tertiary);
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  flex: 0 0 auto;
}
.dt-speaker {
  font-size: 13px;
  font-weight: 600;
}
.dt-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-primary);
}
.dt-speaker-ivan    { color: #F97316; }
.dt-speaker-maya    { color: #14B8A6; }
.dt-speaker-daniel  { color: #6366F1; }
.dt-speaker-hannah  { color: #EC4899; }
.dt-speaker-loom    { color: #0EA5E9; }
.dt-line-bar-ivan    { background: #F97316; }
.dt-line-bar-maya    { background: #14B8A6; }
.dt-line-bar-daniel  { background: #6366F1; }
.dt-line-bar-hannah  { background: #EC4899; }
.dt-line-bar-loom    { background: #0EA5E9; }

.dt-actions-pane {
  background: var(--surface-bg);
  border-radius: var(--r-lg);
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dt-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.7);
  border-radius: 6px;
  padding: 2px;
  font-size: 11px;
}
.dt-toggle button {
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  background: transparent;
  border: 0;
}
.dt-toggle button.is-active {
  background: #fff;
  color: var(--text-primary);
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.dt-action-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dt-action-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-primary);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.dt-action-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 6px;
  margin-top: 7px;
}

.dt-key-decisions {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dt-key-decisions-block {
  display: flex;
  gap: 12px;
  padding: 4px 0;
}
.dt-key-decisions-bar {
  width: 2px;
  background: var(--accent);
  border-radius: 1px;
  flex: 0 0 2px;
  align-self: stretch;
}
.dt-key-decisions-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-primary);
  flex: 1;
  min-width: 0;
}

@media (max-width: 1100px) {
  .dt-row-top, .dt-row-bottom { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .recview { padding: 70px 0; }
  .recview .dt-content { padding: 20px 20px 28px; }
  .dt-actions { flex-wrap: wrap; }
  .dt-timeline-legend { display: none; }
}

/* =========================================================
   LANGUAGES section
   ========================================================= */

.langs {
  padding: 100px 0;
  background: var(--surface-dim);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.langs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 56px;
  align-items: start;
}
.langs-head {
  position: sticky;
  top: 88px;
}
.langs-head .h2 { margin: 14px 0 16px; }
.langs-head .lead { color: var(--ink-3); margin: 0 0 18px; }
.langs-note {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-4);
  margin: 0;
}

.langs-chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.lang-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 160ms ease, transform 160ms ease;
}
.lang-chip:hover {
  border-color: var(--accent-light);
  transform: translateY(-1px);
}
.lang-flag {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

@media (max-width: 900px) {
  .langs { padding: 70px 0; }
  .langs-grid { grid-template-columns: 1fr; gap: 28px; }
  .langs-head { position: static; }
  .langs-chips { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}

/* =========================================================
   WORKS ANYWHERE (marquee strip)
   ========================================================= */

/* Marquee tucked at the bottom of the Anti-bot Story section */
.story-marquee {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.story-marquee-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.story-marquee-label i { font-size: 11px; color: var(--accent); }
.story-marquee-label kbd {
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--surface-card);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 1px 5px;
  color: var(--ink-3);
  text-transform: none;
  margin: 0 1px;
}
.story-marquee-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.story-marquee .marquee { margin: 0; }

.anywhere {
  padding: 70px 0 80px;
  background: var(--surface);
  position: relative;
}
.anywhere-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.anywhere-head .h2 { margin: 14px 0 14px; }
.anywhere-head .lead { color: var(--ink-3); margin: 0; }

.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marquee-scroll 56s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.mq-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  transition: border-color 160ms ease, transform 160ms ease;
}
.mq-logo:hover {
  border-color: var(--accent-light);
  transform: translateY(-1px);
}
.mq-logo img {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 20px;
}
.mq-sep {
  display: inline-block;
  width: 1px;
  height: 28px;
  background: var(--line);
  flex: 0 0 1px;
}
@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* =========================================================
   BRING YOUR OWN AI section
   ========================================================= */

.byo {
  padding: 100px 0;
  background: var(--surface);
}
.byo-block {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.byo-shield {
  display: block;
  width: 260px;
  height: 260px;
  filter: drop-shadow(0 26px 56px rgba(124,92,252,0.32));
  user-select: none;
  pointer-events: none;
}
.byo-copy .h2 { margin: 14px 0 18px; }
.byo-copy .lead { color: var(--ink-3); margin: 0; }

@media (max-width: 900px) {
  .byo { padding: 70px 0; }
  .byo-block {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    justify-items: center;
  }
  .byo-shield { width: 180px; height: 180px; }
}

/* =========================================================
   STORY (anti-bot)
   ========================================================= */

.story {
  padding: 110px 0 80px;
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.story-points {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.story-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
}
.story-x, .story-check {
  width: 24px; height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  margin-top: 1px;
}
.story-x { background: rgba(239,68,68,0.18); color: var(--red); }
.story-check { background: rgba(16,185,129,0.18); color: var(--green); }
.story-points strong { font-weight: 600; font-size: 14px; color: var(--ink); }
.story-points .muted { font-size: 13px; line-height: 1.5; }

/* Story art - faux Meet call */
.story-art {
  position: relative;
  perspective: 1400px;
}
.story-meet {
  background: #1F2024;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sh-elev);
  transform: rotateY(-3deg) rotateX(2deg);
  position: relative;
}
.story-meet-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 36px;
  background: #2A2B30;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.meet-dots { display: inline-flex; gap: 6px; }
.meet-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.meet-dots span:nth-child(1) { background: #FF5F57; }
.meet-dots span:nth-child(2) { background: #FEBC2E; }
.meet-dots span:nth-child(3) { background: #28C840; }
.meet-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 26px;
  padding: 0 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 11.5px;
}
.meet-tab i { font-size: 12px; color: #1A73E8; }
.story-meet-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 14px;
  height: 280px;
}
.story-tile {
  position: relative;
  background: #2A2B30;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid transparent;
}
.story-tile.speaking { border-color: #8AB4F8; box-shadow: 0 0 0 1px rgba(138,180,248,0.4); }
.tile-init {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.tile-name {
  position: absolute;
  left: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  background: rgba(20,20,24,0.7);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
}
.tile-talking {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34A853;
  box-shadow: 0 0 0 2px rgba(52,168,83,0.25);
  animation: meet-talking-pulse 0.9s ease-in-out infinite;
}
@keyframes meet-talking-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.25); }
}
.story-meet-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 14px;
  background: #1F2024;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.foot-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}
.foot-pill i { color: #34A853; font-size: 12px; }
.foot-controls { display: inline-flex; gap: 6px; }
.foot-btn, .foot-leave {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}
.foot-leave {
  background: #EA4335;
  color: #fff;
  width: 36px;
  border-radius: 999px;
  padding: 0 12px;
}

.story-noBot {
  position: absolute;
  top: 14px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(16,185,129,0.16);
  color: #34A853;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(16,185,129,0.35);
}

.story-rec {
  position: absolute;
  right: -28px;
  bottom: -20px;
  z-index: 2;
  width: 240px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--sh-elev);
  transform: rotate(2deg);
  animation: drift-1 7s ease-in-out infinite;
}
.story-rec-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; color: var(--ink);
  margin-bottom: 6px;
}
.story-rec-time {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.story-rec-meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 6px;
}
.story-rec-meta i { color: var(--accent); }

/* =========================================================
   FEATURES BENTO
   ========================================================= */

.features {
  padding: 110px 0;
  background: var(--surface);
}
.features-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.features-head .lead { color: var(--ink-3); }

.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: minmax(0, auto);
  gap: 72px;
  grid-template-areas:
    "chat chat chat"
    "followups followups followups";
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.bento-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-card);
  border-color: var(--accent-light);
}
.bento-card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 28px 0;
  gap: 20px;
}
.bento-card-text { flex: 0 0 auto; }
.bento-card-text .h3 { font-size: 22px; }
.bento-card-text .muted { font-size: 14px; line-height: 1.55; }
.bento-card-art {
  margin: 0 -28px;
  margin-top: auto;
  padding: 12px 28px 0;
  flex: 1;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

/* Specific bento areas */
.bento-summary { grid-area: summary; min-height: 480px; }
.bento-chat { grid-area: chat; min-height: 360px; }

/* Chat + Follow-ups read as section rows, not cards — matches the briefs look.
   These rules must come AFTER .bento-card { background, border, border-radius }
   to win the cascade (same specificity, later source order). */
.bento-chat,
.bento-followups {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.bento-chat:hover,
.bento-followups:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}
.bento-chat .bento-card-body,
.bento-followups .bento-card-body {
  padding: 0;
}

/* Chat card — full-width banner; text left, mock right (like calendar) */
.bento-chat .bento-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
  padding: 32px;
}
.bento-chat .bento-card-art {
  margin: 0;
  padding: 0;
  align-items: center;
}
.bento-chat .mock-chat { margin-bottom: 0; }
.bento-focus { grid-area: focus; min-height: 420px; }
.bento-followups { grid-area: followups; min-height: 360px; }

/* Follow-ups card — wide; text left, mock right (like calendar) */
.bento-followups .bento-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 28px;
  align-items: start;
  padding: 32px;
}
.bento-followups .bento-card-art {
  margin: 0;
  padding: 0;
  align-items: flex-start;
}
.bento-followups .mock-followups { margin-bottom: 0; }
.bento-calendar { grid-area: calendar; min-height: 360px; }
.bento-files { grid-area: files; min-height: 420px; }

/* Calendar card is full-width banner — text left, mock right */
.bento-calendar .bento-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: center;
  padding: 36px 40px;
}

/* Summary card — wide layout: text left, mock right */
.bento-summary .bento-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 32px 32px 32px;
}
.bento-summary .bento-card-art {
  margin: 0;
  padding: 0;
  align-items: center;
}
.bento-summary .mock-summary { margin-bottom: 0; }

/* Calendar — wide; text + mock side by side */
.bento-calendar .bento-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
  padding: 32px;
}
.bento-calendar .bento-card-art {
  margin: 0;
  padding: 0;
  align-items: center;
}
.bento-calendar .mock-cal { margin-bottom: 0; }

/* SUMMARY mock */
.mock-summary {
  width: 100%;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: var(--sh-soft);
  margin-bottom: 28px;
}
.mock-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.mock-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}
.mock-pill i { font-size: 11px; }
.mock-meta { font-size: 11px; color: var(--ink-4); font-family: var(--font-mono); }
.mock-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}
.mock-section { margin-bottom: 12px; }
.mock-section:last-child { margin-bottom: 0; }
.mock-section-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-4);
  font-weight: 600;
  margin-bottom: 6px;
}
.mock-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.mock-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; line-height: 1.45;
  color: var(--ink);
}
.mock-list strong { font-weight: 600; }
.dot { width: 6px; height: 6px; border-radius: 50%; flex: 0 0 6px; }
.dot-accent { background: var(--accent); }
.avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  font-weight: 600;
  color: #fff;
  flex: 0 0 22px;
}
.avatar-d { background: linear-gradient(135deg, #F59E0B, #B45309); }
.avatar-m { background: linear-gradient(135deg, #10B981, #047857); }
.avatar-i { background: linear-gradient(135deg, #7C5CFC, #5B3EC4); }

.relevance { padding-top: 6px; border-top: 1px dashed var(--line); }
.rel-bar {
  height: 6px;
  width: 100%;
  border-radius: 3px;
  background: var(--surface-2);
  overflow: hidden;
  margin: 6px 0 6px;
}
.rel-fill {
  height: 100%;
  background: var(--accent-grad);
  border-radius: 3px;
}
.rel-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; color: var(--ink-3);
}
.rel-pct {
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 600;
}

/* CHAT mock */
.mock-chat {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--sh-soft);
  margin-bottom: 28px;
}
.chat-q { display: flex; justify-content: flex-end; margin-bottom: 14px; }
.chat-q-bubble {
  background: var(--accent-ultra);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.45;
}
.chat-a { display: flex; gap: 10px; align-items: flex-start; }
.chat-orb {
  width: 26px; height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: var(--accent-grad);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  margin-top: 1px;
}
.chat-body { flex: 1; min-width: 0; }
.chat-body p { margin: 0 0 8px; font-size: 13px; line-height: 1.5; color: var(--ink); }
.chat-body ul {
  margin: 0 0 10px;
  padding-left: 16px;
  list-style: disc;
}
.chat-body ul li {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.chat-cite-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-4);
  padding: 4px 0;
  margin-top: 4px;
}
.chat-cite-toggle i { font-size: 9px; transition: transform 150ms ease; }
.chat-cite-toggle.is-open i { transform: rotate(90deg); }
.chat-cites {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed var(--line);
}
.chat-cite {
  display: flex;
  gap: 8px;
}
.chat-cite em {
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-3);
  line-height: 1.45;
  display: block;
  margin-bottom: 3px;
  background: none;
  -webkit-text-fill-color: var(--ink-3);
}

/* FOLLOW-UPS mock — mirrors the real FollowupCard layout from the macOS app */
.mock-followups {
  width: 100%;
  margin-bottom: 0;
}
.fu-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}
.fu-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.fu-tab.is-active {
  background: var(--accent-ultra);
  color: var(--accent);
  font-weight: 600;
}
.fu-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 17px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink-4);
  font-size: 10.5px;
  font-weight: 700;
}
.fu-tab.is-active .fu-count { background: var(--accent); color: #fff; }

.fu-list { display: none; flex-direction: column; gap: 10px; }
.fu-list.is-active { display: flex; }

.fu-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}
.fu-card:hover { background: var(--surface-dim); }
.fu-card.is-done {
  opacity: 0.45;
  transform: scale(0.985);
}
.fu-card.is-done .fu-subject {
  text-decoration: line-through;
  color: var(--ink-4);
}

.fu-row1 {
  display: grid;
  grid-template-columns: 8px 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}
.fu-prio {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}
.fu-prio-high { background: #EF4444; }
.fu-prio-med  { background: var(--amber); }
.fu-prio-low  { background: var(--ink-5); }

.fu-check {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--line);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  transition: background 140ms ease, border-color 140ms ease;
  cursor: pointer;
}
.fu-check::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 5px;
  border-left: 1.8px solid #fff;
  border-bottom: 1.8px solid #fff;
  transform: translateY(-1px) rotate(-45deg) scale(0);
  transition: transform 140ms ease;
}
.fu-card.is-done .fu-check {
  background: var(--accent);
  border-color: var(--accent);
}
.fu-card.is-done .fu-check::before {
  transform: translateY(-1px) rotate(-45deg) scale(1);
}

.fu-subject {
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fu-subject strong { font-weight: 600; }
.fu-date {
  font-size: 11px;
  color: var(--ink-4);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.fu-row2 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 38px;
  flex-wrap: wrap;
}
.fu-audio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}
.fu-play {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  cursor: pointer;
  flex: 0 0 22px;
  font-size: 9px;
  transition: transform 140ms ease, background 140ms ease;
}
.fu-play:hover { transform: scale(1.06); background: var(--accent-deep); }
.fu-play.is-playing i::before { content: "\f4d8"; /* bi-pause-fill */ }
.fu-wave {
  flex: 1 1 0;
  min-width: 60px;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 18px;
  overflow: hidden;
}
.fu-wave i {
  display: block;
  width: 2px;
  height: calc(var(--h, 50%) - 0px);
  background: var(--ink-5);
  border-radius: 1px;
  flex: 0 0 2px;
}
.fu-tc {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-4);
  flex: 0 0 auto;
}
.fu-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--surface-2);
  font-size: 11px;
  color: var(--ink-3);
  white-space: nowrap;
}
.fu-chip i { font-size: 9px; color: var(--accent); }
.fu-chip-owed i { color: var(--amber); }
.fu-chip-unclear { color: var(--ink-4); }
.fu-chip-unclear i { display: none; }
.fu-mention {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent-ultra);
  border: 1px solid rgba(124, 92, 252, 0.18);
  font-size: 11px;
  color: var(--accent);
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fu-mention i { font-size: 9px; flex: 0 0 auto; }

/* Triage row — only on the unclear tab */
.fu-row3 {
  display: flex;
  gap: 6px;
  padding-left: 38px;
  padding-top: 2px;
}
.fu-triage {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 140ms ease, transform 140ms ease;
}
.fu-triage:hover { transform: translateY(-1px); }
.fu-triage i { font-size: 9px; font-weight: 600; }
.fu-triage-iowe {
  color: var(--accent);
  background: rgba(124, 92, 252, 0.10);
  border-color: rgba(124, 92, 252, 0.25);
}
.fu-triage-iowe:hover { background: rgba(124, 92, 252, 0.16); }
.fu-triage-oweme {
  color: var(--amber-ink);
  background: rgba(245, 158, 11, 0.10);
  border-color: rgba(245, 158, 11, 0.30);
}
.fu-triage-oweme:hover { background: rgba(245, 158, 11, 0.16); }

/* FOCUS mock (stat cards) */
.mock-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 28px;
}
.stat {
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px;
  font-weight: 500;
}
.stat-label i { font-size: 12px; }
.stat-value {
  font-family: var(--font-mono);
  font-feature-settings: "tnum";
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.stat-detail { font-size: 11px; line-height: 1.3; }
.stat-purple { background: var(--accent-grad); color: #fff; }
.stat-purple .stat-detail { color: rgba(255,255,255,0.78); }
.stat-purple .stat-label { color: rgba(255,255,255,0.85); }
.stat-green { background: var(--green-bg); color: var(--green-ink); }
.stat-green .stat-value { color: var(--green-ink); }
.stat-amber { background: var(--amber-bg); color: var(--amber-ink); }
.stat-amber .stat-value { color: var(--amber-ink); }

/* CALENDAR mock */
.mock-cal {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 12px 14px;
  box-shadow: var(--sh-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}
.cal-row {
  display: grid;
  grid-template-columns: 64px 4px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 10px;
}
.cal-row:hover { background: var(--surface-dim); }
.cal-time { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; }
.cal-time-h { font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--ink); }
.cal-time-d { font-size: 10.5px; color: var(--ink-4); }
.cal-line { width: 3px; height: 36px; background: var(--accent); border-radius: 2px; }
.cal-line-now { background: var(--red); box-shadow: 0 0 0 3px rgba(239,68,68,0.18); animation: rec-blink 1.6s ease-in-out infinite; }
.cal-line-skip { background: var(--ink-5); }
.cal-body { min-width: 0; }
.cal-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
}
.cal-meta { font-size: 11.5px; color: var(--ink-4); margin-top: 2px; }
.cal-now-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(239,68,68,0.16);
  color: var(--red);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.cal-attend {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.cal-attend-going { background: rgba(16,185,129,0.14); color: var(--green-ink); }
.cal-attend-skip { background: var(--surface-2); color: var(--ink-4); }
.cal-row-skip { opacity: 0.55; }

/* FILES mock */
.mock-files {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sh-soft);
  margin-bottom: 28px;
}
.files-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(to bottom, #F7F6F8, #ECEAEE);
  border-bottom: 1px solid var(--line);
}
.files-bar > span:not(.files-path) {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
}
.files-bar > span:nth-child(1) { background: #FF5F57; }
.files-bar > span:nth-child(2) { background: #FEBC2E; }
.files-bar > span:nth-child(3) { background: #28C840; }
.files-path {
  flex: 1; text-align: center;
  font-size: 12px; font-weight: 500;
  color: var(--ink-2);
  font-family: var(--font-mono);
}
.files-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px 14px;
}
.file-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.file-icon {
  width: 56px; height: 56px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.file-audio { background: linear-gradient(135deg, #EDE9FE, #D8CDFF); color: var(--accent-deep); }
.file-text { background: linear-gradient(135deg, #ECF0F1, #DEE6E9); color: #4A5560; }
.file-md { background: linear-gradient(135deg, #FFF5DA, #FBE6A8); color: #92400E; }
.file-name {
  font-size: 11.5px;
  text-align: center;
  color: var(--ink-2);
  max-width: 90px;
  word-break: break-word;
  line-height: 1.25;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */

.how {
  padding: 110px 0 90px;
}
.how-head {
  max-width: 740px;
  margin-bottom: 56px;
}
.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  counter-reset: step;
}
.how-steps li {
  position: relative;
  padding: 28px 28px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.how-steps li:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-soft);
}
.how-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-ultra);
}
.how-steps h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}
.how-steps .muted {
  font-size: 14px;
  line-height: 1.55;
}

/* =========================================================
   PRIVACY
   ========================================================= */

.privacy {
  padding: 90px 0 110px;
  background: var(--bg-warm);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.privacy-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 56px;
  align-items: center;
}
.privacy-copy .h2 { margin: 14px 0 18px; }
.privacy-copy .lead { color: var(--ink-3); margin: 0 0 14px; }
.privacy-copy .lead:last-child { margin-bottom: 0; }
.privacy-copy .mono {
  font-family: var(--font-mono);
  font-size: 0.92em;
  color: var(--ink-2);
  background: var(--surface-2);
  padding: 1px 5px;
  border-radius: 4px;
}

/* Finder mock — adapted from live-demo, scaled for the landing */
.privacy-finder {
  filter: drop-shadow(0 20px 44px rgba(0,0,0,0.18)) drop-shadow(0 6px 14px rgba(0,0,0,0.08));
}
.pf-shell {
  background: #ECECEC;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 440px;
  box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.08);
  user-select: none;
}
.pf-titlebar {
  flex: 0 0 38px;
  height: 38px;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  background: linear-gradient(to bottom, #F0F0F2 0%, #DCDCE0 100%);
  border-bottom: 0.5px solid rgba(0,0,0,0.18);
}
.pf-traffic { display: inline-flex; gap: 6px; }
.pf-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.pf-dot-close { background: #FF5F57; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.15); }
.pf-dot-min   { background: #FEBC2E; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.15); }
.pf-dot-max   { background: #28C840; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.15); }
.pf-nav { display: inline-flex; gap: 2px; }
.pf-nav-btn {
  width: 24px; height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #3A3A3C;
  font-size: 10px;
  background: transparent;
  border: 0;
}
.pf-nav-btn-dim { color: #B5B5B7; }
.pf-title {
  font-size: 12px;
  font-weight: 600;
  color: #1D1D1F;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pf-toolbar { display: inline-flex; gap: 4px; }
.pf-view {
  width: 22px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 10px;
  color: #1D1D1F;
  background: #fff;
  box-shadow: 0 1px 1.5px rgba(0,0,0,0.12);
}
.pf-view-dim { background: transparent; color: #5F5F61; box-shadow: none; }

.pf-body {
  flex: 1;
  display: grid;
  grid-template-columns: 152px 1fr;
  min-height: 0;
}
.pf-sidebar {
  background: #E8E8EA;
  border-right: 0.5px solid rgba(0,0,0,0.10);
  padding: 6px 0;
  overflow: hidden;
}
.pf-sb-group { padding: 4px 8px 8px; }
.pf-sb-label {
  font-size: 10.5px;
  font-weight: 600;
  color: #8E8E93;
  letter-spacing: 0.2px;
  padding: 4px 10px;
}
.pf-sb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 12px;
  color: #1D1D1F;
}
.pf-sb-item i { font-size: 12px; color: #4F9BD9; flex: 0 0 16px; text-align: center; }
.pf-sb-active { background: rgba(0,0,0,0.10); }

.pf-main {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #FFFFFF;
}
.pf-breadcrumb {
  flex: 0 0 24px;
  height: 24px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  font-size: 11px;
  color: #6E6E73;
  border-bottom: 0.5px solid rgba(0,0,0,0.06);
  background: #F7F7F8;
}
.pf-bc {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pf-bc i { font-size: 10px; color: #4F9BD9; }
.pf-bc-current { color: #1D1D1F; }
.pf-bc-sep { color: #B5B5B7; font-size: 9px; display: inline-flex; }
.pf-bc-sep i { font-size: 9px; }

.pf-grid {
  flex: 1;
  overflow-y: auto;
  padding: 14px 12px 6px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 14px 4px;
  align-content: start;
}
.pf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 2px;
  border-radius: 6px;
  text-align: center;
}
.pf-file, .pf-folder {
  width: 52px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pf-file svg, .pf-folder svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.08));
}
.pf-label {
  font-size: 11px;
  color: #1D1D1F;
  line-height: 1.2;
  word-break: break-word;
  max-width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pf-meta {
  font-size: 9.5px;
  color: #8E8E93;
  line-height: 1.2;
}

.pf-statusbar {
  flex: 0 0 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  color: #8E8E93;
  background: #F2F2F4;
  border-top: 0.5px solid rgba(0,0,0,0.08);
}

/* MCP section — orbit visual on the left, copy on the right */
.mcp {
  padding: 100px 0;
  background: var(--surface);
}
.mcp-block {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.mcp-copy .h2 { margin: 14px 0 18px; }
.mcp-copy .lead { color: var(--ink-3); margin: 0 0 14px; }
.mcp-copy .lead:last-child { margin-bottom: 0; }
.mcp-orbit {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 460px;
  margin: 0 auto;
}
.mcp-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(155, 127, 230, 0.45) 0%, transparent 55%),
    radial-gradient(circle at 65% 65%, rgba(244, 114, 182, 0.30) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(124, 92, 252, 0.18) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.mcp-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.mcp-lines line {
  stroke: rgba(124, 92, 252, 0.22);
  stroke-width: 1;
  stroke-dasharray: 3 4;
  animation: mcp-line-pulse 3s ease-in-out infinite;
}
@keyframes mcp-line-pulse {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}
.mcp-node {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow:
    0 14px 30px rgba(28, 18, 58, 0.10),
    0 4px 10px rgba(28, 18, 58, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: mcp-float 7s ease-in-out infinite;
}
.mcp-node img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.mcp-node-tl { top: 6%;  left: 6%;  animation-delay: 0s; }
.mcp-node-tr { top: 6%;  right: 6%; animation-delay: -1.5s; }
.mcp-node-bl { bottom: 6%; left: 6%; animation-delay: -3s; }
.mcp-node-br { bottom: 6%; right: 6%; animation-delay: -4.5s; }
.mcp-node-center {
  width: 112px;
  height: 112px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent-grad);
  box-shadow:
    0 22px 50px rgba(124, 92, 252, 0.45),
    0 8px 16px rgba(124, 92, 252, 0.30),
    inset 0 -10px 28px rgba(255, 255, 255, 0.22),
    inset 0 8px 22px rgba(255, 255, 255, 0.18);
  animation: none;
}
.mcp-node-center img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
@keyframes mcp-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .mcp-node, .mcp-lines line { animation: none; }
}

@media (max-width: 900px) {
  .privacy { padding: 70px 0 80px; }
  .privacy-block { grid-template-columns: 1fr; gap: 32px; }
  .pf-shell { height: 380px; }
  .pf-sidebar { display: none; }
  .pf-body { grid-template-columns: 1fr; }
  .mcp { padding: 70px 0; }
  .mcp-block { grid-template-columns: 1fr; gap: 32px; }
  .mcp-orbit { max-width: 360px; }
  .mcp-node { width: 60px; height: 60px; }
  .mcp-node img { width: 30px; height: 30px; }
  .mcp-node-center { width: 96px; height: 96px; }
  .mcp-node-center img { width: 54px; height: 54px; }
}

/* =========================================================
   QUOTES
   ========================================================= */

.quotes {
  padding: 110px 0 90px;
}
.quotes-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.quotes-head h2 em { font-style: italic; }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.quote-card blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.quote-card blockquote::before {
  content: "\201C";
  display: block;
  font-size: 38px;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 8px;
}
.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.quote-card figcaption img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 40px;
}
.quote-card figcaption strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.quote-card figcaption span {
  display: block;
  font-size: 12px;
  color: var(--ink-4);
  margin-top: 1px;
}

/* =========================================================
   YOUR DATA, YOUR AI — merged section (files/languages/AI)
   ========================================================= */

.data-ai {
  padding: 100px 0;
  background: var(--surface);
}
.data-ai-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.data-ai-head .h2 { margin: 14px 0 14px; }
.data-ai-head .lead { color: var(--ink-3); margin: 0; }

.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.data-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.data-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--sh-card);
  transform: translateY(-2px);
}
.data-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-ultra);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 16px;
}
.data-card .h3 {
  font-size: 19px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.data-card .muted {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.data-card .mono {
  font-family: var(--font-mono);
  font-size: 0.92em;
  color: var(--ink-2);
  background: var(--surface-2);
  padding: 1px 5px;
  border-radius: 4px;
}
.data-card strong { color: var(--ink); font-weight: 600; }

.data-flag-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  flex-wrap: wrap;
}
.data-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
  flex: 0 0 22px;
}
.data-flag-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-2);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-3);
}

@media (max-width: 900px) {
  .data-ai { padding: 70px 0; }
  .data-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   PRICING
   ========================================================= */

.pricing {
  padding: 100px 0 110px;
  background: var(--bg-warm);
  border-top: 1px solid var(--line-soft);
}
.pricing-head {
  max-width: 700px;
  margin-bottom: 50px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.price-card:hover { transform: translateY(-2px); box-shadow: var(--sh-soft); }
.price-card-pro {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.price-card-pro .muted { color: rgba(255,255,255,0.55); }
.price-card-pro .price-features li { color: rgba(255,255,255,0.85); }
.price-card-pro .price-features li i { color: var(--accent-light); }
.price-card-pro header { color: rgba(255,255,255,0.92); }
.price-card-pro .price-tag { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.7); }

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--accent-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px -4px rgba(124,92,252,0.45);
}
.price-card header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.price-name {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.price-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.price-amount {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--font-sans);
}
.price-amount span {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-4);
  margin-left: 4px;
}
.price-card-pro .price-amount span { color: rgba(255,255,255,0.5); }
.price-features {
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.price-features li i {
  font-size: 14px;
  color: var(--accent);
  margin-top: 2px;
  flex: 0 0 14px;
}
.price-features li.muted i { color: var(--ink-5); }
.price-card .btn { margin-top: auto; }
.price-card-pro .btn-primary {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 18px -8px rgba(255,255,255,0.5);
}
.price-card-pro .btn-primary:hover { background: #F4F1FF; }

/* =========================================================
   FAQ
   ========================================================= */

.faq {
  padding: 110px 0 90px;
}
.faq-head {
  max-width: 700px;
  margin-bottom: 48px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 6px 4px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.faq details[open] { border-color: var(--accent-light); box-shadow: var(--sh-soft); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
  font-size: 14px;
  color: var(--ink-4);
  transition: transform 200ms ease;
  flex: 0 0 14px;
}
.faq details[open] summary i { transform: rotate(45deg); color: var(--accent); }
.faq details p {
  margin: 0;
  padding: 0 18px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-3);
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.cta {
  padding: 30px 0 110px;
}
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: var(--ink);
  color: #fff;
  padding: 70px 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}
.cta-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.45;
  pointer-events: none;
}
.cta-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) saturate(140%);
  mix-blend-mode: screen;
  transform: scale(1.05);
}
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(124,92,252,0.5), rgba(124,92,252,0) 60%),
    radial-gradient(ellipse 60% 80% at 0% 0%, rgba(155,127,230,0.35), rgba(155,127,230,0) 60%);
  z-index: 0;
  pointer-events: none;
}
.cta-copy { position: relative; z-index: 1; }
.cta-copy h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}
.cta-copy h2 em { background: linear-gradient(135deg, #C9B8FF, #FFFFFF); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cta-copy .lead { color: rgba(255,255,255,0.75); margin-bottom: 22px; }
.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 22px;
}
.cta-card .btn-primary {
  background: #fff;
  color: var(--ink);
}
.cta-card .btn-primary:hover { background: #F4F1FF; }
.cta-card .btn-ghost {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.18);
}
.cta-card .btn-ghost:hover { background: rgba(255,255,255,0.18); }
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}
.cta-trust span { display: inline-flex; align-items: center; gap: 6px; }
.cta-trust i { color: rgba(255,255,255,0.7); font-size: 13px; }

.cta-made {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.9);
}
.cta-made img {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: block;
}
@media (max-width: 720px) {
  .cta-made {
    top: 16px;
    right: 16px;
    font-size: 11px;
    padding: 5px 10px 5px 6px;
  }
  .cta-made img { width: 14px; height: 14px; }
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg-warm);
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 56px;
  margin-bottom: 36px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand .brand-mark {
  width: 44px; height: 44px;
  border-radius: 11px;
  flex: 0 0 44px;
}
.footer-brand .brand-word { font-size: 20px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 14px;
}
.footer-cols a {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 8px;
  transition: color 120ms ease;
}
.footer-cols a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* No live demo button on mobile (already shipped on the demo itself) */
.desktop-only { display: inline-flex; }

@media (max-width: 1100px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "chat chat"
      "followups followups";
  }
  .bento-chat .bento-card-body { grid-template-columns: 1fr; padding: 28px; }
  .bento-calendar .bento-card-body { grid-template-columns: 1fr; padding: 28px; }
  .quote-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .privacy-grid { grid-template-columns: 1fr; }
  .privacy-head { position: static; }
  .privacy-list { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 56px; }
  .cta-card { grid-template-columns: 1fr; padding: 50px 32px; }
}

@media (max-width: 820px) {
  .desktop-only { display: none !important; }
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; gap: 12px; padding: 0 18px; }
  .container { padding: 0 18px; }

  /* Compact nav button on mobile — icon only */
  .nav-cta .btn-primary span:not(.btn-meta) { display: none; }
  .nav-cta .btn-primary { padding: 10px 14px; }
  .nav-cta .btn-primary i { font-size: 16px; }

  .hero { padding: 16px 0 16px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding: 0 18px;
  }
  /* Mobile: simpler hero — wave first, cards stacked, no floating overlay */
  .hero-art {
    height: 220px;
    order: -1;
    overflow: visible;
  }
  .hero-wave-img { width: 100%; max-width: 380px; margin: 0 auto; }
  .hero-wave-glow { display: none; }
  .float-rec, .float-chat { display: none; }
  .hero-title { font-size: clamp(34px, 9vw, 50px); line-height: 1.02; }
  .hero-sub { font-size: 15px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .hero-cta-row .btn-meta { display: none; }
  .hero-trust { padding: 22px 18px 0; margin-top: 32px; }

  .hero-trust { flex-direction: column; align-items: flex-start; gap: 14px; padding-top: 28px; }
  .hero-trust-roles { gap: 14px; font-size: 13px; }

  .features { padding: 70px 0; }
  .privacy { padding: 70px 0; }
  .quotes, .pricing, .faq, .how, .story { padding: 70px 0; }

  .bento {
    grid-template-columns: 1fr;
    grid-template-areas: "chat" "followups";
  }
  .bento-card { min-height: auto !important; }
  .bento-card-body { padding: 22px 22px 0; }
  .bento-card-art { margin: 0 -22px; padding: 12px 22px 0; }
  .bento-chat .bento-card-body,
  .bento-calendar .bento-card-body { padding: 22px; gap: 18px; }
  .privacy-list { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; gap: 6px; align-items: flex-start; }

  .story-meet { transform: none; }
  .story-meet-body { height: 220px; }
  .story-rec { right: 0; bottom: -40px; transform: none; width: 200px; }
}

/* =========================================================
   Reveal-on-scroll
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   SECTION RHYTHM — alternating bg + snake layout
   ========================================================= */

:root {
  --surface-tint: #EEF2F8;       /* soft bluish-gray */
  --section-pad-y: 150px;
}

/* Body sections: uniform vertical rhythm */
.load,
.briefs,
.story,
.recview,
.fu-sec,
.chat-sec,
.privacy,
.byo,
.mcp,
.pricing,
.faq,
.langs {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
}

/* Alternation: white / tint / white / tint ... */
.load     { background: var(--surface-tint); border-top: none; border-bottom: none; }
.briefs   { background: var(--surface); }
.story    { background: var(--surface-tint); }
.recview  { background: var(--surface); border-top: none; border-bottom: none; }
.fu-sec   { background: var(--surface-tint); }
.chat-sec { background: var(--surface); }
.privacy  { background: var(--surface-tint); border-top: none; border-bottom: none; }
.byo      { background: var(--surface); }
.mcp      { background: var(--surface-tint); }
.pricing  { background: var(--surface); border-top: none; }
.faq      { background: var(--surface-tint); }
.langs    { background: var(--surface); }

/* Snake: alternate text/preview sides on consecutive two-column blocks */
.story.is-flipped .story-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}
.story.is-flipped .story-copy { order: 2; }
.story.is-flipped .story-art  { order: 1; }

.chat-sec.is-flipped .briefs-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
}
.chat-sec.is-flipped .briefs-head { order: 2; }
.chat-sec.is-flipped .chat-pane   { order: 1; }

.mcp.is-flipped .mcp-block {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
}
.mcp.is-flipped .mcp-copy  { order: 2; }
.mcp.is-flipped .mcp-orbit { order: 1; }

@media (max-width: 900px) {
  :root { --section-pad-y: 80px; }
}
