/* =============================================================
   DoLessGetMore.ai — v15 · "Luxury Tech, properly"
   References (real fetch): Anthropic, Linear, Stripe, Cursor, Vercel, Mistral, Hume.
   Inter sans throughout. Cobalt accent. Restraint = luxury.
   ============================================================= */

:root {
  /* Palette — soft warm white + rich charcoal + electric cobalt */
  --bg:           #FFFFFF;        /* pure white */
  --paper:        #FAFAF7;        /* near-white, gentle warm cast (Anthropic-coded) */
  --ink:          #0F1117;        /* rich near-black charcoal */
  --ink-soft:     #4B5060;        /* secondary text */
  --ink-softer:   #8A8E9C;        /* tertiary / labels */
  --rule:         #E6E6E2;        /* hairline */
  --rule-soft:    #F1F1ED;
  --black:        #07080F;        /* deepest charcoal for dark sections */
  --accent:       #2C5FFF;        /* electric cobalt — Stripe/Linear-coded */
  --accent-deep:  #1E40CC;        /* deeper cobalt */
  --accent-pale:  #A4BAFF;        /* soft cobalt for dark backgrounds */
  --accent-soft:  #EAF0FF;        /* cobalt wash */
  --grad-start:   #EAF0FF;        /* hero gradient — soft cobalt wash */
  --grad-mid:     #F5F7FF;
  --grad-end:     #FFFFFF;

  /* Typography — Inter (sans) + JetBrains Mono. No serif. */
  --f-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --f-display: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --f-mono:    "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Spacing */
  --pad-x:       clamp(28px, 6vw, 96px);
  --section-y:   clamp(96px, 13vw, 200px);
  --hero-y:      clamp(140px, 18vw, 260px);

  --max-w:       1320px;

  /* Motion */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --t-slow:      1200ms;
  --t-med:       560ms;
  --t-fast:      240ms;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv02", "cv11";  /* Inter stylistic alternates */
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent-pale); color: var(--ink); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid transparent;
  transition: background var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              backdrop-filter var(--t-med) var(--ease);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--rule);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 22px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-mark {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-mark .dot { color: var(--accent); margin: 0 1px; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0;
  transition: color var(--t-fast) var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.is-current { color: var(--ink); }
/* Higher specificity (.nav-links a.nav-cta) so the white color isn't
   overridden by the generic .nav-links a rule */
.nav-links a.nav-cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  color: #FFFFFF;
  background: var(--accent);
  border: 1px solid var(--accent);
  padding: 11px 22px;
  border-radius: 7px;
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.20) inset,
    0 4px 14px -2px rgba(44, 95, 255, 0.42),
    0 2px 6px -1px rgba(44, 95, 255, 0.24);
  transition: background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
}
.nav-links a.nav-cta:hover {
  color: #FFFFFF;
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.22) inset,
    0 8px 20px -4px rgba(44, 95, 255, 0.50),
    0 4px 10px -2px rgba(44, 95, 255, 0.30);
  transform: translateY(-1px);
}
.nav-links a.nav-cta.is-current { color: #FFFFFF; }
/* Mobile hamburger — 3-line classic, hidden on desktop */
.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  margin-left: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 6px;
  transition: background var(--t-fast) var(--ease);
  flex-shrink: 0;
}
.nav-burger:hover { background: rgba(15, 17, 23, 0.04); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 240ms var(--ease), opacity 180ms var(--ease);
  transform-origin: center;
}
/* X animation: top rotates +45 down, middle fades, bottom rotates -45 up */
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0.6); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile slide-down panel — hidden on desktop */
.nav-mobile-panel {
  display: none;
  overflow: hidden;
  max-height: 0;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: max-height 320ms var(--ease), border-bottom-color 320ms var(--ease);
}
.nav-mobile-panel.is-open {
  max-height: 420px;
  border-bottom-color: var(--rule);
}
.nav-mobile-panel ul {
  list-style: none;
  margin: 0;
  padding: 4px 24px 18px;
  display: flex;
  flex-direction: column;
}
.nav-mobile-panel li { border-bottom: 1px solid var(--rule-soft); }
.nav-mobile-panel li:last-child { border-bottom: 0; }
.nav-mobile-panel a {
  display: block;
  font-family: var(--f-sans);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--ink);
  padding: 16px 0;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.nav-mobile-panel a:hover { color: var(--accent); }

