/* ============================================================
   ORION LABS — Technical / HUD Design System
   bg #000 · fg #fff · lines rgba(255,255,255,.2) · mono only
   ============================================================ */

:root {
  --bg: #000000;
  --fg: #ffffff;
  --muted: rgba(255, 255, 255, 0.6);
  --dim: rgba(255, 255, 255, 0.4);
  --line: rgba(255, 255, 255, 0.2);
  --line-strong: rgba(255, 255, 255, 0.3);
  --font: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 2.4rem; /* Platz für die fixe Statusleiste */
}

/* ===== Boot-Sequenz ===== */

#boot {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease;
}

#boot.done {
  opacity: 0;
  pointer-events: none;
}

#boot pre {
  font-family: var(--font);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  min-width: 17rem;
  min-height: 10rem;
}

::selection { background: var(--fg); color: var(--bg); }

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

:focus-visible {
  outline: 1px solid var(--fg);
  outline-offset: 3px;
}

/* ===== Header ===== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wordmark-main {
  font-weight: 800;
  font-style: italic;
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  transform: skewX(-12deg);
  display: inline-block;
}

.wordmark-sub {
  font-weight: 300;
  font-size: 1.35rem;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.header-divider {
  width: 1px;
  height: 1rem;
  background: var(--dim);
}

.header-est {
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.15em;
}

.header-nav {
  display: flex;
  gap: 2rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

.header-nav a {
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--fg);
  transition: width 0.25s;
}

.header-nav a:hover { color: var(--fg); }
.header-nav a:hover::after { width: 100%; }

.header-coords {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.header-coords .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--dim);
}

/* ===== Corner frame accents ===== */

.corner {
  position: absolute;
  width: 3rem; height: 3rem;
  z-index: 20;
  pointer-events: none;
}

.corner-tl { top: 0; left: 0; border-top: 2px solid var(--line-strong); border-left: 2px solid var(--line-strong); }
.corner-tr { top: 0; right: 0; border-top: 2px solid var(--line-strong); border-right: 2px solid var(--line-strong); }
.corner-bl { bottom: 0; left: 0; border-bottom: 2px solid var(--line-strong); border-left: 2px solid var(--line-strong); }
.corner-br { bottom: 0; right: 0; border-bottom: 2px solid var(--line-strong); border-right: 2px solid var(--line-strong); }

/* ===== Hero ===== */

/* Ecken zwischen Header- und Statusleiste setzen, sonst verdeckt */
.hero > .corner-tl, .hero > .corner-tr { top: 4.5rem; }
.hero > .corner-bl, .hero > .corner-br { bottom: 3.2rem; }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

#orion-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 7rem 1.5rem 6rem;
}

.hero-text { max-width: 34rem; }

/* Section marker (line — number — line) */

.section-marker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.6;
  margin-bottom: 1.25rem;
}

.marker-line {
  flex: 1;
  height: 1px;
  background: var(--fg);
  opacity: 0.7;
}

.marker-line.short { flex: 0 0 2rem; }

.marker-num {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  white-space: nowrap;
}

.hero-title {
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  margin-bottom: 1.1rem;
}

.typed-wrap {
  display: block;
  margin-top: 0.4rem;
  min-height: 1.3em;
  white-space: nowrap;
}

#typed { opacity: 0.92; }

.caret {
  animation: blink 1s steps(1) infinite;
  font-weight: 400;
}

@keyframes blink { 50% { opacity: 0; } }

.dot-row {
  height: 3px;
  margin-bottom: 1rem;
  max-width: 14rem;
  background-image: radial-gradient(circle, var(--fg) 0.75px, transparent 0.8px);
  background-size: 7px 3px;
  opacity: 0.4;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  margin-bottom: 2rem;
  max-width: 30rem;
}

/* ===== Buttons ===== */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  position: relative;
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--fg);
  font-family: var(--font);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--fg);
  background: transparent;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.btn:hover {
  background: var(--fg);
  color: var(--bg);
}

.btn-solid {
  background: var(--fg);
  color: var(--bg);
}

.btn-solid:hover {
  background: transparent;
  color: var(--fg);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
}

.btn-corner {
  position: absolute;
  width: 0.55rem; height: 0.55rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-corner.tl { top: -0.3rem; left: -0.3rem; border-top: 1px solid var(--fg); border-left: 1px solid var(--fg); }
.btn-corner.br { bottom: -0.3rem; right: -0.3rem; border-bottom: 1px solid var(--fg); border-right: 1px solid var(--fg); }

.btn:hover .btn-corner { opacity: 1; }

.hero-notation {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  opacity: 0.4;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
}

/* ===== Fixe HUD-Statusleiste ===== */

.status-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.status-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.status-label {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
}

.equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
}

