:root {
  --ledger: #f2f3ef;
  --paper: #fbfcf9;
  --white: #ffffff;
  --ink: #121412;
  --ink-2: #4f544f;
  --ink-3: #858b85;
  --line: #dfe2dc;
  --line-soft: #eaede7;
  --cobalt: #4655d7;
  --cobalt-dark: #3340b9;
  --cobalt-wash: #e9ebff;
  --violet-wash: #f0ebff;
  --green: #159866;
  --green-wash: #e4f5ec;
  --coral: #e35f43;
  --amber: #d89b2b;
  --shadow-small: 0 2px 8px rgba(18, 20, 18, .06);
  --shadow-medium: 0 24px 70px rgba(28, 32, 27, .12), 0 2px 8px rgba(18, 20, 18, .05);
  --shadow-float: 0 26px 70px rgba(24, 28, 24, .17), 0 3px 12px rgba(18, 20, 18, .08);
  --display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --shell: min(1200px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ledger);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -.018em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

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

svg {
  display: block;
}

::selection {
  color: var(--white);
  background: var(--cobalt);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid rgba(70, 85, 215, .35);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 72px;
  border-bottom: 1px solid transparent;
  transition: height .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  height: 62px;
  background: rgba(248, 249, 246, .88);
  border-color: rgba(205, 209, 201, .78);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8), 0 10px 30px rgba(18, 20, 18, .035);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}

.nav-shell {
  width: var(--shell);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  position: relative;
  z-index: 2;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 720;
  letter-spacing: -.035em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--ink);
  border-radius: 9px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), 0 2px 4px rgba(18, 20, 18, .18);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a,
.text-link {
  position: relative;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: color .16s ease;
}

.site-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--ink);
}

.site-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .2s ease;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.015em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

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

.button span {
  transition: transform .18s ease;
}

.button:hover span {
  transform: translate(2px, -2px);
}

.button-small {
  min-height: 36px;
  padding: 0 15px;
  border-radius: 9px;
  font-size: 12px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 3px 7px rgba(18, 20, 18, .16);
}

.button-dark:hover {
  background: #262a26;
  box-shadow: 0 7px 18px rgba(18, 20, 18, .16);
}

.button-cobalt {
  color: var(--white);
  background: var(--cobalt);
  box-shadow: 0 7px 24px rgba(70, 85, 215, .25);
}

.button-cobalt:hover {
  background: var(--cobalt-dark);
  box-shadow: 0 10px 30px rgba(70, 85, 215, .32);
}

.button-quiet {
  color: var(--ink);
  background: rgba(255, 255, 255, .67);
  border-color: var(--line);
  box-shadow: var(--shadow-small);
}

.button-quiet:hover {
  background: var(--white);
  border-color: #cfd3cc;
}

.hero {
  position: relative;
  min-height: 880px;
  padding: 150px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 37%, rgba(85, 98, 220, .13), transparent 28%),
    radial-gradient(circle at 93% 0%, rgba(134, 113, 255, .09), transparent 25%),
    linear-gradient(180deg, #f8f9f6 0%, var(--ledger) 88%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .38;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(105, 111, 102, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 111, 102, .09) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, #000 44%, #000 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(470px, .95fr) minmax(570px, 1.05fr);
  align-items: center;
  gap: 32px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cobalt);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow-dot {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.eyebrow-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(21, 152, 102, .45);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}

.hero h1 {
  max-width: 630px;
  margin: 24px 0 24px;
  font-family: var(--display);
  font-size: clamp(58px, 5vw, 74px);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -.058em;
}

.headline-line {
  display: block;
  overflow: hidden;
  padding: 0 .09em .05em 0;
}

.headline-line > span {
  display: block;
  transform: translateY(112%);
  animation: headline-in .82s cubic-bezier(.18, .8, .22, 1) forwards;
}

.headline-line:nth-child(2) > span {
  animation-delay: .09s;
}

.headline-line:nth-child(3) > span {
  animation-delay: .18s;
}

.headline-accent {
  color: var(--cobalt);
}

.hero-lede {
  max-width: 545px;
  margin: 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -.027em;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.hero-assurance {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 600;
}

.assurance-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--green);
  background: var(--green-wash);
  border-radius: 7px;
}

.assurance-icon svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-product {
  position: relative;
  height: 600px;
  margin-right: 0;
  perspective: 1200px;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(70, 85, 215, .13);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  width: 520px;
  height: 520px;
  top: 16px;
  left: 170px;
}

.hero-orbit-two {
  width: 390px;
  height: 390px;
  top: 80px;
  left: 235px;
  border-style: dashed;
  animation: orbit-spin 42s linear infinite;
}

