/* ==========================================================================
   $STRAY — There are strays in every hood.
   ========================================================================== */

:root {
  --lime: #c8ff2e;
  --lime-soft: #e2ff8c;
  --magenta: #ff3df0;
  --cyan: #2ef0ff;
  --ink: #0a0712;
  --ink-2: #140c22;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-line: rgba(200, 255, 46, 0.18);
  --text: #ece7f5;
  --muted: #a79ec2;
  --radius: 18px;
  --shadow-glow: 0 0 30px rgba(200, 255, 46, 0.25);
  --max: 1180px;
  --font-display: "Bungee", "Trebuchet MS", Impact, sans-serif;
  --font-body: "Space Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Neon alley backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60vw 60vw at 12% 8%, rgba(200, 255, 46, 0.16), transparent 60%),
    radial-gradient(55vw 55vw at 88% 22%, rgba(255, 61, 240, 0.14), transparent 60%),
    radial-gradient(70vw 70vw at 50% 105%, rgba(46, 240, 255, 0.12), transparent 60%),
    linear-gradient(180deg, #0a0712 0%, #140c22 55%, #0a0712 100%);
}

/* Scanline / rain texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.035) 0px,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px,
    transparent 3px
  );
}

/* height:auto is required — without it the width/height HTML attributes stay
   literal while max-width shrinks the element, squashing the image. */
img { max-width: 100%; height: auto; display: block; }

a { color: var(--lime); text-decoration: none; }
a:hover { color: var(--lime-soft); }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 84px 0; position: relative; }

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 10px;
  font-weight: 700;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.01em; line-height: 1.08; }

h2 {
  font-size: clamp(30px, 5.2vw, 50px);
  margin: 0 0 18px;
  text-transform: uppercase;
}

.glow { color: var(--lime); text-shadow: 0 0 18px rgba(200, 255, 46, 0.6), 0 0 46px rgba(200, 255, 46, 0.28); }
.glow-pink { color: var(--magenta); text-shadow: 0 0 18px rgba(255, 61, 240, 0.55); }

.lead { color: var(--muted); font-size: clamp(16px, 2.2vw, 19px); max-width: 62ch; }

/* ============================ NAV ============================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(10, 7, 18, 0.72);
  border-bottom: 1px solid rgba(200, 255, 46, 0.14);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 70px;
}

.brand { display: flex; align-items: center; gap: 12px; }

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 2px solid var(--lime);
  box-shadow: var(--shadow-glow);
}

.brand span {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--lime);
  letter-spacing: 0.04em;
}

.nav-links { display: flex; align-items: center; gap: 26px; }

.nav-links a {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--lime); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--panel-line);
  border-radius: 10px;
  color: var(--lime);
  width: 44px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--lime);
  color: var(--ink);
  background: var(--lime);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: var(--shadow-glow);
}

.btn:hover { transform: translateY(-2px); color: var(--ink); box-shadow: 0 0 40px rgba(200, 255, 46, 0.5); }

.btn-ghost {
  background: transparent;
  color: var(--lime);
  box-shadow: none;
}

.btn-ghost:hover { background: rgba(200, 255, 46, 0.1); color: var(--lime); }

/* ============================ HERO ============================ */
.hero { padding: 72px 0 60px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(42px, 8vw, 88px);
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero .tagline {
  font-size: clamp(17px, 2.6vw, 22px);
  color: var(--lime-soft);
  font-style: italic;
  margin: 0 0 10px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hero-art {
  position: relative;
  aspect-ratio: 1;
  border-radius: 26px;
  overflow: hidden;
  border: 2px solid rgba(200, 255, 46, 0.35);
  box-shadow: 0 0 60px rgba(200, 255, 46, 0.22), 0 30px 60px rgba(0, 0, 0, 0.6);
  animation: float 6s ease-in-out infinite;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

.badge {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--panel-line);
  background: var(--panel);
  color: var(--muted);
  font-weight: 700;
}

/* ============================ MARQUEE ============================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--panel-line);
  border-bottom: 1px solid var(--panel-line);
  background: rgba(200, 255, 46, 0.05);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  /* Motion is driven by JS (requestAnimationFrame) in js/app.js, not by a
     CSS keyframe animation. A CSS animation here would be killed by the
     global prefers-reduced-motion rule at the bottom of this file. */
  transform: translate3d(0, 0, 0);
}

.marquee-group {
  display: flex;
  flex: 0 0 auto;
  gap: 42px;
  padding-right: 42px;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--lime);
  letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0.85;
}

/* ============================ CARDS ============================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 255, 46, 0.5);
  box-shadow: 0 0 34px rgba(200, 255, 46, 0.16);
}

.card h3 { font-size: 21px; margin: 0 0 10px; color: var(--lime); text-transform: uppercase; }
.card p { margin: 0; color: var(--muted); font-size: 16px; }

.card .num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--lime);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 0 22px rgba(200, 255, 46, 0.45);
}

/* ============================ LORE ============================ */
.lore-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
}

