/* ==========================================================
   Accel Value — Landing  v2
   Brand: #E8442A (red) · #F18719 (orange)  · bg #0A0A0A
   Fonts: Bricolage Grotesque (opsz 12..96, wght 200..800)
          + JetBrains Mono
   ========================================================== */

/* ── Design tokens ──────────────────────────────────────── */
:root {
  /* palette */
  --black:       #000000;
  --bg:          #0A0A0A;
  --bg-soft:     #111111;
  --bg-mute:     #161616;
  --bg-warm:     #120E0A;
  --bg-cream:    #0E0E0E;
  --line:        #262626;
  --line-2:      #1E1E1E;
  --ink:         #FFFFFF;
  --ink-2:       #FFFFFF;
  --ink-3:       #FFFFFF;
  --ink-4:       #FFFFFF;
  --ink-5:       #D0D0D0;
  --oxford:      #2B2E35;
  --red:         #E8442A;
  --red-deep:    #C63520;
  --red-glow:    rgba(232, 68, 42, 0.18);
  --red-soft:    #1E0A06;
  --orange:      #F18719;
  --orange-soft: #1E1006;

  /* radii */
  --radius:    12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.55), 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 4px 16px -4px rgba(0,0,0,.65), 0 2px 8px -2px rgba(0,0,0,.4);
  --shadow-lg: 0 24px 56px -18px rgba(0,0,0,.7), 0 8px 24px -10px rgba(0,0,0,.45);
  --shadow-xl: 0 44px 88px -28px rgba(0,0,0,.8), 0 14px 32px -14px rgba(0,0,0,.55);

  /* type */
  --font-sans: "Bricolage Grotesque", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* easing */
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-feature-settings: "liga" 1, "kern" 1, "ss01" 1;
  color: var(--ink);
  background: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
p { margin: 0; }

/* ── Layout ─────────────────────────────────────────────── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 600px) { .wrap { padding: 0 20px; } }

/* CSS noise overlay — fixed, pointer-events-none */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── Typography ─────────────────────────────────────────── */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 3px;
  height: 18px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow .dot { display: none; }

h1, h2, h3, h4 {
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0;
  font-weight: 500;
  text-wrap: balance;
}

.h-display {
  font-weight: 800;
  font-variation-settings: "opsz" 72, "wght" 800;
  letter-spacing: -0.045em;
}

.h1 {
  font-size: clamp(52px, 7.5vw, 88px);
  line-height: 0.97;
  letter-spacing: -0.04em;
  font-weight: 700;
  font-variation-settings: "opsz" 96, "wght" 700;
}
.h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  font-variation-settings: "opsz" 72, "wght" 700;
}
.h3 {
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.lede {
  font-size: clamp(15.5px, 1.25vw, 17.5px);
  line-height: 1.65;
  color: var(--ink-3);
  max-width: 56ch;
  font-weight: 350;
  text-wrap: pretty;
  font-variation-settings: "wght" 350;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    transform 200ms var(--ease-spring),
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 200ms ease;
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.14) inset, 0 8px 20px -6px rgba(218,50,21,.5);
}
.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,.14) inset, 0 14px 30px -8px rgba(218,50,21,.6);
}
.btn-primary:active { transform: scale(0.97); box-shadow: none; }
.btn-ghost {
  color: var(--ink-2);
  border-color: var(--line);
  background: rgba(255,255,255,.03);
}
.btn-ghost:hover { border-color: var(--ink-5); transform: translateY(-1px); color: var(--ink); }
.btn-ghost:active { transform: scale(0.97); }
.btn-dark { background: var(--red); color: #fff; }
.btn-dark:hover { background: var(--red-deep); transform: translateY(-1px); }
.btn-dark:active { transform: scale(0.97); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 17px 28px; font-size: 15.5px; }

.icon-arrow {
  width: 15px; height: 15px;
  transition: transform 220ms var(--ease-out);
  flex-shrink: 0;
}
.btn:hover .icon-arrow { transform: translateX(4px); }

/* Loading state */
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.btn[data-loading] {
  pointer-events: none;
  position: relative;
  color: rgba(0,0,0,0) !important;
}
.btn[data-loading] svg { opacity: 0; }
.btn[data-loading]::after {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 550ms linear infinite;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,10,10,.88);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: transform 300ms var(--ease-out);
}
.nav.nav-hidden { transform: translateY(-100%); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; letter-spacing: -0.03em;
}
.brand b { font-weight: 700; }
.brand > span > span { color: var(--ink-4); font-weight: 500; }
.pill-odoo { background: #1a1a1a !important; padding: 4px 10px 4px 8px !important; gap: 7px !important; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 7px 13px;
  font-size: 13.5px;
  color: var(--ink-4);
  border-radius: 7px;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background 150ms ease, color 150ms ease;
  letter-spacing: -0.01em;
}
.nav-link:hover { background: rgba(255,255,255,.05); color: var(--ink); }
.nav-link.active { color: var(--ink); background: rgba(255,255,255,.06); }
.nav-cta { display: flex; gap: 8px; }
@media (max-width: 880px) { .nav-links { display: none; } }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
}