@media (max-width: 760px) {
  .nav-inner { padding: 16px 22px; gap: 0; }
  /* Flush nav (containing Reserve) + burger to the right edge as a tight group */
  .nav-inner > nav { margin-left: auto; }
  .nav-links { gap: 0; }
  .nav-links li:not(.cta-li) { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile-panel { display: block; }
  /* Slightly tighter Reserve pill on small screens */
  .nav-links a.nav-cta {
    padding: 9px 18px;
    font-size: 13px;
  }
}

/* ============================================================
   HERO — editorial restraint + dashboard centerpiece (Linear/Stripe-coded)
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--hero-y) * 0.85) var(--pad-x) calc(var(--hero-y) * 0.5);
  min-height: auto;
  display: block;
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(44, 95, 255, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(15, 17, 23, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse 70% 80% at 50% 110%, rgba(44, 95, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 17, 23, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 17, 23, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 75%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-softer);
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0 0 32px;
  font-weight: 500;
}
.hero-tag .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
.hero-headline {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.14;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 20px;
  max-width: 580px;
  font-feature-settings: "ss01", "cv11";
}
.hero-headline em {
  font-style: normal;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: -0.022em;
}
.hero-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.008em;
  padding: 12px 22px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
  text-decoration: none;
  position: relative;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.04) inset,
    0 6px 18px -4px rgba(15, 17, 23, 0.30),
    0 2px 5px -1px rgba(44, 95, 255, 0.18);
}
.btn-primary:hover {
  background: #1A1E2D;
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.06) inset,
    0 12px 28px -6px rgba(15, 17, 23, 0.40),
    0 4px 10px -2px rgba(44, 95, 255, 0.30);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(15, 17, 23, 0.18);
  padding: 11px 21px;
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(15, 17, 23, 0.03);
}
.btn .arrow {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1;
  transition: transform var(--t-med) var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   PAGE HEAD (non-home)
   ============================================================ */
.page-head {
  padding: calc(var(--hero-y) * 0.85) var(--pad-x) calc(var(--section-y) * 0.4);
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(ellipse at 90% 30%, var(--grad-start) 0%, transparent 55%),
    var(--bg);
}
.page-head-inner { max-width: var(--max-w); margin: 0 auto; }
.page-head .eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 28px;
  font-weight: 500;
}
.page-head h1 {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.14;
  letter-spacing: -0.022em;
  margin: 0 0 22px;
  color: var(--ink);
  max-width: 760px;
  font-feature-settings: "ss01", "cv11";
}
.page-head h1 em {
  font-style: normal;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: -0.022em;
}
.page-head .lede {
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: var(--section-y) var(--pad-x); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-inner.is-prose { max-width: 720px; }
.section-inner.is-mid { max-width: 1080px; }

.section.is-bordered { border-top: 1px solid var(--rule); }
.section.is-paper { background: var(--paper); }

.section-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-softer);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.section-eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}
.section-h {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.16;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 820px;
  font-feature-settings: "ss01", "cv11";
}
.section-h em {
  font-style: normal;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: -0.022em;
}
.section-sub {
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 0 56px;
}

.prose p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 64ch;
}
.prose p.is-lede {
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 56ch;
  margin-bottom: 36px;
}
.prose strong { font-weight: 600; color: var(--ink); }

/* ============================================================
   STYLIZED UI MOCKUP — show the actual product surfaces
   ============================================================ */
