/* ============================================================
   HEXIO — Global stylesheet
   Brand: hexio.work · Damos en el Blanco × Núvol Digital
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Color */
  --ink: #0B0F19;
  --ink-2: #11172A;
  --ink-3: #1B2238;
  --paper: #FAFAF7;
  --cream: #F2EFE7;
  --cream-2: #EAE6DA;
  --lime: #C6F24E;
  --lime-deep: #A6D62C;
  --coral: #FF6B4A;
  --mist: #E5E7EB;
  --mist-2: #D1D5DB;
  --slate-700: #2A3040;
  --slate-500: #5E667A;
  --slate-400: #8A92A6;
  --slate-300: #B7BDC9;

  /* Semantic */
  --bg: var(--paper);
  --bg-soft: var(--cream);
  --fg: var(--ink);
  --fg-soft: var(--slate-500);
  --fg-mute: var(--slate-400);
  --line: var(--mist);
  --line-strong: var(--mist-2);
  --accent: var(--lime);
  --accent-2: var(--coral);
  --on-accent: var(--ink);

  /* Type */
  --font-display: "Geist", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Spacing scale (8) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px; --s-11: 160px;

  /* Shadows */
  --sh-hairline: 0 0 0 1px var(--line);
  --sh-card: 0 1px 0 var(--line), 0 24px 48px -32px rgba(11,15,25,0.18);
  --sh-card-hover: 0 1px 0 var(--line-strong), 0 32px 64px -28px rgba(11,15,25,0.28);
  --sh-pop: 0 24px 60px -20px rgba(11,15,25,0.4);

  /* Container */
  --w-max: 1240px;
  --w-prose: 68ch;
  --pad-x: clamp(20px, 5vw, 56px);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 160ms;
  --dur: 280ms;
  --dur-slow: 520ms;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
body { margin: 0; min-height: 100dvh; background: var(--bg); color: var(--fg); font-family: var(--font-sans); font-size: 17px; line-height: 1.55; font-feature-settings: "ss01", "cv11"; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: var(--r-xs); }
::selection { background: var(--lime); color: var(--ink); }

/* ---------- 3. Layout ---------- */
.container { width: 100%; max-width: var(--w-max); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: clamp(64px, 10vw, 128px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--bleed { padding-block: 0; }
.section--ink { background: var(--ink); color: var(--paper); --line: rgba(255,255,255,0.10); --line-strong: rgba(255,255,255,0.18); --fg: var(--paper); --fg-soft: var(--slate-300); --fg-mute: var(--slate-400); --bg: var(--ink); }
.section--cream { background: var(--cream); }

.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
  .grid-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--s-2); }
.gap-3 { gap: var(--s-3); }
.gap-4 { gap: var(--s-4); }
.gap-5 { gap: var(--s-5); }
.gap-6 { gap: var(--s-6); }

