/* ═══════════════════════════════════════════════
   Axon Agentic Engineering — Shared Stylesheet
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap');

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

:root {
  --bg:      #07070F;
  --surface: #0C0C15;
  --card:    #111119;
  --border:  #24242F;
  --accent:  #E8EBF4;
  --accent2: #AAB2C6;
  --success: #BFE9D4;
  --warning: #E8D9B0;
  --danger:  #E6A0AC;
  --text:    #E9E9F2;
  --muted:   #7A7A8C;
  --white:   #FFFFFF;
  --glass-bg:     rgba(255,255,255,0.042);
  --glass-bg2:    rgba(255,255,255,0.065);
  --glass-stroke: rgba(255,255,255,0.11);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.55), 0 1px 0 rgba(255,255,255,0.08) inset;
  --font-d: 'Outfit', sans-serif;
  --font-b: 'Inter', sans-serif;
  --font-m: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', 'Courier New', monospace;
  --font-logo: 'Michroma', sans-serif;

  /* ── The signature: one glowing-gray cursor, everywhere ── */
  --cursor:      #AAB2C6;
  --cursor-glow: 0 0 6px rgba(170,178,198,0.75), 0 0 15px rgba(170,178,198,0.32);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg); color: var(--text);
  font-size: 15px; line-height: 1.7; overflow-x: hidden;
}

/* Fixed background orbs — always visible behind glass surfaces.
   Slow drift makes the glass feel like it's floating, not painted on. */
body::before {
  content: "";
  position: fixed; inset: -10%; z-index: -2; pointer-events: none;
  background:
    radial-gradient(ellipse 75% 55% at 12% 18%, rgba(232,235,244,0.09) 0%, transparent 62%),
    radial-gradient(ellipse 65% 50% at 88% 78%, rgba(170,178,198,0.065) 0%, transparent 58%),
    radial-gradient(ellipse 55% 40% at 52% 52%, rgba(232,235,244,0.038) 0%, transparent 65%);
  animation: orbdrift 32s ease-in-out infinite alternate;
}
@keyframes orbdrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-2.2%, 1.8%, 0) scale(1.07); }
}

/* Film grain — the texture that makes glass read as glass, not flat plastic */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

a { color: var(--accent); text-decoration: none; }

/* ── UTILITIES ── */
.container { max-width: 1040px; margin: 0 auto; padding: 0 28px; }
.text-center { text-align: center; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── GLASS CARD ── */
.glass {
  background: var(--glass-bg2);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--glass-stroke);
  border-radius: 14px;
  box-shadow: var(--glass-shadow);
  position: relative; overflow: hidden;
}
.glass::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(160deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0) 42%);
  pointer-events: none; z-index: 0;
}
.glass > * { position: relative; z-index: 1; }

