@font-face {
  font-family: "Geist";
  src: url("./assets/geist-regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Geist";
  src: url("./assets/geist-bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
}

:root {
  --ink: #071114;
  --ink-soft: #0c1a1d;
  --ink-raised: #102326;
  --line: rgba(190, 228, 222, 0.2);
  --line-strong: rgba(190, 228, 222, 0.36);
  --text: #f2f7f5;
  --muted: #a5b8b5;
  --teal: #4bc7b8;
  --teal-dark: #1b706b;
  --lime: #b7d65d;
  --amber: #e5b95d;
  --paper: #e9f0ed;
  --paper-ink: #112022;
  --paper-muted: #60716f;
  --max: 1240px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: "Geist", Arial, sans-serif;
  margin: 0;
  overflow-x: hidden;
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.site-header {
  align-items: center;
  background: rgba(7, 17, 20, 0.72);
  border-bottom: 1px solid transparent;
  display: flex;
  height: var(--header);
  justify-content: space-between;
  left: 0;
  padding: 0 40px;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 220ms ease, border-color 220ms ease, height 220ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 20, 0.9);
  border-bottom-color: var(--line);
  height: 66px;
}

.brand {
  display: block;
  height: 48px;
  overflow: hidden;
  width: 174px;
}

.brand img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

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

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease;
}

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

.site-nav .nav-cta {
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 11px 16px;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav .nav-cta:hover {
  background: rgba(75, 199, 184, 0.12);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 42px;
  padding: 10px 8px;
  width: 42px;
}

.menu-toggle span {
  background: var(--text);
  display: block;
  height: 1px;
  margin: 7px 0;
  transition: transform 180ms ease;
  width: 24px;
}

.hero {
  background: #071114;
  min-height: 88svh;
  overflow: hidden;
  position: relative;
}

#net-scene,
.hero-shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

#net-scene {
  opacity: 0.92;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 17, 20, 0.98) 0%, rgba(7, 17, 20, 0.82) 38%, rgba(7, 17, 20, 0.38) 70%, rgba(7, 17, 20, 0.7) 100%),
    linear-gradient(0deg, rgba(7, 17, 20, 0.9) 0%, transparent 36%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  min-height: 88svh;
  padding: calc(var(--header) + 84px) 40px 60px;
  position: relative;
  width: min(100%, var(--max));
  z-index: 2;
}

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

.eyebrow {
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  font-size: 96px;
  line-height: 0.94;
  margin: 0;
}

.hero-lead {
  color: #d4e0de;
  font-size: 24px;
  line-height: 1.35;
  margin: 28px 0 0;
  max-width: 650px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 12px;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button:active {
  transform: scale(0.97);
}

.button-primary {
  background: var(--teal);
  color: #071514;
}

.button-primary:hover {
  background: #74d9cb;
}

.button-ghost {
  border-color: var(--line-strong);
  color: var(--text);
}

.button-ghost:hover {
  background: rgba(233, 240, 237, 0.08);
  border-color: rgba(233, 240, 237, 0.6);
}

.hero-facts {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 92px;
  max-width: 760px;
}

.hero-facts div {
  border-right: 1px solid var(--line);
  padding: 18px 24px 0 0;
}

.hero-facts div + div {
  padding-left: 24px;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-size: 15px;
}

.hero-facts span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  margin-top: 6px;
}

.scene-caption {
  align-items: center;
  bottom: 42px;
  color: var(--muted);
  display: flex;
  font-size: 12px;
  gap: 10px;
  position: absolute;
  right: 40px;
  text-transform: uppercase;
}

.scene-pulse {
  background: var(--lime);
  border-radius: 50%;
  display: block;
  height: 8px;
  position: relative;
  width: 8px;
}

.scene-pulse::after {
  animation: pulse 2.2s ease-out infinite;
  border: 1px solid var(--lime);
  border-radius: 50%;
  content: "";
  inset: -5px;
  position: absolute;
}

.trust-strip {
  background: var(--teal);
  color: #09201f;
}

