:root {
  color-scheme: dark;
  --ink: #f5f1e8;
  --muted: #bdb6a8;
  --line: rgba(245, 241, 232, 0.16);
  --paper: #151512;
  --paper-soft: #1f201b;
  --field: #272821;
  --accent: #80e18a;
  --accent-ink: #0b180d;
  --warn: #f4b35e;
  --danger: #ee6b6e;
  --blueprint: #75b8c8;
  --shadow: rgba(0, 0, 0, 0.36);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.35rem;
  background: linear-gradient(rgba(12, 12, 10, 0.84), rgba(12, 12, 10, 0.24));
  backdrop-filter: blur(16px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 760;
}

.brand-mark {
  width: 0.85rem;
  height: 0.85rem;
  border: 2px solid var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(128, 225, 138, 0.78);
}

.nav-links {
  gap: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  text-decoration: none;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
}

.hero-scrim {
  z-index: -1;
  background:
    radial-gradient(circle at 70% 40%, rgba(128, 225, 138, 0.12), transparent 24rem),
    linear-gradient(90deg, rgba(13, 13, 11, 0.94) 0%, rgba(13, 13, 11, 0.76) 42%, rgba(13, 13, 11, 0.24) 100%),
    linear-gradient(180deg, rgba(13, 13, 11, 0.48), rgba(13, 13, 11, 0.82));
}

.hero-copy {
  width: min(41rem, calc(100% - 2.5rem));
  margin-left: max(1.25rem, 7vw);
  padding-top: 4rem;
  animation: heroRise 700ms ease both;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.2rem;
  font-size: 4.8rem;
  line-height: 0.96;
  font-weight: 830;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.55rem;
  line-height: 1.04;
}

h3 {
  font-size: 1.1rem;
}

.hero-line {
  max-width: 37rem;
  margin-bottom: 1rem;
  font-size: 1.52rem;
  line-height: 1.3;
}

.hero-support,
.section p,
.boundary p,
.intake-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-support {
  max-width: 38rem;
  font-size: 1.05rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0.45rem;
  padding: 0.78rem 1.05rem;
  font: inherit;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.button.secondary,
.button.tertiary {
  background: rgba(245, 241, 232, 0.08);
  border-color: var(--line);
  color: var(--ink);
}

.button.tertiary {
  color: var(--muted);
}

.quick-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #11110f;
}

.quick-proof div {
  padding: 1.25rem max(1.25rem, 5vw);
  border-right: 1px solid var(--line);
}

.quick-proof div:last-child {
  border-right: 0;
}

.quick-proof strong,
.quick-proof span {
  display: block;
}

.quick-proof strong {
  margin-bottom: 0.25rem;
}

.quick-proof span {
  color: var(--muted);
}

.section,
.boundary {
  padding: 5.5rem max(1.25rem, 7vw);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.check-list span {
  min-height: 5.4rem;
  display: flex;
  align-items: center;
  padding: 1.15rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #eee8da;
}

.check-list span:nth-child(3n) {
  border-right: 0;
}

.report-band {
  display: grid;
  grid-template-columns: minmax(16rem, 0.82fr) minmax(20rem, 1.18fr);
  gap: 4rem;
  align-items: start;
  background: #eeeedf;
  color: #171713;
}

.report-band .eyebrow,
.pricing .eyebrow {
  color: #47764c;
}

.report-band p {
  color: #565245;
}

.sample-report {
  border: 1px solid rgba(23, 23, 19, 0.16);
  border-radius: 0.5rem;
  background: #faf8ef;
  box-shadow: 0 24px 60px rgba(22, 22, 18, 0.18);
  overflow: hidden;
}

.report-topline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(23, 23, 19, 0.12);
}

.report-topline div {
  padding: 1.15rem;
  border-right: 1px solid rgba(23, 23, 19, 0.12);
}

.report-topline div:last-child {
  border-right: 0;
}

.muted {
  display: block;
  margin-bottom: 0.35rem;
  color: #716b5b;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.findings {
  list-style: none;
  margin: 0;
  padding: 0;
}

.findings li {
  position: relative;
  padding: 1.15rem 1.15rem 1.15rem 5.2rem;
  border-bottom: 1px solid rgba(23, 23, 19, 0.1);
}

.findings li:last-child {
  border-bottom: 0;
}

.risk {
  position: absolute;
  top: 1.1rem;
  left: 1.15rem;
  min-width: 3.1rem;
  border-radius: 999px;
  padding: 0.25rem 0.5rem;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
}

.risk.high {
  background: rgba(238, 107, 110, 0.16);
  color: #9c2025;
}

.risk.medium {
  background: rgba(244, 179, 94, 0.22);
  color: #8a5518;
}

.pricing {
  background: #191a15;
}

.price-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.price-item {
  min-height: 14rem;
  padding: 1.35rem;
  background: var(--paper-soft);
}

.price-item.beta {
  background: #203522;
}

.price-item span,
.price-item strong {
  display: block;
}

.price-item span {
  color: var(--muted);
}

.price-item strong {
  margin: 1.6rem 0 0.8rem;
  font-size: 3rem;
}

.boundary {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(20rem, 1.2fr);
  gap: 3rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #11110f;
}

.intake {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(22rem, 1fr) minmax(18rem, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.intake-form,
.request-preview {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(31, 32, 27, 0.9);
  box-shadow: 0 24px 60px var(--shadow);
}

.intake-form {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
}

label,
fieldset {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  color: #ebe6dc;
  font-weight: 720;
}

fieldset {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  padding: 0.9rem;
}

legend {
  padding: 0 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.check-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-weight: 650;
}

.check-option input {
  width: auto;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(245, 241, 232, 0.18);
  border-radius: 0.4rem;
  background: var(--field);
  color: var(--ink);
  font: inherit;
  padding: 0.8rem 0.85rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(128, 225, 138, 0.58);
  outline-offset: 2px;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--accent);
  font-size: 0.92rem;
}

.request-preview {
  padding: 1rem;
}

.request-preview pre {
  min-height: 26rem;
  max-height: 42rem;
  overflow: auto;
  margin: 0;
  color: #eee8da;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 0.9rem;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem max(1.25rem, 7vw);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #0f100e;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .quick-proof,
  .check-list,
  .report-band,
  .price-row,
  .boundary,
  .intake {
    grid-template-columns: 1fr;
  }

  .quick-proof div,
  .check-list span,
  .report-topline div {
    border-right: 0;
  }

  .check-list span:nth-child(3n) {
    border-right: 0;
  }

  .report-band {
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: absolute;
    padding: 0.85rem 1rem;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-copy {
    width: calc(100% - 2rem);
    margin-inline: 1rem;
  }

  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-line {
    font-size: 1.16rem;
  }

  .section,
  .boundary {
    padding: 4rem 1rem;
  }

  .hero-actions,
  .form-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .report-topline,
  fieldset {
    grid-template-columns: 1fr;
  }

  .findings li {
    padding-left: 1.15rem;
  }

  .risk {
    position: static;
    display: inline-block;
    margin-bottom: 0.65rem;
  }
}
