/* ================= Tera Labor — design system ================= */

:root {
  --bg: #04060a;
  --bg-raised: #090d14;
  --bg-card: rgba(255, 255, 255, 0.025);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #e8edf4;
  --text-dim: #8b94a3;
  --text-faint: #5a6272;
  --accent: #66e0ff;
  --accent-deep: #1f8fbf;
  --accent-glow: rgba(102, 224, 255, 0.35);
  --good: #5dfab0;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent-deep); color: #fff; }

a { color: inherit; text-decoration: none; }
em { font-style: normal; }
.dim { color: var(--text-faint); }

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    background 0.35s, border-color 0.35s, color 0.35s;
  will-change: transform;
}
.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffc46b 0%, #ff8a3d 55%, #ff6a1f 100%);
  color: #1c0b00;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 8px 30px -10px rgba(255, 122, 47, 0.55);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 0 30px -4px rgba(255, 138, 61, 0.55),
    0 16px 44px -12px rgba(255, 122, 47, 0.65);
}
.btn-primary:hover::after { transform: translateX(120%); }
.btn-ghost {
  color: var(--text-dim);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,.35); }
.btn-ghost .arrow { transition: transform 0.3s var(--ease-out); }
.btn-ghost:hover .arrow { transform: translateX(4px); }
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; margin-top: 1.5rem; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(4, 6, 10, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand-name {
  font-weight: 700;
  letter-spacing: 0.32em;
  font-size: 0.95rem;
}
.brand-mark {
  display: inline-flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2px;
}
.brand-mark i {
  display: block;
  height: 3px;
  border-radius: 1px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}
.brand-mark i:nth-child(1) { width: 18px; }
.brand-mark i:nth-child(2) { width: 12px; opacity: 0.7; }
.brand-mark i:nth-child(3) { width: 6px; opacity: 0.4; }

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text); }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 42%, transparent 30%, rgba(4,6,10,0.55) 75%, var(--bg) 100%),
    linear-gradient(to bottom, rgba(4,6,10,0.5), transparent 22%, transparent 70%, var(--bg) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
}
.hero-content::before {
  content: "";
  position: absolute;
  inset: -18% -26%;
  background: radial-gradient(ellipse 58% 52% at 50% 48%, rgba(4, 6, 10, 0.85) 20%, rgba(4, 6, 10, 0.5) 55%, transparent 75%);
  z-index: -1;
  pointer-events: none;
}
.hero-sub { text-shadow: 0 1px 18px rgba(4, 6, 10, 0.9); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: 2rem;
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 0 rgba(93, 250, 176, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(93, 250, 176, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(93, 250, 176, 0); }
  100% { box-shadow: 0 0 0 0 rgba(93, 250, 176, 0); }
}
.hero-title {
  font-size: clamp(3rem, 8.5vw, 6.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 1.75rem;
}
.hero-title span { display: block; }
.shimmer {
  background: linear-gradient(100deg, #d8f6ff 25%, #66e0ff 42%, #ffffff 50%, #66e0ff 58%, #d8f6ff 75%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5.5s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 125% 0; }
  100% { background-position: -125% 0; }
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-hud {
  position: absolute;
  z-index: 2;
  bottom: 2.2rem;
  right: 2.5rem;
  display: flex;
  gap: 2rem;
  font-family: var(--font-mono);
}
.hud-item { display: flex; flex-direction: column; gap: 2px; text-align: right; }
.hud-label { font-size: 0.6rem; letter-spacing: 0.25em; color: var(--text-faint); }
.hud-value { font-size: 0.85rem; color: var(--accent); text-shadow: 0 0 12px var(--accent-glow); }
@media (max-width: 760px) { .hero-hud { display: none; } }

.scroll-hint {
  position: absolute;
  z-index: 2;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  display: flex;
  justify-content: center;
}
.scroll-hint span {
  width: 3px; height: 8px;
  border-radius: 2px;
  background: var(--accent);
  margin-top: 7px;
  animation: scrollhint 2s var(--ease-out) infinite;
}
@keyframes scrollhint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- stats strip ---------- */
.stats { border-block: 1px solid var(--border); background: var(--bg-raised); }
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat { text-align: center; }
.stat-value {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.stat-label {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-faint);
}
@media (max-width: 760px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- sections ---------- */
.section { padding: clamp(6rem, 12vw, 10rem) 0; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-inner.narrow { max-width: 860px; }
.section-inner.center { text-align: center; }

.kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.display {
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}
.display em { color: var(--accent); }
.headline {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.headline-sm {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.lede {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 300;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.lede-sm { font-size: 1.05rem; font-weight: 300; color: var(--text-dim); margin-bottom: 1.8rem; }
.section-sub { color: var(--text-dim); max-width: 560px; margin-bottom: 3rem; font-weight: 300; }

/* ---------- capture cards ---------- */
.capture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.5s var(--ease-out), background 0.4s;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(102, 224, 255, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.card:hover { border-color: rgba(102, 224, 255, 0.3); transform: translateY(-4px); }
.card:hover::before { opacity: 1; }
.card-glyph {
  width: 48px; height: 48px;
  color: var(--accent);
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 0 10px var(--accent-glow));
}
.card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.6rem; }
.card p { font-size: 0.92rem; color: var(--text-dim); font-weight: 300; }
.card p em { color: var(--text); }

/* ---------- steps ---------- */
.steps {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
}
.step {
  padding: 2.5rem 2rem 2.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.step + .step { padding-left: 2rem; border-left: 1px solid var(--border); }
@media (max-width: 1000px) {
  .step + .step { border-left: none; padding-left: 0; }
}
.step-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.2em;
}
.step-num::after {
  content: "";
  display: block;
  width: 34px; height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
  margin-top: 0.8rem;
}
.step h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.step p { font-size: 0.92rem; color: var(--text-dim); font-weight: 300; }

/* ---------- partners split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
@media (max-width: 960px) { .split { grid-template-columns: 1fr; gap: 3rem; } }

.checklist {
  list-style: none;
  margin: 0 0 2.4rem;
  display: grid;
  gap: 0.85rem;
}
.checklist li {
  position: relative;
  padding-left: 2rem;
  color: var(--text-dim);
  font-size: 0.98rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.32em;
  width: 16px; height: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--accent) 0 3px, transparent 3.5px),
    radial-gradient(circle at center, rgba(102,224,255,.18) 0 100%);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* terminal panel */
.terminal {
  background: rgba(6, 10, 16, 0.9);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8), 0 0 60px -30px var(--accent-glow);
  font-family: var(--font-mono);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.terminal-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.14); }
.terminal-bar span {
  margin-left: auto;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--text-faint);
}
.terminal-body { padding: 1.6rem 1.4rem; display: grid; gap: 0.9rem; }
.t-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.t-key { color: var(--text-faint); letter-spacing: 0.2em; }
.t-good { color: var(--good); text-shadow: 0 0 12px rgba(93, 250, 176, 0.4); }
.t-accent { color: var(--accent); text-shadow: 0 0 12px var(--accent-glow); }
.t-graph {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 74px;
  margin-top: 0.6rem;
}
.t-graph i {
  flex: 1;
  height: calc(var(--h) * 100%);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(102, 224, 255, 0.08), rgba(102, 224, 255, 0.75));
  animation: graphIn 1.2s var(--ease-out) backwards;
}
.t-graph i:nth-child(odd) { animation-delay: 0.1s; }
@keyframes graphIn { from { height: 0; } }
.t-caption { font-size: 0.62rem; letter-spacing: 0.16em; color: var(--text-faint); text-transform: uppercase; }

/* ---------- archive ---------- */
.archive { overflow: hidden; }
.archive-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 50% 55%, rgba(102, 224, 255, 0.07), transparent 70%),
    repeating-linear-gradient(to bottom, transparent 0 79px, rgba(255,255,255,0.025) 79px 80px),
    repeating-linear-gradient(to right, transparent 0 79px, rgba(255,255,255,0.025) 79px 80px);
  mask-image: radial-gradient(ellipse 75% 70% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 50%, #000 30%, transparent 75%);
}
.archive .section-inner { position: relative; }
.archive-quote {
  margin-top: 3rem;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--text);
  font-style: italic;
}
.archive-attrib {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-faint);
  text-transform: uppercase;
}

/* ---------- quote form ---------- */
.quote { padding-bottom: clamp(7rem, 14vw, 12rem); }
.quote-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: 0 40px 120px -40px rgba(0,0,0,.9), 0 0 80px -40px var(--accent-glow);
}
.quote-head { margin-bottom: 2.4rem; }
.quote-head .section-sub { margin-bottom: 0; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
@media (max-width: 680px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field-full { grid-column: 1 / -1; }
.field span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}
.field span em { color: var(--text-faint); font-size: 0.75rem; }
.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(4, 6, 10, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--text-faint) 50%), linear-gradient(135deg, var(--text-faint) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(102, 224, 255, 0.12);
}
.field input.invalid, .field select.invalid {
  border-color: #ff7676;
  box-shadow: 0 0 0 3px rgba(255, 118, 118, 0.12);
}
.form-fine {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-faint);
}

