:root {
  color-scheme: light;
  --ink: #1f2b3a;
  --ink-2: #2b394a;
  --paper: #eef3f7;
  --paper-2: #f8fafc;
  --white: #ffffff;
  --blue: #2e59e8;
  --blue-soft: #dfe7ff;
  --apricot: #ff9c68;
  --mint: #168b70;
  --line: #c6d1dc;
  --muted: #657382;
  --shadow: 0 24px 65px rgba(35, 49, 66, 0.14);
  --display: "Bahnschrift SemiCondensed", "Avenir Next Condensed", "Arial Narrow", sans-serif;
  --body: "Segoe UI Variable", "Avenir Next", "Segoe UI", sans-serif;
  --mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(70, 91, 116, 0.045) calc(100% - 1px)) 0 0 / 72px 72px,
    var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(154, 169, 184, 0.65);
  background: rgba(238, 243, 247, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: white;
  background: var(--apricot);
  box-shadow: 5px 5px 0 var(--ink);
  font: 800 19px/1 var(--mono);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font: 750 18px/1 var(--display);
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.main-nav a {
  color: #536273;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.language-switch a {
  padding: 7px 9px;
  color: var(--muted);
  font: 750 10px/1 var(--mono);
  text-decoration: none;
}

.language-switch a[aria-current="page"] {
  color: white;
  background: var(--ink-2);
}

.small-link {
  padding: 10px 13px;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 750;
  text-decoration: none;
}

.small-link:hover {
  color: white;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 68px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 30px;
  right: -190px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(46, 89, 232, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(46, 89, 232, 0.035), 0 0 0 110px rgba(46, 89, 232, 0.025);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 74px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--blue);
  font: 800 11px/1.2 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--apricot);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font: 680 clamp(54px, 6.2vw, 86px)/0.88 var(--display);
  letter-spacing: -0.035em;
}

.hero h1 span {
  display: block;
  color: var(--blue);
}

.hero-lede {
  max-width: 650px;
  margin: 29px 0 0;
  color: #566575;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 19px;
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  color: white;
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 6px 6px 0 var(--ink);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.62);
}

.button-dark {
  color: var(--ink);
  border-color: var(--apricot);
  background: var(--apricot);
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.22);
}

.plain-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.plain-facts li {
  padding: 7px 9px;
  border: 1px solid #bdc9d5;
  color: #647282;
  background: rgba(255, 255, 255, 0.48);
  font: 650 10px/1 var(--mono);
}

.route-console {
  position: relative;
  padding: 18px;
  border: 1px solid #91a3b5;
  background: #253243;
  box-shadow: 16px 18px 0 rgba(46, 89, 232, 0.13), var(--shadow);
  animation: console-in 700ms cubic-bezier(.2,.8,.2,1) both;
}

.console-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  color: #9babbc;
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.console-lights {
  display: flex;
  gap: 5px;
}

.console-lights i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #607085;
}

.console-lights i:first-child {
  background: var(--apricot);
}

.route-map {
  position: relative;
  min-height: 416px;
  padding: 29px 23px 24px;
  border: 1px solid #445468;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #1e2937;
  background-size: 28px 28px;
}

.project-node {
  position: relative;
  z-index: 2;
  width: min(100%, 330px);
  margin: 0 auto;
  padding: 18px 19px;
  border: 1px solid #9aabba;
  color: var(--ink);
  background: #f7fafc;
  box-shadow: 7px 7px 0 rgba(255, 156, 104, 0.85);
}

.project-node small,
.agent-node small {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font: 750 8px/1 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-node strong {
  font: 650 15px/1.35 var(--mono);
}

.route-rail {
  position: relative;
  width: calc(66.666% + 2px);
  height: 88px;
  margin: 0 auto;
  border-bottom: 1px solid #8292a5;
}

.route-rail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #8292a5;
}

.route-rail::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border: 1px solid #9badbf;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: -130px 0 0 -1px #1e2937, -130px 0 0 0 #9badbf, 130px 0 0 -1px #1e2937, 130px 0 0 0 #9badbf;
}

.agent-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 15px;
}

.agent-node {
  min-width: 0;
  padding: 15px 12px;
  border-top: 3px solid var(--agent-color);
  color: white;
  background: #2c3a4c;
}

