/* ===================================================================
   Daniel Bächtold — Landing Page pessoal (TEMA DARK, TECH)
   Identidade própria: quase preto + ciano de instrumento de precisão.
   Tipografia: Space Grotesk (títulos) / Inter (corpo) / JetBrains Mono (dados).
   =================================================================== */

:root {
  /* Superfícies */
  --bg: #04070d;
  --surface: #0a1420;
  --surface-2: #101b2c;

  /* Linhas / bordas */
  --line: rgba(148, 197, 255, .08);
  --line-forte: rgba(34, 225, 255, .40);

  /* Texto */
  --texto: #eaf3fb;
  --texto-muted: #8ea3bf;
  --texto-apagado: #4d5c74;

  /* Acento (ciano de instrumento) */
  --acento: #22e1ff;
  --acento-brilho: #8ff5ff;
  --acento-dim: rgba(34, 225, 255, .10);

  /* Funcionais */
  --green: #25d366;     /* WhatsApp, cor de marca, não mexer */
  --green-700: #1eb858;
  --danger: #ff7a7a;

  --header-bg: rgba(4, 7, 13, .78);
  --nav-mobile-bg: #0a1420;
  --on-accent: #04070d;
  --brand-mark-bg: #101b2c;

  --maxw: 1140px;
  --radius-btn: 8px;
  --radius-card: 10px;
  --radius-panel: 16px;
  --radius-badge: 999px;
  --radius-photo: 4px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .40);
  --shadow: 0 12px 30px rgba(0, 0, 0, .45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .55);
  --shadow-glow: 0 0 28px rgba(34, 225, 255, .40);

  --font-head: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

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

html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 88px; }

body {
  font-family: var(--font-body);
  color: var(--texto);
  background-color: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; }

