/* ============================================================
   Tekovate — Intelligent Home Automation
   Dark · Glassmorphism · Motion
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --bg:           #0b0c0f;
  --bg-2:         #0f1116;
  --surface:      rgba(255, 255, 255, 0.045);
  --surface-2:    rgba(255, 255, 255, 0.07);
  --stroke:       rgba(255, 255, 255, 0.10);
  --stroke-2:     rgba(255, 255, 255, 0.18);

  --ink:          #f4f5f7;
  --ink-soft:     #b9bdc7;
  --ink-mute:     #7d828f;

  --gold:         #FFCD00;
  --gold-2:       #ffb300;
  --gold-soft:    rgba(255, 205, 0, 0.14);

  --radius:       22px;
  --radius-sm:    14px;
  --maxw:         1200px;

  --shadow:       0 30px 80px -30px rgba(0,0,0,0.7);
  --shadow-gold:  0 20px 60px -20px rgba(255, 190, 0, 0.35);

  --ease:         cubic-bezier(.22,.61,.36,1);
  --font:         'Sora', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; }

h1, h2, h3, h4 { font-family: var(--font); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }

/* ---------- Ambient background ---------- */
.bg-canvas { position: fixed; inset: 0; z-index: -2; overflow: hidden; background:
   radial-gradient(120% 80% at 50% -10%, #14161d 0%, var(--bg) 60%); }
.bg-grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(100% 70% at 50% 0%, #000 0%, transparent 75%);
}
.bg-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; }
.bg-glow--1 { width: 620px; height: 620px; top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(255,190,0,.30), transparent 70%); animation: drift1 22s var(--ease) infinite alternate; }
.bg-glow--2 { width: 540px; height: 540px; top: 40%; right: -160px;
  background: radial-gradient(circle, rgba(90,130,255,.22), transparent 70%); animation: drift2 26s var(--ease) infinite alternate; }
.bg-glow--3 { width: 480px; height: 480px; bottom: -160px; left: 30%;
  background: radial-gradient(circle, rgba(255,205,0,.16), transparent 70%); animation: drift1 30s var(--ease) infinite alternate-reverse; }
.bg-noise { position:absolute; inset:0; opacity:.035; pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

@keyframes drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(60px,40px) scale(1.15); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-70px,-30px) scale(1.1); } }

/* ---------- Glass utility ---------- */
.glass {
  background: var(--surface);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.06);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 20px; border-radius: 999px;
  font-family: var(--font); font-weight: 600; font-size: .95rem;
  white-space: nowrap; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.btn svg { transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--lg { padding: 15px 26px; font-size: 1rem; }
.btn--solid {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1500;
  box-shadow: var(--shadow-gold);
}
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 26px 70px -18px rgba(255,190,0,.55); }
.btn--ghost { background: var(--surface); border: 1px solid var(--stroke-2); color: var(--ink); }
.btn--ghost:hover { background: var(--surface-2); transform: translateY(-2px); }

/* ---------- Brand ---------- */
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.brand__mark { display: inline-flex; color: var(--ink); }
.brand__word { font-family: var(--font); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em; }

.grad-text {
  background: linear-gradient(120deg, var(--gold) 0%, #ffe27a 45%, var(--gold-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Navbar ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .3s var(--ease), border-color .3s var(--ease); border-bottom: 1px solid transparent; }
.nav.scrolled {
  background: rgba(11,12,15,.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--stroke);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { color: var(--ink-soft); font-size: .94rem; font-weight: 500; position: relative; transition: color .2s var(--ease); }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background: var(--gold); border-radius:2px; transition: width .25s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 10px 18px; font-size: .9rem; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 6px; padding: 0 clamp(20px,5vw,40px);
  max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s var(--ease);
  background: rgba(11,12,15,.92); backdrop-filter: blur(18px); border-bottom: 1px solid var(--stroke);
}
.nav__mobile.open { max-height: 360px; padding: 14px clamp(20px,5vw,40px) 24px; }
.nav__mobile a { padding: 12px 4px; color: var(--ink-soft); border-bottom: 1px solid var(--stroke); }
.nav__mobile a.btn { justify-content: center; border-bottom: none; margin-top: 10px; color: #1a1500; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 150px; padding-bottom: 90px; min-height: 100vh; display: flex; align-items: center; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; width: 100%; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px;
  background: var(--gold-soft); border: 1px solid rgba(255,205,0,.25);
  color: #ffe07a; font-size: .82rem; font-weight: 600; letter-spacing: .01em;
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); animation: pulse 2s infinite; }

.hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; margin: 22px 0 0; }
.hero__lead { color: var(--ink-soft); font-size: clamp(1.02rem, 1.6vw, 1.18rem); max-width: 540px; margin-top: 22px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 48px); margin-top: 52px; padding-top: 30px; border-top: 1px solid var(--stroke); }
.stat { display: flex; flex-direction: column; }
.stat__num, .stat__suffix { font-family: var(--font); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1; color: var(--ink); }
.stat__suffix { display: inline; color: var(--gold); }
.stat__label { color: var(--ink-mute); font-size: .82rem; margin-top: 8px; max-width: 150px; }

