:root {
  --ink: #14201f;
  --graphite: #253331;
  --muted: #586764;
  --paper: #f7f8f2;
  --white: #ffffff;
  --line: #dce5df;
  --line-strong: #c7d4cd;
  --teal: #0b8f86;
  --teal-dark: #076a66;
  --mint: #dff5ea;
  --coral: #e6604d;
  --amber: #efb84a;
  --shadow: 0 18px 48px rgba(20, 32, 31, 0.16);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(230, 96, 77, 0.65);
  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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2rem, var(--max-width));
  margin: 1rem auto 0;
  padding: 0.8rem 0.85rem 0.8rem 1rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(20, 32, 31, 0.26);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(20, 32, 31, 0.12);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--coral));
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  min-height: 2.45rem;
  padding: 0.62rem 0.82rem;
  border-radius: 6px;
  color: currentColor;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.nav-active .site-nav a:hover {
  background: rgba(11, 143, 134, 0.1);
}

.site-nav .nav-cta {
  margin-left: 0.35rem;
  color: var(--white);
  background: var(--teal);
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
}

.site-header.is-scrolled .nav-toggle,
.site-header.nav-active .nav-toggle {
  border-color: var(--line);
  background: var(--white);
}

.nav-toggle-line {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 620px;
  height: 84svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

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

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

.hero-scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 26, 24, 0.82) 0%, rgba(13, 26, 24, 0.56) 38%, rgba(13, 26, 24, 0.16) 82%),
    linear-gradient(0deg, rgba(13, 26, 24, 0.48), rgba(13, 26, 24, 0.06));
}

.hero-inner {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding-top: 4.2rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--mint);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 1.1rem;
  font-size: 4.35rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.45rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  text-align: center;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
}

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

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.14);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--graphite);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 720px;
  margin-top: 2rem;
}

.hero-stats span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(20, 32, 31, 0.26);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.hero-stats strong {
  color: var(--white);
  font-size: 1rem;
}

.planner-band,
.live-band,
.marketplace-section,
.passport-section,
.system-section,
.pricing-section,
.pilot-section {
  padding: 5rem 1rem;
}

.planner-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
  gap: 2rem;
  align-items: center;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.section-intro {
  max-width: 520px;
}

.section-intro p:not(.eyebrow),
.passport-copy p,
.pilot-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.planner-tool {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.planner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(90px, 0.7fr);
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--graphite);
  font-weight: 850;
}

label span,
.metric-label {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

select,
input,
textarea {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

select {
  padding: 0 0.85rem;
}

input[type="number"],
input[type="email"] {
  padding: 0 0.85rem;
}

textarea {
  padding: 0.85rem;
}

input[type="range"] {
  accent-color: var(--teal);
}

.segment-group,
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.segment-group {
  margin-top: 1rem;
}

.segment,
.filter-button {
  min-height: 2.55rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--graphite);
  font-weight: 850;
}

.segment {
  flex: 1 1 8rem;
  padding: 0.62rem 0.75rem;
}

.filter-button {
  padding: 0.62rem 0.82rem;
}

.segment.is-active,
.filter-button.is-active {
  color: var(--white);
  border-color: var(--teal);
  background: var(--teal);
}

.estimate-output {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 1rem;
}

.estimate-output > div {
  min-height: 6.2rem;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbf7;
}

.estimate-output strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.55rem;
  line-height: 1;
}

.planner-note {
  min-height: 3.3rem;
  margin: 1rem 0 0;
  padding: 0.85rem;
  border-left: 4px solid var(--amber);
  border-radius: 6px;
  background: #fff8e7;
  color: var(--graphite);
  font-weight: 700;
}

.live-band {
  background: var(--ink);
  color: var(--white);
}

.live-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: start;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.live-band .eyebrow {
  color: var(--mint);
}

.live-band h2 {
  max-width: 520px;
}

