/* =========================================================
   OIMS — Only In My Shop · Vitrine
   ========================================================= */

:root {
  /* Backgrounds */
  --bg:        #070a14;
  --bg-2:      #0b1020;
  --bg-3:      #0f1628;
  --surface:   rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border:    rgba(255, 255, 255, 0.09);
  --border-2:  rgba(255, 255, 255, 0.16);

  /* Text */
  --text:   #eaf0ff;
  --muted:  #9aa6c4;
  --faint:  #6c779a;

  /* Accents (echo du logo : cyan / bleu / violet / magenta + chauds) */
  --c-cyan:    #25e0d6;
  --c-blue:    #3b82f6;
  --c-violet:  #8b5cf6;
  --c-magenta: #f0398b;
  --c-orange:  #ff8a3d;
  --c-lime:    #8ee04a;

  --accent: var(--c-cyan);
  --grad-primary: linear-gradient(100deg, #25e0d6 0%, #3b82f6 45%, #8b5cf6 100%);
  --grad-splash:  linear-gradient(100deg, #ff8a3d, #f0398b 30%, #8b5cf6 55%, #3b82f6 78%, #25e0d6 100%);

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow:    0 24px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-sm: 0 12px 30px -12px rgba(0, 0, 0, 0.5);
  --glow:      0 0 40px -8px rgba(59, 130, 246, 0.5);

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-name {
  font-family: 'Sora', system-ui, sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

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

.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ----------------------- Buttons ----------------------- */
.btn {
  --pad-y: 12px; --pad-x: 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 100px;
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s;
  white-space: nowrap;
}
.btn-lg { --pad-y: 15px; --pad-x: 30px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--grad-primary);
  color: #05080f; font-weight: 700;
  box-shadow: 0 10px 30px -10px rgba(37, 224, 214, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(59, 130, 246, 0.65); }

.btn-outline { border-color: var(--border-2); color: var(--text); background: rgba(255,255,255,0.02); }
.btn-outline:hover { border-color: var(--accent); transform: translateY(-2px); background: var(--surface); }

.btn-ghost { color: var(--text); background: transparent; }
.btn-ghost:hover { background: var(--surface); }

/* ----------------------- Header ----------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s, padding .3s;
  border-bottom: 1px solid transparent;
  padding: 10px 0;
}
.site-header.scrolled {
  background: rgba(7, 10, 20, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 46px; height: 46px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,.5)); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-size: 1.4rem; font-weight: 800; letter-spacing: 0.02em; }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > a {
  padding: 8px 14px; border-radius: 100px; font-size: 0.92rem; color: var(--muted);
  font-weight: 500; transition: color .2s, background .2s;
}
.main-nav > a:hover { color: var(--text); background: var(--surface); }
.nav-cta-mobile { display: none; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--border-2);
  background: var(--surface); border-radius: 12px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s var(--ease); }
.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: 100vh; display: flex; align-items: center; padding: 120px 0 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.blob-1 { width: 520px; height: 520px; background: radial-gradient(circle, #3b82f6, transparent 70%); top: -120px; right: -80px; animation: float1 16s var(--ease) infinite; }
.blob-2 { width: 460px; height: 460px; background: radial-gradient(circle, #8b5cf6, transparent 70%); bottom: -160px; left: -120px; animation: float2 20s var(--ease) infinite; }
.blob-3 { width: 380px; height: 380px; background: radial-gradient(circle, #25e0d6, transparent 70%); top: 40%; left: 45%; opacity: 0.35; animation: float1 24s var(--ease) infinite reverse; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
}

@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px, 40px) scale(1.12); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(50px, -30px) scale(1.1); } }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 7px 16px; border: 1px solid var(--border-2); border-radius: 100px;
  background: var(--surface); color: var(--muted); margin-bottom: 24px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-cyan); box-shadow: 0 0 12px var(--c-cyan); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-title { font-size: clamp(2.4rem, 6vw, 4.3rem); font-weight: 800; margin-bottom: 22px; }
.hero-lead { font-size: clamp(1.02rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 560px; margin-bottom: 34px; }
.hero-lead strong { color: var(--text); font-weight: 600; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; }
.hero-badges li { font-size: 0.9rem; color: var(--muted); font-weight: 500; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-logo { width: min(440px, 100%); position: relative; z-index: 2; filter: drop-shadow(0 30px 60px rgba(0,0,0,.55)); animation: bob 6s ease-in-out infinite; }
.hero-logo-glow {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: var(--grad-splash); filter: blur(70px); opacity: 0.4; z-index: 1;
  animation: spin 18s linear infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 2px solid var(--border-2); border-radius: 100px; display: flex; justify-content: center; padding-top: 7px; }
.scroll-cue span { width: 4px; height: 8px; background: var(--accent); border-radius: 4px; animation: scrolly 1.8s infinite; }
@keyframes scrolly { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(14px); } }

/* ----------------------- Stats band ----------------------- */
.stats { padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; }
.stat-num { display: block; font-family: 'Sora', sans-serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-num .u { font-size: 0.55em; }
.stat-label { font-size: 0.86rem; color: var(--muted); }

/* ----------------------- Sections ----------------------- */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--bg-2); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.kicker { display: inline-block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-cyan); margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ----------------------- Cards (generic) ----------------------- */
.card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px;
  transition: transform .35s var(--ease), border-color .35s, background .35s, box-shadow .35s;
}
.card:hover { transform: translateY(-6px); border-color: var(--border-2); background: var(--surface-2); box-shadow: var(--shadow-sm); }

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

/* Formules */
.formule { padding-top: 38px; }
.formule-index { position: absolute; top: 22px; right: 26px; font-family: 'Sora'; font-weight: 800; font-size: 1.1rem; color: var(--faint); }
.formule h3 { font-size: 1.5rem; margin-bottom: 8px; }
.formule-tag { color: var(--c-cyan); font-weight: 600; margin-bottom: 14px; font-size: 0.98rem; }
.formule p { color: var(--muted); margin-bottom: 18px; }
.formule.featured { border-color: transparent; background:
  linear-gradient(var(--bg-3), var(--bg-3)) padding-box,
  var(--grad-primary) border-box;
  border: 1.5px solid transparent;
}
.formule.featured:hover { box-shadow: var(--glow); }
.ribbon { position: absolute; top: -13px; left: 24px; background: var(--grad-primary); color: #05080f; font-size: 0.72rem; font-weight: 800; padding: 5px 12px; border-radius: 100px; letter-spacing: 0.04em; box-shadow: 0 6px 16px rgba(0,0,0,.35); }
.formule.featured .formule-index { top: 18px; }

.ticks li { position: relative; padding-left: 28px; margin-bottom: 9px; color: var(--text); font-size: 0.94rem; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--c-cyan); font-weight: 800; }
.card-link { display: inline-block; margin-top: 16px; color: var(--c-cyan); font-weight: 600; font-size: 0.92rem; transition: gap .2s; }
.card-link:hover { opacity: 0.85; }

/* Configurateur steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.step { padding: 26px 22px; }
.step-ico { font-size: 1.9rem; display: block; margin-bottom: 14px; }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.9rem; }
.config-cta { text-align: center; margin-top: 50px; }
.config-cta > p { color: var(--muted); margin-bottom: 20px; }
.config-cta .hero-actions { justify-content: center; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature .feat-ico { font-size: 1.7rem; display: block; margin-bottom: 14px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.94rem; }
.feature-wide { grid-column: span 3; display: grid; grid-template-columns: auto 1fr; gap: 6px 22px; align-items: start; }
.feature-wide .feat-ico { grid-row: span 2; }
.feature-wide p strong { color: var(--c-cyan); }

/* ----------------------- Pricing ----------------------- */
.pricing { max-width: 820px; margin: 0 auto; }
.price-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.price-table th, .price-table td { padding: 16px 22px; text-align: left; }
.price-table thead th { background: var(--bg-3); font-family: 'Sora'; font-weight: 700; font-size: 0.95rem; }
.price-table thead th:not(:first-child), .price-table td:not(:first-child) { text-align: center; font-variant-numeric: tabular-nums; }
.price-table tbody tr { border-top: 1px solid var(--border); }
.price-table tbody td:not(:first-child) { font-weight: 700; font-size: 1.05rem; }
.price-table tbody tr:hover { background: var(--surface-2); }
.price-table tr.best { background: linear-gradient(90deg, rgba(37,224,214,.08), rgba(139,92,246,.08)); }
.price-table tr.best td:not(:first-child) { color: var(--c-cyan); }
.tag-best { display: inline-block; margin-left: 10px; font-family: 'Inter'; font-size: 0.68rem; font-weight: 700; background: var(--grad-primary); color: #05080f; padding: 3px 9px; border-radius: 100px; vertical-align: middle; }
.price-note { color: var(--faint); font-size: 0.84rem; margin-top: 18px; text-align: center; }

/* ----------------------- Co-dev ----------------------- */
.codev-grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 40px; align-items: start; }

.timeline { position: relative; padding-left: 8px; }
.tl-item { position: relative; display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding-bottom: 28px; }
.tl-item:not(:last-child)::before { content: ""; position: absolute; left: 21px; top: 40px; bottom: 0; width: 2px; background: linear-gradient(var(--border-2), transparent); }
.tl-step { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: 'Sora'; font-weight: 800; background: var(--surface); border: 1.5px solid var(--border-2); color: var(--c-cyan); }
.tl-body h4 { font-size: 1.08rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; }
.tl-time { font-family: 'Inter'; font-size: 0.76rem; font-weight: 700; color: var(--c-cyan); background: rgba(37,224,214,.1); padding: 3px 10px; border-radius: 100px; letter-spacing: 0.02em; }
.tl-body p { color: var(--muted); font-size: 0.92rem; margin-top: 4px; }

.codev-side { display: flex; flex-direction: column; gap: 22px; }
.codev-price h3 { font-size: 1.3rem; margin-bottom: 16px; }
.price-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.price-list li:last-child { border-bottom: none; }
.price-list span { color: var(--muted); font-size: 0.92rem; }
.price-list span small { display: block; color: var(--faint); font-size: 0.78rem; }
.price-list strong { font-family: 'Sora'; font-size: 1.15rem; white-space: nowrap; }
.price-list strong small { font-size: 0.7rem; color: var(--muted); font-weight: 500; }
.codev-note { color: var(--faint); font-size: 0.84rem; margin-top: 16px; }
.codev-note strong { color: var(--muted); }
.modalites li { position: relative; padding-left: 24px; margin-bottom: 10px; font-size: 0.9rem; color: var(--muted); }
.modalites li::before { content: "◆"; position: absolute; left: 0; color: var(--c-violet); font-size: 0.7rem; top: 4px; }
.modalites strong { color: var(--text); }

/* ----------------------- Process ----------------------- */
.process { display: flex; align-items: stretch; justify-content: center; gap: 8px; flex-wrap: wrap; }
.proc-step { flex: 1; min-width: 180px; text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 22px; transition: transform .3s var(--ease), border-color .3s; }
.proc-step:hover { transform: translateY(-5px); border-color: var(--border-2); }
.proc-num { display: grid; place-items: center; width: 50px; height: 50px; margin: 0 auto 16px; border-radius: 50%; background: var(--grad-primary); color: #05080f; font-family: 'Sora'; font-weight: 800; font-size: 1.3rem; }
.proc-step h3 { font-size: 1.2rem; margin-bottom: 6px; }
.proc-step p { color: var(--muted); font-size: 0.9rem; }
.proc-arrow { display: flex; align-items: center; color: var(--faint); font-size: 1.6rem; }

/* ----------------------- Contact / CTA ----------------------- */
.cta-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  background:
    radial-gradient(circle at 0% 0%, rgba(59,130,246,.14), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(139,92,246,.14), transparent 55%),
    var(--bg-3);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 50px; box-shadow: var(--shadow);
}
.cta-copy h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 14px; }
.cta-copy > p { color: var(--muted); margin-bottom: 28px; }
.contact-lines { display: flex; flex-direction: column; gap: 12px; }
.contact-line { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 500; transition: color .2s; }
a.contact-line:hover { color: var(--c-cyan); }
.contact-line .ci { font-size: 1.1rem; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  background: rgba(0,0,0,.25); border: 1px solid var(--border-2); color: var(--text);
  font-family: inherit; font-size: 0.95rem; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-cyan); box-shadow: 0 0 0 3px rgba(37,224,214,.15);
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field select { appearance: none; cursor: pointer; }
.form-fine { text-align: center; color: var(--faint); font-size: 0.8rem; margin-top: 2px; }

/* ----------------------- Footer ----------------------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 56px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-logo { width: 64px; height: 64px; object-fit: contain; }
.footer-tag { color: var(--muted); font-size: 0.92rem; max-width: 420px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 10px 24px; align-content: flex-start; justify-content: flex-end; }
.footer-nav a { color: var(--muted); font-size: 0.92rem; transition: color .2s; }
.footer-nav a:hover { color: var(--c-cyan); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-top: 24px; color: var(--faint); font-size: 0.82rem; }
.footer-legal { color: var(--muted); }

/* ----------------------- Reveal animation ----------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ----------------------- Responsive ----------------------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; }
  .hero-logo { width: min(320px, 70%); }
  .hero-actions, .hero-badges { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .codev-grid { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; padding: 36px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .feature-wide { grid-column: span 2; }
}

@media (max-width: 760px) {
  .header-actions .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--bg-2); border-left: 1px solid var(--border);
    padding: 90px 22px 30px; transform: translateX(100%);
    transition: transform .35s var(--ease); box-shadow: var(--shadow);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a { padding: 13px 16px; font-size: 1rem; }
  .nav-cta-mobile { display: block; margin-top: 12px; text-align: center; border: 1px solid var(--border-2); }
  .cards-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .process { flex-direction: column; }
  .proc-arrow { transform: rotate(90deg); justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .steps, .features { grid-template-columns: 1fr; }
  .feature-wide { grid-column: span 1; grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .cta-card { padding: 26px; }
}

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