/* ── A²E MARK ── */
.mark {
  font-family: 'Michroma', sans-serif; white-space: nowrap;
  line-height: 1; display: inline-block;
  --c1: #FFFFFF; --c2: #AAB2C6; --side: #566072;
  --caret: #E8ECF5; --glow: rgba(255,255,255,0.26);
  filter: drop-shadow(0 1px 6px var(--glow));
}
.mark .gloss {
  -webkit-text-fill-color: transparent;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.07) 34%, rgba(255,255,255,0) 52%),
    linear-gradient(150deg, var(--c1) 0%, var(--c2) 100%);
  -webkit-background-clip: text; background-clip: text;
}
.mark .asq {
  position: relative; display: inline-block;
  transform: perspective(620px) rotateY(-13deg); transform-origin: center;
}
.mark .a3d { position: relative; text-shadow: 0.05em 0.018em 0 var(--side); }
.mark .sup2 {
  position: absolute; top: -0.14em; right: -0.02em;
  font-size: 0.5em; line-height: 1; font-family: 'Michroma', sans-serif;
  text-shadow: 0.05em 0.02em 0 var(--side);
}
.mark .eletter { margin-left: 0.06em; }
.mark .caret {
  display: inline-block; width: 0.055em; height: 0.82em;
  background: var(--cursor); border-radius: 1px;
  margin-left: 0.16em; vertical-align: -0.06em;
  box-shadow: var(--cursor-glow);
  animation: blink 1.15s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ── BINARY HEARTBEAT (terminal icon — replaces emoji) ──
   A monospace bit that types/erases 0↔1 behind the signature cursor. */
.bit {
  display: inline-flex; align-items: center; gap: 0.12em;
  font-family: var(--font-m); line-height: 1; color: var(--accent2);
  font-style: normal;
}
.bit-v {
  display: inline-block; min-width: 0.64em; font-style: normal;
  text-shadow: 0 0 10px rgba(170,178,198,0.5);
}
.bit-c {
  display: inline-block; width: 0.1em; height: 0.92em;
  background: var(--cursor); border-radius: 1px;
  box-shadow: var(--cursor-glow);
  animation: blink 1.05s steps(1) infinite;
}

.lockup { display: inline-flex; align-items: center; gap: 0.85rem; }
.lockup-rule { width: 1px; height: 38px; background: var(--glass-stroke); }
.lockup-words { display: flex; flex-direction: column; line-height: 1; }
.lk-axon { font-family: 'Syncopate', sans-serif; font-weight: 700; font-size: 0.86rem; letter-spacing: 0.18em; color: var(--white); }
.lk-sub  { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: 18px 0; transition: all .35s ease;
}
nav.scrolled {
  background: rgba(7,7,15,0.72);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-bottom-color: rgba(255,255,255,0.09);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07) inset, 0 4px 24px rgba(0,0,0,0.4);
  padding: 11px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { text-decoration: none; }
.nav-logo .mark { font-size: 1.5rem; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 13px; color: var(--muted); transition: color .2s;
  font-family: var(--font-d); font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--accent); color: #0B0B12 !important;
  font-weight: 700 !important; padding: 9px 20px; border-radius: 8px;
  font-size: 13px !important; transition: opacity .2s, transform .2s !important;
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }

