:root {
  color-scheme: light;
  --paper: #f6f3ec;
  --paper-2: #ece6d9;
  --ink: #222322;
  --ink-2: #3a3a3c;
  --muted: #6c6861;
  --hairline: #ded7ca;
  --surface: #fffdf7;
  --glass: rgb(255 253 247 / 0.62);
  --glass-strong: rgb(255 253 247 / 0.78);
  --metal: #e9e2d4;
  --accent: #178a68;
  --accent-soft: #dff4e8;
  --accent-bright: #36c487;
  --nav-dark: #171715;
  --shadow: 0 28px 70px rgb(17 23 21 / 0.09);
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, transparent 0 11%, rgb(255 255 255 / 0.44) 15%, transparent 22%, transparent 66%, rgb(255 255 255 / 0.36) 72%, transparent 82%),
    linear-gradient(180deg, #fbf8ef 0%, var(--paper) 42%, #f1eadf 100%),
    linear-gradient(90deg, rgb(34 35 34 / 0.028) 1px, transparent 1px),
    linear-gradient(rgb(34 35 34 / 0.026) 1px, transparent 1px),
    var(--paper);
  background-repeat: no-repeat, no-repeat, repeat, repeat, repeat;
  background-size: auto, auto, 40px 40px, 40px 40px, auto;
  color: var(--ink);
  font-family: Avenir Next, Helvetica Neue, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.23;
  background-image:
    radial-gradient(circle at 25% 18%, rgb(34 35 34 / 0.07) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 82%, rgb(255 255 255 / 0.72) 0 1px, transparent 1px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: soft-light;
}

a {
  color: inherit;
}

.site-nav {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 58px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgb(255 253 247 / 0.12);
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(39 39 36 / 0.92), rgb(18 18 17 / 0.92));
  color: var(--surface);
  backdrop-filter: blur(22px) saturate(1.08);
  box-shadow:
    0 18px 56px rgb(34 35 34 / 0.18),
    inset 0 1px 0 rgb(255 253 247 / 0.18),
    inset 0 -1px 0 rgb(0 0 0 / 0.42);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 950;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgb(255 253 247 / 0.66);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover {
  background: rgb(255 253 247 / 0.1);
  color: var(--surface);
}

.nav-links .nav-cta {
  background: var(--surface);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(410px, 0.95fr) minmax(0, 1.05fr);
  gap: 46px;
  width: min(1180px, calc(100% - 48px));
  min-height: 0;
  margin: 0 auto;
  padding: 138px 0 72px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
  max-width: 520px;
  margin: 0;
  text-align: left;
}

.product-label,
.section-kicker {
  display: inline-flex;
  margin: 0 0 16px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(50px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-summary {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 32px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 520px;
  margin: 24px 0 0;
  border: 1px solid rgb(34 35 34 / 0.12);
  border-radius: 12px;
  background: rgb(34 35 34 / 0.1);
  overflow: hidden;
  box-shadow:
    0 16px 42px rgb(34 35 34 / 0.055),
    inset 0 1px 0 rgb(255 253 247 / 0.6);
}

.signal-strip span {
  min-width: 0;
  padding: 11px 12px;
  background: rgb(255 253 247 / 0.76);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-status {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin-top: 18px;
  padding: 14px 15px;
  border: 1px solid rgb(23 138 104 / 0.22);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgb(223 244 232 / 0.72), rgb(255 253 247 / 0.58)),
    var(--surface);
  box-shadow:
    0 16px 40px rgb(23 138 104 / 0.08),
    inset 0 1px 0 rgb(255 253 247 / 0.86);
}

.launch-status strong {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-status span {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
}

.primary-action,
.secondary-action,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 9px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), background 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-action {
  border: 1px solid var(--ink);
  background: linear-gradient(180deg, #2c2c2a, #151514);
  color: var(--surface);
}

.secondary-action {
  border: 1px solid rgb(34 35 34 / 0.15);
  background: rgb(255 253 247 / 0.76);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.primary-action:active,
.secondary-action:active {
  transform: translateY(1px) scale(0.99);
}

.text-link {
  min-height: 0;
  padding: 0;
  color: var(--accent);
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-template-areas:
    "dictation parse"
    "repair parse"
    "token parse"
    "surfaces sync";
  gap: 14px;
  width: 100%;
  min-height: 620px;
  margin: 0;
  padding: 70px 24px 24px;
  border: 1px solid rgb(34 35 34 / 0.14);
  border-radius: 30px;
  background:
    linear-gradient(140deg, rgb(255 253 247 / 0.9), rgb(231 224 211 / 0.78) 48%, rgb(250 246 238 / 0.72)),
    repeating-linear-gradient(112deg, rgb(255 255 255 / 0.24) 0 1px, rgb(34 35 34 / 0.032) 1px 3px),
    var(--metal);
  backdrop-filter: blur(18px) saturate(1.12);
  box-shadow:
    0 36px 90px rgb(34 35 34 / 0.14),
    0 0 0 10px rgb(255 253 247 / 0.2),
    inset 0 1px 0 rgb(255 253 247 / 0.88),
    inset 0 -1px 0 rgb(34 35 34 / 0.08);
  overflow: hidden;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 54px 14px 14px;
  border: 1px solid rgb(255 253 247 / 0.54);
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgb(34 35 34 / 0.04);
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background:
    radial-gradient(circle at 18% 20%, rgb(54 196 135 / 0.16), transparent 28%),
    linear-gradient(110deg, transparent 0 36%, rgb(255 255 255 / 0.32) 48%, transparent 58%);
  mix-blend-mode: soft-light;
}

.stage-titlebar {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  left: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgb(34 35 34 / 0.09);
  border-radius: 18px;
  background: linear-gradient(180deg, rgb(255 253 247 / 0.82), rgb(244 239 229 / 0.62));
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: inset 0 1px 0 rgb(255 253 247 / 0.92), inset 0 -1px 0 rgb(34 35 34 / 0.05);
}

.window-lights {
  display: flex;
  gap: 7px;
}

.window-lights span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d7cdbc;
  box-shadow: inset 0 1px 1px rgb(255 253 247 / 0.72), 0 0 0 1px rgb(34 35 34 / 0.08);
}

.window-lights span:nth-child(1) {
  background: #e37b6f;
}

.window-lights span:nth-child(2) {
  background: #e6bf5f;
}

.window-lights span:nth-child(3) {
  background: var(--accent-bright);
}

.stage-titlebar strong,
.stage-titlebar em {
  color: rgb(34 35 34 / 0.62);
  font-family: var(--mono);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.stage-titlebar strong {
  text-align: center;
}

.stage-titlebar em {
  justify-self: end;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgb(34 35 34 / 0.9);
  color: rgb(255 253 247 / 0.9);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.12);
}

.dictation-card,
.parse-card,
.surface-rail,
.sync-dock,
.token-card,
.repair-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgb(34 35 34 / 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--glass-strong), var(--glass));
  box-shadow:
    0 20px 54px rgb(34 35 34 / 0.105),
    inset 0 1px 0 rgb(255 253 247 / 0.86),
    inset 0 -1px 0 rgb(34 35 34 / 0.05);
  backdrop-filter: blur(22px) saturate(1.18);
}

.dictation-card {
  grid-area: dictation;
  align-self: start;
  padding: 22px;
  animation: float-soft 8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.dictation-card span,
.parse-top span,
.surface-rail span,
.board-column > span,
.token-card span,
.sync-item small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dictation-card strong {
  display: block;
  margin-top: 18px;
  font-size: 28px;
  line-height: 1.28;
}

.repair-card {
  grid-area: repair;
  padding: 16px;
  background: linear-gradient(180deg, rgb(255 240 214 / 0.72), rgb(255 253 247 / 0.56));
}

.repair-card span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.repair-card strong {
  display: block;
  margin-top: 9px;
  font-family: var(--mono);
  font-size: 17px;
}

.repair-card p {
  margin: 9px 0 0;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.48;
}

.waveform {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  height: 32px;
  margin-top: 20px;
  align-items: end;
}

.waveform i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgb(54 196 135 / 0.28);
  animation: meter 1.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.waveform i:nth-child(2n) {
  height: 24px;
  animation-delay: -0.24s;
}

.waveform i:nth-child(3n) {
  height: 18px;
  animation-delay: -0.48s;
}

.stage-line {
  position: absolute;
  z-index: 0;
  top: 244px;
  left: 34%;
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, rgb(54 196 135 / 0.72), rgb(34 35 34 / 0.08));
  transform-origin: left;
  animation: line-pulse 2.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.parse-card {
  grid-area: parse;
  align-self: stretch;
  padding: 18px;
}

.parse-top,
.parse-row,
.output-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.parse-top {
  margin-bottom: 10px;
}

.parse-top b {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
}

.parse-row {
  min-height: 56px;
  border-top: 1px solid var(--hairline);
}

.parse-row span {
  color: var(--ink-2);
  font-weight: 800;
}

.parse-row strong {
  color: var(--ink);
  font-family: var(--mono);
}

.sync-dock {
  grid-area: sync;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 10px;
}

.sync-item {
  min-width: 0;
  padding: 12px;
  border-radius: 12px;
  background: rgb(23 23 21 / 0.96);
  color: var(--surface);
}

.sync-item span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: rgb(255 253 247 / 0.12);
  color: rgb(255 253 247 / 0.85);
  font-family: var(--mono);
  font-weight: 900;
}

.sync-item strong,
.sync-item small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sync-item strong {
  font-size: 14px;
}

.sync-item small {
  color: rgb(255 253 247 / 0.55);
  font-size: 11px;
}

.token-card {
  grid-area: token;
  align-self: start;
  padding: 16px;
  background: linear-gradient(180deg, rgb(223 244 232 / 0.86), rgb(255 253 247 / 0.5));
}

.token-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 15px;
}

.token-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin-top: 14px;
}

