:root {
  --canvas: #f5f5f7;
  --surface: #ffffff;
  --surface-muted: #ececef;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --quiet: #86868b;
  --line: #d2d2d7;
  --line-soft: #e8e8ed;
  --green: #2e7d59;
  --forest: #002e1e;
  --forest-2: #062e21;
  --warm: #f7f4ec;
  --red: #ff3b30;
  --radius-card: 24px;
  --radius-small: 14px;
  --page-gutter: clamp(20px, 4vw, 52px);
  --content: 1200px;
  --system: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--canvas);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--system);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  text-decoration: none;
}

button {
  border: 0;
}

svg {
  display: block;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p,
figure,
dl,
dd,
ol {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.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 14px;
  border-radius: 999px;
  color: var(--warm);
  background: var(--forest);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

.site-nav {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-gutter);
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-nav.is-scrolled {
  border-color: color-mix(in srgb, var(--line) 78%, transparent);
  background: color-mix(in srgb, var(--canvas) 92%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
}

.site-nav.is-on-dark {
  color: var(--warm);
}

.site-nav.is-on-dark.is-scrolled {
  border-color: rgba(247, 244, 236, 0.14);
  background: rgba(0, 46, 30, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.brand-mark {
  width: 24px;
  height: 24px;
  color: currentColor;
  fill: currentColor;
}

.brand-bars rect {
  width: 2.5px;
  height: 4px;
}

.brand-bars rect:nth-child(even) {
  height: 5px;
}

.brand-mark circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  color: var(--warm);
  background: var(--forest);
  transform: translateY(-1px);
}

.site-nav.is-on-dark .nav-cta:hover {
  color: var(--forest);
  background: var(--warm);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--green);
  font: 650 11px/1.2 var(--system);
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.eyebrow-on-dark {
  color: #9fc9b2;
}

.pill-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--warm);
  background: var(--forest);
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.pill-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pill-button:hover {
  background: #174936;
  transform: translateY(-2px);
}

.record-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.scroll-prompt {
  position: absolute;
  left: 50%;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: var(--quiet);
  font: 600 9px/1 var(--system);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-prompt i {
  width: 1px;
  height: 30px;
  background: var(--line);
}

.pinned-story {
  position: relative;
}

.pinned-stage {
  position: relative;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: clip;
}

.capture-story {
  min-height: 220svh;
  color: var(--warm);
  background: var(--forest);
}

.capture-stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(40px, 8vw, 130px);
  padding: 80px max(var(--page-gutter), calc((100vw - var(--content)) / 2)) 42px;
}

.stage-copy {
  position: relative;
  z-index: 4;
  max-width: 510px;
}

.stage-copy h2,
.map-copy h2 {
  font-size: clamp(52px, 6.2vw, 88px);
  line-height: 0.94;
}

.stage-copy > p:not(.eyebrow),
.phase-copy > p,
.map-copy > p:not(.eyebrow) {
  max-width: 390px;
  margin-top: 24px;
  color: #bdcdc4;
  font-size: 17px;
  line-height: 1.46;
  letter-spacing: -0.02em;
}

.capture-copy {
  min-height: 410px;
}

.phase-copy {
  position: absolute;
  inset: 0 0 auto;
}

.phase-stop {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.capture-rail {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(100%, 390px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  color: #8eaa9b;
  font: 650 9px/1 var(--system);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capture-rail span:nth-child(2) {
  text-align: center;
}

.capture-rail span:nth-child(3) {
  text-align: right;
}

.capture-rail i {
  grid-column: 1 / -1;
  position: relative;
  height: 1px;
  background: rgba(247, 244, 236, 0.2);
}

.capture-rail b {
  display: block;
  width: 0;
  height: 1px;
  background: var(--warm);
}

.device-wrap {
  position: relative;
  justify-self: center;
  display: grid;
  place-items: center;
}

.iphone {
  position: relative;
  width: 340px;
  aspect-ratio: 0.493;
  padding: 8px;
  border: 1px solid #414247;
  border-radius: 52px;
  background: #141518;
}

.iphone::before {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 48px;
  pointer-events: none;
}

.iphone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 44px;
}

.hardware {
  position: absolute;
  left: -5px;
  z-index: 6;
  width: 5px;
  border: 1px solid #56575c;
  border-right: 0;
  border-radius: 5px 0 0 5px;
  background: #292a2e;
}

.action-hardware {
  top: 104px;
  height: 42px;
  transition: left 120ms ease, height 120ms ease;
}

.iphone.is-stopped .action-hardware {
  left: -3px;
  height: 38px;
}

.volume-up {
  top: 167px;
  height: 58px;
}

.volume-down {
  top: 237px;
  height: 58px;
}

.recording-screen {
  padding: 13px 16px 22px;
  color: #f7f7f9;
  background: #17191b;
}

.status-row {
  position: relative;
  z-index: 3;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  font-size: 10px;
  font-weight: 650;
}

.status-icons {
  font-size: 7px;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.dynamic-island,
.compact-island {
  position: absolute;
  z-index: 4;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050607;
}

.dynamic-island {
  width: 166px;
  height: 34px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 7px;
  padding: 0 8px;
  font: 550 8px/1 var(--system);
  transition: width 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dynamic-island .record-dot {
  width: 6px;
  height: 6px;
}

.island-wave {
  height: 16px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.island-wave i {
  width: 2px;
  height: 3px;
  border-radius: 2px;
  background: #78b18f;
}

.island-stop {
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.island-stop::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--red);
}

.iphone.is-stopped .dynamic-island {
  width: 106px;
  grid-template-columns: auto 1fr;
}

.iphone.is-stopped .dynamic-island .record-dot,
.iphone.is-stopped .dynamic-island .island-wave {
  display: none;
}

.iphone.is-stopped .dynamic-island .island-stop {
  justify-self: end;
  border-color: #5c5d62;
}

.iphone.is-stopped .dynamic-island .island-stop::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #7f8084;
}

.locked-label {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: #a8abae;
  font-size: 9px;
}

.lock-icon {
  position: relative;
  width: 8px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 2px;
}

.lock-icon::before {
  content: "";
  position: absolute;
  left: 1px;
  top: -5px;
  width: 4px;
  height: 5px;
  border: 1px solid currentColor;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.lock-clock {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: 69px;
  font-weight: 300;
  letter-spacing: -0.065em;
}

.lock-date {
  text-align: center;
  color: #bfc1c4;
  font-size: 13px;
}

.recording-panel {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 77px;
  padding: 15px;
  border: 1px solid #36393a;
  border-radius: 20px;
  background: #202322;
}

.recording-panel-head,
.recording-panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #b6bbb8;
  font: 550 9px/1 var(--system);
}

.recording-panel-head > span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.recording-panel-head b {
  font: inherit;
}

.recording-panel-head .record-dot {
  width: 6px;
  height: 6px;
}

.waveform {
  width: 100%;
  height: 128px;
  margin: 4px 0;
  overflow: visible;
}

.waveform rect {
  fill: #84b99b;
  transform-box: fill-box;
  transform-origin: center;
}

.stop-control {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #575d59;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.stop-control span {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: var(--red);
  transition: border-radius 180ms ease, background-color 180ms ease;
}

.iphone.is-stopped .stop-control span {
  border-radius: 50%;
  background: #737675;
}

.iphone.is-stopped [data-live-dot] {
  display: none;
}

.stop-control:disabled {
  opacity: 0.72;
  cursor: default;
}

.waveform-fallback {
  min-height: 128px;
  display: grid;
  place-items: center;
  color: #9db0a5;
  font-size: 10px;
  text-align: center;
}

.lock-actions {
  position: absolute;
  inset: auto 22px 18px;
  display: flex;
  justify-content: space-between;
  color: #d1d3d5;
  font-size: 18px;
}

.lock-actions span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #27292b;
}

.device-caption {
  position: absolute;
  top: 50%;
  left: calc(100% + 30px);
  width: 170px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #91a99c;
  font: 600 9px/1.4 var(--system);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.caption-line {
  width: 54px;
  height: 1px;
  background: #426c58;
}

.results-story {
  min-height: 210svh;
  color: var(--ink);
  background: var(--canvas);
}

.results-stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(380px, 1fr);
  align-items: center;
  gap: clamp(44px, 8vw, 130px);
  padding: 74px max(var(--page-gutter), calc((100vw - var(--content)) / 2)) 36px;
}

.results-copy > p:not(.eyebrow) {
  max-width: 390px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.46;
  letter-spacing: -0.02em;
}

.result-steps {
  width: min(100%, 390px);
  margin-top: 44px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.result-steps li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #5f5f64;
  font-size: 13px;
  transition: color 180ms ease;
}

.result-steps li span {
  color: var(--green);
  font: 650 9px/1 var(--system);
}

.result-steps li.is-active {
  color: var(--ink);
}

.iphone-results {
  width: 356px;
  border-color: #a0a0a5;
  background: #27282b;
}

.note-screen {
  color: var(--ink);
  background: #fafafa;
}

.status-row-light {
  color: #111214;
  padding: 13px 24px 0;
}

.compact-island {
  width: 96px;
  height: 25px;
}

.app-nav {
  height: 49px;
  margin-top: 10px;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  padding: 0 8px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.app-nav > span:first-child,
.app-nav > span:last-child {
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 22px;
}

.app-nav > span:last-child {
  font-size: 13px;
  letter-spacing: 0.08em;
}

.note-content {
  padding: 18px 16px 14px;
}

.note-content header {
  padding: 0 2px 15px;
}

.app-kicker {
  color: var(--muted);
  font: 600 8px/1.2 var(--system);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.note-content header h3 {
  margin: 5px 0 7px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.local-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--green);
  font-size: 8px;
  font-weight: 600;
}

.local-chip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.app-block {
  padding: 13px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-small);
  background: var(--surface);
}

.app-block + .app-block {
  margin-top: 10px;
}

.app-block-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-soft);
}

.app-block-title h4 {
  font-size: 10px;
  line-height: 1;
}

.app-block-title span {
  color: #66666b;
  font: 550 7px/1 var(--system);
}

.app-block-title svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.5;
}

.transcript-row {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 8px;
  padding-top: 10px;
  opacity: 1;
}

.transcript-row time {
  padding-top: 1px;
  color: var(--green);
  font: 500 7px/1.3 var(--mono);
}

.transcript-row p,
.summary-block > p {
  font-size: 9px;
  line-height: 1.38;
}

.summary-block,
.actions-block {
  opacity: 1;
}

.motion-ready .transcript-row {
  clip-path: inset(0 100% 0 0);
  transform: translateY(8px);
}

.motion-ready .summary-block,
.motion-ready .actions-block {
  clip-path: inset(0 0 100% 0);
  transform: translateY(10px);
}

.summary-block > p {
  padding-top: 9px;
}

.actions-block .action-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-top: 9px;
  font-size: 8px;
}

.actions-block .action-row i {
  width: 12px;
  height: 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 7px;
  font-style: normal;
}

.device-caption-light {
  color: var(--quiet);
}

.device-caption-light .caption-line {
  background: var(--line);
}

.map-story {
  min-height: 240svh;
  color: var(--warm);
  background: #07140f;
}

/* Two real columns. The copy used to be absolutely positioned over the
   stage and the card sized by a guess at the copy's width; at some window
   widths the heading ran into the card. A grid cannot overlap. */
.map-stage {
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 4vw, 72px);
  padding: 75px max(var(--page-gutter), calc((100vw - var(--content)) / 2)) 30px;
}