.browser-frame {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(159, 165, 154, .44);
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
}

.hero-browser {
  position: absolute;
  top: 86px;
  left: 20px;
  width: min(760px, calc(100% + 20px));
  transform: rotateY(-2deg) rotateX(1deg);
  transform-origin: 30% 50%;
  animation: product-land 1.08s cubic-bezier(.18, .8, .22, 1) .18s both;
}

.browser-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 13px;
  color: #7d827d;
  background: #fafbf8;
  border-bottom: 1px solid var(--line-soft);
  font-size: 9px;
}

.browser-dots {
  display: flex;
  gap: 4px;
}

.browser-dots i {
  width: 6px;
  height: 6px;
  background: #d6d9d2;
  border-radius: 50%;
}

.browser-address {
  min-width: 210px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 9px;
  background: #f0f2ed;
  border-radius: 6px;
  font-family: var(--mono);
}

.browser-address svg {
  width: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.browser-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.browser-live i,
.screen-status i {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(21, 152, 102, .1);
}

.browser-canvas {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #f5f5f3;
}

.browser-canvas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scan-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -18%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .52), transparent);
  transform: skewX(-12deg);
  animation: screen-scan 6s ease-in-out 1.8s infinite;
}

.mail-float,
.extract-float {
  position: absolute;
  z-index: 5;
  padding: 14px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(195, 200, 192, .8);
  border-radius: 14px;
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mail-float {
  top: 15px;
  left: -20px;
  width: 315px;
  animation: float-in-left .8s cubic-bezier(.18, .8, .22, 1) .55s both, float-soft 6s ease-in-out 1.6s infinite;
}

.mail-topline,
.extract-head {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mail-avatar {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--coral);
  background: #ffede8;
  border-radius: 9px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
}

.mail-topline > span:nth-child(2),
.extract-head > span:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.mail-topline strong,
.extract-head strong {
  font-size: 10px;
  line-height: 1.25;
}

.mail-topline small,
.extract-head small {
  color: var(--ink-3);
  font-size: 8.5px;
  line-height: 1.4;
}

.mail-provider {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  color: #3374d8;
  background: #e9f1ff;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
}

.mail-float > p {
  margin: 12px 0 9px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.attachment-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  color: var(--ink-2);
  background: var(--ledger);
  border-radius: 8px;
  font-size: 8.5px;
  font-weight: 600;
}

.attachment-chip svg {
  width: 12px;
  fill: none;
  stroke: var(--cobalt);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.extract-float {
  right: -7px;
  bottom: 15px;
  width: 330px;
  animation: float-in-right .8s cubic-bezier(.18, .8, .22, 1) .8s both, float-soft 6.7s ease-in-out 1.9s infinite reverse;
}

.spark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--cobalt);
  background: var(--cobalt-wash);
  border-radius: 9px;
  font-size: 13px;
}

.extract-check {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--green);
  background: var(--green-wash);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.extract-fields {
  margin: 12px 0 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-soft);
  border-radius: 9px;
}

.extract-fields span {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.extract-fields span + span {
  border-left: 1px solid var(--line-soft);
}

.extract-fields small {
  color: var(--ink-3);
  font-size: 7.5px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.extract-fields strong {
  font-family: var(--mono);
  font-size: 11px;
}

.extract-fields .fit-value {
  color: var(--green);
}

.extract-route {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-2);
  font-size: 8.5px;
  font-weight: 600;
}

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

.extract-route b {
  margin-left: auto;
  color: var(--cobalt);
  font-size: 12px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s cubic-bezier(.2, .8, .2, 1), transform .75s cubic-bezier(.2, .8, .2, 1);
}

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

.hero-copy [data-reveal] {
  animation: simple-reveal .7s cubic-bezier(.2, .8, .2, 1) both;
}

.hero-copy .hero-eyebrow {
  animation-delay: .1s;
}

.hero-copy .hero-lede {
  animation-delay: .32s;
}

.hero-copy .hero-actions {
  animation-delay: .42s;
}

.hero-copy .hero-assurance {
  animation-delay: .5s;
}

.signal-rail {
  position: relative;
  z-index: 4;
  padding: 0 0 22px;
  background: var(--ledger);
}

.signal-track {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(251, 252, 249, .75);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-small);
}

.signal-item {
  position: relative;
  min-height: 112px;
  display: grid;
  align-content: center;
  padding: 20px 22px 20px 52px;
}

.signal-item + .signal-item {
  border-left: 1px solid var(--line);
}

.signal-no {
  position: absolute;
  top: 26px;
  left: 21px;
  color: var(--cobalt);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
}