/* ── MOBILE NAV (hamburger) ── */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 210;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(7,7,15,0.94);
  backdrop-filter: blur(28px) saturate(180%); -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; padding: 0 28px;
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
}
.mobile-menu.open { max-height: 360px; padding: 10px 28px 22px; }
.mobile-menu a {
  padding: 15px 2px; font-family: var(--font-d); font-weight: 600; font-size: 15px;
  color: var(--text); border-bottom: 1px solid var(--border); transition: color .2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .mm-cta {
  margin-top: 14px; background: var(--accent); color: #0B0B12; text-align: center;
  border-radius: 9px; padding: 14px; border: none; font-weight: 700;
}
.mobile-menu .mm-cta:hover { color: #0B0B12; opacity: .9; }
@media(max-width:680px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
@media(max-width:430px) {
  .nav-logo .lockup-rule, .nav-logo .lockup-words { display: none; }
}

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section + .section { border-top: 1px solid var(--border); }
.section-label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent2); font-weight: 500; margin-bottom: 14px; font-family: var(--font-m);
}
.section-label::before { content: "// "; color: var(--accent2); opacity: 0.55; }
.section-title {
  font-family: var(--font-d);
  font-size: clamp(24px,3.5vw,38px); font-weight: 800;
  line-height: 1.2; margin-bottom: 14px;
  background: linear-gradient(176deg, #FFFFFF 0%, #ECEEF3 40%, #B8BECD 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  text-shadow: 0 1px 1px rgba(0,0,0,0.16);
}
.section-sub { font-size: 16px; color: var(--muted); max-width: 580px; line-height: 1.65; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #0B0B12;
  font-size: 15px; font-weight: 700; padding: 15px 28px;
  border-radius: 10px; transition: opacity .2s, transform .2s; font-family: var(--font-d);
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); color: #0B0B12; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass-bg); color: var(--text);
  font-size: 15px; font-weight: 600; padding: 15px 28px;
  border-radius: 10px; border: 1px solid var(--glass-stroke);
  transition: border-color .2s, color .2s, transform .2s; font-family: var(--font-d);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent2); font-size: 14px; font-weight: 600;
  font-family: var(--font-d); transition: color .2s, gap .2s;
  border: none; background: none; cursor: pointer; padding: 0;
}
.btn-ghost:hover { color: var(--white); gap: 12px; }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  padding: 160px 0 80px;
  background: radial-gradient(ellipse 80% 55% at 50% -10%, rgba(232,235,244,0.09) 0%, transparent 60%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(32px,5vw,56px); font-weight: 900;
  line-height: 1.1; margin-bottom: 14px;
  letter-spacing: -0.5px;
  background: linear-gradient(176deg, #FFFFFF 0%, #EDEFF4 38%, #B4BACA 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}
.page-hero p {
  font-size: clamp(16px,2vw,19px); color: var(--muted);
  max-width: 580px; line-height: 1.65; margin-bottom: 32px;
}

/* ── MARQUEE (terminal status feed) ── */
.marquee-wrap {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 14px 0; overflow: hidden;
  background: rgba(255,255,255,0.014);
}
.marquee-track { display: flex; gap: 40px; width: max-content; animation: marquee 36s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 9px; white-space: nowrap;
  font-size: 12px; font-weight: 400; color: var(--muted);
  font-family: var(--font-m); text-transform: lowercase; letter-spacing: 0.01em;
}
.marquee-item::before {
  content: "▸"; font-size: 11px; color: var(--cursor);
  text-shadow: var(--cursor-glow);
}

/* ── STEP CONNECTOR ── */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 52px; }
.step-row { display: flex; gap: 0; }
.step-line { display: flex; flex-direction: column; align-items: center; width: 56px; flex-shrink: 0; }
.step-dot {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-weight: 800; font-size: 16px; color: #0B0B12;
  background: linear-gradient(135deg,#FFFFFF,#A6AEC2);
  box-shadow: 0 4px 16px rgba(255,255,255,.12);
}
.step-connector { width: 2px; flex: 1; min-height: 16px; background: linear-gradient(to bottom, rgba(232,235,244,.35), rgba(232,235,244,.06)); margin: 5px 0; }
.step-body { flex: 1; padding: 0 0 44px 24px; }
.step-tag   { font-family: var(--font-m); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .5px; color: var(--accent2); margin-bottom: 4px; }
.step-title { font-family: var(--font-d); font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.step-desc  { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 560px; }
.step-badge {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  background: rgba(191,233,212,.08); border: 1px solid rgba(191,233,212,.2);
  border-radius: 6px; padding: 5px 12px; font-size: 12px; color: var(--success); font-weight: 600;
}

/* ── FAQ ── */
.faq-list { margin-top: 52px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--glass-bg2); backdrop-filter: blur(22px) saturate(160%); -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--glass-stroke); border-radius: 12px; overflow: hidden;
  transition: border-color .2s; box-shadow: var(--glass-shadow); position: relative;
}
.faq-item::before {
  content: ""; position: absolute; inset: 0; border-radius: 12px;
  background: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0) 35%);
  pointer-events: none; z-index: 0;
}
.faq-q, .faq-a { position: relative; z-index: 1; }
.faq-item.open { border-color: rgba(232,235,244,.3); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; user-select: none;
  font-family: var(--font-d); font-size: 15px; font-weight: 600; color: var(--white); gap: 16px;
}
.faq-q:hover { color: var(--accent); }
.faq-icon { font-size: 20px; color: var(--muted); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px; font-size: 14px; color: var(--muted); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }

/* ── CTA SECTION ── */
.cta-section {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(232,235,244,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 20%, rgba(170,178,198,.05) 0%, transparent 60%);
  border-top: 1px solid var(--border);
}
.cta-box {
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(170,178,198,.05));
  border: 1px solid rgba(255,255,255,0.13); border-radius: 20px;
  padding: 60px 48px; text-align: center;
  backdrop-filter: blur(32px) saturate(180%); -webkit-backdrop-filter: blur(32px) saturate(180%);
  box-shadow: 0 16px 64px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.12) inset;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ""; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(160deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 38%);
  pointer-events: none;
}
.cta-box > * { position: relative; z-index: 1; }
@media(max-width:600px) { .cta-box { padding: 40px 24px; } }
.cta-box h2 {
  font-family: var(--font-d); font-size: clamp(26px,4vw,40px); font-weight: 800;
  margin-bottom: 14px; line-height: 1.2;
  background: linear-gradient(176deg, #FFFFFF 0%, #ECEEF3 40%, #B8BECD 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}
.cta-box p  { font-size: 16px; color: var(--muted); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.cta-contact { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.cc-item { text-align: center; }
.cc-label { font-size: 11px; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); margin-bottom: 4px; font-family: var(--font-m); }
.cc-val   { font-size: 15px; font-weight: 600; color: var(--accent); }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 48px 0 32px; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 36px; }
.footer-logo .mark { font-size: 1.2rem; }
.footer-tagline { font-size: 13px; color: var(--muted); margin-top: 12px; max-width: 220px; line-height: 1.6; }
.footer-col-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-family: var(--font-m); font-weight: 500; margin-bottom: 12px; display: block; }
.footer-col-links { display: flex; flex-direction: column; gap: 8px; }
.footer-col-links a { font-size: 13px; color: var(--muted); transition: color .2s; font-family: var(--font-d); }
.footer-col-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 36px; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--muted); opacity: .5; font-family: var(--font-d); }