.token-flow b {
  min-width: 0;
  padding: 8px 9px;
  border-radius: 999px;
  background: rgb(255 253 247 / 0.68);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.token-flow i {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(54 196 135 / 0.2), rgb(54 196 135 / 0.78));
}

.surface-rail {
  grid-area: surfaces;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
}

.surface-rail span {
  display: inline-flex;
  justify-content: center;
  padding: 9px 11px;
  border-radius: 10px;
  background: rgb(223 244 232 / 0.78);
  color: var(--accent);
}

.flow-compare {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  grid-template-areas:
    "copy board"
    "example board";
  gap: 26px 52px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 98px;
  border-top: 1px solid var(--hairline);
}

.compare-copy {
  grid-area: copy;
  align-self: start;
}

.compare-copy h2 {
  max-width: 560px;
  margin: 12px 0 20px;
  font-size: clamp(34px, 4.1vw, 56px);
  line-height: 1.08;
}

.compare-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.compare-board {
  grid-area: board;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.flow-card {
  min-width: 0;
  padding: 26px;
  border: 1px solid rgb(34 35 34 / 0.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgb(255 253 247 / 0.74), rgb(255 249 238 / 0.58)),
    var(--surface);
  box-shadow:
    0 22px 62px rgb(34 35 34 / 0.075),
    inset 0 1px 0 rgb(255 253 247 / 0.82);
}

.old-flow {
  background:
    linear-gradient(180deg, rgb(255 253 247 / 0.74), rgb(239 236 228 / 0.68)),
    var(--surface);
}

.new-flow {
  border-color: rgb(54 196 135 / 0.32);
  background:
    linear-gradient(160deg, rgb(255 253 247 / 0.82), rgb(223 244 232 / 0.76)),
    var(--surface);
}

.flow-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgb(34 35 34 / 0.08);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.new-flow .flow-label {
  background: rgb(54 196 135 / 0.16);
  color: var(--accent);
}

.flow-card h3 {
  max-width: 360px;
  margin: 20px 0 0;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.18;
}

.flow-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgb(34 35 34 / 0.11);
}