.signal-item strong {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.025em;
}

.signal-item small {
  margin-top: 3px;
  color: var(--ink-3);
  font-size: 10.5px;
  line-height: 1.45;
}

.section {
  width: var(--shell);
  margin: 0 auto;
  padding: 132px 0;
}

.section-intro {
  margin-bottom: 54px;
}

.section-intro.centered {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-intro.narrow {
  max-width: 780px;
}

.section-intro h2,
.receive-copy h2,
.security-copy h2,
.closing h2 {
  margin: 17px 0 18px;
  font-family: var(--display);
  font-size: clamp(42px, 4.5vw, 62px);
  font-weight: 730;
  line-height: 1.05;
  letter-spacing: -.052em;
}

.section-intro p,
.receive-copy p,
.security-copy > p,
.closing-action > p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.72;
}

.centered > p {
  max-width: 710px;
  margin-right: auto;
  margin-left: auto;
}

.workflow {
  padding-bottom: 154px;
}

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

.relay-line {
  position: absolute;
  z-index: -1;
  top: 42px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: #cfd3ca;
}

.relay-line i {
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--cobalt);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(70, 85, 215, .1);
}

.relay.is-visible .relay-line i {
  animation: relay-run 4.5s cubic-bezier(.35, .1, .15, 1) infinite;
}

.relay-card {
  min-width: 0;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 3px 9px rgba(18, 20, 18, .035);
}

.relay-card:nth-of-type(2) {
  transition-delay: .1s;
}

.relay-card:nth-of-type(3) {
  transition-delay: .2s;
}

.relay-card:nth-of-type(4) {
  transition-delay: .3s;
}

.relay-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.relay-step i {
  color: var(--cobalt);
  font-style: normal;
}

.relay-icon {
  width: 48px;
  height: 48px;
  margin: 28px 0 20px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.relay-icon svg,
.icon-tile svg,
.feature-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mail-icon {
  color: var(--coral);
  background: #ffebe7;
}

.read-icon {
  color: var(--cobalt);
  background: var(--cobalt-wash);
}

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

.relay-card h3,
.intelligence-card h3,
.feature-card h3,
.security-list h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.032em;
}

.relay-card h3 {
  font-size: 22px;
}

.relay-card > p {
  min-height: 66px;
  margin: 9px 0 22px;
  color: var(--ink-2);
  font-size: 12px;
  line-height: 1.65;
}

.mini-inbox,
.mini-fields,
.mini-next-move {
  min-height: 120px;
  padding: 10px;
  background: var(--ledger);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
}

.mini-inbox {
  display: grid;
  gap: 6px;
}

.mini-inbox > span {
  min-width: 0;
  display: grid;
  grid-template-columns: 27px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 7px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}

.mini-inbox i {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 7px;
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
  font-weight: 600;
}

.avatar-violet {
  color: #7652d9;
  background: #eee9ff;
}

.avatar-coral {
  color: var(--coral);
  background: #ffebe7;
}

.avatar-blue {
  color: #3977c9;
  background: #e7f1ff;
}

.mini-inbox b {
  min-width: 0;
  overflow: hidden;
  font-size: 8.5px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-inbox em {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
}

.mini-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.mini-fields span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}

.mini-fields small,
.mini-next-move small,
.edit-proof small {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .08em;
}

.mini-fields b {
  margin-top: 2px;
  font-family: var(--mono);
  font-size: 13px;
}

.mini-fields .cobalt {
  color: var(--cobalt);
}

.mini-next-move {
  display: grid;
  gap: 7px;
}

.next-move-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .06em;
}

.next-move-head span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.next-move-head i {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(216, 155, 43, .12);
}

.next-move-head em {
  padding: 2px 5px;
  color: #a56f12;
  background: #fff2d8;
  border-radius: 5px;
  font-style: normal;
  font-weight: 600;
}

.next-move-property {
  display: grid;
  grid-template-columns: 31px 1fr;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}

.next-house {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--cobalt);
  background: var(--cobalt-wash);
  border-radius: 8px;
}

