:root {
  color-scheme: light;
  --ink: #1c201d;
  --ink-soft: #565c56;
  --paper: #f4f0e8;
  --paper-deep: #eae4d8;
  --card: #fffdf8;
  --line: #d9d3c8;
  --lime: #d7ff64;
  --lime-strong: #b9e53f;
  --coral: #ff795f;
  --sky: #98d9ff;
  --lavender: #c7b9ff;
  --yellow: #ffd65c;
  --green: #54ad74;
  --night: #101512;
  --night-raised: #19211c;
  --night-soft: #2a342c;
  --shadow: 0 22px 70px rgb(34 38 31 / 10%);
  --hard-shadow: 7px 8px 0 rgb(28 32 29 / 12%);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  font-synthesis: none;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: 0.19;
  background-image: radial-gradient(rgb(28 32 29 / 11%) 0.45px, transparent 0.45px);
  background-size: 5px 5px;
  content: "";
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button {
  border: 0;
  color: inherit;
  background: none;
  font: inherit;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 9.5ch;
  font-size: clamp(4.6rem, 8.8vw, 9rem);
  font-weight: 670;
  line-height: 0.84;
}

h2 {
  max-width: 12ch;
  font-size: clamp(3.1rem, 6.4vw, 6.7rem);
  font-weight: 660;
  line-height: 0.9;
}

h3 {
  font-size: clamp(1.4rem, 2.3vw, 2.05rem);
  font-weight: 690;
  line-height: 1.02;
}

.shell {
  width: min(calc(100% - 3rem), 1360px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  color: var(--card);
  background: var(--ink);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 1rem;
  left: 50%;
  display: grid;
  width: min(calc(100% - 2rem), 1320px);
  min-height: 4.3rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0.6rem 0.65rem 0.6rem 1rem;
  border: 1px solid rgb(28 32 29 / 14%);
  border-radius: 999px;
  background: rgb(255 253 248 / 87%);
  box-shadow: 0 12px 45px rgb(28 32 29 / 8%);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
  transition: box-shadow 180ms ease, background 180ms ease, top 180ms ease;
}

.site-header.is-scrolled {
  top: 0.55rem;
  background: rgb(255 253 248 / 94%);
  box-shadow: 0 15px 46px rgb(28 32 29 / 13%);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.02rem;
  font-weight: 780;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 11px;
  color: var(--lime);
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  text-transform: lowercase;
  transform: rotate(-3deg);
}

.brand-mark--small {
  width: 2rem;
  height: 2rem;
  border-radius: 9px;
  font-size: 0.68rem;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 2.5vw, 2.4rem);
}

.site-header nav a {
  position: relative;
  padding: 0.6rem 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 3px;
  background: var(--lime-strong);
  content: "";
  transform: scaleX(0) rotate(-1deg);
  transform-origin: left;
  transition: transform 150ms ease;
}

.site-header nav a:hover::after {
  transform: scaleX(1) rotate(-1deg);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 780;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.header-cta,
.button--ink {
  color: var(--card);
  background: var(--ink);
}

.header-cta:hover,
.button:hover {
  box-shadow: 4px 5px 0 rgb(28 32 29 / 18%);
  transform: translate(-2px, -2px) rotate(-0.3deg);
}

.button--lime {
  color: var(--night);
  background: var(--lime);
}

.eyebrow,
.micro-label {
  margin-bottom: 1rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: 930px;
  align-items: center;
  overflow: hidden;
  padding: 10rem 0 6.5rem;
  background:
    radial-gradient(circle at 8% 12%, rgb(215 255 100 / 46%), transparent 28rem),
    radial-gradient(circle at 93% 50%, rgb(152 217 255 / 21%), transparent 31rem),
    linear-gradient(180deg, var(--paper) 0%, #f1ecdf 100%);
}

.hero::after {
  position: absolute;
  right: -9rem;
  bottom: -16rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgb(28 32 29 / 8%);
  border-radius: 50%;
  content: "";
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgb(28 32 29 / 8%);
  border-radius: 50%;
}

.hero-orbit::before {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.hero-orbit--one {
  top: 13%;
  right: 3%;
  width: 31rem;
  height: 31rem;
  transform: rotate(-18deg);
}

.hero-orbit--one::before {
  top: 24%;
  left: 2%;
}

.hero-orbit--two {
  bottom: 7%;
  left: -8rem;
  width: 22rem;
  height: 22rem;
}

.hero-orbit--two::before {
  right: 13%;
  bottom: 8%;
  background: var(--sky);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.hero-copy {
  padding-left: clamp(0rem, 2vw, 2rem);
}

.hero h1 span {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.hero h1 span::after {
  position: absolute;
  z-index: -1;
  right: -0.06em;
  bottom: 0.03em;
  left: -0.04em;
  height: 0.26em;
  background: var(--lime);
  content: "";
  transform: rotate(-1.5deg);
}

.hero-lede {
  max-width: 38rem;
  margin: 2.3rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.2rem;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.7rem 0;
  font-size: 0.88rem;
  font-weight: 780;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.hero-proof {
  display: grid;
  margin: 3rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
}

.mobile-clue-preview {
  display: none;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 0.25rem;
  font-size: 0.83rem;
}

.hero-proof span {
  max-width: 10rem;
  color: var(--ink-soft);
  font-size: 0.69rem;
  line-height: 1.35;
}

.signal-stage {
  position: relative;
  min-height: 620px;
}

.stage-label {
  position: absolute;
  z-index: 6;
  top: 2.5rem;
  left: -0.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(-7deg);
}

.call-receipt,
.clue-card,
.pattern-card {
  position: absolute;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--hard-shadow);
}

.call-receipt {
  z-index: 3;
  top: 4.5rem;
  left: 1.8rem;
  width: min(92%, 31rem);
  padding: 1.45rem;
  border-radius: 25px;
  transform: rotate(-2.3deg);
}

.receipt-head,
.receipt-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.receipt-head .micro-label {
  display: block;
  margin: 0 0 0.3rem;
}

.receipt-head strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.duration {
  font-size: 1.7rem;
  font-weight: 720;
  letter-spacing: -0.05em;
}

.call-wave {
  display: flex;
  height: 5.3rem;
  align-items: center;
  gap: 0.27rem;
  margin: 1.1rem 0;
  padding: 0 0.9rem;
  border-radius: 15px;
  background: var(--paper-deep);
  overflow: hidden;
}

.call-wave span {
  width: 0.45rem;
  height: 20%;
  border-radius: 999px;
  background: var(--ink);
  animation: wave 1.7s ease-in-out infinite alternate;
}

.call-wave span:nth-child(3n) { height: 68%; animation-delay: -0.8s; }
.call-wave span:nth-child(4n) { height: 92%; animation-delay: -1.2s; }
.call-wave span:nth-child(5n) { height: 48%; animation-delay: -0.4s; }
.call-wave span:nth-child(7n) { height: 78%; animation-delay: -1.5s; }

.receipt-meta {
  justify-content: flex-start;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
}

.receipt-meta span + span::before {
  margin-right: 1rem;
  color: var(--line);
  content: "•";
}

.trace-line {
  position: absolute;
  z-index: 1;
  top: 17rem;
  left: 8rem;
  width: 19rem;
  height: 15rem;
  border-right: 2px dashed rgb(28 32 29 / 24%);
  border-bottom: 2px dashed rgb(28 32 29 / 24%);
  border-radius: 0 0 9rem 0;
}

.trace-line i {
  position: absolute;
  width: 0.65rem;
  height: 0.65rem;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--coral);
}

.trace-line i:nth-child(1) { top: 1rem; right: -0.38rem; }
.trace-line i:nth-child(2) { right: 5rem; bottom: -0.4rem; background: var(--yellow); }
.trace-line i:nth-child(3) { right: 10rem; bottom: -0.4rem; background: var(--sky); }

.clue-card {
  z-index: 4;
  top: 20rem;
  right: 0;
  width: min(83%, 29rem);
  padding: 1.6rem 1.7rem;
  border-radius: 3px 23px 23px 23px;
  transform: rotate(2.5deg);
}

.clue-pin {
  position: absolute;
  top: -0.42rem;
  left: 1.4rem;
  width: 0.9rem;
  height: 0.9rem;
  border: 3px solid var(--card);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 2px 5px rgb(28 32 29 / 25%);
}

.clue-card .micro-label {
  margin-bottom: 0.7rem;
}

.clue-card blockquote {
  margin-bottom: 1.3rem;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.clue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.clue-tags span {
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  background: var(--paper-deep);
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 720;
}

.pattern-card {
  z-index: 5;
  right: 2.2rem;
  bottom: 2.7rem;
  width: 18rem;
  padding: 1.4rem;
  border-color: var(--night);
  border-radius: 20px;
  color: var(--card);
  background: var(--night);
  transform: rotate(-3deg);
}

.pattern-card .micro-label {
  margin-bottom: 0.6rem;
  color: rgb(255 253 248 / 58%);
}

.pattern-card strong {
  display: block;
  color: var(--lime);
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.pattern-card p {
  margin: 0.55rem 0 1rem;
  color: rgb(255 253 248 / 72%);
  font-size: 0.78rem;
  line-height: 1.45;
}

.mini-bars {
  display: flex;
  height: 2.5rem;
  align-items: end;
  gap: 0.25rem;
}

.mini-bars i {
  width: 100%;
  height: 38%;
  border-radius: 3px 3px 0 0;
  background: var(--coral);
}

.mini-bars i:nth-child(2) { height: 65%; }
.mini-bars i:nth-child(3) { height: 48%; }
.mini-bars i:nth-child(4) { height: 88%; background: var(--lime); }
.mini-bars i:nth-child(5) { height: 72%; }
.mini-bars i:nth-child(6) { height: 55%; }
.mini-bars i:nth-child(7) { height: 32%; }

.stage-caption {
  position: absolute;
  right: 2.5rem;
  bottom: 0;
  color: var(--ink-soft);
  font-size: 0.62rem;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  color: var(--lime);
  background: var(--ink);
  transform: rotate(-0.65deg) scale(1.01);
}

.marquee div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.5rem;
  padding: 0.95rem 0;
  animation: marquee 28s linear infinite;
}

.marquee span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee i {
  color: var(--coral);
  font-style: normal;
}

.section {
  position: relative;
  padding: clamp(6rem, 11vw, 11rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section-heading > p,
.section-heading > div + p {
  max-width: 31rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.journey-section {
  background:
    linear-gradient(90deg, transparent 0 7%, rgb(255 121 95 / 9%) 7% 7.12%, transparent 7.12%),
    var(--paper);
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

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

.journey-steps li {
  border-top: 1px solid var(--line);
}

.journey-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.journey-steps button {
  display: grid;
  width: 100%;
  min-height: 8.8rem;
  grid-template-columns: 3.2rem 1fr;
  align-items: start;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: left;
  cursor: pointer;
}

.step-number {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.journey-steps strong,
.journey-steps small {
  display: block;
}

.journey-steps strong {
  margin: 0.1rem 0 0.45rem;
  font-size: 1.1rem;
  letter-spacing: -0.025em;
}

.journey-steps small {
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.5;
}

.journey-steps li.is-active .step-number {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--lime);
  transform: rotate(-7deg);
}

.journey-steps li.is-active strong {
  text-decoration: underline;
  text-decoration-color: var(--lime-strong);
  text-decoration-thickness: 0.32em;
  text-underline-offset: -0.16em;
  text-decoration-skip-ink: none;
}

.journey-visual {
  position: sticky;
  top: 8rem;
  min-height: 620px;
  padding: 2.7rem;
  border: 1px solid var(--ink);
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 13%, rgb(215 255 100 / 22%), transparent 16rem),
    var(--night);
  box-shadow: 9px 10px 0 var(--lime);
  overflow: hidden;
}

.phone-shell {
  width: min(100%, 23rem);
  min-height: 500px;
  margin: 0 auto;
  padding: 1rem 1.2rem 1.5rem;
  border: 1px solid var(--night-soft);
  border-radius: 36px;
  color: #e7ece5;
  background: var(--night-raised);
  box-shadow: 0 28px 70px rgb(0 0 0 / 30%);
  transition: transform 300ms ease;
}

.phone-top,
.phone-brand,
.phone-ready,
.phone-call {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.phone-top {
  padding: 0 0.4rem 1.4rem;
  color: rgb(231 236 229 / 55%);
  font-size: 0.65rem;
}

.phone-top i {
  width: 3rem;
  height: 0.35rem;
  border-radius: 99px;
  background: rgb(231 236 229 / 18%);
}

.phone-brand {
  justify-content: flex-start;
  padding-bottom: 2rem;
}

.phone-brand .brand-mark {
  color: var(--night);
  background: var(--lime);
}

.phone-brand small {
  color: rgb(231 236 229 / 58%);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-ready {
  justify-content: flex-start;
  padding: 1.3rem;
  border: 1px solid rgb(215 255 100 / 28%);
  border-radius: 22px;
  background: rgb(215 255 100 / 9%);
}

.phone-ready > i {
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--night);
  background: var(--lime);
  font-style: normal;
  font-weight: 900;
}

.phone-ready small,
.phone-ready strong,
.phone-call small,
.phone-call strong {
  display: block;
}

.phone-ready small,
.phone-call small {
  color: rgb(231 236 229 / 55%);
  font-size: 0.68rem;
}

.phone-ready strong,
.phone-call strong {
  margin-top: 0.2rem;
  font-size: 0.92rem;
}

.phone-call {
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: 18px;
  background: var(--night-soft);
}

.phone-call em {
  color: var(--lime);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.upload-track {
  height: 0.45rem;
  margin-top: 1rem;
  border-radius: 99px;
  background: var(--night-soft);
  overflow: hidden;
}

.upload-track i {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
  transition: width 300ms ease;
}

.phone-shell > p {
  margin: 2.8rem 1rem 0;
  color: rgb(231 236 229 / 54%);
  font-size: 0.76rem;
  text-align: center;
}

.visual-overlay {
  position: absolute;
  right: 1.7rem;
  bottom: 1.7rem;
  width: min(19rem, 48%);
  padding: 1.25rem;
  border-radius: 2px 18px 18px 18px;
  background: var(--yellow);
  box-shadow: 5px 6px 0 rgb(0 0 0 / 28%);
  transform: rotate(2deg);
  transition: background 180ms ease, transform 180ms ease;
}

.visual-kicker,
.visual-overlay strong,
.visual-overlay p {
  display: block;
}

.visual-kicker {
  margin-bottom: 0.45rem;
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.visual-overlay strong {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.visual-overlay p {
  margin: 0.4rem 0 0;
  font-size: 0.72rem;
  line-height: 1.4;
}

.journey-visual[data-state="transcript"] .visual-overlay { background: var(--sky); transform: rotate(-2deg); }
.journey-visual[data-state="questions"] .visual-overlay { background: var(--coral); transform: rotate(1deg); }
.journey-visual[data-state="patterns"] .visual-overlay { background: var(--lime); transform: rotate(-1.5deg); }
.journey-visual[data-state="transcript"] .upload-track i { width: 100%; background: var(--sky); }
.journey-visual[data-state="questions"] .upload-track i { width: 100%; background: var(--coral); }
.journey-visual[data-state="patterns"] .upload-track i { width: 100%; background: var(--lime); }

.evidence-section {
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}

.section-heading--wide {
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
}

.feature-card {
  position: relative;
  min-height: 31rem;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  box-shadow: 0 17px 55px rgb(40 42 35 / 7%);
  overflow: hidden;
}

.feature-card--transcript { grid-column: span 7; }
.feature-card--questions { grid-column: span 5; transform: translateY(2rem); }
.feature-card--patterns { grid-column: span 5; }
.feature-card--brief { grid-column: span 7; transform: translateY(2rem); }

.card-heading {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.card-heading .micro-label {
  margin-bottom: 0.45rem;
}

.card-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  transform: rotate(-4deg);
}

.card-icon--coral { background: var(--coral); transform: rotate(5deg); }
.card-icon--sky { background: var(--sky); }

.transcript {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.transcript > div {
  position: relative;
  padding: 0.95rem 3.8rem 0.95rem 1rem;
  border-radius: 12px;
  background: var(--card);
}

.transcript p {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
}

.transcript time {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #3f463f;
  font-size: 0.65rem;
  font-weight: 680;
}

.speaker {
  color: var(--ink-soft);
  font-size: 0.63rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speaker--customer { color: #315c91; }
.speaker--agent { color: #783d88; }

.transcript-highlight::after {
  position: absolute;
  right: 1rem;
  bottom: -0.35rem;
  width: 74%;
  height: 0.7rem;
  background: var(--lime);
  content: "";
  opacity: 0.7;
  transform: rotate(-1deg);
}

.language-switch {
  display: inline-flex;
  gap: 0.25rem;
  margin-top: 1.2rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-switch span {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 760;
}

.language-switch .is-selected {
  color: var(--card);
  background: var(--ink);
}

.question-stack {
  display: grid;
  gap: 0.8rem;
}

.question-stack > div {
  display: grid;
  min-height: 6.3rem;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.question-stack span {
  color: var(--coral);
  font-size: 0.64rem;
  font-weight: 850;
}

.question-stack p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 660;
  line-height: 1.35;
}

.question-stack em {
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #343934;
  background: var(--card);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 680;
}

.feature-note {
  margin: 2rem 0 0;
  padding: 1rem;
  border-left: 4px solid var(--coral);
  color: var(--ink-soft);
  background: rgb(255 121 95 / 10%);
  font-size: 0.78rem;
}

.pattern-list {
  display: grid;
  gap: 1rem;
  margin-top: 2.2rem;
}

.pattern-list > div {
  position: relative;
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: baseline;
  gap: 0.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.pattern-list strong {
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}

.pattern-list span {
  font-size: 0.78rem;
  font-weight: 650;
}

.pattern-list i {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 92%;
  height: 4px;
  background: var(--sky);
  transform: rotate(-0.5deg);
}

.pattern-list > div:nth-child(2) i { width: 64%; }
.pattern-list > div:nth-child(3) i { width: 48%; }
.pattern-list > div:nth-child(4) i { width: 24%; }

.feature-card--brief {
  color: var(--card);
  background: var(--night);
}

.feature-card--brief .micro-label {
  color: rgb(255 253 248 / 55%);
}

.feature-card--brief h3 {
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 4rem);
}

.feature-card--brief > p:not(.micro-label) {
  max-width: 33rem;
  margin-top: 1.5rem;
  color: rgb(255 253 248 / 66%);
}

.brief-stamp {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transform: rotate(8deg);
}

.attachment {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: grid;
  min-height: 4.5rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  border: 1px solid rgb(255 253 248 / 15%);
  border-radius: 14px;
  background: var(--night-raised);
}

.attachment > span {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 10px;
  color: var(--night);
  background: var(--lime);
  font-size: 0.65rem;
  font-weight: 900;
}

.attachment strong {
  font-size: 0.82rem;
}

.attachment em {
  color: rgb(255 253 248 / 45%);
  font-size: 0.62rem;
  font-style: normal;
}

.dashboard-section {
  background: var(--paper);
}

.dashboard-intro {
  display: grid;
  margin-bottom: 4rem;
  grid-template-columns: 0.55fr 1.2fr 0.65fr;
  align-items: end;
  gap: 2rem;
}

.dashboard-intro .eyebrow {
  align-self: start;
}

.dashboard-intro p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.dashboard-frame {
  border: 1px solid var(--ink);
  border-radius: 27px;
  background: var(--card);
  box-shadow: 11px 12px 0 var(--ink);
  overflow: hidden;
}

.browser-bar {
  display: grid;
  min-height: 4rem;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 1.4rem;
  color: var(--card);
  background: var(--ink);
  font-size: 0.68rem;
}

.browser-bar > span {
  display: flex;
  gap: 0.4rem;
}

.browser-bar i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgb(255 253 248 / 25%);
}

.browser-bar em {
  justify-self: end;
  color: var(--lime);
  font-style: normal;
  font-weight: 760;
}

.dashboard-body {
  display: grid;
  min-height: 640px;
  grid-template-columns: 12rem 1fr;
}

.dash-nav {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.3rem;
  border-right: 1px solid var(--line);
  background: var(--paper-deep);
}

.dash-logo {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 11px;
  color: var(--lime);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  transform: rotate(-3deg);
}

.dash-nav nav {
  display: grid;
  gap: 0.35rem;
  margin-top: 3rem;
}

.dash-nav nav span,
.dash-nav nav b {
  padding: 0.8rem 0.9rem;
  border-radius: 9px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.dash-nav nav b {
  color: var(--ink);
  background: var(--lime);
}

.dash-nav > small {
  margin-top: auto;
  color: var(--green);
  font-size: 0.64rem;
  font-weight: 760;
}

.dash-nav > small::before {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.dash-content {
  padding: clamp(1.6rem, 4vw, 3.2rem);
}

.dash-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.dash-title p {
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 760;
  text-transform: uppercase;
}

.dash-title h3 {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
}

.dash-title > span {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 0.7rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 2rem;
}

.metric-grid article {
  min-height: 8.4rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--paper);
}

.metric-grid article:nth-child(1) { background: color-mix(in srgb, var(--sky) 30%, white); }
.metric-grid article:nth-child(2) { background: color-mix(in srgb, var(--lime) 30%, white); }

.metric-grid span,
.metric-grid strong,
.metric-grid small {
  display: block;
}

.metric-grid span {
  color: var(--ink-soft);
  font-size: 0.62rem;
}

.metric-grid strong {
  margin: 0.45rem 0 0.35rem;
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.metric-grid article:last-child strong {
  font-size: 1.15rem;
  letter-spacing: -0.035em;
}

.metric-grid small {
  color: var(--ink-soft);
  font-size: 0.58rem;
}

.dash-panels {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.dash-panels > article {
  min-height: 17rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.trend-panel > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.68rem;
}

.trend-panel > div:first-child span {
  color: var(--ink-soft);
  font-size: 0.58rem;
}

.chart {
  display: flex;
  height: 10.8rem;
  align-items: end;
  gap: clamp(0.5rem, 1.4vw, 1rem);
  margin-top: 1.1rem;
  padding: 0 0.7rem;
  border-bottom: 1px solid var(--line);
}

.chart b {
  width: 100%;
  height: 52%;
  border-radius: 5px 5px 0 0;
  background: var(--coral);
}

.chart b:nth-child(2) { height: 72%; }
.chart b:nth-child(3) { height: 61%; }
.chart b:nth-child(4) { height: 88%; }
.chart b:nth-child(5) { height: 74%; }
.chart b:nth-child(6) { height: 42%; }
.chart b:nth-child(7) { height: 35%; }
.chart b:nth-child(4) { background: var(--lime-strong); }

.chart-labels {
  display: flex;
  justify-content: space-around;
  margin-top: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.52rem;
}

.asked-panel > strong {
  font-size: 0.72rem;
}

.asked-panel ol {
  display: grid;
  gap: 0;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.asked-panel li {
  display: grid;
  min-height: 4.2rem;
  grid-template-columns: 1.6rem 1fr auto;
  align-items: center;
  gap: 0.55rem;
  border-bottom: 1px solid var(--line);
}

.asked-panel li b {
  color: var(--coral);
  font-size: 0.58rem;
}

.asked-panel li span {
  font-size: 0.65rem;
  font-weight: 650;
}

.asked-panel li em {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-deep);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 780;
}

.mockup-caption {
  margin: 1.8rem 0 0;
  color: var(--ink-soft);
  font-size: 0.68rem;
  text-align: right;
}

.private-section {
  color: #e7ece5;
  background:
    radial-gradient(circle at 78% 22%, rgb(215 255 100 / 8%), transparent 28rem),
    var(--night);
}

.private-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(620px, 1.2fr);
  align-items: center;
  gap: clamp(3rem, 5vw, 5rem);
}

.eyebrow--night {
  color: rgb(231 236 229 / 55%);
}

.private-lede {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: rgb(231 236 229 / 78%);
  font-size: 1.05rem;
}

.truth-note {
  max-width: 36rem;
  margin-top: 2rem;
  padding: 1.3rem;
  border-left: 4px solid var(--lime);
  border-radius: 0 14px 14px 0;
  color: var(--ink);
  background: var(--lime);
}

.truth-note strong {
  display: block;
  margin-bottom: 0.35rem;
}

.truth-note p {
  margin: 0;
  font-size: 0.78rem;
}

.privacy-flow {
  display: grid;
  grid-template-columns: 1fr auto 1.15fr auto 1fr;
  align-items: center;
  gap: 0.7rem;
}

.privacy-node {
  position: relative;
  min-width: 0;
  min-height: 16rem;
  padding: 1.2rem;
  border: 1px solid rgb(231 236 229 / 14%);
  border-radius: 20px;
  background: var(--night-raised);
}

.privacy-node--main {
  min-height: 19rem;
  border-color: rgb(215 255 100 / 32%);
  background: var(--night-soft);
  transform: rotate(-1.5deg);
}

.privacy-node > span {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgb(231 236 229 / 35%);
  font-size: 0.62rem;
  font-weight: 800;
}

.privacy-node i {
  display: grid;
  width: 3.8rem;
  height: 3.8rem;
  margin: 2rem 0 2.5rem;
  place-items: center;
  border: 1px solid rgb(231 236 229 / 22%);
  border-radius: 14px;
  color: var(--night);
  background: var(--lime);
  font-style: normal;
}

.node-phone::before {
  width: 1rem;
  height: 1.7rem;
  border: 2px solid currentColor;
  border-radius: 4px;
  content: "";
}

.node-ledger::before {
  width: 1.45rem;
  height: 1.2rem;
  border: 2px solid currentColor;
  border-radius: 3px;
  box-shadow: inset 0 -0.35rem 0 rgb(16 21 18 / 18%);
  content: "";
}

.privacy-node strong,
.privacy-node small {
  display: block;
}

.privacy-node strong {
  font-size: 1rem;
}

.privacy-node small {
  margin-top: 0.55rem;
  color: rgb(231 236 229 / 76%);
  font-size: 0.7rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.privacy-arrow {
  color: var(--lime);
  font-size: 1.3rem;
}

.deletion-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.2rem;
  margin-top: 5rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgb(231 236 229 / 14%);
  border-radius: 18px;
  background: var(--night-raised);
}

.delete-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  color: var(--night);
  background: var(--yellow);
  font-size: 1.2rem;
}

.deletion-strip p {
  margin: 0.25rem 0 0;
  color: rgb(231 236 229 / 75%);
  font-size: 0.78rem;
}

.fit-section {
  padding-bottom: 4rem;
  background: var(--paper);
}

.fit-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid var(--ink);
  border-radius: 36px;
  background: var(--yellow);
  box-shadow: 9px 10px 0 var(--ink);
  transform: rotate(-0.4deg);
}

.fit-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.8rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgb(28 32 29 / 22%);
}

.fit-card li > span {
  font-size: 0.68rem;
  font-weight: 850;
}

.fit-card li strong,
.fit-card li small {
  display: block;
  grid-column: 2;
}

.fit-card li strong {
  font-size: 0.94rem;
}

.fit-card li small {
  margin-top: -0.5rem;
  color: rgb(28 32 29 / 65%);
  font-size: 0.72rem;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.faq-intro p:last-child {
  max-width: 24rem;
  margin-top: 1.5rem;
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.8rem 3rem 1.8rem 0;
  font-size: 1.05rem;
  font-weight: 690;
  letter-spacing: -0.025em;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.3rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-deep);
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
  background: var(--lime);
}

.faq-list details p {
  max-width: 47rem;
  margin: -0.5rem 0 1.8rem;
  color: var(--ink-soft);
}

.final-cta {
  position: relative;
  padding: clamp(7rem, 13vw, 13rem) 0;
  overflow: hidden;
  color: var(--card);
  background: var(--coral);
}

.final-cta::before {
  position: absolute;
  top: 13%;
  right: -3rem;
  width: 24rem;
  height: 7rem;
  background: var(--lime);
  content: "";
  opacity: 0.75;
  transform: rotate(-9deg);
}

.cta-sun {
  position: absolute;
  bottom: -13rem;
  left: -9rem;
  width: 29rem;
  height: 29rem;
  border-radius: 50%;
  background: var(--yellow);
}

.final-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 5rem;
}

.final-cta .eyebrow {
  color: rgb(255 253 248 / 65%);
}

.final-cta h2 {
  max-width: 11ch;
}

.cta-card {
  padding: 2rem;
  border: 1px solid var(--ink);
  border-radius: 25px;
  color: var(--card);
  background: var(--ink);
  box-shadow: 8px 9px 0 var(--lime);
  transform: rotate(2deg);
}

.cta-card p {
  margin-bottom: 1.5rem;
  color: rgb(255 253 248 / 72%);
}

.cta-card small {
  display: block;
  margin-top: 1rem;
  color: rgb(255 253 248 / 48%);
  font-size: 0.68rem;
}

footer {
  padding: 3.2rem 0;
  color: rgb(255 253 248 / 65%);
  background: var(--night);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr auto;
  align-items: start;
  gap: 3rem;
}

.brand--footer {
  color: var(--card);
}

.brand--footer .brand-mark {
  color: var(--night);
  background: var(--lime);
}

footer p,
footer a,
footer small {
  font-size: 0.72rem;
}

footer p {
  margin: 0;
}

footer div > div {
  display: grid;
  gap: 0.6rem;
}

footer div > div a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  width: max-content;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes wave {
  from { transform: scaleY(0.65); }
  to { transform: scaleY(1.12); }
}

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

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 54rem;
  }

  .signal-stage {
    width: min(100%, 44rem);
    margin: 0 auto;
  }

  .journey-layout,
  .private-grid {
    grid-template-columns: 1fr;
  }

  .journey-visual {
    position: relative;
    top: auto;
  }

  .private-copy {
    max-width: 48rem;
  }

  .dashboard-intro {
    grid-template-columns: 1fr 1.5fr;
  }

  .dashboard-intro p:last-child {
    grid-column: 2;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 800px) {
  html { scroll-padding-top: 5.5rem; }

  .shell { width: min(calc(100% - 2rem), 1360px); }

  .site-header {
    top: 0.55rem;
    width: calc(100% - 1rem);
    min-height: 3.7rem;
    grid-template-columns: 1fr auto;
    padding: 0.45rem 0.48rem 0.45rem 0.8rem;
  }

  .site-header nav { display: none; }
  .site-header .brand-mark { width: 2.15rem; height: 2.15rem; border-radius: 9px; }
  .header-cta { min-height: 2.75rem; padding: 0.65rem 0.9rem; }

  .hero {
    min-height: 0;
    padding: 8.5rem 0 5rem;
  }

  h1 { font-size: clamp(4rem, 19vw, 7rem); }
  h2 { font-size: clamp(3rem, 14vw, 5rem); }

  .hero-grid { gap: 2.5rem; }
  .hero-proof { gap: 0.65rem; }
  .hero-proof span { font-size: 0.62rem; }

  .signal-stage {
    min-height: 590px;
    transform: scale(0.94);
    transform-origin: top center;
  }

  .call-receipt { left: 0; width: 95%; }
  .clue-card { top: 19.5rem; right: 0; width: 90%; }
  .pattern-card { right: 0.7rem; }
  .trace-line { left: 4rem; }

  .section-heading,
  .section-heading--wide,
  .dashboard-intro,
  .fit-card,
  .faq-grid,
  .final-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-heading > p,
  .section-heading > div + p { font-size: 0.95rem; }

  .journey-layout { gap: 3rem; }
  .journey-visual { min-height: 590px; padding: 1.4rem; box-shadow: 6px 7px 0 var(--lime); }
  .phone-shell { min-height: 510px; }
  .visual-overlay { right: 0.8rem; bottom: 0.8rem; width: 55%; }

  .evidence-grid { grid-template-columns: 1fr; }
  .feature-card,
  .feature-card--transcript,
  .feature-card--questions,
  .feature-card--patterns,
  .feature-card--brief {
    grid-column: 1;
    min-height: 0;
    transform: none;
  }

  .feature-card--brief { min-height: 30rem; }
  .question-stack > div { grid-template-columns: 1.7rem 1fr; }
  .question-stack em { grid-column: 2; width: max-content; }

  .dashboard-intro p:last-child { grid-column: 1; }
  .dashboard-frame { overflow-x: auto; box-shadow: 6px 7px 0 var(--ink); }
  .dashboard-body { width: 900px; min-height: 590px; }
  .browser-bar { width: 900px; }

  .privacy-flow {
    grid-template-columns: 1fr;
  }

  .privacy-node,
  .privacy-node--main { min-height: 12rem; transform: none; }
  .privacy-node i { margin: 1.3rem 0; }
  .privacy-arrow { transform: rotate(90deg); text-align: center; }

  .fit-card { padding: 2rem 1.3rem; border-radius: 25px; box-shadow: 6px 7px 0 var(--ink); transform: none; }
  .faq-intro { position: relative; top: auto; }
  .final-cta::before { opacity: 0.25; }
  .cta-card { transform: none; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .brand > span:last-child { font-size: 0.86rem; }
  .header-cta { font-size: 0.72rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 0.6rem; }
  .mobile-clue-preview {
    display: grid;
    gap: 0.35rem;
    margin-top: 1.2rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    border-radius: 3px 14px 14px 14px;
    background: var(--card);
    box-shadow: 4px 5px 0 rgb(28 32 29 / 11%);
    transform: rotate(-1.2deg);
  }
  .mobile-clue-preview span {
    color: var(--ink-soft);
    font-size: 0.58rem;
    font-weight: 820;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .mobile-clue-preview strong {
    font-size: 0.8rem;
  }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof li { display: grid; grid-template-columns: 7rem 1fr; }
  .hero-proof span { max-width: none; }
  .signal-stage { min-height: 555px; margin-bottom: -2rem; transform: scale(0.88); }
  .stage-label { left: 0; }
  .call-receipt { padding: 1.1rem; }
  .call-wave { gap: 0.2rem; }
  .clue-card { padding: 1.25rem; }
  .pattern-card { width: 16rem; }
  .section { padding: 6rem 0; }
  .journey-steps button { grid-template-columns: 2.7rem 1fr; }
  .journey-visual { min-height: 540px; }
  .phone-shell { min-height: 465px; border-radius: 29px; }
  .visual-overlay { width: 72%; }
  .transcript > div { padding-right: 1rem; }
  .transcript time { position: static; display: block; margin-top: 0.4rem; }
  .metric-grid { grid-template-columns: 1fr; }
  .deletion-strip { grid-template-columns: 1fr; }
  .fit-card li { grid-template-columns: 2rem 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

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

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

  .reveal { opacity: 1; transform: none; }
}

@media (prefers-contrast: more) {
  :root { --ink-soft: var(--ink); }
  .site-header { background: var(--card); }
  .private-lede,
  .privacy-node small,
  .deletion-strip p { color: #fff; }
}

@media print {
  .site-header,
  .marquee,
  .hero-orbit,
  .hero::after,
  .final-cta::before,
  .cta-sun { display: none !important; }

  .hero,
  .section,
  .final-cta { min-height: 0; padding: 2rem 0; color: #000; background: #fff; }
  .feature-card,
  .dashboard-frame,
  .fit-card { break-inside: avoid; box-shadow: none; }
}