.trust-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0 auto;
  max-width: var(--max);
}

.trust-track span {
  border-right: 1px solid rgba(7, 17, 20, 0.18);
  font-size: 12px;
  font-weight: 700;
  padding: 17px 14px;
  text-align: center;
  text-transform: uppercase;
}

.trust-track span:first-child {
  border-left: 1px solid rgba(7, 17, 20, 0.18);
}

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

.section-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 180px 1fr;
}

.section-index {
  color: var(--muted);
  font-size: 12px;
  padding-top: 4px;
  text-transform: uppercase;
}

h2 {
  font-size: 54px;
  line-height: 1.04;
  margin: 0;
  max-width: 860px;
}

.section-lead {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  margin: 28px 0 0;
  max-width: 760px;
}

.principles {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
}

.principles article {
  border-right: 1px solid var(--line);
  padding: 30px 28px 32px 0;
}

.principles article + article {
  padding-left: 28px;
}

.principles article:last-child {
  border-right: 0;
}

.principles span,
.flow-number,
.value-grid span {
  color: var(--teal);
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
  margin: 16px 0 10px;
}

.principles p,
.flow-row p,
.value-grid p,
.product-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.workshop {
  height: 670px;
  overflow: hidden;
  position: relative;
}

.workshop img,
.workshop-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.workshop img {
  object-fit: cover;
}

.workshop-overlay {
  background:
    linear-gradient(90deg, rgba(7, 17, 20, 0.92) 0%, rgba(7, 17, 20, 0.68) 36%, rgba(7, 17, 20, 0.08) 74%),
    linear-gradient(0deg, rgba(7, 17, 20, 0.64), transparent 50%);
}

.workshop-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: var(--max);
  padding: 56px 40px;
  position: relative;
}

.workshop-copy h2 {
  font-size: 48px;
  max-width: 670px;
}

.workshop-copy p:last-child {
  color: #d3e0dd;
  font-size: 17px;
  line-height: 1.55;
  margin: 22px 0 0;
  max-width: 610px;
}

.flow {
  padding-bottom: 116px;
}

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

.flow-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 62px 1fr 92px;
  min-height: 126px;
  padding: 20px 0;
  transition: background-color 180ms ease, padding 180ms ease;
}

.flow-row:hover {
  background: rgba(75, 199, 184, 0.05);
  padding-left: 14px;
  padding-right: 14px;
}

.flow-row h3 {
  margin: 0 0 8px;
}

.flow-tag {
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  padding: 7px 9px;
  text-align: center;
  text-transform: uppercase;
}

.product-band {
  align-items: center;
  background: var(--paper);
  color: var(--paper-ink);
  display: grid;
  gap: 56px;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 112px max(40px, calc((100% - var(--max)) / 2 + 40px));
}

.product-copy .eyebrow {
  color: var(--teal-dark);
}

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

.product-copy p {
  color: var(--paper-muted);
  font-size: 17px;
  margin-top: 24px;
  max-width: 570px;
}

.product-console {
  background: #f8fbfa;
  border: 1px solid rgba(17, 32, 34, 0.18);
  box-shadow: 0 26px 60px rgba(17, 32, 34, 0.14);
}

.console-header,
.console-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.console-header {
  border-bottom: 1px solid rgba(17, 32, 34, 0.14);
  padding: 20px;
}

.console-header span,
.console-meta span {
  color: var(--paper-muted);
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}

.console-header strong {
  display: block;
  font-size: 20px;
  margin-top: 6px;
}

.status {
  background: rgba(229, 185, 93, 0.2);
  color: #775716 !important;
  font-weight: 700;
  padding: 8px 10px;
}

.console-body {
  padding: 20px;
}

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

.console-meta div {
  border-left: 2px solid var(--teal);
  padding-left: 10px;
}

.console-meta strong {
  display: block;
  font-size: 14px;
  margin-top: 7px;
}

.console-timeline {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 44px 0 32px;
  position: relative;
}

