/* ============================================================
   VELORIC — Design System (Light)
   A bright, airy, high-craft aesthetic shared across every
   Veloric property. Depth comes from layered soft shadows and
   a refined blue gradient — not heavy borders. Add new product
   pages by reusing these tokens and components.
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand gradient — tuned to read on white (mid-blues → azure) */
  --grad-a: #2563ff;
  --grad-b: #3f7bff;
  --grad-c: #22a5e0;
  --brand-gradient: linear-gradient(115deg, var(--grad-a), var(--grad-b) 46%, var(--grad-c));
  --brand-gradient-solid: linear-gradient(120deg, #2f6bff, #2563ff 55%, #1d4ed8);

  /* Surfaces — soft off-white canvas, pure-white cards */
  --bg: #f6f8fd;
  --bg-tint: #eef3fc;
  --surface: #ffffff;
  --surface-2: #ffffff;
  --surface-tint: #f2f6ff;
  --stroke: rgba(19, 33, 68, 0.08);
  --stroke-strong: rgba(19, 33, 68, 0.14);

  /* Text — near-black navy for crisp contrast */
  --text: #0d1526;
  --text-dim: #4b5570;
  --text-faint: #8b93a7;

  /* Accents */
  --blue: #2563ff;
  --sky: #22a5e0;
  --glow: rgba(37, 99, 255, 0.28);

  /* Elevation — the light theme's sense of depth */
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05), 0 1px 3px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 6px 16px -6px rgba(16, 24, 40, 0.10), 0 14px 34px -10px rgba(16, 24, 40, 0.12);
  --shadow-lg: 0 30px 70px -18px rgba(30, 58, 138, 0.22), 0 10px 30px -12px rgba(16, 24, 40, 0.10);
  --shadow-blue: 0 12px 34px -10px var(--glow);

  /* Type */
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Metrics */
  --wrap: 1140px;
  --radius: 22px;
  --radius-sm: 13px;
  --nav-h: 76px;

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

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.62;
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  letter-spacing: -0.006em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--text);
}

/* ---------- Ambient background ---------- */
/* Soft, low-opacity color washes on a light canvas */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  /* Promote to its own compositor layer so scrolling content over it
     doesn't force the blurred blobs to re-rasterize (fixes macOS jank). */
  transform: translateZ(0);
  will-change: transform;
  background:
    radial-gradient(1200px 720px at 82% -8%, rgba(37, 99, 255, 0.10), transparent 60%),
    radial-gradient(1000px 640px at 2% 4%, rgba(34, 165, 224, 0.10), transparent 58%),
    linear-gradient(180deg, var(--bg-tint), var(--bg) 32%);
}
.aurora::before,
.aurora::after {
  content: "";
  position: absolute;
  width: 52vw;
  height: 52vw;
  max-width: 720px;
  max-height: 720px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform;
}
.aurora::before {
  top: -14%;
  left: -8%;
  background: radial-gradient(circle at center, rgba(37, 99, 255, 0.5), transparent 68%);
  animation: drift-a 24s var(--ease) infinite alternate;
}
.aurora::after {
  bottom: -18%;
  right: -10%;
  background: radial-gradient(circle at center, rgba(34, 165, 224, 0.45), transparent 68%);
  animation: drift-b 28s var(--ease) infinite alternate;
}
@keyframes drift-a {
  to { transform: translate3d(10vw, 12vh, 0) scale(1.12); }
}
@keyframes drift-b {
  to { transform: translate3d(-9vw, -11vh, 0) scale(1.18); }
}

/* Faint dot grid for texture and structure */
.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 78%);
  background-image: radial-gradient(rgba(19, 33, 68, 0.10) 1px, transparent 1.4px);
  background-size: 26px 26px;
}

/* Pointer-tracking glow (set via JS) */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  margin: -260px 0 0 -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 255, 0.08), transparent 62%);
  z-index: 0;
  pointer-events: none;
  transform: translate3d(-999px, -999px, 0);
  transition: opacity 0.4s ease;
}

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

main { position: relative; z-index: 1; }

section {
  padding-block: clamp(56px, 8vw, 108px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-gradient);
}

