/* Lumeyrie marketing site
   Presentation system: Illuminated Evidence Atlas
   The approved copy remains owned by the page files. This stylesheet controls
   only visual hierarchy, layout, interaction, and responsive behaviour. */

:root {
  --ink: #10232f;
  --navy: #123447;
  --navy-deep: #0b2635;
  --blue: #1b4f72;
  --accent: #2e86ab;
  --accent-bright: #53b3d1;
  --sky: #e7f4f8;
  --sky-soft: #f1f8fa;
  --paper: #fbfcf8;
  --paper-warm: #f5f3ec;
  --surface: #ffffff;
  --text: #233641;
  --muted: #61727c;
  --line: rgba(18, 52, 71, 0.14);
  --line-strong: rgba(18, 52, 71, 0.24);
  --white: #ffffff;
  --green: #1e8449;
  --amber: #b7770d;
  --red: #b63a32;
  --dom-power: #b7770d;
  --dom-connectivity: #2e86ab;
  --dom-planning: #1e8449;
  --dom-environmental: #1b7a72;
  --dom-transport: #bf5b3d;
  --dom-commercial: #5b3a8e;
  --dom-noise: #a8447a;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Fraunces", Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --radius-xl: 46px;
  --shadow-sm: 0 8px 22px rgba(11, 38, 53, 0.07);
  --shadow-md: 0 20px 60px rgba(11, 38, 53, 0.12);
  --shadow-lg: 0 34px 100px rgba(11, 38, 53, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 86% 4%, rgba(83, 179, 209, 0.11), transparent 25rem),
    var(--paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

button,
a {
  touch-action: manipulation;
}

a {
  color: var(--blue);
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.tile-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-weight: 600;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.375rem, 4.275vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.042em;
}

h2 {
  font-size: clamp(1.805rem, 2.945vw, 2.85rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.1875rem, 1.615vw, 1.615rem);
  line-height: 1.16;
  letter-spacing: -0.018em;
}

p {
  margin: 0 0 1.2em;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.026rem, 1.3775vw, 1.2065rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.eyebrow,
.banner-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--blue);
  font-size: 0.684rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 1rem;
  height: 1rem;
  flex: none;
  stroke: currentColor;
}

/* ---------- Floating navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.9rem 0 0;
  pointer-events: none;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 5.3rem;
  padding: 0.45rem 0.65rem 0.45rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.35rem;
  background: rgba(252, 253, 250, 0.82);
  box-shadow: 0 12px 36px rgba(11, 38, 53, 0.1);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  pointer-events: auto;
}

.nav-brand {
  display: block;
  flex: none;
  border-radius: var(--radius-sm);
}

.nav-brand img {
  display: block;
  width: auto;
  height: 7.632rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0 0.72rem;
  border-radius: 0.75rem;
  color: var(--ink);
  font-size: 0.817rem;
  font-weight: 650;
  text-decoration: none;
  transition:
    color 160ms ease-out,
    background-color 160ms ease-out,
    transform 100ms ease-out;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue);
  background: rgba(46, 134, 171, 0.09);
}

.nav-links a:active {
  transform: scale(0.97);
}

.nav-links li:last-child a {
  margin-left: 0.35rem;
  padding-inline: 1rem;
  color: var(--white);
  background: var(--navy);
}

.nav-links li:last-child a:hover {
  color: var(--white);
  background: var(--blue);
}

/* ---------- Public listing intake ---------- */

.listing-banner .wrap {
  max-width: 74rem;
}

.listing-banner h1 {
  max-width: 52rem;
}

.listing-banner .lede {
  max-width: 48rem;
}

.listing-section {
  padding-top: 3.5rem;
}

.listing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(30rem, 1.18fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.listing-context {
  position: sticky;
  top: 8rem;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 2rem 0 2.4rem;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border: 1px solid rgba(46, 134, 171, 0.28);
  border-radius: 50%;
  color: var(--blue);
  background: var(--sky-soft);
  font-size: 0.665rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.process-list h2 {
  margin-bottom: 0.55rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.855rem;
  line-height: 1.6;
}

.privacy-note,
.contact-fallback {
  color: var(--muted);
  font-size: 0.817rem;
}

.contact-fallback {
  margin: 1.2rem 0 0;
}

.listing-form-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3.5vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(83, 179, 209, 0.13), transparent 21rem),
    var(--surface);
  box-shadow: var(--shadow-md);
}

.listing-form-card::before {
  content: "";
  position: absolute;
  width: 4.5rem;
  height: 0.24rem;
  top: 0;
  left: clamp(1.5rem, 3.5vw, 3rem);
  border-radius: 0 0 1rem 1rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
}

.listing-form-heading {
  margin-bottom: 2.3rem;
}

.listing-form-heading h2 {
  margin: 1.2rem 0 0.55rem;
  font-size: clamp(1.805rem, 2.565vw, 2.565rem);
}

.listing-form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.855rem;
}

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