.flow-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgb(34 35 34 / 0.1);
}

.flow-list li > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--surface);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.new-flow .flow-list li > span {
  background: var(--accent);
}

.flow-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.3;
}

.flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.flow-shift {
  display: grid;
  place-items: center;
}

.flow-shift span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgb(54 196 135 / 0.28);
  border-radius: 50%;
  background: rgb(223 244 232 / 0.8);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.compare-example {
  grid-area: example;
  align-self: end;
  padding: 22px;
  border: 1px solid rgb(34 35 34 / 0.13);
  border-radius: 20px;
  background: var(--ink);
  color: var(--surface);
  box-shadow: 0 22px 62px rgb(34 35 34 / 0.12);
}

.compare-example span {
  color: rgb(255 253 247 / 0.55);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.compare-example strong {
  display: block;
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.28;
}

.compare-example p {
  margin: 12px 0 0;
  color: rgb(255 253 247 / 0.72);
  font-size: 15px;
  line-height: 1.58;
}

.os-section {
  position: relative;
  padding: 112px 0;
  background:
    linear-gradient(180deg, rgb(255 253 247 / 0.035), transparent 24%),
    linear-gradient(135deg, #1b1b18, #11110f 58%, #24221d);
  color: var(--surface);
  overflow: hidden;
}

.os-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background:
    linear-gradient(90deg, rgb(255 253 247 / 0.06) 1px, transparent 1px),
    linear-gradient(rgb(255 253 247 / 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}

.os-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  align-items: start;
}

.os-copy {
  position: sticky;
  top: 118px;
}

.os-copy .section-kicker {
  color: #8de4ba;
}

.os-copy h2 {
  margin-bottom: 22px;
}

.os-copy p {
  max-width: 560px;
  margin: 0;
  color: rgb(255 253 247 / 0.68);
  font-size: 18px;
  line-height: 1.72;
}

.os-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgb(255 253 247 / 0.11);
  background: rgb(255 253 247 / 0.11);
  box-shadow:
    0 34px 80px rgb(0 0 0 / 0.22),
    inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.os-grid article {
  min-height: 232px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.08), rgb(255 255 255 / 0.035)),
    rgb(255 255 255 / 0.035);
}

