@font-face {
  font-family: "Geist";
  src: url("fonts/Geist.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("fonts/GeistMono.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --orange: #ff5a1f;
  --orange-deep: #e74610;
  --ink: #181818;
  --muted: #666663;
  --paper: #ffffff;
  --paper-warm: #faf8f4;
  --paper-blue: #edf3f7;
  --blue: #9ab0c1;
  --green: #8eaa45;
  --line: rgba(24, 24, 24, 0.11);
  --line-light: rgba(255, 255, 255, 0.3);
  --shadow: 0 14px 42px rgba(24, 24, 24, 0.08);
  --page: 1240px;
  --footer-h: 640px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html {
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
}

body.drawer-open {
  overflow: hidden;
}

main {
  position: relative;
  z-index: 2;
  background: var(--paper);
  /* Establish a BFC so the hero's top margin doesn't collapse out of main.
     Without it, that 8px strip goes unpainted and the fixed scroll-reveal
     footer (which covers the whole viewport on short/scaled screens) shows
     its blue sky through the gap above the hero. */
  display: flow-root;
}

.footer-spacer {
  height: var(--footer-h);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

button:focus-visible,
a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(24, 24, 24, 0.06);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(24, 24, 24, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 36px;
}

.wordmark {
  display: inline-block;
  color: var(--ink);
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}

.wordmark span,
.wordmark i {
  color: var(--orange);
}

.wordmark i {
  font-style: normal;
}

.brand-logo {
  display: block;
  height: 22px;
  width: auto;
}

.drawer-head .brand-logo {
  height: 24px;
}

.site-footer .brand-logo {
  height: 26px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.desktop-nav a,
.nav-trigger {
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.desktop-nav a:hover,
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  background: rgba(24, 24, 24, 0.04);
}

.nav-trigger svg {
  width: 14px;
  height: 14px;
  color: rgba(24, 24, 24, 0.52);
  transition: transform 180ms ease;
}

.nav-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-header {
  min-height: 36px;
  padding: 0 15px;
  border-radius: 9px;
  font-size: 15px;
}

.button-quiet {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-orange {
  color: #fff;
  background: var(--orange);
}

.button-light {
  min-width: 220px;
  min-height: 52px;
  color: var(--ink);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(107, 43, 12, 0.12);
}

.button-glass {
  min-height: 52px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.44);
}

.button-glass svg {
  width: 18px;
  height: 18px;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 25px;
  height: 1px;
  background: var(--ink);
}

.mega-menu {
  position: fixed;
  top: 59px;
  left: 50%;
  z-index: 45;
  width: min(820px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mega-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 8px);
}

.label,
.eyebrow,
.product-label,
.step-label {
  margin-bottom: 14px;
  color: var(--orange-deep);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mega-intro h2 {
  margin-bottom: 12px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.mega-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 22px;
}

.mega-links {
  display: grid;
}

.mega-links a {
  min-height: 64px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.mega-links a:first-child {
  border-top: 1px solid var(--line);
}

.mega-links a:hover strong {
  color: var(--orange-deep);
}

.mega-links span {
  color: var(--blue);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
}

.mega-links strong {
  font-size: 16px;
  font-weight: 500;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  grid-template-rows: auto 1fr auto;
  padding: 18px 20px 28px;
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-close {
  width: 44px;
  height: 44px;
  position: relative;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.drawer-close span {
  position: absolute;
  top: 21px;
  left: 9px;
  width: 26px;
  height: 1px;
  background: var(--ink);
}

.drawer-close span:first-child {
  transform: rotate(45deg);
}

.drawer-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-drawer nav {
  align-self: center;
  display: grid;
}

.mobile-drawer nav a {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 28px;
  font-weight: 500;
}

.mobile-drawer nav span {
  color: var(--blue);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
}

.drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero {
  height: calc(100svh - 80px);
  min-height: 720px;
  max-height: 920px;
  position: relative;
  margin: 8px 10px 0;
  overflow: hidden;
  border-radius: 14px;
  color: #fff;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(255, 79, 20, 0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-kicker {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.18);
  color: rgba(255, 255, 255, 0.98);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
}

.hero-kicker span {
  font-weight: 600;
}

.hero-kicker i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
}

.hero h1 {
  margin: 30px 0 0;
  color: #fff;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.028em;
}

.hero-copy {
  max-width: 480px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  line-height: 26px;
}

.hero-rule {
  margin: 14px 0 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 30px;
}

.section {
  width: min(var(--page), calc(100% - 96px));
  margin: 0 auto;
  padding: 150px 0;
}

.section-copy h2,
.section-heading h2,
.story-inner h2,
.final-inner h2,
.voice-head h2 {
  margin-bottom: 28px;
  font-size: 60px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.028em;
}

.section-copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 28px;
}

.section-copy .lede {
  color: var(--ink);
  font-size: 22px;
  line-height: 31px;
}

/* Platform — dashboard showcase */
.platform-section {
  width: min(var(--page), calc(100% - 96px));
  margin: 0 auto;
  padding: 150px 0 40px;
}

.platform-head {
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: center;
}

.platform-head h2 {
  margin: 0 0 22px;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.028em;
}

.platform-sub {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 29px;
}

.platform-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 40px 90px -30px rgba(24, 24, 24, 0.28);
  overflow: hidden;
}

.platform-glow {
  position: absolute;
  left: 50%;
  top: -12%;
  width: 60%;
  height: 55%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255, 90, 31, 0.16), transparent 70%);
  pointer-events: none;
}

.platform-frame img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

/* Split feature — two-panel grid */
.split-section {
  width: min(var(--page), calc(100% - 96px));
  margin: 0 auto;
  padding: 150px 0;
}

.slice-stack {
  margin-top: 64px;
  border: 1px solid var(--line);
}

.slice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.slice + .slice {
  border-top: 1px solid var(--line);
}

.slice-visual {
  display: flex;
  padding: 40px;
  border-right: 1px solid var(--line);
}

.slice:nth-child(even) .slice-visual {
  order: 2;
  border-right: 0;
  border-left: 1px solid var(--line);
}

.slice-visual .split-mock {
  flex: 1;
  border-bottom: 0;
}

.slice-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 48px;
}

.slice-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: var(--muted);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.slice-eyebrow b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 90, 31, 0.3);
  border-radius: 999px;
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 600;
}