.map-copy {
  position: relative;
  z-index: 4;
  max-width: 460px;
}

.map-copy h2 {
  font-size: clamp(48px, 5.8vw, 82px);
}

.map-copy > p:not(.eyebrow) {
  max-width: 340px;
}

.map-window {
  align-self: center;
  justify-self: end;
  width: min(100%, 820px);
  border: 1px solid #2a4538;
  border-radius: 24px;
  background: #0b1e16;
}

.map-window figcaption,
.map-window footer {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: #9cb0a5;
  font: 550 9px/1 var(--system);
  letter-spacing: 0.04em;
}

.map-window figcaption {
  border-bottom: 1px solid #2a4538;
}

.map-window figcaption span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #acd2bc;
}

.map-window figcaption svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.map-window footer {
  border-top: 1px solid #2a4538;
}

.map-mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--warm);
}

.map-mini-brand .brand-mark {
  width: 16px;
  height: 16px;
}

.mind-map {
  width: 100%;
  height: auto;
}

.map-edges path {
  stroke: #557965;
  stroke-width: 1.7;
}

.map-node {
  transform-box: fill-box;
  transform-origin: center;
}

.map-node rect {
  fill: #173829;
  stroke: #709d84;
  stroke-width: 1;
}

.map-node text {
  fill: #edf3ef;
  font: 600 12px/1 var(--system);
  text-anchor: middle;
  dominant-baseline: middle;
}

