/* ============================================================================
   Construction Brief — modern design system
   Neutral surfaces, refined brand accents, soft depth, fluid type.
   ========================================================================== */

:root {
  /* Neutrals */
  --bg: #f6f7f9;
  --bg-tint: #f1f3f6;
  --surface: #ffffff;
  --surface-2: #fbfbfc;
  --ink: #10131a;          /* headings / strong */
  --body: #3a4049;         /* body copy */
  --muted: #667085;        /* secondary */
  --faint: #98a1b0;        /* tertiary */
  --line: #eaecf0;         /* hairline */
  --line-strong: #dde1e7;

  /* Near-black panels */
  --night: #12151c;
  --night-2: #1a1e27;
  --night-line: #2b303b;
  --night-text: #c5ccd6;

  /* Brand */
  --red: #e0342c;
  --red-600: #d02b26;
  --red-700: #b21f1c;
  --red-soft: #fdecea;
  --green: #10795a;
  --green-600: #0d6b50;
  --green-700: #0a5540;
  --green-soft: #e6f3ee;

  /* Effects */
  --focus: #2f6bff;
  --ring: 0 0 0 4px rgba(47, 107, 255, .18);
  --shadow-xs: 0 1px 2px rgba(16, 24, 40, .05);
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .04);
  --shadow-md: 0 6px 16px -6px rgba(16, 24, 40, .12), 0 2px 6px -2px rgba(16, 24, 40, .06);
  --shadow-lg: 0 24px 48px -16px rgba(16, 24, 40, .22);

  --radius: 16px;
  --radius-sm: 11px;
  --radius-xs: 8px;
  --radius-lg: 24px;
  --control-height: 48px;
  --shell: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(.4, 0, .2, 1);

  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 420px;
  z-index: -1;
  background:
    radial-gradient(60% 120% at 15% -10%, rgba(224, 52, 44, .06), transparent 60%),
    radial-gradient(50% 120% at 100% -20%, rgba(16, 121, 90, .06), transparent 55%);
  pointer-events: none;
}

a { color: inherit; text-decoration-color: color-mix(in srgb, currentColor 35%, transparent); text-underline-offset: 3px; }
a:hover { color: var(--red-700); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
img, svg { max-width: 100%; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; border-radius: 4px; }

.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;
}
.skip-link {
  position: fixed; top: -60px; left: 20px; z-index: 200;
  padding: 12px 18px; border-radius: 10px; background: var(--ink); color: #fff;
  font-weight: 600; box-shadow: var(--shadow-lg);
}
.skip-link:focus { top: 18px; color: #fff; }
.route-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 300;
  height: 3px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--red), #f37f67 70%, var(--green));
  pointer-events: none;
}
body.is-navigating .route-progress {
  opacity: 1;
  animation: route-progress 1.8s var(--ease) forwards;
}
body.is-navigating { cursor: progress; }
body.is-navigating #main-content { opacity: .72; }
#main-content { transition: opacity 140ms var(--ease); }
@keyframes route-progress {
  0% { transform: scaleX(.05); }
  45% { transform: scaleX(.62); }
  100% { transform: scaleX(.9); }
}
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: 180ms; }
.page-shell { width: var(--shell); margin-inline: auto; }

/* ---------------------------------------------------------------- Header -- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: var(--shell); margin: 0 auto; padding: 15px 0;
}
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  color: var(--ink); font-weight: 700; text-decoration: none; letter-spacing: -.02em;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  display: grid; width: 34px; height: 34px; place-items: center;
  background: linear-gradient(150deg, var(--red) 0%, var(--red-700) 100%);
  color: #fff; font-size: 12px; font-weight: 800; letter-spacing: -.5px;
  border-radius: 9px; box-shadow: 0 4px 10px -3px rgba(224, 52, 44, .5);
}
.brand-name { font-size: 15px; }

.primary-nav { display: flex; align-items: center; gap: 8px; }
.primary-nav a {
  padding: 8px 12px; border-radius: 9px;
  color: var(--body); font-size: 14px; font-weight: 500; text-decoration: none;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.primary-nav a:hover { background: rgba(16, 19, 26, .05); color: var(--ink); }
.primary-nav .nav-cta {
  margin-left: 6px; padding: 9px 16px;
  background: var(--ink); color: #fff; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.primary-nav .nav-cta:hover { background: #000; color: #fff; transform: translateY(-1px); }

.nav-toggle {
  display: none; width: 42px; height: 42px; padding: 0;
  align-items: center; justify-content: center; gap: 5px; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: 11px;
  box-shadow: var(--shadow-xs);
}
.nav-toggle-bar {
  display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}

/* --------------------------------------------------------------- Eyebrow -- */
.eyebrow, .kicker, .activity-label, .fact-label, .estimate-label,
.verified-label, .access-label {
  display: inline-block;
  color: var(--red-700);
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}

