:root {
  --black: #080d0b;
  --black-2: #0d1512;
  --panel: #111c17;
  --panel-2: #16231e;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f6f8f4;
  --muted: #aab7af;
  --soft: #dce5df;
  --green: #06c167;
  --green-2: #2ee98d;
  --yellow: #f5c842;
  --blue: #70a6ff;
  --danger: #ff735c;
  --radius: 8px;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  color-scheme: dark;
  font-family: "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--text);
  font-family: "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

svg {
  display: block;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--green);
  color: #02120a;
  font-weight: 800;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 42px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 13, 11, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(6, 193, 103, 0.45);
  border-radius: var(--radius);
  background: #0b1b12;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--green);
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--soft);
  font-size: 14px;
}

.nav-links a {
  padding: 8px 0;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--green);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 148px 42px 78px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #080d0b 0%, #0c1511 46%, #111914 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 26vh;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--black));
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
}

.hero-route {
  position: absolute;
  right: -70px;
  top: 106px;
  width: min(48vw, 680px);
  min-width: 430px;
  opacity: 0.92;
}

.route-line {
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-width: 6;
}

.route-line-muted {
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 20;
}

.route-dot {
  fill: var(--green);
  filter: drop-shadow(0 0 18px rgba(6, 193, 103, 0.62));
}

.route-dot-warm {
  fill: var(--yellow);
  filter: drop-shadow(0 0 18px rgba(245, 200, 66, 0.45));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-2);
  font-family: "SFMono-Regular", "Cascadia Mono", "DejaVu Sans Mono", monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: 82px;
  font-weight: 900;
  line-height: 0.94;
}

h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
}

.hero-subtitle {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: 21px;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(6, 193, 103, 0.75);
  box-shadow: 0 18px 40px rgba(6, 193, 103, 0.15);
}

.button-primary {
  background: var(--green);
  color: #02120a;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.ops-panel {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 12px;
  width: min(100%, 1040px);
  margin-top: 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(13, 21, 18, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.panel-header,
.panel-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-family: "SFMono-Regular", "Cascadia Mono", "DejaVu Sans Mono", monospace;
  font-size: 12px;
  font-weight: 900;
}

.dispatch-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.dispatch-row-active {
  border-color: rgba(6, 193, 103, 0.5);
  background: rgba(6, 193, 103, 0.12);
}

.dispatch-row span {
  color: var(--green);
  font-family: "SFMono-Regular", "Cascadia Mono", "DejaVu Sans Mono", monospace;
  font-weight: 900;
}

.dispatch-row p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.panel-footer span {
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.panel-footer strong {
  display: block;
  color: var(--text);
  font-size: 15px;
}

.cred-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: #0b120f;
}

.cred-strip div {
  min-height: 132px;
  padding: 26px 34px;
  border-right: 1px solid var(--line);
}

.cred-strip div:last-child {
  border-right: 0;
}

.cred-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: "SFMono-Regular", "Cascadia Mono", "DejaVu Sans Mono", monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cred-strip strong {
  display: block;
  font-size: 23px;
  line-height: 1.08;
}

.section {
  padding: 94px 42px;
}

.section-kicker {
  display: grid;
  grid-template-columns: 0.78fr 1.2fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 34px;
}

.section-kicker h2 {
  max-width: 760px;
}

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

.benefit-card {
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 72px;
  border: 1px solid rgba(6, 193, 103, 0.34);
  border-radius: var(--radius);
  background: rgba(6, 193, 103, 0.1);
}

.icon-box svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--green-2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.benefit-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.process-section {
  border-block: 1px solid var(--line);
  background: #f3f6ef;
  color: #101613;
}

.process-section .eyebrow {
  color: #177545;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(16, 22, 19, 0.14);
  border-radius: var(--radius);
  background: #ffffff;
}

.process-list span {
  display: block;
  margin-bottom: 64px;
  color: #177545;
  font-family: "SFMono-Regular", "Cascadia Mono", "DejaVu Sans Mono", monospace;
  font-weight: 900;
}

.process-list p,
.requirements-copy p,
.apply-copy p {
  color: #59645e;
}

.requirements-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  padding: 94px 42px;
  background: var(--black);
}

.requirements-copy {
  max-width: 600px;
}

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

.requirements-grid div {
  min-height: 96px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--soft);
  font-weight: 750;
}

.requirements-grid div::before {
  display: block;
  width: 22px;
  height: 3px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.apply-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 58px;
  padding: 94px 42px;
  border-top: 1px solid var(--line);
  background: #f3f6ef;
  color: #101613;
}

.apply-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid rgba(16, 22, 19, 0.12);
  border-radius: var(--radius);
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(16, 22, 19, 0.14);
}

.honey-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

label {
  display: grid;
  gap: 8px;
  color: #27322d;
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cdd8d1;
  border-radius: var(--radius);
  padding: 14px 13px;
  background: #fbfdf9;
  color: #101613;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible {
  outline: 3px solid rgba(6, 193, 103, 0.34);
  outline-offset: 2px;
}

.full-field {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: #59645e;
  font-size: 14px;
}

.form-note[data-state="success"] {
  color: #126d3d;
  font-weight: 850;
}

.form-note[data-state="error"] {
  color: #a72f2f;
  font-weight: 850;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 28px;
  padding: 38px 42px;
  border-top: 1px solid var(--line);
  background: #050807;
  color: var(--text);
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  color: var(--green-2);
}

@media (max-width: 1050px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-route {
    opacity: 0.32;
  }

  .cred-strip,
  .benefit-grid,
  .process-list,
  .requirements-section,
  .apply-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .cred-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 20px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 16px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 56px 20px 56px;
  }

  .hero-route {
    display: none;
  }

  .hero-content {
    max-width: 350px;
  }

  h1 {
    max-width: 360px;
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-subtitle {
    max-width: 350px;
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .ops-panel {
    max-width: 350px;
    margin-top: 42px;
  }

  .panel-footer,
  .requirements-grid,
  .apply-form {
    grid-template-columns: 1fr;
  }

  .section,
  .requirements-section,
  .apply-section,
  .site-footer {
    padding: 64px 20px;
  }

  .cred-strip div {
    padding: 22px 20px;
  }

  .benefit-card {
    min-height: 260px;
  }

  .icon-box,
  .process-list span {
    margin-bottom: 42px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
