:root {
  --ink: #0b1f1b;
  --ink-soft: #17352e;
  --paper: #f3f0e7;
  --paper-bright: #fbfaf6;
  --mint: #b9f56a;
  --mint-deep: #81c936;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(11, 31, 27, 0.14);
  --muted-dark: #aac0b8;
  --muted-light: #576a64;
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper-bright);
  background: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(11, 31, 27, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px 10px 10px 3px;
  color: var(--ink);
  background: var(--mint);
  font-size: 1rem;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #dce9e3;
  font-size: 0.92rem;
  font-weight: 600;
}

nav a:not(.nav-cta):hover {
  color: var(--mint);
}

.nav-cta {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(185, 245, 106, 0.45);
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: 7rem 7vw 8rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -15rem;
  left: 35%;
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 203, 56, 0.14), transparent 62%);
  pointer-events: none;
}

.hero-copy,
.opportunity-card {
  position: relative;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.6rem;
  color: var(--mint);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 1.7rem;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: #42751b;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 820px;
  margin-bottom: 1.7rem;
  font-size: clamp(3.25rem, 6.1vw, 6.8rem);
  font-weight: 700;
}

h1 em {
  color: var(--mint);
  font-style: normal;
}

.hero-lede {
  max-width: 720px;
  margin: 0;
  color: var(--muted-dark);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font: 700 0.94rem var(--font-body);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.button-primary:hover {
  background: #ccff88;
}

.button-secondary {
  border-color: var(--line-dark);
  color: var(--paper-bright);
  background: rgba(255, 255, 255, 0.04);
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  margin: 2rem 0 0;
  padding: 0;
  color: #849d94;
  font-size: 0.82rem;
  list-style: none;
}

.principles li::before {
  margin-right: 0.55rem;
  color: var(--mint);
  content: "✓";
}

.opportunity-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line-dark);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}

.card-topline {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line-dark);
  color: #9eb3ac;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-dot {
  color: var(--mint);
}

.status-dot::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(185, 245, 106, 0.08);
  content: "";
}

.opportunity-card h2 {
  margin: 2rem 0 0.4rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

.opportunity-card > p {
  margin: 0;
  color: var(--muted-dark);
}

.route {
  display: grid;
  grid-template-columns: 1fr 18px 1fr 18px 1fr;
  gap: 0.35rem;
  align-items: center;
  margin: 2rem 0;
}

.route div {
  display: flex;
  min-height: 110px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem;
  border: 1px solid var(--line-dark);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.1);
}

.route span,
.audience-grid article > span {
  color: var(--mint);
  font: 700 0.65rem var(--font-display);
}

.route strong {
  font: 700 0.78rem var(--font-display);
}

.route small {
  color: #789088;
  font-size: 0.63rem;
  line-height: 1.25;
}

.route i {
  height: 1px;
  background: var(--line-dark);
}

.card-note {
  padding: 1rem;
  border-left: 2px solid var(--mint);
  color: #a9bdb6;
  background: rgba(185, 245, 106, 0.06);
  font-size: 0.79rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 7vw;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.proof-strip p {
  margin: 0;
  padding: 1.35rem 0;
  color: #8ba097;
  font: 600 0.83rem var(--font-display);
  letter-spacing: 0.01em;
}

.proof-strip p:last-child {
  padding-left: 3rem;
  border-left: 1px solid var(--line-dark);
  color: var(--paper-bright);
}

.section {
  padding: clamp(5rem, 9vw, 9rem) 7vw;
}

.process {
  color: var(--ink);
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 4rem;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1.5rem;
}

.section-heading h2,
.audience-intro h2,
.guardrail-card h2,
.pilot-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
}