/* ------------------------------------------------------------- Headings --- */
h1, h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-variant-numeric: lining-nums proportional-nums;
  font-weight: 500;
  letter-spacing: -.02em;
}
h1 em, h2 em { color: var(--green); font-style: italic; }

/* ------------------------------------------------------------------ Hero -- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .72fr);
  align-items: center;
  gap: clamp(42px, 6vw, 78px);
  padding: 64px 0 70px;
}
.hero-copy { position: relative; z-index: 1; min-width: 0; }
.hero .eyebrow, .hero > .eyebrow {
  padding: 7px 13px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line-strong);
  color: var(--ink); box-shadow: var(--shadow-xs); letter-spacing: .06em;
}
.hero h1, .page-hero h1 {
  max-width: 15ch; margin: 22px 0 24px;
  font-size: clamp(46px, 6.6vw, 86px); letter-spacing: -.035em; line-height: 1.02;
}
.hero h1 { max-width: 12ch; font-size: clamp(48px, 5.8vw, 76px); }
.lede, .page-hero > p {
  max-width: 60ch; margin: 0;
  color: var(--muted); font-size: clamp(18px, 1.5vw, 21px); line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; margin-top: 34px; }
.hero-signup {
  display: flex; width: min(520px, 100%); padding: 6px;
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: 14px; box-shadow: var(--shadow-md);
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.hero-signup:focus-within { border-color: color-mix(in srgb, var(--focus) 45%, var(--line-strong)); box-shadow: var(--shadow-md), var(--ring); }
.hero-signup input {
  min-width: 0; flex: 1; height: 44px; padding: 0 14px;
  border: 0; background: transparent; box-shadow: none;
}
.hero-signup input:focus-visible { outline: none; }

/* Primary buttons */
.hero-signup button, .access-form button, .signup button,
.filters button, .correction-section button {
  padding: 13px 20px; border: 0; border-radius: 11px;
  background: var(--red); color: #fff; font-weight: 600; letter-spacing: -.01em;
  box-shadow: 0 6px 14px -6px rgba(224, 52, 44, .6);
  transition: background .15s var(--ease), transform .12s var(--ease), box-shadow .2s var(--ease);
}
.hero-signup button:hover, .access-form button:hover, .signup button:hover,
.filters button:hover, .correction-section button:hover {
  background: var(--red-600); transform: translateY(-1px);
  box-shadow: 0 10px 20px -8px rgba(224, 52, 44, .65); color: #fff;
}
.hero-signup button:active, .access-form button:active, .signup button:active { transform: translateY(0); }
.hero-signup button { white-space: nowrap; }

.secondary-cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink); font-size: 15px; font-weight: 600; text-decoration: none;
}
.secondary-cta::after { content: "→"; transition: transform .15s var(--ease); color: var(--red); }
.secondary-cta:hover { color: var(--ink); }
.secondary-cta:hover::after { transform: translateX(3px); }

.freshness {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 30px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--muted); font-size: 13px; box-shadow: var(--shadow-xs);
}
.freshness a { color: var(--ink); font-weight: 600; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #16a34a; flex: none;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, .15);
  animation: pulse-dot 2.4s var(--ease) infinite;
}
.live-dot.delayed-dot { background: #d97706; box-shadow: 0 0 0 4px rgba(217, 119, 6, .15); animation: none; }
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(22, 163, 74, .15); }
  50% { box-shadow: 0 0 0 6px rgba(22, 163, 74, .05); }
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 455px;
  margin: 0 0 0 auto;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 7% -8% -5% 14%;
  z-index: -1;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(224, 52, 44, .13), rgba(16, 121, 90, .13));
  filter: blur(22px);
}
.hero-photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 28px;
  background: #d7d3ca;
  box-shadow: 0 32px 70px -28px rgba(16, 24, 40, .42), 0 2px 8px rgba(16, 24, 40, .08);
  isolation: isolate;
}
.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 52%, rgba(8, 15, 13, .46) 100%);
  pointer-events: none;
}
.hero-photo {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 55%;
  transform: translate3d(var(--hero-x, 0px), calc(var(--hero-y, 0px) + var(--hero-scroll, 0px)), 0) scale(1.065);
  transition: transform 420ms var(--ease);
  will-change: transform;
}
.hero-location {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  background: rgba(10, 16, 14, .48);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .01em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-location > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffb14a;
  box-shadow: 0 0 0 4px rgba(255, 177, 74, .18);
}
.hero-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 13px;
  padding: 0 4px;
  color: var(--faint);
  font-size: 11px;
  line-height: 1.45;
}
.hero-visual figcaption a { flex: none; color: var(--muted); font-weight: 600; text-decoration: none; }
.hero-visual figcaption a:hover { color: var(--ink); }