.map-node.map-leaf rect {
  fill: #10281e;
  stroke: #3c5c4c;
}

.map-node.map-leaf text {
  fill: #a7bcb0;
  font-size: 10px;
  font-weight: 500;
}

.map-node.map-centre rect {
  fill: var(--green);
  stroke: #a1cdb5;
}

.proof-section {
  padding: 170px var(--page-gutter);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.section-shell {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.proof-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(500px, 1.2fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.proof-copy h2,
.section-heading h2 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.96;
}

.proof-copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow) {
  max-width: 390px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.46;
  letter-spacing: -0.02em;
}

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

.proof-list > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  min-height: 126px;
  border-bottom: 1px solid var(--line);
}

.proof-list dt {
  color: var(--green);
  font-size: clamp(40px, 4.4vw, 62px);
  font-weight: 650;
  letter-spacing: -0.07em;
}

.proof-list dd {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.proof-list strong {
  font-size: 15px;
}

.proof-list span {
  color: var(--muted);
  font-size: 13px;
}

.surfaces-section,
.features-section {
  padding: 160px var(--page-gutter);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 70px;
}

.surface-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 320px;
  gap: 14px;
}

.surface-grid:focus-visible {
  outline-offset: 8px;
}

.surface-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  transition: border-color 180ms ease, transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.surface-card:hover {
  border-color: #8db29e;
  transform: translateY(-4px);
}