.ui-mockup {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(15, 17, 23, 0.03),
    0 32px 64px -20px rgba(15, 17, 23, 0.14),
    0 12px 24px -8px rgba(15, 17, 23, 0.07),
    0 0 0 4px rgba(44, 95, 255, 0.02);
  position: relative;
}
.ui-mockup-header {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ui-mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--rule);
}
.ui-mockup-dot:nth-child(1) { background: #FF5F57; }
.ui-mockup-dot:nth-child(2) { background: #FEBC2E; }
.ui-mockup-dot:nth-child(3) { background: #28C840; }
.ui-mockup-url {
  flex: 1;
  margin-left: 16px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-softer);
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 6px 14px;
  border-radius: 6px;
}
.ui-mockup-body { padding: 32px 36px; }

/* Stylized monthly value report — inside ui-mockup */
.report-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
}
.report-head-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.report-head-meta {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-softer);
}
.report-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-soft);
  align-items: baseline;
  font-size: 14px;
}
.report-row:last-child { border-bottom: 0; }
.report-row-label { color: var(--ink-soft); }
.report-row-value {
  font-family: var(--f-mono);
  font-weight: 500;
  color: var(--ink);
  font-size: 14px;
}
.report-row-value strong { color: var(--accent); font-weight: 700; }
.report-total {
  margin-top: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.report-total-label {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
.report-total-value {
  font-family: var(--f-sans);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}

/* ============================================================
   HERO SPLIT — text left, live widget right
   ============================================================ */
/* Editorial hero: centered copy block on top, dashboard below as wide centerpiece */
.hero.is-split .hero-inner {
  display: block;
  text-align: center;
}
.hero-copy {
  max-width: 600px;
  margin: 0 auto 88px;
  text-align: center;
}
.hero-copy .hero-headline { margin-left: auto; margin-right: auto; }
.hero-copy .hero-sub { margin-left: auto; margin-right: auto; }
.hero-actions {
  margin-bottom: 0;
  justify-content: center;
}
@media (max-width: 760px) {
  .hero-copy { margin-bottom: 56px; }
}
.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(10, 10, 10, 0.04),
    0 32px 64px -16px rgba(10, 10, 10, 0.18),
    0 12px 24px -8px rgba(10, 10, 10, 0.10);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 2.4s var(--ease);
}
.hero-image:hover img { transform: scale(1.06); }
@media (max-width: 1024px) {
  .hero.is-split .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { aspect-ratio: 4/3; order: -1; }
  .hero-image { border-radius: 14px; }
}

/* ============================================================
   HERO LIVE DASHBOARD — wide centerpiece, Linear-style depth + glow
   ============================================================ */
.hero-dash-wrap {
  position: relative;
  margin-top: 8px;
}
.hero-dash-wrap::before {
  /* Soft cobalt halo behind the dashboard — Linear/Stripe glow */
  content: "";
  position: absolute;
  inset: -60px -40px -80px -40px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(44, 95, 255, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(15, 17, 23, 0.04) 0%, transparent 65%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}
.hero-dash {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 0;
  font-family: var(--f-sans);
  box-shadow:
    0 0 0 1px rgba(15, 17, 23, 0.04),
    0 48px 96px -24px rgba(15, 17, 23, 0.18),
    0 18px 32px -10px rgba(15, 17, 23, 0.10),
    0 0 0 6px rgba(44, 95, 255, 0.025);
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}
.hero-dash::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 60% at 100% 0%, rgba(44, 95, 255, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 100% 60% at 0% 100%, rgba(15, 17, 23, 0.018) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-dash-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0;
  gap: 16px;
}
.hero-dash-head-left, .hero-dash-head-right {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.hero-dash-head-version {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--ink-softer);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-dash-head-version::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--rule);
  display: inline-block;
}
.hero-dash-body {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr 1fr;
  gap: 0;
  position: relative;
  z-index: 1;
}
.hero-dash-col {
  padding: 22px 24px 26px;
  border-right: 1px solid var(--rule);
  position: relative;
  min-height: 220px;
}
.hero-dash-col:last-child { border-right: 0; }

@media (max-width: 1024px) {
  .hero-dash-body { grid-template-columns: 1fr 1fr; }
  .hero-dash-col:nth-child(2) { border-right: 0; }
  .hero-dash-col:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--rule);
    min-height: auto;
  }
}
@media (max-width: 640px) {
  .hero-dash-body { grid-template-columns: 1fr; }
  .hero-dash-col {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    min-height: auto;
  }
  .hero-dash-col:last-child { border-bottom: 0; }
}
.hero-dash-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 700;
}
.hero-dash-status .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(44, 95, 255, 0.6);
  animation: dash-pulse 2.4s ease-in-out infinite;
}
@keyframes dash-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(44, 95, 255, 0.55); transform: scale(1); }
  50% { box-shadow: 0 0 0 7px rgba(44, 95, 255, 0); transform: scale(0.9); }
}
.hero-dash-brand {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-softer);
  font-weight: 500;
}

.hero-dash-section { margin-bottom: 0; }
.hero-dash-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-softer);
  margin: 0 0 14px;
  font-weight: 600;
}

/* Narrative-driven "Now handling" line — JS swaps content */
.hero-dash-now {
  position: relative;
  min-height: 96px;
  display: flex;
  align-items: flex-start;
}
.hero-dash-now-active {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.012em;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  display: block;
  width: 100%;
}
.hero-dash-now-active.is-fading {
  opacity: 0;
  transform: translateY(-4px);
}

/* Today counter — single column tall stack inside its dashboard column */
.hero-dash-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.hero-dash-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule-soft);
}
.hero-dash-stat:last-child { border-bottom: 0; padding-bottom: 0; }
.hero-dash-stat-num {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-feature-settings: "tnum";
  transition: color 0.4s var(--ease);
  min-width: 44px;
}
.hero-dash-stat-num.is-tick { color: var(--accent); }
.hero-dash-stat-key {
  font-size: 12px;
  font-family: var(--f-sans);
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  font-weight: 500;
}