/* ---------- 4. Typography ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-soft);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow--bare::before { display: none; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--fg);
  margin: 0;
  text-wrap: balance;
}
.h1, h1 { font-size: clamp(44px, 7.2vw, 96px); font-weight: 800; letter-spacing: -0.035em; line-height: 0.98; }
.h2, h2 { font-size: clamp(34px, 4.8vw, 60px); letter-spacing: -0.028em; line-height: 1.02; }
.h3, h3 { font-size: clamp(24px, 2.6vw, 32px); letter-spacing: -0.018em; line-height: 1.15; }
.h4, h4 { font-size: clamp(18px, 1.6vw, 22px); letter-spacing: -0.01em; line-height: 1.25; font-weight: 600; }
.h5 { font-size: 16px; font-weight: 600; line-height: 1.3; }

.lead {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--fg-soft);
  max-width: 56ch;
}
.caption { font-size: 14px; color: var(--fg-soft); }
.mono { font-family: var(--font-mono); font-feature-settings: "ss01"; }
.text-center { text-align: center; }
.text-balance { text-wrap: balance; }
.prose { max-width: var(--w-prose); }
.prose p { margin: 0 0 var(--s-4); color: var(--fg-soft); font-size: 17px; line-height: 1.65; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--fg); font-weight: 600; }
.prose ul { margin: 0 0 var(--s-4); padding: 0; list-style: none; }
.prose li { padding: var(--s-3) 0; border-top: 1px solid var(--line); display: flex; gap: var(--s-3); align-items: flex-start; }
.prose li:last-child { border-bottom: 1px solid var(--line); }
.prose li::before { content: ""; flex-shrink: 0; width: 14px; height: 14px; margin-top: 6px; background: var(--accent); clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%); }

.text-accent { color: var(--accent-2); }
.text-mute { color: var(--fg-mute); }
.text-soft { color: var(--fg-soft); }
.text-fg { color: var(--fg); }
.underline-wave { background-image: linear-gradient(transparent 65%, var(--accent) 65%); background-size: 100% 100%; padding: 0 4px; }

/* ---------- 5. Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  height: 68px;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--fg);
}
.brand-lockup svg { width: 28px; height: 28px; }
.nav-primary { display: flex; align-items: center; gap: var(--s-6); }
.nav-primary a {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-soft);
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}
.nav-primary a:hover { color: var(--fg); }
.nav-primary a[aria-current="page"] { color: var(--fg); }
.nav-primary a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -22px; height: 2px; background: var(--accent); }

.nav-meta { display: flex; align-items: center; gap: var(--s-3); }

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 3px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lang-switch a {
  padding: 5px 10px;
  border-radius: var(--r-pill);
  color: var(--fg-mute);
  transition: all var(--dur-fast) var(--ease);
}
.lang-switch a[aria-current="true"] { background: var(--ink); color: var(--paper); }
.section--ink .lang-switch a[aria-current="true"] { background: var(--paper); color: var(--ink); }
.lang-switch a:hover:not([aria-current="true"]) { color: var(--fg); }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: var(--r-md); }
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: currentColor; position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 920px) {
  .nav-primary { display: none; }
  .nav-toggle { display: inline-flex; }
  body.menu-open { overflow: hidden; }
  body.menu-open .nav-primary {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--bg);
    padding: var(--s-6) var(--pad-x);
    border-top: 1px solid var(--line);
  }
  body.menu-open .nav-primary a {
    padding: var(--s-4) 0;
    border-bottom: 1px solid var(--line);
    font-size: 22px;
    font-weight: 600;
    color: var(--fg);
  }
  body.menu-open .nav-primary a[aria-current="page"]::after { display: none; }
}

/* ---------- 5b. Megamenu ---------- */
.has-mega { position: relative; }
.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-soft);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease);
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
}
.mega-trigger:hover, .mega-trigger[aria-expanded="true"] { color: var(--fg); }
.mega-trigger::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--dur-fast) var(--ease);
}
.mega-trigger[aria-expanded="true"]::after,
.has-mega:hover .mega-trigger::after { transform: rotate(225deg) translateY(0); }

.mega-panel {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-8px);
  margin-top: 22px;
  min-width: min(900px, 92vw);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-pop);
  padding: var(--s-5);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms;
}
.mega-panel::before {
  content: "";
  position: absolute;
  top: -24px; left: 0; right: 0; height: 24px;
}
.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel,
.mega-trigger[aria-expanded="true"] ~ .mega-panel,
.mega-panel:hover { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.mega-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: var(--s-4);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none;
}
.mega-card:hover { background: var(--cream); border-color: var(--line); transform: translateY(-2px); }
.mega-card__head { display: flex; align-items: center; gap: var(--s-2); }
.mega-card__icon {
  width: 32px; height: 32px;
  border-radius: 7px;
  background: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}
.mega-card:hover .mega-card__icon { background: var(--lime); }
.mega-card__icon svg { width: 18px; height: 18px; }
.mega-card__title { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: -0.015em; color: var(--fg); margin: 0; }
.mega-card__desc { font-size: 12.5px; color: var(--fg-soft); line-height: 1.45; margin: 0; }
.mega-card__list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.mega-card__list span {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--fg-mute);
  padding: 2px 8px;
  background: var(--cream);
  border-radius: var(--r-pill);
}
.mega-card:hover .mega-card__list span { background: var(--bg); }

.mega-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  font-size: 13px;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.mega-foot a { color: var(--fg-soft); display: inline-flex; align-items: center; gap: 6px; }
.mega-foot a:hover { color: var(--fg); }
.mega-foot__cta { color: var(--fg) !important; font-weight: 600; }