/* Large radial glow */
.hero::before {
  content: "";
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(232,68,42,.16) 0%,
    rgba(241,135,25,.07) 35%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* Secondary accent glow bottom-right */
.hero::after {
  content: "";
  position: absolute;
  bottom: -10%; right: -8%;
  width: 600px; height: 500px;
  background: radial-gradient(ellipse at center,
    rgba(241,135,25,.10) 0%,
    transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Decorative gradient blobs */
.hero-blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hb { position: absolute; filter: blur(16px); }
.hb-1 { top: -28%; left: -8%; width: 34rem; height: 56rem; transform: rotate(-45deg);
  background: radial-gradient(closest-side, rgba(232,68,42,.12) 0%, transparent 72%); }
.hb-2 { top: -16%; right: -6%; width: 28rem; height: 48rem; transform: rotate(-45deg);
  background: radial-gradient(closest-side, rgba(241,135,25,.09) 0%, transparent 72%); }
@media (max-width: 980px) { .hero-blobs { display: none; } }

/* Interactive starfield / particle network — global fixed background */
#bgStars {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}

.hero-center {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  padding: 7px 7px 7px 16px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 32px;
  font-weight: 500;
}
.hero-eyebrow .pill {
  background: var(--red);
  color: #fff;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-flex; align-items: center; gap: 5px;
}

.h1 .accent {
  font-weight: 800;
  font-variation-settings: "opsz" 96, "wght" 800;
  letter-spacing: -0.05em;
  color: var(--red);
  display: inline-block;
  /* subtle underline bar */
  border-bottom: 3px solid currentColor;
  padding-bottom: 2px;
}

.hero-lede { margin: 26px auto 40px; max-width: 660px; font-size: clamp(17px, 1.7vw, 21px); line-height: 1.6; }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.hero-meta {
  margin-top: 40px;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14.5px;
  color: var(--ink-4);
}
.hero-meta-item {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 500;
}
.check-ic {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--red);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.check-ic svg { width: 10px; height: 10px; color: #fff; }

/* Odoo module icon */
.mod-ic-odoo {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.mod-ic-odoo img { width: 52px; height: 52px; display: block; }

/* ── Section base ────────────────────────────────────────── */
section.sec { padding: 140px 0; }

/* Depth: translucent sections read as layered panels floating over the starfield */
.modules, .process, .about, .cta-section, .video-section, .footer {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), inset 0 -1px 0 rgba(0,0,0,.35);
}

.sec-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.sec-head .lede { margin-top: 18px; }
@media (max-width: 880px) {
  .sec-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  section.sec { padding: 100px 0; }
}

/* ── Video sections ──────────────────────────────────────── */
.video-section {
  padding: 120px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}
@media (max-width: 880px) { .video-section { padding: 80px 0; } }
@media (max-width: 640px) { .video-section { padding: 60px 0; } }
.video-section::before {
  content: "";
  position: absolute;
  top: -25%; right: -8%;
  width: 700px; height: 700px;
  background: radial-gradient(closest-side, rgba(241,135,25,.13), transparent 70%);
  pointer-events: none;
}
.video-section::after {
  content: "";
  position: absolute;
  bottom: -20%; left: -8%;
  width: 560px; height: 560px;
  background: radial-gradient(closest-side, rgba(218,50,21,.09), transparent 70%);
  pointer-events: none;
}
.video-section .sec-head { margin-bottom: 52px; position: relative; z-index: 1; }

.video-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16 / 10;
  cursor: pointer;
}
.video-card video { width: 100%; height: 100%; display: block; object-fit: cover; }
.video-poster {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #181818 0%, #201410 100%);
  z-index: 2;
  transition: opacity .35s var(--ease-out);
}
.video-card.playing .video-poster { opacity: 0; pointer-events: none; }
.video-play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--red);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 14px 44px rgba(218,50,21,.5), 0 0 0 10px rgba(232,68,42,.10);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}
.video-card:hover .video-play-btn {
  transform: scale(1.08);
  box-shadow: 0 18px 52px rgba(218,50,21,.65), 0 0 0 14px rgba(232,68,42,.12);
}
.video-card:active .video-play-btn { transform: scale(0.97); }
.video-play-btn svg { width: 28px; height: 28px; margin-left: 4px; }
.video-poster-text {
  position: absolute;
  bottom: 28px; left: 28px;
  color: rgba(255,255,255,.9);
  font-size: 13.5px;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
}
.video-poster-text img { height: 14px; width: auto; filter: brightness(0) invert(1); }

/* Custom controls */
.video-controls {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 40px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 100%);
  display: flex; align-items: center; gap: 12px;
  opacity: 0;
  transition: opacity .2s ease;
}
.video-card.playing:hover .video-controls,
.video-card.playing:focus-within .video-controls { opacity: 1; }
.vc-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 150ms ease, transform 180ms var(--ease-out);
}
.vc-btn:hover { background: rgba(255,255,255,.28); transform: scale(1.1); }
.vc-btn:active { transform: scale(0.92); }
.vc-btn svg { width: 14px; height: 14px; }
.vc-progress {
  flex: 1; height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 99px;
  cursor: pointer; position: relative; overflow: hidden;
  transition: height 150ms ease;
}
.vc-progress:hover { height: 6px; }
.vc-progress-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--red); border-radius: 99px;
  width: 0%; transition: width .1s linear;
  pointer-events: none;
}
.vc-time {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: rgba(255,255,255,.65);
  white-space: nowrap; flex-shrink: 0;
  min-width: 72px; text-align: right;
}
.vc-vol {
  width: 60px; height: 4px;
  flex-shrink: 0;
  accent-color: var(--red);
  cursor: pointer;
}
@media (max-width: 560px) { .vc-vol { display: none; } }