.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-size: clamp(1.05rem, 0.98rem + 0.5vw, 1.32rem);
  color: var(--text-dim);
  max-width: 60ch;
  line-height: 1.55;
}

p { color: var(--text-dim); }
strong { color: var(--text); font-weight: 600; }

/* ---------- Header / Nav ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
header.site.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom-color: var(--stroke);
  box-shadow: 0 8px 30px -18px rgba(16, 24, 40, 0.25);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.logo .mark {
  width: 40px;
  height: 34px;
  flex: none;
  filter: drop-shadow(0 4px 10px rgba(37, 99, 255, 0.28));
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(4px, 2vw, 22px);
}
nav a {
  position: relative;
  padding: 8px 4px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.25s ease;
}
nav a::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
nav a:hover { color: var(--text); }
nav a:hover::after,
nav a.active::after { transform: scaleX(1); }
nav a.active { color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 25px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  color: #fff;
  background: var(--brand-gradient-solid);
  box-shadow: var(--shadow-blue), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-weight: 600;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -10px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-ghost {
  color: var(--text);
  background: var(--surface);
  border-color: var(--stroke-strong);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--stroke-strong);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(66px, 12vh, 128px);
  padding-bottom: clamp(52px, 9vw, 108px);
}
.hero h1 {
  font-size: clamp(2.7rem, 1.5rem + 5vw, 5.6rem);
  max-width: 16ch;
  margin-bottom: 26px;
  letter-spacing: -0.035em;
}
.hero .lede { margin-bottom: 36px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Chip / pill */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 26px;
}
.chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(37, 99, 255, 0.5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 255, 0.45); }
  70% { box-shadow: 0 0 0 9px rgba(37, 99, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 255, 0); }
}

/* ---------- Section headings ---------- */
.section-head { max-width: 62ch; margin-bottom: clamp(34px, 5vw, 58px); }
.section-head h2 {
  font-size: clamp(1.95rem, 1.3rem + 2.2vw, 3.1rem);
  margin-bottom: 16px;
}

/* ---------- Cards & grids ---------- */
.grid {
  display: grid;
  gap: 22px;
}
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  padding: clamp(26px, 3vw, 36px);
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: var(--brand-gradient);
  -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 0.4s ease;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card:hover::before { opacity: 1; }

.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { font-size: 0.99rem; margin: 0; }

.card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 20px;
  color: #fff;
  background: var(--brand-gradient-solid);
  box-shadow: var(--shadow-blue);
}
.card-icon svg { width: 24px; height: 24px; }

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: clamp(30px, 4vw, 46px);
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-md);
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 1.4rem + 2.2vw, 3.2rem);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.stat .label { font-size: 0.92rem; color: var(--text-dim); }

/* ---------- App / product card (featured) ---------- */
.product {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  padding: clamp(30px, 4vw, 56px);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(34, 165, 224, 0.10), transparent 55%),
    radial-gradient(120% 140% at 0% 100%, rgba(37, 99, 255, 0.10), transparent 55%),
    var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.product .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--surface-tint);
  border: 1px solid rgba(37, 99, 255, 0.22);
  margin-bottom: 18px;
}
.product h2 {
  font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.4rem);
  margin-bottom: 16px;
}
.product .features {
  list-style: none;
  padding: 0;
  margin: 22px 0 30px;
  display: grid;
  gap: 13px;
}
.product .features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.99rem;
}
.product .features svg {
  width: 22px;
  height: 22px;
  flex: none;
  margin-top: 1px;
  color: var(--blue);
}