.os-grid article:first-child {
  background:
    linear-gradient(160deg, rgb(54 196 135 / 0.2), rgb(255 253 247 / 0.045)),
    rgb(255 253 247 / 0.04);
}

.os-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: #8de4ba;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.os-grid h3 {
  color: var(--surface);
}

.os-grid p {
  margin-bottom: 0;
  color: rgb(255 253 247 / 0.64);
  font-size: 16px;
  line-height: 1.66;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0;
}

.setup-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 0.72fr) minmax(300px, 0.9fr);
  gap: 18px;
  align-items: stretch;
  padding-top: 86px;
  border-bottom: 1px solid var(--hairline);
}

.setup-copy {
  align-self: center;
  padding-right: 26px;
}

.setup-copy h2 {
  margin-bottom: 18px;
}

.setup-copy p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.setup-copy .text-link {
  margin-top: 24px;
}

.setup-device {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 430px;
  padding: 22px;
  border: 1px solid rgb(34 35 34 / 0.16);
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgb(255 253 247 / 0.82), rgb(232 224 210 / 0.74)),
    repeating-linear-gradient(118deg, rgb(255 255 255 / 0.24) 0 1px, rgb(34 35 34 / 0.03) 1px 3px),
    var(--metal);
  box-shadow:
    0 34px 78px rgb(34 35 34 / 0.13),
    inset 0 1px 0 rgb(255 253 247 / 0.86),
    inset 0 -1px 0 rgb(34 35 34 / 0.07);
  overflow: hidden;
}

.setup-device::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgb(255 253 247 / 0.54);
  border-radius: 24px;
  pointer-events: none;
}

.device-topbar,
.phone-field,
.phone-call,
.phone-dictate,
.phone-result {
  position: relative;
  z-index: 1;
  border: 1px solid rgb(34 35 34 / 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgb(255 253 247 / 0.74), rgb(255 249 238 / 0.52));
  box-shadow:
    0 14px 36px rgb(34 35 34 / 0.075),
    inset 0 1px 0 rgb(255 253 247 / 0.84);
  backdrop-filter: blur(18px) saturate(1.12);
}

.device-topbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 14px 16px;
  align-items: center;
}

.device-topbar span,
.phone-field span,
.phone-call span,
.phone-dictate span,
.phone-result span,
.setup-steps span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.device-topbar strong {
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 12px;
}

.phone-field,
.phone-call,
.phone-dictate,
.phone-result {
  padding: 16px;
}

.phone-field strong {
  display: block;
  margin-top: 10px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 30px;
  letter-spacing: 0;
}