@media (max-width: 920px) {
  .mega-panel { display: none; }
  body.menu-open .has-mega { display: block; }
  body.menu-open .mega-trigger { display: none; }
  body.menu-open .mega-panel {
    display: block;
    position: static;
    transform: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    border: 0;
    background: transparent;
    min-width: 0;
    opacity: 1;
    visibility: visible;
  }
  body.menu-open .mega-grid { grid-template-columns: 1fr; gap: var(--s-2); }
  body.menu-open .mega-card { padding: var(--s-3) 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
  body.menu-open .mega-card:hover { background: transparent; transform: none; }
  body.menu-open .mega-foot { display: none; }
}

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 13px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 16px; height: 16px; }

.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--lime-deep); }

.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--ink-3); }
.section--ink .btn-ink { background: var(--paper); color: var(--ink); }
.section--ink .btn-ink:hover { background: var(--cream); }

.btn-ghost { background: transparent; color: var(--fg); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--ink); }
.section--ink .btn-ghost { color: var(--paper); border-color: rgba(255,255,255,0.2); }
.section--ink .btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.35); }

.btn-link { padding: 0; background: transparent; color: var(--fg); border-radius: 0; position: relative; }
.btn-link::after { content: "→"; transition: transform var(--dur-fast) var(--ease); }
.btn-link:hover::after { transform: translateX(4px); }

.btn-lg { padding: 17px 28px; font-size: 16px; }
.btn-sm { padding: 9px 14px; font-size: 13px; }

/* ---------- 7. Cards ---------- */
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  position: relative;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card--cream { background: var(--cream); border-color: transparent; }
.card--ink { background: var(--ink-2); border-color: var(--ink-3); color: var(--paper); }
.card--hover:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: var(--sh-card-hover); }
.card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  margin-bottom: var(--s-4);
}
.card__icon svg { width: 22px; height: 22px; }
.card--ink .card__icon { background: rgba(198,242,78,0.14); color: var(--accent); }
.card__title { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 var(--s-2); line-height: 1.15; }
.card__desc { color: var(--fg-soft); font-size: 15px; line-height: 1.55; margin: 0; }
.card__list { list-style: none; padding: 0; margin: var(--s-4) 0 0; display: flex; flex-direction: column; gap: var(--s-2); }
.card__list li { font-size: 14px; color: var(--fg-soft); padding-left: var(--s-4); position: relative; }
.card__list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; background: var(--accent); border-radius: 2px; transform: rotate(45deg); }
.card__cta { margin-top: var(--s-5); display: inline-flex; align-items: center; gap: 6px; color: var(--fg); font-weight: 600; font-size: 14px; }
.card__cta::after { content: "→"; transition: transform var(--dur-fast) var(--ease); }
.card--hover:hover .card__cta::after { transform: translateX(4px); }

/* Module card variant */
.card-module {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-5);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all var(--dur-fast) var(--ease);
}
.card-module:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--sh-card); }
.card-module__icon { width: 36px; height: 36px; color: var(--ink); }
.card-module__icon svg { width: 28px; height: 28px; }
.card-module__title { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.015em; }
.card-module__desc { font-size: 13.5px; color: var(--fg-soft); line-height: 1.45; }
.card-module__cat { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-mute); margin-top: auto; padding-top: var(--s-3); border-top: 1px dashed var(--line); }

/* ---------- 8. Hero ---------- */
.hero {
  padding-block: clamp(72px, 10vw, 144px) clamp(64px, 8vw, 112px);
  position: relative;
  overflow: hidden;
}
.hero__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--s-8); align-items: center; }
.hero__title { margin-bottom: var(--s-5); }
.hero__sub { margin-bottom: var(--s-6); max-width: 48ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-6); }
.hero__meta { display: flex; gap: var(--s-5); flex-wrap: wrap; align-items: center; font-size: 13px; color: var(--fg-mute); }
.hero__meta strong { color: var(--fg); font-weight: 600; }
.hero__visual { position: relative; }
.hero__bg-mesh {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(198,242,78,0.18), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(255,107,74,0.10), transparent 50%);
}
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 460px; margin-inline: auto; }
}

.hero-pack {
  padding-block: clamp(80px, 10vw, 144px) var(--s-7);
  position: relative;
}
.hero-pack__chip {
  display: inline-flex; align-items: center; gap: var(--s-2);
  background: var(--cream);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-5);
}
.hero-pack__chip svg { width: 16px; height: 16px; color: var(--ink); }