.thesis-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.thesis-points article {
  min-height: 12rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.thesis-points strong,
.thesis-points span {
  display: block;
}

.thesis-points strong {
  margin-bottom: 0.6rem;
  color: var(--mint);
  font-size: 1.02rem;
}

.thesis-points span {
  color: rgba(255, 255, 255, 0.75);
}

.marketplace-section,
.system-section,
.pricing-section {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.section-header h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-header.compact {
  align-items: start;
}

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

.listing-card,
.feature-grid article,
.pricing-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.listing-card {
  display: grid;
  gap: 1rem;
  min-height: 18.2rem;
  padding: 1.1rem;
}

.listing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.listing-card h3 {
  margin: 0;
}

.listing-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.32rem 0.58rem;
  border-radius: 6px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.listing-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.listing-meta span {
  min-height: 3.5rem;
  padding: 0.62rem;
  border-radius: 6px;
  background: var(--paper);
  color: var(--graphite);
  font-weight: 850;
}

.listing-meta small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.passport-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: 3rem;
  align-items: center;
  background: #eaf4ef;
}

.passport-copy {
  width: min(100% - 2rem, 540px);
  margin-left: max(1rem, calc((100vw - var(--max-width)) / 2));
}

.passport-panel {
  width: min(100% - 2rem, 470px);
  margin-right: max(1rem, calc((100vw - var(--max-width)) / 2));
  padding: 1.3rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.passport-topline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.passport-topline strong,
.passport-topline span {
  display: block;
}

.passport-topline span {
  color: var(--muted);
  font-weight: 700;
}

.avatar {
  display: grid;
  place-items: center;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.passport-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin: 0 0 1rem;
}

.passport-stats div {
  min-height: 4.5rem;
  padding: 0.72rem;
  border-radius: 8px;
  background: var(--paper);
}

.passport-stats dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.passport-stats dd {
  margin: 0.3rem 0 0;
  font-weight: 900;
}

.skill-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.skill-stack span {
  padding: 0.42rem 0.58rem;
  border-radius: 6px;
  background: #f4ecdc;
  color: #7a5522;
  font-weight: 850;
  font-size: 0.84rem;
}

.progress-list {
  display: grid;
  gap: 0.7rem;
}

.progress-list div {
  display: grid;
  gap: 0.35rem;
}

.progress-list span {
  color: var(--graphite);
  font-weight: 850;
}

.progress-list i {
  display: block;
  height: 0.55rem;
  overflow: hidden;
  border-radius: 6px;
  background: var(--line);
}

.progress-list i::before {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--coral));
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-grid article,
.pricing-grid article {
  padding: 1.15rem;
}

.feature-grid article {
  min-height: 15rem;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-grid p,
.pricing-grid p {
  color: var(--muted);
}

.pricing-section {
  padding-top: 1rem;
}

.supply-gate-section {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 0 0 4rem;
}

.supply-gate-console {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 143, 134, 0.08), rgba(239, 184, 74, 0.12)),
    var(--white);
  box-shadow: var(--shadow);
}

.supply-gate-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 37, 37, 0.05);
}

.supply-gate-option {
  min-height: 2.75rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 850;
}

.supply-gate-option:hover,
.supply-gate-option:focus-visible,
.supply-gate-option.is-active {
  background: var(--ink);
  color: var(--white);
  outline: 0;
}

.supply-gate-output {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.supply-gate-output span,
.supply-gate-output strong {
  display: block;
}

.supply-gate-output span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.supply-gate-output strong {
  margin-top: 0.45rem;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  line-height: 1.08;
}

.supply-gate-output p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.supply-gate-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0;
}

.supply-gate-proof div {
  min-width: 0;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.supply-gate-proof dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.supply-gate-proof dd {
  margin: 0.35rem 0 0;
  color: var(--graphite);
  font-weight: 850;
  line-height: 1.34;
}

.supply-gate-apply {
  width: 100%;
}

.planner-apply {
  width: 100%;
  margin-top: 0.9rem;
}

.brief-section {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(360px, 1fr);
  gap: 1rem;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto 4rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 32, 31, 0.98), rgba(20, 32, 31, 0.9)),
    var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.brief-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.6rem);
}

.brief-copy .eyebrow,
.brief-copy h2 {
  color: var(--white);
}