.lore-art {
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(255, 61, 240, 0.3);
  box-shadow: 0 0 50px rgba(255, 61, 240, 0.18);
  aspect-ratio: 1;
  max-width: 420px;
  width: 100%;
  margin-inline: auto;
}

.lore-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lore-body p { color: var(--muted); }

.quote {
  margin: 26px 0 0;
  padding: 20px 24px;
  border-left: 3px solid var(--lime);
  background: rgba(200, 255, 46, 0.06);
  border-radius: 0 14px 14px 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 2.6vw, 23px);
  color: var(--lime-soft);
  line-height: 1.35;
}

.quote small {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ============================ TOKENOMICS ============================ */
.tokenomics-split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 44px;
  align-items: center;
  margin-top: 34px;
}

.dial {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  background: conic-gradient(var(--lime) 0 3%, rgba(255, 255, 255, 0.07) 3% 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 0 60px rgba(200, 255, 46, 0.2);
}

.dial::after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  background: var(--ink-2);
  border: 1px solid var(--panel-line);
}

.dial-label { position: relative; z-index: 1; text-align: center; }
.dial-label strong {
  display: block;
  font-family: var(--font-display);
  font-size: 46px;
  color: var(--lime);
  line-height: 1;
}
.dial-label span {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.tax-rows { display: grid; gap: 14px; }

.tax-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--panel-line);
  border-radius: 14px;
  background: var(--panel);
}

.tax-row b {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--lime);
  min-width: 62px;
}

.tax-row p { margin: 0; color: var(--muted); font-size: 16px; }
.tax-row h4 { margin: 0 0 4px; font-size: 17px; letter-spacing: 0.03em; }

/* Donation wallet */
.wallet-box {
  margin-top: 30px;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(200, 255, 46, 0.35);
  background: linear-gradient(135deg, rgba(200, 255, 46, 0.1), rgba(255, 61, 240, 0.06));
}

.wallet-box h3 { margin: 0 0 12px; font-size: 20px; color: var(--lime); text-transform: uppercase; }

.wallet-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.wallet-addr {
  flex: 1 1 320px;
  min-width: 0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px dashed rgba(200, 255, 46, 0.4);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--lime-soft);
  overflow-wrap: anywhere;
}

.copy-ok { color: var(--lime); font-size: 14px; font-weight: 700; }

/* ============================ GALLERY ============================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.gallery figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--panel-line);
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--ink-2);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery figure:hover img { transform: scale(1.08); filter: saturate(1.2); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  background: rgba(5, 3, 10, 0.92);
  padding: 24px;
}

.lightbox.open { display: grid; }

.lightbox img {
  max-width: min(92vw, 820px);
  max-height: 84vh;
  border-radius: 16px;
  border: 2px solid var(--lime);
  box-shadow: var(--shadow-glow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: 1px solid var(--panel-line);
  border-radius: 10px;
  color: var(--lime);
  font-size: 24px;
  width: 46px;
  height: 46px;
  cursor: pointer;
}

/* ============================ ROADMAP ============================ */
.steps { display: grid; gap: 16px; margin-top: 34px; }

.step {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  background: var(--panel);
}

.step .phase {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--lime);
  letter-spacing: 0.08em;
}

.step h3 { margin: 0 0 6px; font-size: 20px; text-transform: uppercase; }
.step p { margin: 0; color: var(--muted); font-size: 16px; }

/* ============================ FAQ ============================ */
.faq { margin-top: 30px; display: grid; gap: 12px; }

.faq details {
  border: 1px solid var(--panel-line);
  border-radius: 14px;
  background: var(--panel);
  padding: 0 20px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--lime); font-size: 22px; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 18px; color: var(--muted); font-size: 16px; }

/* ============================ FOOTER ============================ */
.footer {
  border-top: 1px solid var(--panel-line);
  padding: 54px 0 40px;
  background: rgba(0, 0, 0, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
}

.footer p { color: var(--muted); font-size: 15px; }
.footer h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--lime);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer ul a { color: var(--text); font-size: 15px; display: inline-flex; align-items: center; gap: 9px; }
.footer ul a:hover { color: var(--lime); }

.socials { display: flex; gap: 12px; margin-top: 18px; }

.socials a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--panel-line);
  background: var(--panel);
  transition: transform 0.15s ease, border-color 0.2s ease;
}

.socials a:hover { transform: translateY(-3px); border-color: var(--lime); }
.socials svg { width: 21px; height: 21px; fill: var(--lime); }

.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