/* ===================== Tipografia ===================== */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--texto);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--texto-muted);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 20px; height: 1px; background: var(--line-forte); flex: none; }
.eyebrow-cursor::before {
  content: "›"; width: auto; height: auto; background: none;
  color: var(--acento); font-size: 1rem;
  animation: blink-cursor 1.1s steps(1) infinite;
}
@keyframes blink-cursor { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
.accent { color: var(--acento); font-weight: 700; text-shadow: 0 0 18px rgba(34, 225, 255, .35); }

/* ===================== Botões ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease, filter .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 9px 18px; font-size: .72rem; }
.btn-lg { padding: 16px 30px; font-size: .88rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--acento), #4d8dff);
  color: var(--on-accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), inset 0 -1px 0 rgba(0, 0, 0, .2);
}
.btn-primary:hover { filter: brightness(1.08); box-shadow: var(--shadow-glow); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--texto); border-color: var(--line-forte); }
.btn-outline:hover { border-color: var(--acento); background: var(--acento-dim); }

.btn-ghost {
  background: var(--surface);
  color: var(--texto);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--acento); color: var(--acento); transform: translateY(-2px); }

.btn-whats {
  background: var(--green);
  color: #04220f;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .35);
}
.btn-whats:hover { background: var(--green-700); transform: translateY(-2px); }

.btn:focus-visible { outline: 2px solid var(--acento-brilho); outline-offset: 3px; }

/* ===================== Header ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  background: var(--brand-mark-bg);
  color: var(--acento);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: var(--radius-btn);
  flex: none;
  border: 1px solid var(--line-forte);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--texto); }
.brand-sub { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--texto-apagado); }

.nav { display: flex; gap: 26px; }
.nav a {
  font-family: var(--font-mono); font-weight: 500; font-size: .76rem; letter-spacing: .05em; text-transform: uppercase;
  color: var(--texto-muted); position: relative; padding: 4px 0; transition: color .2s ease;
}
.nav a:hover { color: var(--texto); text-decoration: underline; text-decoration-color: var(--acento); text-underline-offset: 5px; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--texto); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== Grade técnica reutilizável (hero + painel de números) ===================== */
.hero, .stats-section { position: relative; overflow: hidden; }
.hero::before, .stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 22%, transparent 60%);
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 22%, transparent 60%);
}
.hero::after, .stats-section::after {
  content: "";
  position: absolute;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  width: 820px; height: 520px;
  background: radial-gradient(closest-side, rgba(34, 225, 255, .14), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* ===================== Hero ===================== */
.hero {
  background-color: var(--bg);
  padding: clamp(64px, 9vw, 120px) 0 clamp(56px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}
.hero-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; text-align: center; }
.hero-inner h1 { margin-top: 6px; }
.hero-inner .lead {
  font-size: 1.18rem;
  color: var(--texto-muted);
  margin: 22px auto 32px;
  max-width: 640px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-proof {
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--texto-apagado);
  margin: 20px auto 0;
  max-width: 560px;
}
.hero-aside { font-size: .92rem; color: var(--texto-muted); margin-top: 10px; }
.hero-aside a { color: var(--acento); text-decoration: underline; }

/* ===================== Painel de números (prova) ===================== */
.stats-section { padding: 44px 0; background: var(--bg); border-bottom: 1px solid var(--line); }
.stats-panel {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  padding: 32px 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
}
.stats-intro { text-align: center; font-family: var(--font-mono); font-size: .8rem; color: var(--texto-apagado); margin-bottom: 28px; }
.stats-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 4px 20px; text-align: center; position: relative; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 8%; bottom: 8%; width: 1px; background: var(--line-forte); opacity: .5;
}
.stat-num {
  font-family: var(--font-mono); font-weight: 600; font-variant-numeric: tabular-nums;
  font-size: clamp(1.4rem, 3vw, 2.1rem); color: var(--texto); line-height: 1.15;
  text-shadow: 0 0 16px rgba(34, 225, 255, .25);
}
.stat-label { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; color: var(--texto-muted); margin-top: 10px; line-height: 1.5; }
.stat-spark { margin-top: 12px; opacity: .85; }

/* ===================== Seções genéricas ===================== */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-tight { padding: clamp(28px, 4vw, 44px) 0 clamp(8px, 2vw, 16px); }
.section-alt { background-color: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head p { color: var(--texto-muted); font-size: 1.1rem; margin-top: 10px; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ===================== Texto corrido ===================== */
.prose { max-width: none; }
.prose p { margin: 0 0 16px; color: var(--texto-muted); font-size: 1.08rem; line-height: 1.75; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--texto); font-weight: 600; }
.fit-note { margin-top: 32px; }

/* ===================== Bio (foto + texto) ===================== */
.bio-grid { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.bio-photo { position: relative; border-radius: var(--radius-photo); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.bio-photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; }

/* ===================== Listas com check / com x ===================== */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; font-size: .98rem; color: var(--texto-muted); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--acento); font-weight: 700;
}
.check-list-lg { max-width: 560px; margin: 0 auto; gap: 14px; }
.check-list-lg li { font-size: 1.08rem; }

.cross-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cross-list li { position: relative; padding-left: 28px; font-size: .98rem; color: var(--texto-muted); }
.cross-list li::before {
  content: "×"; position: absolute; left: 0; top: -2px;
  color: var(--danger); font-weight: 700; font-size: 1.1rem;
}

.fit-title { margin-bottom: 14px; }

/* ===================== Fases do Protocolo Duplo Comando ===================== */
.fase-card {
  position: relative;
  padding: 34px 32px 34px 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.fase-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--acento); opacity: .6; transition: opacity .25s ease;
  border-radius: var(--radius-card) 0 0 var(--radius-card);
}
.fase-card:hover { transform: translateY(-4px); border-color: var(--line-forte); background: var(--surface-2); }
.fase-card:hover::before { opacity: 1; }
.fase-semanas { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--acento); }
.fase-card h3 { font-size: 1.15rem; margin: 14px 0 10px; }
.fase-card p { color: var(--texto-muted); font-size: .92rem; line-height: 1.6; }

/* ===================== Selo do método no card de oferta ===================== */
.method-tag { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--acento); margin-top: -8px; }

/* ===================== Preços ===================== */
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--line-forte); background: var(--surface-2); }
.price-card-highlight {
  background: var(--surface-2);
  border-color: rgba(34, 225, 255, .35);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, .55);
}
.price-card h4 { font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; color: var(--texto); margin-top: 2px; }
.offer-subtitle { font-size: .88rem; color: var(--texto-muted); margin-top: -8px; }

.tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  background: transparent;
  color: var(--texto-muted);
  border: 1px solid var(--line-forte);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-badge);
}
.tag-amber { color: var(--acento); border-color: rgba(34, 225, 255, .35); }

.price { display: flex; flex-direction: column; gap: 2px; margin: 2px 0 4px; }
.price-value { font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; color: var(--texto); line-height: 1.1; }
.price-cents { font-size: .5em; vertical-align: super; color: var(--texto-muted); }
.price-period { font-size: .92rem; color: var(--texto-muted); }
.price-alt { font-size: .95rem; color: var(--texto-muted); margin-top: 6px; }
.price-alt strong { color: var(--acento); font-weight: 700; }
.price-card .btn { margin-top: auto; align-self: flex-start; }

.price-note { text-align: center; margin-top: 20px; font-family: var(--font-mono); font-size: .78rem; color: var(--texto-apagado); }

