@font-face {
  font-family: "Aeonik";
  src: url("assets/fonts/AeonikPro-Regular.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Aeonik";
  src: url("assets/fonts/AeonikPro-Bold.woff2") format("woff2");
  font-display: swap;
  font-weight: 800;
}

:root {
  --bg: #050608;
  --bg-2: #090b0f;
  --panel: #0c1015;
  --panel-2: #111820;
  --ink: #f4f3eb;
  --muted: #9da7a2;
  --subtle: #68706c;
  --line: rgba(244, 243, 235, 0.12);
  --line-strong: rgba(244, 243, 235, 0.24);
  --green: #b8ff5c;
  --cyan: #77d8ff;
  --amber: #ffbd66;
  --red: #ff6b6b;
  --paper: #ebe8dc;
  --paper-ink: #101312;
  --radius: 8px;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #050608 0%, #090b0f 62%, #101312 100%);
  background-size: 64px 64px, 64px 64px, 100% 100%;
  font-family: "Aeonik", "Segoe UI", sans-serif;
  line-height: 1.45;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgba(184, 255, 92, 0.08), transparent 26%),
    linear-gradient(245deg, rgba(119, 216, 255, 0.08), transparent 34%);
}

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

.nav,
.hero,
.proof-strip,
.case-section,
.systems,
.approach,
.apply {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 62px;
  padding: 9px 10px 9px 12px;
  background: rgba(5, 6, 8, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.3);
}

.brand,
.nav nav,
.console-top,
.console-top div,
.console-metrics,
.tags,
.expectations,
.proof-head,
.systems-head,
.mobile-sticky-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 800;
}

.brand span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--bg);
  background: var(--green);
  border-radius: var(--radius);
}

.nav nav {
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav nav a,
.hero-link {
  transition: color 180ms ease;
}

.nav nav a:hover,
.hero-link:hover {
  color: var(--green);
}

.nav-action {
  justify-self: end;
  min-height: 42px;
  padding: 11px 16px;
  color: var(--bg);
  background: var(--ink);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(184, 255, 92, 0.92);
  outline-offset: 3px;
}

.brand,
.nav nav a,
.nav-action,
.hero-link,
.mobile-sticky-cta {
  cursor: pointer;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease-out, transform 420ms ease-out;
}

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

.agent-console[data-reveal] {
  transition-delay: 90ms;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: 78px 0 64px;
}

.eyebrow,
.section-kicker,
.case-copy span,
.approach-head span,
.apply-copy span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-top: 16px;
  font-size: clamp(3.5rem, 6.3vw, 6.45rem);
  line-height: 0.89;
  font-weight: 800;
}

h1 span {
  display: block;
  color: var(--muted);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5.1rem);
  line-height: 0.92;
  font-weight: 800;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.12;
  font-weight: 800;
}

.lede {
  max-width: 610px;
  margin-top: 24px;
  color: #d6d6cb;
  font-size: 1.13rem;
}

.subscribe-form {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto;
  gap: 8px;
  max-width: 540px;
  margin-top: 32px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.subscribe-form input,
.lead-form input,
.lead-form textarea {
  width: 100%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.subscribe-form input {
  min-height: 48px;
  padding: 0 14px;
  border-color: transparent;
}

.subscribe-form input::placeholder,
.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(244, 243, 235, 0.38);
}

.subscribe-form button,
.lead-form button {
  min-height: 48px;
  padding: 0 16px;
  color: var(--bg);
  background: var(--green);
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.subscribe-form button:hover,
.lead-form button:hover {
  background: #ccff86;
  transform: translateY(-1px);
}

.subscribe-form button:disabled,
.lead-form button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.quick-status {
  min-height: 20px;
  margin-top: 10px;
  color: var(--green);
  font-size: 0.9rem;
}

.microcopy {
  margin-top: 11px;
  color: var(--subtle);
  font-size: 0.9rem;
}

.hero-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--cyan);
  font-weight: 800;
}

.agent-console {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 42%),
    var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.agent-console::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(184, 255, 92, 0.035));
}

.console-top {
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.8rem;
}

.console-top div {
  gap: 8px;
  color: var(--ink);
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(184, 255, 92, 0.8);
  animation: statusPulse 1900ms ease-out infinite;
}

.console-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.console-metrics article {
  min-height: 118px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

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

.console-metrics span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.console-metrics strong {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.9;
}

.log-lines {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 22px 18px 24px;
  font-family: var(--mono);
  font-size: 0.86rem;
}

.log-lines p {
  color: #d8ded7;
}

.log-lines span {
  color: var(--subtle);
}

.proof-strip,
.case-section,
.systems,
.approach,
.apply {
  padding-top: 108px;
}

.proof-head,
.systems-head {
  justify-content: space-between;
  gap: 30px;
  margin-top: 16px;
}

.proof-head h2,
.systems-head h2 {
  max-width: 760px;
}

.proof-head p,
.systems-head p,
.case-copy p,
.approach-head p,
.apply-copy p {
  max-width: 430px;
  color: var(--muted);
  font-size: 1.04rem;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.number-grid article {
  min-height: 150px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.035);
  border-right: 1px solid var(--line);
}

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

.number-grid strong {
  display: block;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 3.9rem);
  line-height: 0.95;
}

