/* =============================================================
   DESIGN TOKENS
   Palette: deep pine + bone paper + brass. Chosen because U.S.
   brokerage signage lives in that register, and because it keeps
   the site out of the generic "startup blue" range.
   ============================================================= */

:root {
  --ink:        #0D1F1B;
  --pine:       #17362E;
  --pine-soft:  #24473D;
  --paper:      #EFEEE8;
  --chalk:      #FBFAF7;
  --brass:      #B98D4A;
  --brass-lite: #D8B87C;
  --moss:       #6C7F74;

  --line:       rgba(13, 31, 27, 0.14);
  --line-soft:  rgba(13, 31, 27, 0.07);
  --line-light: rgba(239, 238, 232, 0.18);

  --display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --body:    "Newsreader", Georgia, "Times New Roman", serif;
  --mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --shell:   1180px;
  --gutter:  clamp(1.25rem, 5vw, 3rem);
  --radius:  4px;

  --step-1:  clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
  --step-0:  clamp(1.02rem, 0.98rem + 0.2vw, 1.14rem);
  --step-1u: clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.28rem + 0.85vw, 2rem);
  --step-3:  clamp(1.85rem, 1.5rem + 1.7vw, 2.9rem);
  --step-4:  clamp(2.3rem, 1.7rem + 2.9vw, 4.1rem);
}

/* =============================================================
   BASE
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--chalk);
  padding: 0.7rem 1.1rem;
  z-index: 999;
  font-family: var(--mono);
  font-size: 0.8rem;
}
.skip-link:focus { left: 0; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* =============================================================
   THE STRUCTURAL DEVICE
   Mono field labels borrowed from MLS listing sheets. They mark
   every section and every data pair on the site.
   ============================================================= */

.field-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  margin: 0 0 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.field-label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  flex: none;
}
.field-label--brass { color: var(--brass); }
.field-label--light { color: var(--brass-lite); }

/* =============================================================
   BUTTONS
   ============================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--solid  { background: var(--ink); color: var(--chalk); }
.btn--solid:hover { background: var(--pine-soft); }

.btn--ghost  { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }

.btn--brass  { background: var(--brass); color: var(--ink); }
.btn--brass:hover { background: var(--brass-lite); }

.btn--ghost-light { background: transparent; color: var(--chalk); border-color: var(--line-light); }
.btn--ghost-light:hover { border-color: var(--brass-lite); color: var(--brass-lite); }

/* =============================================================
   MASTHEAD + NAV
   ============================================================= */

.masthead {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(239, 238, 232, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand__mark {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--brass-lite);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
}
.brand__mark--lg { width: 54px; height: 54px; font-size: 1rem; background: var(--brass); color: var(--ink); }

.brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.brand__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
}
.brand__role {
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
}

.nav__list { display: flex; align-items: center; gap: 0.35rem; }

.nav__link {
  display: block;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 0.75rem;
  color: var(--pine);
  border-radius: var(--radius);
  transition: color .2s ease, background-color .2s ease;
}
.nav__link:hover { background: rgba(13, 31, 27, 0.06); }
.nav__link.is-current { color: var(--ink); background: rgba(185, 141, 74, 0.18); }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.6rem 0.85rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle__bars { position: relative; width: 16px; height: 9px; display: block; }
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform .25s ease;
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars::after  { bottom: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-4px) rotate(-45deg); }

/* =============================================================
   SECTIONS
   ============================================================= */

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--chalk { background: var(--chalk); border-block: 1px solid var(--line-soft); }
.section--dark  { background: var(--ink); color: var(--paper); }
.section--dark .section-head__intro { color: rgba(239, 238, 232, 0.72); }

.section-head { max-width: 44ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head__title { font-size: var(--step-3); }
.section-head__intro {
  margin-top: 1.1rem;
  font-size: var(--step-1u);
  line-height: 1.55;
  color: var(--pine);
  font-weight: 300;
}

/* =============================================================
   HOME HERO — built as a listing sheet: the pitch on the left,
   the "property data" panel on the right.
   ============================================================= */

.hero {
  position: relative;
  padding-block: clamp(3rem, 8vw, 6rem) clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px),
                    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 10%, #000 0%, transparent 75%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.hero__title {
  font-size: var(--step-4);
  font-weight: 800;
  max-width: 15ch;
}
.hero__title em {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--pine);
}

.hero__lead {
  margin-top: 1.6rem;
  font-size: var(--step-1u);
  font-weight: 300;
  line-height: 1.55;
  max-width: 46ch;
  color: var(--pine);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.1rem;
}