/* ===================== Painel largo (consultoria) ===================== */
.panel-wide {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.panel-wide p { color: var(--texto-muted); font-size: 1.05rem; line-height: 1.7; }
.panel-wide .btn { align-self: flex-start; }

/* ===================== Corner brackets (HUD) ===================== */
.hud-target { position: relative; }
.hud-target::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .35;
  transition: opacity .2s ease;
  background:
    linear-gradient(var(--acento), var(--acento)) top left / 14px 1.5px no-repeat,
    linear-gradient(var(--acento), var(--acento)) top left / 1.5px 14px no-repeat,
    linear-gradient(var(--acento), var(--acento)) top right / 14px 1.5px no-repeat,
    linear-gradient(var(--acento), var(--acento)) top right / 1.5px 14px no-repeat,
    linear-gradient(var(--acento), var(--acento)) bottom left / 14px 1.5px no-repeat,
    linear-gradient(var(--acento), var(--acento)) bottom left / 1.5px 14px no-repeat,
    linear-gradient(var(--acento), var(--acento)) bottom right / 14px 1.5px no-repeat,
    linear-gradient(var(--acento), var(--acento)) bottom right / 1.5px 14px no-repeat;
}
.hud-target:hover::before { opacity: .9; }

/* ===================== FAQ ===================== */
.faq { counter-reset: faqidx; display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq details {
  counter-increment: faqidx;
  position: relative;
  padding-left: 40px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, border-color .2s ease;
}
.faq details::before {
  content: "Q" counter(faqidx, decimal-leading-zero);
  position: absolute; left: 0; top: 24px;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .04em;
  color: var(--texto-apagado); transition: color .2s ease;
}
.faq details[open] { background: var(--surface-2); }
.faq details[open]::before { color: var(--acento); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--texto);
  padding: 20px 4px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s ease;
}
.faq summary:hover { color: var(--texto-muted); }
.faq summary::-webkit-details-marker { display: none; }
.faq .plus {
  flex: none;
  width: 24px; height: 24px;
  position: relative;
  border: 1px solid var(--line-forte);
  border-radius: 4px;
  transition: border-color .2s ease;
}
.faq .plus::before,
.faq .plus::after {
  content: "";
  position: absolute;
  background: var(--texto);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .25s ease, background .2s ease;
}
.faq .plus::before { width: 10px; height: 1.5px; }
.faq .plus::after { width: 1.5px; height: 10px; }
.faq details[open] .plus { border-color: var(--acento); }
.faq details[open] .plus::before { background: var(--acento); }
.faq details[open] .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq details p { color: var(--texto-muted); padding: 0 4px 22px 0; }
.faq details p a { color: var(--acento); text-decoration: underline; }

/* ===================== Footer ===================== */
.site-footer { background: var(--bg); color: var(--texto-muted); padding: 48px 0 32px; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px 40px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .brand-mark { background: var(--surface); }
.footer-brand strong { color: var(--texto); font-size: 1.1rem; display: block; }
.footer-brand p { font-size: .88rem; color: var(--texto-muted); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px; justify-content: flex-end; }
.footer-nav a { font-size: .92rem; color: var(--texto-muted); }
.footer-nav a:hover { color: var(--texto); }
.footer-copy { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 20px; font-size: .85rem; color: var(--texto-apagado); font-family: var(--font-mono); }
.footer-legal { font-size: .78rem; color: var(--texto-apagado); letter-spacing: .02em; }

/* ===================== Conheça minha empresa (CTA de fechamento) ===================== */
.empresa-cta {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.empresa-cta-text p:first-child { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--texto-apagado); margin-bottom: 8px; }
.empresa-cta-text p:last-child { color: var(--texto-muted); font-size: .98rem; }
.empresa-cta-text strong { color: var(--texto); }
.empresa-cta .btn { flex: none; }

/* ===================== WhatsApp flutuante ===================== */
.whats-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #04220f;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px -8px rgba(37, 211, 102, .6);
  transition: transform .2s ease, background .2s ease;
}
.whats-float:hover { transform: scale(1.08); background: var(--green-700); }
.whats-float::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(34, 225, 255, .3); pointer-events: none;
  animation: whats-pulse 2.5s ease-in-out infinite;
}
@keyframes whats-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.06); opacity: .4; } }

/* ===================== Responsivo ===================== */
@media (max-width: 940px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Header colapsa no menu hambúrguer no mobile */
@media (max-width: 900px) {
  .nav, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--nav-mobile-bg);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow);
  }
  .nav.open a { padding: 12px 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 720px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
  .panel-wide .btn { align-self: stretch; text-align: center; }
  .price-card .btn, .panel-wide .btn { width: 100%; white-space: normal; text-align: center; }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-photo { max-width: 200px; margin: 0 auto; }
  .stats-grid-4 { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .stat:not(:last-child)::after { display: none; }
  .stat:nth-child(odd)::after { display: block; }
  .empresa-cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .empresa-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 420px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
}