.phone-call {
  display: grid;
  gap: 8px;
  background: linear-gradient(180deg, rgb(223 244 232 / 0.78), rgb(255 253 247 / 0.54));
}

.phone-call b {
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 12px;
}

.phone-dictate strong {
  display: block;
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.28;
}

.phone-result {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  background: rgb(23 23 21 / 0.94);
  color: var(--surface);
}

.phone-result span {
  color: rgb(255 253 247 / 0.58);
}

.phone-result strong {
  font-family: var(--mono);
  font-size: 13px;
}

.setup-steps {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--hairline);
  border-radius: 24px;
  background: var(--hairline);
  overflow: hidden;
  list-style: none;
}

.setup-steps li {
  min-height: 142px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgb(255 253 247 / 0.72), rgb(255 249 238 / 0.58)),
    var(--surface);
}

.setup-steps strong {
  display: block;
  margin-top: 22px;
  font-size: 22px;
  line-height: 1.25;
}

.setup-steps p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.capture-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: start;
}

.capture-copy {
  position: sticky;
  top: 110px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-proof {
  display: grid;
  gap: 1px;
  margin-top: 26px;
  border: 1px solid rgb(34 35 34 / 0.12);
  border-radius: 14px;
  background: rgb(34 35 34 / 0.08);
  overflow: hidden;
}

.section-proof span {
  padding: 13px 14px;
  background: rgb(255 253 247 / 0.76);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.surface-map {
  display: grid;
  grid-template-columns: 1.24fr 0.76fr;
  gap: 12px;
}

.surface-item {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgb(34 35 34 / 0.13);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgb(255 253 247 / 0.72), rgb(255 249 238 / 0.5)),
    var(--surface);
  box-shadow:
    0 16px 44px rgb(34 35 34 / 0.06),
    inset 0 1px 0 rgb(255 253 247 / 0.82);
  backdrop-filter: blur(14px) saturate(1.08);
}

.surface-item.large {
  min-height: 336px;
  grid-row: span 2;
  background:
    linear-gradient(160deg, rgb(255 253 247 / 0.78), rgb(223 244 232 / 0.58)),
    var(--surface);
  box-shadow:
    0 28px 72px rgb(34 35 34 / 0.085),
    inset 0 1px 0 rgb(255 253 247 / 0.84);
}

.surface-item.wide {
  grid-column: 1 / -1;
  min-height: 160px;
}

.surface-item span,
.trust-list span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.24;
}

.surface-item p,
.pipeline-copy p,
.trust-list p,
.status-section p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

code {
  padding: 2px 6px;
  border-radius: 5px;
  background: rgb(34 35 34 / 0.08);
  font-family: var(--mono);
  font-size: 0.9em;
}

.pipeline-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--hairline);
}

.pipeline-copy h2 {
  margin-bottom: 18px;
}

.pipeline-copy .text-link {
  margin-top: 22px;
}

.pipeline-board {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 12px;
}

.board-column {
  min-height: 178px;
  padding: 24px;
  border: 1px solid rgb(34 35 34 / 0.14);
  border-radius: 20px;
  background: var(--ink);
  color: var(--surface);
  box-shadow: 0 26px 70px rgb(34 35 34 / 0.17);
}

.input-column {
  grid-column: 1 / -1;
}

.input-column p {
  margin: 38px 0 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.25;
  font-weight: 950;
}

.output-column {
  display: grid;
  gap: 0;
}

.output-row {
  min-height: 56px;
  border-top: 1px solid rgb(255 255 255 / 0.14);
}

.output-row:first-child {
  border-top: 0;
}

.output-row span,
.sync-column p {
  color: rgb(255 253 247 / 0.72);
}

.output-row strong {
  font-family: var(--mono);
  color: var(--surface);
}

.sync-column {
  background:
    linear-gradient(180deg, rgb(255 253 247 / 0.78), rgb(255 249 238 / 0.6)),
    var(--surface);
  color: var(--ink);
}

.sync-column p {
  margin: 18px 0 0;
  color: var(--ink-2);
  font-family: var(--mono);
  font-weight: 850;
}