/* Recent feed */
.hero-dash-feed-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 150px;
}
.hero-dash-event {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 10px;
  font-size: 12.5px;
  align-items: baseline;
  animation: dash-event-in 0.55s var(--ease) both;
}
.hero-dash-arrow {
  color: var(--accent);
  font-weight: 700;
  font-family: var(--f-mono);
  line-height: 1;
}
.hero-dash-event-text {
  color: var(--ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-dash-event-time {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--ink-softer);
  letter-spacing: 0;
}
@keyframes dash-event-in {
  0% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-dash-event.is-fading {
  animation: dash-event-out 0.4s var(--ease) both;
}
@keyframes dash-event-out {
  0% { opacity: 1; max-height: 24px; margin-top: 0; }
  100% { opacity: 0; max-height: 0; margin-top: -8px; }
}

@media (max-width: 1024px) {
  .hero-dash-col { padding: 18px 20px 22px; min-height: auto; }
  .hero-dash-now { min-height: 80px; }
  .hero-dash-now-item { font-size: 17px; }
  .hero-dash-stat-num { font-size: 24px; }
}
@media (max-width: 480px) {
  .hero-dash-head { padding: 14px 18px; }
  .hero-dash-col { padding: 16px 18px 20px; }
  .hero-dash-now-item { font-size: 16px; }
  .hero-dash-stat-num { font-size: 22px; }
  .hero-dash-event { font-size: 11.5px; }
}

/* Live orchestrator widget (shown in hero) */
.live-widget {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow:
    0 0 0 1px rgba(10, 10, 10, 0.02),
    0 24px 48px -12px rgba(10, 10, 10, 0.08),
    0 8px 16px -4px rgba(10, 10, 10, 0.04);
  font-family: var(--f-sans);
}
.live-widget-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 18px;
}
.live-widget-title {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin: 0;
}
.live-widget-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--accent);
  font-weight: 500;
}
.live-widget-status .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
.live-widget-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
  align-items: baseline;
}
.live-widget-row:last-child { border-bottom: 0; }
.live-widget-label {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-widget-label-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.live-widget-value {
  font-family: var(--f-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.live-widget-value strong { color: var(--accent); }
.live-widget-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-softer);
  display: flex;
  justify-content: space-between;
}

/* ============================================================
   STATS SECTION — by the numbers
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat {
  padding: 48px 32px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  font-feature-settings: "tnum";
}
.stat-num span {
  font-size: 0.5em;
  color: var(--ink-softer);
  font-weight: 300;
  margin-left: 2px;
  letter-spacing: -0.01em;
}
.stat-label {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.stat-body {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 980px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--rule); }
}
@media (max-width: 600px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: 0; }
}

/* ============================================================
   REVIEWS DASHBOARD MOCKUP
   ============================================================ */
.review-feed {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 16px 18px;
}
.review-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.review-card-author {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  margin: 0;
}
.review-card-stars {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.review-card-text {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 12px;
  font-style: italic;
}
.review-card-reply {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 12px 14px;
  position: relative;
}
.review-card-reply-head {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 6px;
}
.review-card-reply-text {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 0 12px;
}
.review-card-actions {
  display: flex;
  gap: 8px;
}
.review-action {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  cursor: pointer;
  border: 0;
}
.review-action.is-primary {
  background: var(--ink);
  color: var(--bg);
}
.review-action.is-ghost {
  background: var(--bg);
  border: 1px solid var(--rule);
  color: var(--ink);
}

/* ============================================================
   COMPARISON TABLE — DIY / Generic Agency / Us
   ============================================================ */
.compare {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg);
}
.compare-cell {
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
}
.compare-cell:last-child,
.compare-cell.is-last-col { border-right: 0; }
.compare-row:last-child .compare-cell,
.compare-cell.is-bottom { border-bottom: 0; }
.compare-h {
  font-family: var(--f-sans);
  font-weight: 600;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  letter-spacing: -0.01em;
}
.compare-h.is-us {
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
}
.compare-row-label {
  font-weight: 500;
  color: var(--ink);
}
.compare-cell .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
}
.compare-cell .check.is-yes {
  background: var(--accent-soft);
  color: var(--accent);
}
.compare-cell .check.is-no {
  background: #FBEAEA;
  color: #A33A3A;
}
.compare-cell .check.is-mid {
  background: var(--paper);
  color: var(--ink-softer);
}
.compare-row { display: contents; }
@media (max-width: 880px) {
  /* Compare → vertical card-per-row layout on mobile */
  .compare {
    grid-template-columns: 1fr;
    border: 0;
    background: transparent;
    gap: 12px;
  }
  .compare-row {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
  }
  .compare-row.is-header { display: none; }
  .compare-cell {
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--rule-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--ink-soft);
  }
  .compare-cell:last-child { border-bottom: 0; }
  .compare-row .compare-row-label,
  .compare-row .compare-cell:first-child {
    font-weight: 600;
    color: var(--ink);
    background: var(--paper);
    font-size: 14px;
    border-bottom: 1px solid var(--rule);
    letter-spacing: -0.015em;
    justify-content: flex-start;
  }
  /* Add column labels via data-col attribute */
  .compare-cell[data-col]::before {
    content: attr(data-col);
    font-family: var(--f-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-softer);
    font-weight: 500;
  }
  .compare-cell[data-col].is-us-mobile {
    background: var(--ink);
    color: var(--bg);
  }
  .compare-cell[data-col].is-us-mobile::before { color: var(--accent-pale); }
}