/* ---------- 9. Mosaic / hex motif ---------- */
.hex-mosaic {
  --cell: 64px;
  width: 100%;
  aspect-ratio: 1.1 / 1;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 8px;
}
.hex-mosaic__cell {
  aspect-ratio: 1 / 1.1547;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  animation: hex-pop var(--dur-slow) var(--ease) backwards;
}
.hex-mosaic__cell svg { width: 38%; height: 38%; }
.hex-mosaic__cell--accent { background: var(--lime); }
.hex-mosaic__cell--ink { background: var(--ink); color: var(--paper); }
.hex-mosaic__cell--coral { background: var(--coral); color: var(--paper); }
.hex-mosaic__cell--ghost { background: transparent; border: 1px dashed var(--line-strong); }

@keyframes hex-pop {
  from { opacity: 0; transform: scale(0.6) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ---------- 10. Comparison table ---------- */
.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
}
.compare th, .compare td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
.compare thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  background: transparent;
  border-bottom: 2px solid var(--ink);
}
.compare thead th:first-child { color: var(--fg-soft); font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-mono); }
.compare th.is-hexio { background: linear-gradient(180deg, var(--cream), transparent); }
.compare tbody tr:hover { background: rgba(11,15,25,0.02); }
.compare td:first-child { font-weight: 500; color: var(--fg); }
.compare td:not(:first-child) { color: var(--fg-soft); text-align: center; }
.compare td.is-hexio { color: var(--fg); font-weight: 600; }
.compare .check { color: #2BA84A; font-size: 18px; }
.compare .x { color: var(--coral); font-size: 18px; }

/* ---------- 11. FAQ accordion ---------- */
.faq { display: flex; flex-direction: column; }
.faq details {
  border-top: 1px solid var(--line);
  padding: var(--s-5) 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.015em;
  gap: var(--s-4);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 28px;
  color: var(--fg-soft);
  transition: transform var(--dur-fast) var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); color: var(--coral); }
.faq__answer { padding-top: var(--s-4); color: var(--fg-soft); max-width: 70ch; line-height: 1.6; }
.faq__answer p { margin: 0 0 var(--s-3); }
.faq__answer p:last-child { margin: 0; }

/* ---------- 12. Form ---------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field > label { font-size: 13px; font-weight: 500; color: var(--fg); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; }
.field > input, .field > textarea, .field > select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 16px;
  color: var(--fg);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.field > input:focus, .field > textarea:focus, .field > select:focus {
  border-color: var(--ink);
  outline: none;
  box-shadow: 0 0 0 4px rgba(198,242,78,0.4);
}
.field > textarea { min-height: 140px; resize: vertical; }

.contact-form { display: grid; gap: var(--s-4); grid-template-columns: 1fr 1fr; }
.contact-form .field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .contact-form { grid-template-columns: 1fr; } }

/* CTA strip */
.cta-strip {
  background: var(--lime);
  color: var(--ink);
  padding: clamp(48px, 7vw, 88px) var(--pad-x);
  border-radius: var(--r-xl);
  text-align: left;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: var(--s-6);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-strip__hex {
  position: absolute;
  right: -40px; top: -40px;
  width: 280px; height: 280px;
  opacity: 0.20;
  pointer-events: none;
}
.cta-strip h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: var(--s-3); }
@media (max-width: 760px) { .cta-strip { grid-template-columns: 1fr; text-align: left; } }

/* ---------- 13. Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: var(--s-9) var(--pad-x) var(--s-6);
  --line: rgba(255,255,255,0.10);
}
.site-footer .container { padding: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: var(--s-6); margin-bottom: var(--s-7); }
.footer-col h4 { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-400); margin: 0 0 var(--s-4); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--slate-300); font-size: 14.5px; transition: color var(--dur-fast) var(--ease); }
.footer-col a:hover { color: var(--paper); }
.footer-brand .brand-lockup { color: var(--paper); font-size: 26px; }
.footer-brand p { color: var(--slate-300); font-size: 14px; max-width: 36ch; line-height: 1.5; margin-top: var(--s-4); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s-4); padding-top: var(--s-5); border-top: 1px solid var(--line); font-size: 13px; color: var(--slate-400); font-family: var(--font-mono); }
.footer-bottom a { color: var(--slate-300); }
.footer-bottom a:hover { color: var(--paper); }
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- 14. Misc utilities ---------- */
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.kbd { font-family: var(--font-mono); font-size: 12px; padding: 2px 7px; border: 1px solid var(--line-strong); border-bottom-width: 2px; border-radius: 5px; background: var(--bg-soft); }