.surface-photo-card {
  grid-column: span 2;
  grid-row: span 2;
  background: #eae7e2;
}

.surface-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.surface-card-copy {
  position: absolute;
  z-index: 3;
  inset: auto 20px 20px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  color: var(--warm);
  background: rgba(8, 10, 9, 0.76);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.surface-card-copy span,
.feature-card footer > span {
  color: #a9cbb8;
  font: 650 9px/1 var(--system);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.surface-card-copy h3 {
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.surface-control-card .surface-card-copy,
.surface-watch-card .surface-card-copy,
.surface-siri-card .surface-card-copy {
  border-color: var(--line-soft);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
}

.surface-control-card .surface-card-copy span,
.surface-watch-card .surface-card-copy span,
.surface-siri-card .surface-card-copy span {
  color: var(--green);
}

.surface-siri-card {
  grid-column: span 2;
}

.control-preview {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #e7e9ec;
}

.control-pill,
.control-square {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c7c9cc;
  background: rgba(255, 255, 255, 0.78);
}

.control-pill {
  width: 82px;
  height: 82px;
  flex-direction: column;
  gap: 5px;
  border-radius: 22px;
}

.control-pill .brand-mark {
  width: 30px;
  height: 30px;
  color: var(--green);
}

.control-pill i {
  color: var(--muted);
  font-size: 9px;
  font-style: normal;
}

.control-square {
  width: 82px;
  height: 82px;
  border-radius: 22px;
}

.control-square svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-linecap: round;
}

.watch {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 128px;
  height: 151px;
  padding: 10px;
  border: 1px solid #6e7074;
  border-radius: 34px;
  background: #242529;
  transform: translateX(-50%) rotate(-5deg);
}

.watch-crown {
  position: absolute;
  top: 36px;
  right: -6px;
  width: 5px;
  height: 31px;
  border-radius: 0 3px 3px 0;
  background: #5a5b5f;
}

.watch-face {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  color: var(--warm);
  background: #0b1c14;
}

.watch-ring {
  width: 76px;
  height: 76px;
  fill: none;
  stroke: #8fc1a5;
  stroke-width: 2.3;
  stroke-linecap: round;
}

.watch-face > span {
  margin-top: -12px;
  font: 600 10px/1 var(--system);
}

.watch-face small {
  margin-top: 4px;
  color: #88a294;
  font-size: 7px;
}

.siri-preview {
  position: absolute;
  top: 36px;
  left: 50%;
  width: 230px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f7f7f9;
  transform: translateX(-50%);
}

.siri-preview p {
  margin-top: 11px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.siri-preview small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.siri-mark {
  height: 20px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.siri-mark i {
  width: 3px;
  border-radius: 3px;
  background: var(--green);
}

.siri-mark i:nth-child(1) { height: 8px; }
.siri-mark i:nth-child(2) { height: 17px; }
.siri-mark i:nth-child(3) { height: 12px; }
.siri-mark i:nth-child(4) { height: 6px; }

.shortcut-row {
  position: absolute;
  top: 146px;
  left: 50%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.shortcut-row span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-size: 9px;
  white-space: nowrap;
}

.features-section {
  padding-top: 40px;
}

.feature-heading {
  max-width: 900px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  grid-column: span 2;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 180ms ease;
}

.feature-card:hover {
  border-color: #8db29e;
  transform: translateY(-4px);
}

.feature-ask {
  grid-column: span 4;
}

.feature-card > footer {
  margin-top: auto;
  padding: 22px;
  border-top: 1px solid var(--line-soft);
}

.feature-card footer > span {
  color: var(--green);
}

.feature-card footer h3 {
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.feature-card footer p {
  max-width: 380px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.ask-preview {
  min-height: 236px;
  padding: 28px;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 24px;
  background: #eef3ef;
}

.ask-preview > p {
  padding: 14px 16px;
  border: 1px solid #cbdacf;
  border-radius: 16px 16px 5px 16px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 550;
}

.ask-preview > div {
  padding: 16px;
  border: 1px solid #b6cbbb;
  border-radius: 5px 16px 16px 16px;
  background: var(--surface);
}

.ask-preview div > span {
  font-size: 13px;
  line-height: 1.4;
}

.ask-preview small {
  display: block;
  width: max-content;
  margin-top: 12px;
  padding: 5px 7px;
  border-radius: 999px;
  color: var(--green);
  background: #e4eee7;
  font-size: 8px;
  font-weight: 600;
}

.reminder-preview {
  min-height: 236px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  background: #f2f2f4;
}

.reminder-preview > span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  font-size: 12px;
}

.reminder-preview i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--surface);
  background: var(--green);
  font-size: 10px;
  font-style: normal;
}

.reminder-preview b {
  color: var(--green);
  font: 650 9px/1 var(--system);
  text-align: center;
}

.rewrite-preview {
  min-height: 236px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 8px;
  padding: 30px;
  background: #f2f2f4;
}

.rewrite-preview span,
.language-preview span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-size: 10px;
  font-weight: 550;
}

.rewrite-preview .selected {
  border-color: var(--green);
  color: var(--warm);
  background: var(--green);
}

.language-preview {
  min-height: 236px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 8px;
  padding: 27px;
  background: #eef3ef;
}

.language-preview span {
  border-color: #ccdcd1;
}

.import-preview {
  min-height: 236px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0d2118;
  color: var(--warm);
}

.import-preview svg {
  width: 44px;
  height: 44px;
  margin-bottom: 15px;
  fill: none;
  stroke: #9fc9b2;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.import-preview > span {
  font-size: 13px;
  font-weight: 600;
}

.import-preview small {
  margin-top: 6px;
  color: #8ea699;
  font-size: 9px;
}

.price-section {
  padding: 90px var(--page-gutter) 120px;
  background: var(--surface);
}

.price-card {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 116px) 24px;
  border-radius: 32px;
  color: var(--warm);
  background: var(--forest);
  text-align: center;
}

.price-mark {
  width: 60px;
  height: 60px;
  margin: 0 auto 30px;
}

.price-card h2 {
  font-size: clamp(58px, 8vw, 102px);
  line-height: 0.92;
}

.price-card > p:not(.eyebrow) {
  max-width: 390px;
  margin: 26px auto 31px;
  color: #b7c7be;
  font-size: 16px;
  line-height: 1.45;
}

.pill-button-light {
  color: var(--forest);
  background: var(--warm);
}

.pill-button-light:hover {
  color: var(--forest);
  background: #ffffff;
}

.pill-button:disabled {
  opacity: 0.72;
  cursor: default;
  transform: none;
}

.site-footer {
  min-height: 88px;
  width: min(calc(100% - var(--page-gutter) * 2), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 11px;
}

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

.site-footer > p {
  color: var(--green);
  font: 600 10px/1 var(--system);
}

.site-footer nav {
  justify-self: end;
  display: flex;
  gap: 24px;
}

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

.js .reveal-on-view {
  opacity: 0;
  transform: translateY(18px);
}

@keyframes section-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .proof-list > div,
    .surface-card,
    .feature-card,
    .price-card {
      animation-name: section-enter;
      animation-duration: 1ms;
      animation-fill-mode: both;
      animation-timing-function: linear;
      animation-timeline: view();
      animation-range: entry 8% cover 28%;
    }
  }
}