.next-house svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.next-move-property > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.next-move-property strong {
  overflow: hidden;
  font-size: 8.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.next-move-property small {
  color: var(--ink-3);
  font-family: var(--body);
  font-size: 7px;
  letter-spacing: 0;
}

.next-move-task {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  background: #fffaf0;
  border: 1px solid #f3e8ce;
  border-radius: 8px;
}

.next-move-task > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.next-move-task small {
  color: #a97922;
}

.next-move-task b {
  overflow: hidden;
  font-size: 7.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.next-move-task em {
  margin-left: auto;
  flex: none;
  padding: 4px 6px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  font-size: 6.8px;
  font-style: normal;
  font-weight: 650;
}

.platform {
  width: 100%;
  padding: 126px max(32px, calc((100vw - 1200px) / 2));
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-intro {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 80px;
}

.split-intro h2 {
  max-width: 730px;
}

.split-intro p {
  padding-bottom: 8px;
}

.platform-shell {
  display: grid;
  grid-template-columns: 385px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.platform-tabs {
  display: grid;
  gap: 7px;
}

.platform-tabs button {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 16px 17px;
  color: var(--ink-2);
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.platform-tabs button:hover {
  color: var(--ink);
  background: rgba(242, 243, 239, .75);
}

.platform-tabs button[aria-selected="true"] {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-small);
}

.tab-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: transparent;
}

.tab-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--cobalt);
}

.platform-tabs button[aria-selected="true"].is-running .tab-progress i {
  animation: tab-fill 6.4s linear forwards;
}

.tab-title {
  display: grid;
  grid-template-columns: 27px 1fr auto;
  align-items: center;
  gap: 2px;
}

.tab-title i {
  color: var(--cobalt);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
}

.tab-title strong {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 690;
  letter-spacing: -.025em;
}

.tab-title em {
  min-width: 22px;
  padding: 2px 6px;
  color: var(--ink-3);
  background: var(--ledger);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
  text-align: center;
}

.tab-copy {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0 16px 0 29px;
  color: var(--ink-3);
  font-size: 10.5px;
  line-height: 1.55;
  opacity: 0;
  transition: max-height .25s ease, padding .25s ease, opacity .25s ease;
}

.platform-tabs button[aria-selected="true"] .tab-copy {
  max-height: 60px;
  padding-top: 8px;
  opacity: 1;
}

.product-screen {
  min-width: 0;
}

.platform-browser {
  border-radius: 18px;
  box-shadow: 0 34px 80px rgba(25, 28, 24, .12), 0 2px 10px rgba(25, 28, 24, .06);
}

.platform-browser .browser-bar {
  height: 43px;
}

.screen-label {
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
}

.screen-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 8.5px;
  font-weight: 600;
}

.screen-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ledger);
}

.screen-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.002);
  opacity: 1;
  transition: opacity .25s ease, transform .5s ease;
}

.screen-image-wrap.is-changing img {
  opacity: 0;
  transform: scale(.985);
}

.screen-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
}

.screen-caption {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  padding: 16px 2px 0;
}

.screen-caption p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-2);
  font-size: 11px;
  line-height: 1.6;
}

.screen-caption a {
  flex: none;
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 700;
}

.intelligence {
  padding-top: 144px;
}

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

.intelligence-card {
  overflow: hidden;
  min-height: 630px;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 4px 15px rgba(18, 20, 18, .035);
}

.intelligence-card:nth-child(2) {
  transition-delay: .12s;
}

.card-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 700;
}