.console-timeline::before {
  background: rgba(17, 32, 34, 0.15);
  content: "";
  height: 2px;
  left: 4px;
  position: absolute;
  right: 4px;
}

.console-timeline i {
  background: #f8fbfa;
  border: 2px solid rgba(17, 32, 34, 0.2);
  border-radius: 50%;
  height: 15px;
  position: relative;
  width: 15px;
}

.console-timeline .done {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.console-timeline .active {
  background: var(--amber);
  border-color: #9b741e;
  box-shadow: 0 0 0 6px rgba(229, 185, 93, 0.25);
}

.console-footer {
  border-top: 1px solid rgba(17, 32, 34, 0.14);
  color: var(--paper-muted);
  font-size: 12px;
  padding-top: 16px;
}

.value {
  padding-bottom: 126px;
}

.value-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 72px;
}

.value-grid article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 218px;
  padding: 28px;
  transition: background-color 180ms ease;
}

.value-grid article:hover {
  background: rgba(75, 199, 184, 0.06);
}

.astro-band {
  background: #0d2023;
  border-top: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.astro-band::before {
  background:
    linear-gradient(90deg, rgba(75, 199, 184, 0.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(75, 199, 184, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  position: absolute;
}

.astro-inner {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr 0.92fr;
  margin: 0 auto;
  max-width: var(--max);
  padding: 116px 40px;
  position: relative;
}

.astro-copy h2 {
  font-size: 50px;
  max-width: 650px;
}

.astro-copy > p:last-of-type {
  color: #bfd0cd;
  font-size: 17px;
  line-height: 1.58;
  margin: 24px 0 0;
  max-width: 650px;
}

.astro-capabilities {
  border-top: 1px solid var(--line);
  margin-top: 38px;
}

.astro-capabilities div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 190px 1fr;
  padding: 16px 0;
}

.astro-capabilities strong {
  color: var(--text);
  font-size: 14px;
}

.astro-capabilities span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.astro-console {
  background: rgba(7, 17, 20, 0.9);
  border: 1px solid var(--line-strong);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.24);
}

.astro-console-header,
.astro-console-footer {
  padding: 18px;
}

.astro-console-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}

.astro-console-header span,
.astro-console-footer span {
  color: var(--muted);
  display: block;
  font-size: 11px;
  text-transform: uppercase;
}

.astro-console-header strong {
  display: block;
  font-size: 17px;
  margin-top: 7px;
}

.astro-live {
  align-items: center;
  color: var(--lime) !important;
  display: flex !important;
  gap: 8px;
}

.astro-live i {
  background: var(--lime);
  border-radius: 50%;
  display: block;
  height: 7px;
  width: 7px;
}

.astro-console-body {
  padding: 0 18px;
}

.astro-console-body article {
  display: grid;
  gap: 14px;
  grid-template-columns: 34px 1fr;
  padding: 18px 0;
}

.astro-console-body article + article {
  border-top: 1px solid var(--line);
}

.agent-avatar {
  align-items: center;
  background: rgba(75, 199, 184, 0.14);
  border: 1px solid rgba(75, 199, 184, 0.36);
  color: var(--teal);
  display: flex;
  font-size: 10px;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.agent-line {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.agent-line strong {
  font-size: 14px;
}

.agent-line span {
  color: var(--muted);
  font-size: 11px;
}

.astro-console-body p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 7px 0 0;
}

.astro-console-footer {
  border-top: 1px solid var(--line);
}

.astro-console-footer strong {
  color: var(--teal);
  display: block;
  font-size: 13px;
  margin-top: 8px;
}

.closing {
  align-items: center;
  background: var(--ink-raised);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 48px;
  justify-content: space-between;
  padding: 82px max(40px, calc((100% - var(--max)) / 2 + 40px));
}

.closing h2 {
  font-size: 46px;
  max-width: 830px;
}

footer {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 112px;
  padding: 22px 40px;
}

.footer-brand {
  height: 36px;
  width: 130px;
}

footer a:last-child {
  color: var(--text);
}

@keyframes pulse {
  0% {
    opacity: 0.9;
    transform: scale(0.7);
  }
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

@keyframes reveal {
  from {
    opacity: 0.5;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-reveal].is-visible {
  animation: reveal 620ms ease both;
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 24px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    background: rgba(7, 17, 20, 0.97);
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    display: none;
    left: 0;
    padding: 20px 24px 26px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .site-nav.is-open {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .site-nav .nav-cta {
    align-self: flex-start;
  }

  .hero-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  h1 {
    font-size: 78px;
  }

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

  .hero-facts {
    margin-top: 68px;
  }

  .scene-caption {
    bottom: 26px;
    right: 24px;
  }

  .section {
    padding: 102px 24px;
  }

  .section-grid {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 44px;
  }

  .principles {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .principles article,
  .principles article + article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 24px 0;
  }

  .principles article:last-child {
    border-bottom: 0;
  }

  .workshop {
    height: 580px;
  }

  .workshop-copy {
    padding: 42px 24px;
  }

  .workshop-copy h2,
  .product-copy h2 {
    font-size: 40px;
  }

  .product-band {
    gap: 44px;
    grid-template-columns: 1fr;
    padding: 88px 24px;
  }

  .astro-inner {
    gap: 46px;
    grid-template-columns: 1fr;
    padding: 92px 24px;
  }

  .closing {
    align-items: flex-start;
    flex-direction: column;
    padding: 70px 24px;
  }

  footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-header.is-scrolled {
    height: 64px;
  }

  .brand {
    height: 42px;
    width: 152px;
  }

  .hero {
    min-height: 790px;
  }

  #net-scene {
    opacity: 0.68;
  }

  .hero-inner {
    justify-content: flex-start;
    min-height: 790px;
    padding-bottom: 40px;
    padding-top: 152px;
  }

  h1 {
    font-size: 64px;
  }

  .hero-lead {
    font-size: 19px;
    max-width: 390px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 340px);
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .hero-facts div,
  .hero-facts div + div {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 12px 0;
  }

  .hero-facts span {
    margin-top: 2px;
  }

  .scene-caption {
    bottom: 18px;
    left: 24px;
    right: auto;
  }

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

  .trust-track span {
    border-bottom: 1px solid rgba(7, 17, 20, 0.18);
  }

  .section {
    padding: 84px 20px;
  }

  h2 {
    font-size: 36px;
  }

  .section-lead {
    font-size: 17px;
  }

  .workshop {
    height: 520px;
  }

  .workshop img {
    object-position: 58% center;
  }

  .workshop-copy {
    padding: 36px 20px;
  }

  .workshop-copy h2,
  .product-copy h2 {
    font-size: 34px;
  }

  .flow-list {
    margin-top: 50px;
  }

  .flow-row {
    align-items: start;
    gap: 8px 14px;
    grid-template-columns: 42px 1fr;
    min-height: 0;
    padding: 22px 0;
  }

  .flow-tag {
    display: none;
  }

  .product-band {
    padding: 78px 20px;
  }

  .console-header,
  .console-body {
    padding: 16px;
  }

  .console-meta {
    grid-template-columns: 1fr;
  }

  .console-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .value-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .value-grid article {
    min-height: auto;
    padding: 24px 20px;
  }

  .astro-inner {
    padding: 78px 20px;
  }

  .astro-copy h2 {
    font-size: 36px;
  }

  .astro-copy > p:last-of-type {
    font-size: 16px;
  }

  .astro-capabilities div {
    gap: 7px;
    grid-template-columns: 1fr;
    padding: 15px 0;
  }

  .astro-console-header {
    align-items: flex-start;
    gap: 14px;
  }

  .astro-console-body {
    padding: 0 14px;
  }

  .astro-console-header,
  .astro-console-footer {
    padding: 14px;
  }

  .closing {
    gap: 30px;
    padding: 62px 20px;
  }

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

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 28px 20px;
  }

  footer p {
    margin: 0;
  }
}

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