.hero__credit {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.74rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--moss);
}

/* The listing-sheet panel */
.sheet {
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 46px -32px rgba(13, 31, 27, 0.55);
  overflow: hidden;
}

.sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: var(--ink);
  color: var(--paper);
}
.sheet__ref {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-lite);
}
.sheet__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sheet__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass-lite);
  box-shadow: 0 0 0 0 rgba(216, 184, 124, 0.7);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(216, 184, 124, 0.65); }
  70%  { box-shadow: 0 0 0 9px rgba(216, 184, 124, 0); }
  100% { box-shadow: 0 0 0 0 rgba(216, 184, 124, 0); }
}

.sheet__rows { padding: 0.4rem 1.25rem 1.1rem; }

.sheet__row {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.sheet__row:last-child { border-bottom: 0; }
.sheet__key {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--moss);
}
.sheet__val { font-size: 0.97rem; line-height: 1.5; }

.sheet__foot {
  padding: 1rem 1.25rem;
  background: rgba(185, 141, 74, 0.12);
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.7rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: var(--pine);
}

/* =============================================================
   PAGE HERO (interior pages)
   ============================================================= */

.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid var(--ink);
}
.page-hero__inner { max-width: 58ch; }
.page-hero__title { font-size: var(--step-4); font-weight: 800; }
.page-hero__lead {
  margin-top: 1.4rem;
  font-size: var(--step-1u);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(239, 238, 232, 0.76);
}

/* =============================================================
   PIPELINE — the signature element. Attract to Convert, shown
   as a routed track because that is literally what the system is.
   ============================================================= */

.pipeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-light);
  margin-top: 1rem;
}

.stage {
  position: relative;
  padding: 2.2rem 1.1rem 0.5rem 0;
  border-right: 1px solid var(--line-light);
}
.stage:last-child { border-right: 0; }

.stage::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ink);
  border: 1.5px solid var(--brass);
}
.section--dark .stage::before { background: var(--ink); }

.stage__name {
  font-family: var(--display);
  font-size: var(--step-1u);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.stage__note {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(239, 238, 232, 0.6);
  margin: 0;
}

.pipeline-track {
  position: relative;
  height: 1px;
  background: var(--line-light);
  margin-top: 2.5rem;
  overflow: hidden;
}
.pipeline-track::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 22%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  animation: run 5.5s linear infinite;
}
@keyframes run {
  from { transform: translateX(-120%); }
  to   { transform: translateX(560%); }
}

/* =============================================================
   CARDS + GRIDS
   ============================================================= */

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

.card {
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  position: relative;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 34px;
  height: 3px;
  background: var(--brass);
  transition: width .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 31, 27, 0.28);
  box-shadow: 0 20px 40px -30px rgba(13, 31, 27, 0.6);
}
.card:hover::before { width: 76px; }

.card__tag {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.85rem;
}
.card__title { font-size: var(--step-1u); margin-bottom: 0.7rem; }
.card__desc { color: var(--pine); font-size: 0.98rem; }

.tick-list { margin-top: 1.1rem; display: grid; gap: 0.42rem; }
.tick-list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--pine);
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  background: var(--brass);
  border-radius: 1px;
}

/* =============================================================
   SPLIT (text + data pairs)
   ============================================================= */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.split__body p { font-size: 1.06rem; color: var(--pine); }

.pairs { border-top: 1px solid var(--line); }
.pairs__row {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.pairs__key {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brass);
}
.pairs__val { font-size: 0.98rem; line-height: 1.55; color: var(--pine); }

/* =============================================================
   NUMBERED SEQUENCE (the process — order genuinely matters)
   ============================================================= */

.steps { counter-reset: step; border-top: 1px solid var(--line); }
.step {
  display: grid;
  grid-template-columns: 5rem minmax(0, 15rem) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: background-color .25s ease;
}
.step:hover { background: rgba(185, 141, 74, 0.07); }
.step__num {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--brass);
}
.step__title { font-family: var(--display); font-weight: 700; font-size: 1.1rem; letter-spacing: -0.015em; }
.step__desc { margin: 0; font-size: 0.97rem; color: var(--pine); }

/* =============================================================
   CHIPS (capability lists)
   ============================================================= */

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.chips li {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--chalk);
  color: var(--pine);
}
.section--dark .chips li {
  background: transparent;
  border-color: var(--line-light);
  color: rgba(239, 238, 232, 0.82);
}

