@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/space-grotesk-latin-wght-400-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/fraunces-latin-opsz-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #102f39;
  --ink-soft: #31515a;
  --paper: #f7fbfa;
  --paper-warm: #fffdf8;
  --sky: #cceff2;
  --sky-soft: #e8f7f7;
  --mint: #83e1c9;
  --mint-bright: #a7f0d9;
  --mint-dark: #2b846f;
  --line: rgba(16, 47, 57, 0.14);
  --dark: #09262e;
  --dark-2: #0d323b;
  --dark-line: rgba(204, 239, 242, 0.16);
  --cream: #fff8e8;
  --danger: #ff8f7f;
  --warning: #ffd27c;
  --demo-muted: #b8cbc7;
  --demo-copy: #ceddda;
  --shadow-sm: 0 12px 30px rgba(16, 47, 57, 0.08);
  --shadow-lg: 0 34px 90px rgba(16, 47, 57, 0.15);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --page: min(1180px, calc(100vw - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

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

button {
  color: inherit;
}

strong,
b {
  font-weight: 650;
}

::selection {
  color: var(--ink);
  background: var(--mint);
}

:focus-visible {
  outline: 3px solid #39b99d;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.ambient {
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 900px;
  overflow: hidden;
  pointer-events: none;
}

.ambient i {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(3px);
  opacity: 0.58;
  animation: ambient-drift 14s var(--ease) infinite alternate;
}

.ambient i:nth-child(1) {
  width: 520px;
  height: 520px;
  top: -260px;
  right: -120px;
  background: rgba(131, 225, 201, 0.38);
}

.ambient i:nth-child(2) {
  width: 420px;
  height: 420px;
  top: 220px;
  left: -250px;
  background: rgba(170, 228, 239, 0.35);
  animation-delay: -5s;
}

.ambient i:nth-child(3) {
  width: 220px;
  height: 220px;
  top: 440px;
  right: 34%;
  background: rgba(255, 236, 176, 0.24);
  animation-delay: -9s;
}

@keyframes ambient-drift {
  to { transform: translate3d(30px, 45px, 0) scale(1.08); }
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(247, 251, 250, 0.82);
  backdrop-filter: blur(18px);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-nav.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(16, 47, 57, 0.05);
}

.site-nav.is-dark {
  color: #edf7f5;
  border-color: rgba(204, 239, 242, 0.18);
  background: rgba(7, 30, 37, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(24px);
}

.site-nav.is-dark .wordmark span::after { background: var(--mint); }
.site-nav.is-dark .nav-links a { opacity: 0.8; }
.site-nav.is-dark .nav-cta {
  color: var(--ink);
  background: var(--mint-bright);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.nav-inner {
  width: var(--page);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  position: relative;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.wordmark span {
  position: relative;
}

.wordmark span::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: -1px;
  left: 50%;
  border-radius: 999px;
  background: var(--mint-dark);
  transform: translateX(-50%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  opacity: 0.72;
  transition: opacity 160ms ease;
}

.nav-links a:hover {
  opacity: 1;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, background 180ms ease;
}

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

.button-ink {
  color: white;
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(16, 47, 57, 0.18);
}

.button-white {
  color: var(--ink);
  background: white;
  box-shadow: 0 14px 34px rgba(16, 47, 57, 0.14);
}

.button-ghost {
  color: var(--ink);
  border-color: rgba(16, 47, 57, 0.25);
  background: rgba(255, 255, 255, 0.25);
}

.nav-cta {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 14px;
}

.hero {
  width: var(--page);
  min-height: 710px;
  margin: 0 auto;
  padding: 64px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  align-items: center;
  gap: 64px;
}

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

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #276b60;
}

.eyebrow-dark {
  color: var(--mint-bright);
}

.pulse,
.shine-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 0 rgba(43, 132, 111, 0.36);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  60%, 100% { box-shadow: 0 0 0 10px rgba(43, 132, 111, 0); }
}

.hero h1,
.section-heading h2,
.demo-intro h2,
.logic-copy h2,
.privacy-card h2,
.beta-copy h2,
.faq-section h2 {
  margin: 0;
  font-size: clamp(42px, 5.1vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.058em;
}

.hero h1 em {
  display: block;
  color: var(--mint-dark);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.hero-lead strong {
  color: var(--ink);
}

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

.trust-list {
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  list-style: none;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 550;
}

.trust-list li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--mint-dark);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(16, 47, 57, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.38)),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.9) 0 9%, transparent 28%),
    linear-gradient(145deg, #b9e9ee 0%, #d9f5ec 48%, #eef8d7 100%);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.32;
  background-image: radial-gradient(rgba(16, 47, 57, 0.25) 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-lines path {
  fill: none;
  stroke: rgba(16, 47, 57, 0.3);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-dasharray: 7 8;
  animation: line-flow 7s linear infinite;
}

@keyframes line-flow {
  to { stroke-dashoffset: -90; }
}

.hero-source,
.hero-result {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(16, 47, 57, 0.13);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 46px rgba(16, 47, 57, 0.11);
  backdrop-filter: blur(14px);
}

.hero-source {
  width: 174px;
  min-height: 94px;
  padding: 15px 16px;
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-source span,
.result-overline {
  color: var(--mint-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-source b {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.25;
}

.hero-source small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 11px;
}

.source-a { top: 56px; left: 30px; transform: rotate(-1.5deg); }
.source-b { top: 56px; right: 30px; transform: rotate(1.5deg); }
.source-c { bottom: 56px; left: 30px; transform: rotate(1.2deg); }
.source-d { right: 30px; bottom: 56px; transform: rotate(-1.2deg); }

.hero-result {
  width: 202px;
  min-height: 176px;
  top: 50%;
  left: 50%;
  padding: 22px;
  border-radius: 26px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.hero-result::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border: 1px solid rgba(16, 47, 57, 0.14);
  border-radius: 31px;
}

.hero-result strong {
  margin-top: 8px;
  display: block;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.hero-result p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 14px;
}

.status-pill {
  padding: 7px 10px;
  border-radius: 999px;
  display: inline-flex;
  color: #135f50;
  background: rgba(131, 225, 201, 0.38);
  font-size: 11px;
  font-weight: 700;
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.55);
}

.orbit-a {
  top: 34%;
  left: 29%;
  animation: orbit-float 4.6s var(--ease) infinite alternate;
}

.orbit-b {
  right: 27%;
  bottom: 31%;
  animation: orbit-float 4.6s var(--ease) -2.3s infinite alternate;
}

@keyframes orbit-float {
  to { transform: translate3d(18px, -14px, 0); }
}

.state-strip {
  width: var(--page);
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.state-strip div {
  min-height: 48px;
  padding: 2px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.state-strip div:first-child { padding-left: 0; }
.state-strip div:last-child { padding-right: 0; border-right: 0; }
.state-strip strong { font-size: 14px; }
.state-strip span { color: var(--ink-soft); font-size: 12px; }

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

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-heading h2,
.privacy-card h2,
.beta-copy h2,
.faq-section h2 {
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.04;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

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

.step-card {
  position: relative;
  min-height: 318px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.step-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -82px;
  bottom: -82px;
  border-radius: 999px;
  background: var(--sky-soft);
}

.step-number {
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.step-card h3 {
  margin: 76px 0 13px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.step-tag {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: white;
  font-size: 10px;
  font-weight: 650;
}

.demo-section {
  scroll-margin-top: 76px;
  padding: 126px max(24px, calc((100vw - 1260px) / 2));
  color: #e9f5f2;
  background:
    radial-gradient(circle at 15% 0%, rgba(82, 174, 166, 0.18), transparent 34%),
    radial-gradient(circle at 87% 10%, rgba(112, 199, 218, 0.14), transparent 30%),
    var(--dark);
}

.demo-intro {
  max-width: 1180px;
  margin: 0 auto 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.62fr);
  align-items: end;
  gap: 64px;
}

.demo-intro h2,
.logic-copy h2 {
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.02;
}

.demo-intro > p {
  margin: 0;
  color: var(--demo-copy);
  font-size: 15px;
}

.demo-console {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(204, 239, 242, 0.16);
  border-radius: 28px;
  color: #eaf5f3;
  background: rgba(5, 28, 35, 0.74);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.demo-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(rgba(204, 239, 242, 0.16) 0.7px, transparent 0.7px);
  background-size: 19px 19px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

.demo-bar,
.demo-stepper,
.demo-layout,
.demo-progress {
  position: relative;
  z-index: 2;
}

.demo-bar {
  min-height: 78px;
  padding: 14px 20px 14px 24px;
  border-bottom: 1px solid var(--dark-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.demo-titleline,
.source-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background:
    linear-gradient(var(--dark), var(--dark)) padding-box,
    linear-gradient(135deg, var(--mint), #77bfdf) border-box;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 7px rgba(131, 225, 201, 0.1);
}

.demo-titleline strong,
.demo-titleline small {
  display: block;
}

.demo-titleline strong { font-size: 14px; }
.demo-titleline small { color: var(--demo-muted); font-size: 11px; }

.demo-controls {
  display: flex;
  align-items: center;
  gap: 7px;
}

.icon-button,
.play-button {
  min-height: 40px;
  border: 1px solid var(--dark-line);
  border-radius: 11px;
  color: #eaf5f3;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.icon-button:hover,
.play-button:hover {
  border-color: rgba(131, 225, 201, 0.44);
  background: rgba(131, 225, 201, 0.08);
  transform: translateY(-1px);
}

.play-button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
}

.icon-button { width: 40px; padding: 0; font-size: 18px; }
.play-button { padding: 0 14px; display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 650; }

.demo-stepper {
  padding: 0 16px;
  border-bottom: 1px solid var(--dark-line);
  display: grid;
  grid-template-columns: repeat(7, minmax(92px, 1fr));
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(131, 225, 201, 0.48) transparent;
}

.demo-stepper::-webkit-scrollbar { height: 4px; }
.demo-stepper::-webkit-scrollbar-track { background: transparent; }
.demo-stepper::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(131, 225, 201, 0.48);
}

.demo-stepper button {
  position: relative;
  min-height: 60px;
  padding: 0 12px;
  border: 0;
  color: var(--demo-muted);
  background: transparent;
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.demo-stepper button:hover {
  color: white;
  background: rgba(131, 225, 201, 0.1);
}

.demo-stepper button span {
  margin-right: 5px;
  font-size: 9px;
  opacity: 1;
}

.demo-stepper button::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -1px;
  left: 10px;
  height: 2px;
  border-radius: 3px;
  background: var(--mint);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 240ms var(--ease);
}

.demo-stepper button[aria-selected="true"] {
  color: white;
  background: rgba(131, 225, 201, 0.16);
}

.demo-stepper button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.demo-console.is-playing .demo-stepper button[aria-selected="true"]::after {
  animation: scene-progress 4600ms linear forwards;
}

@keyframes scene-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(600px, 1.64fr) minmax(310px, 0.74fr);
  min-height: 510px;
}

.demo-map {
  position: relative;
  min-height: 500px;
  border-right: 1px solid var(--dark-line);
  overflow: hidden;
}

.demo-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.demo-connectors path {
  fill: none;
  stroke: rgba(204, 239, 242, 0.12);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 4 8;
  vector-effect: non-scaling-stroke;
  transition: stroke 360ms ease, stroke-width 360ms ease, filter 360ms ease;
}

.demo-connectors path.is-complete {
  stroke: rgba(131, 225, 201, 0.42);
}

.demo-connectors path.is-active {
  stroke: var(--mint);
  stroke-width: 2;
  filter: drop-shadow(0 0 5px rgba(131, 225, 201, 0.65));
  animation: line-flow 4s linear infinite;
}

.source-node,
.job-node {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--dark-line);
  border-radius: 16px;
  background: rgba(13, 50, 59, 0.82);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  transition: none;
}

.demo-console.is-mounted .source-node,
.demo-console.is-mounted .job-node {
  transition: border-color 320ms ease, transform 420ms var(--ease), box-shadow 320ms ease, background 320ms ease;
}

.source-node {
  width: 194px;
  min-height: 106px;
  padding: 14px;
  opacity: 1;
  transform: scale(1);
}

.source-node.is-complete,
.source-node.is-active {
  opacity: 1;
  transform: scale(1);
}

.source-node.is-complete {
  border-color: rgba(131, 225, 201, 0.28);
}

.source-node.is-active {
  border-color: rgba(131, 225, 201, 0.78);
  background: rgba(19, 65, 72, 0.98);
  box-shadow: 0 0 0 3px rgba(131, 225, 201, 0.08), 0 22px 44px rgba(0, 0, 0, 0.24);
  transform: scale(1.025);
}

.node-tgss { top: 46px; left: 24px; }
.node-gmail { top: 46px; right: 24px; }
.node-bank { bottom: 46px; left: 24px; }
.node-tax { right: 24px; bottom: 46px; }

.source-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid rgba(131, 225, 201, 0.35);
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--mint-bright);
  background: rgba(131, 225, 201, 0.08);
  font-size: 11px;
  font-weight: 750;
}

.source-head b,
.source-head small { display: block; }
.source-head b { font-size: 12px; }
.source-head small { color: var(--demo-muted); font-size: 9px; }
.source-node.is-active .source-head small { color: var(--mint-bright); }
.source-node p { margin: 11px 0 1px; color: var(--demo-copy); font-size: 10px; }
.source-node > strong { display: block; overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }

.job-node {
  width: 224px;
  min-height: 188px;
  top: 50%;
  left: 50%;
  padding: 19px;
  border-color: rgba(131, 225, 201, 0.35);
  background: rgba(7, 36, 43, 0.97);
  transform: translate(-50%, -50%);
}

.job-node::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border: 1px solid rgba(131, 225, 201, 0.12);
  border-radius: 22px;
}

.job-kicker {
  color: var(--mint-bright);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.job-node h3 {
  margin: 5px 0 12px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.job-metrics {
  padding-top: 10px;
  border-top: 1px solid var(--dark-line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.job-metrics small,
.job-metrics strong { display: block; }
.job-metrics small { color: var(--demo-muted); font-size: 8px; }
.job-metrics strong { margin-top: 2px; font-size: 11px; }

.job-status {
  margin-top: 13px;
  padding: 6px 8px;
  border-radius: 7px;
  display: block;
  color: var(--warning);
  background: rgba(255, 210, 124, 0.09);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}

.demo-console[data-state="cuadre"] .job-status,
.demo-console[data-state="confirmed"] .job-status {
  color: var(--mint-bright);
  background: rgba(131, 225, 201, 0.1);
}

.demo-console[data-state="ambiguous"] .job-status {
  color: var(--danger);
  background: rgba(255, 143, 127, 0.1);
}

.demo-toast {
  position: absolute;
  z-index: 8;
  top: 50%;
  left: 50%;
  min-width: 280px;
  padding: 14px;
  border: 1px solid rgba(131, 225, 201, 0.48);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  opacity: 0;
  pointer-events: none;
  background: rgba(13, 58, 62, 0.98);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.38);
  transform: translate(-50%, -35%) scale(0.92);
  transition: opacity 260ms ease, transform 420ms var(--ease);
}

.demo-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.demo-toast > span {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  font-weight: 800;
}

.demo-toast p,
.demo-toast strong { display: block; }
.demo-toast p { margin: 0; color: var(--demo-copy); font-size: 9px; }
.demo-toast strong { color: white; font-size: 11px; }

.demo-inspector {
  min-width: 0;
  padding: 29px 28px 24px;
  background: rgba(8, 35, 42, 0.46);
}

.scene-count {
  margin-bottom: 34px;
  display: flex;
  justify-content: space-between;
  color: var(--demo-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.inspector-kicker {
  margin: 0 0 7px;
  color: var(--mint-bright);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.demo-inspector h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.demo-inspector > p:not(.inspector-kicker) {
  margin: 14px 0 0;
  color: var(--demo-copy);
  font-size: 12px;
  line-height: 1.6;
}

.evidence-box {
  margin-top: 22px;
  padding: 12px;
  border: 1px solid var(--dark-line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
}

.evidence-box span {
  display: block;
  color: var(--demo-muted);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-box code {
  margin-top: 4px;
  display: block;
  overflow: hidden;
  color: var(--mint-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.confidence {
  margin-top: 20px;
}

.confidence > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--demo-muted);
  font-size: 8px;
}

.confidence b { color: var(--demo-copy); font-weight: 600; }

.confidence-track {
  height: 4px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.confidence-track i {
  width: 18%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #66bfc0, var(--mint));
  transition: width 620ms var(--ease), background 260ms ease;
}

.demo-console[data-state="ambiguous"] .confidence-track i {
  background: linear-gradient(90deg, #d06e68, var(--danger));
}

.reason-list {
  min-height: 62px;
  padding: 0;
  margin: 17px 0 0;
  display: grid;
  gap: 7px;
  list-style: none;
}

.reason-list li {
  position: relative;
  padding-left: 16px;
  color: var(--demo-copy);
  font-size: 9px;
}

.reason-list li::before {
  content: "";
  position: absolute;
  top: 0.52em;
  left: 1px;
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: var(--mint);
}

.demo-console[data-state="ambiguous"] .reason-list li::before {
  background: var(--danger);
}

.branch-button {
  width: 100%;
  min-height: 38px;
  margin-top: 16px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 650;
  cursor: pointer;
}

.branch-button {
  border: 1px solid var(--dark-line);
  color: var(--demo-copy);
  background: transparent;
}

.branch-button:hover { border-color: rgba(255, 210, 124, 0.45); }

.demo-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.04);
}

.demo-progress i {
  width: 0;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, #71c8d6, var(--mint));
  transition: width 420ms var(--ease);
}

.demo-static {
  max-width: 1260px;
  margin: 18px auto 0;
  padding: 18px;
  border: 1px solid var(--dark-line);
  border-radius: 14px;
  color: var(--demo-copy);
}

.sources-section {
  padding-bottom: 96px;
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.source-explainer {
  min-height: 290px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.source-explainer:last-child { border-right: 0; }
.source-explainer > span { color: var(--mint-dark); font-size: 11px; font-weight: 750; }
.source-explainer h3 { margin: 62px 0 12px; font-size: 23px; letter-spacing: -0.04em; }
.source-explainer p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.source-explainer p strong { color: var(--ink); }
.source-explainer small { margin-top: auto; padding-top: 24px; color: var(--mint-dark); font-size: 10px; font-weight: 650; }

.logic-section {
  padding: 120px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: 110px;
  color: #e9f5f2;
  background: var(--ink);
}

.logic-copy > p:last-child {
  max-width: 500px;
  margin: 24px 0 0;
  color: var(--demo-copy);
}

.signal-stack {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: signals;
}

.signal-stack li {
  padding: 19px 0;
  border-bottom: 1px solid var(--dark-line);
  display: grid;
  grid-template-columns: 82px 1fr 1.2fr;
  align-items: center;
  gap: 18px;
}

.signal-stack li:first-child { border-top: 1px solid var(--dark-line); }
.signal-stack span { color: var(--mint-bright); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; }
.signal-stack strong { font-size: 17px; }
.signal-stack small { color: var(--demo-muted); }

.privacy-section {
  padding-bottom: 88px;
}

.privacy-card {
  position: relative;
  overflow: hidden;
  padding: 70px;
  border: 1px solid rgba(16, 47, 57, 0.1);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
  gap: 78px;
  background: linear-gradient(145deg, #d9f4f2, #e8f8e7);
  box-shadow: var(--shadow-sm);
}

.privacy-card::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  top: -250px;
  right: 4%;
  border: 1px solid rgba(16, 47, 57, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.12), 0 0 0 84px rgba(255, 255, 255, 0.08);
}

.privacy-card > div > p:last-child {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.privacy-list {
  position: relative;
  z-index: 2;
  padding: 0;
  margin: 0;
  list-style: none;
}

.privacy-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(16, 47, 57, 0.12);
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.privacy-list li:first-child { border-top: 1px solid rgba(16, 47, 57, 0.12); }
.privacy-list li > span { color: var(--mint-dark); font-size: 10px; font-weight: 750; }
.privacy-list strong { display: block; font-size: 14px; }
.privacy-list p { margin: 4px 0 0; color: var(--ink-soft); font-size: 12px; }

.beta-section {
  padding: 120px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: 100px;
  color: white;
  background:
    radial-gradient(circle at 10% 15%, rgba(131, 225, 201, 0.22), transparent 34%),
    linear-gradient(135deg, #174a53, #0b2d36 72%);
}

.beta-copy h2 { max-width: 730px; }
.beta-section .eyebrow-light { color: var(--mint-bright); }
.beta-copy > p:not(.eyebrow) { max-width: 680px; margin: 24px 0 0; color: var(--demo-copy); }
.beta-copy ul { padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.beta-copy li { padding: 7px 10px; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 999px; color: var(--demo-copy); font-size: 10px; }

.waitlist-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 25px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.waitlist-label {
  color: var(--mint-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.waitlist-card h3 { margin: 15px 0 8px; font-size: 27px; letter-spacing: -0.04em; }
.waitlist-card > p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.waitlist-closed {
  margin-top: 24px;
  padding: 15px;
  border: 1px solid rgba(16, 47, 57, 0.14);
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-soft);
  background: rgba(204, 239, 242, 0.42);
}
.waitlist-closed > span {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  border: 1px solid rgba(16, 47, 57, 0.22);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--mint-dark);
}
.waitlist-closed strong,
.waitlist-closed small { display: block; }
.waitlist-closed strong { color: var(--ink); font-size: 11px; }
.waitlist-closed small { margin-top: 2px; font-size: 9px; line-height: 1.45; }
.waitlist-card > .beta-contact { margin-top: 16px; font-size: 10px; }
.faq-section {
  padding-bottom: 150px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  border-top: 1px solid var(--line);
}

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

.faq-grid summary {
  position: relative;
  padding: 25px 42px 25px 0;
  list-style: none;
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
}

.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after { content: "+"; position: absolute; right: 4px; top: 22px; color: var(--mint-dark); font-size: 22px; font-weight: 400; transition: transform 180ms ease; }
.faq-grid details[open] summary::after { transform: rotate(45deg); }
.faq-grid details p { margin: -9px 42px 24px 0; color: var(--ink-soft); font-size: 13px; }

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #071e25;
}

.footer-main,
.footer-bottom {
  width: var(--page);
  margin: 0 auto;
}

.footer-main {
  padding: 68px 0 52px;
  display: grid;
  grid-template-columns: 1fr 170px 170px;
  gap: 48px;
}

.wordmark-footer { color: white; font-size: 30px; }
.footer-main > div:first-child p { max-width: 380px; margin: 18px 0 0; color: rgba(255, 255, 255, 0.46); font-size: 13px; }
.footer-main > div:not(:first-child) { display: flex; flex-direction: column; gap: 10px; font-size: 12px; }
.footer-main > div:not(:first-child) strong { margin-bottom: 5px; color: white; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-main a:not(.wordmark):hover { color: white; }
.footer-bottom { padding: 19px 0 28px; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; justify-content: space-between; gap: 20px; color: rgba(255, 255, 255, 0.4); font-size: 10px; }

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 760ms var(--ease);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.motion-ready .steps-grid .reveal:nth-child(2),
.motion-ready .source-grid .reveal:nth-child(2) { transition-delay: 80ms; }
.motion-ready .steps-grid .reveal:nth-child(3),
.motion-ready .source-grid .reveal:nth-child(3) { transition-delay: 160ms; }
.motion-ready .source-grid .reveal:nth-child(4) { transition-delay: 240ms; }

@media (max-width: 1120px) {
  .hero { grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr); gap: 38px; }
  .hero-source { width: 158px; }
  .demo-layout { grid-template-columns: minmax(560px, 1.55fr) minmax(290px, 0.72fr); }
  .source-node { width: 176px; }
  .logic-section { gap: 64px; }
  .privacy-card { padding: 56px; gap: 54px; }
}

@media (max-width: 960px) {
  :root { --page: min(100% - 36px, 760px); }
  .nav-links { display: none; }
  .hero { min-height: auto; padding-top: 48px; grid-template-columns: 1fr; gap: 52px; }
  .hero-copy { max-width: 700px; }
  .hero-visual { min-height: 560px; }
  .state-strip { grid-template-columns: 1fr; padding-block: 8px; }
  .state-strip div { min-height: 70px; padding: 13px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .state-strip div:last-child { border-bottom: 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 250px; }
  .step-card h3 { margin-top: 50px; }
  .demo-section { padding-inline: 18px; }
  .demo-intro { grid-template-columns: 1fr; gap: 24px; }
  .demo-intro > p { max-width: 600px; }
  .demo-layout { grid-template-columns: 1fr; }
  .demo-map { border-right: 0; border-bottom: 1px solid var(--dark-line); }
  .demo-inspector { min-height: 430px; }
  .source-grid { grid-template-columns: 1fr 1fr; }
  .source-explainer { border-bottom: 1px solid var(--line); }
  .source-explainer:nth-child(2) { border-right: 0; }
  .source-explainer:nth-child(3),
  .source-explainer:nth-child(4) { border-bottom: 0; }
  .logic-section { grid-template-columns: 1fr; gap: 50px; }
  .privacy-card { grid-template-columns: 1fr; }
  .beta-section { grid-template-columns: 1fr; gap: 54px; }
}

@media (max-width: 680px) {
  :root { --page: calc(100vw - 28px); }
  .nav-inner { min-height: 66px; }
  .nav-cta { min-height: 38px; padding-inline: 14px; }
  .hero { padding: 42px 0 64px; }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; gap: 8px; }
  .hero-visual { min-height: 590px; border-radius: 27px; }
  .hero-lines { display: none; }
  .hero-source { width: calc(50% - 24px); min-height: 84px; padding: 12px; }
  .source-a { top: 20px; left: 16px; }
  .source-b { top: 20px; right: 16px; }
  .source-c { bottom: 20px; left: 16px; }
  .source-d { right: 16px; bottom: 20px; }
  .hero-result { width: 190px; }
  .section { padding: 96px 0; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2,
  .privacy-card h2,
  .beta-copy h2,
  .faq-section h2 { font-size: 38px; }
  .section-heading > p:last-child { font-size: 16px; }
  .demo-section { padding: 92px 12px; }
  .demo-intro { margin-bottom: 34px; }
  .demo-intro h2 { font-size: 38px; }
  .demo-console { border-radius: 20px; }
  .demo-bar { align-items: flex-start; flex-direction: column; }
  .demo-controls { width: 100%; }
  .play-button { flex: 1; justify-content: center; }
  .demo-stepper { padding-inline: 6px; grid-template-columns: repeat(7, minmax(86px, 1fr)); }
  .demo-map { min-height: 720px; padding: 18px; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto 1fr; gap: 12px; }
  .demo-connectors { display: none; }
  .source-node,
  .job-node { position: relative; inset: auto; width: auto; min-height: 118px; }
  .source-node { padding: 13px; }
  .job-node { grid-column: 1 / -1; grid-row: 2; width: 100%; min-height: 174px; padding: 18px; transform: none; }
  .node-tgss { grid-column: 1; grid-row: 1; }
  .node-gmail { grid-column: 2; grid-row: 1; }
  .node-bank { grid-column: 1; grid-row: 3; align-self: end; }
  .node-tax { grid-column: 2; grid-row: 3; align-self: end; }
  .demo-toast { min-width: calc(100% - 36px); }
  .demo-inspector { min-height: auto; padding: 26px 20px 24px; }
  .source-grid { grid-template-columns: 1fr; }
  .source-explainer { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .source-explainer:last-child { border-bottom: 0 !important; }
  .source-explainer h3 { margin-top: 38px; }
  .logic-section { padding-block: 90px; }
  .logic-copy h2 { font-size: 39px; }
  .signal-stack li { grid-template-columns: 68px 1fr; gap: 7px 14px; }
  .signal-stack small { grid-column: 2; }
  .privacy-section { padding-bottom: 64px; }
  .privacy-card { padding: 34px 24px; border-radius: 26px; gap: 42px; }
  .beta-section { padding-block: 90px; }
  .waitlist-card { padding: 26px 20px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-section { padding-bottom: 100px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 420px) {
  .wordmark { font-size: 24px; }
  .nav-cta { font-size: 12px; }
  .hero-source { width: calc(50% - 21px); }
  .hero-source b { font-size: 11px; }
  .hero-source small { font-size: 9px; }
  .demo-map { grid-template-columns: 1fr; grid-template-rows: auto; min-height: auto; }
  .source-node,
  .job-node,
  .node-tgss,
  .node-gmail,
  .node-bank,
  .node-tax { grid-column: 1; grid-row: auto; align-self: stretch; }
  .job-node { grid-row: 3; }
  .node-bank { grid-row: 4; }
  .node-tax { grid-row: 5; }
  .demo-toast { position: fixed; top: auto; right: 18px; bottom: 18px; left: 18px; min-width: 0; transform: translateY(20px); }
  .demo-toast.is-visible { transform: translateY(0); }
}

@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;
  }
  .motion-ready .reveal { opacity: 1; transform: none; }
}