@media (max-width: 1000px) {

  .capture-stage,
  .results-stage {
    grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
    gap: 40px;
  }

  .iphone {
    width: 310px;
  }

  .iphone-results {
    width: 325px;
  }

  .device-caption {
    display: none;
  }

  .map-stage {
    grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
    gap: 28px;
  }

  .map-copy h2 {
    font-size: 48px;
  }

  .proof-shell {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
  }

  .surface-grid {
    grid-auto-rows: 300px;
  }
}

@media (max-width: 1320px) {
  .device-caption {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 20px;
  }

  .site-nav {
    height: 50px;
  }

  .scroll-prompt {
    display: none;
  }

  .capture-story {
    min-height: 220svh;
  }

  .capture-stage,
  .results-stage {
    height: 100svh;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 68px 18px 16px;
  }

  .capture-copy,
  .results-copy {
    /* The stage is a fixed-height column. Never let the copy shrink, or its
       text is painted over the phone below it (seen on a 390px viewport). */
    flex: 0 0 auto;
    width: 100%;
    max-width: 410px;
    min-height: 190px;
    text-align: center;
  }

  .capture-copy {
    /* The two phase blocks are absolutely positioned, so the box must be tall
       enough for eyebrow, two heading lines, three body lines and the rail. */
    min-height: 250px;
  }

  .stage-copy .eyebrow {
    margin-bottom: 11px;
  }

  .stage-copy h2 {
    font-size: clamp(39px, 11vw, 50px);
    line-height: 0.94;
  }

  .stage-copy > p:not(.eyebrow),
  .phase-copy > p,
  .results-copy > p:not(.eyebrow) {
    max-width: 340px;
    margin: 13px auto 0;
    font-size: 13px;
    line-height: 1.38;
  }

  .phase-copy {
    inset: 0;
  }

  .capture-rail {
    left: 50%;
    bottom: 0;
    width: min(100%, 340px);
    transform: translateX(-50%);
  }

  .device-wrap {
    flex: 1 1 auto;
    min-height: 0;
    margin-top: 18px;
  }

  .iphone {
    width: min(71vw, 270px);
    border-radius: 43px;
  }

  .iphone-screen {
    border-radius: 36px;
  }

  .iphone::before {
    border-radius: 40px;
  }

  .hardware {
    transform: scale(0.86);
    transform-origin: right top;
  }

  .recording-screen {
    padding-inline: 12px;
  }

  .dynamic-island {
    width: 142px;
  }

  .locked-label {
    margin-top: 16px;
  }

  .lock-clock {
    font-size: 54px;
  }

  .recording-panel {
    left: 10px;
    right: 10px;
    bottom: 62px;
    padding: 12px;
  }

  .waveform {
    height: 102px;
  }

  .lock-actions {
    inset: auto 17px 12px;
  }

  .lock-actions span {
    width: 36px;
    height: 36px;
  }

  .results-story {
    min-height: 210svh;
  }

  .results-copy {
    min-height: 0;
  }

  .result-steps {
    max-width: 340px;
    margin: 17px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 0;
  }

  .result-steps li {
    display: block;
    padding: 8px 4px;
    border-top: 1px solid var(--line);
    border-bottom: 0;
    font-size: 9px;
    text-align: center;
  }

  .result-steps li span {
    display: block;
    margin-bottom: 4px;
  }

  .iphone-results {
    width: min(72vw, 274px);
  }

  .note-content {
    padding: 13px 12px 10px;
  }

  .note-content header {
    padding-bottom: 10px;
  }

  .note-content header h3 {
    font-size: 19px;
  }

  .app-block {
    padding: 9px;
  }

  .app-block + .app-block {
    margin-top: 7px;
  }

  .transcript-row {
    padding-top: 7px;
  }

  .summary-block > p {
    padding-top: 7px;
  }

  .actions-block .action-row {
    padding-top: 7px;
  }

  .map-story {
    min-height: 220svh;
  }

  .map-stage {
    height: 100svh;
    display: flex;
    flex-direction: column;
    padding: 70px 14px 22px;
  }

  .map-copy {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 380px;
    text-align: center;
  }

  .map-copy .eyebrow {
    margin-bottom: 11px;
  }

  .map-copy h2 {
    font-size: clamp(40px, 11vw, 50px);
  }

  .map-copy > p:not(.eyebrow) {
    max-width: 330px;
    margin: 13px auto 0;
    font-size: 13px;
  }

  .map-window {
    align-self: auto;
    justify-self: auto;
    width: 100%;
    margin: auto 0 0;
    border-radius: 18px;
  }

  .map-window figcaption,
  .map-window footer {
    height: 38px;
    padding-inline: 12px;
    font-size: 8px;
  }

  .map-node text {
    font-size: 22px;
  }

  .map-node.map-leaf text {
    font-size: 18px;
  }

  .proof-section,
  .surfaces-section,
  .features-section {
    padding: 104px var(--page-gutter);
  }

  .proof-shell {
    display: block;
  }

  .proof-copy h2,
  .section-heading h2 {
    font-size: clamp(46px, 13vw, 62px);
    line-height: 0.96;
  }

  .proof-copy > p:not(.eyebrow),
  .section-heading > p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 15px;
  }

  .proof-list {
    margin-top: 55px;
  }

  .proof-list > div {
    grid-template-columns: 110px 1fr;
    min-height: 100px;
  }

  .proof-list dt {
    font-size: 44px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .surface-grid {
    display: flex;
    gap: 12px;
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .surface-grid::-webkit-scrollbar {
    display: none;
  }

  .surface-card,
  .surface-photo-card,
  .surface-siri-card {
    flex: 0 0 min(82vw, 330px);
    min-height: 440px;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
  }

  .surface-card-copy {
    inset: auto 14px 14px;
  }

  .control-preview {
    height: 245px;
  }

  .watch {
    top: 55px;
    width: 152px;
    height: 179px;
  }

  .siri-preview {
    top: 63px;
  }

  .shortcut-row {
    top: 177px;
  }

  .features-section {
    padding-top: 20px;
  }

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

  .feature-card,
  .feature-ask {
    grid-column: auto;
    min-height: 350px;
  }

  .ask-preview {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px;
  }

  .price-section {
    padding: 56px 14px 72px;
  }

  .price-card {
    padding: 72px 18px;
    border-radius: 25px;
  }

  .price-card h2 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .site-footer {
    width: calc(100% - 40px);
    padding: 24px 0 36px;
    grid-template-columns: 1fr auto;
  }

  .site-footer > p {
    justify-self: end;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
}

@media (max-height: 700px) and (max-width: 760px) {
  .capture-stage,
  .results-stage {
    padding-top: 57px;
  }

  .capture-copy {
    min-height: 230px;
  }

  .results-copy {
    min-height: 0;
  }

  .iphone {
    width: min(60vw, 224px);
  }

  .lock-clock {
    font-size: 44px;
  }

  .recording-panel {
    bottom: 50px;
  }

  .waveform {
    height: 75px;
  }

  .map-stage {
    padding-top: 58px;
  }

  .map-copy > p:not(.eyebrow) {
    display: none;
  }

  .map-window {
    width: min(88vw, 520px);
  }
}

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

  .pinned-story {
    min-height: auto;
  }

  .pinned-stage {
    position: relative;
    min-height: 100svh;
    height: auto;
  }

  .phase-talk {
    opacity: 0;
  }

  .phase-stop {
    opacity: 1;
    transform: none;
  }

  .transcript-row,
  .summary-block,
  .actions-block,
  .map-node {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }

  .map-edges path {
    stroke-dashoffset: 0 !important;
  }

  .js .reveal-on-view {
    opacity: 1;
    transform: none;
  }
}

.is-static-story .pinned-story {
  min-height: auto;
}

.is-static-story .pinned-stage {
  position: relative !important;
  min-height: 100svh;
  height: auto;
  overflow: visible;
}

.is-static-story .capture-copy {
  min-height: 220px;
}

.is-static-story .phase-talk {
  opacity: 0 !important;
  pointer-events: none !important;
}

.is-static-story .phase-stop {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}

.is-static-story .transcript-row,
.is-static-story .summary-block,
.is-static-story .actions-block,
.is-static-story .map-node {
  opacity: 1 !important;
  clip-path: none !important;
  transform: none !important;
}

.is-static-story .map-edges path {
  stroke-dashoffset: 0 !important;
}

/* Quiet Launch hero */
.site-nav {
  height: 68px;
  padding: 0 clamp(24px, 3.4vw, 52px);
  border-bottom: 0;
}

.site-nav.is-scrolled {
  border-color: transparent;
}

.brand-word {
  font-size: 22px;
  font-weight: 720;
  letter-spacing: -0.055em;
}

.nav-cta {
  min-height: 36px;
  padding: 0 17px;
  border: 0;
  color: #fff;
  background: #0b0b0d;
  font-size: 13px;
}

.nav-cta:hover {
  color: #fff;
  background: var(--green);
  transform: none;
}

.site-nav.is-on-dark .nav-cta {
  color: var(--forest);
  background: var(--warm);
}

.site-nav.is-on-dark .nav-cta:hover {
  color: #fff;
  background: var(--green);
}

.result-steps {
  position: relative;
  z-index: 2;
  background: var(--canvas);
}

@keyframes hero-button-pulse {
  0%, 72%, 100% {
    opacity: 0;
    transform: scale(0.9);
  }

  76% {
    opacity: 0.62;
  }

  88% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@media (max-width: 760px) {
  .site-nav {
    height: 58px;
    padding: 0 18px;
  }

  .brand-word {
    font-size: 21px;
  }

  .nav-cta {
    min-height: 32px;
    padding: 0 13px;
    font-size: 12px;
  }

}

/* Document pages: privacy and support */
.doc-page {
  background: var(--canvas);
}

.doc-hero {
  padding: 150px var(--page-gutter) 54px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.doc-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.doc-hero .doc-lede {
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.doc-hero .doc-meta {
  margin-top: 26px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.doc-body {
  padding: 60px var(--page-gutter) 130px;
}

.doc-body .section-shell > * {
  max-width: 720px;
}

.doc-body h2 {
  margin: 54px 0 14px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.doc-body h2:first-child {
  margin-top: 0;
}

.doc-body p,
.doc-body li {
  color: #3a3a3c;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.012em;
}

.doc-body p + p {
  margin-top: 14px;
}

.doc-body ul,
.doc-body ol {
  margin: 14px 0 0;
  padding-left: 22px;
}

.doc-body li + li {
  margin-top: 8px;
}

.doc-body a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.doc-card {
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.doc-card p + p {
  margin-top: 10px;
}

@media (max-width: 760px) {
  .doc-hero {
    padding: 108px 18px 40px;
  }

  .doc-body {
    padding: 40px 18px 90px;
  }

  .doc-body p,
  .doc-body li {
    font-size: 16px;
  }
}

/* Hero. Speech becoming text: a full-width recording plays across the fold and
   settles into the words it said. Near-black green stage, hairline depth, one
   accent (the playhead). No halo, no gradient field. */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding: 68px var(--page-gutter) 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: var(--warm);
  background: #06170f;
  overflow: hidden;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(18px, 3vh, 30px);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9fc9b2;
  font: 650 11px/1.2 var(--system);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.hero-readout {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #9fc9b2;
  font: 600 11px/1 var(--system);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.hero-readout i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3b30;
  transition: background-color 240ms ease;
}

.hero.is-done .hero-readout i {
  background: var(--green);
}

.hero-speech {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 0;
  padding: clamp(24px, 5vh, 56px) 0;
}

.hero-field {
  position: absolute;
  z-index: 0;
  left: calc(-1 * var(--page-gutter));
  right: calc(-1 * var(--page-gutter));
  top: 50%;
  height: clamp(160px, 34vh, 320px);
  display: flex;
  align-items: center;
  gap: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-field > span {
  flex: 1 1 0;
  height: 100%;
  position: relative;
}

.hero-field > span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.5px;
  height: 100%;
  border-radius: 1px;
  background: #4a7a62;
  opacity: 0.55;
  transform: translate(-50%, -50%) scaleY(var(--amp, 0.02));
  transform-origin: 50% 50%;
  will-change: transform;
}

.hero-field > span.is-lit::before {
  background: var(--green);
  opacity: 1;
}

.hero-playhead {
  position: absolute;
  z-index: 1;
  top: -6%;
  bottom: -6%;
  left: 0;
  width: 1px;
  background: var(--green);
  opacity: 0;
}

.hero-sentence {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 1180px;
  font-size: clamp(46px, 8.1vw, 134px);
  font-weight: 720;
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-word {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0 0.08em 0.1em;
  margin: 0 -0.08em -0.08em;
  vertical-align: top;
}

.hero-word > span {
  display: inline-block;
  transition: color 220ms ease;
}

.hero-word.is-live > span {
  color: var(--green);
}

.hero-word > em {
  position: absolute;
  left: 0.12em;
  top: -0.05em;
  padding: 3px 6px;
  border: 1px solid #2f5a45;
  border-radius: 6px;
  color: #9fc9b2;
  background: #06170f;
  font: 600 10px/1 var(--system);
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.hero.is-done .hero-word {
  overflow: visible;
}

.hero.is-done .hero-speech {
  cursor: pointer;
}

.hero.is-done .hero-word:hover > em {
  opacity: 1;
  transform: translateY(0);
}

.hero-foot {
  display: grid;
  grid-template-columns: minmax(280px, 620px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(20px, 4vh, 44px) 0 clamp(32px, 6vh, 64px);
  border-top: 1px solid #1c3a2b;
}

.hero h1 {
  margin: 0;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.hero h1 span:first-child {
  color: #8eaa9b;
}

.hero-lede {
  max-width: 560px;
  margin-top: 12px;
  color: #b7cabf;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.5;
  letter-spacing: -0.012em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero .pill-button {
  min-height: 52px;
  gap: 14px;
  padding: 0 24px;
  color: #fff;
  background: var(--green);
  font-size: 15px;
  transition: background-color 180ms ease;
}

.hero .pill-button:hover {
  background: #246c4d;
}

.hero .pill-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  color: var(--warm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-text-link span {
  color: #9fc9b2;
  transition: transform 180ms ease;
}

.hero-text-link:hover span {
  transform: translateY(3px);
}

@media (max-width: 1000px) {
  .hero-sentence {
    font-size: clamp(44px, 8.6vw, 92px);
  }

  .hero-foot {
    grid-template-columns: 1fr;
    justify-content: start;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 50px 18px 0;
  }

  .hero-top {
    padding-top: 16px;
  }

  .hero-readout span:last-child {
    display: none;
  }

  .hero-speech {
    padding: 28px 0 22px;
  }

  .hero-field {
    left: -18px;
    right: -18px;
    height: clamp(150px, 30vh, 240px);
  }

  .hero-sentence {
    font-size: clamp(44px, 13.5vw, 58px);
    line-height: 0.96;
  }

  .hero-word > em {
    display: none;
  }

  /* 180 bars across 390px would read as a solid wall; thin and dim them. */
  .hero-field > span::before {
    width: 1px;
    opacity: 0.38;
  }

  .hero-field > span.is-lit::before {
    opacity: 0.9;
  }

  .hero-foot {
    gap: 22px;
    padding: 22px 0 34px;
  }

  .hero h1 {
    font-size: 21px;
  }

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

  .hero-actions {
    gap: 18px;
  }

  .hero .pill-button {
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .hero-text-link {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-field > span::before,
  .hero-word > span {
    transition: none;
  }
}

/* Nav and hero top row fade in with CSS, not script: a keyframe with
   fill-mode backwards cannot leave the wordmark hidden if anything is
   interrupted. */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .site-nav > *,
  .hero-kicker,
  .hero-readout {
    animation: hero-in 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }

  .site-nav > :last-child { animation-delay: 70ms; }
  .hero-kicker { animation-delay: 120ms; }
  .hero-readout { animation-delay: 190ms; }
}