.slice-copy h3 {
  margin: 0 0 16px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.022em;
}

.slice-copy p {
  margin: 0 0 26px;
  max-width: 44ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

/* Reply thread mock — step 03 */
.reply-thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0 4px;
}

.reply-bubble {
  max-width: 84%;
  padding: 12px 15px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.46;
}

.reply-bubble.me {
  align-self: flex-end;
  background: var(--orange);
  color: #fff;
  border-bottom-right-radius: 5px;
}

.reply-bubble.them {
  align-self: flex-start;
  background: rgba(24, 24, 24, 0.05);
  color: var(--ink);
  border-bottom-left-radius: 5px;
}

.reply-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
}

.reply-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 500;
}

.reply-meta {
  color: var(--muted);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
}

.mock-tag--live {
  border-color: rgba(255, 90, 31, 0.28);
}

.split-mock {
  flex: 1;
  padding: 40px 40px 36px;
  border-bottom: 1px solid var(--line);
}

.mock-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted);
}

.mock-url b {
  color: var(--ink);
  font-weight: 500;
}

.mock-query {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: rgba(24, 24, 24, 0.7);
  font-size: 13.5px;
}

.mock-query svg {
  width: 15px;
  height: 15px;
  color: var(--orange-deep);
}

.mock-people {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mock-people li {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.mock-people img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.mock-people span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}

.mock-people strong {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.mock-people small {
  color: var(--muted);
  font-size: 12.5px;
}

.mock-people li > b {
  padding: 3px 9px;
  border: 1px solid rgba(255, 90, 31, 0.28);
  border-radius: 999px;
  color: var(--orange-deep);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
}

.mock-person {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.mock-person img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.mock-person div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.mock-person strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.mock-person small {
  color: var(--muted);
  font-size: 13px;
}

.mock-tag {
  padding: 4px 10px;
  border: 1px solid rgba(255, 90, 31, 0.28);
  border-radius: 999px;
  color: var(--orange-deep);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.mock-signals {
  display: grid;
  margin: 0 0 4px;
  padding: 0;
  list-style: none;
}

.mock-signals li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.mock-signals i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.mock-signals time {
  color: var(--muted);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
}

.mock-routes {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
}

.route-stack {
  display: inline-flex;
  align-items: center;
}

.route-stack img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  object-fit: cover;
  margin-left: -8px;
}

.route-stack img:first-child {
  margin-left: 0;
}

.route-stack b {
  margin-left: 8px;
  color: var(--muted);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
}

.route-label {
  color: var(--muted);
  font-size: 13.5px;
}

.split-copy {
  padding: 32px 40px 40px;
}

.split-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.split-eyebrow svg {
  width: 15px;
  height: 15px;
  color: var(--orange-deep);
}

.split-copy h3 {
  margin: 0 0 20px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.018em;
}

.split-copy h3 span {
  color: var(--muted);
}

.split-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange-deep);
  font-size: 15px;
  font-weight: 500;
}

.split-link span {
  transition: transform 160ms ease;
}

.split-link:hover span {
  transform: translateX(3px);
}

/* Live discovery feed — names stream in with shimmer */
.feed-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted);
}

.feed-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pulse {
  position: relative;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
}

.pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-ring 1.7s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(3.4); opacity: 0; }
}

.feed-count {
  font-variant-numeric: tabular-nums;
}

.feed-count b {
  color: var(--ink);
  font-weight: 600;
}

.feed-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feed-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  max-height: 62px;
  padding: 9px 2px;
  overflow: hidden;
  border-radius: 8px;
  transition: max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.42s ease, transform 0.42s ease;
}

.feed-row + .feed-row {
  border-top: 1px solid var(--line);
}

.feed-row.is-entering {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-8px);
  border-top-color: transparent;
}

.feed-row.is-resolved {
  animation: resolve-flash 0.9s ease;
}

@keyframes resolve-flash {
  0% { background: rgba(255, 90, 31, 0.09); }
  100% { background: transparent; }
}

.feed-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.feed-id {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.3;
}

.feed-id strong {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.feed-id small {
  overflow: hidden;
  color: var(--muted);
  font-size: 12.5px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.feed-score {
  padding: 3px 9px;
  border: 1px solid rgba(255, 90, 31, 0.28);
  border-radius: 999px;
  color: var(--orange-deep);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
}

/* shimmer skeletons */
.skel {
  position: relative;
  overflow: hidden;
  background: rgba(24, 24, 24, 0.06);
}

.feed-av.skel {
  border-radius: 50%;
}

.feed-score.skel {
  width: 32px;
  height: 22px;
  border: 0;
  border-radius: 999px;
}

.skel-line {
  position: relative;
  height: 10px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(24, 24, 24, 0.06);
}

.skel-line + .skel-line {
  margin-top: 7px;
}

.skel::after,
.skel-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.8) 50%, transparent 80%);
  animation: shimmer 1.3s ease-in-out infinite;
}

@keyframes shimmer {
  to { transform: translateX(100%); }
}

/* Agentic metrics strip — slim live status readout */
/* Live ticker — scrolling metrics band */
.ticker {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 40px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.ticker-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.ticker-dots {
  display: grid;
  grid-template-columns: repeat(3, 3px);
  gap: 3px;
}

.ticker-dots i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--orange);
  animation: dotPulse 1.5s ease-in-out infinite;
}

.ticker-dots i:nth-child(1) { animation-delay: 0s; }
.ticker-dots i:nth-child(2) { animation-delay: 0.12s; }
.ticker-dots i:nth-child(3) { animation-delay: 0.24s; }
.ticker-dots i:nth-child(4) { animation-delay: 0.36s; }
.ticker-dots i:nth-child(5) { animation-delay: 0.48s; }
.ticker-dots i:nth-child(6) { animation-delay: 0.6s; }
.ticker-dots i:nth-child(7) { animation-delay: 0.72s; }
.ticker-dots i:nth-child(8) { animation-delay: 0.84s; }
.ticker-dots i:nth-child(9) { animation-delay: 0.96s; }