/* Hero panel */
.hero__panel { position: relative; justify-self: center; width: 100%; max-width: 420px; animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.panel { border-radius: var(--radius); padding: 22px; }
.panel__head { display: flex; align-items: center; justify-content: space-between; }
.panel__title { display: flex; align-items: center; gap: 9px; font-family: var(--font); font-weight: 600; font-size: 1.05rem; }
.panel__dot { width: 9px; height: 9px; border-radius: 50%; background: #36d399; box-shadow: 0 0 10px #36d399; }
.panel__status { font-size: .72rem; color: var(--ink-mute); }
.panel__scene { display: flex; gap: 8px; margin: 18px 0; }
.scene { flex: 1; padding: 9px; border-radius: 11px; background: var(--surface); border: 1px solid var(--stroke); color: var(--ink-soft); font-size: .8rem; font-weight: 500; transition: all .2s var(--ease); }
.scene--active { background: var(--gold-soft); border-color: rgba(255,205,0,.4); color: #ffe07a; }
.panel__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.tile { position: relative; padding: 14px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--stroke); transition: transform .2s var(--ease), border-color .2s var(--ease); }
.tile:hover { transform: translateY(-3px); border-color: var(--stroke-2); }
.tile__icon { width: 34px; height: 34px; border-radius: 10px; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; margin-bottom: 12px; }
.tile__icon svg { width: 19px; height: 19px; }
.tile__label { display: block; font-size: .78rem; color: var(--ink-mute); }
.tile__value { display: block; font-family: var(--font); font-weight: 600; font-size: .92rem; margin-top: 2px; }
.toggle { position: absolute; top: 14px; right: 14px; width: 32px; height: 18px; border-radius: 999px; background: rgba(255,255,255,.12); transition: background .25s var(--ease); }
.toggle::after { content:""; position: absolute; top: 2px; left: 2px; width: 14px; height: 14px; border-radius: 50%; background: #fff; transition: transform .25s var(--ease); }
.toggle--on { background: var(--gold); }
.toggle--on::after { transform: translateX(14px); }
.panel__energy { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--stroke); }
.energy__row { display: flex; justify-content: space-between; font-size: .8rem; color: var(--ink-soft); margin-bottom: 9px; }
.energy__val { color: #36d399; font-weight: 600; }
.energy__bar { height: 7px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.energy__bar span { display: block; height: 100%; width: var(--w); border-radius: 999px; background: linear-gradient(90deg, var(--gold-2), var(--gold)); }

.hero__panel-badge { position: absolute; bottom: -18px; left: -18px; display: flex; align-items: center; gap: 9px; padding: 11px 16px; border-radius: 999px; font-size: .82rem; font-weight: 600; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(255,205,0,.6); animation: ring 2s infinite; }
@keyframes ring { 0% { box-shadow: 0 0 0 0 rgba(255,205,0,.55); } 70% { box-shadow: 0 0 0 12px rgba(255,205,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,205,0,0); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--ink-mute); font-size: .74rem; letter-spacing: .15em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content:""; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--gold); animation: scrolldot 2s var(--ease) infinite; }
@keyframes scrolldot { 0% { transform: translateY(-100%); } 100% { transform: translateY(250%); } }

/* ---------- Trust bar ---------- */
.trust { padding: 26px 0; border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke); background: rgba(255,255,255,.012); }
.trust__inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.trust__label { color: var(--ink-mute); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.trust__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; align-items: center; }
.trust__list li { font-family: var(--font); font-weight: 600; font-size: clamp(.95rem, 1.6vw, 1.15rem); color: var(--ink-soft); }
.trust__list .dot { color: var(--gold); }

/* ---------- Sections ---------- */
.section { padding: clamp(70px, 10vw, 130px) 0; }
.section__head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 68px); text-align: center; }
.kicker { display: inline-block; color: var(--gold); font-family: var(--font); font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.section__title { font-size: clamp(2rem, 4.5vw, 3.3rem); }
.section__sub { color: var(--ink-soft); font-size: clamp(1rem, 1.5vw, 1.12rem); margin-top: 20px; }

/* ---------- Cards (solutions) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 30px; border-radius: var(--radius); position: relative; overflow: hidden; transition: transform .35s var(--ease), border-color .35s var(--ease); }
.card::before { content:""; position:absolute; inset:0; border-radius: inherit; padding:1px; background: linear-gradient(140deg, rgba(255,205,0,.4), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .35s var(--ease); }
.card:hover { transform: translateY(-6px); }
.card:hover::before { opacity: 1; }
.card__icon { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); margin-bottom: 22px; transition: transform .35s var(--ease); }
.card__icon svg { width: 27px; height: 27px; }
.card:hover .card__icon { transform: scale(1.08) rotate(-4deg); }
.card h3 { font-size: 1.3rem; margin-bottom: 11px; }
.card p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Why ---------- */
.section--why { position: relative; }
.why__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.why__copy { position: sticky; top: 110px; }
.why__copy .section__title { text-align: left; }
.why__copy .section__sub { margin-bottom: 30px; }
.why__list { display: flex; flex-direction: column; gap: 16px; }
.feature { display: flex; gap: 20px; padding: 26px; border-radius: var(--radius); transition: transform .3s var(--ease), border-color .3s var(--ease); }
.feature:hover { transform: translateX(6px); border-color: var(--stroke-2); }
.feature__no { font-family: var(--font); font-weight: 800; font-size: 1.6rem; color: transparent; -webkit-text-stroke: 1.4px var(--gold); flex-shrink: 0; }
.feature h3 { font-size: 1.22rem; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Process timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 30px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--stroke); transition: transform .3s var(--ease), background .3s var(--ease); }
.step:hover { transform: translateY(-5px); background: var(--surface-2); }
.step__num { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #1a1500; font-family: var(--font); font-weight: 800; font-size: 1.15rem; margin-bottom: 20px; box-shadow: var(--shadow-gold); }
.step h3 { font-size: 1.18rem; margin-bottom: 9px; }
.step p { color: var(--ink-soft); font-size: .94rem; }

/* ---------- Heritage ---------- */
.section--heritage { position: relative; }
.heritage__inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px, 4vw, 48px); align-items: stretch; }
.heritage__panel { padding: clamp(32px, 4vw, 50px); border-radius: var(--radius); }
.heritage__panel .section__title { text-align: left; }
.heritage__panel p { color: var(--ink-soft); margin-top: 20px; font-size: 1.04rem; }
.heritage__pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill { padding: 8px 16px; border-radius: 999px; background: var(--surface); border: 1px solid var(--stroke-2); font-size: .85rem; font-weight: 500; color: var(--ink-soft); }
.heritage__stats { display: flex; flex-direction: column; gap: 16px; }
.bigstat { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 30px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--stroke); }
.bigstat__num, .bigstat__suffix { font-family: var(--font); font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; color: var(--ink); }
.bigstat__suffix { color: var(--gold); }
.bigstat__label { color: var(--ink-mute); font-size: .9rem; margin-top: 10px; }