/* success state */
.form-success { text-align: center; padding: 2.5rem 0 1rem; }
.form-success h3 { font-size: 1.5rem; margin: 1.4rem 0 0.6rem; letter-spacing: -0.01em; }
.form-success p { color: var(--text-dim); font-weight: 300; }
.success-ring { width: 72px; margin: 0 auto; color: var(--good); }
.success-ring svg { width: 100%; }
.success-ring circle, .success-ring path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.success-ring circle {
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: draw 0.9s var(--ease-out) forwards;
  filter: drop-shadow(0 0 12px rgba(93, 250, 176, 0.5));
}
.success-ring path {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: draw 0.5s 0.7s var(--ease-out) forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-raised);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-brand p { margin-top: 1rem; font-size: 0.9rem; color: var(--text-faint); max-width: 260px; }
.footer-cols { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.4rem;
}
.footer-col a { font-size: 0.9rem; color: var(--text-dim); transition: color 0.3s; }
.footer-col a:hover { color: var(--text); }
.footer-base {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-faint);
}
.footer-coords { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em; }

/* ================= mobile polish ================= */
@media (max-width: 600px) {
  .nav-inner { padding: 0.85rem 1.15rem; gap: 1rem; }

  .hero-content { padding: 0 1.35rem; }
  .hero-title { font-size: clamp(2.1rem, 10vw, 3.4rem); margin-bottom: 1.4rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 2.1rem; }
  .hero-cta { flex-direction: column; align-items: stretch; padding: 0 0.5rem; }
  .hero-cta .btn { justify-content: center; }
  .scroll-hint { bottom: 1.4rem; transform: translateX(-50%) scale(0.85); }

  .section-inner { padding: 0 1.35rem; }
  .section { padding: 4.5rem 0; }
  .stats-inner { padding: 2.25rem 1.35rem; gap: 1.6rem 1rem; }
  .stat-label { font-size: 0.78rem; }

  .capture-grid { gap: 1rem; margin-top: 2.25rem; }
  .card { padding: 1.6rem 1.4rem; }

  .step { padding: 2rem 0; }
  .step + .step { padding-left: 0; border-left: none; }

  .checklist li { font-size: 0.92rem; }
  .terminal-body { padding: 1.25rem 1.1rem; }
  .t-line { font-size: 0.72rem; }

  .quote-card { border-radius: 18px; }
  .btn-block { padding: 1rem 1.6rem; }

  .footer-inner { padding: 3rem 1.35rem 2rem; gap: 2.25rem; }
  .footer-cols { gap: 2.25rem; }
  .footer-base { padding: 1.25rem 1.35rem 2rem; flex-direction: column; gap: 0.5rem; }
}