.form-field {
  display: grid;
  align-content: start;
  gap: 0.48rem;
}

.form-field-wide,
.consent-row,
.turnstile-shell,
.listing-submit,
.form-status,
.listing-form noscript {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink);
  font-size: 0.779rem;
  font-weight: 750;
}

.form-field label span,
.field-hint {
  color: var(--muted);
  font-size: 0.722rem;
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  outline: 0;
  color: var(--ink);
  background: rgba(251, 252, 248, 0.78);
  font: inherit;
  line-height: 1.4;
  transition:
    border-color 160ms ease-out,
    box-shadow 160ms ease-out,
    background-color 160ms ease-out;
}

.form-field textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: rgba(46, 134, 171, 0.46);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(46, 134, 171, 0.12);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #82919a;
  opacity: 1;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.consent-row {
  display: grid;
  grid-template-columns: 1.15rem minmax(0, 1fr);
  align-items: start;
  gap: 0.75rem;
  margin-top: 0.15rem;
  color: var(--text);
  font-size: 0.817rem;
  cursor: pointer;
}

.consent-row input {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.18rem 0 0;
  accent-color: var(--blue);
}

.turnstile-shell {
  min-height: 4rem;
  padding: 0.85rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--sky-soft);
}

.turnstile-shell > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.779rem;
}

.turnstile-shell.is-unavailable {
  border-style: solid;
  border-color: rgba(183, 119, 13, 0.28);
  background: #fff8ea;
}

.listing-submit {
  justify-self: start;
  min-width: 12rem;
  border: 0;
  cursor: pointer;
}

.listing-submit:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.form-status {
  min-height: 0;
  margin: 0;
  padding: 0;
  border-radius: var(--radius-sm);
  font-size: 0.817rem;
  font-weight: 650;
}

.form-status:not(:empty) {
  padding: 0.85rem 1rem;
}

.form-status-success {
  color: #0f6034;
  background: rgba(30, 132, 73, 0.1);
}

.form-status-error {
  color: #8d2d27;
  background: rgba(182, 58, 50, 0.09);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 0.85rem;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 220ms var(--ease-out), opacity 150ms ease-out;
}

.menu-toggle-lines {
  position: relative;
  margin: auto;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  transform: translateY(-0.4rem);
}

.menu-toggle-lines::after {
  transform: translateY(0.4rem);
}

.nav-open .menu-toggle-lines {
  background: transparent;
}

.nav-open .menu-toggle-lines::before {
  transform: rotate(45deg);
}

