:root {
  --bg: #070807;
  --bg-2: #0d0f0e;
  --panel: #111312;
  --panel-2: #171918;
  --text: #f4f0ea;
  --muted: #aaa49c;
  --quiet: #78736d;
  --line: rgba(244, 240, 234, 0.12);
  --line-strong: rgba(244, 240, 234, 0.22);
  --orange: #e8541a;
  --orange-2: #ff6a2a;
  --green: #34d399;
  --red: #ef4444;
  --shadow: rgba(0, 0, 0, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(244, 240, 234, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 234, 0.025) 1px, transparent 1px),
    var(--bg);
  background-size: 56px 56px, 56px 56px, auto;
  color: var(--text);
  font-family: "Barlow", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

img {
  max-width: 100%;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 52px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 7, 0.88);
  backdrop-filter: blur(20px);
}

.brand {
  flex: 0 0 auto;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 31px;
  font-weight: 700;
  letter-spacing: 7px;
}

.brand span {
  color: var(--orange-2);
}

.desktop-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a,
.nav-cta,
.eyebrow,
.button,
.access-form input,
.hero-specs span,
.proof-band span,
.card-kicker,
.product-paths span,
.process span,
.footer-meta {
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.desktop-nav a {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

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

.nav-cta {
  border: 1px solid rgba(232, 84, 26, 0.5);
  color: var(--orange-2);
  padding: 10px 16px;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  padding: 132px 52px 44px;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.9) contrast(1.08) brightness(0.69);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.99) 0%, rgba(7, 8, 7, 0.91) 35%, rgba(7, 8, 7, 0.48) 67%, rgba(7, 8, 7, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 8, 7, 0.99) 0%, transparent 38%, rgba(7, 8, 7, 0.46) 100%);
}

.hero-copy {
  width: min(790px, 100%);
  margin-bottom: 86px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--orange-2);
  font-size: 11px;
  letter-spacing: 2.2px;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--orange-2);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: 104px;
}

h1 span {
  display: block;
}

.lead {
  max-width: 670px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
}

.button.primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #120604;
}

.button.secondary {
  background: rgba(7, 8, 7, 0.42);
  color: var(--text);
}

.hero-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line-strong);
  background: rgba(7, 8, 7, 0.76);
  box-shadow: 0 18px 48px var(--shadow);
}

.hero-specs div {
  min-height: 104px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.hero-specs div:last-child {
  border-right: 0;
}

.hero-specs strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-2);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-specs span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 1.45;
  text-transform: uppercase;
}

.proof-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.proof-band div {
  padding: 28px 52px;
  background: var(--bg-2);
}

.proof-band span,
.card-kicker,
.product-paths span {
  display: block;
  margin-bottom: 9px;
  color: var(--orange-2);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.proof-band strong {
  color: var(--text);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
}

.section {
  padding: 112px 52px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-heading.center {
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading.compact {
  margin: 0;
}

.section-heading h2,
.early-access h2,
.market-copy h2 {
  margin-bottom: 18px;
  font-size: 66px;
}

.section-heading p:not(.eyebrow),
.early-access p,
.market-points p,
.validation-grid li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  max-width: 1220px;
  margin: 0 auto;
}

.sticky-copy {
  position: sticky;
  top: 112px;
  align-self: start;
  margin: 0;
}

.stacked-cards {
  display: grid;
  gap: 16px;
}

.stacked-cards article,
.difference-grid article,
.validation-grid article,
.product-paths article,
.status-grid article,
.access-grid article,
.process div {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(23, 25, 24, 0.94), rgba(12, 14, 13, 0.94));
}

.stacked-cards article {
  min-height: 230px;
  padding: 30px;
}

.stacked-cards h3,
.difference-grid h3,
.validation-grid h3,
.product-paths h3,
.access-grid h3 {
  margin-bottom: 14px;
  font-size: 32px;
}

.stacked-cards p,
.difference-grid p,
.product-paths p,
.status-grid p,
.access-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.status {
  border-bottom: 1px solid var(--line);
  background: rgba(17, 19, 18, 0.42);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.status-grid article {
  min-height: 210px;
  padding: 28px;
}

.status-grid span,
.access-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--orange-2);
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.status-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.difference {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(232, 84, 26, 0.1), transparent 35%),
    rgba(17, 19, 18, 0.62);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.difference-grid article {
  min-height: 265px;
  padding: 26px;
}

.deployment {
  padding-bottom: 96px;
}

.deployment-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto 18px;
  padding: 48px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(232, 84, 26, 0.13), transparent 34%),
    var(--panel);
}

.product-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-paths article {
  min-height: 270px;
  padding: 28px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.process div {
  min-height: 212px;
  padding: 24px;
}

.process span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--orange);
  color: #120604;
  font-size: 11px;
}

.process strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}

.process p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.validation {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 19, 18, 0.62);
}

.validation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.validation-grid article {
  padding: 32px;
}