.number-grid span {
  display: block;
  max-width: 150px;
  margin-top: 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.case-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: start;
}

.case-copy h2,
.approach-head h2,
.apply-copy h2 {
  margin-top: 12px;
}

.case-copy p,
.approach-head p,
.apply-copy p {
  margin-top: 22px;
}

.case-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  color: #d7d9cf;
}

.case-list p {
  max-width: 560px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: #d7d9cf;
}

.case-list b {
  color: var(--green);
}

.proof-board {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(184, 255, 92, 0.08), transparent 38%),
    linear-gradient(135deg, rgba(119, 216, 255, 0.035), transparent 46%),
    var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-board-top,
.proof-board-top div,
.proof-board-footer {
  display: flex;
  align-items: center;
}

.proof-board-top {
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.proof-board-top div {
  gap: 8px;
  color: var(--ink);
}

.proof-board-title {
  padding: 22px 22px 6px;
}

.proof-board-title span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
}

.proof-board-title h3 {
  max-width: 520px;
  margin-top: 10px;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  line-height: 0.98;
}

.proof-board-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 20px 22px 22px;
}

.proof-board-grid article {
  min-height: 132px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(184, 255, 92, 0.22);
  border-radius: var(--radius);
}

.proof-board-grid span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.proof-board-grid strong {
  display: block;
  margin-top: 22px;
  color: var(--green);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.9;
}

.proof-board-footer {
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: #d8ded7;
  background: rgba(0, 0, 0, 0.18);
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.proof-board-footer p {
  max-width: 270px;
}

.proof-board-footer span {
  color: var(--green);
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.system-grid article {
  min-height: 280px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.system-grid article:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(184, 255, 92, 0.36);
}

.system-label {
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 800;
}

.system-grid h3 {
  margin-top: 50px;
  font-size: 1.55rem;
}

.system-grid p {
  max-width: 480px;
  margin-top: 12px;
  color: var(--muted);
}

.tags {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.tags span {
  padding: 7px 9px;
  color: #d5dbd4;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.approach {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 52px;
}

.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline article {
  display: grid;
  grid-template-columns: 56px 0.7fr 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.timeline article span,
.timeline small {
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline p {
  color: var(--muted);
}

.timeline small {
  display: block;
  margin-top: 10px;
  color: var(--subtle);
}

.apply {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
  padding-bottom: 98px;
}

.expectations {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.expectations p {
  width: 100%;
  padding: 14px 0;
  color: #d5d8cf;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.85rem;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-progress {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.82rem;
}

.form-progress span {
  color: var(--green);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #d6d9cf;
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-form input {
  min-height: 48px;
  padding: 0 13px;
}

.lead-form textarea {
  min-height: 118px;
  padding: 13px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(184, 255, 92, 0.7);
}

.lead-form button {
  margin-top: 4px;
}

.form-status {
  min-height: 20px;
  color: var(--green);
  font-size: 0.9rem;
}

.mobile-sticky-cta {
  display: none;
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(184, 255, 92, 0.55);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(184, 255, 92, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(184, 255, 92, 0);
  }
}

@media (max-width: 1020px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav nav {
    display: none;
  }

  .hero,
  .case-section,
  .approach,
  .apply {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .proof-head,
  .systems-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .nav,
  .hero,
  .proof-strip,
  .case-section,
  .systems,
  .approach,
  .apply {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    top: 8px;
    min-height: 54px;
  }

  .brand strong {
    font-size: 0.84rem;
  }

  .brand span {
    width: 34px;
    height: 34px;
  }

  .nav-action {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .hero {
    padding: 44px 0 34px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.15rem);
  }

  .lede {
    font-size: 1rem;
  }

  .subscribe-form,
  .console-metrics,
  .number-grid,
  .proof-board-grid,
  .system-grid {
    grid-template-columns: 1fr;
  }

  .subscribe-form button {
    width: 100%;
  }

  .agent-console {
    min-width: 0;
  }

  .console-metrics article {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .proof-strip,
  .case-section,
  .systems,
  .approach,
  .apply {
    padding-top: 78px;
  }

  .number-grid article {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .proof-board-title,
  .proof-board-grid {
    padding-right: 16px;
    padding-left: 16px;
  }

  .proof-board-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .system-grid article {
    min-height: 240px;
  }

  .system-grid h3 {
    margin-top: 34px;
  }

  .timeline article {
    grid-template-columns: 42px 1fr;
  }

  .timeline article p,
  .timeline article small {
    grid-column: 2;
  }

  .lead-form {
    padding: 18px;
  }

  .mobile-sticky-cta.is-visible {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 80;
    display: flex;
    justify-content: center;
    min-height: 50px;
    color: var(--bg);
    background: var(--green);
    border-radius: var(--radius);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
    font-weight: 800;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 430px) {
  .nav-action {
    max-width: 102px;
    text-align: center;
  }

  .console-top {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 72px;
  }

  .log-lines {
    font-size: 0.76rem;
  }
}