.mt-0 { margin-top: 0; } .mt-2 { margin-top: var(--s-2); } .mt-3 { margin-top: var(--s-3); } .mt-4 { margin-top: var(--s-4); } .mt-5 { margin-top: var(--s-5); } .mt-6 { margin-top: var(--s-6); } .mt-7 { margin-top: var(--s-7); } .mt-8 { margin-top: var(--s-8); }
.mb-0 { margin-bottom: 0; } .mb-3 { margin-bottom: var(--s-3); } .mb-4 { margin-bottom: var(--s-4); } .mb-5 { margin-bottom: var(--s-5); } .mb-6 { margin-bottom: var(--s-6); }

.icon { width: 1em; height: 1em; vertical-align: -0.125em; flex-shrink: 0; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

/* Logos strip */
.logos-strip { display: flex; flex-wrap: wrap; gap: var(--s-7); align-items: center; justify-content: center; opacity: 0.65; filter: grayscale(1); }
.logos-strip img, .logos-strip svg { height: 28px; width: auto; }
.logos-strip__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-soft); width: 100%; text-align: center; margin-bottom: var(--s-4); }

/* Tag list */
.taglist { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--fg-soft);
  font-family: var(--font-mono);
}
.tag svg { width: 14px; height: 14px; }
.tag--accent { background: var(--lime); color: var(--ink); border-color: transparent; }

/* Metric pill */
.metric { display: flex; flex-direction: column; gap: 4px; }
.metric__value { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.metric__label { font-size: 13px; color: var(--fg-soft); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; }

/* Step list (white-label process) */
.steps { counter-reset: step; display: grid; gap: var(--s-5); grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step { padding: var(--s-5); border: 1px solid var(--line); border-radius: var(--r-md); position: relative; counter-increment: step; }
.step::before { content: counter(step, decimal-leading-zero); font-family: var(--font-mono); font-size: 13px; color: var(--fg-mute); letter-spacing: 0.06em; }
.step h4 { margin: var(--s-3) 0 var(--s-2); font-size: 18px; }
.step p { font-size: 14px; color: var(--fg-soft); margin: 0; line-height: 1.55; }

/* Use case (escenari) */
.usecase { padding: var(--s-6); border-radius: var(--r-lg); background: var(--cream); display: flex; flex-direction: column; gap: var(--s-3); }
.usecase__role { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-soft); }
.usecase__quote { font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 26px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; }
.usecase__author { font-size: 13.5px; color: var(--fg-soft); }

/* Founder card */
.founder { display: flex; flex-direction: column; gap: var(--s-3); }
.founder__avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--cream);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 96px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  position: relative;
  overflow: hidden;
}
.founder__avatar::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, transparent 48%, rgba(11,15,25,0.04) 48%, rgba(11,15,25,0.04) 52%, transparent 52%);
  background-size: 14px 14px;
  pointer-events: none;
}
.founder__avatar--coral { background: var(--coral); color: var(--paper); }
.founder__avatar--lime { background: var(--lime); color: var(--ink); }
.founder__name { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.015em; }
.founder__role { font-size: 13px; color: var(--fg-soft); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; }
.founder__bio { font-size: 14.5px; color: var(--fg-soft); line-height: 1.55; }

/* Module categories index */
.mod-cat { display: flex; flex-direction: column; gap: var(--s-4); margin-bottom: var(--s-7); }
.mod-cat__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; padding-bottom: var(--s-3); border-bottom: 1px solid var(--line); }
.mod-cat__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.02em; }
.mod-cat__count { font-family: var(--font-mono); font-size: 13px; color: var(--fg-mute); }

/* Search input (modules page) */
.search {
  display: flex; align-items: center; gap: var(--s-3);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  padding: 6px 8px 6px 18px;
  max-width: 520px;
  margin: 0 auto var(--s-7);
  background: var(--bg);
}
.search input {
  flex: 1;
  border: 0; outline: none; padding: 8px 0;
  font-size: 16px; background: transparent;
}
.search button { background: var(--ink); color: var(--paper); border-radius: var(--r-pill); padding: 8px 14px; font-size: 13px; font-weight: 600; }
.search svg { width: 16px; height: 16px; color: var(--fg-mute); }