.stack-block { padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
.stack-block:last-child { border-bottom: 0; }
.stack-block__name { font-family: var(--display); font-weight: 700; font-size: 1.05rem; }

/* =============================================================
   FAQ
   ============================================================= */

.faq { border-top: 1px solid var(--line); max-width: 78ch; }

.faq__item { border-bottom: 1px solid var(--line); }

.faq__q {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.4rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
  transition: color .2s ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--brass); }
.faq__q::after {
  content: "+";
  margin-left: auto;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--brass);
  transition: transform .25s ease;
  flex: none;
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }

.faq__n {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--brass);
  flex: none;
}

.faq__a {
  padding: 0 0 1.6rem 3.05rem;
  max-width: 68ch;
  color: var(--pine);
  font-size: 0.99rem;
}

/* =============================================================
   CONTACT FORM
   ============================================================= */

.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.form { display: grid; gap: 1.15rem; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem; }
.field { display: grid; gap: 0.45rem; }
.field > label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--moss);
}
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.82rem 0.95rem;
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 170px; resize: vertical; line-height: 1.6; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(185, 141, 74, 0.18);
  outline: none;
}
.field--hp { position: absolute; left: -9999px; }

.form__consent {
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.7;
  color: var(--moss);
}

.notice {
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  background: var(--chalk);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.75rem;
  font-size: 0.97rem;
}
.notice--ok   { border-left-color: #3F7A5E; }
.notice--bad  { border-left-color: #A5442F; }
.notice__title { font-family: var(--display); font-weight: 700; display: block; margin-bottom: 0.25rem; }

.contact-aside { background: var(--chalk); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2rem); }
.contact-aside .pairs { border-top: 0; }
.contact-aside .pairs__row { grid-template-columns: 1fr; gap: 0.25rem; padding: 0.95rem 0; }
.contact-aside .pairs__row:last-child { border-bottom: 0; }
.contact-aside a { color: var(--pine); }

/* =============================================================
   CTA BAND
   ============================================================= */

.cta-band { background: var(--ink); color: var(--paper); padding-block: clamp(3rem, 6vw, 4.75rem); }
.cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.cta-band__title { font-size: var(--step-3); max-width: 22ch; }
.cta-band__text { margin-top: 1rem; max-width: 52ch; color: rgba(239, 238, 232, 0.72); font-weight: 300; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* =============================================================
   FOOTER
   ============================================================= */

.footer { background: var(--pine); color: rgba(239, 238, 232, 0.8); padding-block: clamp(2.75rem, 5vw, 4rem) 2rem; }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.7fr) minmax(0, 0.7fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-light);
}
.footer__pitch { margin-top: 1.1rem; font-size: 1.05rem; max-width: 38ch; color: var(--paper); font-weight: 300; }
.footer__meta { font-family: var(--mono); font-size: 0.72rem; line-height: 1.9; letter-spacing: 0.04em; color: rgba(239, 238, 232, 0.55); }
.footer .field-label { color: var(--brass-lite); }
.footer__links { display: grid; gap: 0.55rem; }
.footer__links a { text-decoration: none; font-size: 0.94rem; transition: color .2s ease; }
.footer__links a:hover { color: var(--brass-lite); }

.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
}
.footer__note { max-width: 66ch; font-family: var(--mono); font-size: 0.7rem; line-height: 1.8; color: rgba(239, 238, 232, 0.5); }
.footer__copy { font-family: var(--mono); font-size: 0.7rem; color: rgba(239, 238, 232, 0.5); }

/* =============================================================
   SCROLL REVEAL
   ============================================================= */

.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; }
  .pipeline { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stage:nth-child(3) { border-right: 0; }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-wrap { grid-template-columns: 1fr; }
  .cta-band__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--chalk);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 0.75rem var(--gutter) 1.25rem;
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { padding: 0.9rem 0.25rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .brand__role { display: none; }

  .split { grid-template-columns: 1fr; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .pipeline { grid-template-columns: 1fr; border-top: 0; }
  .stage { border-right: 0; border-top: 1px solid var(--line-light); padding: 1.75rem 0 1.5rem; }
  .stage::before { top: -6px; }
  .pipeline-track { display: none; }

  .step { grid-template-columns: 3.25rem minmax(0, 1fr); row-gap: 0.4rem; }
  .step__desc { grid-column: 2; }

  .pairs__row { grid-template-columns: 1fr; gap: 0.35rem; }
  .sheet__row { grid-template-columns: 1fr; gap: 0.3rem; }
  .form__row { grid-template-columns: 1fr; }
  .faq__a { padding-left: 0; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
