:root {
  --ink: #172421;
  --muted: #56645f;
  --teal: #0f766e;
  --teal-dark: #0a4d49;
  --coral: #ee6c4d;
  --gold: #f6bd3f;
  --mint: #dff5ee;
  --paper: #fffaf2;
  --cream: #f6efe2;
  --white: #ffffff;
  --line: rgba(23, 36, 33, 0.14);
  --shadow: 0 18px 48px rgba(23, 36, 33, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img,
svg {
  display: block;
}

button,
input,
select {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid rgba(23, 36, 33, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  font-weight: 850;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.25);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
}

.brand-mark svg path:first-child {
  fill: currentColor;
  stroke: currentColor;
}

.brand-mark svg path:last-child {
  color: var(--teal);
  stroke-width: 2.2;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(23, 36, 33, 0.76);
  font-size: 0.95rem;
  font-weight: 750;
}

.nav-links a {
  padding: 10px 0;
}

.nav-links a:hover {
  color: var(--teal-dark);
}

.header-cta,
.button {
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 12px 26px rgba(238, 108, 77, 0.26);
}

.header-cta:hover,
.button:hover,
.signup-form button:hover {
  transform: translateY(-1px);
}

.header-cta svg,
.button svg,
.card-icon svg {
  width: 20px;
  height: 20px;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(92svh, 860px);
  padding: 118px clamp(20px, 5vw, 72px) 58px;
  overflow: hidden;
  isolation: isolate;
}

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

.hero > img {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 250, 242, 0.9) 37%, rgba(255, 250, 242, 0.48) 62%, rgba(255, 250, 242, 0.08) 100%),
    linear-gradient(0deg, rgba(23, 36, 33, 0.1), rgba(23, 36, 33, 0.02));
}

.hero-content {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--coral);
}

h1,
h2,
h3,
p,
li {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7.4vw, 6.6rem);
  font-weight: 950;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  font-weight: 920;
}

h3 {
  font-size: 1.18rem;
  font-weight: 900;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(23, 36, 33, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.button {
  min-width: 158px;
  padding: 0 20px;
  border: 2px solid transparent;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 16px 32px rgba(15, 118, 110, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(23, 36, 33, 0.12);
}

.hero-signup {
  width: min(650px, 100%);
  margin-top: 24px;
}

.signup-form {
  display: grid;
  gap: 10px;
}

.hero-signup {
  grid-template-columns: minmax(180px, 1fr) auto;
  align-items: start;
}

.hero-signup .form-note,
.hero-signup .form-message {
  grid-column: 1 / -1;
}

.signup-form label {
  color: var(--ink);
  font-weight: 850;
}

.signup-form input,
.signup-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 36, 33, 0.18);
  border-radius: 8px;
}

.signup-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--teal-dark) 50%), linear-gradient(135deg, var(--teal-dark) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 12px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.signup-form button {
  min-height: 52px;
  padding: 0 18px;
  color: var(--white);
  background: var(--teal);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(15, 118, 110, 0.18);
  transition: transform 180ms ease, opacity 180ms ease;
}

.signup-form button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.form-note,
.form-message {
  min-height: 22px;
  margin: 0;
  font-size: 0.93rem;
}

.form-note {
  color: rgba(23, 36, 33, 0.75);
}

.form-message[data-type="success"] {
  color: var(--teal-dark);
  font-weight: 800;
}

.form-message[data-type="error"] {
  color: #a23621;
  font-weight: 800;
}

.form-message[data-type="pending"] {
  color: var(--muted);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-metrics span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  color: rgba(23, 36, 33, 0.82);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  font-size: 0.92rem;
  backdrop-filter: blur(10px);
}

.hero-metrics strong {
  margin-right: 5px;
  color: var(--ink);
}

.section,
.pilot-band,
.difference-band {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split,
.pilot-layout,
.signup-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.intro {
  background: var(--white);
}

.lead,
.section-copy p,
.pilot-layout p,
.signup-layout p,
.trust-section p {
  color: var(--muted);
  font-size: 1.1rem;
}

.lead {
  margin: 0;
  max-width: 690px;
}

.section-copy p {
  max-width: 590px;
  margin: 24px 0 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 680px;
}

.work-grid,
.role-grid {
  display: grid;
  gap: 16px;
}

.work-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.role-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.info-card {
  min-height: 234px;
  padding: 23px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(23, 36, 33, 0.06);
}

.info-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.step-number,
.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 8px;
  font-weight: 950;
}

.pilot-band {
  background: var(--cream);
}

.pilot-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
}

.pilot-layout p {
  max-width: 610px;
  margin: 24px 0 0;
}

.route-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.route-flow span {
  position: relative;
  display: grid;
  min-height: 68px;
  place-items: center;
  padding: 12px;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.route-flow span:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -11px;
  z-index: 1;
  color: var(--coral);
  font-weight: 950;
}

.difference-band {
  background: var(--teal-dark);
}

.difference-band h2,
.difference-band .eyebrow,
.difference-band .section-copy p {
  color: var(--white);
}

.check-list,
.trust-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.trust-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 760;
}

.check-list li::before,
.trust-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.signup-section {
  background: var(--white);
}

.signup-layout {
  align-items: start;
}

.signup-layout p {
  max-width: 610px;
  margin: 24px 0 0;
}

.signup-panel {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.consent-note {
  padding: 16px 18px;
  background: var(--mint);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  color: var(--teal-dark) !important;
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: var(--ink);
}

.site-footer p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer p:first-child {
  margin-bottom: 6px;
  color: var(--white);
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: start;
  gap: 12px 18px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 760;
}

.footer-links a:hover {
  color: var(--white);
}

.signup-form input:focus,
.signup-form select:focus,
.signup-form button:focus-visible,
.button:focus-visible,
.header-cta:focus-visible,
.nav-links a:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid rgba(246, 189, 63, 0.7);
  outline-offset: 3px;
}

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

@media (max-width: 1120px) {
  .work-grid,
  .role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-card {
    min-height: 208px;
  }
}

@media (max-width: 920px) {
  .site-header {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 250, 242, 0.82) 66%, rgba(255, 250, 242, 0.36) 100%),
      linear-gradient(0deg, rgba(255, 250, 242, 0.72), rgba(255, 250, 242, 0.04) 46%);
  }

  .split,
  .pilot-layout,
  .signup-layout {
    grid-template-columns: 1fr;
  }

  .route-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding-inline: 14px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 12px;
  }

  .header-cta svg {
    display: none;
  }

  .hero {
    padding: 94px 18px 42px;
  }

  .hero > img {
    object-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 250, 242, 0.98) 0%, rgba(255, 250, 242, 0.88) 70%, rgba(255, 250, 242, 0.58) 100%),
      linear-gradient(0deg, rgba(255, 250, 242, 0.82), rgba(255, 250, 242, 0.08) 48%);
  }

  h1 {
    max-width: 11.5ch;
    font-size: clamp(2.65rem, 13vw, 4.25rem);
  }

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

  .button {
    width: 100%;
  }

  .hero-signup {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    display: none;
  }

  .section,
  .pilot-band,
  .difference-band {
    padding-inline: 18px;
  }

  .section-heading {
    display: block;
  }

  .work-grid,
  .role-grid,
  .route-flow {
    grid-template-columns: 1fr;
  }

  .route-flow span:not(:last-child)::after {
    right: auto;
    bottom: -18px;
    transform: rotate(90deg);
  }

  .info-card {
    min-height: 0;
  }

  .signup-panel {
    padding: 20px;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
