/* ============================================================
   Grilo Estética Automotiva — modern dark UI
   Paleta: fundo escuro/metálico · azul elétrico (água da logo)
   · verde (mascote / WhatsApp)
   ============================================================ */
:root {
  --bg: #05080d;
  --bg-2: #080c14;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #eef4fb;
  --muted: #93a1b4;
  --muted-2: #6f7d90;

  --blue: #29a9ff;
  --blue-2: #5cc8ff;
  --cyan: #22d3ee;
  --green: #37e07b;
  --green-2: #23c063;

  --grad-blue: linear-gradient(135deg, #2ea6ff, #22d3ee);
  --grad-head: linear-gradient(120deg, #7fd8ff 0%, #34c4ff 45%, #37e07b 120%);
  --grad-wa: linear-gradient(135deg, #38e07b, #17b657);

  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 20px 50px rgba(41, 169, 255, 0.28);
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { list-style: none; padding: 0; }

::selection { background: rgba(41, 169, 255, 0.35); color: #fff; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--blue);
  color: #04121f;
  border-radius: 10px;
  font-weight: 700;
}
.skip-link:focus { left: 12px; }

/* ---------- shared typography ---------- */
h1, h2, h3 { font-family: "Sora", "Segoe UI", sans-serif; line-height: 1.05; letter-spacing: -0.02em; }
.grad {
  background: var(--grad-head);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn svg { width: 20px; height: 20px; }
.btn svg:not(.ico-wa) { fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.btn .ico-wa { fill: currentColor; }
.btn:hover { transform: translateY(-3px); }
.btn:focus-visible { outline: 2px solid var(--blue-2); outline-offset: 3px; }

.btn-whatsapp {
  color: #04150a;
  background: var(--grad-wa);
  box-shadow: 0 16px 34px rgba(35, 192, 99, 0.32);
}
.btn-whatsapp:hover { box-shadow: 0 20px 44px rgba(35, 192, 99, 0.45); }

.btn-primary {
  color: #04121f;
  background: var(--grad-blue);
  box-shadow: var(--shadow-glow);
}

.btn-ghost {
  color: var(--text);
  background: var(--surface-2);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }

.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(16px, 4vw, 48px);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), padding 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(6, 9, 15, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: radial-gradient(circle at 30% 25%, rgba(55, 224, 123, 0.22), rgba(41, 169, 255, 0.12) 60%, transparent),
              var(--surface-2);
  border: 1px solid var(--line);
}
.brand-mark svg { width: 32px; height: 32px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-word {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.brand-sub {
  margin-top: 3px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > a:not(.btn) {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.main-nav > a:not(.btn):hover,
.main-nav > a:not(.btn):focus-visible {
  color: var(--text);
  background: var(--surface-2);
  outline: none;
}
.main-nav .nav-cta { min-height: 44px; padding: 0 18px; margin-left: 8px; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  width: 20px; height: 2px; border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px clamp(16px, 4vw, 48px) 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.orb-blue {
  width: 620px; height: 620px;
  right: -180px; top: -220px;
  background: radial-gradient(circle, rgba(41, 169, 255, 0.55), transparent 65%);
}
.orb-green {
  width: 520px; height: 520px;
  left: -200px; bottom: -240px;
  background: radial-gradient(circle, rgba(55, 224, 123, 0.32), transparent 65%);
}
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 78%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--maxw), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.hero-copy { min-width: 0; }
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(2.3rem, 6.4vw, 4.9rem);
  font-weight: 800;
  margin-bottom: 22px;
  overflow-wrap: break-word;
}
.hero-lead {
  max-width: min(46ch, 100%);
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-chips li {
  padding: 8px 15px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* hero visual — real logo on a framed brand plate */
.hero-visual { position: relative; display: grid; place-items: center; min-width: 0; }
.logo-card {
  position: relative;
  width: min(560px, 100%);
}
.logo-card::before {
  content: "";
  position: absolute;
  inset: -10% -8%;
  z-index: 0;
  border-radius: 44px;
  background: radial-gradient(circle at 50% 55%, rgba(41, 169, 255, 0.4), rgba(55, 224, 123, 0.14) 45%, transparent 68%);
  filter: blur(34px);
}
.logo-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.logo-glow {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  box-shadow: inset 0 0 90px rgba(5, 8, 13, 0.7);
}

.float-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(9, 13, 20, 0.72);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}
.float-chip .tick { color: var(--green); }
.float-chip .star { color: var(--blue-2); }
.chip-1 { top: 7%; left: -5%; }
.chip-2 { bottom: 9%; right: -4%; animation-delay: 1.5s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 1;
  width: 26px; height: 42px;
  border: 2px solid var(--line-strong);
  border-radius: 14px;
  display: grid;
  justify-items: center;
}
.scroll-cue span {
  width: 4px; height: 8px;
  margin-top: 7px;
  border-radius: 4px;
  background: var(--blue-2);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(-4px); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.strip-inner {
  width: min(var(--maxw), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.strip-item {
  padding: 26px clamp(16px, 3vw, 32px);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.strip-item strong { font-family: "Sora", sans-serif; font-size: 1.05rem; }
.strip-item span { color: var(--muted); font-size: 0.9rem; }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section {
  width: min(var(--maxw), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) 0;
}
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  padding: 30px 28px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto;
  height: 3px;
  background: var(--grad-blue);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: var(--surface-2);
}
.service-card:hover::before { opacity: 1; }
.service-ico {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin-bottom: 20px;
  border-radius: 15px;
  color: var(--blue-2);
  background: rgba(41, 169, 255, 0.1);
  border: 1px solid rgba(41, 169, 255, 0.22);
}
.service-ico svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.96rem; }

.service-card.accent {
  background: linear-gradient(160deg, rgba(41, 169, 255, 0.16), rgba(55, 224, 123, 0.08));
  border-color: rgba(41, 169, 255, 0.3);
}
.service-card.accent .service-ico {
  color: #04121f;
  background: var(--grad-blue);
  border-color: transparent;
}

/* ---------- process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step-num {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
  background: var(--grad-head);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.94rem; }

/* ---------- results ---------- */
.results { padding-top: 0; }
.results-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(36px, 5vw, 60px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 10%, rgba(41, 169, 255, 0.18), transparent 45%),
    radial-gradient(circle at 5% 95%, rgba(55, 224, 123, 0.14), transparent 45%),
    var(--bg-2);
  border: 1px solid var(--line);
}
.results-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 700; margin: 16px 0; }
.results-copy p { color: var(--muted); margin-bottom: 28px; }
.metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.metric {
  padding: 24px 22px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
}
.metric strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
  color: var(--blue-2);
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}
.metric strong.handle { font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--green); overflow-wrap: normal; }
.metric span { color: var(--muted); font-size: 0.9rem; }

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; margin: 16px 0; }
.contact-lead { color: var(--muted); margin-bottom: 28px; }
.contact-list { display: grid; gap: 14px; margin-bottom: 28px; }
.contact-list li, .contact-list a { display: flex; align-items: center; gap: 14px; }
.contact-list a { transition: color 0.2s; }
.contact-list a:hover { color: var(--blue-2); }
.ci {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  color: var(--blue-2);
  background: rgba(41, 169, 255, 0.1);
  border: 1px solid rgba(41, 169, 255, 0.2);
}
.ci svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 240px;
}
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05) brightness(0.85); }

/* quote form */
.quote-card {
  padding: clamp(26px, 3vw, 36px);
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.quote-card h3 { font-size: 1.4rem; font-weight: 700; }
.quote-sub { color: var(--muted); font-size: 0.95rem; margin: 6px 0 22px; }
.field { display: block; margin-bottom: 16px; }
.field > span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  background: rgba(5, 8, 13, 0.6);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; }
.field select { appearance: none; cursor: pointer; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(41, 169, 255, 0.2);
}
.quote-card .btn { margin-top: 6px; }
.quote-note { color: var(--muted-2); font-size: 0.78rem; margin-top: 12px; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.footer-inner {
  width: min(var(--maxw), calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-nav a { color: var(--muted); font-size: 0.95rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--text); }
.footer-meta { width: 100%; color: var(--muted-2); font-size: 0.85rem; padding-top: 20px; border-top: 1px solid var(--line); }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.wa-fab {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 40;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #04150a;
  background: var(--grad-wa);
  box-shadow: 0 14px 34px rgba(35, 192, 99, 0.5);
  transition: transform 0.25s var(--ease);
}
.wa-fab svg { width: 30px; height: 30px; fill: currentColor; }
.wa-fab:hover { transform: scale(1.08) translateY(-2px); }
.wa-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(55, 224, 123, 0.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.service-grid .reveal.in:nth-child(2) { transition-delay: 0.06s; }
.service-grid .reveal.in:nth-child(3) { transition-delay: 0.12s; }
.service-grid .reveal.in:nth-child(4) { transition-delay: 0.06s; }
.service-grid .reveal.in:nth-child(5) { transition-delay: 0.12s; }
.service-grid .reveal.in:nth-child(6) { transition-delay: 0.18s; }
.steps .reveal.in:nth-child(2) { transition-delay: 0.08s; }
.steps .reveal.in:nth-child(3) { transition-delay: 0.16s; }
.steps .reveal.in:nth-child(4) { transition-delay: 0.24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .blob { width: min(420px, 88%); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .results-card, .contact-grid { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    inset: 74px 12px auto;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    background: rgba(8, 12, 20, 0.97);
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .main-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav > a:not(.btn) { padding: 14px; }
  .main-nav .nav-cta { margin: 6px 0 0; min-height: 50px; }
  .nav-toggle { display: flex; }

  .hero { padding-top: 108px; }
  .hero-actions .btn { width: 100%; }
  .service-grid, .steps, .metrics, .strip-inner { grid-template-columns: 1fr; }
  .float-chip { font-size: 0.78rem; padding: 8px 12px; }
  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * , *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