@keyframes dotPulse {
  0%, 100% { opacity: 0.22; }
  50% { opacity: 1; }
}

.ticker-viewport {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 44px, #000 calc(100% - 72px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 44px, #000 calc(100% - 72px), transparent 100%);
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0 40px;
  list-style: none;
  white-space: nowrap;
  animation: tickerScroll 52s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  to { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.ti-label {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ti-label::after { content: ":"; }

.ti-val {
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper-warm);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.ti-val.is-bumped {
  border-color: rgba(255, 90, 31, 0.55);
  color: var(--orange-deep);
}

@media (prefers-reduced-motion: reduce) {
  .ticker-dots i { animation: none; opacity: 0.7; }
  .ticker-viewport {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .ticker-track {
    animation: none;
    flex-wrap: wrap;
    white-space: normal;
    padding: 0;
    gap: 14px 30px;
  }
}

/* Founder voice — testimonial grid */
.voice-section {
  position: relative;
  width: 100%;
  padding: 150px 0 160px;
  overflow: hidden;
}

.voice-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 620px;
  background-image: radial-gradient(rgba(24, 24, 24, 0.07) 1px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 52% 60% at 50% 26%, #000, transparent 72%);
  mask-image: radial-gradient(ellipse 52% 60% at 50% 26%, #000, transparent 72%);
  pointer-events: none;
}

.voice-head {
  position: relative;
  width: min(var(--page), calc(100% - 96px));
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}

.fc-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 7px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fc-chip i {
  color: var(--orange);
  font-style: normal;
}

.voice-head h2 span {
  color: var(--orange);
}

.fc-sub {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 28px;
}

.voice-wall {
  position: relative;
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.fc-row {
  overflow: hidden;
}

.fc-row--right,
.fc-row--c {
  border-top: 1px solid var(--line);
}

.fc-row--c .fc-track {
  animation-duration: 50s;
}

.fc-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: fc-scroll 62s linear infinite;
}

.fc-row--right .fc-track {
  animation-duration: 74s;
  animation-direction: reverse;
}

.fc-row:hover .fc-track {
  animation-play-state: paused;
}

@keyframes fc-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.fc-card {
  position: relative;
  width: 384px;
  flex: 0 0 384px;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
  background: var(--paper);
  transition: background 180ms ease;
}

.fc-card::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 180ms ease;
}

.fc-card:hover {
  background: var(--paper-warm);
}

.fc-card:hover::before {
  opacity: 1;
}

.fc-head-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.fc-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  background: var(--paper-blue);
}

.fc-avatar--reddit {
  border-radius: 12px;
  background: #ff5700;
}

.fc-id {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.3;
}

.fc-id strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.fc-id span {
  color: var(--muted);
  font-size: 13px;
}

.fc-arrow {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 17px;
  height: 17px;
  color: var(--orange);
  opacity: 0;
  transform: translate(-3px, 3px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.fc-card:hover .fc-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.fc-quote {
  margin: 0;
  color: rgba(24, 24, 24, 0.86);
  font-size: 16px;
  line-height: 1.55;
}

.problem-section {
  min-height: 920px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 90px;
}

.problem-visual {
  height: 720px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-warm);
}

.problem-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.problem-copy {
  max-width: 510px;
}

.text-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  border-bottom: 1px solid var(--ink);
  font-size: 16px;
  font-weight: 500;
}

.story-section {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--orange);
}

.story-texture,
.story-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-texture {
  object-fit: cover;
  opacity: 0.74;
}

.story-overlay {
  background: rgba(180, 49, 7, 0.18);
}

.story-inner {
  width: min(var(--page), calc(100% - 96px));
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.story-inner h2 {
  max-width: 760px;
  font-size: 72px;
}

.story-inner > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 29px;
}

.story-inner strong {
  display: inline-block;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  font-size: 18px;
  font-weight: 500;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.82);
}

.story-flight {
  width: 430px;
  height: 100px;
  position: absolute;
  right: 6vw;
  bottom: 110px;
  z-index: 3;
}

.flight-line {
  position: absolute;
  top: 49px;
  left: 18px;
  right: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.82);
}

.flight-start,
.flight-end {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 42px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: var(--orange);
}

.flight-start {
  left: 0;
}

.flight-end {
  right: 0;
  background: #fff;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.12);
}

.flight-capsule {
  position: absolute;
  top: 33px;
  left: 52%;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: var(--orange-deep);
  color: #fff;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10px;
  transform: translateX(-50%);
}

.how-section {
  padding-top: 160px;
  padding-bottom: 170px;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.section-heading > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto;
}

/* How it works — auto-advancing flow (tabs + animated demos) */
.flow {
  margin-top: 64px;
}

.flow-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.flow-tab {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.flow-line {
  display: block;
  height: 2px;
  position: relative;
  background: var(--line);
}

.flow-line i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--ink);
}

.flow-tab.is-active .flow-line { background: rgba(24, 24, 24, 0.16); }

.flow-name {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 16px;
  color: rgba(24, 24, 24, 0.42);
  font-size: 21px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.flow-name em {
  color: rgba(24, 24, 24, 0.34);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.flow-tab.is-active .flow-name { color: var(--ink); }
.flow-tab.is-active .flow-name em { color: rgba(24, 24, 24, 0.6); }
.flow-tab:hover .flow-name { color: rgba(24, 24, 24, 0.7); }

.flow-stage {
  position: relative;
  margin-top: 36px;
  min-height: 560px;
}

.flow-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: center;
  padding: 56px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(24, 24, 24, 0.07);
}

.flow-panel[hidden] { display: none; }

.flow-panel.is-active { animation: flowFade 0.5s ease both; }

@keyframes flowFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.flow-copy h3 {
  margin: 0 0 18px;
  font-size: 34px;
  font-weight: 500;
  line-height: 39px;
  letter-spacing: -0.01em;
}

.flow-copy > p {
  margin: 0;
  max-width: 360px;
  color: var(--muted);
  font-size: 16px;
  line-height: 25px;
}

.flow-demo {
  min-width: 0;
}

/* shared demo primitives */
.demo-av {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--paper-blue);
  color: #536a7a;
  font-size: 12px;
  font-weight: 500;
}

