:root {
  color-scheme: dark;
  --ink: #eff6ef;
  --muted: #aab9ae;
  --quiet: #7d8c82;
  --bg: #07100d;
  --bg-2: #0c1813;
  --panel: #101f19;
  --panel-2: #132720;
  --line: rgba(207, 222, 210, 0.18);
  --line-strong: rgba(207, 222, 210, 0.34);
  --accent: #9ac7a5;
  --accent-2: #c79a6b;
  --warning: #e3c58e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(154, 199, 165, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 199, 165, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(154, 199, 165, 0.12), transparent 42rem),
    var(--bg);
  background-size: 44px 44px, 44px 44px, auto, auto;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.is-locked {
  min-height: 100vh;
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.lock-screen {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.lock-panel {
  width: min(520px, 100%);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(16, 31, 25, 0.94);
  box-shadow: var(--shadow);
  padding: clamp(28px, 6vw, 48px);
}

.lock-logo {
  display: block;
  width: min(270px, 70vw);
  height: 108px;
  margin-bottom: 26px;
  object-fit: cover;
  object-position: left center;
}

.lock-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lock-panel h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 8vw, 3.25rem);
  line-height: 1;
}

.lock-panel p {
  max-width: 34rem;
  margin: 0 0 24px;
  color: var(--muted);
}

.access-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 650;
}

.access-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.access-row input,
.access-row button,
.primary-action,
.nav-cta {
  border-radius: 5px;
  font: inherit;
}

.access-row input {
  min-width: 0;
  border: 1px solid var(--line-strong);
  background: #07100d;
  color: var(--ink);
  padding: 13px 14px;
}

.access-row button,
.primary-action,
.nav-cta {
  border: 1px solid rgba(154, 199, 165, 0.7);
  background: #d9ead7;
  color: #08110e;
  font-weight: 800;
  text-decoration: none;
}

.access-row button {
  cursor: pointer;
  padding: 13px 18px;
}

.access-error {
  min-height: 1.4em;
  margin-top: 12px;
  color: var(--warning);
}

.site-shell {
  min-height: 100vh;
}

.site-header,
main,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: rgba(7, 16, 13, 0.92);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}

.brand-link img {
  display: block;
  width: min(214px, 48vw);
  height: 54px;
  object-fit: cover;
  object-position: left center;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.92rem;
}

nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 9px 12px;
  color: #08110e;
}

main {
  padding: 72px 0 42px;
}

section {
  margin-bottom: 92px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 44px;
  align-items: end;
  min-height: 560px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 74px;
}

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

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 7.2vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 740px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.primary-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
}

.secondary-line {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--accent-2);
  font-size: 1.02rem;
}

.instrument-readout {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(16, 31, 25, 0.86);
  box-shadow: var(--shadow);
  padding: 20px;
}

.instrument-readout div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.instrument-readout div:first-child {
  border-top: 0;
  padding-top: 0;
}

.instrument-readout div:last-child {
  padding-bottom: 0;
}

.instrument-readout span {
  color: var(--muted);
}

.instrument-readout strong {
  color: var(--accent);
  text-transform: uppercase;
}

.split-section,
.evidence-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading p,
.body-copy p,
.evidence-section p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.body-copy p:last-child,
.section-heading p:last-child {
  margin-bottom: 0;
}

.boundary-section,
.review-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 58px 0;
}

.boundary-grid,
.vertical-grid,
.pricing-grid,
.source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.boundary-grid article,
.vertical-card,
.pricing-grid article,
.source-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 31, 25, 0.76);
  padding: 20px;
}

.boundary-grid article {
  min-height: 148px;
}

.boundary-grid p,
.vertical-card p,
.pricing-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.vertical-card {
  display: flex;
  flex-direction: column;
}

.cockpit-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid rgba(154, 199, 165, 0.58);
  border-radius: 5px;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.cockpit-link.is-disabled {
  color: var(--quiet);
  background: rgba(16, 31, 25, 0.52);
}

.vertical-card p + .cockpit-link {
  margin-top: 18px;
}

.pricing-by-vertical dl {
  display: grid;
  gap: 14px;
  margin: 16px 0 0;
}

.pricing-by-vertical div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.pricing-by-vertical dt,
.pricing-by-vertical dd {
  margin: 0;
}

.pricing-by-vertical dt {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-by-vertical dd {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.vertical-card span,
.review-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.review-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-steps li {
  min-height: 152px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(19, 39, 32, 0.84);
  padding: 18px;
}

.review-steps strong {
  display: block;
  line-height: 1.25;
}

.source-grid ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.future-domains {
  width: min(860px, 100%);
  margin-top: -48px;
  margin-bottom: 92px;
  border-left: 2px solid var(--line-strong);
  padding: 18px 0 18px 24px;
}

.future-domains .section-heading {
  margin-bottom: 18px;
}

.future-domains h2 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.future-domain-list {
  margin: 0;
  color: var(--quiet);
  font-size: 0.98rem;
}

.evidence-section {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(16, 31, 25, 0.84);
  padding: clamp(24px, 5vw, 38px);
}

.evidence-section p {
  margin-bottom: 0;
}

.contact-section {
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 52px;
}

.contact-section .primary-action {
  justify-self: end;
}

.contact-section a:not(.primary-action) {
  color: var(--accent);
}

.site-footer {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 30px 0 46px;
  color: var(--quiet);
}

.site-footer p,
.site-footer address {
  margin: 0;
}

.site-footer address {
  font-style: normal;
  text-align: right;
}

[hidden] {
  display: none !important;
}

@media (max-width: 920px) {
  .site-header,
  .hero,
  .split-section,
  .evidence-section,
  .contact-section,
  .site-footer {
    display: block;
  }

  .site-header {
    position: static;
  }

  nav {
    justify-content: flex-start;
    margin-top: 16px;
  }

  .hero {
    min-height: 0;
  }

  .instrument-readout {
    margin-top: 34px;
  }

  .boundary-grid,
  .vertical-grid,
  .pricing-grid,
  .source-grid,
  .review-steps {
    grid-template-columns: 1fr;
  }

  .future-domains {
    margin-top: -36px;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 24px 0 0;
  }

  .contact-section .primary-action {
    margin-top: 18px;
  }

  .site-footer address {
    margin-top: 12px;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  main {
    padding-top: 42px;
  }

  section {
    margin-bottom: 64px;
  }

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

  .access-row button,
  .primary-action,
  .nav-cta {
    width: 100%;
  }

  .brand-link {
    min-width: 0;
  }

  .brand-link img {
    width: min(200px, 72vw);
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.5rem);
    line-height: 1.02;
  }

  .boundary-section,
  .review-section {
    padding: 42px 0;
  }
}