/* ============================================================
   MOBILE GLOBAL TIGHTENING
   ============================================================ */
@media (max-width: 760px) {
  /* Tighter section padding on mobile */
  :root {
    --section-y: clamp(60px, 12vw, 96px);
    --hero-y: clamp(80px, 18vw, 120px);
    --pad-x: 22px;
  }

  /* Mockup body reduces padding on mobile */
  .ui-mockup-body { padding: 18px 16px; }
  .ui-mockup-header { padding: 10px 14px; }
  .ui-mockup-url { font-size: 10px; padding: 4px 10px; }

  /* Hero CTAs stack on small phones */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  /* Tighter section eyebrow + headline on mobile */
  .section-h { margin-bottom: 24px; }
  .section-sub { margin-bottom: 36px; font-size: 16px; }
  .stats { margin-top: 32px; }
  .tiers, .stages, .process-steps, .insights-grid, .compare, .faq { margin-top: 36px; }

  /* Diagram cleaner on mobile */
  .diagram { padding: 24px 16px; margin: 36px 0; }

  /* Live widget — reduce padding */
  .live-widget { padding: 18px 20px; }
  .live-widget-row { padding: 10px 0; }

  /* Final CTA tighter */
  .final-cta h2 { line-height: 1.04; }

  /* Footer mobile compact */
  .footer { padding: 56px 22px 36px; }
}

@media (max-width: 480px) {
  /* Hero headline a touch smaller on tiny screens */
  .hero-headline { font-size: 56px; }

  /* Mockup widths cap */
  .ui-mockup { border-radius: 10px; }
  .ui-mockup-header { padding: 8px 12px; gap: 6px; }
  .ui-mockup-dot { width: 9px; height: 9px; }

  /* Chat messages smaller */
  .chat-message-bubble { font-size: 13px; padding: 10px 12px; }
  .chat-message-avatar { width: 28px; height: 28px; font-size: 11px; }

  /* Report rows tighter */
  .report-head-title { font-size: 16px; }
  .report-row { font-size: 12px; padding: 10px 0; }
  .report-row-value { font-size: 12px; }
  .report-total-value { font-size: 22px; }

  /* Pipeline cards tighter */
  .pipeline-card { padding: 8px 10px; }
  .pipeline-card-name { font-size: 12px; }
  .pipeline-card-meta { font-size: 9px; }

  /* Review cards */
  .review-card { padding: 12px 14px; }
  .review-card-text { font-size: 12px; }
  .review-card-reply { padding: 10px 12px; }
  .review-card-reply-text { font-size: 12px; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq {
  margin-top: 56px;
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 28px 0;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: -0.02em;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  transition: color var(--t-fast) var(--ease);
}
.faq-q:hover { color: var(--accent); }
.faq-q-icon {
  font-family: var(--f-mono);
  font-size: 18px;
  color: var(--accent);
  font-weight: 500;
  transition: transform var(--t-med) var(--ease);
  flex-shrink: 0;
}
.faq-item.is-open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med) var(--ease), padding var(--t-med) var(--ease);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-item.is-open .faq-a {
  max-height: 400px;
  padding: 0 0 28px;
}
.faq-a p { margin: 0 0 14px; max-width: 64ch; }
.faq-a p:last-child { margin-bottom: 0; }

/* ============================================================
   FINAL CTA — full-bleed black with form preview teaser
   ============================================================ */
.final-cta {
  background: var(--black);
  color: rgba(255, 255, 255, 0.92);
  padding: var(--section-y) var(--pad-x);
  text-align: center;
}
.final-cta-inner { max-width: 820px; margin: 0 auto; }
.final-cta-eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--accent-pale);
  margin: 0 0 24px;
  font-weight: 500;
}
.final-cta h2 {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.14;
  letter-spacing: -0.022em;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 20px;
  font-feature-settings: "ss01", "cv11";
}
.final-cta h2 em {
  font-style: normal;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.022em;
}
.final-cta p {
  font-size: clamp(17px, 1.8vw, 21px);
  color: rgba(255, 255, 255, 0.72);
  max-width: 56ch;
  margin: 0 auto 48px;
  line-height: 1.55;
}
.final-cta .btn-primary {
  background: var(--bg);
  color: var(--ink);
}
.final-cta .btn-primary:hover { background: var(--accent); color: var(--bg); }