.equalizer span {
  width: 3px;
  background: rgba(255, 255, 255, 0.3);
  animation: eq 1.1s ease-in-out infinite alternate;
}

.equalizer span:nth-child(1) { height: 40%; animation-delay: 0s; }
.equalizer span:nth-child(2) { height: 80%; animation-delay: 0.12s; }
.equalizer span:nth-child(3) { height: 55%; animation-delay: 0.24s; }
.equalizer span:nth-child(4) { height: 95%; animation-delay: 0.05s; }
.equalizer span:nth-child(5) { height: 35%; animation-delay: 0.3s; }
.equalizer span:nth-child(6) { height: 70%; animation-delay: 0.18s; }
.equalizer span:nth-child(7) { height: 50%; animation-delay: 0.4s; }
.equalizer span:nth-child(8) { height: 85%; animation-delay: 0.09s; }

@keyframes eq { to { transform: scaleY(0.35); } }

.pulse-dots { display: flex; gap: 4px; }

.pulse-dots span {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  animation: pulse 1.4s ease-in-out infinite;
}

.pulse-dots span:nth-child(2) { background: rgba(255, 255, 255, 0.4); animation-delay: 0.2s; }
.pulse-dots span:nth-child(3) { background: rgba(255, 255, 255, 0.2); animation-delay: 0.4s; }

@keyframes pulse { 50% { opacity: 0.2; } }

/* ===== Sections ===== */

.section {
  position: relative;
  padding: 7rem 0;
  border-top: 1px solid var(--line);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section .section-marker { max-width: 22rem; }

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin-bottom: 3.5rem;
}

/* ===== Services ===== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

/* 6 Karten → sauberes 3×2-Raster auf breiten Screens */
@media (min-width: 980px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  position: relative;
  background: var(--bg);
  padding: 2.25rem 1.75rem 2.5rem;
  transition: background 0.25s;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0.6rem; height: 0.6rem;
  border-top: 1px solid var(--fg);
  border-left: 1px solid var(--fg);
  opacity: 0;
  transition: opacity 0.25s;
}

.service-card:hover { background: rgba(255, 255, 255, 0.045); }
.service-card:hover::before { opacity: 0.8; }

.card-index {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--dim);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 0.9rem;
}

.service-card p {
  font-size: 0.8rem;
  color: var(--muted);
}

.card-arrow {
  position: absolute;
  right: 1.5rem; bottom: 1.25rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s;
}

.service-card:hover .card-arrow {
  opacity: 0.7;
  transform: translateX(0);
}

/* ===== Marquee ===== */

.marquee {
  border-top: 1px solid var(--line);
  overflow: hidden;
  padding: 1.1rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--dim);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ===== Process ===== */

.process-list {
  list-style: none;
  max-width: 46rem;
}

.process-step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.process-step:first-child { border-top: 1px solid var(--line); }

.step-num {
  font-size: 1.6rem;
  font-weight: 800;
  font-style: italic;
  color: var(--dim);
  transform: skewX(-8deg);
  line-height: 1.2;
  flex: 0 0 3.5rem;
  transition: color 0.25s;
}

.process-step:hover .step-num { color: var(--fg); }

.step-body h3 {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.step-body p {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 34rem;
}

/* ===== Kontakt ===== */

.section-contact {
  text-align: center;
  padding: 9rem 0;
  overflow: hidden;
}

/* Schmale Screens: eigener Bereich für die Jäger-Figur unter dem Formular */
@media (max-width: 1099px) {
  .section-contact { padding-bottom: 30rem; }
}

#hunter-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}

.section-contact .container {
  position: relative;
  z-index: 1;
}

.section-contact .section-marker {
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.contact-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.section-contact .hero-actions { justify-content: center; }

.contact-mail {
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--dim);
}

/* ===== Kontaktformular ===== */

.contact-form {
  max-width: 34rem;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field { margin-bottom: 1.1rem; }

.form-field label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--fg);
  font-family: var(--font);
  font-size: 0.85rem;
  padding: 0.65rem 0.8rem;
  border-radius: 0;
  transition: border-color 0.2s, background 0.2s;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.6)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  cursor: pointer;
}

.form-field select option {
  background: #000;
  color: #fff;
}

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

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--fg);
  background: rgba(255, 255, 255, 0.03);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0.4rem 0 1.4rem;
  cursor: pointer;
}