.icon-tile {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.icon-tile svg {
  width: 17px;
}

.icon-tile.violet {
  color: #7255ce;
  background: var(--violet-wash);
}

.icon-tile.cobalt {
  color: var(--cobalt);
  background: var(--cobalt-wash);
}

.intelligence-card h3 {
  margin-top: 27px;
  font-size: 36px;
}

.intelligence-card > p {
  max-width: 480px;
  margin: 14px 0 30px;
  color: var(--ink-2);
  font-size: 12.5px;
  line-height: 1.7;
}

.learning-visual,
.ask-visual {
  padding: 18px;
  background: var(--ledger);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.learn-head {
  display: flex;
  justify-content: space-between;
  padding: 0 2px 12px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .06em;
}

.learn-rule {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 85px 34px;
  align-items: center;
  gap: 12px;
  padding: 13px 12px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
}

.learn-rule + .learn-rule {
  margin-top: 7px;
}

.learn-rule > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.learn-rule strong {
  overflow: hidden;
  font-size: 9.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.learn-rule small {
  color: var(--ink-3);
  font-size: 8px;
}

.confidence {
  height: 4px;
  overflow: hidden;
  background: #e6e8e2;
  border-radius: 999px;
}

.confidence i {
  display: block;
  width: var(--w);
  height: 100%;
  background: var(--cobalt);
  border-radius: inherit;
  transform-origin: left;
  transform: scaleX(0);
}

.is-visible .confidence i {
  animation: confidence-grow .9s cubic-bezier(.2, .8, .2, 1) .5s forwards;
}

.learn-rule > b {
  font-family: var(--mono);
  font-size: 9px;
  text-align: right;
}

.muted-rule {
  opacity: .72;
}

.learn-controls {
  display: flex;
  gap: 7px;
  padding-top: 12px;
}

.learn-controls button {
  height: 29px;
  padding: 0 11px;
  color: var(--ink-2);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 8.5px;
  font-weight: 600;
}

.ask-visual {
  position: relative;
  min-height: 279px;
  padding: 16px;
  background: linear-gradient(145deg, #f0f1fb, #f8f8f5 72%);
}

.ask-context {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(210, 213, 231, .85);
  border-radius: 9px;
  font-size: 8.5px;
  font-weight: 650;
}

.ask-context span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ask-context i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.ask-context b {
  margin-left: auto;
  padding: 2px 6px;
  color: var(--green);
  background: var(--green-wash);
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 7.5px;
}

.ask-question {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  background: var(--white);
  border: 1px solid #d7d9e7;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(55, 61, 119, .05);
  font-size: 9.5px;
  font-weight: 600;
}

.ask-question span {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
}

.ask-visual.is-typing .ask-question span {
  animation: type-question 2s steps(43, end) .25s forwards;
}

.ask-question i {
  margin-left: auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--white);
  background: var(--cobalt);
  border-radius: 7px;
  font-size: 10px;
  font-style: normal;
}

.ask-answer {
  margin-top: 11px;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  opacity: 0;
  transform: translateY(8px);
}

.ask-visual.is-typing .ask-answer {
  animation: answer-in .45s ease 2.55s forwards;
}

.answer-spark {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--cobalt);
  background: var(--cobalt-wash);
  border-radius: 7px;
  font-size: 10px;
}

.ask-answer p {
  margin: 0;
  color: var(--ink-2);
  font-size: 8.5px;
  line-height: 1.65;
}

.ask-answer strong {
  color: var(--ink);
}

.ask-sources {
  display: flex;
  gap: 5px;
  margin-top: 10px;
  opacity: 0;
}

.ask-visual.is-typing .ask-sources {
  animation: answer-in .35s ease 2.9s forwards;
}

.ask-sources span {
  padding: 4px 7px;
  color: var(--ink-3);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 6.8px;
}

.receive-band {
  width: var(--shell);
  min-height: 580px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 60px;
  padding: 76px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 30%, rgba(99, 112, 238, .22), transparent 34%),
    linear-gradient(145deg, #171a18, #0d0f0e);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 30px;
  box-shadow: 0 36px 80px rgba(18, 20, 18, .16);
}

.eyebrow-light {
  color: #99a5ff;
}

.receive-copy h2 {
  font-size: clamp(42px, 4vw, 58px);
}

.receive-copy h2 span {
  color: #9da7ff;
}

.receive-copy p {
  max-width: 500px;
  color: rgba(255, 255, 255, .6);
}

.receive-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 46px minmax(0, .8fr);
  align-items: center;
}

.inbox-stack,
.record-card {
  padding: 13px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 15px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
  backdrop-filter: blur(10px);
}

.stack-label {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, .42);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .09em;
}

.inbox-row {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, .93);
  border-radius: 9px;
  opacity: .35;
  transform: translateX(-10px);
}

.inbox-row + .inbox-row {
  margin-top: 6px;
}

.receive-band.is-visible .inbox-row {
  animation: inbox-catch .5s ease forwards;
}

.receive-band.is-visible .inbox-row:nth-child(3) {
  animation-delay: .2s;
}

.receive-band.is-visible .inbox-row:nth-child(4) {
  animation-delay: .4s;
}

.receive-band.is-visible .inbox-row:nth-child(5) {
  animation-delay: .6s;
}

.inbox-row > i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--cobalt);
  background: var(--cobalt-wash);
  border-radius: 7px;
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
  font-weight: 600;
}

.inbox-row > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.inbox-row b {
  overflow: hidden;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inbox-row small {
  color: var(--ink-3);
  font-size: 6.7px;
}

.inbox-row em {
  padding: 2px 5px;
  color: var(--green);
  background: var(--green-wash);
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 6px;
  font-style: normal;
  font-weight: 600;
}

.inbox-row.quiet-row em {
  color: var(--ink-3);
  background: var(--ledger);
}

.receive-route {
  display: flex;
  align-items: center;
}

.receive-route span {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, .2);
}

.receive-route i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #aab2ff;
  background: rgba(86, 100, 224, .24);
  border: 1px solid rgba(157, 167, 255, .3);
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
}

.record-card {
  min-width: 0;
  transform: translateX(8px);
  opacity: 0;
}