/* Content calendar mockup */
.calendar {
  background: var(--bg);
}
.calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 16px;
}
.calendar-month {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.calendar-meta {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-softer);
}
.calendar-meta strong { color: var(--accent); font-weight: 600; }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-day-h {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-softer);
  text-align: center;
  padding: 8px 0;
}
.calendar-cell {
  aspect-ratio: 1;
  background: var(--paper);
  border-radius: 5px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 11px;
  position: relative;
  min-height: 64px;
  overflow: hidden;
}
.calendar-cell.is-empty { background: transparent; }
.calendar-cell.is-today {
  background: var(--accent-soft);
  outline: 1px solid var(--accent);
}
.calendar-cell-date {
  font-family: var(--f-mono);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 500;
}
.calendar-post {
  background: var(--accent);
  color: var(--bg);
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--f-sans);
}
.calendar-post.is-fb { background: var(--ink); }
.calendar-post.is-reel { background: var(--accent-deep); }
.calendar-post.is-story { background: var(--ink-soft); }

/* Lead pipeline mockup */
.pipeline {
  background: var(--bg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pipeline-col {
  background: var(--paper);
  border-radius: 8px;
  padding: 14px;
  min-height: 280px;
}
.pipeline-col-h {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.pipeline-col-name {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.pipeline-col-count {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
}
.pipeline-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.pipeline-card-name {
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
  font-size: 13px;
  letter-spacing: -0.01em;
}
.pipeline-card-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-softer);
}
.pipeline-card-source {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 6px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 3px;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 600;
}
@media (max-width: 880px) {
  .calendar-grid { font-size: 10px; }
  .calendar-cell { min-height: 52px; padding: 4px 5px; }
  .calendar-post { font-size: 8px; padding: 1px 3px; }
  .calendar-month { font-size: 16px; }

  /* Pipeline → horizontal snap-scroll on mobile */
  .pipeline {
    grid-template-columns: 220px 220px 220px 220px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    margin: 0 calc(var(--pad-x) * -0.5);
    padding-left: calc(var(--pad-x) * 0.5);
    padding-right: calc(var(--pad-x) * 0.5);
  }
  .pipeline-col {
    scroll-snap-align: start;
    flex-shrink: 0;
    min-height: 240px;
  }
  .pipeline::-webkit-scrollbar { height: 4px; }
  .pipeline::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 4px; }
}
@media (max-width: 600px) {
  /* Calendar — even tighter on small phones */
  .calendar-cell { min-height: 42px; padding: 3px 4px; }
  .calendar-cell-date { font-size: 9px; }
  .calendar-post {
    font-size: 0;
    padding: 2px;
    border-radius: 2px;
    min-height: 4px;
  }
  /* Show colored dot only on mobile */
  .calendar-day-h { font-size: 9px; padding: 4px 0; }
}

/* Stylized AI receptionist conversation — inside ui-mockup */
.chat-message {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.chat-message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}
.chat-message.is-ai .chat-message-avatar {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.chat-message-bubble {
  flex: 1;
  background: var(--paper);
  padding: 12px 16px;
  border-radius: 14px;
  border-top-left-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}
.chat-message.is-ai .chat-message-bubble {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.94);
  border-top-left-radius: 14px;
  border-top-right-radius: 4px;
  font-weight: 400;
}
.chat-message-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-softer);
  margin-top: 4px;
}

/* ============================================================
   8-STAGE SYSTEM DIAGRAM (clean tech feel)
   ============================================================ */
