:root {
  --ink: #17171c;
  --ink-soft: #4b4b57;
  --paper: #ffffff;
  --mist: #f4f5f9;
  --line: #dfe1e8;
  --cobalt: #0000fa;
  --blue: #0587f8;
  --sky: #dceeff;
  --brass: #c98200;
  --coral: #d9363e;
  --night: #10111b;
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --utility: "Arial Narrow", "Avenir Next Condensed", var(--sans);
  --max: 1180px;
  --shadow: 0 28px 80px rgba(24, 27, 54, 0.14);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 225, 232, 0.78);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.03em;
  text-decoration: none;
}
.brand img { width: 34px; height: 34px; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.nav-links a:hover { color: var(--cobalt); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-button {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.button {
  min-height: 48px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--cobalt); box-shadow: 0 12px 30px rgba(0, 0, 250, 0.2); }
.button-primary:hover { background: #1313d4; box-shadow: 0 16px 32px rgba(0, 0, 250, 0.24); }
.button-secondary { border-color: var(--line); background: #fff; }
.button-secondary:hover { border-color: #babdca; }
.button-small { min-height: 42px; padding: 8px 15px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 250, 0.04) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(0, 0, 250, 0.04) 1px, transparent 1px) 0 0 / 80px 80px,
    radial-gradient(circle at 76% 33%, #e5f3ff 0, #f7f8fc 38%, #fff 72%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}
.hero-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 720px;
  margin: 0 auto;
  padding: 72px 0 68px;
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(540px, 1.13fr);
  align-items: center;
  gap: 48px;
}
.eyebrow {
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cobalt);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.hero h1, .section-heading h2, .legal-hero h1, .cta-panel h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.045em;
}
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(52px, 6.5vw, 92px);
  line-height: 0.93;
}
.hero h1 em { color: var(--cobalt); font-weight: inherit; }
.hero-lede {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin: 16px 0 0; color: #71717e; font-size: 13px; }

.case-stage {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  perspective: 1400px;
}
.case-file {
  position: absolute;
  inset: 40px 0 26px 54px;
  border: 1px solid #cfd4e4;
  border-radius: 4px 26px 26px 4px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  transform: rotate(2.2deg);
}
.case-file::before {
  content: "CASE 24-0187  •  TRAINING SCENARIO";
  position: absolute;
  top: 26px;
  left: 28px;
  color: #77798a;
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
}
.case-file::after {
  content: "";
  position: absolute;
  top: 60px;
  right: 28px;
  bottom: 28px;
  left: 28px;
  background: repeating-linear-gradient(to bottom, transparent 0 28px, #e5e6ed 28px 29px);
}
.phone {
  position: relative;
  z-index: 3;
  width: 292px;
  min-height: 566px;
  overflow: hidden;
  border: 8px solid var(--night);
  border-radius: 42px;
  background: #f9faff;
  box-shadow: 0 34px 70px rgba(16, 17, 27, 0.26);
  transform: rotate(-3.4deg) translateY(3px);
  animation: phone-arrive 900ms cubic-bezier(.2,.8,.2,1) both;
}
.phone::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 8px;
  left: 50%;
  width: 90px;
  height: 22px;
  border-radius: 20px;
  background: var(--night);
  transform: translateX(-50%);
}
.phone-status { padding: 34px 20px 10px; display: flex; justify-content: space-between; font-size: 10px; font-weight: 800; }
.phone-case { padding: 0 18px; }
.phone-case-label { color: #6c6f7d; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.phone-case h3 { margin: 3px 0 10px; font-size: 18px; line-height: 1.2; }
.phase-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.phase-track span { height: 3px; border-radius: 4px; background: #d9dbe4; }
.phase-track span:nth-child(-n+2) { background: var(--cobalt); }
.court-card { margin: 14px 12px 0; padding: 14px; border: 1px solid #dfe1ea; border-radius: 15px; background: #fff; box-shadow: 0 10px 22px rgba(27, 29, 53, 0.07); }
.court-person { display: flex; align-items: center; gap: 10px; }
.avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--ink); font-size: 11px; font-weight: 800; }
.court-person strong { display: block; font-size: 12px; }
.court-person small { display: block; color: #777a88; font-size: 10px; }
.transcript { margin: 13px 0 0; color: #353641; font-size: 12px; line-height: 1.55; }
.transcript .word { opacity: 0; animation: word-in 6s infinite; }
.transcript .word:nth-child(2) { animation-delay: .22s; }
.transcript .word:nth-child(3) { animation-delay: .44s; }
.transcript .word:nth-child(4) { animation-delay: .66s; }
.transcript .word:nth-child(5) { animation-delay: .88s; }
.transcript .word:nth-child(6) { animation-delay: 1.1s; }
.voice-bar { height: 38px; margin: 12px 0 0; display: flex; align-items: center; justify-content: center; gap: 4px; }
.voice-bar i { width: 3px; height: 8px; border-radius: 4px; background: var(--blue); animation: voice 900ms ease-in-out infinite alternate; }
.voice-bar i:nth-child(2n) { animation-delay: -400ms; }
.voice-bar i:nth-child(3n) { animation-delay: -700ms; }
.voice-bar i:nth-child(4n) { animation-delay: -200ms; }
.jury-meter { margin: 12px 12px 0; padding: 11px 13px; border-radius: 13px; color: #fff; background: var(--night); }
.jury-label { display: flex; justify-content: space-between; font-size: 10px; font-weight: 700; }
.meter { height: 5px; margin-top: 8px; overflow: hidden; border-radius: 5px; background: rgba(255,255,255,.2); }
.meter span { display: block; width: 58%; height: 100%; background: linear-gradient(90deg, var(--blue), #86ceff); animation: meter-shift 6s ease-in-out infinite; }
.phone-controls { margin: 13px 12px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.phone-control { min-height: 38px; display: grid; place-items: center; border: 1px solid #d7d9e4; border-radius: 11px; background: #fff; font-size: 10px; font-weight: 800; }
.phone-control.objection { border-color: var(--coral); color: #fff; background: var(--coral); animation: objection-pulse 6s ease-in-out infinite; }
.sustained {
  position: absolute;
  z-index: 7;
  top: 48%;
  left: 50%;
  padding: 5px 12px;
  border: 4px double var(--coral);
  color: var(--coral);
  background: rgba(255,255,255,.94);
  font-family: var(--utility);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .12em;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-8deg) scale(1.7);
  animation: stamp 6s ease-in-out infinite;
}
.evidence-note {
  position: absolute;
  z-index: 5;
  min-width: 180px;
  padding: 13px 15px;
  border: 1px solid #d6d9e5;
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 34px rgba(20, 23, 52, .12);
  font-size: 11px;
  line-height: 1.4;
}
.evidence-note strong { display: block; margin-bottom: 3px; color: var(--cobalt); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.note-one { top: 92px; right: -4px; animation: note-drift 4.4s ease-in-out infinite alternate; }
.note-two { right: 8px; bottom: 72px; animation: note-drift 5.2s -1.4s ease-in-out infinite alternate; }
.demo-toggle { position: absolute; z-index: 9; right: 22px; bottom: 16px; min-height: 38px; padding: 7px 11px; border: 1px solid #d5d8e4; border-radius: 8px; background: #fff; font-size: 11px; font-weight: 700; cursor: pointer; }
[data-demo][data-paused="true"] *, [data-demo][data-paused="true"] *::before, [data-demo][data-paused="true"] *::after { animation-play-state: paused !important; }

.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-inner { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { min-height: 92px; padding: 22px 28px; display: flex; align-items: center; gap: 14px; border-left: 1px solid var(--line); }
.trust-item:last-child { border-right: 1px solid var(--line); }
.trust-icon { width: 32px; height: 32px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--cobalt); background: #ededff; font-weight: 900; }
.trust-item strong { display: block; font-size: 14px; }
.trust-item span { display: block; color: #6c6e79; font-size: 12px; }

.section { padding: 112px 0; }
.section-muted { background: var(--mist); }
.section-dark { color: #fff; background: var(--night); }
.section-inner { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section-heading { max-width: 760px; }
.section-heading h2 { margin: 0; font-size: clamp(40px, 5.5vw, 68px); line-height: 1.02; }
.section-heading p { max-width: 650px; margin: 22px 0 0; color: var(--ink-soft); font-size: 18px; }
.section-dark .section-heading p { color: #b7b9c7; }

.steps { margin-top: 62px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.step { position: relative; padding: 30px 34px 8px 0; }
.step + .step { padding-left: 34px; border-left: 1px solid var(--line); }
.step-number { color: var(--cobalt); font-family: var(--utility); font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.step h3 { margin: 22px 0 10px; font-size: 22px; letter-spacing: -.025em; }
.step p { margin: 0; color: var(--ink-soft); font-size: 15px; }

.simulation-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.objection-card { position: relative; min-height: 520px; display: grid; place-items: center; border: 1px solid #303244; border-radius: 28px; overflow: hidden; background: radial-gradient(circle at 50% 40%, #24274e, #11121d 63%); }
.objection-card::before { content: ""; position: absolute; inset: 32px; border: 1px solid rgba(255,255,255,.08); border-radius: 22px; }
.objection-button { position: relative; z-index: 3; width: 190px; height: 190px; display: grid; place-items: center; border: 12px solid #3f1420; border-radius: 50%; color: #fff; background: var(--coral); box-shadow: 0 0 0 18px #23151e, 0 30px 70px rgba(217,54,62,.35); font-family: var(--utility); font-size: 21px; font-weight: 900; letter-spacing: .09em; }
.sound-ring { position: absolute; width: 220px; height: 220px; border: 1px solid rgba(88,168,255,.5); border-radius: 50%; animation: ring 2.4s ease-out infinite; }
.sound-ring:nth-child(2) { animation-delay: .8s; }
.sound-ring:nth-child(3) { animation-delay: 1.6s; }
.simulation-copy ul { margin: 34px 0 0; padding: 0; list-style: none; }
.simulation-copy li { padding: 18px 0; display: grid; grid-template-columns: 38px 1fr; gap: 15px; border-top: 1px solid #303241; }
.simulation-copy li:last-child { border-bottom: 1px solid #303241; }
.simulation-copy li span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--cobalt); font-size: 12px; font-weight: 800; }
.simulation-copy li strong { display: block; margin-bottom: 3px; }
.simulation-copy li small { color: #aeb0bd; font-size: 14px; }

.feature-grid { margin-top: 62px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.feature-card { min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.feature-card:nth-child(1), .feature-card:nth-child(4) { grid-column: span 7; }
.feature-card:nth-child(2), .feature-card:nth-child(3) { grid-column: span 5; }
.feature-card h3 { margin: 52px 0 10px; font-size: 22px; letter-spacing: -.03em; }
.feature-card p { max-width: 520px; margin: 0; color: var(--ink-soft); }
.feature-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--cobalt); background: #ededff; font-size: 18px; font-weight: 900; }
.feature-card.highlight { color: #fff; border-color: var(--cobalt); background: var(--cobalt); }
.feature-card.highlight p { color: rgba(255,255,255,.78); }
.feature-card.highlight .feature-mark { color: #fff; background: rgba(255,255,255,.16); }

.native-showcase { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: center; }
.native-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(42px, 5.5vw, 68px); line-height: 1.02; letter-spacing: -.045em; }
.native-copy p { margin: 22px 0 0; color: var(--ink-soft); font-size: 17px; }
.native-copy .text-link { display: inline-block; margin-top: 22px; }
.native-devices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; align-items: start; }
.platform-card { padding: 18px 18px 22px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 24px 60px rgba(16,17,27,.1); }
.platform-card:first-child { transform: rotate(-1.2deg) translateY(-8px); }
.platform-card:last-child { transform: rotate(1.2deg) translateY(18px); }
.platform-identity { margin: 0 2px 16px; display: flex; align-items: center; gap: 10px; }
.platform-identity strong { font-size: 13px; letter-spacing: -.01em; }
.platform-mark { width: 34px; height: 34px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 11px; color: var(--cobalt); background: #ededff; font-family: var(--utility); font-size: 9px; font-weight: 900; letter-spacing: .04em; }
.platform-mark-android { color: #326b3a; background: #e6f5e7; }
.platform-mark svg { width: 19px; height: 19px; }
.mobile-device { width: min(100%, 250px); margin: 0 auto; padding: 8px; border-radius: 40px; background: #0e0f16; box-shadow: 0 24px 54px rgba(16,17,27,.18); }
.mobile-device img { width: 100%; height: auto; border-radius: 32px; }
.platform-download { margin-top: 18px; display: grid; justify-items: center; gap: 8px; text-align: center; }
.store-badge { display: inline-block; border-radius: 7px; line-height: 0; }
.store-badge[aria-disabled="true"] { cursor: not-allowed; }
.store-badge img { display: block; height: auto; }
.store-badge-apple img { width: 144px; }
.store-badge-google img { width: 174px; margin: -10px -15px; }
.availability-note { color: #777985; font-family: var(--utility); font-size: 9px; font-weight: 700; line-height: 1.4; letter-spacing: .035em; }

.audiences { margin-top: 58px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.audience-card { position: relative; min-height: 360px; padding: 36px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 22px; overflow: hidden; }
.audience-card:first-child { color: #15172a; background: linear-gradient(145deg, #dce5ff, #f3f0ff); }
.audience-card:last-child { color: #fff; background: linear-gradient(145deg, #161827, #2b2f56); }
.audience-label { font-family: var(--utility); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.audience-card h3 { max-width: 470px; margin: 18px 0 12px; font-family: var(--display); font-size: 40px; line-height: 1.02; letter-spacing: -.04em; }
.audience-card p { max-width: 500px; margin: 0; opacity: .76; }
.audience-card img { position: absolute; top: 4px; right: 8px; width: 230px; height: 230px; border-radius: 50%; object-fit: cover; opacity: .9; mix-blend-mode: multiply; }
.audience-card:last-child img { opacity: .54; mix-blend-mode: screen; }
.audience-card > :not(img) { position: relative; z-index: 2; }

.privacy-panel { padding: 56px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; border: 1px solid var(--line); border-radius: 26px; background: #fff; }
.privacy-panel h2 { margin: 0; font-family: var(--display); font-size: clamp(40px, 5vw, 62px); line-height: 1.02; letter-spacing: -.045em; }
.privacy-panel > div > p { color: var(--ink-soft); }
.privacy-list { display: grid; gap: 12px; }
.privacy-item { padding: 18px 20px; border-radius: 13px; background: var(--mist); }
.privacy-item strong { display: block; font-size: 14px; }
.privacy-item span { display: block; margin-top: 4px; color: var(--ink-soft); font-size: 13px; }
.text-link { color: var(--cobalt); font-weight: 700; text-underline-offset: 4px; }

.faq-list { max-width: 860px; margin: 52px 0 0; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 72px; padding: 21px 44px 21px 0; position: relative; display: flex; align-items: center; font-size: 18px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; color: var(--cobalt); font-size: 25px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 740px; margin: -4px 0 24px; color: var(--ink-soft); }

.cta-section { padding: 0 0 112px; background: var(--mist); }
.cta-panel { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 70px; position: relative; overflow: hidden; border-radius: 28px; color: #fff; background: var(--cobalt); }
.cta-panel::after { content: ""; position: absolute; width: 460px; height: 460px; top: -220px; right: -80px; border: 70px solid rgba(255,255,255,.1); border-radius: 50%; }
.cta-panel h2 { max-width: 720px; margin: 0; position: relative; z-index: 2; font-size: clamp(44px, 6vw, 72px); line-height: .98; }
.cta-panel p { max-width: 620px; margin: 22px 0 0; position: relative; z-index: 2; color: rgba(255,255,255,.76); font-size: 18px; }
.cta-panel .hero-actions { position: relative; z-index: 2; }
.cta-panel .button-primary { color: var(--cobalt); background: #fff; }
.cta-panel .button-secondary { color: #fff; border-color: rgba(255,255,255,.35); background: transparent; }

.site-footer { color: #d9dae2; background: var(--night); }
.footer-inner { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 68px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 50px; }
.footer-brand .brand { color: #fff; }
.footer-brand p { max-width: 420px; margin: 20px 0 0; color: #9fa1ae; font-size: 14px; }
.footer-column strong { display: block; margin-bottom: 16px; color: #fff; font-size: 13px; }
.footer-column a { display: block; width: fit-content; margin: 9px 0; color: #aeb0bd; font-size: 13px; text-decoration: none; }
.footer-column a:hover { color: #fff; }
.footer-bottom { margin-top: 52px; padding-top: 24px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid #30313d; color: #858794; font-size: 12px; }

.legal-hero { padding: 78px 0 60px; border-bottom: 1px solid var(--line); background: var(--mist); }
.legal-hero-inner { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.legal-hero h1 { max-width: 830px; margin: 0; font-size: clamp(48px, 7vw, 78px); line-height: .98; }
.legal-hero p { max-width: 720px; margin: 22px 0 0; color: var(--ink-soft); font-size: 18px; }
.updated { margin-top: 24px; color: #6e707d; font-family: var(--utility); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.legal-main { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 72px 0 110px; display: grid; grid-template-columns: 230px minmax(0, 760px); gap: 78px; }
.legal-toc { position: sticky; top: 26px; align-self: start; }
.legal-toc strong { display: block; margin-bottom: 12px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.legal-toc a { display: block; padding: 5px 0; color: #666876; font-size: 13px; text-decoration: none; }
.legal-toc a:hover { color: var(--cobalt); }
.legal-content { min-width: 0; }
.legal-content section { scroll-margin-top: 30px; }
.legal-content section + section { margin-top: 48px; padding-top: 44px; border-top: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 16px; font-family: var(--display); font-size: 32px; line-height: 1.15; letter-spacing: -.035em; }
.legal-content h3 { margin: 28px 0 10px; font-size: 17px; }
.legal-content p, .legal-content li { color: #454651; line-height: 1.72; }
.legal-content ul { padding-left: 22px; }
.legal-content li + li { margin-top: 9px; }
.legal-note { padding: 20px 22px; border-left: 4px solid var(--cobalt); background: #f0f2ff; }
.legal-note strong { color: var(--ink); }
.contact-card { padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--mist); }
.contact-card p { margin: 0; }
.contact-card p + p { margin-top: 7px; }
.contact-card-spaced { margin-top: 32px; }

.support-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.support-card { padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.support-card h2 { margin: 0 0 10px; font-size: 20px; }
.support-card p { margin: 0; color: var(--ink-soft); }
.support-card a { display: inline-block; margin-top: 16px; color: var(--cobalt); font-weight: 700; }

.motion-ready [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 700ms ease, transform 700ms ease; }
.motion-ready [data-reveal].in-view { opacity: 1; transform: none; }

@keyframes phone-arrive { from { opacity: 0; transform: rotate(-8deg) translate(20px, 30px) scale(.94); } }
@keyframes word-in { 0%, 4% { opacity: 0; } 12%, 88% { opacity: 1; } 96%, 100% { opacity: 0; } }
@keyframes voice { from { height: 6px; } to { height: 27px; } }
@keyframes meter-shift { 0%, 25% { width: 48%; } 52%, 82% { width: 68%; } 100% { width: 48%; } }
@keyframes objection-pulse { 0%, 38%, 100% { transform: scale(1); box-shadow: none; } 44%, 52% { transform: scale(1.04); box-shadow: 0 0 0 5px rgba(217,54,62,.17); } }
@keyframes stamp { 0%, 50% { opacity: 0; transform: translate(-50%, -50%) rotate(-8deg) scale(1.7); } 55%, 78% { opacity: 1; transform: translate(-50%, -50%) rotate(-8deg) scale(1); } 86%, 100% { opacity: 0; transform: translate(-50%, -50%) rotate(-8deg) scale(.96); } }
@keyframes note-drift { to { transform: translateY(-9px) rotate(1deg); } }
@keyframes ring { from { opacity: .7; transform: scale(.82); } to { opacity: 0; transform: scale(1.6); } }

@media (max-width: 980px) {
  .hero-inner { min-height: auto; padding-top: 64px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .case-stage { width: min(100%, 680px); margin: 0 auto; }
  .simulation-layout, .privacy-panel { grid-template-columns: 1fr; }
  .native-showcase { grid-template-columns: 1fr; }
  .native-copy { max-width: 680px; }
  .objection-card { min-height: 420px; }
  .feature-card:nth-child(n) { grid-column: span 6; }
  .legal-main { grid-template-columns: 190px minmax(0, 1fr); gap: 44px; }
}

@media (max-width: 760px) {
  .header-inner { width: min(calc(100% - 28px), var(--max)); min-height: 66px; }
  .menu-button { display: block; }
  .main-nav { position: absolute; top: 66px; right: 14px; left: 14px; padding: 18px; display: none; align-items: stretch; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
  .main-nav[data-open="true"] { display: block; }
  .nav-links { display: grid; gap: 4px; }
  .nav-links a { min-height: 44px; padding: 9px 10px; display: flex; align-items: center; }
  .nav-actions { margin-top: 12px; }
  .nav-actions .button { flex: 1; }
  .hero-inner { width: min(calc(100% - 28px), var(--max)); padding: 52px 0 46px; grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .hero-copy { min-width: 0; }
  .hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-lede { font-size: 17px; }
  .case-stage { min-height: 550px; transform: scale(.9); transform-origin: top center; margin-bottom: -48px; }
  .case-file { inset: 34px -28px 20px 12px; }
  .evidence-note { min-width: 150px; max-width: 160px; }
  .note-one { right: -20px; }
  .note-two { right: -12px; }
  .trust-inner { width: 100%; grid-template-columns: 1fr; }
  .trust-item { min-height: 76px; border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: 0; }
  .trust-item:last-child { border-right: 0; }
  .section { padding: 82px 0; }
  .section-inner { width: min(calc(100% - 28px), var(--max)); }
  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { padding: 28px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card:nth-child(n) { grid-column: auto; }
  .audiences { grid-template-columns: 1fr; }
  .native-devices { gap: 12px; }
  .platform-card { padding: 12px 12px 18px; border-radius: 19px; }
  .platform-identity { margin-bottom: 12px; gap: 7px; }
  .platform-identity strong { font-size: 11px; }
  .platform-mark { width: 29px; height: 29px; border-radius: 9px; font-size: 8px; }
  .mobile-device { padding: 6px; border-radius: 31px; }
  .mobile-device img { border-radius: 25px; }
  .store-badge-apple img { width: 126px; }
  .store-badge-google img { width: 154px; }
  .privacy-panel { padding: 30px 24px; gap: 32px; }
  .cta-panel { width: min(calc(100% - 28px), var(--max)); padding: 42px 26px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .legal-hero { padding: 56px 0 46px; }
  .legal-hero-inner, .legal-main { width: min(calc(100% - 28px), var(--max)); }
  .legal-main { padding: 50px 0 82px; display: block; }
  .legal-toc { display: none; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .hero-actions { width: min(100%, 320px); }
  .hero-actions .button { width: 100%; }
  .case-stage { left: 50%; width: 430px; transform: translateX(-50%) scale(.78); margin-bottom: -100px; }
  .native-devices { width: min(100%, 340px); margin: 0 auto; grid-template-columns: 1fr; gap: 24px; }
  .platform-card:first-child, .platform-card:last-child { transform: none; }
  .platform-card { padding: 18px 18px 22px; }
  .platform-identity strong { font-size: 13px; }
  .mobile-device { width: min(100%, 260px); }
  .store-badge-apple img { width: 144px; }
  .store-badge-google img { width: 174px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .sustained { opacity: 1; transform: translate(-50%, -50%) rotate(-8deg); }
  .transcript .word { opacity: 1; }
  .demo-toggle { display: none; }
}

@media print {
  .site-header, .site-footer, .legal-toc { display: none; }
  .legal-hero { padding: 20px 0; background: #fff; }
  .legal-main { display: block; padding: 20px 0; }
  .legal-content section + section { break-before: auto; }
}