.form-consent input {
  accent-color: #ffffff;
  width: 0.9rem;
  height: 0.9rem;
  margin-top: 0.15rem;
  flex: none;
}

.form-consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-consent a:hover { color: var(--fg); }

.form-error {
  font-size: 0.72rem;
  color: #ffb4a8;
  margin-bottom: 1rem;
}

.contact-form .btn { width: 100%; }

.form-hint {
  margin-top: 0.9rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--dim);
  text-align: center;
}

/* ===== Rechtsseiten ===== */

.legal {
  padding: 8.5rem 0 5rem;
  min-height: 70vh;
}

.legal .container { max-width: 52rem; }

.legal-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin-bottom: 2.5rem;
}

.legal-body h2 {
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin: 2.5rem 0 0.9rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.legal-body h3 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  margin: 1.6rem 0 0.6rem;
  color: rgba(255, 255, 255, 0.85);
}

.legal-body p,
.legal-body li,
.legal-body address {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: normal;
}

.legal-body p { margin-bottom: 0.9rem; }

.legal-body ul,
.legal-body ol {
  margin: 0 0 1rem 1.2rem;
}

.legal-body li { margin-bottom: 0.35rem; }

.legal-body a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body strong { color: rgba(255, 255, 255, 0.9); }

.legal-back {
  display: inline-block;
  margin-top: 3rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.legal-back:hover {
  color: var(--fg);
  border-color: var(--fg);
}

/* ===== Service-Unterseiten ===== */

a.service-card { color: inherit; }

.svc-page { padding: 8.5rem 0 5rem; }

.svc-page .container { max-width: 62rem; }

.svc-lead {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 38rem;
  margin-bottom: 3.5rem;
}

.svc-h2 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 3.5rem 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.svc-h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.deliverable {
  background: var(--bg);
  padding: 1.4rem 1.5rem;
}

.deliverable h3 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
}

.deliverable h3::before {
  content: '+ ';
  color: var(--dim);
}

.deliverable p {
  font-size: 0.78rem;
  color: var(--muted);
}

.usecase-list { list-style: none; }

.usecase {
  display: flex;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.usecase:first-child { border-top: 1px solid var(--line); }

.usecase-num {
  font-size: 1.1rem;
  font-weight: 800;
  font-style: italic;
  color: var(--dim);
  transform: skewX(-8deg);
  flex: 0 0 2.2rem;
}

.usecase h3 {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.35rem;
}

.usecase p {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 40rem;
}

.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.stack-tag {
  border: 1px solid var(--line-strong);
  padding: 0.35rem 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.faq-item {
  border: 1px solid var(--line);
  margin-bottom: 0.6rem;
  background: var(--bg);
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  color: var(--dim);
  font-weight: 400;
  flex: none;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item summary:hover { background: rgba(255, 255, 255, 0.04); }

.faq-item p {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.svc-cta {
  position: relative;
  border: 1px solid var(--line-strong);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

.svc-cta .corner { width: 1.5rem; height: 1.5rem; }

.svc-cta p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.svc-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

.svc-nav a {
  color: var(--muted);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.svc-nav a:hover { color: var(--fg); border-color: var(--fg); }

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--fg); }

/* ===== Footer ===== */

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Scroll reveal ===== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.services-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.4s; }

.process-list .reveal:nth-child(2) { transition-delay: 0.08s; }
.process-list .reveal:nth-child(3) { transition-delay: 0.16s; }
.process-list .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ===== Responsive ===== */

.coords-sep { opacity: 0.5; }

@media (max-width: 1180px) {
  .coords-geo, .coords-sep { display: none; }
}

@media (max-width: 900px) {
  .header-coords { display: none; }
}

@media (max-width: 640px) {
  .header-nav { display: none; }
  .wordmark-main, .wordmark-sub { font-size: 1.1rem; }

  .hero-content { padding: 6rem 1.25rem 5rem; }
  .hero-title { letter-spacing: 0.06em; }
  .typed-wrap { white-space: normal; }

  .corner { width: 2rem; height: 2rem; }

  .wide-only { display: none; }

  .section { padding: 4.5rem 0; }
  .section-contact { padding: 6rem 0 28rem; }

  .process-step { gap: 1.25rem; }
  .step-num { flex: 0 0 2.5rem; font-size: 1.3rem; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { flex-direction: column; gap: 0.6rem; }
}

/* ===== Reduced motion ===== */

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

  .caret,
  .equalizer span,
  .pulse-dots span,
  .marquee-track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