.demo-who {
  min-width: 0;
  display: grid;
  color: var(--muted);
  font-size: 13px;
  line-height: 17px;
}

.demo-who strong {
  color: var(--ink);
  font-weight: 500;
}

.demo-who small {
  color: rgba(24, 24, 24, 0.4);
  font-size: 12px;
}

/* 01 · Ask */
.demo-query {
  margin-left: auto;
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 12px 12px 4px 12px;
  background: var(--paper-warm);
  color: rgba(24, 24, 24, 0.82);
  font-size: 14px;
  line-height: 20px;
}

.demo-found {
  margin: 18px 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.demo-found span { color: var(--ink); font-weight: 500; }

.demo-people { display: grid; gap: 8px; }

.demo-hit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.demo-hit .demo-who { grid-auto-flow: row; }
.demo-hit .demo-who strong { display: inline; }

.demo-ch {
  margin-left: auto;
  display: flex;
  gap: 6px;
  color: rgba(24, 24, 24, 0.28);
}

.demo-ch b {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 400;
}

.demo-more {
  margin: 12px 0 0;
  color: rgba(24, 24, 24, 0.4);
  font-size: 13px;
}

/* stream-in animation for list rows */
.demo-stream-item {
  opacity: 0;
  transform: translateY(8px);
}

.demo-stream-item.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.42s ease, transform 0.42s ease;
}