.receive-band.is-visible .record-card {
  animation: record-arrive .65s cubic-bezier(.2, .8, .2, 1) .9s forwards;
}

.record-photo {
  height: 88px;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 9px;
}

.record-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 30%;
  filter: saturate(.7) contrast(.95);
}

.record-card > strong {
  display: block;
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.record-card > small {
  display: block;
  margin: 2px 0 11px;
  overflow: hidden;
  color: rgba(255, 255, 255, .46);
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.record-card > div:last-child {
  display: flex;
  gap: 5px;
}

.record-card > div:last-child b {
  padding: 3px 5px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 6.8px;
}

.record-card .fit-chip {
  color: var(--green) !important;
  background: var(--green-wash) !important;
}

.feature-library {
  padding-top: 154px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.feature-card {
  position: relative;
  min-height: 255px;
  padding: 24px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: opacity .75s ease, transform .75s ease, border-color .2s ease, box-shadow .2s ease;
}

.feature-card:hover {
  border-color: #ccd0c8;
  box-shadow: 0 14px 34px rgba(18, 20, 18, .06);
}

.feature-wide {
  grid-column: span 2;
}

.feature-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--cobalt);
  background: var(--cobalt-wash);
  border-radius: 11px;
}

.feature-icon svg {
  width: 19px;
}

.feature-card h3 {
  margin-top: 35px;
  font-size: 19px;
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--ink-2);
  font-size: 11.5px;
  line-height: 1.7;
}

.feature-wide p {
  max-width: 570px;
}

.feature-proof {
  position: absolute;
  right: 23px;
  bottom: 22px;
  left: 23px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-3);
  font-size: 8px;
}

.feature-proof span,
.feature-proof b {
  padding: 6px 8px;
  background: var(--ledger);
  border: 1px solid var(--line-soft);
  border-radius: 7px;
}

.feature-proof b {
  color: var(--cobalt);
  background: var(--cobalt-wash);
  border-color: #dce0ff;
}

.edit-proof {
  position: absolute;
  right: 23px;
  bottom: 21px;
  left: 23px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.edit-proof > span {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  background: var(--ledger);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}

.edit-proof b,
.edit-proof s {
  margin-top: 2px;
  font-family: var(--mono);
  font-size: 9px;
}

.edit-proof s {
  color: var(--coral);
}

.edit-proof > i {
  color: var(--ink-3);
  font-size: 10px;
  font-style: normal;
}

.edit-proof > em {
  padding: 5px 8px;
  color: var(--green);
  background: var(--green-wash);
  border-radius: 7px;
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
}

.security {
  width: 100%;
  padding: 80px max(32px, calc((100vw - 1200px) / 2)) 140px;
}

.security-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  padding: 70px;
  background: #eaebe7;
  border: 1px solid #d9dcd5;
  border-radius: 26px;
}

.security-copy {
  align-self: center;
}

.security-copy h2 {
  font-size: clamp(42px, 4vw, 58px);
}

.security-copy .button {
  margin-top: 27px;
}

.security-list {
  overflow: hidden;
  background: rgba(255, 255, 255, .75);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.security-list article {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: start;
  gap: 14px;
  padding: 25px;
}

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

.security-no {
  padding-top: 3px;
  color: var(--cobalt);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
}

.security-list h3 {
  font-size: 16px;
}

.security-list p {
  margin: 6px 0 0;
  color: var(--ink-2);
  font-size: 10.5px;
  line-height: 1.6;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  color: var(--green);
  background: var(--green-wash);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 600;
  white-space: nowrap;
}

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

.status-pill.neutral {
  color: var(--ink-2);
  background: var(--ledger);
}

.closing {
  position: relative;
  min-height: 620px;
  padding: 106px max(32px, calc((100vw - 1200px) / 2)) 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(116, 129, 255, .37), transparent 34%),
    linear-gradient(145deg, #404fd1 0%, #2936ad 65%, #222e9e 100%);
}

.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-size: 72px 72px;
}

.closing-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
}

.closing h2 {
  max-width: 710px;
  margin-bottom: 0;
  font-size: clamp(58px, 6vw, 82px);
}

.closing-action {
  align-self: end;
  padding-bottom: 9px;
}

.closing-action > p {
  color: rgba(255, 255, 255, .7);
}

.closing-action > div {
  display: flex;
  gap: 9px;
  margin-top: 28px;
}

.button-white {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 6px 20px rgba(10, 14, 60, .2);
}

.button-white:hover {
  background: #f6f7f2;
}

.button-outline-light {
  color: var(--white);
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .3);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .5);
}