.section-heading > p:last-child,
.audience-intro > p:last-child,
.pilot-copy > p {
  margin: 0;
  color: var(--muted-light);
  font-size: 1.08rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.steps li {
  min-height: 250px;
  padding: 1.4rem 1.5rem 1.5rem 0;
  border-right: 1px solid var(--line-light);
}

.steps li:not(:first-child) {
  padding-left: 1.5rem;
}

.steps li:last-child {
  border-right: 0;
}

.steps span {
  color: #62824c;
  font: 700 0.72rem var(--font-display);
}

.steps h3 {
  margin: 4rem 0 0.8rem;
  font-size: 1.45rem;
}

.steps p {
  margin: 0;
  color: var(--muted-light);
  font-size: 0.94rem;
}

.audience {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
}

.audience-intro {
  align-self: center;
}

.audience-intro h2 {
  margin-bottom: 1.5rem;
}

.audience-intro > p:last-child {
  color: var(--muted-dark);
}

.audience-grid {
  display: grid;
  gap: 0.8rem;
}

.audience-grid article {
  padding: 1.6rem;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.audience-grid h3 {
  margin: 2.8rem 0 0.5rem;
  font-size: 1.5rem;
}

.audience-grid p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.94rem;
}

.guardrails {
  padding-top: 0;
}

.guardrail-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 5rem;
  padding: clamp(2rem, 5vw, 5rem);
  border-radius: 28px;
  color: var(--ink);
  background: var(--mint);
}

.guardrail-card h2 {
  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
}

.guardrail-card ul {
  display: grid;
  align-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guardrail-card li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(11, 31, 27, 0.18);
  font-weight: 600;
}

.guardrail-card li::before {
  margin-right: 0.7rem;
  content: "—";
}

.pilot {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  background: #091a17;
}

.pilot-copy {
  align-self: start;
  position: sticky;
  top: 130px;
}

.pilot-copy h2 {
  margin-bottom: 1.5rem;
}

.pilot-copy > p {
  color: var(--muted-dark);
}

.email-link {
  display: inline-block;
  margin-top: 2rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--mint);
  color: var(--mint);
  font-weight: 700;
}

.pilot-form {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.5rem, 3vw, 2.6rem);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: #cedbd6;
  font-size: 0.8rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  outline: none;
  color: var(--paper-bright);
  background: rgba(0, 0, 0, 0.16);
  font: 400 0.95rem var(--font-body);
}

input {
  height: 52px;
  padding: 0 0.9rem;
}

textarea {
  min-height: 130px;
  padding: 0.9rem;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #647b73;
}

input:focus,
textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(185, 245, 106, 0.1);
}

.submit-button {
  width: 100%;
  margin-top: 0.4rem;
}

.form-note {
  margin: 0;
  color: #718880;
  font-size: 0.76rem;
  text-align: center;
}

footer {
  display: grid;
  grid-template-columns: 0.6fr 1.2fr auto;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 7vw;
  border-top: 1px solid var(--line-dark);
  color: #829890;
  font-size: 0.76rem;
}

footer p {
  max-width: 620px;
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 650ms ease, transform 650ms ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1050px) {
  .hero,
  .audience,
  .pilot {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5.5rem;
  }

  .opportunity-card {
    max-width: 700px;
  }

  .audience,
  .pilot {
    gap: 4rem;
  }

  .pilot-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 0 1.1rem;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 0.55rem 0.8rem;
    font-size: 0.78rem;
  }

  .hero,
  .section {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 5rem;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .route {
    grid-template-columns: 1fr;
  }

  .route i {
    width: 1px;
    height: 14px;
    margin-left: 50%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    padding: 0 1.2rem;
  }

  .proof-strip p:last-child {
    padding-left: 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .section-heading,
  .guardrail-card,
  .field-row,
  footer {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 1.5rem;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .steps li:nth-child(2) {
    border-right: 0;
  }

  .steps li:nth-child(n + 3) {
    border-top: 1px solid var(--line-light);
  }

  .guardrail-card {
    gap: 2rem;
  }

  footer {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .steps li,
  .steps li:not(:first-child) {
    min-height: 210px;
    padding-left: 0;
    border-top: 1px solid var(--line-light);
    border-right: 0;
  }

  .steps li:first-child {
    border-top: 0;
  }
}