/* ═══════════════════════════════════════════════
   EXPANDABLE SECTIONS (progressive disclosure)
   ═══════════════════════════════════════════════ */
.exp { cursor: pointer; }
.exp-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.exp-toggle {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--glass-stroke); background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; line-height: 1; color: var(--accent2); font-weight: 400;
  font-family: var(--font-d);
  transition: transform .3s cubic-bezier(.4,0,.2,1), color .2s, background .2s;
}
.exp:hover .exp-toggle { color: var(--white); background: rgba(255,255,255,0.1); border-color: var(--accent2); }
.exp.open .exp-toggle { transform: rotate(135deg); color: var(--white); background: rgba(255,255,255,0.12); }
.exp-body {
  max-height: 0; overflow: hidden; opacity: 0; margin-top: 0;
  transition: max-height .4s ease, opacity .35s ease, margin-top .35s ease;
}
.exp.open .exp-body { max-height: 480px; opacity: 1; margin-top: 14px; }
.exp-teaser { font-size: 12px; color: var(--muted); margin-top: 6px; font-style: italic; opacity: .8; transition: opacity .3s; }
.exp.open .exp-teaser { opacity: 0; height: 0; margin: 0; }

/* ═══════════════════════════════════════════════
   BRAND BAND — large logo centerpiece
   ═══════════════════════════════════════════════ */
.brand-band {
  padding: 120px 0; text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 55% 75% at 50% 50%, rgba(232,235,244,0.08) 0%, transparent 70%),
    var(--surface);
}
.brand-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 30%, rgba(232,235,244,0.06) 0%, transparent 12%),
    radial-gradient(circle at 82% 65%, rgba(170,178,198,0.05) 0%, transparent 14%);
}
.brand-band-inner { position: relative; z-index: 1; }
.mark-xl { font-size: clamp(72px, 17vw, 172px); display: inline-block; }
.mark-float { animation: floaty 6.5s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.brand-band-line {
  margin-top: 34px; font-family: var(--font-d); font-weight: 600;
  font-size: clamp(16px,2.4vw,22px); letter-spacing: .01em;
  background: linear-gradient(176deg, #FFFFFF 0%, #AAB2C6 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.brand-band-sub {
  margin-top: 12px; font-size: 13px; color: var(--muted);
  max-width: 460px; margin-left: auto; margin-right: auto; line-height: 1.6;
}

/* Faint watermark variant (behind content) */
.wm-mark {
  position: absolute; pointer-events: none; user-select: none; z-index: 0;
  font-family: 'Michroma', sans-serif; white-space: nowrap; line-height: 1;
  color: rgba(255,255,255,0.025);
  font-size: clamp(200px, 46vw, 520px);
}

/* ═══════════════════════════════════════════════
   MOBILE REFINEMENTS
   ═══════════════════════════════════════════════ */
@media(max-width:680px) {
  .section { padding: 72px 0; }
  .section-sub { font-size: 15px; }
}
@media(max-width:560px) {
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .cta-box { padding: 40px 22px; }
  .cta-contact { gap: 24px; }
  .footer-inner { gap: 28px; }
  .brand-band { padding: 84px 0; }
  .step-body { padding-left: 18px; }
  .step-line { width: 46px; }
  .step-dot { width: 38px; height: 38px; font-size: 15px; }
}

/* ── Respect reduced-motion: keep the glow, drop the movement ── */
@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
  .mark-float, .mark-hero, .marquee-track { animation: none; }
  .bit-c, .mark .caret, .hero-caret { animation: none; opacity: 1; }
}