.nav-open .menu-toggle-lines::after {
  transform: rotate(-45deg);
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--navy-deep);
  transform: translateY(-140%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

/* ---------- Home hero ---------- */

.hero {
  position: relative;
  min-height: calc(100svh - 1rem);
  padding: clamp(5rem, 8vw, 8.5rem) 0 clamp(7rem, 10vw, 10rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 42rem;
  height: 42rem;
  top: -18rem;
  right: -14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 179, 209, 0.2), rgba(83, 179, 209, 0));
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(26rem, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

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

.hero h1 {
  max-width: 46rem;
  font-size: clamp(2.47rem, 3.42vw, 3.2775rem);
  line-height: 1.04;
  letter-spacing: -0.038em;
}

.hero .lede {
  max-width: 38rem;
  margin-top: 2rem;
}

.accent-rule {
  display: block;
  width: 4.25rem;
  height: 0.28rem;
  margin-top: 2rem;
  border-radius: 1rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 2.25rem;
}

.hero-note {
  color: var(--muted);
  font-size: 0.779rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* The visual is constructed from CSS geometry, not a decorative illustration.
   It represents the real flow from site parcel to evidence signal. */
.evidence-stage {
  --light-x: 64%;
  --light-y: 32%;
  position: relative;
  width: min(100%, 34rem);
  aspect-ratio: 0.94;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(18, 52, 71, 0.13);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at var(--light-x) var(--light-y), rgba(255, 255, 255, 0.98) 0 5%, rgba(231, 244, 248, 0.82) 21%, transparent 44%),
    linear-gradient(145deg, #dcecf0 0%, #f8faf6 48%, #e7eee6 100%);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  transform: rotate(1.2deg);
  transition: transform 500ms var(--ease-soft);
}

.evidence-stage:hover {
  transform: rotate(0deg) translateY(-0.25rem);
}

.evidence-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(18, 52, 71, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 52, 71, 0.14) 1px, transparent 1px);
  background-size: 3.2rem 3.2rem;
  transform: rotate(-8deg) scale(1.15);
}

.evidence-stage::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  background: linear-gradient(108deg, transparent 32%, rgba(255, 255, 255, 0.64) 48%, transparent 63%);
  transform: translateX(-70%);
  animation: illuminateStage 6.5s var(--ease-soft) 0.8s infinite;
}

@keyframes illuminateStage {
  0%,
  62% {
    transform: translateX(-70%);
  }
  82%,
  100% {
    transform: translateX(70%);
  }
}

.parcel {
  position: absolute;
  border: 1.5px solid rgba(18, 52, 71, 0.36);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 0.35rem rgba(255, 255, 255, 0.12);
}

.parcel-one {
  width: 58%;
  height: 43%;
  top: 22%;
  left: 16%;
  clip-path: polygon(12% 4%, 88% 0, 100% 70%, 70% 100%, 7% 82%, 0 28%);
  transform: rotate(-7deg);
}

.parcel-two {
  width: 28%;
  height: 36%;
  top: 7%;
  right: -4%;
  clip-path: polygon(16% 0, 100% 8%, 82% 100%, 0 76%);
  transform: rotate(7deg);
}

.parcel-three {
  width: 48%;
  height: 26%;
  bottom: -3%;
  left: -4%;
  clip-path: polygon(8% 0, 100% 14%, 84% 100%, 0 90%);
}

.site-outline {
  position: absolute;
  width: 43%;
  height: 31%;
  top: 30%;
  left: 23%;
  border: 3px solid var(--accent);
  clip-path: polygon(12% 4%, 88% 0, 100% 70%, 70% 100%, 7% 82%, 0 28%);
  filter: drop-shadow(0 0 0.75rem rgba(46, 134, 171, 0.28));
  transform: rotate(-7deg);
}

.stage-axis {
  position: absolute;
  height: 140%;
  width: 2px;
  top: -20%;
  right: 29%;
  background: rgba(191, 91, 61, 0.55);
  transform: rotate(38deg);
}

.stage-axis::after {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  top: 49%;
  left: 50%;
  border: 2px solid var(--dom-transport);
  border-radius: 50%;
  background: var(--paper);
  transform: translate(-50%, -50%);
}

.source-tag {
  position: absolute;
  display: grid;
  gap: 0.05rem;
  min-width: 7.2rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  font-size: 0.722rem;
  line-height: 1.2;
}