.closing-word {
  position: absolute;
  z-index: 1;
  right: -1.5vw;
  bottom: -5.5vw;
  left: -1.5vw;
  color: rgba(255, 255, 255, .08);
  font-family: var(--display);
  font-size: 17.2vw;
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.09em;
  text-align: center;
  white-space: nowrap;
}

.site-footer {
  padding: 65px max(32px, calc((100vw - 1200px) / 2)) 27px;
  background: #0f1110;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr .65fr .65fr;
  gap: 80px;
  padding-bottom: 55px;
}

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

.footer-grid > div > p {
  max-width: 390px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, .45);
  font-size: 11.5px;
  line-height: 1.65;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-grid nav span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .35);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-grid nav a {
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 600;
  transition: color .15s ease;
}

.footer-grid nav a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 21px;
  color: rgba(255, 255, 255, .33);
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .03em;
}

@keyframes headline-in {
  to { transform: translateY(0); }
}

@keyframes simple-reveal {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes product-land {
  from { opacity: 0; transform: translate3d(70px, 30px, 0) rotateY(-7deg) rotateX(3deg) scale(.96); }
  to { opacity: 1; transform: translate3d(0, 0, 0) rotateY(-2deg) rotateX(1deg) scale(1); }
}

@keyframes float-in-left {
  from { opacity: 0; transform: translate(-28px, 12px) rotate(-4deg); }
  to { opacity: 1; transform: translate(0, 0) rotate(-1.5deg); }
}

@keyframes float-in-right {
  from { opacity: 0; transform: translate(30px, 18px) rotate(3deg); }
  to { opacity: 1; transform: translate(0, 0) rotate(1.2deg); }
}

@keyframes float-soft {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

@keyframes pulse-ring {
  0% { opacity: .8; transform: scale(.7); }
  70%, 100% { opacity: 0; transform: scale(1.45); }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes screen-scan {
  0%, 25% { left: -22%; }
  70%, 100% { left: 112%; }
}

@keyframes relay-run {
  0% { left: 0; }
  82%, 100% { left: 100%; }
}

@keyframes tab-fill {
  to { width: 100%; }
}

@keyframes confidence-grow {
  to { transform: scaleX(1); }
}

@keyframes type-question {
  from { width: 0; }
  to { width: 257px; }
}

@keyframes answer-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes inbox-catch {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes record-arrive {
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1160px) {
  :root {
    --shell: min(calc(100% - 48px), 1040px);
  }

  .site-nav {
    gap: 20px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .hero h1,
  .hero-lede {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-assurance {
    justify-content: center;
  }

  .hero-product {
    width: min(880px, 100%);
    height: 580px;
    margin: 0 auto;
  }

  .hero-browser {
    width: calc(100% - 80px);
    left: 40px;
  }

  .extract-float {
    right: 5px;
  }

  .platform-shell {
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 20px;
  }

  .receive-band {
    padding: 55px;
    gap: 35px;
  }

  .receive-visual {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .receive-route {
    height: 30px;
    flex-direction: column;
  }

  .receive-route span {
    width: 1px;
    height: auto;
  }

  .record-card {
    transform: translateY(8px);
  }

  .security-panel {
    gap: 45px;
    padding: 50px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 62px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    z-index: 2;
    display: block;
  }

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 21px;
    padding: 78px 34px;
    background: rgba(248, 249, 246, .98);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    font-family: var(--display);
    font-size: 36px;
    letter-spacing: -.05em;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    padding-top: 116px;
  }

  .hero h1 {
    font-size: clamp(52px, 11vw, 76px);
  }

  .hero-product {
    height: 515px;
  }

  .mail-float {
    left: 0;
  }

  .extract-float {
    right: 0;
  }

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

  .signal-item:nth-child(3) {
    border-left: 0;
  }

  .signal-item:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

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

  .relay-line {
    display: none;
  }

  .relay-card > p {
    min-height: 0;
  }

  .mini-next-move {
    min-height: 148px;
    gap: 9px;
    padding: 13px;
  }

  .next-move-head {
    font-size: 9px;
  }

  .next-move-property {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 10px;
  }

  .next-house {
    width: 38px;
    height: 38px;
  }

  .next-move-property strong {
    font-size: 11px;
  }

  .next-move-property small,
  .next-move-task small {
    font-size: 8.5px;
  }

  .next-move-task {
    padding: 9px 10px;
  }

  .next-move-task b {
    font-size: 9.5px;
  }

  .next-move-task em {
    padding: 5px 8px;
    font-size: 8.5px;
  }

  .split-intro {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .platform-shell {
    grid-template-columns: 1fr;
  }

  .platform-tabs {
    grid-template-columns: repeat(6, minmax(180px, 1fr));
    padding-bottom: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .platform-tabs button {
    scroll-snap-align: start;
  }

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

  .intelligence-card {
    min-height: 0;
  }

  .receive-band {
    grid-template-columns: 1fr;
    padding: 50px;
  }

  .receive-visual {
    grid-template-columns: 1fr 42px .75fr;
  }

  .receive-route {
    height: auto;
    flex-direction: row;
  }

  .receive-route span {
    width: auto;
    height: 1px;
  }

  .record-card {
    transform: translateX(8px);
  }

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

  .security-panel {
    grid-template-columns: 1fr;
  }

  .closing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .closing-action {
    max-width: 600px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .hero {
    padding-top: 104px;
    padding-bottom: 38px;
  }

  .hero::before {
    background-size: 44px 44px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(42px, 10.8vw, 56px);
    line-height: .97;
    letter-spacing: -.052em;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-product {
    height: 425px;
    margin-top: 15px;
  }

  .hero-browser {
    top: 88px;
    left: 0;
    width: 100%;
    border-radius: 11px;
  }

  .browser-bar {
    height: 30px;
  }

  .browser-address {
    min-width: 0;
    max-width: 160px;
  }

  .mail-float {
    top: 10px;
    width: 255px;
    padding: 11px;
  }

  .mail-float > p {
    margin: 8px 0 6px;
    font-size: 9px;
  }

  .attachment-chip {
    padding: 5px 7px;
    font-size: 7px;
  }

  .extract-float {
    bottom: 0;
    width: 265px;
    padding: 11px;
  }

  .extract-fields {
    margin: 8px 0;
  }

  .extract-fields span {
    padding: 6px 7px;
  }

  .hero-orbit {
    display: none;
  }

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

  .signal-item {
    min-height: 96px;
  }

  .signal-item + .signal-item,
  .signal-item:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 95px 0;
  }

  .section-intro {
    margin-bottom: 38px;
  }

  .section-intro h2,
  .receive-copy h2,
  .security-copy h2 {
    font-size: 39px;
  }

  .section-intro p,
  .receive-copy p,
  .security-copy > p,
  .closing-action > p {
    font-size: 13px;
  }

  .relay-card {
    padding: 19px;
  }

  .platform {
    padding: 90px 14px;
  }

  .platform-tabs {
    margin-right: -14px;
    grid-template-columns: repeat(6, 225px);
  }

  .platform-browser {
    border-radius: 11px;
  }

  .platform-browser .browser-bar {
    height: 34px;
  }

  .screen-caption {
    display: block;
  }

  .screen-caption a {
    display: inline-block;
    margin-top: 9px;
  }

  .intelligence-card {
    padding: 24px;
    border-radius: 19px;
  }

  .intelligence-card h3 {
    font-size: 31px;
  }

  .learn-rule {
    grid-template-columns: minmax(0, 1fr) 30px;
  }

  .confidence {
    display: none;
  }

  .receive-band {
    width: calc(100vw - 20px);
    padding: 39px 20px;
    border-radius: 22px;
  }

  .receive-visual {
    grid-template-columns: 1fr;
  }

  .receive-route {
    height: 31px;
    flex-direction: column;
  }

  .receive-route span {
    width: 1px;
    height: auto;
  }

  .record-card {
    transform: translateY(8px);
  }

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

  .feature-wide {
    grid-column: span 1;
  }

  .feature-card {
    min-height: 245px;
  }

  .feature-proof,
  .edit-proof {
    position: static;
    margin-top: 25px;
  }

  .edit-proof {
    grid-template-columns: 1fr auto 1fr;
  }

  .edit-proof > em {
    display: none;
  }

  .security {
    padding: 20px 10px 95px;
  }

  .security-panel {
    gap: 36px;
    padding: 35px 20px;
    border-radius: 20px;
  }

  .security-list article {
    grid-template-columns: 25px 1fr;
    padding: 19px 15px;
  }

  .status-pill {
    grid-column: 2;
    justify-self: start;
  }

  .closing {
    min-height: 630px;
    padding: 80px 20px 0;
  }

  .closing h2 {
    font-size: 52px;
  }

  .closing-action > div {
    flex-direction: column;
  }

  .closing-word {
    bottom: -2vw;
    font-size: 20vw;
  }

  .site-footer {
    padding: 55px 20px 25px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-grid > div {
    grid-column: 1 / -1;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .ask-question span {
    width: auto;
  }

  .ask-answer,
  .ask-sources,
  .record-card,
  .inbox-row {
    opacity: 1;
    transform: none;
  }
}