.agent-node:nth-child(1) { --agent-color: #4d74f0; }
.agent-node:nth-child(2) { --agent-color: #d2764a; }
.agent-node:nth-child(3) { --agent-color: #25a184; }

.agent-node small {
  color: #9babbc;
}

.agent-node strong {
  display: block;
  overflow: hidden;
  font: 720 13px/1.2 var(--display);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agent-node span {
  display: block;
  margin-top: 9px;
  color: #c5d0db;
  font: 600 8px/1 var(--mono);
}

.console-note {
  margin: 18px 0 0;
  color: #aebbc9;
  font: 550 10px/1.55 var(--mono);
}

.console-note b {
  color: #62d4b5;
}

.product-proof {
  padding: 20px 0 105px;
}

.proof-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  color: var(--muted);
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.proof-label::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.app-window {
  overflow: hidden;
  border: 1px solid #9baaba;
  background: #263445;
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  padding: 0 15px;
  color: #b8c4d0;
  font: 650 9px/1 var(--mono);
}

.window-bar span:first-child {
  display: flex;
  gap: 5px;
}

.window-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #738196;
}

.window-bar i:first-child {
  background: var(--apricot);
}

.app-window img {
  width: 100%;
  height: auto;
}

.image-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.image-caption b {
  color: var(--ink);
}

.section {
  padding: 108px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(330px, 0.45fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2,
.story h2,
.closing h2 {
  margin: 0;
  font: 680 clamp(42px, 5vw, 68px)/0.95 var(--display);
  letter-spacing: -0.025em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.65fr);
  gap: 90px;
  align-items: start;
}

.story-copy .eyebrow {
  margin-bottom: 18px;
}

.story-copy > p {
  max-width: 700px;
  margin: 28px 0 0;
  color: #526171;
  font-size: 17px;
  line-height: 1.75;
}

.story-copy > p strong {
  color: var(--ink);
}

.story-note {
  position: relative;
  margin-top: 10px;
  padding: 31px;
  border: 1px solid #9aaaba;
  background: var(--white);
  box-shadow: 10px 10px 0 var(--apricot);
}

.story-note::before {
  content: "“";
  position: absolute;
  top: -25px;
  left: 20px;
  color: var(--blue);
  font: 800 80px/1 Georgia, serif;
}

.story-note blockquote {
  margin: 16px 0 24px;
  font: 610 25px/1.28 var(--display);
}

.story-note cite {
  color: var(--muted);
  font: normal 650 10px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #aebbc8;
  border-left: 1px solid #aebbc8;
}

.benefit-card {
  min-height: 285px;
  padding: 31px;
  border-right: 1px solid #aebbc8;
  border-bottom: 1px solid #aebbc8;
  background: rgba(248, 250, 252, 0.67);
}

.benefit-card:nth-child(2) {
  background: var(--blue-soft);
}

.benefit-card:nth-child(3) {
  background: #dcefe9;
}

.benefit-code {
  display: inline-grid;
  min-width: 44px;
  height: 26px;
  place-items: center;
  color: var(--blue);
  border: 1px solid currentColor;
  font: 750 9px/1 var(--mono);
}

.benefit-card h3 {
  max-width: 430px;
  margin: 28px 0 13px;
  font: 650 27px/1.05 var(--display);
}

.benefit-card p {
  max-width: 500px;
  margin: 0;
  color: #5b6979;
  font-size: 14px;
  line-height: 1.7;
}

.release {
  overflow: hidden;
  color: #eef4fa;
  background:
    radial-gradient(circle at 84% 10%, rgba(46, 89, 232, 0.34), transparent 32%),
    linear-gradient(135deg, #172230 0%, #202f40 58%, #182633 100%);
}

.release .section-heading p {
  color: #b7c4d1;
}

.release .eyebrow {
  color: #79e0c3;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #526274;
  border-left: 1px solid #526274;
}

.release-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid #526274;
  border-bottom: 1px solid #526274;
  background: rgba(255, 255, 255, 0.025);
}

.release-card:nth-child(2),
.release-card:nth-child(3) {
  background: rgba(46, 89, 232, 0.09);
}

.release-number {
  color: var(--apricot);
  font: 780 12px/1 var(--mono);
}

.release-label {
  margin: 0 0 20px;
  color: #79e0c3;
  font: 750 9px/1 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.release-card h3 {
  max-width: 430px;
  margin: 0 0 14px;
  font: 650 27px/1.08 var(--display);
}

.release-card div > p:last-child {
  max-width: 510px;
  margin: 0;
  color: #b7c4d1;
  font-size: 14px;
  line-height: 1.7;
}

.release-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 38px;
  color: #dfe8f1;
  font: 720 11px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-summary i {
  color: var(--apricot);
  font-style: normal;
}

.process {
  background: var(--paper-2);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 32px 30px 32px 0;
  border-top: 2px solid var(--ink);
  counter-increment: process;
}

.process-step + .process-step {
  padding-left: 30px;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--apricot);
}

.process-step::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 35px;
  color: var(--blue);
  font: 800 13px/1 var(--mono);
}

.process-step h3 {
  margin: 0 0 11px;
  font: 650 26px/1.1 var(--display);
}

.process-step p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.library-shot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 35px;
  align-items: center;
  margin-top: 70px;
}

.library-shot img {
  border: 1px solid #9caabb;
  box-shadow: 12px 12px 0 rgba(46, 89, 232, 0.13);
}

.library-shot-copy h3 {
  margin: 0;
  font: 650 31px/1.05 var(--display);
}

.library-shot-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

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

.fit-card {
  padding: 29px;
  border: 1px solid #aebbc8;
  background: rgba(255, 255, 255, 0.62);
}

.fit-card h3 {
  margin: 0 0 18px;
  font: 650 25px/1.1 var(--display);
}

.fit-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 21px;
  color: #596878;
  font-size: 14px;
  line-height: 1.55;
}

.fit-card li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--mint);
}