.trust-section {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.trust-head {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 36px;
}

.trust-list {
  display: grid;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.trust-list article {
  display: grid;
  grid-template-columns: 120px minmax(220px, 0.7fr) minmax(260px, 1fr);
  gap: 24px;
  min-height: 136px;
  padding: 28px;
  align-items: start;
  background:
    linear-gradient(180deg, rgb(255 253 247 / 0.74), rgb(255 249 238 / 0.64)),
    var(--surface);
}

.trust-list h3 {
  margin-bottom: 0;
}

.status-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
}

.status-section p {
  max-width: 780px;
  margin-top: 18px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 30px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--ink);
}

@keyframes float-soft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 14px, 0);
  }
}

@keyframes line-pulse {
  0%,
  100% {
    transform: scaleX(0.72);
    opacity: 0.32;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes meter {
  0%,
  100% {
    transform: scaleY(0.55);
    opacity: 0.48;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .hero,
  .os-inner,
  .setup-section,
  .capture-layout,
  .pipeline-section,
  .trust-head,
  .status-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 128px;
  }

  .hero-copy {
    max-width: 840px;
  }

  .hero-stage {
    min-height: 500px;
    margin: 0 auto;
  }

  .capture-copy {
    position: static;
  }

  .os-copy {
    position: static;
  }

  .flow-compare {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "board"
      "example";
    gap: 26px;
    padding: 70px 0 82px;
  }

  .compare-board {
    grid-template-columns: 1fr;
  }

  .flow-shift {
    min-height: 52px;
  }

  .flow-shift span {
    width: auto;
    height: auto;
    padding: 8px 14px;
    border-radius: 999px;
  }

  .setup-copy {
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  .site-nav {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero,
  .section {
    width: calc(100% - 36px);
  }

  .hero {
    gap: 34px;
    padding: 112px 0 58px;
  }

  .hero-copy {
    text-align: left;
  }

  h1 {
    font-size: clamp(44px, 13.2vw, 56px);
    line-height: 1.04;
  }

  .hero-summary {
    font-size: 18px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "dictation"
      "repair"
      "line"
      "parse"
      "sync"
      "token"
      "surfaces";
    gap: 12px;
    min-height: 0;
    padding: 64px 18px 18px;
    border-radius: 20px;
  }

  .hero-stage::before {
    inset: 50px 10px 10px;
    border-radius: 16px;
  }

  .dictation-card,
  .repair-card,
  .parse-card,
  .sync-dock,
  .token-card,
  .surface-rail {
    position: static;
    width: auto;
  }

  .dictation-card {
    animation: none;
  }

  .dictation-card strong {
    font-size: 22px;
  }

  .stage-line {
    grid-area: line;
    position: relative;
    top: auto;
    left: auto;
    width: 86%;
    margin: 2px auto;
  }

  .parse-card {
    padding: 14px;
  }

  .sync-dock {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .sync-item {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 10px;
    align-items: center;
  }

  .sync-item span {
    margin-bottom: 0;
  }

  .token-card {
    padding: 14px;
  }

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

  .surface-rail span {
    justify-content: center;
  }

  .flow-compare {
    width: calc(100% - 36px);
  }

  .compare-copy h2 {
    font-size: clamp(32px, 9.6vw, 42px);
  }

  .flow-card {
    padding: 20px;
    border-radius: 20px;
  }

  .flow-list li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
  }

  .compare-example strong {
    font-size: 20px;
  }

  .section {
    padding: 72px 0;
  }

  .os-section {
    padding: 78px 0;
  }

  .surface-map,
  .pipeline-board,
  .os-grid,
  .setup-section {
    grid-template-columns: 1fr;
  }

  .setup-section {
    gap: 14px;
  }

  .setup-device {
    min-height: 0;
    padding: 18px;
    border-radius: 22px;
  }

  .phone-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .surface-item,
  .surface-item.large,
  .surface-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    border: 1px solid rgb(34 35 34 / 0.14);
    border-radius: 18px;
  }

  .trust-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .stage-titlebar {
    grid-template-columns: auto 1fr;
  }

  .stage-titlebar em {
    display: none;
  }

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

  .token-flow i {
    width: 2px;
    height: 18px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgb(54 196 135 / 0.2), rgb(54 196 135 / 0.78));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