/* Sub nav (sticky inside module landing) */
.subnav {
  position: sticky; top: 68px;
  display: flex; gap: var(--s-2); flex-wrap: wrap;
  padding: var(--s-3) 0;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 40;
  overflow-x: auto;
}
.subnav a {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  color: var(--fg-soft);
  border: 1px solid transparent;
}
.subnav a:hover { background: var(--bg-soft); color: var(--fg); }
.subnav a.is-active { background: var(--ink); color: var(--paper); }

/* Hidden util */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- 15. Dark mode (optional, system) ---------- */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #07090F;
    --bg-soft: var(--ink-2);
    --fg: var(--paper);
    --fg-soft: var(--slate-300);
    --fg-mute: var(--slate-400);
    --line: rgba(255,255,255,0.10);
    --line-strong: rgba(255,255,255,0.18);
    --on-accent: var(--ink);
  }
  .card { background: var(--ink-2); }
  .card--cream { background: var(--ink-3); color: var(--paper); }
  .compare thead th { border-bottom-color: var(--paper); }
  .nav-toggle { color: var(--paper); }
  .section--cream { background: var(--ink-2); }
  .section--ink { background: #000; }
  .usecase { background: var(--ink-2); color: var(--paper); }
  .founder__avatar { background: var(--ink-3); color: var(--paper); }
  .compare th.is-hexio { background: linear-gradient(180deg, var(--ink-3), transparent); }
}

/* ---------- 15b. Wow animations ---------- */
.marquee {
  display: flex;
  overflow: hidden;
  gap: var(--s-7);
  padding: var(--s-5) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  border-block: 1px solid var(--line);
}
.marquee__track {
  display: flex;
  flex-shrink: 0;
  gap: var(--s-7);
  animation: marquee 50s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.03em;
  white-space: nowrap;
  align-items: center;
}
.marquee__track > * { display: inline-flex; align-items: center; gap: var(--s-3); color: var(--fg); }
.marquee__track > *::after { content: "•"; color: var(--lime); font-size: 0.6em; margin-left: var(--s-7); }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Hero gradient mesh, slowly drifting */
.hero__bg-mesh { animation: mesh-drift 24s ease-in-out infinite alternate; }
@keyframes mesh-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(2%, -3%, 0) scale(1.08); }
}

/* Pulsing accent dot — used on chips/cells */
.pulse-dot { position: relative; }
.pulse-dot::after {
  content: ""; position: absolute; top: 0; right: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(198, 242, 78, 0.6);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(198, 242, 78, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(198, 242, 78, 0); }
  100% { box-shadow: 0 0 0 0 rgba(198, 242, 78, 0); }
}

/* Card hover with 3D-ish lift + subtle rotation */
.card-3d {
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease);
  will-change: transform;
}
.card-3d:hover { transform: translateY(-8px) rotateX(2deg) rotateY(-2deg); box-shadow: var(--sh-pop); }

/* Letter pop — for big H1s */
.h-pop > span { display: inline-block; opacity: 0; transform: translateY(40%); animation: letter-pop 700ms var(--ease-out) forwards; }
@keyframes letter-pop {
  to { opacity: 1; transform: none; }
}

/* Floating hex (used in CTAs) */
.float-hex { animation: float-hex 9s ease-in-out infinite; }
@keyframes float-hex {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(8deg); }
}

/* Number counter style */
.tick {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 6vw, 84px);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

/* Glow border on focus */
.glow-on-hover { position: relative; }
.glow-on-hover::after {
  content: ""; position: absolute; inset: -2px; border-radius: inherit;
  background: linear-gradient(120deg, var(--lime), var(--coral), var(--lime));
  background-size: 200% 100%;
  z-index: -1; opacity: 0;
  transition: opacity var(--dur) var(--ease);
  animation: shift 4s linear infinite;
  filter: blur(8px);
}
.glow-on-hover:hover::after { opacity: 0.55; }
@keyframes shift {
  to { background-position: 200% 0; }
}

/* Module-icon hex tile (used in mosaic / module index) */
.hex-tile {
  position: relative;
  aspect-ratio: 1 / 1.155;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  cursor: default;
}
.hex-tile:hover { transform: scale(1.06); background: var(--ink); color: var(--paper); }
.hex-tile.is-accent { background: var(--lime); }
.hex-tile.is-accent:hover { background: var(--lime-deep); color: var(--ink); }
.hex-tile svg { width: 36%; height: 36%; }

/* ---------- 15c. Extra wow ---------- */