/* 02 · Search */
.demo-status {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.demo-status span { color: var(--ink); font-weight: 500; }

.demo-table {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.demo-tr {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 44px;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.demo-tr:first-child { border-top: 0; }
.demo-tr span:first-child { color: var(--ink); font-weight: 500; }
.demo-tr span:nth-child(2) { color: var(--muted); }

.demo-thead {
  border-top: 0;
  background: var(--paper-warm);
  color: rgba(24, 24, 24, 0.42);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.demo-thead span:first-child { color: rgba(24, 24, 24, 0.42); font-weight: 400; }

.sig {
  justify-self: start;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 11px;
  line-height: 16px;
}

.sig-a { background: rgba(255, 90, 31, 0.1); color: var(--orange-deep); }
.sig-b { background: var(--paper-blue); color: #4a6579; }
.sig-c { background: rgba(142, 170, 69, 0.16); color: #5f7524; }

.demo-tr b {
  justify-self: end;
  color: var(--ink);
  font-weight: 500;
}

/* 03 · Understand */
.demo-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.demo-av-lg { width: 42px; height: 42px; font-size: 13px; }

.demo-tag {
  margin-left: auto;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(142, 170, 69, 0.18);
  color: #5f7524;
  font-size: 11px;
  font-weight: 500;
}

.demo-cap {
  margin: 18px 0 12px;
  color: rgba(24, 24, 24, 0.42);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.demo-signals { display: grid; gap: 8px; }

.demo-signals li {
  display: grid;
  gap: 3px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-warm);
}

.demo-signals strong { font-size: 14px; font-weight: 500; }
.demo-signals span { color: var(--muted); font-size: 13px; line-height: 18px; }

.demo-signals em {
  justify-self: start;
  margin-top: 4px;
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: rgba(24, 24, 24, 0.5);
  font-size: 11px;
  font-style: normal;
}

/* 04 · Approve */
.demo-mail {
  position: relative;
  padding: 10px 14px 22px 0;
}

.demo-mail-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.demo-mail-back,
.demo-mail-mid {
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  box-shadow: 0 10px 30px rgba(24, 24, 24, 0.05);
}

.demo-mail-back { top: 0; right: 34px; opacity: 0.55; }
.demo-mail-mid { top: 5px; right: 18px; opacity: 0.8; }

.demo-mail-front {
  position: relative;
  padding: 18px;
  box-shadow: 0 18px 44px rgba(24, 24, 24, 0.09);
}

.demo-mail-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.demo-mail-body {
  margin: 14px 0 16px;
  color: rgba(24, 24, 24, 0.82);
  font-size: 14px;
  line-height: 21px;
}

.demo-mail-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-voice {
  color: rgba(24, 24, 24, 0.42);
  font-size: 12px;
}

.demo-approve {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.demo-approve.is-sent { background: var(--green); }
.demo-approve i { font-style: normal; }

.demo-sent {
  margin: 16px 0 0;
  color: var(--green);
  font-size: 13px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.demo-sent.is-in { opacity: 1; transform: none; }

.control-section {
  min-height: 880px;
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: var(--paper-warm);
}

.control-texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
}

.control-inner {
  width: min(var(--page), calc(100% - 96px));
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 100px;
  margin: 0 auto;
}

.control-copy {
  max-width: 500px;
}

.control-copy > strong {
  display: inline-block;
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 18px;
  font-weight: 500;
}

.product-shell {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24, 24, 24, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(69, 57, 47, 0.12);
}

.product-topbar {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.product-brand {
  font-size: 20px;
  font-weight: 500;
}

.product-brand span,
.product-brand i {
  color: var(--orange);
  font-style: normal;
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.product-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.product-body {
  display: grid;
  gap: 18px;
  padding: 24px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.person-head {
  min-height: 72px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--paper-blue);
  color: #526b7c;
  font-size: 16px;
  font-weight: 500;
}

.person-head h3 {
  margin: 0 0 2px;
  font-size: 21px;
  font-weight: 500;
  line-height: 25px;
}

.person-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.match-score {
  padding: 7px 10px;
  border: 1px solid rgba(255, 90, 31, 0.22);
  border-radius: 999px;
  color: var(--orange-deep);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.why-panel,
.message-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.why-panel .product-label,
.message-panel .product-label {
  margin-bottom: 12px;
}

.why-panel ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-panel li {
  position: relative;
  padding-left: 18px;
  color: rgba(24, 24, 24, 0.78);
  font-size: 14px;
  line-height: 20px;
}

.why-panel li::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 7px;
  left: 0;
  border-radius: 50%;
  background: var(--orange);
}

.message-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.message-head span {
  color: var(--green);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.message-panel > p:last-child {
  margin: 0;
  color: rgba(24, 24, 24, 0.78);
  font-size: 15px;
  line-height: 22px;
}

.message-panel > p.is-editing {
  outline: 1px solid rgba(255, 90, 31, 0.5);
  outline-offset: 6px;
}

.approval-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.approval-actions .button {
  min-height: 44px;
  border-radius: 8px;
}

.delivered-state {
  position: absolute;
  inset: 58px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.delivered-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: rgba(142, 170, 69, 0.13);
  color: #607829;
}

.delivered-icon svg {
  width: 30px;
  height: 30px;
}

.delivered-state h3 {
  margin: 0 0 12px;
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
}

.delivered-state > p:not(.product-label) {
  max-width: 360px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.product-shell.is-delivered .product-body {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.product-shell.is-delivered .delivered-state {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.product-shell.is-delivered .product-status {
  color: #607829;
}

.product-shell.is-delivered .product-status i {
  background: var(--green);
}

/* Use cases — live prompt console inside the hero (Bond-style) */
.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 80px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 54px;
  padding: 84px 0 44px;
}

.hero-demo {
  position: relative;
  width: 100%;
  max-width: 540px;
  justify-self: end;
}

.uc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.uc-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}

.uc-chip:hover {
  background: rgba(255, 255, 255, 0.2);
}

.uc-chip.is-active {
  background: #fff;
  border-color: #fff;
  color: #181818;
}

.uc-chip-label {
  position: relative;
  z-index: 1;
}

.uc-chip-bar {
  position: absolute;
  inset: 0;
  opacity: 0;
  border-radius: 999px;
  overflow: hidden;
}

.uc-chip.is-active .uc-chip-bar {
  opacity: 0.14;
}

.uc-chip-bar b {
  display: block;
  width: 100%;
  height: 100%;
  background: #181818;
  transform: scaleX(0);
  transform-origin: left center;
}

@keyframes uc-fill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Console reskinned for the orange hero: dark frosted glass panel */
.hero .uc-console {
  min-height: 0;
  background: rgba(17, 13, 11, 0.62);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 34px 80px rgba(40, 12, 0, 0.42);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

/* Loved by founders — restrained proof band */
.proof-section {
  --proof-gutter: calc((100% - min(var(--page), calc(100% - 96px))) / 2);
  --proof-line: rgba(24, 24, 24, 0.1);
  position: relative;
  overflow: hidden;
  padding: 128px 0 132px;
  background: var(--paper);
  color: var(--ink);
}

.proof-section[hidden] {
  display: none;
}

/* thin orange route + node, quietly bridging use cases → final CTA */
.proof-route {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--proof-gutter) - 15px);
  width: 1px;
  z-index: 1;
  background: repeating-linear-gradient(to bottom, rgba(255, 90, 31, 0.42) 0 4px, transparent 4px 11px);
  opacity: 0.6;
}

.proof-node {
  position: absolute;
  top: 46%;
  left: calc(var(--proof-gutter) - 15px);
  z-index: 1;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.14);
}

.proof-inner {
  position: relative;
  z-index: 2;
  width: min(var(--page), calc(100% - 96px));
  margin: 0 auto;
}

.proof-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 60px;
  border-top: 1px solid var(--proof-line);
}

/* 1 · Founder story — the quote leads */
.proof-story {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 46px 60px 46px 0;
  border-right: 1px solid var(--proof-line);
}

.proof-quote {
  margin: 0;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: -0.016em;
}

.proof-founder {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
}

.proof-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.proof-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.proof-meta strong {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.proof-meta small {
  color: var(--muted);
  font-size: 13px;
}

.proof-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: 22px;
  color: var(--orange-deep);
  font-size: 14.5px;
  font-weight: 500;
}

.proof-link span {
  transition: transform 160ms ease;
}

.proof-link:hover span {
  transform: translateX(3px);
}

/* right column — outcomes over evidence */
.proof-aside {
  display: flex;
  flex-direction: column;
  padding-left: 60px;
}

/* 2 · Verified outcomes */
.proof-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 46px 0 40px;
}

.proof-outcomes[hidden] {
  display: none;
}

.proof-metric {
  padding: 0 26px;
  border-left: 1px solid var(--proof-line);
}

.proof-metric:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-value {
  display: block;
  font-size: 45px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.proof-metric.is-accent .proof-value {
  color: var(--orange);
}

.proof-label {
  display: block;
  max-width: 17ch;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

/* 3 · Product evidence — subordinate to the story */
.proof-evidence {
  margin-top: auto;
  padding: 24px 0 2px;
  border-top: 1px solid var(--proof-line);
}

.proof-evidence[hidden] {
  display: none;
}

.proof-ev-cap {
  margin: 0 0 14px;
  color: var(--muted);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.proof-ev-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-ev-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.proof-ev-id {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.proof-ev-id strong {
  font-size: 14px;
  font-weight: 600;
}

.proof-ev-id small {
  color: var(--muted);
  font-size: 12.5px;
}

.proof-ev-state {
  margin-left: auto;
  padding: 5px 11px;
  border: 1px solid rgba(255, 90, 31, 0.28);
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.08);
  color: var(--orange-deep);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-ev-reason {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

/* subtle NYC rooftop edge */
.proof-skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 60px;
  fill: rgba(24, 24, 24, 0.05);
}

/* Prompt console */
.uc-console {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  min-height: 420px;
}

.uc-prompt {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(10, 8, 8, 0.55);
}

.uc-prompt-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
}

.uc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--uc-accent, #ff5a1f);
  box-shadow: 0 0 10px var(--uc-accent, #ff5a1f);
  transition: background 500ms ease, box-shadow 500ms ease;
}

.uc-prompt-field {
  display: flex;
  align-items: center;
  min-width: 0;
  font-size: 15px;
  line-height: 1.4;
  color: #fff;
}

.uc-typed {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.uc-caret {
  display: inline-block;
  width: 2px;
  height: 17px;
  margin-left: 2px;
  flex: 0 0 auto;
  background: var(--uc-accent, #ff5a1f);
  animation: uc-blink 1s steps(1) infinite;
}

@keyframes uc-blink {
  50% { opacity: 0; }
}

.uc-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 10px;
  background: var(--uc-accent, #ff5a1f);
  color: #fff;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 500ms ease;
}

.uc-send svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.uc-console:not(.is-firing) .uc-send {
  animation: uc-send-pulse 2.4s ease-in-out infinite;
}

@keyframes uc-send-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0); }
  50% { box-shadow: 0 0 0 6px rgba(255, 90, 31, 0.14); }
}

.uc-console.is-firing .uc-send {
  transform: scale(0.9);
  box-shadow: 0 0 26px 4px var(--uc-accent, #ff5a1f);
}

.uc-status {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 18px;
  margin: 18px 4px 8px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: 0.03em;
  opacity: 0;
  transition: opacity 300ms ease;
}

.uc-status.is-on {
  opacity: 1;
}

.uc-status::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--uc-accent, #ff5a1f);
  animation: uc-spin 0.7s linear infinite;
}

.uc-status.is-done::before {
  animation: none;
  border-color: var(--uc-accent, #ff5a1f);
  background: var(--uc-accent, #ff5a1f);
}

@keyframes uc-spin {
  to { transform: rotate(360deg); }
}

.uc-results {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
}

.uc-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
}

.uc-card.is-in {
  animation: uc-card-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes uc-card-in {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.uc-card-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.uc-card-body {
  min-width: 0;
}

.uc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.uc-card-top strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.uc-card-score {
  flex: 0 0 auto;
  padding: 3px 9px;
  border: 1px solid var(--uc-accent, #ff5a1f);
  border-radius: 999px;
  color: var(--uc-accent, #ff5a1f);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
}

.uc-card-role {
  display: block;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12.5px;
}

.uc-card-signal {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.uc-card-signal i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--uc-accent, #ff5a1f);
}

.uc-card-signal time {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.38);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10.5px;
}

.section-heading-left {
  max-width: 760px;
  margin-left: 0;
  text-align: left;
}

.section-heading-left > p:not(.eyebrow) {
  max-width: 620px;
  margin-left: 0;
}

.outcomes-section {
  padding: 150px 0;
  color: #fff;
  background: #191919;
}

.outcomes-inner {
  width: min(var(--page), calc(100% - 96px));
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: start;
  gap: 110px;
  margin: 0 auto;
}

.outcomes-copy h2 {
  color: #fff;
}

.outcomes-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

.outcomes-copy .lede {
  color: rgba(255, 255, 255, 0.82);
}

.outcome-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcome-list li {
  min-height: 78px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.outcome-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.outcome-list span {
  color: var(--orange);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
}

.outcome-list p {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 27px;
}

.no-path-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 120px;
}

.no-path-route {
  height: 360px;
  position: relative;
}

.path-line {
  position: absolute;
  top: 180px;
  left: 36px;
  width: 67%;
  border-top: 1px solid var(--orange);
}

.path-line::after {
  content: "";
  width: 58px;
  height: 84px;
  position: absolute;
  top: -84px;
  right: -1px;
  border-right: 1px solid var(--orange);
  border-top: 1px solid var(--orange);
  border-radius: 0 58px 0 0;
}

.path-origin,
.path-stop,
.path-destination {
  position: absolute;
  border-radius: 50%;
}

.path-origin {
  width: 14px;
  height: 14px;
  top: 173px;
  left: 24px;
  border: 1px solid var(--orange);
  background: #fff;
}

.path-stop {
  width: 18px;
  height: 18px;
  top: 87px;
  left: calc(67% + 80px);
  border: 1px solid var(--orange);
  background: var(--orange);
  box-shadow: 0 0 0 10px rgba(255, 90, 31, 0.1);
}

.path-destination {
  width: 74px;
  height: 74px;
  top: 60px;
  right: 4px;
  border: 1px dashed rgba(24, 24, 24, 0.2);
}

.path-destination::before,
.path-destination::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(24, 24, 24, 0.18);
  transform: translate(-50%, -50%);
}

.path-destination::before {
  width: 22px;
  height: 1px;
}

.path-destination::after {
  width: 1px;
  height: 22px;
}

.no-path-copy {
  max-width: 510px;
}

.alternate-routes {
  display: grid;
  gap: 8px;
  margin-top: 30px;
}

.alternate-routes button {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
}

.alternate-routes button:hover {
  border-color: rgba(255, 90, 31, 0.42);
  color: var(--orange-deep);
}

.alternate-routes button.is-selected {
  border-color: var(--orange);
  color: var(--orange-deep);
  background: rgba(255, 90, 31, 0.05);
}

.final-cta {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 10px;
  border-radius: 14px;
  color: #fff;
  background: #bcdcef;
}

.final-cta > img,
.final-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta > img {
  object-fit: cover;
  object-position: center 58%;
}

.final-shade {
  background: linear-gradient(180deg, rgba(16, 26, 38, 0.36) 0%, rgba(16, 26, 38, 0.24) 45%, rgba(16, 26, 38, 0.34) 100%);
}

.final-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 40px 24px;
  text-align: center;
}

.final-inner h2 {
  margin-bottom: 28px;
  max-width: 15ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.final-inner > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 28px;
}

/* Scroll-reveal footer — the page is a sheet that lifts to reveal this */
.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: var(--footer-h);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: url("assets/pigeon-hill.png") center 32% / cover no-repeat;
}

.footer-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(250, 248, 244, 0.97) 3%, rgba(250, 248, 244, 0.55) 20%, rgba(250, 248, 244, 0) 44%);
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
  width: min(var(--page), calc(100% - 96px));
  margin: 0 auto;
  padding-bottom: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 10px 24px;
}

.footer-brand p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--orange-deep);
}

.footer-content > small {
  grid-column: 1 / -1;
  color: rgba(24, 24, 24, 0.5);
  font-size: 12px;
}

@media (max-width: 1180px) {
  .desktop-nav,
  .signal-link,
  .desktop-only {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-button,
  .mobile-drawer {
    display: flex;
  }

  .mobile-drawer {
    display: grid;
  }

  .section,
  .story-inner,
  .control-inner,
  .outcomes-inner,
  .proof-inner {
    width: min(900px, calc(100% - 64px));
  }

  .proof-route,
  .proof-node {
    display: none;
  }

  .problem-section,
  .control-inner,
  .outcomes-inner,
  .no-path-section {
    grid-template-columns: 1fr;
  }

  .problem-section,
  .control-inner,
  .outcomes-inner,
  .no-path-section {
    gap: 70px;
  }

  .problem-copy,
  .control-copy,
  .no-path-copy {
    max-width: 720px;
  }

  .problem-visual {
    height: 680px;
  }

  .story-flight {
    right: 4vw;
    bottom: 80px;
  }

  .flow-panel {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px;
  }

  .flow-copy h3 { font-size: 30px; line-height: 35px; }

  .uc-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .outcomes-section {
    padding: 120px 0;
  }

  .outcomes-inner {
    gap: 60px;
  }
}

@media (max-width: 980px) {
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 40px;
    padding: 150px 0 56px;
  }

  .hero-demo {
    max-width: 560px;
    justify-self: start;
  }
}

@media (max-height: 850px) and (min-width: 981px) {
  .hero {
    height: calc(100svh - 88px);
    min-height: 540px;
    max-height: none;
  }

  .hero-grid {
    padding: 54px 0 24px;
  }

  .hero h1 {
    margin-top: 26px;
    font-size: 50px;
    line-height: 1;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 16px;
    line-height: 22px;
  }

  .hero-rule {
    margin-top: 8px;
    font-size: 15px;
    line-height: 20px;
  }

  .hero-actions {
    margin-top: 20px;
  }
}

@media (max-width: 900px) {
  .proof-band {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .proof-story {
    padding: 0 0 40px;
    border-right: 0;
    border-bottom: 1px solid var(--proof-line);
  }

  .proof-aside {
    padding-left: 0;
  }

  .proof-outcomes {
    padding-top: 40px;
  }
}

@media (max-width: 760px) {
  .proof-section {
    padding: 96px 0 100px;
  }

  .proof-inner {
    width: calc(100% - 32px);
  }

  .proof-quote {
    font-size: 23px;
  }

  .proof-outcomes {
    grid-template-columns: 1fr;
    padding: 34px 0 30px;
  }

  .proof-metric {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid var(--proof-line);
  }

  .proof-metric:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .proof-value {
    font-size: 38px;
  }

  .proof-label {
    max-width: none;
    margin-top: 0;
  }

  .site-header {
    height: 56px;
    padding: 0 16px;
  }

  .wordmark {
    font-size: 22px;
  }

  .hero {
    height: auto;
    min-height: 760px;
    max-height: none;
    margin: 8px 8px 0;
    border-radius: 12px;
    background-position: 43% center;
  }

  .hero-shade {
    background: rgba(226, 63, 12, 0.18);
  }

  .hero-grid {
    padding: 120px 0 44px;
    gap: 34px;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-demo {
    justify-self: stretch;
    max-width: 100%;
  }

  .uc-pills {
    justify-content: center;
  }

  .hero-kicker {
    min-height: 38px;
    gap: 7px;
    padding: 0 12px;
    font-size: 11px;
    line-height: 16px;
  }

  .hero h1 {
    margin-top: 34px;
    font-size: 48px;
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 500px;
    margin-top: 26px;
    font-size: 17px;
    line-height: 24px;
  }

  .hero-rule {
    margin-top: 14px;
    font-size: 15px;
  }

  .hero-actions {
    width: min(340px, 100%);
    flex-direction: column;
    margin-top: 30px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section,
  .story-inner,
  .control-inner,
  .outcomes-inner {
    width: calc(100% - 32px);
  }

  .section {
    padding: 100px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .story-inner h2,
  .final-inner h2,
  .voice-head h2 {
    margin-bottom: 24px;
    font-size: 40px;
    line-height: 1;
  }

  .fc-sub {
    font-size: 17px;
    line-height: 25px;
  }

  .section-copy .lede {
    font-size: 20px;
    line-height: 28px;
  }

  .problem-section,
  .no-path-section {
    min-height: 0;
  }

  .voice-section {
    padding: 100px 0 110px;
  }

  .voice-head {
    margin-bottom: 44px;
  }

  :root {
    --footer-h: 460px;
  }

  .fc-card {
    width: 300px;
    flex-basis: 300px;
    padding: 24px 24px;
  }

  .problem-visual {
    height: 560px;
  }

  .story-section {
    min-height: 760px;
    align-items: flex-start;
    padding: 100px 0;
  }

  .story-inner h2 {
    font-size: 48px;
  }

  .story-flight {
    width: calc(100% - 64px);
    right: 32px;
    bottom: 80px;
  }

  .usecase-section {
    padding: 100px 0;
  }

  .flow { margin-top: 48px; }

  .flow-tabs { gap: 16px; }

  .flow-name {
    flex-direction: column;
    gap: 4px;
    margin-top: 12px;
    font-size: 15px;
  }

  .flow-panel {
    padding: 26px 22px;
    gap: 28px;
  }

  .flow-copy h3 { font-size: 25px; line-height: 30px; }
  .flow-copy h3 br { display: none; }
  .flow-demo { font-size: 13px; }
  .demo-tr { grid-template-columns: 1fr 0.7fr 0.8fr 34px; padding: 10px 12px; }
  .demo-query { max-width: 100%; }

  .control-section {
    min-height: 0;
    padding: 110px 0;
  }

  .product-shell {
    min-height: 650px;
  }

  .product-body {
    padding: 18px;
  }

  .person-head {
    grid-template-columns: 48px 1fr;
  }

  .match-score {
    grid-column: 1 / -1;
    width: max-content;
  }

  .approval-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .approval-actions .button {
    width: 100%;
  }

  .uc-inner {
    gap: 40px;
  }

  .uc-copy h2 {
    font-size: 34px;
  }

  .uc-console {
    padding: 16px;
    min-height: 0;
  }

  .uc-prompt {
    gap: 10px;
    padding: 13px 13px;
  }

  .uc-prompt-field {
    font-size: 13.5px;
  }

  .uc-chip-text strong {
    font-size: 18px;
  }

  .outcomes-section {
    padding: 100px 0;
  }

  .outcome-list p {
    font-size: 19px;
    line-height: 24px;
  }

  .no-path-route {
    order: 2;
    height: 300px;
  }

  .path-line {
    left: 20px;
    width: 58%;
  }

  .path-origin {
    left: 8px;
  }

  .path-stop {
    left: calc(58% + 62px);
  }

  .final-cta {
    min-height: 700px;
    margin: 8px;
    border-radius: 12px;
  }

  .final-inner h2 {
    font-size: 48px;
  }

  .final-inner > p:not(.eyebrow) {
    font-size: 18px;
    line-height: 26px;
  }

  .platform-section {
    padding-top: 100px;
  }

  .ticker {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 32px;
  }

  .ticker-viewport {
    width: 100%;
  }

  .split-section {
    padding: 100px 0;
  }

  .slice {
    grid-template-columns: 1fr;
  }

  .slice-visual,
  .slice:nth-child(even) .slice-visual {
    order: 0;
    padding: 24px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .slice-copy {
    padding: 30px 24px 34px;
  }

  .slice-copy h3 {
    font-size: 24px;
  }

  .split-mock {
    padding: 28px 24px 26px;
  }

  .platform-head h2 {
    font-size: 32px;
  }

  .platform-sub {
    font-size: 17px;
    line-height: 26px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-bottom: 32px;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   Homepage hero — bright NYC rooftop redesign (.rhero)
   Replaces the old .hero; sits full-bleed under the sticky nav.
   ============================================================ */
.rhero svg,
.rhero-search svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rhero {
  position: relative;
  height: clamp(560px, 80vh, 880px);
  margin: 8px 10px 0; /* floating card, matching the previous hero */
  overflow: hidden;
  border-radius: 14px;
  isolation: isolate;
  background: #bfe0f2; /* sky fallback while the image loads */
}

.rhero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 56%; /* pigeon + water tower left, skyline right, sky up-left */
  z-index: -2;
}

.rhero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(16, 26, 38, 0.46) 0%,
    rgba(16, 26, 38, 0.3) 42%,
    rgba(16, 26, 38, 0.34) 100%
  );
}

.rhero-inner {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 90px 24px 48px;
}

.rhero-copy {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.rhero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.r-node {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.16);
  animation: rNodePulse 2.6s ease-in-out infinite;
}

@keyframes rNodePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.16); }
  50% { box-shadow: 0 0 0 6px rgba(255, 90, 31, 0.05); }
}

.rhero h1 {
  margin: 0 auto 16px;
  max-width: 820px;
  color: #fff;
  font-size: clamp(33px, 4.3vw, 54px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.026em;
  text-wrap: balance;
}

.rhero-sub {
  margin: 0 auto 30px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17.5px;
  line-height: 26px;
}

/* Chat-style command box */
.rhero-chat {
  display: flex;
  flex-direction: column;
  width: min(680px, 100%);
  margin: 0 auto;
  padding: 16px 16px 12px;
  border: 1px solid rgba(24, 24, 24, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(16, 26, 38, 0.22);
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.rhero-chat:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.18), 0 20px 48px rgba(16, 26, 38, 0.22);
}

.rhero-chat-input {
  width: 100%;
  min-height: 76px;
  max-height: 200px;
  border: 0;
  resize: none;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 24px;
}

.rhero-chat-input:focus { outline: none; }
.rhero-chat-input::placeholder {
  color: rgba(24, 24, 24, 0.44);
  transition: opacity 220ms ease;
}
.rhero-chat-input.is-swapping::placeholder { opacity: 0; }

.rhero-chat-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.rhero-chat-attach {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: rgba(24, 24, 24, 0.48);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}
.rhero-chat-attach:hover { background: rgba(24, 24, 24, 0.05); color: var(--ink); }
.rhero-chat-attach svg { width: 20px; height: 20px; }

.rhero-chat-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.rhero-chat-send:hover { background: var(--orange-deep); transform: translateY(-1px); }
.rhero-chat-send svg { width: 20px; height: 20px; }

@media (max-width: 640px) {
  .rhero {
    height: auto;
    min-height: 82vh;
  }
  .rhero-img { object-position: 60% 58%; }
  .rhero-inner {
    justify-content: flex-start;
    padding: 104px 24px 40px;
  }
  .rhero-copy { max-width: 100%; }
  .rhero h1 { font-size: clamp(29px, 8.2vw, 38px); max-width: 100%; }
  .rhero-sub { max-width: 100%; }
  .rhero-scrim {
    background: linear-gradient(
      180deg,
      rgba(16, 26, 38, 0.5) 0%,
      rgba(16, 26, 38, 0.34) 46%,
      rgba(16, 26, 38, 0.34) 100%
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  .r-node { animation: none; }
}

/* ============================================================
   Page motion — scroll-reveal, hero parallax, hover lift.
   Only active when JS adds .reveal-ready (and not reduced-motion).
   ============================================================ */
html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 0.68, 0.32, 1),
              transform 0.7s cubic-bezier(0.16, 0.68, 0.32, 1);
  transition-delay: var(--rd, 0ms);
  will-change: opacity, transform;
}

html.reveal-ready [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

.split-mock {
  transition: transform 0.35s cubic-bezier(0.16, 0.68, 0.32, 1), box-shadow 0.35s ease;
}
.split-mock:hover {
  transform: translateY(-5px);
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .split-mock:hover { transform: none; }
}

/* ============================================================
   Hero day/night toggle — cross-fades only the hero image.
   ============================================================ */
.theme-img--light,
.theme-img--dark {
  transition: opacity 0.6s ease;
}
.theme-img--dark { opacity: 0; }
:root[data-theme="dark"] .theme-img--light { opacity: 0; }
:root[data-theme="dark"] .theme-img--dark { opacity: 1; }

.theme-toggle {
  position: relative;
  width: 46px;
  height: 26px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(24, 24, 24, 0.06);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.theme-toggle::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.5, 1);
}
.theme-toggle svg {
  position: absolute;
  top: 50%;
  width: 13px;
  height: 13px;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.theme-toggle .icon-sun { left: 6px; opacity: 1; }
.theme-toggle .icon-moon { right: 6px; opacity: 0.35; }
:root[data-theme="dark"] .theme-toggle .icon-sun { opacity: 0.35; }
:root[data-theme="dark"] .theme-toggle .icon-moon { opacity: 1; }
:root[data-theme="dark"] .theme-toggle::before {
  transform: translateX(20px);
}