.diagram {
  margin: 64px 0;
  padding: 48px 32px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
}
.diagram-stages {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  position: relative;
}
.diagram-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 4px;
}
.diagram-stage::before {
  content: "";
  position: absolute;
  top: 11px;
  left: -50%;
  right: 50%;
  height: 1px;
  background: var(--rule);
}
.diagram-stage:first-child::before { display: none; }
.diagram-stage-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diagram-stage-dot::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.diagram-stage-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-softer);
  margin: 0 0 6px;
}
.diagram-stage-title {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
@media (max-width: 880px) {
  .diagram { padding: 36px 24px; }
  .diagram-stages { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .diagram-stage::before { display: none; }
}

/* ============================================================
   STAGE LIST
   ============================================================ */
.stages {
  margin-top: 32px;
  border-top: 1px solid var(--rule);
}
.stage-row {
  display: grid;
  grid-template-columns: 80px 1.3fr 2fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  transition: background var(--t-med) var(--ease);
}
.stage-row:hover { background: var(--paper); }
.stage-num {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0;
}
.stage-title {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.018em;
}
.stage-tag {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--accent);
  margin: 0;
}
.stage-body {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
  max-width: 60ch;
}
@media (max-width: 800px) {
  .stage-row { grid-template-columns: 56px 1fr; gap: 16px; padding: 28px 0; }
  .stage-body { grid-column: 2; margin-top: 12px; }
  .stage-title { font-size: 20px; }
}

/* ============================================================
   TIERS — clean cards
   ============================================================ */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.tier {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color var(--t-fast) var(--ease),
              transform var(--t-med) var(--ease);
}
.tier:hover { border-color: var(--ink); transform: translateY(-2px); }
.tier.is-featured {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.tier.is-featured:hover { transform: translateY(-2px); }
.tier-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  margin: 0;
  font-weight: 500;
}
.tier-name {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.022em;
}
.tier.is-featured .tier-name { color: var(--bg); }
.tier-name em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.tier.is-featured .tier-name em { color: var(--accent-pale); }
.tier-blurb {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}
.tier.is-featured .tier-blurb { color: rgba(255, 255, 255, 0.72); }
.tier-price {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
  margin: 0;
}
.tier.is-featured .tier-price { border-color: rgba(255, 255, 255, 0.16); }
.tier-price-setup {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.tier.is-featured .tier-price-setup { color: var(--bg); }
.tier-price-setup span {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-softer);
  font-weight: 500;
  margin-left: 6px;
}
.tier.is-featured .tier-price-setup span { color: rgba(255, 255, 255, 0.5); }
.tier-price-mo {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 10px;
}
.tier.is-featured .tier-price-mo { color: rgba(255, 255, 255, 0.7); }
.tier-price-mo strong { color: var(--ink); font-weight: 700; }
.tier.is-featured .tier-price-mo strong { color: var(--bg); }
.tier-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier-includes li {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}
.tier.is-featured .tier-includes li { color: rgba(255, 255, 255, 0.85); }
.tier-includes li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}
.tier-exit {
  font-size: 12px;
  color: var(--ink-softer);
  border-top: 1px solid var(--rule-soft);
  padding-top: 16px;
  margin: 0;
  font-style: italic;
}
.tier.is-featured .tier-exit { color: rgba(255, 255, 255, 0.58); border-color: rgba(255, 255, 255, 0.12); }
@media (max-width: 980px) {
  .tiers { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--rule);
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1.3fr 2fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  transition: background var(--t-med) var(--ease);
}
.process-step:hover { background: var(--paper); }
.process-step-num {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 14px;
  color: var(--accent);
}
.process-step-title {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.018em;
}
.process-step-meta {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--accent);
  margin: 0;
}
.process-step-body {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 880px) {
  .process-step { grid-template-columns: 56px 1fr; gap: 16px; padding: 32px 0; }
  .process-step-body { grid-column: 2; margin-top: 14px; }
  .process-step-title { font-size: 22px; }
}