/* Top scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--coral));
  transform-origin: 0 50%;
  transform: scaleX(var(--p, 0));
  z-index: 100;
  pointer-events: none;
  transition: transform 80ms linear;
}

/* Cursor blob — soft glow following pointer (decorative) */
.cursor-blob {
  position: fixed;
  top: 0; left: 0;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,242,78,0.18), transparent 65%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 600ms var(--ease);
}
.cursor-blob.is-on { opacity: 1; }
@media (max-width: 760px), (pointer: coarse) { .cursor-blob { display: none; } }

/* Animated underline that draws when reveal */
.draw-line { position: relative; display: inline; }
.draw-line::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 4px;
  background: linear-gradient(90deg, var(--lime), var(--lime));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 1.1s var(--ease-out);
  border-radius: 2px;
}
.reveal.in-view .draw-line::after { transform: scaleX(1); }

/* Magnetic-feel CTA — subtle hover scale up */
.magnetic { transition: transform 240ms var(--ease); will-change: transform; }
.magnetic:hover { transform: translateY(-3px) scale(1.025); }

/* Bento grid for showcase — irregular card sizes */
.bento {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
}
.bento > * { padding: var(--s-5); border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--bg); position: relative; overflow: hidden; transition: transform var(--dur) var(--ease); }
.bento > *:hover { transform: translateY(-4px); }
.bento .b-1 { grid-column: span 4; grid-row: span 2; }
.bento .b-2 { grid-column: span 2; grid-row: span 1; }
.bento .b-3 { grid-column: span 2; grid-row: span 1; }
.bento .b-4 { grid-column: span 2; grid-row: span 2; }
.bento .b-5 { grid-column: span 4; grid-row: span 1; }
@media (max-width: 760px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento > * { grid-column: 1 !important; grid-row: auto !important; }
}

/* Section divider with hex pattern */
.hex-divider {
  height: 80px;
  background:
    radial-gradient(circle at 10px 10px, var(--mist) 1.5px, transparent 1.6px),
    radial-gradient(circle at 30px 27px, var(--mist) 1.5px, transparent 1.6px);
  background-size: 40px 34px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 40%, #000 60%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 40%, #000 60%, transparent);
}

/* Counter that "ticks" up — appearance only; JS sets final value */
.tick.tick--anim {
  display: inline-block;
  transition: opacity 600ms var(--ease);
}

/* Glassmorphism card variant */
.card-glass {
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid color-mix(in srgb, var(--line-strong) 50%, transparent);
}

/* Hover-tilt on hex tiles inside grids */
.hex-tile { transform-style: preserve-3d; }
.hex-tile::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.4), transparent 50%);
  opacity: 0; transition: opacity 200ms var(--ease);
  clip-path: inherit;
  pointer-events: none;
}
.hex-tile:hover::before { opacity: 1; }

/* Sticky module sub-nav glow */
.subnav { transition: backdrop-filter 200ms var(--ease); }
.subnav::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0;
  transition: opacity 400ms var(--ease);
}
.subnav.is-stuck::after { opacity: 1; }

/* CTA strip extra polish: ambient hexagon flicker */
@keyframes flicker {
  0%, 100% { opacity: 0.18; }
  50% { opacity: 0.32; }
}
.cta-strip__hex { animation: flicker 6s ease-in-out infinite; }

/* Confetti on success (used by tools) */
.confetti-piece {
  position: fixed;
  top: -10px;
  width: 8px; height: 8px;
  background: var(--lime);
  pointer-events: none;
  animation: confetti 1.6s linear forwards;
}
@keyframes confetti {
  to { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* Tilt-on-pointer (3D-ish card) */
.card-tilt { perspective: 800px; transform-style: preserve-3d; }
.card-tilt > * { transition: transform 200ms var(--ease); will-change: transform; transform-style: preserve-3d; }

/* Spotlight effect on dark sections */
.spotlight {
  position: relative;
  background:
    radial-gradient(800px 400px at var(--sx, 50%) var(--sy, 0%), rgba(198,242,78,0.10), transparent 70%),
    var(--ink);
}

/* Big arrow pointer (decorative) */
.big-arrow {
  width: 80px; height: 80px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 32px; font-weight: 700;
  transition: transform var(--dur) var(--ease);
}
.big-arrow:hover { transform: scale(1.1) rotate(-6deg); }

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