/* ---------- CTA ---------- */
.cta__panel { position: relative; padding: clamp(36px, 6vw, 70px); border-radius: 28px; text-align: center; overflow: hidden; }
.cta__glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(circle, rgba(255,205,0,.22), transparent 65%); pointer-events: none; }
.cta__title { font-size: clamp(2rem, 4.5vw, 3.2rem); position: relative; }
.cta__sub { color: var(--ink-soft); max-width: 560px; margin: 18px auto 0; font-size: 1.06rem; position: relative; }
.cta__form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 620px; margin: 40px auto 0; text-align: left; position: relative; }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input, .field textarea {
  width: 100%; padding: 18px 16px 8px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--stroke); color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease); resize: vertical;
}
.field textarea { min-height: 96px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--surface-2); }
.field label { position: absolute; left: 16px; top: 15px; color: var(--ink-mute); font-size: .95rem; pointer-events: none; transition: all .18s var(--ease); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: 6px; font-size: .72rem; color: var(--gold);
}
.cta__submit { grid-column: 1 / -1; justify-content: center; }
.cta__note { grid-column: 1 / -1; text-align: center; font-size: .9rem; color: #36d399; min-height: 1.2em; }
.cta__note.error { color: #ff6b6b; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--stroke); padding-top: 64px; margin-top: 40px; background: rgba(255,255,255,.012); }
.footer__inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 40px; padding-bottom: 48px; }
.footer__tag { color: var(--ink-mute); font-size: .92rem; margin-top: 18px; max-width: 320px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__cols h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink); margin-bottom: 16px; }
.footer__cols a { display: block; color: var(--ink-mute); font-size: .92rem; padding: 6px 0; transition: color .2s var(--ease); }
.footer__cols a:hover { color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 24px 0 36px; border-top: 1px solid var(--stroke); margin-top: 0; color: var(--ink-mute); font-size: .85rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-reveal-delay="1"] { transition-delay: .08s; }
.reveal[data-reveal-delay="2"] { transition-delay: .16s; }
.reveal[data-reveal-delay="3"] { transition-delay: .24s; }
.reveal[data-reveal-delay="4"] { transition-delay: .32s; }
.reveal[data-reveal-delay="5"] { transition-delay: .40s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { padding-top: 120px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__panel { order: -1; max-width: 380px; margin-bottom: 10px; }
  .hero__scroll { display: none; }
  .why__inner { grid-template-columns: 1fr; }
  .why__copy { position: static; }
  .why__copy .section__title, .heritage__panel .section__title { text-align: center; }
  .heritage__inner { grid-template-columns: 1fr; }
  .heritage__stats { flex-direction: row; }
  .cards, .timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }
  .cards, .timeline, .footer__inner, .heritage__stats { grid-template-columns: 1fr; }
  .cta__form { grid-template-columns: 1fr; }
  .heritage__stats { flex-direction: column; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
  .why__copy .section__title, .heritage__panel .section__title { text-align: left; }
}
@media (max-width: 480px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .hero__stats { gap: 20px; }
}

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