:root {
  --canvas: #f7f6f2;
  --surface: #fff;
  --sidebar: #f1f0eb;
  --ink: #242424;
  --ink-soft: #565650;
  --muted: #8b8a83;
  --line: #e4e2dc;
  --accent: #d97757;
  --accent-dark: #b85639;
  --accent-soft: #f5e4de;
  --green: #5f8668;
  --green-soft: #e7f0e8;
  --blue: #5f7e95;
  --gold: #b27b2d;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "DM Mono", monospace;
  --shadow: 0 22px 70px rgba(36, 36, 36, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.page-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.page-glow--one {
  top: -280px;
  right: -250px;
  width: 670px;
  height: 670px;
  background: rgba(242, 216, 206, 0.62);
}

.page-glow--two {
  top: 490px;
  left: -280px;
  width: 560px;
  height: 560px;
  background: rgba(221, 233, 223, 0.56);
}

.site-header {
  position: relative;
  z-index: 10;
  padding: 22px 0;
}

.nav-wrap,
.nav-links,
.brand,
.button,
.trust-note,
.proof-row,
.proof-items {
  display: flex;
  align-items: center;
}

.nav-wrap {
  justify-content: space-between;
}

.brand {
  gap: 10px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.7px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--accent);
  border-radius: 12px;
  place-items: center;
  transform: rotate(-4deg);
  box-shadow: 0 8px 22px rgba(217, 119, 87, 0.22);
}

.brand-mark svg {
  width: 21px;
}

.nav-links {
  gap: 32px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.nav-links > a:not(.button) {
  position: relative;
}

.nav-links > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links > a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.button {
  width: fit-content;
  min-height: 52px;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 0;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button svg {
  width: 18px;
  transition: transform 180ms ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button--ink {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(36, 36, 36, 0.16);
}

.button--ink:hover {
  background: #111;
  box-shadow: 0 16px 34px rgba(36, 36, 36, 0.22);
}

.button--small {
  min-height: 42px;
  padding: 0 17px;
}

.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 720px;
  align-items: center;
  gap: 55px;
  padding-top: 42px;
  padding-bottom: 76px;
}

.eyebrow,
.kicker {
  color: var(--accent-dark);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--accent-soft);
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 590px;
  margin-top: 26px;
  font-size: clamp(58px, 6vw, 86px);
  line-height: 0.93;
}

h1 em,
h2 em {
  color: var(--accent);
  font-weight: 500;
}

.hero-lede {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 31px;
}

.text-link {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.text-link span {
  color: var(--accent);
}

.trust-note {
  gap: 7px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 9px;
}

.trust-note svg {
  width: 14px;
  color: var(--green);
}

.product-scene {
  position: relative;
  min-width: 0;
  padding: 54px 0;
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(217, 119, 87, 0.2);
  border-radius: 50%;
}

.orbit--one {
  inset: -20px 5% -10px;
  transform: rotate(-8deg);
}

.orbit--two {
  inset: 34px -3% 40px 14%;
  border-color: rgba(95, 134, 104, 0.22);
  transform: rotate(11deg);
}

.app-window {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 620px;
  margin: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 23px;
  box-shadow: 0 32px 90px rgba(58, 47, 40, 0.16);
  transform: rotate(1.4deg);
}

.window-bar {
  display: flex;
  height: 55px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: rgba(241, 240, 235, 0.7);
  border-bottom: 1px solid var(--line);
}

.window-brand,
.live,
.agent-message,
.result-heading,
.approval-card,
.approval-card > div,
.composer-preview {
  display: flex;
  align-items: center;
}

.window-brand {
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
}

.mini-mark,
.avatar {
  display: grid;
  color: #fff;
  background: var(--accent);
  place-items: center;
}

.mini-mark {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  font-size: 12px;
}

.live {
  gap: 5px;
  color: var(--muted);
  font-size: 9px;
}

.live span {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.conversation {
  min-height: 420px;
  padding: 33px 27px 23px;
  background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}

.user-message {
  max-width: 72%;
  margin-left: auto;
  padding: 13px 16px;
  background: #eae9e3;
  border-radius: 17px 6px 17px 17px;
  font-size: 11px;
  line-height: 1.55;
}

.agent-message {
  align-items: flex-start;
  gap: 11px;
  margin-top: 26px;
}

.avatar {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  font-size: 13px;
}

.agent-message > div {
  flex: 1;
}

.agent-message strong {
  font-size: 10px;
}

.agent-message p {
  margin: 6px 0 12px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.55;
}

.result-card,
.approval-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.result-card {
  padding: 12px;
}

.result-heading {
  justify-content: space-between;
  gap: 10px;
}

.result-heading > div {
  display: grid;
  gap: 3px;
}

.result-name {
  font-size: 10px;
  font-weight: 700;
}

.result-meta {
  color: var(--muted);
  font-size: 8px;
}

.match {
  color: var(--green);
  font-size: 8px;
  font-weight: 700;
}

.tags {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.tags span {
  padding: 4px 7px;
  color: var(--ink-soft);
  background: var(--sidebar);
  border-radius: 20px;
  font-size: 7px;
}

.approval-card {
  gap: 9px;
  margin-top: 8px;
  padding: 9px;
  background: var(--green-soft);
  border-color: #d5e5d8;
}

.approval-icon {
  display: grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  color: var(--green);
  background: #fff;
  border-radius: 8px;
  place-items: center;
}

.approval-icon svg {
  width: 14px;
}

.approval-card > div:nth-child(2) {
  display: grid;
  align-items: initial;
  flex: 1;
  gap: 2px;
}

.approval-card span {
  color: var(--ink-soft);
  font-size: 7px;
}

.approval-card button {
  padding: 6px 9px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 7px;
  font-size: 7px;
  font-weight: 700;
}

.composer-preview {
  height: 58px;
  justify-content: space-between;
  margin: 0 18px 17px;
  padding: 0 9px 0 15px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 8px 24px rgba(36, 36, 36, 0.06);
  font-size: 10px;
}

.composer-preview b {
  display: grid;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  place-items: center;
}

.floating-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(228, 226, 220, 0.9);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(36, 36, 36, 0.1);
  backdrop-filter: blur(12px);
  font-size: 8px;
  font-weight: 600;
}

.floating-pill span {
  color: var(--green);
}

.floating-pill--top {
  top: 34px;
  right: -18px;
}

.floating-pill--bottom {
  bottom: 38px;
  left: -27px;
}

.floating-pill--bottom span {
  color: var(--accent);
}

.proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-row {
  min-height: 86px;
  justify-content: space-between;
  gap: 30px;
}

.proof-row > span {
  max-width: 245px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.6;
  text-transform: uppercase;
}

.proof-items {
  gap: 24px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.proof-items i {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.section {
  padding-top: 130px;
  padding-bottom: 130px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 58px;
}

.section-heading h2 {
  margin-top: 14px;
  font-size: clamp(45px, 5vw, 68px);
  line-height: 0.98;
}

.section-heading > p {
  max-width: 390px;
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

.capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.capability {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.capability--wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 50px 0.8fr 1.1fr;
  min-height: 300px;
  gap: 22px;
  align-items: center;
}

.capability-icon {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  place-items: center;
}

.capability-icon svg {
  width: 21px;
}

.icon-blue {
  color: var(--blue);
  background: #e7eef2;
}

.icon-gold {
  color: var(--gold);
  background: #f7ebd6;
}

.icon-green {
  color: var(--green);
  background: var(--green-soft);
}

.number,
.step-number {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.capability h3,
.step h3 {
  margin: 18px 0 10px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.capability p,
.step p {
  max-width: 400px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.8;
}

.capability--wide h3 {
  margin-top: 10px;
}

.source-stack {
  position: relative;
  height: 170px;
}

.source-stack span {
  position: absolute;
  top: calc(var(--i) * 47px);
  right: calc(var(--i) * 15px);
  left: calc((2 - var(--i)) * 15px);
  display: flex;
  min-height: 67px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(36, 36, 36, 0.06);
  font-size: 10px;
  font-weight: 600;
}

.source-stack b {
  color: var(--green);
  font-size: 8px;
}

.mini-calendar,
.progress-list {
  display: grid;
  margin-top: 40px;
}

.mini-calendar {
  grid-template-columns: 50px 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.mini-calendar span,
.mini-calendar b {
  padding: 13px;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
}

.mini-calendar span {
  color: var(--muted);
  background: var(--sidebar);
  font-family: var(--mono);
}

.mini-calendar b {
  font-weight: 600;
}

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

.capability--dark .number,
.capability--dark p {
  color: #aaa9a4;
}

.progress-list {
  gap: 1px;
  margin-top: 36px;
  overflow: hidden;
  border-radius: 12px;
}

.progress-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 9px;
}

.progress-list i {
  display: grid;
  width: 18px;
  height: 18px;
  color: var(--ink);
  background: var(--green-soft);
  border-radius: 50%;
  font-style: normal;
  place-items: center;
}

.process-section {
  background: #eeece6;
}

.section-heading--center {
  display: block;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  padding: 27px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 19px;
}

.step-visual {
  display: flex;
  height: 180px;
  margin: 22px 0 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.ask-visual {
  align-items: end;
  gap: 10px;
  padding: 16px;
}

.ask-visual span {
  flex: 1;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.6;
}

.ask-visual b {
  display: grid;
  flex: 0 0 31px;
  height: 31px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  place-items: center;
}

.work-visual {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 14px;
}

.work-visual div {
  display: grid;
  grid-template-columns: 7px 1fr auto;
  align-items: center;
  gap: 7px;
  padding: 10px;
  background: var(--sidebar);
  border-radius: 8px;
  font-size: 7px;
}

.work-visual i {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.work-visual b {
  color: var(--muted);
  font-weight: 500;
}

.done-visual {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
}

.done-visual > span {
  display: grid;
  width: 40px;
  height: 40px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 50%;
  place-items: center;
}

.done-visual strong {
  font-family: var(--serif);
  font-size: 17px;
}

.done-visual small {
  color: var(--muted);
  font-size: 8px;
}

.safety-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 580px;
  overflow: hidden;
  color: #fff;
  background: #282925;
  border-radius: 26px;
}

.safety-copy {
  align-self: center;
  padding: 65px;
}

.kicker--light {
  color: #de9a82;
}

.safety-copy h2 {
  margin-top: 17px;
  font-size: clamp(44px, 4.8vw, 66px);
  line-height: 0.98;
}

.safety-copy p {
  margin: 24px 0 0;
  color: #b9b8b2;
  font-size: 12px;
  line-height: 1.8;
}

.safety-copy ul {
  display: grid;
  gap: 13px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
  color: #d6d5cf;
  font-size: 10px;
}

.safety-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.safety-copy li span {
  display: grid;
  width: 20px;
  height: 20px;
  color: var(--green);
  background: rgba(231, 240, 232, 0.1);
  border-radius: 50%;
  place-items: center;
}

.safety-visual {
  position: relative;
  display: grid;
  min-height: 580px;
  background:
    radial-gradient(circle at 50% 47%, rgba(217, 119, 87, 0.22), transparent 45%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
  place-items: center;
}

.safety-visual::before,
.safety-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.safety-visual::before {
  width: 460px;
  height: 460px;
}

.safety-visual::after {
  width: 350px;
  height: 350px;
}

.safe-badge {
  position: absolute;
  z-index: 2;
  top: 62px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: #c8c7c1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  font-size: 8px;
}

.safe-badge i {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.approval-modal {
  position: relative;
  z-index: 2;
  width: min(330px, calc(100% - 40px));
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
}

.large-lock {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 21px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 13px;
  place-items: center;
}

.large-lock svg {
  width: 21px;
}

.approval-modal small {
  color: var(--muted);
  font-size: 8px;
}

.approval-modal h3 {
  margin: 5px 0 19px;
  font-family: var(--serif);
  font-size: 24px;
}

.approval-modal dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.approval-modal dl div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 8px;
}

.approval-modal dt {
  color: var(--muted);
}

.approval-modal dd {
  margin: 0;
  font-weight: 600;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 7px;
  margin-top: 18px;
}

.modal-actions button {
  min-height: 36px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 8px;
  font-weight: 700;
}

.modal-actions button:last-child {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.use-cases {
  overflow: hidden;
}

.ticker-wrap {
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker 35s linear infinite;
}

.ticker span {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 16px;
  padding: 0 38px;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 18px;
  white-space: nowrap;
}

.ticker i {
  color: var(--accent);
  font-style: normal;
}

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

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 125px 0;
  color: #fff;
  background: var(--accent);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -290px;
  left: calc(50% - 370px);
  width: 740px;
  height: 740px;
}

.final-cta::after {
  top: -200px;
  left: calc(50% - 280px);
  width: 560px;
  height: 560px;
}

.final-cta .shell {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.final-mark {
  display: grid;
  width: 45px;
  height: 45px;
  color: var(--accent);
  background: #fff;
  border-radius: 14px;
  place-items: center;
  transform: rotate(-4deg);
}

.final-cta h2 {
  margin-top: 24px;
  font-size: clamp(54px, 6vw, 82px);
  line-height: 0.92;
}

.final-cta h2 em {
  color: #ffe9e1;
}

.final-cta p {
  margin: 25px 0;
  color: #fff1ec;
  font-size: 13px;
}

.button--light {
  margin-top: 5px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 32px rgba(108, 48, 29, 0.16);
}

.site-footer {
  padding: 34px 0;
  background: var(--ink);
  color: #fff;
}

.footer-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.footer-row .brand-mark {
  width: 32px;
  height: 32px;
  font-size: 13px;
}

.footer-row p {
  margin: 0;
  color: #aaa9a4;
  font-size: 9px;
  text-align: center;
}

.footer-row > div {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  color: #aaa9a4;
  font-size: 9px;
}

.footer-row a:not(.brand):hover {
  color: #fff;
}

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

.reveal--delay {
  transition-delay: 120ms;
}

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 75px;
  }

  .hero-copy {
    max-width: 700px;
    text-align: center;
    justify-self: center;
  }

  .eyebrow,
  .hero-actions,
  .trust-note {
    justify-content: center;
  }

  .product-scene {
    width: min(680px, 100%);
    justify-self: center;
  }

  .proof-row {
    justify-content: center;
  }

  .proof-row > span {
    display: none;
  }

  .safety-card {
    grid-template-columns: 1fr;
  }

  .safety-copy {
    padding-bottom: 15px;
  }

  .safety-visual {
    min-height: 500px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, 620px);
  }

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

  .nav-toggle {
    position: relative;
    z-index: 12;
    display: grid;
    width: 40px;
    height: 40px;
    align-content: center;
    gap: 6px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 11px;
  }

  .nav-toggle > span:not(.sr-only) {
    display: block;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    z-index: 11;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(247, 246, 242, 0.97);
    backdrop-filter: blur(15px);
    font-family: var(--serif);
    font-size: 28px;
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms;
  }

  .nav-links.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links .button {
    font-family: var(--sans);
    font-size: 13px;
  }

  .hero {
    min-height: 0;
    gap: 20px;
    padding-top: 75px;
    padding-bottom: 60px;
  }

  h1 {
    font-size: clamp(53px, 16vw, 70px);
  }

  .hero-lede {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }

  .trust-note {
    font-size: 8px;
  }

  .product-scene {
    width: calc(100% + 5px);
    padding: 50px 0;
  }

  .floating-pill--top {
    right: -8px;
  }

  .floating-pill--bottom {
    left: -8px;
  }

  .conversation {
    min-height: 380px;
    padding-inline: 17px;
  }

  .user-message {
    max-width: 88%;
  }

  .proof-items {
    gap: 12px;
    font-size: 13px;
  }

  .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-heading {
    display: block;
    margin-bottom: 40px;
  }

  .section-heading h2,
  .safety-copy h2 {
    font-size: 47px;
  }

  .section-heading > p {
    margin-top: 22px;
  }

  .capability-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .capability--wide {
    display: block;
    grid-column: auto;
    min-height: 430px;
  }

  .source-stack {
    margin-top: 25px;
  }

  .capability {
    min-height: 380px;
  }

  .safety-card {
    border-radius: 20px;
  }

  .safety-copy {
    padding: 45px 27px 20px;
  }

  .safety-visual {
    min-height: 490px;
  }

  .safe-badge {
    top: 48px;
  }

  .use-cases .section-heading {
    text-align: center;
  }

  .final-cta {
    padding: 95px 0;
  }

  .final-cta h2 {
    font-size: 56px;
  }

  .footer-row {
    grid-template-columns: 1fr auto;
    gap: 25px;
  }

  .footer-row p {
    display: none;
  }
}

@media (max-width: 420px) {
  .eyebrow {
    font-size: 8px;
  }

  h1 {
    font-size: 50px;
  }

  .proof-items {
    font-size: 11px;
  }

  .proof-items i {
    display: none;
  }

  .capability,
  .step {
    padding: 23px;
  }

  .section-heading h2,
  .safety-copy h2 {
    font-size: 42px;
  }

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

  .footer-row > div {
    gap: 12px;
  }
}

@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;
  }
}