/* AI video variant */
.video-section-ai {
  background: linear-gradient(180deg, #0E0E0E 0%, #080808 100%);
}
.video-section-ai::before {
  background: radial-gradient(closest-side, rgba(218,50,21,.11), transparent 70%);
  top: auto; bottom: -28%; right: auto; left: -8%;
}
.video-section-ai::after {
  background: radial-gradient(closest-side, rgba(241,135,25,.09), transparent 70%);
  bottom: auto; top: -18%; left: auto; right: -8%;
}


/* ── Modules section ─────────────────────────────────────── */
.modules {
  background: var(--oxford);
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid background for modules */
.modules::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.modules .wrap { position: relative; z-index: 1; }

.mods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 980px) { .mods-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .mods-grid { grid-template-columns: repeat(2, 1fr); } }

/* Hidden modules */
.mod-hidden { display: none !important; }
.mods-grid.show-all .mod-hidden {
  display: flex !important;
  animation: modFadeIn .45s var(--ease-out) both;
}
@keyframes modFadeIn {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.mods-grid.show-all .mod-hidden:nth-child(13) { animation-delay: 0ms; }
.mods-grid.show-all .mod-hidden:nth-child(14) { animation-delay: 40ms; }
.mods-grid.show-all .mod-hidden:nth-child(15) { animation-delay: 80ms; }
.mods-grid.show-all .mod-hidden:nth-child(16) { animation-delay: 120ms; }
.mods-grid.show-all .mod-hidden:nth-child(17) { animation-delay: 160ms; }
.mods-grid.show-all .mod-hidden:nth-child(18) { animation-delay: 200ms; }
.mods-grid.show-all .mod-hidden:nth-child(19) { animation-delay: 240ms; }
.mods-grid.show-all .mod-hidden:nth-child(20) { animation-delay: 280ms; }
.mods-grid.show-all .mod-hidden:nth-child(21) { animation-delay: 320ms; }
.mods-grid.show-all .mod-hidden:nth-child(22) { animation-delay: 360ms; }
.mods-grid.show-all .mod-hidden:nth-child(23) { animation-delay: 400ms; }
.mods-grid.show-all .mod-hidden:nth-child(24) { animation-delay: 440ms; }

/* Module card */
.mod {
  background: radial-gradient(
    380px circle at var(--mouse-x, -50%) var(--mouse-y, -50%),
    rgba(232,68,42,.06) 0%,
    transparent 80%
  ), var(--bg-soft);
  border: none;
  padding: 26px 22px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background 280ms var(--ease-out);
  position: relative;
  min-height: 172px;
  overflow: hidden;
}

/* Top accent bar on every card (initially subtle) */
.mod::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background 250ms var(--ease-out);
}

.mod:hover::before {
  background: linear-gradient(90deg, var(--red) 0%, var(--orange) 100%);
  opacity: 1;
}

.mod:hover {
  background: radial-gradient(
    380px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(232,68,42,.10) 0%,
    transparent 80%
  ), #141414;
}
.mod:active { opacity: 0.9; }

.mod-ic { width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.mod-ic svg { width: 22px; height: 22px; }
.mod-name { font-weight: 700; font-size: 15px; letter-spacing: -0.025em; }
.mod-desc { font-size: 14px; color: var(--ink-4); line-height: 1.5; }
.mod-arrow {
  position: absolute;
  top: 22px; right: 20px;
  width: 16px; height: 16px;
  color: var(--ink-5);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms var(--ease-out), color 220ms ease;
}
.mod:hover .mod-arrow { opacity: 1; transform: translateX(3px) translateY(-3px); color: var(--red); }

/* Module color variants */
.ic-crm   { background: #2A0E08; color: #E8634A; }
.ic-sales { background: #271408; color: #F0A050; }
.ic-acct  { background: #0A1F10; color: #4AAD6A; }
.ic-inv   { background: #1E1800; color: #C8A030; }
.ic-mfg   { background: #14143A; color: #8080C0; }
.ic-hr    { background: #2A0A1A; color: #D86090; }
.ic-ecom  { background: #081830; color: #5090D8; }
.ic-pos   { background: #1C1030; color: #9A70E0; }
.ic-proj  { background: #08201E; color: #40B0A8; }
.ic-mkt   { background: #280E08; color: #E07058; }
.ic-pur   { background: #1A1408; color: #B08850; }
.ic-web   { background: #101828; color: #5888B0; }

/* Module scroll-reveal stagger */
.mod.reveal:nth-child(2)  { transition-delay: 30ms; }
.mod.reveal:nth-child(3)  { transition-delay: 60ms; }
.mod.reveal:nth-child(4)  { transition-delay: 90ms; }
.mod.reveal:nth-child(5)  { transition-delay: 120ms; }
.mod.reveal:nth-child(6)  { transition-delay: 150ms; }
.mod.reveal:nth-child(7)  { transition-delay: 180ms; }
.mod.reveal:nth-child(8)  { transition-delay: 210ms; }
.mod.reveal:nth-child(9)  { transition-delay: 240ms; }
.mod.reveal:nth-child(10) { transition-delay: 270ms; }
.mod.reveal:nth-child(11) { transition-delay: 300ms; }
.mod.reveal:nth-child(12) { transition-delay: 330ms; }

/* Modules toggle button */
.mods-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.mods-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}
.mods-toggle:hover {
  border-color: rgba(232,68,42,.5);
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 0 24px -8px rgba(232,68,42,.25);
  background: rgba(232,68,42,.04);
}
.mods-toggle:active { transform: scale(0.97); }
.mods-toggle-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 28px; height: 22px;
  padding: 0 8px;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
}
.mods-toggle-icon {
  width: 15px; height: 15px;
  transition: transform .28s var(--ease-out);
}
.mods-grid.show-all + .mods-toggle-wrap .mods-toggle-icon { transform: rotate(180deg); }

/* ── Process section ─────────────────────────────────────── */
.process {
  background: var(--oxford);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Strong red left-accent line */
.process::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--red) 30%, var(--orange) 70%, transparent 100%);
  opacity: 0.5;
  pointer-events: none;
}

/* Orange glow top-right */
.process::after {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 500px;
  background: radial-gradient(closest-side, rgba(241,135,25,.12), transparent 70%);
  pointer-events: none;
}

.process .wrap { position: relative; z-index: 1; }
.process .lede { color: #fff; }
.process .eyebrow { color: #fff; }
.process .eyebrow::before { background: var(--orange); }
.process .h2 { color: #fff; }

/* Step connecting line */
.steps-wrap { position: relative; }
.steps-connector {
  position: absolute;
  top: 48px;
  left: calc(25% / 2 + 28px);
  right: calc(25% / 2 + 28px);
  height: 1px;
  background: linear-gradient(90deg, rgba(241,135,25,.25) 0%, rgba(241,135,25,.08) 50%, rgba(241,135,25,.25) 100%);
  z-index: 0;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1s var(--ease-out) 0.3s;
}
.steps-connector.in { transform: scaleX(1); }
@media (max-width: 880px) { .steps-connector { display: none; } }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

.step {
  border-right: 1px solid rgba(255,255,255,.07);
  padding: 40px 28px 36px;
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  overflow: hidden;
}
.step:last-child { border-right: none; }
@media (max-width: 880px) {
  .step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
}

/* Watermark step number */
.step::after {
  content: attr(data-step-wm);
  position: absolute;
  bottom: -12px; right: 16px;
  font-size: 92px;
  font-weight: 800;
  font-variation-settings: "opsz" 96, "wght" 800;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,.04);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.step-n {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--orange);
  letter-spacing: 0.06em;
  font-weight: 500;
}
.step-ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(241,135,25,.08);
  border: 1px solid rgba(241,135,25,.14);
  display: grid; place-items: center;
  color: var(--orange);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms var(--ease-out);
}
.step:hover .step-ic {
  background: rgba(241,135,25,.16);
  border-color: rgba(241,135,25,.4);
  box-shadow: 0 0 24px rgba(241,135,25,.22);
  transform: scale(1.05);
}
.step-ic svg { width: 22px; height: 22px; }
.step-t { font-size: 19px; font-weight: 700; letter-spacing: -0.03em; }
.step-d { font-size: 15px; color: #fff; line-height: 1.6; }

/* Step stagger */
.step.reveal:nth-child(2) { transition-delay: 70ms; }
.step.reveal:nth-child(3) { transition-delay: 140ms; }
.step.reveal:nth-child(4) { transition-delay: 210ms; }

/* ── About section ───────────────────────────────────────── */
.about {
  background: var(--oxford);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  bottom: -20%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(closest-side, rgba(232,68,42,.08), transparent 70%);
  pointer-events: none;
}
.about .wrap { position: relative; z-index: 1; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.about-stat {
  border-bottom: 1px solid rgba(255,255,255,.07);
  border-right: 1px solid rgba(255,255,255,.07);
  padding: 24px 4px 24px 0;
}
.about-stat:nth-child(2n) { border-right: none; padding-left: 28px; }
.about-stat b {
  font-weight: 800;
  font-size: 50px;
  font-variation-settings: "opsz" 72, "wght" 800;
  letter-spacing: -0.04em;
  color: var(--red);
  display: block; line-height: 1;
  margin-bottom: 8px;
}
.about-stat span { font-size: 14px; color: var(--ink-4); font-weight: 500; }

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-soft);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-photo {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(232,68,42,.10) 0%, transparent 55%),
    var(--bg-soft);
  overflow: hidden;
}

/* About constellation — connected modules around Accel hub */
.about-constellation .ac-lines {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1;
}
.about-constellation .ac-lines line {
  stroke: rgba(232,68,42,.24);
  stroke-width: .4;
  stroke-dasharray: 2 2;
}
.ac-hub {
  position: absolute; left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  border-radius: 24px;
  background: linear-gradient(160deg, #181818, #0d0d0d);
  border: 1px solid rgba(255,255,255,.10);
  display: grid; place-items: center;
  z-index: 3;
  box-shadow: 0 0 56px -8px rgba(232,68,42,.45), var(--shadow-lg);
}
.ac-hub img { width: 56px; height: auto; }
.ac-chip {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  display: grid; place-items: center;
  z-index: 2;
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-md);
  animation: acFloat 6s var(--ease-in-out) infinite;
}
.ac-chip img { width: 34px; height: 34px; }
.ac-chip.c1 { left: 50%; top: 10%; animation-delay: 0s; }
.ac-chip.c2 { left: 82%; top: 24%; animation-delay: -1s; }
.ac-chip.c3 { left: 86%; top: 52%; animation-delay: -2s; }
.ac-chip.c4 { left: 18%; top: 24%; animation-delay: -3s; }
.ac-chip.c5 { left: 14%; top: 52%; animation-delay: -4s; }
.ac-chip.c6 { left: 50%; top: 68%; animation-delay: -5s; }
@keyframes acFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-7px); }
}
.about-badge {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(8,8,8,.96);
  color: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.07);
}
.about-badge .ic {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: grid; place-items: center; flex-shrink: 0;
}
.about-badge b { font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.about-badge span { font-size: 13.5px; color: #fff; display: block; margin-top: 2px; }

/* ── FAQ section ─────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  transition: color 160ms ease;
}
.faq-q:hover { color: var(--red); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center; flex-shrink: 0;
  transition: background 220ms ease, border-color 220ms ease;
}
.faq-icon svg { width: 12px; height: 12px; transition: transform .28s var(--ease-out); }
.faq-item.open .faq-icon { background: var(--red); border-color: var(--red); color: #fff; }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .42s var(--ease-out);
  color: var(--ink-3); font-size: 15.5px; line-height: 1.68;
  font-weight: 350;
  font-variation-settings: "wght" 350;
}
.faq-a-inner { padding: 0 0 28px; max-width: 70ch; }
.faq-item.open .faq-a { max-height: 380px; }

/* ── CTA / Form section ──────────────────────────────────── */
.cta-section {
  background: var(--oxford);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -40%; right: -18%;
  width: 750px; height: 750px;
  background: radial-gradient(closest-side, rgba(218,50,21,.30), transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -35%; left: -10%;
  width: 650px; height: 650px;
  background: radial-gradient(closest-side, rgba(241,135,25,.18), transparent 70%);
  pointer-events: none;
}
.cta-section .eyebrow { color: #fff; }
.cta-section .eyebrow::before { background: var(--orange); }

.cta-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
@media (max-width: 880px) { .cta-grid { grid-template-columns: 1fr; gap: 44px; } }
.cta-section h2 { color: #fff; }
.cta-section .lede { color: #fff; }

.cta-bullets { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.cta-bullet {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,.9);
}
.cta-bullet .ic {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--red);
  display: grid; place-items: center; flex-shrink: 0; margin-top: 1px;
}
.cta-bullet .ic svg { width: 12px; height: 12px; color: #fff; }

/* Form card */
.form-card {
  background: rgba(255,255,255,.025);
  border-radius: var(--radius-xl);
  padding: 36px;
  color: var(--ink);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
}
.form-card h3 { margin-bottom: 4px; color: #fff; }
.form-card p.lede { font-size: 15.5px; margin-bottom: 24px; color: #fff; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px;
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.field label { font-size: 13px; font-weight: 600; color: #fff; letter-spacing: 0.02em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14.5px; font-weight: 400;
  background: rgba(255,255,255,.05);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-5); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(232,68,42,.55);
  box-shadow: 0 0 0 3px rgba(218,50,21,.12);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239C9C9C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.field select option { background: #1a1a1a; }
.field textarea { resize: vertical; min-height: 82px; }
.form-card .btn-primary { width: 100%; justify-content: center; padding: 16px; font-size: 15.5px; margin-top: 4px; }
.form-foot {
  margin-top: 14px; font-size: 13px;
  color: #fff; text-align: center;
}
.form-foot a { color: #fff; text-decoration: underline; }
.form-foot a:hover { color: rgba(255,255,255,.9); }

/* Form success state */
.form-success {
  display: none; text-align: center; padding: 40px 8px;
}
.form-success.show {
  display: block;
  animation: heroIn 0.55s var(--ease-out) both;
}
.form-success .ic-success {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: grid; place-items: center;
  margin: 0 auto 20px; color: #fff;
  box-shadow: 0 12px 32px -8px rgba(218,50,21,.5);
}
.form-success h3 { margin-bottom: 10px; color: #fff; }
.form-success p { color: var(--ink-4); font-size: 14.5px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: transparent;
  color: #fff;
  padding: 88px 0 36px;
  position: relative;
}

/* Subtle red gradient in brand area */
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232,68,42,.4) 30%, rgba(241,135,25,.25) 60%, transparent 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #fff; font-size: 15px; font-weight: 500; transition: color 160ms ease; }
.footer-col a:hover { color: rgba(255,255,255,.9); }

.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: #fff;
}
.footer-tag { font-size: 14.5px; line-height: 1.7; max-width: 320px; color: #fff; }
.footer-cert {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px;
  padding: 10px 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: #fff;
}
.footer-bot {
  padding-top: 28px;
  display: flex; justify-content: space-between;
  font-size: 13px; color: #fff;
  flex-wrap: wrap; gap: 12px;
}
.footer-bot a { color: #fff; margin-left: 18px; transition: color 150ms ease; }
.footer-bot a:hover { color: rgba(255,255,255,.85); }

/* ── Hero entrance animations ────────────────────────────── */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.hero-eyebrow  { animation: heroIn 0.60s var(--ease-out) 0.05s  both; }
.hero .h1      { animation: heroIn 0.70s var(--ease-out) 0.14s  both; }
.hero-lede     { animation: heroIn 0.60s var(--ease-out) 0.26s  both; }
.hero-cta      { animation: heroIn 0.55s var(--ease-out) 0.36s  both; }
.hero-meta     { animation: heroIn 0.55s var(--ease-out) 0.46s  both; }

/* ── Scroll reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }

/* ── WhatsApp FAB ────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform 180ms var(--ease-out), background 180ms ease, box-shadow 180ms ease;
  z-index: 9999;
}
.wa-fab:hover { background: #1ebe5d; transform: translateY(-3px) scale(1.06); box-shadow: 0 8px 30px rgba(37,211,102,.55); }
.wa-fab:active { transform: scale(0.95); }

/* Inline WhatsApp CTAs */
.wa-cta { display: flex; justify-content: center; margin-top: 52px; }
.btn-wa {
  background: #25D366; color: #07160c;
  font-weight: 700;
  box-shadow: 0 4px 22px rgba(37,211,102,.28);
}
.btn-wa:hover { background: #1ebe5d; box-shadow: 0 8px 30px rgba(37,211,102,.4); transform: translateY(-1px); }
.btn-wa:active { transform: scale(0.97); }
.icon-wa { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Module inline panel (drawer) ────────────────────────── */
.mod-panel {
  grid-column: 1 / -1;
  background: var(--bg-mute);
  height: 0; opacity: 0; overflow: hidden;
  transition: height .42s var(--ease-out), opacity .3s var(--ease-out);
}
.mod-panel[hidden] { display: none; }
.mod-panel.open { opacity: 1; }
.mod-panel-inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; padding: 32px;
}
@media (max-width: 760px) { .mod-panel-inner { grid-template-columns: 1fr; gap: 22px; } }

.mod-panel-info { display: flex; flex-direction: column; gap: 18px; }
.mod-panel-info .btn { align-self: flex-start; }
.mod-panel-head { display: flex; align-items: center; gap: 14px; }
.mod-panel-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 13px;
}
.mod-panel-icon img { width: 38px; height: 38px; }
.mod-panel-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--red); margin-bottom: 4px;
}
.mod-panel-desc { color: var(--ink-2); font-size: 15px; line-height: 1.65; }
.mod-panel-feats {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px;
}
@media (max-width: 560px) { .mod-panel-feats { grid-template-columns: 1fr; } }
.mod-panel-feats li {
  position: relative; padding-left: 26px;
  font-size: 14.5px; color: var(--ink-2); line-height: 1.5;
}
.mod-panel-feats li::before {
  content: ""; position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--red-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8442A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.mod-panel-media {
  position: relative; align-self: start; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden;
  background: #000; border: 1px solid var(--line);
}
.mod-panel-media { cursor: default; }
.mod-panel-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.mod-panel-media:hover .video-controls,
.mod-panel-media:focus-within .video-controls { opacity: 1; }
.mod-panel-media:fullscreen { background: #000; }
.mod-panel-media:fullscreen video { object-fit: contain; }
.mod-panel-media:fullscreen .video-controls { opacity: 1; }
.mod-panel-media:-webkit-full-screen { background: #000; }
.mod-panel-media:-webkit-full-screen video { object-fit: contain; }
.mod-panel-media:-webkit-full-screen .video-controls { opacity: 1; }
/* image-only mode */
.mod-panel-img, .mod-panel-imgfb { position: absolute; inset: 0; width: 100%; height: 100%; display: none; }
.mod-panel-img { object-fit: cover; }
.mod-panel-imgfb { place-items: center; background: linear-gradient(135deg, #181818 0%, #201410 100%); }
.mod-panel-imgfb img { width: 84px; height: 84px; opacity: .9; }
.mod-panel-media.is-image video,
.mod-panel-media.is-image .video-poster,
.mod-panel-media.is-image .video-controls { display: none; }
.mod-panel-media.is-image .mod-panel-img { display: block; }
.mod-panel-media.is-image.img-missing .mod-panel-img { display: none; }
.mod-panel-media.is-image.img-missing .mod-panel-imgfb { display: grid; }
.mod-panel-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid var(--line);
  color: var(--ink-2); display: grid; place-items: center;
  transition: background 160ms ease, color 160ms ease, transform 180ms var(--ease-out);
}
.mod-panel-close:hover { background: rgba(255,255,255,.12); color: #fff; transform: scale(1.08); }
.mod-panel-close:active { transform: scale(.94); }
.mod-panel-close svg { width: 15px; height: 15px; }

.mod.is-active { background: #161616; }
.mod.is-active::before { background: linear-gradient(90deg, var(--red), var(--orange)); opacity: 1; }
.mod.is-active .mod-arrow { opacity: 1; color: var(--red); transform: rotate(90deg); }

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition-duration: 0.01ms !important;
  }
  .reveal.in { transform: none; opacity: 1; }
  .mod.reveal, .case.reveal, .step.reveal {
    transition-delay: 0ms !important;
  }
  .mods-grid.show-all .mod-hidden { animation: none !important; opacity: 1; transform: none; }
  .mod-panel { transition: none !important; }
  .steps-connector { transition: none !important; transform: scaleX(1); }
  .btn, .mod, .case, .industry, .nav-link, .vc-btn, .step-ic, .nav {
    transition-duration: 0.01ms !important;
  }
  .hero-eyebrow, .hero .h1, .hero-lede,
  .hero-cta, .hero-meta { animation: none !important; opacity: 1 !important; }
  * { animation-duration: 0.01ms !important; animation-delay: 0ms !important; }
}