.source-tag::before {
  content: "";
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  top: 50%;
  left: -0.33rem;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.source-tag b {
  font-size: 0.7505rem;
}

.source-tag small {
  color: var(--muted);
  font-size: 0.6175rem;
  font-weight: 600;
}

.source-power {
  top: 12%;
  left: 8%;
}

.source-power::before {
  background: var(--dom-power);
}

.source-planning {
  top: 21%;
  right: 5%;
}

.source-planning::before {
  background: var(--dom-planning);
}

.source-fibre {
  bottom: 12%;
  left: 9%;
}

.source-fibre::before {
  background: var(--dom-connectivity);
}

.source-environment {
  right: 7%;
  bottom: 19%;
}

.source-environment::before {
  background: var(--dom-environmental);
}

.stage-caption {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  color: rgba(18, 52, 71, 0.64);
  font-size: 0.627rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.evidence-stage .wheel {
  position: absolute;
  width: 9rem;
  height: 9rem;
  top: 39%;
  left: 42%;
  z-index: 3;
  transform: translate(-50%, -50%) rotate(-1.2deg);
}

.evidence-stage .wheel-score {
  font-size: 1.615rem;
}

.evidence-stage .wheel-caption {
  font-size: 0.475rem;
}

/* ---------- Evidence score ---------- */

.wheel {
  position: relative;
  --wheel-offset: 25;
}

.wheel-ring {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.wheel-track {
  fill: none;
  stroke: rgba(18, 52, 71, 0.13);
  stroke-width: 7;
}

.wheel-progress {
  fill: none;
  stroke: var(--accent);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.1s var(--ease-soft);
}

.wheel.is-visible .wheel-progress {
  stroke-dashoffset: var(--wheel-offset);
}

.wheel-core {
  position: absolute;
  inset: 21%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  text-align: center;
  backdrop-filter: blur(10px);
}

.wheel-score {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  line-height: 1;
}

.wheel-max {
  margin-left: 1px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.646rem;
}

.wheel-caption {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.532rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wheel-flag {
  position: absolute;
  top: -0.4rem;
  right: -1.6rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.34rem 0.62rem 0.34rem 0.42rem;
  border: 1px solid rgba(182, 58, 50, 0.4);
  border-radius: 2rem;
  color: var(--red);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  font-size: 0.551rem;
  font-weight: 750;
  opacity: 0;
  transform: scale(0.8) translateY(0.4rem);
  transform-origin: left bottom;
  transition:
    opacity 300ms ease-out 720ms,
    transform 400ms var(--ease-out) 720ms;
  white-space: nowrap;
}

.wheel-flag svg {
  width: 0.72rem;
  height: 0.72rem;
  flex: none;
}

.wheel.is-visible .wheel-flag {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.wheel-lg {
  width: 16rem;
  height: 16rem;
}

.wheel-md {
  width: 13.5rem;
  height: 13.5rem;
}

.wheel-md .wheel-score {
  font-size: 2.0425rem;
}

/* ---------- Proof strip ---------- */

.stat-band {
  position: relative;
  z-index: 5;
  margin-top: -4.2rem;
}

.stat-band .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
}

.stat-cell {
  position: relative;
  min-height: 10rem;
  padding: 2rem 1.55rem;
  border-left: 1px solid var(--line);
}

.stat-cell:first-child {
  border-left: 0;
}

.stat-cell::after {
  content: "";
  position: absolute;
  left: 1.55rem;
  bottom: 1.1rem;
  width: 1.4rem;
  height: 0.2rem;
  border-radius: 1rem;
  background: var(--accent);
}

.stat-number {
  display: block;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(1.6625rem, 2.85vw, 2.5175rem);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.7505rem;
  font-weight: 550;
  line-height: 1.45;
}

/* ---------- Page mastheads ---------- */

.page-banner {
  position: relative;
  min-height: 34rem;
  padding: clamp(6rem, 10vw, 10rem) 0 clamp(5rem, 8vw, 8rem);
  overflow: hidden;
}

.page-banner::before,
.page-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.page-banner::before {
  width: 38rem;
  height: 38rem;
  top: -19rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(83, 179, 209, 0.18), transparent 68%);
}

.page-banner::after {
  width: 20rem;
  height: 20rem;
  bottom: -13rem;
  left: 11%;
  border: 1px solid rgba(46, 134, 171, 0.18);
  box-shadow:
    0 0 0 4rem rgba(46, 134, 171, 0.025),
    0 0 0 8rem rgba(46, 134, 171, 0.018);
}

.page-banner .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(24rem, 1.22fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.page-banner .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1.2rem;
}

.page-banner h1 {
  max-width: 42rem;
}

.page-banner .lede {
  max-width: 48rem;
  margin: 0;
}

/* ---------- Long-form chapters ---------- */

.section {
  position: relative;
  padding: clamp(5.5rem, 9vw, 9.5rem) 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-alt {
  background:
    radial-gradient(circle at 85% 16%, rgba(83, 179, 209, 0.08), transparent 20rem),
    linear-gradient(180deg, rgba(231, 244, 248, 0.52), rgba(251, 252, 248, 0.15));
}

.section-tint {
  background:
    linear-gradient(135deg, rgba(231, 244, 248, 0.86), rgba(245, 243, 236, 0.52));
}

.section > .wrap > h2 {
  max-width: 49rem;
  margin-bottom: 2rem;
}

.section > .wrap > h2::before,
.proof-text h2::before {
  content: "";
  display: block;
  width: 2.8rem;
  height: 0.26rem;
  margin-bottom: 1.35rem;
  border-radius: 1rem;
  background: var(--accent);
}

.section > .wrap > p {
  max-width: 52rem;
  font-size: clamp(0.9975rem, 1.33vw, 1.121rem);
  text-wrap: pretty;
}

.page-story .section > .wrap,
.page-who-we-serve .section > .wrap,
.page-how-it-works .section > .wrap:not(.proof-layout) {
  display: grid;
  grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1.28fr);
  column-gap: clamp(3rem, 8vw, 8rem);
}

.page-story .section h2,
.page-who-we-serve .section h2,
.page-how-it-works .section h2 {
  grid-column: 1;
  grid-row: 1 / span 12;
  align-self: start;
}

.page-story .section p,
.page-who-we-serve .section p,
.page-how-it-works .section p,
.page-how-it-works .evidence-banner,
.page-how-it-works .domain-grid {
  grid-column: 2;
}

.page-story .section h2,
.page-who-we-serve .section h2 {
  position: sticky;
  top: 8.5rem;
}

/* ---------- Buttons and calls to action ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.4rem;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-radius: 0.9rem;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 26px rgba(11, 38, 53, 0.18);
  font-size: 0.9025rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 160ms ease-out,
    background-color 160ms ease-out,
    box-shadow 220ms ease-out,
    transform 100ms ease-out;
}

.btn::after {
  content: "\2192";
  transition: transform 180ms var(--ease-out);
}

.btn:hover {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 15px 34px rgba(11, 38, 53, 0.23);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:hover::after {
  transform: translateX(0.22rem);
}

.btn:active {
  transform: scale(0.97);
}

.cta-block {
  position: relative;
  margin: 0;
  padding: clamp(5rem, 8vw, 8rem) 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 18%, rgba(83, 179, 209, 0.26), transparent 22rem),
    var(--navy-deep);
}

.cta-block::before {
  content: "";
  position: absolute;
  width: 26rem;
  height: 26rem;
  left: -13rem;
  bottom: -18rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(255, 255, 255, 0.02),
    0 0 0 8rem rgba(255, 255, 255, 0.014);
}

.cta-block .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-block p {
  max-width: 48rem;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.5675rem, 2.85vw, 2.565rem);
  line-height: 1.12;
  letter-spacing: -0.028em;
  text-wrap: balance;
}

.cta-block .btn {
  flex: none;
  color: var(--navy-deep);
  background: var(--white);
}

.cta-block .btn:hover {
  color: var(--navy-deep);
  background: var(--sky);
}

/* ---------- Proof and evidence components ---------- */

.evidence-banner {
  position: relative;
  margin: 2.6rem 0;
  padding: clamp(1.7rem, 4vw, 2.7rem);
  overflow: hidden;
  border: 1px solid rgba(30, 132, 73, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(30, 132, 73, 0.12), transparent 13rem),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.evidence-banner::after {
  content: "";
  position: absolute;
  width: 0.28rem;
  inset: 0 auto 0 0;
  background: var(--green);
}

.evidence-banner .banner-label {
  margin-bottom: 1rem;
  color: var(--green);
}

.evidence-banner blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(1.1875rem, 1.995vw, 1.7575rem);
  font-style: normal;
  font-weight: 550;
  line-height: 1.23;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.75fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.proof-text p {
  max-width: 48rem;
  font-size: clamp(0.9975rem, 1.33vw, 1.121rem);
}

.proof-graphic {
  display: grid;
  min-height: 27rem;
  place-items: center;
  border: 1px solid rgba(18, 52, 71, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(231, 244, 248, 0.66) 46%, rgba(46, 134, 171, 0.08) 70%),
    var(--sky-soft);
  box-shadow: var(--shadow-md);
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0.8rem;
  margin: 2rem 0;
  padding: 0;
}

.domain-chip {
  position: relative;
  display: block;
  min-height: 4.5rem;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 5px 16px rgba(11, 38, 53, 0.04);
  font-size: 0.855rem;
  font-weight: 650;
  transition:
    border-color 180ms ease-out,
    box-shadow 220ms ease-out,
    transform 180ms var(--ease-out);
}

.domain-chip summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 4.5rem;
  padding: 1rem 3.2rem 1rem 1.1rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.domain-chip summary::-webkit-details-marker {
  display: none;
}

.domain-chip summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.15rem;
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 220ms var(--ease-out);
}

.domain-chip[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.domain-chip summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.domain-description {
  margin: 0;
  padding: 0 1.2rem 1.2rem 3.4rem;
  color: var(--muted);
  font-size: 0.8075rem;
  font-weight: 500;
  line-height: 1.58;
}

.domain-chip::after {
  content: "";
  position: absolute;
  width: 0.25rem;
  inset: 0 auto 0 0;
  background: var(--muted);
}

.domain-chip:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.domain-chip[open] {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.domain-chip summary:active {
  transform: scale(0.99);
}

.domain-chip svg {
  width: 1.45rem;
  height: 1.45rem;
  flex: none;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.domain-chip.d-power::after {
  background: var(--dom-power);
}

.domain-chip.d-power svg {
  stroke: var(--dom-power);
}

.domain-chip.d-planning::after {
  background: var(--dom-planning);
}

.domain-chip.d-planning svg {
  stroke: var(--dom-planning);
}

.domain-chip.d-environmental::after {
  background: var(--dom-environmental);
}

.domain-chip.d-environmental svg {
  stroke: var(--dom-environmental);
}

.domain-chip.d-connectivity::after {
  background: var(--dom-connectivity);
}

.domain-chip.d-connectivity svg {
  stroke: var(--dom-connectivity);
}

.domain-chip.d-transport::after {
  background: var(--dom-transport);
}

.domain-chip.d-transport svg {
  stroke: var(--dom-transport);
}

.domain-chip.d-noise::after {
  background: var(--dom-noise);
}

.domain-chip.d-noise svg {
  stroke: var(--dom-noise);
}

.domain-chip.d-ownership::after {
  background: var(--muted);
}

.domain-chip.d-ownership svg {
  stroke: var(--muted);
}

/* ---------- Audience cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.tile-card {
  position: relative;
  display: flex;
  min-height: 25rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 5%, rgba(83, 179, 209, 0.18), transparent 13rem),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition:
    border-color 220ms ease-out,
    box-shadow 300ms ease-out,
    transform 300ms var(--ease-out);
}

.tile-card::before {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  top: -7rem;
  right: -6rem;
  border: 1px solid rgba(46, 134, 171, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 2.8rem rgba(46, 134, 171, 0.025),
    0 0 0 5.6rem rgba(46, 134, 171, 0.018);
}

.tile-card:hover {
  color: var(--ink);
  border-color: rgba(46, 134, 171, 0.34);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transform: translateY(-0.45rem);
}

.tile-card:active {
  transform: scale(0.985);
}

.tile-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(46, 134, 171, 0.18);
  border-radius: 1rem;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.7);
  place-items: center;
}

.tile-icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

.tile-card h3 {
  max-width: 15rem;
  margin-bottom: 0.8rem;
}

.tile-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.893rem;
}

.t-agents .tile-icon {
  color: var(--dom-connectivity);
}

.t-investors .tile-icon {
  color: var(--dom-planning);
}

.t-landowners .tile-icon {
  color: var(--dom-power);
}

/* ---------- FAQ ---------- */

.faq-grid {
  counter-reset: faq;
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  counter-increment: faq;
  display: grid;
  grid-template-columns: 3rem minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1rem, 4vw, 3rem);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
}

.faq-item::before {
  content: counter(faq, decimal-leading-zero);
  color: var(--accent);
  font-size: 0.684rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.faq-item h3 {
  font-family: var(--font-body);
  font-size: clamp(1.026rem, 1.71vw, 1.273rem);
  line-height: 1.35;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.931rem;
  line-height: 1.65;
}

/* ---------- Contact ---------- */

.page-contact .section {
  min-height: 34rem;
  display: grid;
  align-items: center;
}

.page-contact .tile-card {
  max-width: 52rem !important;
  min-height: 22rem;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-contact .tile-card .btn {
  font-size: clamp(0.95rem, 1.9vw, 1.1875rem);
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  margin: 0.2rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.684rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.chip-blue {
  color: var(--blue);
  border-color: rgba(46, 134, 171, 0.28);
}

.chip-green {
  color: var(--green);
  border-color: rgba(30, 132, 73, 0.28);
}

.chip-amber {
  color: var(--amber);
  border-color: rgba(183, 119, 13, 0.3);
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 2.4rem 0;
  color: rgba(255, 255, 255, 0.66);
  background: var(--navy-deep);
  font-size: 0.779rem;
}

.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.site-footer .tagline {
  color: var(--white);
  font-weight: 650;
}

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

/* ---------- Progressive reveal ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 550ms ease-out,
    transform 650ms var(--ease-out);
}

.js .reveal[data-reveal="left"] {
  transform: translateX(-1.25rem);
}

.js .reveal[data-reveal="scale"] {
  transform: scale(0.97);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.js .stagger-parent > .reveal:nth-child(2) {
  transition-delay: 60ms;
}

.js .stagger-parent > .reveal:nth-child(3) {
  transition-delay: 120ms;
}

.js .stagger-parent > .reveal:nth-child(4) {
  transition-delay: 180ms;
}

.js .stagger-parent > .reveal:nth-child(5) {
  transition-delay: 240ms;
}

.js .stagger-parent > .reveal:nth-child(6) {
  transition-delay: 300ms;
}

.js .stagger-parent > .reveal:nth-child(7) {
  transition-delay: 360ms;
}

/* ---------- Responsive ---------- */

@media (max-width: 1040px) {
  .nav-links a {
    padding-inline: 0.48rem;
    font-size: 0.7505rem;
  }

  .hero .wrap {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.78fr);
    gap: 2.5rem;
  }

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

@media (max-width: 880px) {
  .site-header {
    padding-top: 0.65rem;
  }

  .nav {
    min-height: 5.6rem;
    padding: 0.4rem 0.45rem 0.4rem 0.75rem;
    border-radius: 1.15rem;
  }

  .nav-brand img {
    height: 5.76rem;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.2rem;
    padding: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 1.15rem;
    background: rgba(252, 253, 250, 0.96);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(22px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.6rem) scale(0.985);
    transform-origin: top right;
    transition:
      opacity 180ms ease-out,
      transform 260ms var(--ease-out),
      visibility 0ms linear 260ms;
    visibility: hidden;
  }

  .nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0ms;
    visibility: visible;
  }

  .nav-links a {
    min-height: 3rem;
    padding-inline: 0.9rem;
    font-size: 0.874rem;
  }

  .nav-links li:last-child a {
    margin: 0.25rem 0 0;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 6rem;
  }

  .hero .wrap,
  .page-banner .wrap,
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 50rem;
  }

  .evidence-stage {
    width: min(100%, 37rem);
  }

  .page-banner {
    min-height: 0;
    padding-top: 7rem;
  }

  .page-banner .eyebrow {
    margin-bottom: -1rem;
  }

  .page-banner .lede {
    max-width: 54rem;
  }

  .stat-band {
    margin-top: -2.5rem;
  }

  .stat-band .wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-cell:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stat-cell:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .page-story .section > .wrap,
  .page-who-we-serve .section > .wrap,
  .page-how-it-works .section > .wrap:not(.proof-layout) {
    grid-template-columns: 1fr;
  }

  .page-story .section h2,
  .page-who-we-serve .section h2,
  .page-how-it-works .section h2,
  .page-story .section p,
  .page-who-we-serve .section p,
  .page-how-it-works .section p,
  .page-how-it-works .evidence-banner,
  .page-how-it-works .domain-grid {
    grid-column: 1;
    grid-row: auto;
    position: static;
  }

  .proof-graphic {
    min-height: 22rem;
  }

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

  .tile-card {
    min-height: 18rem;
  }

  .faq-item {
    grid-template-columns: 2.2rem minmax(0, 1fr);
  }

  .faq-item p {
    grid-column: 2;
  }

  .cta-block .wrap {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .listing-context {
    position: static;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  body {
    font-size: 0.95rem;
  }

  h1 {
    font-size: clamp(2.09rem, 8.74vw, 2.6125rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.71rem, 7.22vw, 2.185rem);
    line-height: 1.07;
  }

  .nav {
    min-height: 5.6rem;
  }

  .nav-brand img {
    height: 5.76rem;
  }

  .menu-toggle {
    width: 2.8rem;
    height: 2.8rem;
  }

  .hero {
    padding: 5rem 0 6.5rem;
  }

  .hero .wrap {
    gap: 3.5rem;
  }

  .hero .lede {
    margin-top: 1.5rem;
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.55vw, 2.2325rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .evidence-stage {
    aspect-ratio: 0.88;
    border-radius: 2rem;
  }

  .source-tag {
    min-width: 6rem;
    padding: 0.6rem 0.65rem;
    font-size: 0.646rem;
  }

  .source-tag b {
    font-size: 0.665rem;
  }

  .source-tag small {
    font-size: 0.551rem;
  }

  .evidence-stage .wheel {
    width: 7.5rem;
    height: 7.5rem;
  }

  .wheel-flag {
    right: -1.1rem;
    font-size: 0.475rem;
  }

  .stat-band {
    margin-top: -1.8rem;
  }

  .stat-cell {
    min-height: 9rem;
    padding: 1.35rem 1rem 2rem;
  }

  .stat-cell:nth-child(odd) {
    border-left: 0;
  }

  .stat-label {
    font-size: 0.665rem;
  }

  .page-banner {
    padding: 5.5rem 0 4.5rem;
  }

  .page-banner .wrap {
    gap: 2.2rem;
  }

  .page-banner .eyebrow {
    margin-bottom: -0.65rem;
  }

  .page-banner .lede {
    font-size: 0.95rem;
  }

  .section {
    padding: 5rem 0;
  }

  .section > .wrap > p,
  .proof-text p {
    font-size: 0.95rem;
  }

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

  .domain-chip {
    min-height: 4rem;
  }

  .domain-chip summary {
    min-height: 4rem;
  }

  .evidence-banner blockquote {
    font-size: 1.159rem;
  }

  .proof-graphic {
    min-height: 19rem;
  }

  .wheel-md {
    width: 11rem;
    height: 11rem;
  }

  .tile-card {
    min-height: 17rem;
  }

  .faq-item {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 2rem 0;
  }

  .faq-item p {
    grid-column: 1;
  }

  .cta-block p {
    font-size: 1.5675rem;
  }

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

  .listing-section {
    padding-top: 2rem;
  }

  .listing-form-card {
    padding: 1.35rem;
    border-radius: var(--radius-md);
  }

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

  .form-field,
  .form-field-wide,
  .consent-row,
  .turnstile-shell,
  .listing-submit,
  .form-status,
  .listing-form noscript {
    grid-column: 1;
  }

  .listing-submit {
    width: 100%;
  }
}

@media (hover: hover) and (pointer: fine) {
  .source-tag {
    transition: transform 280ms var(--ease-out);
  }

  .evidence-stage:hover .source-power {
    transform: translate(-0.2rem, -0.2rem);
  }

  .evidence-stage:hover .source-planning {
    transform: translate(0.2rem, -0.2rem);
  }

  .evidence-stage:hover .source-fibre {
    transform: translate(-0.2rem, 0.2rem);
  }

  .evidence-stage:hover .source-environment {
    transform: translate(0.2rem, 0.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .evidence-stage::after {
    animation: none;
  }

  .evidence-stage,
  .source-tag,
  .btn,
  .btn::after,
  .tile-card,
  .domain-chip,
  .domain-chip summary::after,
  .nav-links,
  .wheel-progress,
  .wheel-flag {
    transition-duration: 180ms !important;
    transition-delay: 0ms !important;
  }

  .js .reveal {
    transform: none !important;
    transition: opacity 180ms ease-out;
  }

  .wheel-progress {
    stroke-dashoffset: var(--wheel-offset);
  }

  .wheel-flag {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .nav,
  .nav-links,
  .stat-band .wrap,
  .source-tag,
  .wheel-core {
    background: var(--surface);
    backdrop-filter: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: rgba(18, 52, 71, 0.34);
    --muted: #425863;
  }

  .nav,
  .nav-links,
  .tile-card,
  .domain-chip {
    border-color: var(--line-strong);
  }
}