/* ============================ AI AGENT ============================ */
.agent-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 150;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--lime);
  background: var(--ink-2);
  cursor: pointer;
  padding: 0;
  overflow: visible;
  box-shadow: 0 0 26px rgba(200, 255, 46, 0.45);
  transition: transform 0.18s ease;
}

.agent-launcher:hover { transform: scale(1.07); }

.agent-launcher img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

.agent-launcher .ping {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--magenta);
  border: 2px solid var(--ink);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.65; }
}

.agent-panel {
  position: fixed;
  right: 22px;
  bottom: 98px;
  z-index: 151;
  width: min(380px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 130px));
  display: none;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(14, 9, 26, 0.97);
  border: 1px solid rgba(200, 255, 46, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 40px rgba(200, 255, 46, 0.12);
  backdrop-filter: blur(12px);
}

.agent-panel.open { display: flex; animation: slide-up 0.22s ease; }

@keyframes slide-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.agent-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--panel-line);
  background: linear-gradient(135deg, rgba(200, 255, 46, 0.12), transparent);
}

.agent-head img { width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--lime); }
.agent-head .who { flex: 1; min-width: 0; }
.agent-head strong { display: block; font-size: 15px; letter-spacing: 0.03em; }
.agent-head small { color: var(--lime); font-size: 12px; display: flex; align-items: center; gap: 6px; }
.agent-head small i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--lime);
  display: inline-block; box-shadow: 0 0 8px var(--lime);
}

.agent-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.agent-close:hover { color: var(--lime); }

.agent-log {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
}

.msg { max-width: 86%; padding: 11px 14px; border-radius: 14px; font-size: 15px; line-height: 1.5; }

.msg.bot {
  align-self: flex-start;
  background: rgba(200, 255, 46, 0.1);
  border: 1px solid rgba(200, 255, 46, 0.24);
  border-bottom-left-radius: 4px;
}

.msg.me {
  align-self: flex-end;
  background: rgba(255, 61, 240, 0.14);
  border: 1px solid rgba(255, 61, 240, 0.3);
  border-bottom-right-radius: 4px;
}

.msg a { overflow-wrap: anywhere; }
.msg code {
  font-size: 12.5px;
  background: rgba(0, 0, 0, 0.45);
  padding: 2px 5px;
  border-radius: 5px;
  overflow-wrap: anywhere;
}

.typing { display: flex; gap: 5px; align-items: center; }
.typing i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--lime);
  animation: blink 1.2s infinite;
}
.typing i:nth-child(2) { animation-delay: 0.18s; }
.typing i:nth-child(3) { animation-delay: 0.36s; }

@keyframes blink {
  0%, 60%, 100% { opacity: 0.25; }
  30% { opacity: 1; }
}

.agent-chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 16px 12px; }

.chip {
  font-size: 12.5px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--panel-line);
  background: var(--panel);
  color: var(--lime-soft);
  cursor: pointer;
  font-family: inherit;
}

.chip:hover { border-color: var(--lime); background: rgba(200, 255, 46, 0.12); }

.agent-form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--panel-line);
  background: rgba(0, 0, 0, 0.3);
}

.agent-form input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--panel-line);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
}

.agent-form input:focus { outline: none; border-color: var(--lime); }

.agent-form button {
  width: 46px;
  border: none;
  border-radius: 12px;
  background: var(--lime);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

/* ============================ 404 ============================ */
.err-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 20px;
}

.err-code {
  font-family: var(--font-display);
  font-size: clamp(88px, 22vw, 200px);
  line-height: 0.9;
  color: var(--lime);
  text-shadow: 0 0 30px rgba(200, 255, 46, 0.55), 0 0 80px rgba(200, 255, 46, 0.3);
  margin: 0;
}

.err-cat {
  width: min(230px, 56vw);
  border-radius: 50%;
  border: 3px solid var(--lime);
  box-shadow: var(--shadow-glow);
  margin: 0 auto 26px;
  animation: float 5s ease-in-out infinite;
}

.err-page h1 { font-size: clamp(24px, 5vw, 38px); margin: 14px 0 12px; text-transform: uppercase; }
.err-page p { color: var(--muted); max-width: 48ch; margin: 0 auto 28px; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 980px) {
  .hero-grid, .lore-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-art, .lore-art { max-width: 420px; margin-inline: auto; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .tokenomics-split { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  section { padding: 62px 0; }

  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 18px;
    background: rgba(10, 7, 18, 0.98);
    border-bottom: 1px solid var(--panel-line);
    display: none;
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .nav-links .btn { justify-content: center; margin-top: 12px; border-bottom: none; }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 8px; }
  .hero-cta .btn { flex: 1 1 100%; justify-content: center; }

  .agent-panel {
    right: 10px;
    left: 10px;
    bottom: 90px;
    width: auto;
    height: min(72vh, 520px);
  }

  .agent-launcher { right: 16px; bottom: 16px; width: 58px; height: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