/* ============================================================
   FOUNDERS — clean type, no photography
   ============================================================ */
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}
.founder-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 48px 40px;
  transition: border-color var(--t-fast) var(--ease);
}
.founder-card:hover { border-color: var(--ink); }
.founder-mono {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 16px;
  font-weight: 500;
}
.founder-name {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.022em;
}
.founder-role {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.founder-bio {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  max-width: 50ch;
}
@media (max-width: 880px) {
  .founders { grid-template-columns: 1fr; gap: 20px; }
  .founder-card { padding: 36px 28px; }
}

/* ============================================================
   INSIGHTS GRID — clean cards
   ============================================================ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.insight-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 32px 28px;
  transition: border-color var(--t-fast) var(--ease),
              transform var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.insight-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.insight-card-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  margin: 0;
  font-weight: 500;
}
.insight-card-title {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.018em;
}
.insight-card-status {
  font-size: 13px;
  color: var(--ink-softer);
  margin: 0;
  margin-top: 8px;
}
@media (max-width: 980px) {
  .insights-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   APPLY FORM
   ============================================================ */
.apply-form {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 56px 48px;
  margin-top: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.form-section {
  margin-bottom: 36px;
}
.form-section:last-of-type { margin-bottom: 28px; }
.form-section-h {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-softer);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 12px;
  width: 100%;
}
.form-section-h::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { margin-bottom: 22px; }
.field:last-child { margin-bottom: 0; }
.field-label {
  display: block;
  font-family: var(--f-sans);
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.field-label .required {
  color: var(--accent);
  font-weight: 400;
  margin-left: 2px;
}
.field-hint {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-softer);
  margin: 0 0 10px;
  font-style: italic;
}
.field-input,
.field-select,
.field-textarea {
  width: 100%;
  font-family: var(--f-sans);
  font-size: 15px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 8px;
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field-input::placeholder,
.field-textarea::placeholder { color: var(--ink-softer); }
.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(44, 95, 255, 0.10);
}
.field-textarea { resize: vertical; min-height: 150px; line-height: 1.55; padding: 14px 16px; }
.field-select {
  /* custom dropdown arrow */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237A8198' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--bg);
  border: 0;
  padding: 14px 26px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
  font-family: var(--f-sans);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.04) inset,
    0 6px 18px -4px rgba(15, 17, 23, 0.30),
    0 2px 5px -1px rgba(44, 95, 255, 0.18);
}
.form-submit:hover {
  background: #1A1E2D;
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.06) inset,
    0 12px 28px -6px rgba(15, 17, 23, 0.40),
    0 4px 10px -2px rgba(44, 95, 255, 0.30);
}
.form-submit .arrow { font-size: 16px; transition: transform var(--t-med) var(--ease); }
.form-submit:hover .arrow { transform: translateX(4px); }
.form-foot {
  margin-top: 18px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-softer);
  text-align: left;
}
.form-success {
  display: none;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--accent-soft);
  border: 1px solid var(--accent-pale);
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 24px;
}
.form-success.is-visible { display: block; }
@media (max-width: 760px) {
  .apply-form { padding: 32px 24px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   PHILOSOPHY — long-form pull-quotes
   ============================================================ */
.pull {
  font-family: var(--f-sans);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.28;
  color: var(--ink);
  border-left: 2px solid var(--accent);
  padding: 12px 0 12px 28px;
  margin: 56px 0;
  max-width: 760px;
  letter-spacing: -0.022em;
}

/* ============================================================
   DARK SECTION (true black, high-impact)
   ============================================================ */
.section.is-dark {
  background: var(--black);
  color: rgba(255, 255, 255, 0.92);
}
.section.is-dark .section-eyebrow { color: var(--accent-pale); }
.section.is-dark .section-h { color: rgba(255, 255, 255, 1); }
.section.is-dark .section-h em { color: var(--accent-pale); }
.section.is-dark .section-sub { color: rgba(255, 255, 255, 0.72); }
.section.is-dark .prose p { color: rgba(255, 255, 255, 0.85); }
.section.is-dark .pull {
  color: rgba(255, 255, 255, 0.96);
  border-left-color: var(--accent-pale);
}
.section.is-dark .display-quote { color: rgba(255, 255, 255, 0.96); }
.section.is-dark .display-quote em { color: var(--accent-pale); }

/* ============================================================
   INDIGO SECTION — secondary high-impact moment
   Deep indigo with champagne gold accents. Luxury watch dial.
   ============================================================ */
.section.is-indigo {
  background:
    radial-gradient(ellipse at 85% 15%, rgba(44, 95, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 90%, rgba(44, 95, 255, 0.10) 0%, transparent 55%),
    var(--black);
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  overflow: hidden;
}
.section.is-indigo::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(44, 95, 255, 0.5);
}
.section.is-indigo .section-eyebrow {
  color: var(--accent-pale);
}
.section.is-indigo .section-h { color: #FFFFFF; }
.section.is-indigo .section-h em {
  color: var(--accent-pale);
}
.section.is-indigo .section-sub { color: rgba(248, 246, 241, 0.72); }
.section.is-indigo .display-quote { color: #FFFFFF; }
.section.is-indigo .display-quote em {
  color: var(--accent-pale);
}
.section.is-indigo .prose p { color: rgba(248, 246, 241, 0.86); }
.section.is-indigo .prose strong { color: #FFFFFF; }
.section.is-indigo .attribution {
  color: var(--accent-pale);
}
.section.is-indigo .btn-primary {
  background: var(--accent);
  color: var(--ink);
}
.section.is-indigo .btn-primary:hover { background: var(--bg); color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--rule);
  padding: 80px var(--pad-x) 48px;
  background: var(--bg);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.footer-mark {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 14px;
}
.footer-mark .dot { color: var(--accent); margin: 0 1px; }
.footer-tagline {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 360px;
  margin: 0;
  line-height: 1.55;
}
.footer-col-h {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color var(--t-fast) var(--ease);
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 56px auto 0;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-softer);
}
.footer-bottom .dot { color: var(--accent); }
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 14px; align-items: flex-start; }
}
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 1; transform: none; }
html.js-revealing .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
  will-change: opacity, transform;
}
html.js-revealing .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js-revealing .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.center { text-align: center; }
.center.section-h { margin-left: auto; margin-right: auto; }
.display-quote {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  max-width: 30ch;
  font-feature-settings: "ss01", "cv11";
}
.display-quote em {
  font-style: italic;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: -0.018em;
}
.attribution {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--accent);
  margin-top: 28px;
  display: inline-block;
}

/* Override v3-v5 imagery classes — disable so old images don't render */
.image-band, .image-text-band, .founder-img, .insight-card-img { display: none !important; }