/* App icon tile */
.app-tile {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 330px;
  margin-inline: auto;
  border-radius: 32px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 120% at 28% 18%, rgba(255,255,255,0.32), transparent 46%),
    var(--brand-gradient-solid);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.app-tile .letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5rem, 4rem + 6vw, 9.5rem);
  color: #fff;
  text-shadow: 0 8px 30px rgba(0,0,0,0.22);
  line-height: 1;
}
.app-tile::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 55%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: rotate(18deg);
  animation: sheen 5.5s ease-in-out infinite;
}
@keyframes sheen {
  0%, 65% { left: -60%; }
  100% { left: 135%; }
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 13px; }
.faq-item {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(37, 99, 255, 0.25); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 21px 23px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.06rem;
}
.faq-q .plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex: none;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--text-faint);
  transition: transform 0.3s var(--ease), background 0.3s ease;
}
.faq-q .plus::before { width: 18px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 18px; }
.faq-item.open .faq-q .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item.open .faq-q .plus::before { background: var(--blue); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.faq-a p {
  padding: 0 23px 22px;
  margin: 0;
  color: var(--text-dim);
  font-size: 0.99rem;
}

/* ---------- Form ---------- */
.contact {
  display: grid;
  gap: 18px;
  max-width: 580px;
  padding: clamp(26px, 4vw, 40px);
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-md);
}
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke-strong);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-faint); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(37, 99, 255, 0.14);
}
.form-note {
  font-size: 0.85rem;
  color: var(--text-faint);
}
.form-status[data-state="warn"] { color: #b45309; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: clamp(42px, 6vw, 76px);
  border-radius: var(--radius);
  text-align: center;
  color: #fff;
  background:
    radial-gradient(120% 160% at 85% 0%, rgba(34, 165, 224, 0.55), transparent 55%),
    var(--brand-gradient-solid);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cta-band h2 {
  font-size: clamp(1.85rem, 1.3rem + 2.2vw, 2.9rem);
  margin-bottom: 14px;
  max-width: 18ch;
  margin-inline: auto;
  color: #fff;
}
.cta-band p { max-width: 48ch; margin: 0 auto 30px; color: rgba(255, 255, 255, 0.9); }
.cta-band .btn-primary {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 14px 34px -12px rgba(0, 0, 0, 0.4);
}
.cta-band .btn-primary:hover { box-shadow: 0 20px 44px -12px rgba(0, 0, 0, 0.45); }

/* ---------- Footer ---------- */
footer.site {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--stroke);
  background: var(--surface);
  margin-top: clamp(40px, 8vw, 92px);
  padding-block: 46px;
}
footer.site .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
}
.footer-brand .mark { width: 30px; height: 26px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.92rem;
}
.footer-links a { color: var(--text-dim); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--blue); }
.footer-legal { color: var(--text-faint); font-size: 0.86rem; width: 100%; }

/* ---------- Legal / prose pages ---------- */
.muted { color: var(--text-faint); }
.link { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.link:hover { text-decoration: none; }
.legal { max-width: 760px; }
.legal h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.1rem + 0.7vw, 1.6rem);
  margin: 42px 0 12px;
  color: var(--text);
}
.legal h3 { font-size: 1.05rem; margin: 24px 0 6px; color: var(--text); }
.legal p, .legal li { color: var(--text-dim); }
.legal p { margin: 12px 0; }
.legal strong { color: var(--text); }
.legal a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { text-decoration: none; }
.legal ul { padding-left: 1.25rem; margin: 12px 0; }
.legal li { margin: 6px 0; }
.legal hr { border: none; border-top: 1px solid var(--stroke); margin: 44px 0; }
.legal .note-card {
  background: var(--surface-tint);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin: 20px 0;
}
.legal .note-card p { margin: 0; color: var(--text-dim); }
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  display: block;
  overflow-x: auto;
}
.legal th, .legal td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--stroke);
  vertical-align: top;
  font-size: 0.95rem;
}
.legal th { color: var(--text); font-family: var(--font-display); font-weight: 600; }
.legal td { color: var(--text-dim); }
.legal footer.doc-end { color: var(--text-faint); font-size: 0.9rem; }

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.05s; }
.reveal[data-delay="2"] { transition-delay: 0.1s; }
.reveal[data-delay="3"] { transition-delay: 0.15s; }
.reveal[data-delay="4"] { transition-delay: 0.2s; }

/* Page transition veil */
.page-veil {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}
body.leaving .page-veil { opacity: 1; pointer-events: all; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .product { grid-template-columns: 1fr; }
  .product .app-tile { order: -1; }
}
@media (max-width: 620px) {
  .grid.cols-3,
  .grid.cols-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  nav a { font-size: 0.88rem; }
  .logo span.word { display: none; }
}

/* ---------- Motion preferences ---------- */
@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; }
}
