:root {
  color-scheme: dark;
  --ink: #f7f7f2;
  --muted: #a8aba5;
  --line: rgba(247, 247, 242, 0.16);
  --panel: rgba(12, 13, 14, 0.76);
  --panel-solid: #101112;
  --black: #050506;
  --acid: #ccff00;
  --cyan: #00f0ff;
  --magenta: #ff2ccf;
  --ember: #ff6b2c;
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--ink);
  font-family: "Rajdhani", system-ui, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 240, 255, 0.055), transparent 18%, transparent 82%, rgba(255, 44, 207, 0.05)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 55%, transparent 0 42%, rgba(0, 0, 0, 0.44) 74%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.18), transparent 24%, transparent 70%, rgba(5, 5, 6, 0.42));
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 99;
  transform: translateY(-160%);
  padding: 10px 12px;
  border: 1px solid var(--acid);
  border-radius: 6px;
  background: var(--acid);
  color: #050506;
  font-weight: 800;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

#neural-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: #050506;
  filter: saturate(1.2) contrast(1.08);
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 10;
  width: min(calc(100% - 32px), var(--max));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(5, 5, 6, 0.84), rgba(10, 12, 18, 0.72)),
    radial-gradient(circle at 12% 50%, rgba(204, 255, 0, 0.08), transparent 34%);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36), 0 0 36px rgba(0, 240, 255, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(204, 255, 0, 0.5);
  background: #ccff00;
  color: #070707;
  border-radius: 6px;
  font-family: "Orbitron", "Rajdhani", sans-serif;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: "Orbitron", "Rajdhani", sans-serif;
  font-size: 0.96rem;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  border-color: var(--line);
  outline: none;
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  width: min(calc(100% - 32px), var(--max));
  min-height: 100svh;
  margin: 0 auto;
  padding: 148px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  max-width: 780px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--acid);
  font-family: "Orbitron", "Rajdhani", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Orbitron", "Rajdhani", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 9vw, 6.9rem);
  line-height: 0.88;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.headline-line {
  display: inline;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5.2vw, 4.5rem);
  line-height: 0.96;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.hero-lede,
.section-copy,
.contact-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  border-color: var(--acid);
  background: var(--acid);
  color: #080808;
  box-shadow: 0 0 34px rgba(204, 255, 0, 0.22);
}

.button[aria-disabled="true"] {
  opacity: 0.58;
  pointer-events: none;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.command-board {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 17, 18, 0.86), rgba(5, 5, 6, 0.72)),
    radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.2), transparent 34%),
    radial-gradient(circle at 16% 78%, rgba(255, 44, 207, 0.1), transparent 34%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), 0 0 54px rgba(0, 240, 255, 0.08);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.command-board::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--acid), var(--cyan), var(--magenta), var(--ember));
}

.mode-card,
.route-summary {
  min-width: 0;
  display: grid;
  gap: 10px;
  padding: 20px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.mode-card {
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mode-card:hover,
.mode-card:focus-visible {
  outline: none;
  background: rgba(204, 255, 0, 0.08);
  transform: translateX(4px);
}

.mode-card-primary {
  background: linear-gradient(90deg, rgba(204, 255, 0, 0.11), rgba(255, 255, 255, 0.03));
}

.mode-card span,
.route-summary span {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mode-card strong {
  font-family: "Orbitron", "Rajdhani", sans-serif;
  font-size: clamp(1rem, 2vw, 1.32rem);
  line-height: 1.25;
  overflow-wrap: break-word;
}

.mode-card small,
.route-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.mini-board {
  align-self: stretch;
}

.signal-board {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 17, 18, 0.82), rgba(5, 5, 6, 0.7)),
    radial-gradient(circle at 85% 18%, rgba(204, 255, 0, 0.13), transparent 36%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), 0 0 54px rgba(204, 255, 0, 0.07);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.signal-board::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--acid), var(--cyan), var(--magenta), var(--ember));
}

.signal-topline,
.signal-readout,
.scan-grid {
  padding: 20px;
}

.signal-topline,
.signal-readout,
.scan-grid div {
  border-bottom: 1px solid var(--line);
}