/* ---------------------------------------------------------------- Metrics -- */
.metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--night) 0%, #0b0d12 100%);
  color: #fff; box-shadow: var(--shadow-lg);
}
.metrics article {
  min-height: 158px; padding: 30px 28px; position: relative;
  border-right: 1px solid var(--night-line);
}
.metrics article::before {
  content: ""; position: absolute; top: 30px; left: 28px; width: 24px; height: 3px;
  border-radius: 3px; background: var(--red);
}
.metrics article:last-child { border-right: 0; }
.metrics strong {
  display: block; margin-top: 20px;
  font-family: var(--serif); font-size: 46px; font-weight: 500; line-height: 1;
  font-variant-numeric: lining-nums tabular-nums; letter-spacing: -.02em;
}
.metrics span { display: block; max-width: 16ch; margin-top: 12px; color: var(--night-text); font-size: 13.5px; line-height: 1.45; }

/* --------------------------------------------------------------- Sections -- */
.section { padding: 92px 0; }
.section + .section, .notable-section + .section { border-top: 1px solid var(--line); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.section-heading h2, .signup h2, .trust-section h2, .access-comparison h2, .buyer-example h2 {
  margin: 12px 0 0; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.05;
}
.section-heading > p { max-width: 42ch; margin: 0; color: var(--muted); line-height: 1.6; }

.notable-grid, .results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ---------------------------------------------------------- Project cards -- */
.project-card {
  display: flex; min-width: 0; flex-direction: column; padding: 28px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.project-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.card-meta > span {
  padding: 5px 11px; border-radius: 999px;
  background: var(--red-soft); color: var(--red-700);
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.card-meta strong { color: var(--ink); font-size: 15px; font-weight: 700; font-variant-numeric: tabular-nums; text-align: right; }
.project-card h3, .activity-row h3 {
  overflow-wrap: anywhere; color: var(--ink);
  font-family: var(--sans); font-variant-numeric: lining-nums proportional-nums;
  font-weight: 650; letter-spacing: -.02em;
}
.project-card h3 { max-width: 34ch; margin: 22px 0 8px; font-size: 22px; line-height: 1.25; }
.project-card h3 a, .activity-row h3 a { color: inherit; text-decoration: none; }
.project-card h3 a:hover, .activity-row h3 a:hover { color: var(--red-700); }
.address { margin: 0; color: var(--muted); font-size: 14px; }
.fact-line { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; margin-top: 18px; color: var(--muted); font-size: 13px; }
.fact-line > span:first-child {
  padding: 4px 10px; border-radius: 7px; background: var(--bg-tint);
  color: var(--body); font-weight: 500;
}
.stage-badge { display: inline-flex; align-items: center; gap: 7px; color: var(--green-700); font-size: 13px; font-weight: 600; }
.stage-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }
.decision-signal { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.decision-signal p { margin: 8px 0 9px; color: var(--body); font-size: 14px; line-height: 1.5; }
.decision-signal small { color: var(--muted); font-size: 12px; line-height: 1.45; }
.decision-signal strong { color: var(--ink); }

.commercial-window {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 6px 18px;
  margin: 20px 0; padding: 16px 18px; border-radius: var(--radius-sm);
  background: var(--bg-tint); border: 1px solid var(--line);
}
.commercial-window > div { display: flex; flex-direction: column; gap: 5px; }
.commercial-window strong { color: var(--ink); font-size: 14px; }
.commercial-window > span { color: var(--green-700); font-size: 13px; font-weight: 600; text-align: right; }
.commercial-window p { grid-column: 1 / -1; margin: 4px 0 0; color: var(--muted); font-size: 12.5px; line-height: 1.5; }
.confidence {
  display: inline-flex; align-items: center; gap: 6px; width: fit-content;
  color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase;
}
.confidence::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.commercial-window .confidence { grid-column: 1 / -1; }
.confidence-high { color: #157a53; }
.confidence-medium { color: #b45309; }
.confidence-low, .confidence-not-assessed { color: #8a6d1f; }
.card-actions { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 20px; margin-top: auto; padding-top: 12px; }
.text-link, .source-link, .section-link, .export-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--red-700); font-size: 14px; font-weight: 600; text-decoration: none;
}
.text-link:hover, .source-link:hover, .section-link:hover, .export-link:hover { color: var(--red); }

/* ------------------------------------------------------- Buyer example -- */
.buyer-example {
  display: grid; grid-template-columns: .7fr 1.8fr auto; align-items: center; gap: 24px 45px;
  margin-top: 72px; padding: 34px 38px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.buyer-example h2 { font-size: 26px; }
.buyer-example p { margin: 10px 0 6px; color: var(--body); font-size: 19px; line-height: 1.5; }
.buyer-example p strong { color: var(--ink); }
.buyer-example span:not(.kicker) { color: var(--muted); font-size: 13px; }

/* -------------------------------------------------------- Activity list -- */
.activity-list {
  border-radius: var(--radius); overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.activity-row {
  display: grid; grid-template-columns: 78px minmax(0, 1fr) auto 26px; align-items: center; gap: 24px;
  padding: 22px 24px; border-bottom: 1px solid var(--line);
  transition: background .15s var(--ease);
}
.activity-row:last-child { border-bottom: 0; }
.activity-row:hover { background: var(--surface-2); }
.activity-row time { color: var(--muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; }
.activity-row h3 { margin: 5px 0 4px; font-size: 17px; line-height: 1.3; }
.activity-row p { margin: 0; color: var(--muted); font-size: 13px; }
.activity-label { font-size: 10px; letter-spacing: .1em; color: var(--faint); }
.activity-category {
  padding: 4px 11px; border-radius: 999px; background: var(--green-soft);
  color: var(--green-700); font-size: 11px; font-weight: 600; white-space: nowrap;
}
.row-arrow {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 8px;
  color: var(--red-700); font-size: 16px; text-decoration: none;
  transition: background .15s var(--ease), transform .15s var(--ease);
}
.row-arrow:hover { background: var(--red-soft); transform: translateX(2px); color: var(--red-700); }
.section-link { margin-top: 26px; }

/* ----------------------------------------------------------- Trust grid -- */
.trust-section { display: grid; grid-template-columns: .7fr 1.5fr; gap: 56px 70px; padding: 92px 0; border-top: 1px solid var(--line); }
.trust-section h2 { max-width: 12ch; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.trust-grid article {
  padding: 24px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-xs);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.trust-grid article:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.trust-grid strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: 15.5px; }
.trust-grid p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
.trust-section > .text-link { grid-column: 2; }

/* --------------------------------------------------------- Access cards -- */
.access-comparison { padding: 92px 0; border-top: 1px solid var(--line); }
.access-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 20px; align-items: start; }
.access-grid > article {
  padding: 36px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.access-grid .professional-card {
  background: linear-gradient(165deg, var(--night) 0%, #0b0d12 100%);
  color: #fff; border-color: transparent; box-shadow: var(--shadow-lg);
}
.access-label {
  padding: 5px 11px; border-radius: 999px; background: var(--green-soft);
  color: var(--green-700); letter-spacing: .06em;
}
.professional-card .access-label { background: rgba(255, 255, 255, .1); color: #fff; }
.access-grid h3 { margin: 16px 0 22px; color: inherit; font-family: var(--sans); font-size: 25px; font-weight: 650; letter-spacing: -.02em; }
.professional-card h3 { color: #fff; }
.access-grid ul { margin: 0 0 30px; padding: 0; list-style: none; display: grid; gap: 11px; color: var(--muted); }
.access-grid li { position: relative; padding-left: 28px; font-size: 14.5px; line-height: 1.5; }
.access-grid li::before {
  content: "✓"; position: absolute; left: 0; top: 0; display: grid; place-items: center;
  width: 18px; height: 18px; border-radius: 50%; background: var(--green-soft);
  color: var(--green-700); font-size: 10px; font-weight: 700;
}
.professional-card ul { color: var(--night-text); }
.professional-card li::before { background: rgba(255, 255, 255, .12); color: #fff; }

.button {
  display: inline-flex; align-items: center; gap: 7px; padding: 13px 20px; border-radius: 11px;
  background: var(--red); color: #fff; font-size: 14.5px; font-weight: 600; text-decoration: none;
  box-shadow: 0 6px 14px -6px rgba(224, 52, 44, .6);
  transition: background .15s var(--ease), transform .12s var(--ease), box-shadow .2s var(--ease);
}
.button:hover { background: var(--red-600); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 20px -8px rgba(224, 52, 44, .65); }
.button.secondary { background: var(--ink); box-shadow: var(--shadow-sm); }
.button.secondary:hover { background: #000; }

/* --------------------------------------------------------------- Forms --- */
label { display: flex; flex-direction: column; gap: 8px; color: var(--body); font-size: 13px; font-weight: 600; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line-strong); border-radius: var(--radius-xs);
  background-color: var(--surface); color: var(--ink);
  box-shadow: var(--shadow-xs);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
input::placeholder, textarea::placeholder { color: var(--faint); }
input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]), select {
  height: var(--control-height); min-height: var(--control-height); padding: 0 14px; line-height: 1.2;
}
select {
  appearance: none; -webkit-appearance: none; padding-right: 42px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
}
input:hover, select:hover, textarea:hover { border-color: var(--muted); }
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none; border-color: var(--focus); box-shadow: var(--ring);
}
textarea { min-height: 104px; padding: 12px 14px; resize: vertical; line-height: 1.5; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.access-form { display: grid; gap: 16px; }
.access-form label { color: var(--night-text); }
.access-form input, .access-form select, .access-form textarea {
  border-color: var(--night-line); background-color: rgba(255, 255, 255, .04); color: #fff; box-shadow: none;
}
.access-form input::placeholder, .access-form textarea::placeholder { color: #7c8493; }
.access-form input:hover, .access-form select:hover, .access-form textarea:hover { border-color: #3d4453; }
.access-form input:focus-visible, .access-form select:focus-visible, .access-form textarea:focus-visible {
  border-color: #6d93ff; box-shadow: 0 0 0 4px rgba(109, 147, 255, .22);
}
.access-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c5ccd6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}
.access-form option { color: var(--ink); }
.consent { display: grid; grid-template-columns: 20px minmax(0, 1fr); align-items: start; gap: 10px; font-weight: 500; font-size: 13px; line-height: 1.45; }
.consent input { width: 18px; height: 18px; margin: 1px 0 0; box-shadow: none; accent-color: var(--red); }
.honeypot { position: absolute !important; left: -10000px !important; }
.form-message { margin: 2px 0 0; padding: 11px 14px; border-radius: 9px; background: var(--red-soft); color: var(--red-700); font-size: 13px; font-weight: 500; }
.form-message.success { background: var(--green-soft); color: var(--green-700); }
.professional-card .form-message { background: rgba(224, 52, 44, .16); color: #ffc9c6; }
.professional-card .form-message.success { background: rgba(16, 121, 90, .22); color: #9fe7c8; }

/* -------------------------------------------------------- Signup block --- */
.signup {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px 70px;
  margin-block: 92px; padding: 56px; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--green) 0%, var(--green-700) 100%);
  color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.signup::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 70%); pointer-events: none;
}
.signup .kicker { color: #bff2df; }
.signup h2 { color: #fff; max-width: 16ch; }
.signup p { max-width: 46ch; color: #d4ebe2; line-height: 1.6; }
.signup form { display: grid; gap: 18px; align-self: center; position: relative; }
.signup label { color: #e8f4ef; }
.signup input, .signup select {
  border-color: rgba(255, 255, 255, .28); background-color: rgba(255, 255, 255, .06); color: #fff; box-shadow: none;
}
.signup input::placeholder { color: #b6d6c9; }
.signup input:hover, .signup select:hover { border-color: rgba(255, 255, 255, .5); }
.signup input:focus-visible, .signup select:focus-visible { border-color: #fff; box-shadow: 0 0 0 4px rgba(255, 255, 255, .2); }
.signup select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23e8f4ef' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}
.signup option { color: var(--ink); }
.signup button { background: #fff; color: var(--green-700); box-shadow: var(--shadow-md); }
.signup button:hover { background: #fff; color: var(--green-700); box-shadow: var(--shadow-lg); }
.signup small { color: #bdddce; }
.signup .form-message { background: rgba(255, 255, 255, .14); color: #fff; }
.signup .form-message.success { background: rgba(255, 255, 255, .2); color: #fff; }

/* --------------------------------------------------------- Page heroes --- */
.page-hero { padding: 80px 0 60px; }
.page-hero.narrow { max-width: 62ch; }
.page-hero .eyebrow {
  padding: 7px 13px; border-radius: 999px; background: var(--surface);
  border: 1px solid var(--line-strong); color: var(--ink); box-shadow: var(--shadow-xs); letter-spacing: .06em;
}
.page-hero h1 { font-size: clamp(42px, 5.6vw, 74px); }

/* -------------------------------------------------- Projects discovery --- */
.discovery-layout { display: grid; grid-template-columns: 296px minmax(0, 1fr); gap: 32px; padding-bottom: 96px; }
.filters {
  align-self: start; position: sticky; top: 88px; padding: 24px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.filters form { display: grid; gap: 18px; }
.filter-header { display: flex; align-items: center; justify-content: space-between; }
.filter-header h2 { margin: 0; color: var(--ink); font-family: var(--sans); font-size: 18px; font-weight: 650; letter-spacing: -.01em; }
.filter-header a { color: var(--red-700); font-size: 12px; font-weight: 600; }
.filter-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.filters fieldset { display: grid; gap: 10px; margin: 0; padding: 16px 0; border: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.filters legend { padding: 0 0 4px; color: var(--body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.filters .check { display: grid; grid-template-columns: 18px minmax(0, 1fr); align-items: center; gap: 10px; font-weight: 500; font-size: 13.5px; }
.filters .check input { width: 17px; height: 17px; box-shadow: none; accent-color: var(--red); }
.results-header { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line-strong); }
.results-header h2 { margin: 8px 0 0; color: var(--ink); font-family: var(--sans); font-size: 26px; font-weight: 700; letter-spacing: -.02em; }
.result-note, .result-limit { color: var(--muted); font-size: 13px; line-height: 1.55; }
.result-note { margin: 18px 0 0; }
.results-grid { grid-template-columns: 1fr; margin-top: 24px; }
.project-card-compact { min-height: 0; }
.project-card-compact .commercial-window { margin-bottom: 16px; }
.export-link { padding: 9px 15px; border-radius: 9px; background: var(--surface); border: 1px solid var(--line-strong); box-shadow: var(--shadow-xs); }
.export-link:hover { border-color: var(--muted); }
.empty-state {
  grid-column: 1 / -1; padding: 40px 32px; border-radius: var(--radius);
  background: var(--surface); border: 1px dashed var(--line-strong); color: var(--muted); text-align: center;
}
.empty-state h3 { margin: 0 0 8px; color: var(--ink); font-family: var(--sans); font-weight: 650; }
.empty-state a { color: var(--red-700); font-weight: 600; }

.error-page { min-height: 60vh; }
.error-page h1 { max-width: 18ch; font-size: clamp(40px, 5.4vw, 68px); }
.error-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 20px; margin-top: 30px; }

/* --------------------------------------------------------- Project page -- */
.project-page { padding: 40px 0 96px; }
.breadcrumb { display: flex; gap: 10px; color: var(--muted); font-size: 13px; }
.breadcrumb a { color: var(--muted); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { color: var(--ink); }
.project-header { padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.project-header-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, .5fr); gap: 40px 70px; margin-top: 26px; }
.project-header h1 {
  margin: 14px 0 14px; font-family: var(--sans); font-size: clamp(34px, 4.4vw, 58px);
  font-variant-numeric: lining-nums proportional-nums; font-weight: 700; letter-spacing: -.03em;
  line-height: 1.05; overflow-wrap: anywhere; color: var(--ink);
}
.project-address { color: var(--muted); font-size: 17px; }
.project-summary { padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.project-summary dl, .facts-list { margin: 18px 0 0; }
.project-summary dl div, .facts-list div { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); }
.project-summary dl div:first-of-type, .facts-list div:first-of-type { border-top: 0; }
dt { color: var(--muted); font-size: 12px; font-weight: 600; }
dd { margin: 0; color: var(--ink); font-size: 14px; font-weight: 650; text-align: right; }

.recommended-action {
  display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 0 40px;
  margin: 32px 0 10px; padding: 30px 34px; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--green) 0%, var(--green-700) 100%);
  color: #fff; box-shadow: var(--shadow-lg);
}
.recommended-action h2 { grid-column: 2; margin: -18px 0 8px; color: #fff; font-family: var(--sans); font-size: 22px; font-weight: 650; line-height: 1.3; letter-spacing: -.01em; }
.recommended-action p { grid-column: 2; margin: 0; color: #cfe7dd; font-size: 13px; }
.recommended-action .why-now { margin-bottom: 8px; color: #fff; font-size: 14.5px; line-height: 1.55; }
.recommended-action .estimate-label { color: #a8ecce; }

.detail-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(290px, .55fr); gap: 40px 70px; align-items: start; }
.detail-grid > aside { position: sticky; top: 88px; }
.detail-section { padding: 54px 0; border-bottom: 1px solid var(--line); }
.detail-section h2 { margin: 10px 0 26px; font-size: clamp(28px, 3.4vw, 38px); }
.detail-section h3 { margin: 30px 0 14px; color: var(--ink); font-size: 16px; }

.interpretation-box {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; overflow: hidden;
  border-radius: var(--radius); background: var(--line); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.interpretation-box > div { display: flex; min-height: 118px; flex-direction: column; gap: 8px; padding: 22px; background: var(--surface); }
.interpretation-box span:not(.confidence) { color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.interpretation-box strong { color: var(--ink); font-size: 16px; }
.interpretation-box small { color: var(--muted); font-size: 12.5px; line-height: 1.45; }
.reason-list { display: grid; gap: 10px; padding-left: 0; list-style: none; }
.reason-list li { position: relative; padding-left: 26px; color: var(--body); line-height: 1.55; }
.reason-list li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }
.trade-list { display: grid; gap: 12px; }
.trade-list article { padding: 18px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-xs); }
.trade-list strong { color: var(--ink); }
.trade-list p { margin: 6px 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.trade-list span { color: var(--green-700); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; }
.fact-panel + .detail-section { margin-top: 8px; }
.unknown-list { color: var(--muted); font-size: 14px; }
.section-note { margin-top: 16px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.organization { display: flex; flex-direction: column; gap: 5px; padding: 15px 0; border-top: 1px solid var(--line); }
.organization:first-of-type { border-top: 0; }
.organization strong { color: var(--ink); }
.organization span, .organization small { color: var(--muted); font-size: 11px; }
.organization span { font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }

.timeline { margin: 0; padding: 0; list-style: none; }
.timeline li { position: relative; display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 22px; padding: 24px 0; border-top: 1px solid var(--line); }
.timeline li:first-child { border-top: 0; }
.timeline time { color: var(--muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; }
.timeline h3 { margin: 8px 0 6px; color: var(--ink); font-size: 16px; }
.timeline p { margin: 0 0 8px; color: var(--body); font-size: 14px; line-height: 1.55; }
.timeline small, .timeline a { color: var(--muted); font-size: 11px; }
.timeline a { color: var(--red-700); font-weight: 600; }
.timeline-meta { display: flex; flex-wrap: wrap; gap: 8px 10px; margin-bottom: 4px; }
.timeline-meta span:not(.verified-label):not(.estimate-label) { color: var(--muted); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; }

.source-section { padding-bottom: 20px; }
.source-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; background: var(--surface); font-size: 13px; }
th { padding: 14px 16px; background: var(--bg-tint); color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .05em; text-align: left; text-transform: uppercase; border-bottom: 1px solid var(--line); }
td { padding: 16px; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--body); }
tr:last-child td { border-bottom: 0; }
td strong { color: var(--ink); }
td span { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; }
td a { color: var(--red-700); font-weight: 600; }

.conversion-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 24px 30px;
  margin: 54px 0; padding: 34px 40px; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--night) 0%, #0b0d12 100%); color: #fff; box-shadow: var(--shadow-lg);
}
.conversion-strip h2 { margin: 10px 0 0; color: #fff; font-family: var(--sans); font-size: 23px; font-weight: 650; letter-spacing: -.01em; }
.conversion-strip .kicker { color: #ff9e99; }

.correction-section {
  display: grid; grid-template-columns: .72fr 1.28fr; gap: 40px 60px;
  padding: 48px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.correction-section h2 { margin: 10px 0; font-size: clamp(28px, 3.4vw, 36px); }
.correction-section > div p { color: var(--muted); line-height: 1.6; }
.correction-section form { display: grid; gap: 16px; }

/* --------------------------------------------------------- Methodology --- */
.methodology { padding-bottom: 96px; }
.methodology-nav {
  display: flex; flex-wrap: wrap; gap: 8px; padding: 12px; margin-top: 8px;
  border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-xs);
}
.methodology-nav a { padding: 7px 13px; border-radius: 8px; color: var(--body); font-size: 13px; font-weight: 600; text-decoration: none; transition: background .15s var(--ease), color .15s var(--ease); }
.methodology-nav a:hover { background: var(--bg-tint); color: var(--ink); }
.methodology-grid section { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 32px; padding: 48px 0; border-bottom: 1px solid var(--line); }
.methodology-grid section > span {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  background: var(--red-soft); color: var(--red-700); font-family: var(--serif); font-size: 22px; font-weight: 600;
}
.methodology-grid section > div { max-width: 74ch; }
.methodology-grid h2, .policy-grid h2 { margin: 0 0 14px; color: var(--ink); font-size: clamp(24px, 2.8vw, 32px); }
.methodology-grid p, .methodology-grid li, .policy-grid p { color: var(--body); line-height: 1.7; }
.methodology-grid ul { padding-left: 20px; display: grid; gap: 8px; }
.source-statuses { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.source-statuses article {
  display: flex; min-width: 0; flex-direction: column; gap: 8px; padding: 18px;
  border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-xs);
}
.source-statuses strong { color: var(--ink); font-size: 14px; }
.source-statuses span { display: inline-flex; align-items: center; gap: 6px; color: var(--green-700); font-size: 12px; font-weight: 600; }
.source-statuses span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.source-statuses .status-delayed, .source-statuses .status-attention-required { color: var(--red-700); }
.source-statuses small { color: var(--muted); font-size: 11px; }

.policy-page { min-height: 68vh; padding-bottom: 96px; }
.policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.policy-grid section {
  padding: 32px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-xs);
}
.policy-grid a { color: var(--red-700); font-weight: 600; }

/* --------------------------------------------------------------- Footer -- */
.site-footer { margin-top: 24px; border-top: 1px solid var(--line); background: var(--surface); }
.footer-inner {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px 70px;
  width: var(--shell); margin: 0 auto; padding: 56px 0 40px; color: var(--muted); font-size: 13px;
}
.footer-brand { width: fit-content; margin-bottom: 4px; }
.footer-lead p { margin: 12px 0 0; max-width: 34ch; line-height: 1.55; }
.footer-lead .fine-print { color: var(--faint); font-size: 12px; }
.site-footer .fine-print { font-size: 12px; }
.footer-inner > nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-inner nav div { display: flex; flex-direction: column; gap: 10px; }
.footer-inner nav strong { margin-bottom: 4px; color: var(--ink); font-size: 13px; }
.footer-inner nav a { color: var(--muted); text-decoration: none; }
.footer-inner nav a:hover { color: var(--ink); }
.footer-legal { width: var(--shell); margin: 0 auto; padding: 22px 0 48px; border-top: 1px solid var(--line); color: var(--faint); font-size: 12px; }
.footer-legal a { color: var(--muted); }

/* ------------------------------------------------------------ Responsive - */
@media (max-width: 980px) {
  :root { --shell: min(1180px, calc(100% - 40px)); }
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute; top: calc(100% + 8px); right: max(20px, calc((100% - var(--shell)) / 2));
    left: max(20px, calc((100% - var(--shell)) / 2));
    flex-direction: column; align-items: stretch; gap: 4px; padding: 10px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s var(--ease);
  }
  .site-header.nav-open .primary-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav a { padding: 12px 14px; font-size: 15px; }
  .primary-nav .nav-cta { margin: 4px 0 0; justify-content: center; }
  .site-header.nav-open .nav-toggle-bar:first-child { transform: translateY(3.5px) rotate(45deg); }
  .site-header.nav-open .nav-toggle-bar:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; gap: 42px; padding-top: 58px; }
  .hero-copy { max-width: 780px; }
  .hero h1 { max-width: 14ch; }
  .hero-visual { max-width: none; margin: 0; }
  .hero-photo-frame { aspect-ratio: 16 / 8.4; }
  .hero-photo { object-position: center 54%; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metrics article:nth-child(-n+2) { border-bottom: 1px solid var(--night-line); }
  .metrics article:nth-child(even) { border-right: 0; }
  .buyer-example { grid-template-columns: 1fr; }
  .access-grid, .signup, .trust-section, .project-header-grid, .detail-grid, .correction-section { grid-template-columns: 1fr; }
  .trust-section > .text-link { grid-column: 1; }
  .detail-grid > aside { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: start; }
  .discovery-layout { grid-template-columns: 240px minmax(0, 1fr); gap: 24px; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 28px, 1180px); }
  body { font-size: 15.5px; }
  .site-header-inner { padding: 12px 0; }
  .hero { gap: 34px; padding: 46px 0 48px; }
  .hero h1, .page-hero h1 { font-size: clamp(38px, 12vw, 56px); letter-spacing: -.03em; }
  .hero-photo-frame { aspect-ratio: 4 / 3; border-radius: 20px; }
  .hero-photo { object-position: center 55%; }
  .hero-visual figcaption { align-items: flex-start; flex-direction: column; gap: 3px; }
  .hero-location { right: 14px; bottom: 14px; left: 14px; }
  .hero-actions, .hero-signup { align-items: stretch; flex-direction: column; }
  .hero-signup { width: 100%; }
  .hero-signup button { width: 100%; }
  .secondary-cta { width: fit-content; }
  .metrics { grid-template-columns: 1fr; }
  .metrics article { min-height: 0; padding: 24px; border-right: 0; }
  .metrics article:not(:last-child) { border-bottom: 1px solid var(--night-line); }
  .metrics strong { font-size: 38px; margin-top: 16px; }
  .section, .trust-section, .access-comparison { padding: 60px 0; }
  .section-heading { align-items: start; flex-direction: column; gap: 12px; }
  .notable-grid { grid-template-columns: 1fr; }
  .project-card { padding: 24px; }
  .commercial-window { grid-template-columns: 1fr; }
  .commercial-window > span { text-align: left; }
  .buyer-example { gap: 14px; margin-top: 48px; padding: 28px 24px; }
  .activity-row { grid-template-columns: 54px minmax(0, 1fr) 22px; gap: 12px; padding: 18px 20px; }
  .activity-category { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .access-grid > article, .signup { padding: 32px 24px; }
  .field-grid, .detail-grid > aside, .interpretation-box, .policy-grid, .source-statuses { grid-template-columns: 1fr; }
  .signup { gap: 28px; margin-block: 60px; }
  .discovery-layout { grid-template-columns: 1fr; padding-bottom: 68px; }
  .filters { position: static; }
  .results-header { align-items: start; flex-direction: column; }
  .recommended-action { grid-template-columns: 1fr; gap: 10px; padding: 26px 24px; }
  .recommended-action h2, .recommended-action p { grid-column: 1; margin: 0; }
  .detail-grid { gap: 0; }
  .timeline li { grid-template-columns: 1fr; gap: 8px; }
  .conversion-strip { align-items: start; flex-direction: column; padding: 30px 26px; }
  .correction-section { gap: 28px; padding: 32px 24px; }
  .methodology-grid section { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .methodology-grid section > span { width: 46px; height: 46px; font-size: 19px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner > nav { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .hero-photo { transform: scale(1.02); will-change: auto; }
}
