/* OutcomesAI — landing page styles */
:root {
  --paper: #FBFAF6;
  --paper-2: #F4F2EC;
  --ink: #151021;
  --ink-2: #4B4458;
  --ink-3: #8A8396;
  --violet: #6C4CF1;
  --violet-deep: #4A2FCE;
  --lavender: #ECE7FD;
  --rose: #E5484D;
  --green: #1E9E6A;
  --line: rgba(21, 16, 33, 0.1);
  --radius: 18px;
  --font-sans: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --font-serif: 'Newsreader', Georgia, serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --nav-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 1px 2px rgba(21,16,33,0.05), 0 8px 32px rgba(21,16,33,0.07);
  --shadow-lift: 0 2px 4px rgba(21,16,33,0.06), 0 18px 48px rgba(21,16,33,0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 24px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
}
[hidden] { display: none !important; }
img, video { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--violet); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- typography helpers ---------- */
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 500; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--violet-deep); margin: 0 0 18px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--violet); }
.eyebrow-light { color: #C9BFFA; }
.eyebrow-plus { color: var(--rose); font-weight: 500; }
.section-title {
  font-size: clamp(34px, 4.6vw, 60px); font-weight: 400; line-height: 1.06;
  letter-spacing: -0.032em; margin: 0;
}
.section-sub { max-width: 560px; color: var(--ink-2); font-size: 18px; margin: 20px 0 0; }

/* ---------- reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); filter: blur(4px); }
.js .reveal.is-in {
  opacity: 1; transform: none; filter: none;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
}

/* ---------- announce ---------- */
.announce {
  background: var(--ink); color: #E9E4F9; text-align: center;
  font-size: 13.5px; padding: 9px 16px; letter-spacing: 0.01em;
}
.announce p { margin: 0; display: inline-flex; align-items: center; gap: 9px; }
.announce-dot { width: 7px; height: 7px; background: var(--violet); border-radius: 1px; animation: pulse-dot 2.4s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(251, 250, 246, 0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  height: var(--nav-h); display: flex; align-items: center; gap: 36px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark { width: 26px; height: 26px; }
.brand-mark .px { fill: var(--ink); }
.brand-mark .px-strong { fill: var(--violet); }
.brand-word { font-weight: 600; font-size: 19px; letter-spacing: -0.02em; }
.brand-word em { font-style: normal; color: var(--violet); }
.nav-links { display: flex; gap: 28px; margin-left: 12px; }
.nav-links a {
  text-decoration: none; font-size: 15px; color: var(--ink-2);
  position: relative; padding: 6px 0; transition: color 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--violet); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--ink); }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: transparent; border-radius: 12px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav-toggle span { width: 18px; height: 1.8px; background: var(--ink); transition: transform 0.3s, opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.9px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: var(--paper);
  padding: calc(var(--nav-h) + 48px) 28px 40px;
  transform: translateY(-102%); transition: transform 0.5s var(--ease-out);
  display: flex;
}
.mobile-menu.is-open { transform: none; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.mobile-menu nav > a {
  text-decoration: none; font-size: 30px; font-weight: 450; letter-spacing: -0.02em;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu nav > a.btn { margin-top: 26px; border-bottom: none; justify-content: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 15.5px; font-weight: 550; letter-spacing: -0.01em;
  padding: 14px 24px; border-radius: 13px; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; position: relative;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary { background: var(--ink); color: #fff; padding-right: 20px; }
.btn-primary:hover { background: var(--violet-deep); box-shadow: 0 10px 28px rgba(74, 47, 206, 0.32); transform: translateY(-2px); }
.btn-sq { width: 7px; height: 7px; background: var(--violet); border-radius: 1px; transition: background 0.25s, transform 0.25s; }
.btn-primary:hover .btn-sq { background: #fff; transform: rotate(45deg); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: rgba(255,255,255,0.6); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn-arrow { width: 15px; height: 15px; transition: transform 0.25s var(--ease-out); }
.btn-ghost:hover .btn-arrow { transform: translateX(4px); }
.btn-sm { padding: 11px 18px; font-size: 14.5px; }
.btn-block { width: 100%; justify-content: center; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--violet); outline-offset: 3px;
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: clip; padding: 72px 28px 56px; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(21,16,33,0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 65%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 65%);
}
.hero-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-title {
  font-size: clamp(42px, 5vw, 68px); font-weight: 380; line-height: 1.03;
  letter-spacing: -0.038em; margin: 0 0 26px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-inner { display: inline-block; }
.js .hero-title .line-inner { transform: translateY(110%); animation: line-up 1.1s var(--ease-out) forwards; }
.js .hero-title .line:nth-child(2) .line-inner { animation-delay: 0.12s; }
@keyframes line-up { to { transform: none; } }
.hero-lede { font-size: 19px; color: var(--ink-2); max-width: 480px; margin: 0 0 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-proof { display: flex; gap: 12px; margin-top: 42px; flex-wrap: wrap; }
.proof-chip {
  border: 1px solid var(--line); border-radius: 14px; padding: 12px 18px;
  background: rgba(255,255,255,0.66); backdrop-filter: blur(6px);
  display: flex; flex-direction: column; min-width: 128px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.proof-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.proof-chip strong { font-size: 26px; font-weight: 600; letter-spacing: -0.03em; color: var(--violet-deep); font-variant-numeric: tabular-nums; }
.proof-chip span { font-size: 12.5px; color: var(--ink-3); line-height: 1.35; }

.hero-media { position: relative; }
.media-frame {
  margin: 0; position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lift); border: 1px solid rgba(21,16,33,0.08);
  background: var(--paper-2); aspect-ratio: 4 / 3.4;
}
.media-frame video, .media-frame .media-fallback { width: 100%; height: 100%; object-fit: cover; }
.media-badge {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(21,16,33,0.78); color: #fff; backdrop-filter: blur(8px);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
  padding: 8px 14px; border-radius: 9px; display: inline-flex; align-items: center; gap: 8px;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; animation: pulse-dot 1.6s infinite; }

.hero-segments {
  max-width: 1240px; margin: 64px auto 0; padding: 18px 4px 0;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 14.5px; color: var(--ink-2);
}
.segment-label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.segment-sep { width: 5px; height: 5px; background: var(--violet); border-radius: 1px; opacity: 0.6; }

/* ---------- sections ---------- */
.section { padding: 120px 28px; max-width: 1296px; margin: 0 auto; }
.section-head { max-width: 860px; margin-bottom: 64px; }

/* ---------- problem ---------- */
.problem-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.problem-lede { font-size: 22px; line-height: 1.5; letter-spacing: -0.015em; color: var(--ink); margin: 6px 0 0; }
.problem-points { display: flex; flex-direction: column; }
.problem-point {
  border-top: 1px solid var(--line); padding: 26px 0 26px 0;
  display: grid; grid-template-columns: 44px 1fr; column-gap: 20px;
  transition: background 0.3s;
}
.problem-point:last-child { border-bottom: 1px solid var(--line); }
.point-num {
  font-family: var(--font-serif); font-style: italic; font-size: 20px; color: var(--violet);
  grid-row: span 2; padding-top: 2px;
}
.problem-point h3 { margin: 0 0 6px; font-size: 19px; font-weight: 550; letter-spacing: -0.015em; }
.problem-point p { margin: 0; color: var(--ink-2); font-size: 15.5px; }
.problem-bridge {
  margin: 88px auto 0; text-align: center; font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35; letter-spacing: -0.02em; font-weight: 400; max-width: 800px;
}
.problem-bridge strong { font-weight: 600; color: var(--violet-deep); }

/* ---------- equation ---------- */
.equation {
  background: var(--ink); color: #fff; padding: 88px 28px; overflow: clip; position: relative;
}
.equation-inner {
  max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: center;
  gap: clamp(12px, 2.6vw, 34px); flex-wrap: wrap; text-align: center;
  font-size: clamp(22px, 3.4vw, 42px); letter-spacing: -0.025em; font-weight: 450;
}
.eq-op { color: var(--violet); font-weight: 300; }
.eq-result { color: #D9D2F7; }
.eq-result .serif { color: #fff; }

/* ---------- pillars ---------- */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
  background: #fff; display: flex; flex-direction: column; position: relative;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}
.pillar:hover, .pillar:focus-visible { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: rgba(108,76,241,0.35); }
.pillar-icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--lavender);
  display: grid; place-items: center; color: var(--violet-deep); margin-bottom: 22px;
  transition: transform 0.35s var(--ease-out);
}
.pillar:hover .pillar-icon { transform: rotate(-6deg) scale(1.06); }
.pillar-icon svg { width: 28px; height: 28px; }
.pillar h3 { margin: 0 0 10px; font-size: 23px; font-weight: 550; letter-spacing: -0.02em; }
.pillar > p { margin: 0 0 22px; color: var(--ink-2); font-size: 15.5px; flex: 0 1 auto; }
.pillar-stat {
  margin-top: auto; padding: 16px 0; border-top: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 10px;
}
.pillar-stat strong { font-size: 34px; font-weight: 600; letter-spacing: -0.03em; color: var(--violet-deep); font-variant-numeric: tabular-nums; }
.pillar-stat span { font-size: 12.5px; color: var(--ink-3); line-height: 1.35; }
.pillar-link {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  font-size: 14.5px; font-weight: 550; color: var(--violet-deep); margin-top: 6px;
}
.pillar-link svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease-out); }
.pillar-link:hover svg { transform: translateX(4px); }

/* ---------- call flow ---------- */
.call-flow { max-width: 1296px; }
.flow-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.flow-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; position: relative; }
.flow-step-btn {
  width: 100%; text-align: left; background: transparent; border: 1px solid transparent;
  border-radius: 14px; padding: 18px 20px; cursor: pointer; display: flex; gap: 18px;
  font-family: var(--font-sans); color: var(--ink);
  transition: background 0.3s, border-color 0.3s, opacity 0.3s;
  opacity: 0.55;
}
.flow-step-btn:hover { background: rgba(108,76,241,0.05); }
.flow-step.is-active .flow-step-btn { opacity: 1; background: #fff; border-color: var(--line); box-shadow: var(--shadow-card); }
.flow-step-index { font-family: var(--font-mono); font-size: 12px; color: var(--violet); padding-top: 4px; }
.flow-step-body { display: flex; flex-direction: column; gap: 4px; }
.flow-step-body strong { font-size: 17.5px; font-weight: 550; letter-spacing: -0.015em; }
.flow-step-body span { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }

.flow-stage { position: sticky; top: calc(var(--nav-h) + 32px); }
.flow-phone {
  border: 1px solid var(--line); border-radius: 22px; background: var(--ink); color: #fff;
  padding: 28px; box-shadow: var(--shadow-lift); overflow: hidden; position: relative;
}
.flow-phone::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 200px at 50% -60px, rgba(108,76,241,0.35), transparent 70%);
  pointer-events: none;
}
.flow-phone-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.flow-caller { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; color: #C9BFFA; }
.flow-timer { font-family: var(--font-mono); font-size: 13px; color: rgba(255,255,255,0.65); font-variant-numeric: tabular-nums; }
.flow-wave { display: flex; align-items: center; gap: 4px; height: 64px; margin-bottom: 20px; }
.flow-wave span {
  flex: 1; background: var(--violet); border-radius: 3px; height: 12%;
  transition: height 0.4s var(--ease-out), background 0.4s; opacity: 0.85;
}
.flow-wave.is-live span { animation: wave-dance 1.1s ease-in-out infinite; }
.flow-wave.is-live span:nth-child(3n) { animation-delay: 0.15s; }
.flow-wave.is-live span:nth-child(4n) { animation-delay: 0.3s; background: #8F76F5; }
.flow-wave.is-live span:nth-child(5n) { animation-delay: 0.45s; }
@keyframes wave-dance { 0%,100% { height: 12%; } 50% { height: 88%; } }
.flow-caption { font-size: 19px; letter-spacing: -0.015em; line-height: 1.45; min-height: 56px; transition: opacity 0.35s; }
.flow-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 22px; min-height: 30px; }
.flow-tag {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.22); border-radius: 999px; padding: 5px 12px;
  color: rgba(255,255,255,0.55); transition: all 0.4s;
}
.flow-tag.is-on { background: var(--violet); border-color: var(--violet); color: #fff; }
.flow-branch { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px; }
.branch {
  border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; padding: 14px 16px;
  display: flex; flex-direction: column; gap: 2px; transition: all 0.45s;
  opacity: 0.45;
}
.branch strong { font-size: 22px; letter-spacing: -0.02em; }
.branch span { font-size: 12px; color: rgba(255,255,255,0.62); line-height: 1.4; }
.branch.resolved.is-lit { opacity: 1; border-color: var(--green); background: rgba(30,158,106,0.16); }
.branch.escalated.is-lit { opacity: 1; border-color: var(--rose); background: rgba(229,72,77,0.16); }
.flow-progress { height: 3px; background: rgba(255,255,255,0.12); border-radius: 2px; overflow: hidden; }
.flow-progress span { display: block; height: 100%; width: 20%; background: var(--violet); border-radius: 2px; transition: width 0.5s var(--ease-out); }

.flow-listen { margin-top: 22px; border: 1px solid var(--line); border-radius: 22px; background: #fff; padding: 24px; }
.listen-label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 14px; }
.listen-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.listen-tab {
  border: 1px solid var(--line); background: transparent; border-radius: 999px;
  font-family: var(--font-sans); font-size: 13.5px; font-weight: 500; padding: 8px 16px; cursor: pointer;
  color: var(--ink-2); transition: all 0.25s;
}
.listen-tab:hover { border-color: var(--ink); color: var(--ink); }
.listen-tab.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.player { display: flex; align-items: center; gap: 16px; }
.player-btn {
  width: 48px; height: 48px; border-radius: 50%; border: none; background: var(--violet-deep);
  color: #fff; cursor: pointer; display: grid; place-items: center; flex: none;
  transition: transform 0.25s var(--ease-out), background 0.25s;
}
.player-btn:hover { transform: scale(1.07); background: var(--violet); }
.player-btn svg { width: 17px; height: 17px; }
.player-meta { flex: 1; min-width: 0; }
.player-name { font-size: 14.5px; font-weight: 550; display: block; margin-bottom: 8px; }
.player-track { height: 5px; background: var(--paper-2); border-radius: 3px; overflow: hidden; cursor: pointer; }
.player-track-fill { display: block; height: 100%; width: 0%; background: var(--violet); border-radius: 3px; }
.player-time { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.player-error { color: var(--rose); font-size: 13.5px; margin: 12px 0 0; }

/* ---------- together ---------- */
.together-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.together-card .media-frame { margin-bottom: 26px; aspect-ratio: 4 / 3; }
.together-card h3 { font-size: 27px; font-weight: 500; letter-spacing: -0.022em; margin: 0 0 12px; }
.together-card p { color: var(--ink-2); margin: 0; font-size: 16px; }

/* ---------- stats ---------- */
.stats { position: relative; border-radius: 28px; overflow: clip; background: var(--ink); color: #fff; max-width: 1240px; padding: 110px 48px; }
.stats-bg { position: absolute; inset: 0; }
.stats-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,191,250,0.16) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 55%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 55%);
}
.stats-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(720px 320px at 12% -8%, rgba(108,76,241,0.4), transparent 65%),
    radial-gradient(640px 300px at 95% 110%, rgba(74,47,206,0.35), transparent 65%);
}
.stats > * { position: relative; }
.stats .section-title { color: #fff; }
.stats .section-sub { color: rgba(255,255,255,0.72); }
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  border-top: 1px solid rgba(255,255,255,0.16); padding-top: 44px; margin-bottom: 84px;
}
.stat strong { display: block; font-size: clamp(56px, 6.5vw, 92px); font-weight: 350; letter-spacing: -0.045em; line-height: 1; color: #C9BFFA; font-variant-numeric: tabular-nums; }
.stat > span { display: block; margin-top: 12px; color: rgba(255,255,255,0.72); font-size: 15.5px; max-width: 260px; }
.stat strong span { display: inline; }
.value-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.value-card {
  background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px; padding: 26px 24px; backdrop-filter: blur(6px);
  transition: transform 0.35s var(--ease-out), background 0.35s, border-color 0.35s;
  grid-column: span 2;
}
.value-card:nth-child(4), .value-card:nth-child(5) { grid-column: span 3; }
.value-card:hover, .value-card:focus-visible { transform: translateY(-5px); background: rgba(255,255,255,0.1); border-color: rgba(201,191,250,0.45); }
.value-card h3 { margin: 0 0 14px; font-size: 17px; font-weight: 550; letter-spacing: -0.01em; color: #fff; }
.value-metric { font-size: 46px; font-weight: 350; letter-spacing: -0.04em; line-height: 1; margin: 0 0 10px; color: #C9BFFA; font-variant-numeric: tabular-nums; }
.value-card p:last-child { margin: 0; color: rgba(255,255,255,0.68); font-size: 14px; line-height: 1.5; }
.compliance-badges { display: flex; gap: 8px; margin-top: 14px; }
.compliance-badges span {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.28); border-radius: 6px; padding: 4px 10px; color: rgba(255,255,255,0.85);
}

/* ---------- voices ---------- */
.voices-layout { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 48px; align-items: start; }
.voice-stage {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(30px, 4vw, 56px); box-shadow: var(--shadow-card); position: relative; overflow: hidden;
}
.voice-stage::before {
  content: "“"; position: absolute; top: -30px; right: 18px;
  font-family: var(--font-serif); font-size: 240px; color: var(--lavender); line-height: 1;
}
.voice-text {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.6vw, 31px); line-height: 1.42; letter-spacing: -0.012em;
  margin: 0 0 34px; position: relative; transition: opacity 0.3s, transform 0.3s;
}
.voice-quote.is-switching .voice-text { opacity: 0; transform: translateY(8px); }
.voice-attr { display: flex; align-items: center; gap: 14px; }
.voice-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--violet-deep); color: #fff;
  display: grid; place-items: center; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.04em; flex: none;
}
.voice-attr strong { display: block; font-size: 15.5px; letter-spacing: -0.01em; }
.voice-attr span span { font-size: 13.5px; color: var(--ink-3); display: block; }
.voice-controls { display: flex; align-items: center; gap: 18px; margin-top: 36px; }
.voice-arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: transparent;
  cursor: pointer; display: grid; place-items: center; color: var(--ink);
  transition: all 0.25s;
}
.voice-arrow:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.voice-arrow svg { width: 16px; height: 16px; }
.voice-dots { display: flex; gap: 8px; }
.voice-dot {
  width: 32px; height: 5px; border-radius: 3px; border: none; cursor: pointer;
  background: var(--paper-2); transition: background 0.3s; padding: 0;
}
.voice-dot.is-active { background: var(--violet); }
.voice-roster { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.voice-roster button {
  width: 100%; text-align: left; background: transparent; border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 18px; cursor: pointer; font-family: var(--font-sans);
  display: flex; flex-direction: column; gap: 2px; color: var(--ink);
  transition: all 0.3s;
}
.voice-roster button:hover { border-color: var(--ink); }
.voice-roster button.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.voice-roster button.is-active .roster-org { color: rgba(255,255,255,0.62); }
.roster-role { font-weight: 550; font-size: 14.5px; letter-spacing: -0.01em; }
.roster-org { font-size: 12.5px; color: var(--ink-3); }

/* ---------- demo ---------- */
.demo { position: relative; border-radius: 28px; overflow: clip; max-width: 1240px; margin-bottom: 120px; }
.demo-bg { position: absolute; inset: 0; }
.demo-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.demo-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(251,250,246,0.94), rgba(251,250,246,0.72)); }
.demo-layout { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 96px 48px; }
.demo-assurances { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.demo-assurances li { display: flex; gap: 12px; align-items: baseline; color: var(--ink-2); font-size: 15.5px; }
.demo-assurances li::before { content: ""; width: 7px; height: 7px; background: var(--violet); border-radius: 1px; flex: none; transform: translateY(-1px); }
.demo-form {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 36px; box-shadow: var(--shadow-lift); position: relative;
}
.demo-form-title { margin: 0 0 22px; font-size: 22px; font-weight: 550; letter-spacing: -0.02em; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 550; margin-bottom: 6px; letter-spacing: -0.005em; }
.optional { color: var(--ink-3); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-sans); font-size: 15.5px; color: var(--ink);
  border: 1px solid var(--line); border-radius: 11px; padding: 12px 14px; background: var(--paper);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--violet); background: #fff;
  box-shadow: 0 0 0 4px rgba(108,76,241,0.14);
}
.field.has-error input, .field.has-error select { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(229,72,77,0.1); }
.field-error { color: var(--rose); font-size: 13px; margin: 6px 0 0; }
.form-status { font-size: 13.5px; color: var(--ink-3); margin: 14px 0 0; min-height: 20px; }
.form-status.is-error { color: var(--rose); }
.submit-spinner {
  width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.35); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-success {
  position: absolute; inset: 0; background: #fff; border-radius: 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 36px; gap: 8px;
}
.form-success svg { width: 54px; height: 54px; color: var(--green); margin-bottom: 8px; }
.form-success h4 { margin: 0; font-size: 21px; letter-spacing: -0.02em; }
.form-success p { margin: 0 0 18px; color: var(--ink-2); font-size: 15px; max-width: 340px; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.78); }
.footer-inner {
  max-width: 1240px; margin: 0 auto; padding: 84px 28px 56px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
.footer .brand-word, .footer .brand-mark .px { color: #fff; fill: #fff; }
.footer .brand-mark .px-strong { fill: var(--violet); }
.footer-brand p { font-size: 15px; line-height: 1.6; max-width: 300px; margin: 18px 0 0; }
.footer-col { display: flex; flex-direction: column; gap: 4px; }
.footer-col h4 {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin: 0 0 14px; font-weight: 500;
}
.footer-col a {
  color: rgba(255,255,255,0.78); text-decoration: none; font-size: 15px; padding: 5px 0;
  transition: color 0.25s, transform 0.25s;
}
.footer-col a:hover { color: #fff; transform: translateX(3px); }
.footer-base {
  max-width: 1240px; margin: 0 auto; padding: 22px 28px 34px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: rgba(255,255,255,0.5);
}
.footer-base p { margin: 0; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-legal a:hover { color: #fff; }

/* ---------- cookie ---------- */
.cookie {
  position: fixed; left: 18px; bottom: 18px; z-index: 150; max-width: 420px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lift); padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  animation: cookie-in 0.6s var(--ease-out);
}
@keyframes cookie-in { from { opacity: 0; transform: translateY(20px); } }
.cookie p { margin: 0; font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
.cookie a { color: var(--violet-deep); }
.cookie-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.cookie-close {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line);
  background: transparent; cursor: pointer; display: grid; place-items: center; color: var(--ink-2);
}
.cookie-close:hover { border-color: var(--ink); color: var(--ink); }
.cookie-close svg { width: 13px; height: 13px; }
.cookie.is-hiding { transition: opacity 0.4s, transform 0.4s; opacity: 0; transform: translateY(12px); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-media { max-width: 640px; }
  .pillar-grid { grid-template-columns: 1fr; max-width: 560px; }
  .flow-layout { grid-template-columns: 1fr; gap: 40px; }
  .flow-stage { position: static; }
  .together-grid { grid-template-columns: 1fr; gap: 56px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card, .value-card:nth-child(4), .value-card:nth-child(5) { grid-column: span 1; }
  .voices-layout { grid-template-columns: 1fr; }
  .demo-layout { grid-template-columns: 1fr; gap: 48px; padding: 64px 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-inner { padding: 0 16px; gap: 10px; }
  .nav-actions { gap: 10px; }
  .nav-actions .btn { padding: 11px 14px; font-size: 13.5px; white-space: nowrap; }
  .brand-word { font-size: 17px; }
  .section { padding: 84px 20px; }
  .hero { padding: 48px 20px 44px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .proof-chip { flex: 1; min-width: 100px; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem-bridge { margin-top: 64px; }
  .stats-row { grid-template-columns: 1fr; gap: 36px; margin-bottom: 64px; }
  .value-grid { grid-template-columns: 1fr; }
  .stats { padding: 72px 24px; }
  .demo { margin: 0 12px 72px; }
  .demo-layout { padding: 52px 22px; }
  .demo-form { padding: 26px 22px; }
  .cookie { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding: 64px 22px 40px; }
  .footer-base { padding: 18px 22px 28px; }
  .announce { font-size: 12.5px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  .js .reveal { opacity: 1; transform: none; filter: none; }
  .js .hero-title .line-inner { animation: none; transform: none; }
  .flow-wave.is-live span { animation: none; }
}