.fit-card.not-card li::before {
  height: 2px;
  background: #8b98a6;
}

.security {
  position: relative;
  overflow: hidden;
  color: white;
  background: #202c3b;
}

.security::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -220px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255,255,255,.025), 0 0 0 90px rgba(255,255,255,.018);
}

.security .section-heading,
.security-ledger,
.security-links {
  position: relative;
  z-index: 1;
}

.security .eyebrow {
  color: #8cadff;
}

.security .section-heading p {
  color: #b6c2cf;
}

.security-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #4c5b6d;
  border-left: 1px solid #4c5b6d;
}

.ledger-item {
  min-height: 170px;
  padding: 24px;
  border-right: 1px solid #4c5b6d;
  border-bottom: 1px solid #4c5b6d;
}

.ledger-item b {
  display: block;
  color: #68d8ba;
  font: 750 10px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ledger-item strong {
  display: block;
  margin-top: 23px;
  font: 630 20px/1.15 var(--display);
}

.ledger-item span {
  display: block;
  margin-top: 9px;
  color: #aebbc8;
  font-size: 12px;
  line-height: 1.55;
}

.security-links {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin-top: 28px;
}

.security-links a {
  color: #dce4ed;
  font-size: 12px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.closing {
  padding: 120px 0;
}

.closing-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.5fr);
  gap: 80px;
  align-items: end;
}

.closing h2 span {
  color: var(--blue);
}

.closing-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.site-footer {
  padding: 43px 0;
  color: #bbc7d3;
  background: #1b2634;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

.footer-brand {
  color: white;
  font: 650 18px/1 var(--display);
}

.footer-copy {
  max-width: 620px;
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  font-size: 11px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 25px;
  border-top: 1px solid #354253;
  color: #8593a3;
  font: 600 9px/1.45 var(--mono);
}

@keyframes console-in {
  from { opacity: 0; transform: translateY(20px) rotate(0.6deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

@media (max-width: 980px) {
  .nav-shell { grid-template-columns: auto 1fr; }
  .main-nav { display: none; }
  .nav-actions { justify-self: end; }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .route-console { width: min(680px, 100%); }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .story-grid { grid-template-columns: 1fr; gap: 45px; }
  .story-note { max-width: 620px; }
  .library-shot { grid-template-columns: 1fr; }
  .library-shot-copy { max-width: 650px; }
  .closing-shell { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 30px, 1180px); }
  .site-header { position: relative; }
  .nav-shell { min-height: 68px; gap: 12px; }
  .brand-copy small, .small-link { display: none; }
  .hero { padding: 65px 0 58px; }
  .hero-grid { gap: 40px; }
  .hero h1 { font-size: clamp(45px, 12.7vw, 52px); }
  .hero .eyebrow { align-items: flex-start; font-size: 9px; line-height: 1.45; }
  .hero-lede { font-size: 16px; }
  .route-console { padding: 10px; box-shadow: 8px 9px 0 rgba(46, 89, 232, 0.13); }
  .route-map { min-height: 380px; padding: 24px 12px 18px; }
  .route-rail { width: 67%; height: 72px; }
  .route-rail::after { box-shadow: -74px 0 0 -1px #1e2937, -74px 0 0 0 #9badbf, 74px 0 0 -1px #1e2937, 74px 0 0 0 #9badbf; }
  .agent-node { padding: 13px 8px; }
  .agent-node strong { font-size: 11px; }
  .product-proof { padding-bottom: 74px; }
  .image-caption { display: block; }
  .section { padding: 78px 0; }
  .benefit-grid, .release-grid, .fit-grid, .security-ledger { grid-template-columns: 1fr; }
  .benefit-card { min-height: 0; }
  .release-card { min-height: 0; padding: 25px 21px; }
  .release-summary { flex-wrap: wrap; gap: 11px; }
  .process-list { grid-template-columns: 1fr; }
  .process-step, .process-step + .process-step { padding: 25px 0; }
  .process-step::before { margin-bottom: 18px; }
  .process-step:not(:last-child)::after { right: auto; left: -4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

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

:focus-visible {
  outline: 3px solid var(--apricot);
  outline-offset: 4px;
}
