:root {
  color-scheme: light;
  --ink: #11110f;
  --ink-soft: #3b3c37;
  --paper: #f6f7f1;
  --paper-bright: #ffffff;
  --line: #d9ded4;
  --carbon: #080806;
  --mint: #18c79a;
  --mint-dark: #0b8f72;
  --amber: #f4b24c;
  --coral: #e95f61;
  --blue: #3767d6;
  --shadow: 0 18px 55px rgba(10, 15, 12, 0.13);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--paper-bright);
  color: var(--ink);
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
}

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

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--carbon);
}

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

.hero-bg {
  object-fit: cover;
  object-position: center;
  opacity: 0.74;
  filter: saturate(1.04) contrast(1.06);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 6, 0.95) 0%, rgba(8, 8, 6, 0.73) 42%, rgba(8, 8, 6, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 8, 6, 0.25) 0%, rgba(8, 8, 6, 0.82) 100%);
}

.topbar,
.hero-inner,
.section-inner,
.footer-inner {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  font-weight: 760;
}

.brand-mark {
  display: inline-grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--mint);
  color: var(--carbon);
  font-size: 0.82rem;
  font-weight: 880;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.nav-links a {
  min-height: 2.4rem;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--paper-bright);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(88svh - 4.8rem);
  padding: 4.6rem 0 5.8rem;
}

.eyebrow,
.section-kicker {
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 780;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0.8rem 0 0;
  font-size: 5.2rem;
  line-height: 0.96;
  font-weight: 840;
}

.hero-copy {
  max-width: 720px;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.25rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  max-width: 100%;
  padding: 0.85rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  line-height: 1.2;
  cursor: pointer;
}

.button.primary {
  background: var(--mint);
  color: var(--carbon);
  border-color: var(--mint);
}

.button.primary:hover,
.button.primary:focus {
  background: #23e0ae;
  border-color: #23e0ae;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper-bright);
  border-color: rgba(255, 255, 255, 0.24);
}

.button.secondary:hover,
.button.secondary:focus {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin: 3.6rem 0 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

.proof-strip div {
  min-width: 0;
  padding: 1rem;
  background: rgba(8, 8, 6, 0.58);
}

.proof-strip dt {
  margin: 0 0 0.3rem;
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 780;
}

.proof-strip dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.42;
}

.section {
  padding: 5.6rem 0;
}

.intro-band {
  padding: 3.8rem 0;
  background: var(--paper-bright);
  border-bottom: 1px solid var(--line);
}

.two-column,
.split-layout,
.intake-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

h2 {
  margin: 0.65rem 0 0;
  font-size: 2.6rem;
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.2;
}

.lead,
.section-heading p,
.step-card p,
.value-grid p,
.transparency-list p,
.artifact-card p,
.site-footer p,
.thanks-panel p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.68;
}

.lead {
  font-size: 1.1rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 780px;
  margin-bottom: 2.3rem;
}

.section-heading.compact {
  margin-bottom: 1.5rem;
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-card,
.artifact-card,
.transparency-list article,
.value-grid article,
.intake-form,
.thanks-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-bright);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.step-card {
  display: grid;
  gap: 0.78rem;
  padding: 1.1rem;
}

.step-number {
  width: fit-content;
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.value-band {
  background: var(--carbon);
  color: var(--paper-bright);
}

.value-band .section-kicker {
  color: var(--amber);
}

.value-band h2 {
  max-width: 720px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.value-grid article {
  padding: 1.25rem;
  background: #151511;
  border-color: rgba(255, 255, 255, 0.15);
}

.value-grid h3 {
  color: var(--paper-bright);
}

.value-grid p {
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.74);
}

.transparency-list {
  display: grid;
  gap: 0.8rem;
}

.transparency-list article {
  padding: 1.1rem;
  border-left: 4px solid var(--mint);
}

.transparency-list article:nth-child(2) {
  border-left-color: var(--amber);
}

.transparency-list article:nth-child(3) {
  border-left-color: var(--blue);
}

.transparency-list article:nth-child(4) {
  border-left-color: var(--coral);
}

.transparency-list p {
  margin-top: 0.45rem;
}

.artifacts-band {
  background: #edf2ee;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.artifact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.artifact-card {
  padding: 1.15rem;
}

.artifact-card p {
  margin-top: 0.58rem;
}

.intake-section {
  background: var(--paper-bright);
}

.intake-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.honeypot {
  display: none;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cfd6ca;
  border-radius: 8px;
  background: #fbfcf9;
  color: var(--ink);
  font: inherit;
  padding: 0.85rem 0.9rem;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus,
a:focus {
  outline: 3px solid rgba(24, 199, 154, 0.38);
  outline-offset: 2px;
}

.form-button {
  width: 100%;
}

.site-footer {
  padding: 2.6rem 0;
  background: var(--carbon);
  color: var(--paper-bright);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 1.4rem;
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-small {
  font-size: 0.88rem;
  white-space: nowrap;
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(24, 199, 154, 0.15), transparent 35%),
    var(--paper);
}

.thanks-shell {
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0;
}

.thanks-shell .brand {
  margin-bottom: 5rem;
}

.thanks-panel {
  padding: 2rem;
}

.thanks-panel h1 {
  margin: 0.7rem 0 1rem;
  font-size: 3.2rem;
  line-height: 1.02;
}

.thanks-panel .button {
  margin-top: 1.4rem;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 3.8rem;
  }

  .two-column,
  .split-layout,
  .intake-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .pipeline-grid,
  .value-grid,
  .artifact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-small {
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 92svh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 8, 6, 0.96) 0%, rgba(8, 8, 6, 0.82) 100%),
      linear-gradient(180deg, rgba(8, 8, 6, 0.2) 0%, rgba(8, 8, 6, 0.86) 100%);
  }

  .topbar {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    min-height: calc(92svh - 4.8rem);
    padding: 3.2rem 0 3.8rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

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

  .button {
    width: 100%;
  }

  .proof-strip,
  .pipeline-grid,
  .value-grid,
  .artifact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.8rem 0;
  }

  h2 {
    font-size: 2.05rem;
  }

  .thanks-panel h1 {
    font-size: 2.45rem;
  }
}

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