.validation-grid ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
}

.ip-safety {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(232, 84, 26, 0.13), transparent 42%),
    var(--bg);
}

.safety-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  background: rgba(7, 8, 7, 0.58);
}

.safety-strip span {
  min-height: 88px;
  padding: 24px;
  border-right: 1px solid var(--line);
  color: var(--orange-2);
  font-family: "DM Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 1.4px;
  line-height: 1.55;
  text-transform: uppercase;
}

.safety-strip span:last-child {
  border-right: 0;
}

.market {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: end;
  max-width: 1220px;
  margin: 0 auto;
}

.market-copy {
  max-width: 760px;
}

.market-points {
  display: grid;
  gap: 18px;
  border-left: 1px solid var(--line-strong);
  padding-left: 34px;
}

.early-access {
  padding: 96px 52px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(232, 84, 26, 0.16), transparent 52%),
    var(--bg);
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.access-grid article {
  min-height: 260px;
  padding: 28px;
}

.access-actions {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) auto;
  gap: 14px;
  align-items: center;
  max-width: 1100px;
  margin: 28px auto 0;
}

.access-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
}

.access-form input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line-strong);
  background: rgba(7, 8, 7, 0.58);
  color: var(--text);
  padding: 0 16px;
  font-size: 11px;
  letter-spacing: 1.2px;
  outline: none;
  text-transform: uppercase;
}

.access-form input::placeholder {
  color: var(--quiet);
}

.access-form input:focus {
  border-color: var(--orange-2);
}

.access-form input.is-success {
  border-color: var(--green);
}

.access-form input.is-error {
  border-color: var(--red);
}

.access-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.access-actions p {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--quiet);
  font-size: 14px;
  line-height: 1.5;
}

.access-actions p.is-success {
  color: var(--green);
}

.access-actions p.is-error {
  color: var(--red);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 42px 52px;
  border-top: 1px solid var(--line);
  background: #050605;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.footer-meta {
  display: grid;
  gap: 8px;
  color: var(--quiet);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-align: right;
  text-transform: uppercase;
}

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

  .desktop-nav {
    gap: 20px;
  }

  .hero,
  .section,
  .pilot,
  .site-footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-copy {
    max-width: 680px;
    margin-bottom: 58px;
  }

  h1 {
    font-size: 84px;
  }

  .section-heading h2,
  .early-access h2,
  .market-copy h2 {
    font-size: 56px;
  }

  .split,
  .deployment-panel,
  .market,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .difference-grid,
  .status-grid,
  .access-grid,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-band div {
    padding-left: 32px;
    padding-right: 32px;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .product-paths,
  .validation-grid,
  .safety-strip,
  .access-grid,
  .status-grid,
  .proof-band {
    grid-template-columns: 1fr;
  }

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

  .safety-strip span:last-child {
    border-bottom: 0;
  }

  .deployment-panel {
    padding: 32px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 64px;
    padding: 0 20px;
  }

  .brand {
    font-size: 27px;
  }

  .nav-cta {
    display: none;
  }

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

  .hero-media {
    position: relative;
    height: 312px;
    margin: -8px -20px 34px;
    order: -1;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
  }

  .hero-media img {
    object-position: 65% center;
    filter: saturate(0.9) contrast(1.08) brightness(0.76);
  }

  .hero-shade {
    background: linear-gradient(0deg, var(--bg) 0%, rgba(7, 8, 7, 0.28) 100%);
  }

  .hero-copy {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-bottom: 28px;
  }

  h1 {
    max-width: 100%;
    font-size: 45px;
  }

  .lead {
    width: 100%;
    max-width: 31ch;
    font-size: 17px;
  }

  .hero-actions,
  .pilot-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-specs,
  .difference-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .hero-specs div {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-specs div:last-child {
    border-bottom: 0;
  }

  .proof-band div,
  .section,
  .early-access,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading h2,
  .early-access h2,
  .market-copy h2 {
    font-size: 42px;
  }

  .section-heading.center {
    text-align: left;
  }

  .section-heading.center .eyebrow {
    justify-content: flex-start;
  }

  .split {
    gap: 34px;
  }

  .stacked-cards article,
  .difference-grid article,
  .validation-grid article,
  .product-paths article,
  .status-grid article,
  .access-grid article,
  .process div {
    min-height: auto;
    padding: 24px;
  }

  .access-actions {
    grid-template-columns: 1fr;
  }

  .access-form {
    grid-template-columns: 1fr;
  }

  .deployment-panel {
    padding: 24px;
  }

  .market {
    gap: 28px;
  }

  .market-points {
    border-left: 0;
    border-top: 1px solid var(--line-strong);
    padding-top: 24px;
    padding-left: 0;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 40px;
  }

  .brand {
    font-size: 25px;
    letter-spacing: 6px;
  }

  .nav-cta {
    font-size: 8px;
  }
}