.signal-topline,
.signal-readout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.signal-topline {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.pulse-label {
  color: var(--acid);
}

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

.scan-grid div {
  min-height: 124px;
  padding: 20px;
}

.scan-grid div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.metric {
  display: block;
  margin-bottom: 8px;
  font-family: "Orbitron", "Rajdhani", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.label {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.signal-readout:last-child {
  border-bottom: 0;
}

.signal-readout span {
  color: var(--cyan);
  font-weight: 900;
}

.signal-readout p {
  margin: 0;
  font-weight: 800;
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.section-tight {
  padding-top: 48px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 36px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.offer-card {
  min-height: 500px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(18px);
}

.offer-card-hot {
  border-color: rgba(0, 240, 255, 0.4);
}

.offer-number {
  width: fit-content;
  margin-bottom: 46px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  color: var(--acid);
  font-size: 0.76rem;
  font-weight: 900;
}

.offer-card-hot .offer-number {
  border-color: rgba(204, 255, 0, 0.48);
  background: rgba(204, 255, 0, 0.08);
}

.offer-card h3 {
  font-size: clamp(1.02rem, 1.4vw, 1.28rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.offer-card p {
  color: var(--muted);
  line-height: 1.65;
}

.offer-card dl {
  margin: 34px 0 0;
}

.offer-card dl div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.offer-card dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.offer-card dd {
  margin: 0;
  font-weight: 800;
}

.pricing-note {
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 6, 0.72);
  color: var(--muted);
}

.pricing-note p {
  margin: 0;
  line-height: 1.55;
}

.position-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.position-strip div {
  min-height: 164px;
  padding: 20px;
  background: rgba(5, 5, 6, 0.78);
}

.position-strip span {
  display: block;
  margin-bottom: 24px;
  color: var(--cyan);
  font-family: "Orbitron", "Rajdhani", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.position-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fit-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(18px);
}

.fit-panel h3 {
  margin-bottom: 28px;
}

.fit-panel ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.faq-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 6, 0.76);
  overflow: hidden;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 20px 22px;
  cursor: pointer;
  font-family: "Orbitron", "Rajdhani", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: -2px;
}

.faq-list p {
  max-width: 760px;
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.6;
}

.split-band {
  position: relative;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 6, 0.7);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.process-step {
  min-height: 250px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  display: block;
  margin-bottom: 72px;
  color: var(--magenta);
  font-family: "Orbitron", "Rajdhani", sans-serif;
  font-weight: 900;
}

.process-step p {
  color: var(--muted);
  line-height: 1.6;
}

.proof-layout,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: start;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.proof-tags span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 800;
}

.case-study {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 17, 18, 0.88), rgba(5, 5, 6, 0.78));
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.case-study-media {
  position: relative;
  min-height: 330px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.case-study-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(5, 5, 6, 0.82)),
    linear-gradient(90deg, rgba(204, 255, 0, 0.18), transparent 36%, rgba(255, 44, 207, 0.12));
  pointer-events: none;
}

.case-study-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
  object-position: 38% center;
}

.case-study-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  min-width: 132px;
  padding: 12px;
  border: 1px solid rgba(204, 255, 0, 0.45);
  border-radius: 6px;
  background: rgba(5, 5, 6, 0.82);
  backdrop-filter: blur(14px);
}

.case-study-badge span,
.case-study-kicker {
  display: block;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-badge strong {
  display: block;
  margin-top: 4px;
  color: var(--acid);
  font-family: "Orbitron", "Rajdhani", sans-serif;
  font-size: 1.6rem;
}

.case-study-panel {
  padding: 22px;
}

.case-study-panel h3 {
  margin: 10px 0 20px;
}

.case-study-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.capability-stack {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.media-card,
.start-panel {
  min-width: 0;
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 17, 18, 0.84), rgba(5, 5, 6, 0.72)),
    radial-gradient(circle at 85% 12%, rgba(255, 44, 207, 0.12), transparent 38%);
  backdrop-filter: blur(18px);
}

.media-card span,
.start-panel span {
  display: block;
  margin-bottom: 24px;
  color: var(--magenta);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-card p,
.start-panel p,
.form-note {
  color: var(--muted);
  line-height: 1.6;
}

.media-card a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--acid);
  font-weight: 900;
}

.start-panel .button {
  margin-top: 14px;
}

.start-hero {
  min-height: 72svh;
}

.start-form-section {
  padding-top: 32px;
}

.legal-page {
  max-width: 820px;
  padding-top: 148px;
}

.legal-page h1 {
  font-size: clamp(2.6rem, 8vw, 5.4rem);
}

.legal-page h2 {
  margin-top: 38px;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.legal-page p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.capability-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.capability-row:last-child {
  border-bottom: 0;
}

.capability-row span {
  color: var(--muted);
}

.capability-row strong {
  color: var(--acid);
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.full-field,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--ink);
  padding: 13px 12px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.consent-field {
  display: grid;
  gap: 12px;
  margin: 6px 0 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.consent-field legend {
  padding: 0 8px;
  color: var(--acid);
  font-weight: 900;
}

.checkbox-label {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--muted);
  line-height: 1.45;
}

.checkbox-label input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--acid);
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.12);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 650ms ease, transform 650ms ease;
}

.site-header[data-reveal] {
  opacity: 1;
  transform: translateX(-50%);
}

.hero [data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.site-header[data-reveal].is-visible {
  transform: translateX(-50%);
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .proof-layout,
  .contact-section,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 122px;
    gap: 34px;
  }

  .offer-grid,
  .position-strip,
  .process-rail,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step span {
    margin-bottom: 28px;
  }
}

@media (max-width: 1180px) and (min-width: 921px) {
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .hero,
  .section,
  .site-footer,
  .site-header {
    width: min(calc(100% - 24px), var(--max));
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 9vw, 2.35rem);
    line-height: 1;
    text-wrap: wrap;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.8vw, 2.45rem);
    text-wrap: wrap;
  }

  .hero-copy,
  .command-board,
  .signal-board,
  .contact-form {
    width: 100%;
    max-width: 100%;
  }

  .mode-card strong {
    font-size: 1rem;
    display: block;
    max-width: 27ch;
    overflow-wrap: anywhere;
  }

  .eyebrow,
  .signal-topline,
  .mode-card span,
  .route-summary span,
  .media-card span,
  .start-panel span {
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .eyebrow {
    max-width: 30ch;
  }

  .hero-lede,
  .section-copy,
  .contact-copy p,
  .mode-card small,
  .route-summary p,
  .media-card p,
  .start-panel p {
    max-width: 32ch;
    overflow-wrap: break-word;
  }

  .signal-topline,
  .signal-readout {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    justify-items: start;
  }

  .headline-line {
    display: block;
  }

  .pulse-label {
    text-align: left;
  }

  .hero-actions,
  .site-footer,
  .capability-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .scan-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .scan-grid div:nth-child(odd) {
    border-right: 0;
  }

  .case-study-media,
  .case-study-media img {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