.brief-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.brief-grid article {
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.brief-grid span,
.brief-grid strong,
.brief-grid p {
  display: block;
}

.brief-grid span {
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-grid strong {
  margin-top: 0.5rem;
  color: var(--white);
}

.brief-grid p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pricing-grid article {
  min-height: 16rem;
}

.pricing-grid .highlight-card {
  border-color: rgba(11, 143, 134, 0.45);
  background: #f1fbf6;
}

.price {
  margin: 0 0 0.7rem;
  color: var(--ink) !important;
  font-size: 2rem;
  font-weight: 950;
}

.pilot-fit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 2rem;
  align-items: start;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 1rem 0 4rem;
}

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

.pilot-fit-console {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pilot-fit-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.pilot-fit-option {
  min-height: 2.65rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 850;
}

.pilot-fit-option:hover,
.pilot-fit-option:focus-visible,
.pilot-fit-option.is-active {
  background: var(--white);
  color: var(--ink);
  outline: 0;
  box-shadow: 0 0.6rem 1.4rem rgba(20, 37, 37, 0.08);
}

.pilot-fit-output {
  padding: 1.1rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.pilot-fit-output span,
.pilot-fit-output strong {
  display: block;
}

.pilot-fit-output span {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pilot-fit-output strong {
  margin-top: 0.5rem;
  font-size: clamp(1.32rem, 2vw, 2rem);
  line-height: 1.08;
}

.pilot-fit-output p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.pilot-fit-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0;
}

.pilot-fit-proof div {
  min-width: 0;
  padding: 0.72rem;
  border-radius: 8px;
  background: var(--paper);
}

.pilot-fit-proof dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pilot-fit-proof dd {
  margin: 0.35rem 0 0;
  color: var(--graphite);
  font-weight: 850;
  line-height: 1.34;
}

.pilot-fit-apply {
  width: 100%;
}

.pilot-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  gap: 2rem;
  align-items: center;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto 3rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.pilot-section .eyebrow {
  color: var(--mint);
}

.pilot-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.pilot-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.pilot-form label span {
  color: rgba(255, 255, 255, 0.78);
}

.pilot-form input,
.pilot-form select,
.pilot-form textarea {
  border-color: rgba(255, 255, 255, 0.24);
}

.pilot-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.pilot-form .full-span {
  grid-column: 1 / -1;
}

.form-message {
  min-height: 1.5rem;
  margin: 0;
  color: var(--mint);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer .brand {
  color: var(--ink);
}

.site-footer p {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .button,
  .site-nav a,
  .segment,
  .filter-button,
  .supply-gate-option,
  .listing-card,
  .pricing-grid article {
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  }

  .button:hover,
  .listing-card:hover,
  .pricing-grid article:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 1020px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .planner-band,
  .live-row,
  .brief-section,
  .passport-section,
  .pilot-fit-section,
  .pilot-section {
    grid-template-columns: 1fr;
  }

  .passport-copy,
  .passport-panel {
    width: min(100% - 2rem, var(--max-width));
    margin: 0 auto;
  }

  .thesis-points,
  .listing-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site-header {
    width: calc(100% - 1rem);
    margin-top: 0.5rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 4.6rem;
    left: 0.5rem;
    right: 0.5rem;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .site-nav .nav-cta {
    display: flex;
    align-items: center;
    width: 100%;
    margin-left: 0;
    color: var(--ink);
    background: transparent;
  }

  .site-nav .nav-cta {
    color: var(--white);
    background: var(--teal);
  }

  .hero {
    min-height: 520px;
    height: 74svh;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-inner {
    padding-top: 3.8rem;
  }

  h1 {
    max-width: 22rem;
    font-size: 2.45rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-copy {
    max-width: 24rem;
    font-size: 1rem;
  }

  .hero-actions {
    max-width: 20rem;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-stats {
    display: none;
  }

  .planner-band,
  .live-band,
  .marketplace-section,
  .supply-gate-section,
  .brief-section,
  .passport-section,
  .system-section,
  .pricing-section,
  .pilot-fit-section,
  .pilot-section {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
  }

  .planner-grid,
  .estimate-output,
  .section-header,
  .thesis-points,
  .listing-grid,
  .passport-stats,
  .supply-gate-options,
  .supply-gate-proof,
  .brief-grid,
  .feature-grid,
  .pricing-grid,
  .pilot-fit-section,
  .pilot-fit-options,
  .pilot-fit-proof,
  .pilot-section {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: start;
  }

  .listing-meta {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding-top: 0;
  }

  .pilot-section {
    margin-bottom: 2rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 0.52rem;
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 2rem;
    height: 2rem;
  }

  h1 {
    font-size: 2.18rem;
  }

  .hero-copy {
    max-width: 19rem;
  }

  .filter-group {
    width: 100%;
  }

  .filter-button {
    flex: 1 1 45%;
  }
}

/* === Phase 2+ upgrade: sticky mobile CTA (self-contained, namespaced) === */
.mcta{position:fixed;left:0;right:0;bottom:0;z-index:9000;display:none;gap:10px;
  padding:10px 14px calc(10px + env(safe-area-inset-bottom,0px));
  background:rgba(13,16,22,.93);border-top:1px solid rgba(255,255,255,.14);
  -webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
  transform:translateY(120%);transition:transform 220ms ease;font-family:inherit}
.mcta.visible{transform:translateY(0)}
.mcta a{display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:50px;border-radius:10px;font-weight:700;font-size:.95rem;text-decoration:none;line-height:1}
.mcta .mcta-call{flex:0 0 112px;color:#fff;background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.26)}
.mcta .mcta-go{flex:1;color:#0c0f14;background:#fff;border:1px solid #fff}
.mcta svg{flex:none}
@media(max-width:768px){.mcta{display:flex}}
@media(prefers-reduced-motion:reduce){.mcta{transition:none}}
