/* SPID Budget — Landing page (shares the SPID design system) */
@import url("colors_and_type.css");

/* ============================== RESET ============================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--spid-cream);
  color: var(--fg-1);
  font-family: var(--font-body);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
section { position: relative; }

/* ============================== TYPOGRAPHY ============================== */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--spid-orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--spid-gradient);
  border-radius: 2px;
}
.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6.2vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0;
}
.h-display .grad {
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.h-display .italic {
  font-style: italic;
  font-weight: 700;
}
h2.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
  max-width: 18ch;
}
h2.section-title.center { margin-left: auto; margin-right: auto; text-align: center; max-width: 22ch; }
.lead {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--fg-3);
  max-width: 60ch;
  margin: 22px 0 0;
}

/* ============================== LAYOUT ============================== */
.wrap {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
section.section {
  padding: clamp(80px, 11vw, 160px) 0;
}

/* ============================== NAV ============================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 220ms ease, backdrop-filter 220ms ease, border-color 220ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(254,248,234,0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 18px 32px;
  max-width: 1320px;
  margin: 0 auto;
}
.nav-logo { height: 26px; }
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  margin: 0 auto; /* center the links, absorbing the middle gap on wide screens */
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: background 180ms ease, color 180ms ease;
}
.nav-links a:hover { background: rgba(0,0,0,0.04); color: var(--spid-orange); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--spid-black);
  color: white;
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,0.18); }

/* QR popover on Télécharger l'app */
.nav-cta-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px; /* language switcher + download button on one line */
}
.nav-qr-pop {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow:
    0 24px 60px -10px rgba(247, 76, 6, 0.22),
    0 12px 30px -10px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.96);
  transform-origin: top right;
  transition: opacity 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
              visibility 0s linear 220ms;
  pointer-events: none;
  z-index: 60;
  min-width: 268px;
}
.nav-cta-wrap:hover .nav-qr-pop,
.nav-cta-wrap:focus-within .nav-qr-pop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition-delay: 0s;
}
.nav-qr-arrow {
  position: absolute;
  top: -7px;
  right: 28px;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  transform: rotate(45deg);
  border-radius: 3px 0 0 0;
}
.nav-qr-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--spid-orange);
  text-align: center;
  margin-bottom: 12px;
}
.nav-qr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.nav-qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.nav-qr-code {
  width: 96px;
  height: 96px;
  padding: 8px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(247, 76, 6, 0.10);
}
.nav-qr-code svg { width: 100%; height: 100%; display: block; }
.nav-qr-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  color: var(--fg-2);
}
.nav-qr-label svg { color: var(--fg-1); }

@media (max-width: 880px) {
  .nav-qr-pop { display: none; }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ============================== BUTTONS ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--spid-gradient);
  color: white;
  box-shadow: 0 8px 28px rgba(247,76,6,0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(247,76,6,0.36); filter: brightness(1.04); }
.btn-secondary {
  background: var(--spid-black);
  color: white;
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.22); }
.btn-ghost {
  background: rgba(0,0,0,0.04);
  color: var(--fg-1);
}
.btn-ghost:hover { background: rgba(0,0,0,0.08); }
.btn .arrow {
  display: inline-block;
  transition: transform 220ms ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ============================== HERO ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  /* pull up a few px so the orange covers the top edge (no cream sliver above) */
  margin-top: -6px;
  padding: 136px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.85;
  background: radial-gradient(circle at 30% 30%, #F74C06 0%, #F9BC2C 45%, transparent 70%);
  animation: blob-float 18s ease-in-out infinite alternate;
}
.blob.b1 { top: -300px; right: -260px; }
.blob.b2 {
  bottom: -460px; left: -300px;
  background: radial-gradient(circle at 50% 50%, #F9BC2C 0%, #F74C06 50%, transparent 75%);
  opacity: 0.45;
  width: 900px; height: 900px;
  animation-duration: 22s;
  animation-delay: -6s;
}
@keyframes blob-float {
  0%   { transform: translate(0,0) rotate(0deg) scale(1); }
  50%  { transform: translate(-40px, 60px) rotate(20deg) scale(1.08); }
  100% { transform: translate(60px, -40px) rotate(-15deg) scale(0.96); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero-copy { max-width: 720px; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-2);
  margin-bottom: 28px;
}
.hero-pill .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00A63E;
  box-shadow: 0 0 0 4px rgba(0,166,62,0.18);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0,166,62,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(0,166,62,0.0); }
}
.hero-pill .badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  background: var(--spid-black);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 56px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta-item {
  font-size: 13px;
  color: var(--fg-3);
}
.hero-meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  line-height: 1;
  margin-bottom: 4px;
}

/* ============================== PHONE MOCKUP (HERO) ============================== */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
}
.phone {
  position: relative;
  width: min(360px, 80vw);
  aspect-ratio: 9/19;
  background: #111;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 30px 80px rgba(247,76,6,0.18),
    0 60px 120px rgba(0,0,0,0.22),
    inset 0 0 0 1.5px rgba(255,255,255,0.06);
  transform: rotate(-3deg);
  animation: phone-float 7s ease-in-out infinite alternate;
}
@keyframes phone-float {
  0%   { transform: rotate(-3deg) translateY(0); }
  100% { transform: rotate(-1deg) translateY(-14px); }
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--spid-cream);
  isolation: isolate;
}
.phone-notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 24px;
  background: #111;
  border-radius: 20px;
  z-index: 5;
}

/* Phone screen content */
.app-shell {
  position: relative;
  height: 100%;
  padding: 50px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.app-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% -10%, #F9BC2C 0%, transparent 50%),
              radial-gradient(circle at -10% 100%, #F74C06 0%, transparent 50%);
  opacity: 0.30;
  z-index: 0;
}
.app-shell > * { position: relative; z-index: 1; }
.app-greeting { font-size: 11px; color: var(--fg-3); }
.app-greeting strong { font-family: var(--font-display); display: block; font-size: 16px; color: var(--fg-1); font-weight: 700; }
.app-card {
  border-radius: 18px;
  padding: 16px;
  background: white;
  box-shadow: var(--shadow-card);
  border: 0.5px solid rgba(0,0,0,0.06);
}
.app-card.gradient {
  background: var(--spid-gradient);
  color: white;
  border: none;
}
.app-card.gradient .label { color: rgba(255,255,255,0.78); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; }
.app-card.gradient .balance {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  margin: 6px 0 2px;
  letter-spacing: -0.01em;
}
.app-card.gradient .delta { font-size: 11px; opacity: 0.9; }
.app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
}
.app-row .left { display: flex; align-items: center; gap: 10px; }
.app-row .icon {
  width: 30px; height: 30px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(247,76,6,0.10);
  color: var(--spid-orange);
}
.app-row .name { font-weight: 600; font-size: 12px; }
.app-row .sub { color: var(--fg-muted); font-size: 10px; }
.app-row .amt { font-family: var(--font-display); font-weight: 600; font-size: 12px; }
.app-row .amt.pos { color: var(--success); }

.app-list { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
.app-list .label-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.app-list .label-row strong { color: var(--fg-1); font-family: var(--font-display); }

/* Floating chips around phone */
.float-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 18px 40px rgba(247, 76, 6, 0.16),
    0 6px 18px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: chip-float 5s ease-in-out infinite alternate;
}
.float-chip .ic {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--spid-gradient);
  color: white;
  flex-shrink: 0;
}
.float-chip strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.float-chip span { color: var(--fg-3); font-size: 10px; }
.float-chip.c1 { top: 12%; left: -8%; animation-delay: -1s; }
.float-chip.c2 { bottom: 14%; right: -6%; animation-delay: -2.5s; }
.float-chip.c3 { top: 50%; right: -10%; animation-delay: -3.5s; }
@keyframes chip-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}
@media (max-width: 600px) {
  .float-chip.c1 { left: 2%; }
  .float-chip.c2 { right: 2%; }
  .float-chip.c3 { right: 4%; top: 64%; }
}

/* ============================== LOGO STRIP ============================== */
.logo-strip {
  padding: 38px 0;
  border-block: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.4);
}
.logo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.logo-strip-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fg-muted);
  flex-shrink: 0;
}
.logo-strip-items {
  display: flex; gap: 36px; align-items: center; flex-wrap: wrap;
}
.logo-strip-items span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg-3);
  letter-spacing: -0.01em;
  opacity: 0.7;
}
.logo-strip-items .and-more {
  font-style: italic;
  font-weight: 600;
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 1;
}

/* ============================== PROBLEM SECTION ============================== */
.problem {
  background: var(--spid-navy);
  color: white;
  overflow: hidden;
}
.problem::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(247,76,6,0.20) 0%, transparent 60%);
  pointer-events: none;
}
.problem .eyebrow { color: var(--spid-amber); }
.problem h2 { color: white; }
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 60px 0 70px;
}
@media (max-width: 800px) { .problem-stats { grid-template-columns: 1fr; } }
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: transform 320ms ease, background 320ms ease;
}
.stat-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); }
.stat-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 5vw, 72px);
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.stat-card .lbl {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-top: 14px;
  line-height: 1.4;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  margin-top: 40px;
}
@media (max-width: 800px) { .problem-list { grid-template-columns: 1fr; } }
.problem-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.problem-item .n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--spid-amber);
}
.problem-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 6px;
  color: white;
}
.problem-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.55;
}

/* ============================== SOLUTION / 4 PILLARS ============================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 60px;
}
@media (max-width: 1000px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  --mx: 50%;
  --my: 50%;
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  border-radius: 20px;
  background: white;
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 0.5px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 480ms cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 360ms ease;
  cursor: pointer;
  isolation: isolate;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(360px circle at var(--mx) var(--my),
    rgba(247,76,6,0.20) 0%,
    rgba(249,188,44,0.12) 35%,
    transparent 65%);
  opacity: 0;
  transition: opacity 360ms ease;
  pointer-events: none;
  z-index: 0;
}
.pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(180px circle at var(--mx) var(--my),
    rgba(255,255,255,0.6) 0%,
    transparent 65%);
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 360ms ease;
  pointer-events: none;
  z-index: 1;
}
.pillar > * { position: relative; z-index: 2; }
.pillar:hover {
  border-color: rgba(247,76,6,0.45);
  box-shadow:
    0 26px 60px rgba(247,76,6,0.20),
    0 8px 24px rgba(0,0,0,0.06);
}
.pillar:hover::before { opacity: 1; }
.pillar:hover::after  { opacity: 1; }
.pillar:hover h3 {
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pillar:hover .ic {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 14px 30px rgba(247,76,6,0.30);
}
.pillar .ic {
  transition: transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 480ms ease;
}
.pillar h3 {
  transition: color 360ms ease;
}
.pillar .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--spid-orange);
  letter-spacing: 0.06em;
}
.pillar .ic {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--spid-gradient);
  color: white;
  display: grid; place-items: center;
  margin: 14px 0 22px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.pillar .fr { color: var(--spid-orange); font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.pillar p { font-size: 14px; color: var(--fg-3); line-height: 1.55; margin: 0; }
.pillar .stat {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex; gap: 4px; align-items: baseline;
}
.pillar .stat strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pillar .stat span { font-size: 11px; color: var(--fg-muted); }

/* ============================== HOW IT WORKS / "VIDEO" ============================== */
.how {
  background: var(--spid-cream-2);
  overflow: hidden;
}
.how::before {
  content: "";
  position: absolute;
  width: 800px; height: 800px;
  top: -300px; left: -250px;
  background: radial-gradient(circle, rgba(247,76,6,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.howw-player {
  position: relative;
  margin-top: 70px;
  background: var(--spid-black);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.25);
  isolation: isolate;
}
.howw-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: radial-gradient(ellipse at top, #1a1428 0%, #04052E 60%, #02021a 100%);
  overflow: hidden;
}
.howw-stage::before {
  content: "";
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(247,76,6,0.55) 0%, rgba(249,188,44,0.35) 40%, transparent 70%);
  filter: blur(60px);
  top: -200px; right: -200px;
  opacity: 0.6;
}

.howw-step {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease;
  padding: 5%;
}
.howw-step.active { opacity: 1; pointer-events: auto; }
.howw-step-inner {
  width: 100%; height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5%;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 700px) {
  .howw-step-inner { grid-template-columns: 1fr; gap: 16px; }
}
.howw-text { color: white; transform: translateY(20px); opacity: 0; transition: all 700ms ease 200ms; }
.howw-step.active .howw-text { transform: translateY(0); opacity: 1; }
.howw-text .step-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--spid-amber);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.howw-text .step-num::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--spid-gradient);
}
.howw-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: white;
}
.howw-text p {
  font-size: clamp(13px, 1.2vw, 17px);
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  margin: 0;
  max-width: 44ch;
}

.howw-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(40px) scale(0.94);
  opacity: 0;
  transition: all 800ms cubic-bezier(0.2, 0.8, 0.2, 1) 300ms;
}
.howw-step.active .howw-visual { transform: translateY(0) scale(1); opacity: 1; }

.howw-phone {
  width: min(280px, 80%);
  aspect-ratio: 9/19;
  background: #1c1c1c;
  border-radius: 36px;
  padding: 9px;
  box-shadow: 0 30px 80px rgba(247,76,6,0.35), 0 60px 120px rgba(0,0,0,0.4);
  position: relative;
}
.howw-phone-screen {
  width: 100%; height: 100%;
  border-radius: 27px;
  overflow: hidden;
  position: relative;
  background: var(--spid-cream);
}

/* Specific screen variations for each step */
.scr {
  position: absolute; inset: 0;
  padding: 36px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--spid-cream);
}
.scr::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 110% -10%, rgba(249,188,44,0.4), transparent 50%),
              radial-gradient(circle at -20% 110%, rgba(247,76,6,0.3), transparent 50%);
  pointer-events: none;
}
.scr > * { position: relative; z-index: 1; }
.scr .scr-h { font-size: 11px; color: var(--fg-3); }
.scr .scr-h strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--fg-1); }
.scr .wallet-list { display: flex; flex-direction: column; gap: 8px; }
.scr .wallet {
  display: flex; align-items: center; gap: 10px;
  background: white;
  border-radius: 12px;
  padding: 10px;
  font-size: 11px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.scr .wallet.checked { border: 1.5px solid var(--spid-orange); }
.scr .wallet .logo {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 11px;
  color: white;
}
.scr .wallet.mtn .logo { background: #FFCC00; color: #003;}
.scr .wallet.moov .logo { background: #0058A1; }
.scr .wallet.celtiis .logo { background: #00A63E; }
.scr .wallet .info { flex: 1; }
.scr .wallet .info strong { font-family: var(--font-display); font-weight: 600; display: block; font-size: 11px; }
.scr .wallet .info span { color: var(--fg-muted); font-size: 9px; }
.scr .wallet .check {
  width: 18px; height: 18px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--spid-gradient);
  color: white;
}

.scr .amount-input {
  background: white;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.scr .amount-input .lbl { font-size: 10px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.scr .amount-input .val { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; margin-top: 4px; }
.scr .amount-input .val .cur { font-size: 12px; opacity: 0.5; vertical-align: middle; margin-right: 2px; }

.scr .pct {
  background: white;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.scr .pct .row { display: flex; justify-content: space-between; font-size: 10px; color: var(--fg-3); }
.scr .pct .row strong { font-family: var(--font-display); color: var(--fg-1); font-size: 11px; }
.scr .pct .bar {
  height: 6px;
  background: rgba(0,0,0,0.06);
  border-radius: 10px;
  overflow: hidden;
}
.scr .pct .bar .fill {
  height: 100%;
  width: 30%;
  background: var(--spid-gradient);
  border-radius: 10px;
}
.scr .pct .knob {
  display: flex; gap: 6px; justify-content: space-between;
}
.scr .pct .knob span {
  flex: 1;
  text-align: center;
  font-size: 10px;
  padding: 6px 0;
  background: rgba(0,0,0,0.05);
  border-radius: 8px;
  font-weight: 600;
}
.scr .pct .knob span.on { background: var(--spid-gradient); color: white; }

.scr .invest-chart {
  flex: 1;
  background: white;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  display: flex; flex-direction: column; gap: 10px;
}
.scr .invest-chart h6 { font-family: var(--font-display); font-weight: 700; font-size: 11px; margin: 0; }
.scr .invest-chart .bal { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; }
.scr .invest-chart .bal .pos { font-size: 11px; color: var(--success); margin-left: 6px; }
.scr .invest-chart svg { flex: 1; width: 100%; }

.scr .success-stack {
  flex: 1; display: flex; flex-direction: column; gap: 10px; justify-content: center; align-items: center; text-align: center;
}
.scr .success-stack .check-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--spid-gradient);
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(247,76,6,0.35);
}
.scr .success-stack strong { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.scr .success-stack span { font-size: 10px; color: var(--fg-3); }
.scr .success-stack .ticket {
  margin-top: 10px;
  width: 100%;
  background: white;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  text-align: left;
}
.scr .success-stack .ticket .row { display: flex; justify-content: space-between; font-size: 10px; padding: 4px 0; }
.scr .success-stack .ticket .row strong { font-size: 11px; font-family: var(--font-display); font-weight: 600; }

/* Player controls */
.howw-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: white;
}
.howw-play {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--spid-gradient);
  color: white;
  display: grid; place-items: center;
  transition: transform 200ms ease;
}
.howw-play:hover { transform: scale(1.08); }
.howw-progress {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.howw-progress-fill {
  height: 100%;
  background: var(--spid-gradient);
  width: 0%;
  transition: width 200ms linear;
  border-radius: 4px;
}
.howw-time { font-size: 12px; font-variant-numeric: tabular-nums; color: rgba(255,255,255,0.7); min-width: 70px; text-align: right; }

.howw-steps-strip {
  display: flex;
  gap: 0;
  padding: 0 24px 18px;
  margin-top: -4px;
  background: rgba(0,0,0,0.0);
  flex-wrap: wrap;
}
.howw-step-chip {
  flex: 1; min-width: 0;
  padding: 14px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 8px;
  border-top: 2px solid rgba(255,255,255,0.10);
  cursor: pointer;
  transition: color 220ms, border-color 220ms;
}
.howw-step-chip.active { color: white; border-top-color: var(--spid-orange); }
.howw-step-chip .n { font-family: var(--font-display); font-weight: 700; opacity: 0.7; }

/* ============================== ECONOMY ============================== */
.economy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
@media (max-width: 900px) { .economy-grid { grid-template-columns: 1fr; } }
.eco-card {
  border-radius: 22px;
  padding: 32px;
  background: white;
  box-shadow: var(--shadow-card);
  border: 0.5px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.eco-card.dark { background: var(--spid-black); color: white; }
.eco-card.featured {
  background: linear-gradient(155deg, #04052E 0%, #1a1947 100%);
  color: white;
}
.eco-card .tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(247,76,6,0.1);
  color: var(--spid-orange);
  margin-bottom: 18px;
}
.eco-card.featured .tag { background: rgba(249,188,44,0.16); color: var(--spid-amber); }
.eco-card.dark .tag { background: rgba(247,76,6,0.16); color: var(--spid-amber); }
.eco-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.eco-card p { font-size: 14px; line-height: 1.55; margin: 0 0 22px; opacity: 0.78; }
.eco-card .pop {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 3.5vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.eco-card .pop .grad {
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eco-card .pop .neg { color: var(--danger-soft); }
.eco-card .pop-sub { font-size: 12px; opacity: 0.6; margin-top: 8px; }

/* ============================== MARKET ============================== */
.market {
  background: var(--spid-black);
  color: white;
  position: relative;
  overflow: hidden;
}
.market::before {
  content: "";
  position: absolute;
  width: 900px; height: 900px;
  bottom: -400px; right: -200px;
  background: radial-gradient(circle, rgba(247,76,6,0.30) 0%, rgba(249,188,44,0.18) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.market h2 { color: white; }
.market-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  margin-top: 60px;
  align-items: center;
}
@media (max-width: 900px) { .market-grid { grid-template-columns: 1fr; } }
.market-tam {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tam {
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  position: relative;
  overflow: hidden;
}
.tam.featured {
  background: var(--spid-gradient);
  border: none;
}
.tam .l { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; }
.tam.featured .l { color: rgba(255,255,255,0.85); opacity: 1; }
.tam .n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 14px 0 6px;
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tam.featured .n { background: none; -webkit-background-clip: initial; background-clip: initial; color: white; }
.tam .desc { font-size: 12px; opacity: 0.72; line-height: 1.45; }
.market-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}
.mstat {
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.mstat .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 2.2vw, 32px); letter-spacing: -0.01em; }
.mstat .l { font-size: 12px; opacity: 0.65; margin-top: 6px; }

/* ============================== TRACTION ============================== */
.traction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 60px;
}
@media (max-width: 900px) { .traction-grid { grid-template-columns: repeat(2, 1fr); } }
.trax {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 0.5px solid var(--border-orange);
}
.trax .l { font-size: 12px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.1em; }
.trax .n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 3.4vw, 46px);
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 16px 0 8px;
}
.trax .sub { font-size: 12px; color: var(--fg-muted); }

/* ============================== ROADMAP ============================== */
.road {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 60px;
}
@media (max-width: 900px) { .road { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .road { grid-template-columns: 1fr; } }
.road-step {
  border-radius: 20px;
  padding: 28px 24px;
  background: white;
  border: 0.5px solid var(--border-orange);
  box-shadow: var(--shadow-card);
  position: relative;
}
.road-step.now { background: var(--spid-gradient); color: white; border: none; }
.road-step.now h4, .road-step.now li { color: white; }
.road-step .t { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; opacity: 0.85; }
.road-step h4 { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin: 12px 0 16px; letter-spacing: -0.01em; }
.road-step ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.road-step li { font-size: 13px; line-height: 1.45; padding-left: 18px; position: relative; color: var(--fg-2); }
.road-step li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--spid-gradient);
}
.road-step.now li::before { background: white; }

/* ============================== TEAM ============================== */
.team-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  margin-top: 60px;
  align-items: center;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }
.team-photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
  position: relative;
  aspect-ratio: 4/5;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.5) 100%);
}
.team-photo .badge {
  position: absolute;
  left: 22px; bottom: 22px;
  color: white;
  z-index: 2;
}
.team-photo .badge strong { font-family: var(--font-display); font-weight: 700; font-size: 20px; display: block; }
.team-photo .badge span { font-size: 13px; opacity: 0.9; }
.team-members { display: flex; flex-direction: column; gap: 12px; }
.team-member {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 20px 22px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
  border: 0.5px solid rgba(0,0,0,0.06);
  transition: transform 220ms ease;
}
.team-member:hover { transform: translateX(4px); }
.team-member .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--spid-gradient);
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.team-member h5 { font-family: var(--font-display); font-weight: 700; font-size: 15px; margin: 0; }
.team-member span { font-size: 12px; color: var(--spid-orange); font-weight: 600; }
.team-member p { font-size: 13px; color: var(--fg-3); line-height: 1.45; margin: 6px 0 0; }

/* ============================== CTA BANNER ============================== */
.cta-banner {
  position: relative;
  border-radius: 32px;
  padding: clamp(48px, 7vw, 96px);
  background: var(--spid-gradient);
  color: white;
  overflow: hidden;
  margin: 0 32px;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.18) 0%, transparent 50%);
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .cta-banner-inner { grid-template-columns: 1fr; } }
.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 64px);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
  color: white;
}
.cta-banner p { font-size: 17px; opacity: 0.92; margin: 18px 0 0; max-width: 50ch; line-height: 1.55; }
.cta-banner .store-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(0,0,0,0.85);
  color: white;
  border-radius: 14px;
  transition: transform 200ms ease;
}
.store-btn:hover { transform: translateY(-2px); }
.store-btn .small { font-size: 10px; opacity: 0.78; display: block; }
.store-btn strong { font-family: var(--font-display); font-weight: 600; font-size: 14px; }

/* ============================== REGULATORY ============================== */
.reg { background: var(--spid-cream-2); }
.reg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}
@media (max-width: 800px) { .reg-grid { grid-template-columns: 1fr; } }
.reg-block {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 0.5px solid var(--border-orange);
}
.reg-block h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 8px;
  display: flex; align-items: center; gap: 10px;
}
.reg-block h4 .pill {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: rgba(247,76,6,0.12);
  color: var(--spid-orange);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.reg-block p { font-size: 14px; color: var(--fg-3); line-height: 1.6; margin: 8px 0 0; }
.reg-list { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 8px; }
.reg-list li { font-size: 13px; line-height: 1.55; color: var(--fg-2); padding-left: 18px; position: relative; }
.reg-list li::before { content: ""; position: absolute; left: 0; top: 6px; width: 6px; height: 6px; border-radius: 50%; background: var(--spid-orange); }

.reg-banner {
  margin-top: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: var(--spid-black);
  color: white;
  border-radius: 18px;
}
@media (max-width: 800px) { .reg-banner { grid-template-columns: 1fr; text-align: center; } }
.reg-banner .ic {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--spid-gradient);
  display: grid; place-items: center;
  color: white;
}
.reg-banner p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.55; }
.reg-banner p strong { color: white; font-family: var(--font-display); font-weight: 700; }

/* ============================== FAQ ============================== */
.faq-list { margin-top: 50px; display: flex; flex-direction: column; gap: 12px; }
.faq {
  background: white;
  border-radius: 16px;
  padding: 22px 28px;
  border: 0.5px solid var(--border-orange);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  cursor: pointer;
  transition: all 220ms ease;
}
.faq:hover { border-color: rgba(247,76,6,0.3); }
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--spid-orange);
  transition: transform 220ms ease;
  line-height: 1;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--fg-3); font-size: 14px; line-height: 1.6; margin: 14px 0 0; }

/* ============================== FOOTER ============================== */
.footer {
  background: var(--spid-black);
  color: white;
  padding: 80px 0 36px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0; left: 0;
  background: linear-gradient(90deg, transparent 0%, var(--spid-orange) 50%, transparent 100%);
  opacity: 0.5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand { max-width: 320px; }
.footer-brand img { filter: brightness(0) invert(1); height: 32px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; margin: 0; }
.footer-col h6 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: white;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 180ms; }
.footer-col a:hover { color: var(--spid-amber); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.65); margin-left: 18px; }
.footer-bottom a:hover { color: var(--spid-amber); }

/* ============================== REVEAL ANIMATIONS ============================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
[data-reveal].in {
  opacity: 1; transform: none;
}
[data-reveal-delay="1"] { transition-delay: 100ms; }
[data-reveal-delay="2"] { transition-delay: 200ms; }
[data-reveal-delay="3"] { transition-delay: 300ms; }
[data-reveal-delay="4"] { transition-delay: 400ms; }
[data-reveal-delay="5"] { transition-delay: 500ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================== USE CASES (PERSONAS) ============================== */
.uses {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 60px;
}
@media (max-width: 1100px) { .uses { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .uses { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .uses { grid-template-columns: 1fr; } }
.use {
  --mx: 50%;
  --my: 50%;
  --rx: 0deg;
  --ry: 0deg;
  border-radius: 22px;
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 30px 60px -20px rgba(247, 76, 6, 0.16),
    0 12px 28px -10px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 480ms cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 360ms ease,
              background 360ms ease;
  cursor: pointer;
  isolation: isolate;
}
.use::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(380px circle at var(--mx) var(--my),
    rgba(247,76,6,0.20) 0%,
    rgba(249,188,44,0.12) 35%,
    transparent 65%);
  opacity: 0;
  transition: opacity 360ms ease;
  pointer-events: none;
  z-index: 0;
}
.use::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(180px circle at var(--mx) var(--my),
    rgba(255,255,255,0.6) 0%,
    transparent 65%);
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 360ms ease;
  pointer-events: none;
  z-index: 1;
}
.use > * { position: relative; z-index: 2; }
.use:hover {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(247,76,6,0.45);
  box-shadow:
    0 36px 70px -18px rgba(247,76,6,0.28),
    0 14px 30px -10px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.85);
}
.use:hover::before { opacity: 1; }
.use:hover::after  { opacity: 1; }
.use:hover .who {
  background: var(--spid-gradient);
  color: white;
}
.use:hover h4 {
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.use:hover .emoji-illu {
  opacity: 0.22;
  transform: scale(1.5) translate(-8px, -8px);
}
.use .who {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  background: rgba(247,76,6,0.08);
  color: var(--spid-orange);
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: background 360ms ease, color 360ms ease;
}
.use h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 18px 0 10px;
  transition: color 360ms ease;
}
.use .emoji-illu { transition: opacity 480ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1); }
.use p {
  font-size: 14px;
  color: var(--fg-3);
  line-height: 1.55;
  margin: 0 0 18px;
}
.use .tags {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.use .tags span {
  font-size: 11px;
  padding: 5px 10px;
  background: var(--spid-cream-2);
  color: var(--fg-2);
  border-radius: var(--radius-pill);
  font-weight: 500;
}
.use .emoji-illu {
  position: absolute;
  bottom: -8px; right: -8px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--spid-gradient);
  opacity: 0.08;
}

/* ============================== PRICING ============================== */
.pricing {
  background: var(--spid-cream-2);
}
.pricing-table {
  margin-top: 60px;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 40px 80px -20px rgba(247, 76, 6, 0.18),
    0 14px 30px -10px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.pricing-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 2fr;
  gap: 24px;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-items: center;
}
@media (max-width: 700px) {
  .pricing-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 22px; }
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row.head {
  background: var(--spid-black);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing-row .what {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  gap: 14px;
}
.pricing-row .what .pic {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--spid-gradient);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.pricing-row .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.015em;
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pricing-row .price.free { background: none; -webkit-background-clip: initial; color: var(--success); }
.pricing-row .desc { font-size: 14px; color: var(--fg-3); line-height: 1.5; }

.pricing-foot {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--fg-3);
}

/* ============================== SECURITY ============================== */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}
@media (max-width: 900px) { .security-grid { grid-template-columns: 1fr; } }
.sec-card {
  --mx: 50%;
  --my: 50%;
  background: white;
  border-radius: 20px;
  padding: 30px 26px;
  border: 0.5px solid var(--border-orange);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 380ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 380ms ease,
              border-color 360ms ease;
  cursor: pointer;
}
.sec-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px circle at var(--mx) var(--my),
    rgba(247,76,6,0.10) 0%,
    rgba(249,188,44,0.06) 40%,
    transparent 70%);
  opacity: 0;
  transition: opacity 360ms ease;
  pointer-events: none;
  z-index: 0;
}
.sec-card > * { position: relative; z-index: 1; }
.sec-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247,76,6,0.45);
  box-shadow: 0 22px 50px rgba(247,76,6,0.16);
}
.sec-card:hover::before { opacity: 1; }
.sec-card .ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(247,76,6,0.10);
  color: var(--spid-orange);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: background 420ms ease, color 320ms ease, transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 420ms ease;
}
.sec-card:hover .ic {
  background: var(--spid-gradient);
  color: white;
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 12px 26px rgba(247,76,6,0.32);
}
.sec-card:hover h4 {
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sec-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  transition: color 320ms ease;
}
.sec-card p { font-size: 14px; color: var(--fg-3); line-height: 1.55; margin: 0; }

/* ============================== BCEAO BAND ============================== */
.bceao {
  margin-top: 56px;
  background: var(--spid-black);
  color: white;
  border-radius: 24px;
  padding: 36px 44px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.bceao::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(247,76,6,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.bceao > * { position: relative; z-index: 1; }
@media (max-width: 800px) {
  .bceao { grid-template-columns: 1fr; padding: 28px; text-align: left; }
}
.bceao-seal {
  width: 88px; height: 88px;
  border-radius: 24px;
  background: var(--spid-gradient);
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
}
.bceao-seal::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 20px;
  border: 1.5px dashed rgba(255,255,255,0.55);
}
.bceao-seal svg { color: white; position: relative; z-index: 1; }
.bceao-copy h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -0.015em;
  color: white;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.bceao-copy h4 .tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(249,188,44,0.18);
  color: var(--spid-amber);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bceao-copy p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0;
  max-width: 64ch;
}
.bceao-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  transition: background 200ms, transform 200ms;
  white-space: nowrap;
}
.bceao-link:hover { background: rgba(255,255,255,0.16); transform: translateX(2px); }

/* ============================== SIMULATOR ============================== */
.sim {
  background: var(--spid-cream);
  position: relative;
  overflow: hidden;
}
.sim::before {
  content: "";
  position: absolute;
  width: 900px; height: 900px;
  top: -300px; right: -300px;
  background: radial-gradient(circle, rgba(247,76,6,0.16) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.sim::after {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  bottom: -250px; left: -200px;
  background: radial-gradient(circle, rgba(249,188,44,0.16) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}

.sim-card {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  background: rgba(255, 255, 255, 0.60);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 40px 80px -20px rgba(247, 76, 6, 0.22),
    0 16px 36px -10px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}
.sim-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.40) 0%, rgba(255,255,255,0.0) 50%);
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.sim-card > * { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .sim-card { grid-template-columns: 1fr; }
}

.sim-controls { display: flex; flex-direction: column; gap: 28px; }
.sim-knob {
  background: rgba(255, 255, 255, 0.50);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border-radius: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.sim-knob .label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.sim-knob .label-row .l {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--fg-2);
}
.sim-knob .label-row .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.sim-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(to right,
    var(--spid-orange) 0%,
    var(--spid-amber) var(--pct, 50%),
    rgba(0,0,0,0.10) var(--pct, 50%),
    rgba(0,0,0,0.10) 100%);
  outline: none;
  cursor: pointer;
}
.sim-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--spid-orange);
  box-shadow: 0 6px 18px rgba(247,76,6,0.30);
  cursor: grab;
  transition: transform 180ms ease;
}
.sim-range::-webkit-slider-thumb:hover { transform: scale(1.08); }
.sim-range::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--spid-orange);
  box-shadow: 0 6px 18px rgba(247,76,6,0.30);
  cursor: grab;
}
.sim-knob .ticks {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
}
.sim-knob .helper {
  margin-top: 14px;
  font-size: 12px;
  color: var(--fg-3);
  line-height: 1.5;
}

.sim-kpi {
  background: var(--spid-black);
  color: white;
  border-radius: 18px;
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
}
.sim-kpi::before {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  top: -80px; right: -80px;
  background: radial-gradient(circle, rgba(247,76,6,0.35) 0%, transparent 60%);
  pointer-events: none;
}
.sim-kpi > * { position: relative; }
.sim-kpi .small {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--spid-amber);
  font-weight: 700;
}
.sim-kpi .big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 10px 0 6px;
  font-variant-numeric: tabular-nums;
}
.sim-kpi .big .unit { font-size: 0.5em; opacity: 0.5; margin-left: 6px; }
.sim-kpi .break {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.sim-kpi .break strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-variant-numeric: tabular-nums;
}

.sim-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--radius-pill);
  background: var(--spid-gradient);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 14px 30px rgba(247,76,6,0.30);
  transition: transform 200ms ease, box-shadow 200ms ease;
  align-self: flex-start;
  margin-top: 4px;
}
.sim-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(247,76,6,0.40); }

.sim-chart {
  position: relative;
  background: linear-gradient(180deg, var(--spid-cream-2) 0%, white 100%);
  border-radius: 18px;
  padding: 26px 28px 22px;
  border: 0.5px solid var(--border-orange);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 380px;
}
.sim-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.sim-chart-head h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin: 0;
  letter-spacing: -0.005em;
}
.sim-chart-head .legend {
  display: flex;
  gap: 16px;
  font-size: 12px;
}
.sim-chart-head .legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-3);
}
.sim-chart-head .legend .swatch {
  width: 12px; height: 12px;
  border-radius: 3px;
}
.sim-chart-head .legend .swatch.spid { background: var(--spid-gradient); }
.sim-chart-head .legend .swatch.mattress { background: rgba(0,0,0,0.18); }

.sim-svg {
  flex: 1;
  width: 100%;
  display: block;
  overflow: visible;
}
.sim-svg .axis-line { stroke: rgba(0,0,0,0.08); stroke-width: 1; }
.sim-svg .axis-label {
  font-family: var(--font-body);
  font-size: 11px;
  fill: var(--fg-muted);
  font-variant-numeric: tabular-nums;
}
.sim-svg .grid-line { stroke: rgba(0,0,0,0.05); stroke-width: 1; stroke-dasharray: 3 3; }
.sim-svg .mattress-fill { fill: rgba(0,0,0,0.06); }
.sim-svg .mattress-line { stroke: rgba(0,0,0,0.22); stroke-width: 1.5; fill: none; }
.sim-svg .spid-line   { stroke: var(--spid-orange); stroke-width: 2.5; fill: none; }
.sim-svg .spid-line, .sim-svg .mattress-line, .sim-svg .spid-fill-path, .sim-svg .mattress-fill {
  transition: d 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sim-svg .milestone {
  fill: white;
  stroke: var(--spid-orange);
  stroke-width: 2.5;
  transition: cx 600ms cubic-bezier(0.2, 0.8, 0.2, 1), cy 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sim-svg .milestone-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  fill: var(--fg-1);
  font-variant-numeric: tabular-nums;
  text-anchor: middle;
}

.sim-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.sim-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: white;
  border: 0.5px solid var(--border-orange);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 180ms, transform 180ms, color 180ms;
}
.sim-chip:hover { transform: translateY(-1px); }
.sim-chip.active {
  background: var(--spid-gradient);
  color: white;
  border-color: transparent;
}

/* ============================== COMMUNITY BAND ============================== */
.community {
  background: var(--spid-black);
  color: white;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.community::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(247,76,6,0.30) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.community-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}
@media (max-width: 900px) { .community-grid { grid-template-columns: 1fr 1fr; } }
.community-item {
  text-align: center;
  padding: 14px 8px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.community-item:last-child { border-right: none; }
@media (max-width: 900px) {
  .community-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 24px; }
  .community-item:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 14px; }
}
.community-item .n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1;
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.community-item .l {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  line-height: 1.4;
}
.community-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  position: relative;
}
.community-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success-soft);
  box-shadow: 0 0 0 4px rgba(5,223,114,0.18);
  animation: pulse 1.8s ease-in-out infinite;
}
.community-eyebrow .lbl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--spid-amber);
}

/* ============================== TESTI METRIC BADGES ============================== */
.testi .metric-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--spid-cream-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  align-self: flex-start;
  border: 0.5px solid var(--border-orange);
}
.testi .metric-badge .v {
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.testi .metric-badge .x { color: var(--fg-muted); font-weight: 500; font-size: 11px; }

/* Ambient orange/amber blobs behind sections that host glass cards */
#fonctionnalites,
#pour-qui,
#traction,
#securite,
#temoignages,
section.section[id=""] { position: relative; }

section.section#fonctionnalites > .wrap,
section.section#pour-qui > .wrap,
section.section#traction > .wrap,
section.section#securite > .wrap { position: relative; z-index: 2; }

section.section#fonctionnalites::before,
section.section#pour-qui::before,
section.section#traction::before,
section.section#securite::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,76,6,0.18) 0%, transparent 65%);
  filter: blur(60px);
  top: 10%; left: -200px;
  pointer-events: none;
  z-index: 0;
}
section.section#fonctionnalites::after,
section.section#pour-qui::after,
section.section#traction::after,
section.section#securite::after {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,188,44,0.18) 0%, transparent 65%);
  filter: blur(60px);
  bottom: 5%; right: -200px;
  pointer-events: none;
  z-index: 0;
}

/* ============================== POCKETS / BUILD A PLAN ============================== */
.pockets {
  background: var(--spid-cream-2);
  position: relative;
  overflow: hidden;
}
.pockets::before {
  content: "";
  position: absolute;
  width: 800px; height: 800px;
  top: -300px; left: -200px;
  background: radial-gradient(circle, rgba(247,76,6,0.14) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.pockets-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) { .pockets-grid { grid-template-columns: 1fr; gap: 40px; } }

.pockets-stack {
  position: relative;
  height: 460px;
  perspective: 1400px;
}
.pocket {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(420px, 90%);
  border-radius: 20px;
  padding: 22px 24px;
  background: white;
  box-shadow: 0 18px 50px rgba(0,0,0,0.10), 0 4px 14px rgba(0,0,0,0.04);
  border: 0.5px solid var(--border-orange);
  cursor: pointer;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 600ms ease,
              opacity 400ms ease;
  will-change: transform;
  transform-origin: 50% 100%;
}
.pocket:hover { box-shadow: 0 28px 60px rgba(247,76,6,0.16), 0 8px 18px rgba(0,0,0,0.06); }
.pocket .top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.pocket .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: white;
}
.pocket .meta { flex: 1; min-width: 0; }
.pocket .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  line-height: 1.2;
}
.pocket .sub {
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 2px;
}
.pocket .amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.pocket .amount .of {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--fg-muted);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: var(--fg-muted);
  margin-top: 2px;
}
.pocket .bar {
  height: 6px;
  border-radius: 6px;
  background: rgba(0,0,0,0.06);
  overflow: hidden;
  position: relative;
}
.pocket .bar .fill {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: var(--spid-gradient);
  transform-origin: left center;
  transform: scaleX(var(--p, 0.5));
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pocket .meta-row {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--fg-3);
}
.pocket .meta-row .auto {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--spid-cream-2);
  font-weight: 600;
  color: var(--fg-2);
}
.pocket .meta-row .auto .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
}

/* Pocket colors (icon bg) */
.pocket[data-color="orange"]  .ic { background: linear-gradient(135deg, #F74C06, #F9BC2C); }
.pocket[data-color="navy"]    .ic { background: linear-gradient(135deg, #04052E, #303972); }
.pocket[data-color="green"]   .ic { background: linear-gradient(135deg, #00A63E, #05DF72); }
.pocket[data-color="blue"]    .ic { background: linear-gradient(135deg, #155DFC, #51A2FF); }
.pocket[data-color="amber"]   .ic { background: linear-gradient(135deg, #F9BC2C, #FDC700); }

/* Stack arrangement — offset & rotate per index */
.pocket[data-idx="0"] { transform: translate(-50%, 0)    rotate(-3deg);  z-index: 1; }
.pocket[data-idx="1"] { transform: translate(-50%, 60px) rotate(2deg);   z-index: 2; }
.pocket[data-idx="2"] { transform: translate(-50%, 120px) rotate(-1.5deg); z-index: 3; }
.pocket[data-idx="3"] { transform: translate(-50%, 180px) rotate(2.5deg);  z-index: 4; }
.pocket[data-idx="4"] { transform: translate(-50%, 240px) rotate(-1deg);   z-index: 5; }

.pockets-stack[data-mode="active"] .pocket[data-idx="0"] { transform: translate(-50%, 0)    rotate(-1deg); }
.pockets-stack[data-mode="active"] .pocket[data-idx="1"] { transform: translate(-50%, 92px) rotate(0deg); }
.pockets-stack[data-mode="active"] .pocket[data-idx="2"] { transform: translate(-50%, 184px) rotate(0deg); }
.pockets-stack[data-mode="active"] .pocket[data-idx="3"] { transform: translate(-50%, 276px) rotate(0deg); }
.pockets-stack[data-mode="active"] .pocket[data-idx="4"] { transform: translate(-50%, 368px) rotate(1deg); }

.pockets-stack[data-mode="active"] { height: 580px; }

.pockets-copy h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.pockets-copy h3 .grad {
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pockets-copy p {
  font-size: 16px;
  color: var(--fg-3);
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 50ch;
}
.pockets-features {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pockets-features li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.45;
}
.pockets-features li .tick {
  width: 24px; height: 24px;
  border-radius: 8px;
  background: var(--spid-gradient);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.pockets-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: var(--spid-black);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease;
}
.pockets-toggle:hover { transform: translateY(-2px); }
.pockets-toggle svg { transition: transform 320ms ease; }
.pockets-stack[data-mode="active"] ~ .pockets-copy .pockets-toggle svg,
.pockets-copy.is-active .pockets-toggle svg { transform: rotate(45deg); }

/* ============================== TRUST / "MONEY FOR" FLOW ============================== */
.trust {
  background: white;
  position: relative;
  overflow: hidden;
}
.trust-flow {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 1000px) {
  .trust-flow { grid-template-columns: 1fr; }
  .trust-flow .arrow { display: none; }
}
.trust-node {
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  border-radius: 22px;
  padding: 32px 26px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 30px 60px -20px rgba(247, 76, 6, 0.16),
    0 12px 28px -10px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.trust-node.user {
  background: linear-gradient(160deg, rgba(254, 248, 234, 0.85) 0%, rgba(253, 234, 190, 0.85) 100%);
}
.trust-node.spid {
  background: var(--spid-gradient);
  color: white;
  border: none;
}
.trust-node.partner {
  background: var(--spid-black);
  color: white;
  border: none;
}
.trust-node .avatar {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.trust-node.spid .avatar { background: rgba(255,255,255,0.18); color: white; backdrop-filter: blur(6px); }
.trust-node.partner .avatar { background: var(--spid-gradient); color: white; }
.trust-node h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.trust-node.spid h4, .trust-node.partner h4 { color: white; }
.trust-node .role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--spid-orange);
  font-weight: 700;
  margin-bottom: 14px;
}
.trust-node.spid .role { color: rgba(255,255,255,0.85); }
.trust-node.partner .role { color: var(--spid-amber); }
.trust-node p {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.55;
  margin: 0;
  text-align: left;
}
.trust-node.spid p, .trust-node.partner p { color: rgba(255,255,255,0.80); }
.trust-node .badge-row {
  margin-top: 16px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-node .tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: white;
  border: 0.5px solid var(--border-orange);
  font-weight: 600;
  color: var(--fg-2);
}
.trust-node.spid .tag { background: rgba(255,255,255,0.18); border-color: transparent; color: white; }
.trust-node.partner .tag { background: rgba(255,255,255,0.10); border-color: transparent; color: var(--spid-amber); }
.trust-flow .arrow {
  align-self: center;
  color: var(--spid-orange);
  opacity: 0.55;
  font-size: 28px;
}
.trust-flow .arrow svg {
  width: 32px;
  height: 32px;
}

.trust-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 700px) { .trust-list { grid-template-columns: 1fr; } }
.trust-row {
  background: var(--spid-cream-2);
  border-radius: 14px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  color: var(--fg-2);
  border: 0.5px solid var(--border-orange);
}
.trust-row .tick {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--spid-gradient);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.trust-row strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fg-1);
  display: block;
  font-size: 14px;
}
.trust-row .pill {
  font-size: 10px;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  background: var(--spid-black);
  color: white;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================== SPID BUSINESS (PRO / FREELANCE) ============================== */
.biz {
  background: var(--spid-black);
  color: white;
  position: relative;
  overflow: hidden;
}
.biz::before {
  content: "";
  position: absolute;
  width: 1000px; height: 1000px;
  top: -360px; right: -300px;
  background: radial-gradient(circle, rgba(247,76,6,0.30) 0%, rgba(249,188,44,0.16) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.biz::after {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  bottom: -300px; left: -250px;
  background: radial-gradient(circle, rgba(247,76,6,0.18) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.biz .wrap { position: relative; z-index: 2; }
.biz .eyebrow {
  color: var(--spid-amber);
  justify-content: center;
}
.biz .eyebrow::before { background: var(--spid-gradient); }

.biz-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  gap: 18px;
}
@media (max-width: 900px) { .biz-head { gap: 16px; } }
.biz-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
  color: white;
}
.biz-head h2 .grad {
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.biz-head .intro {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0;
  max-width: 56ch;
}

.biz-main {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .biz-main { grid-template-columns: 1fr; gap: 48px; } }

/* Flow visual: client → you → patrimoine */
.biz-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.biz-flow-card {
  background: rgba(255,255,255,0.05);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
  position: relative;
}
.biz-flow-card .ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.biz-flow-card.client .ic { background: rgba(255,255,255,0.10); color: white; }
.biz-flow-card.you .ic { background: var(--spid-gradient); color: white; }
.biz-flow-card.wealth .ic { background: rgba(249,188,44,0.16); color: var(--spid-amber); }
.biz-flow-card .t { flex: 1; }
.biz-flow-card .t strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  display: block;
  letter-spacing: -0.01em;
}
.biz-flow-card .t span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.biz-flow-card .amt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.biz-flow-card.you .amt { color: var(--spid-amber); }
.biz-flow-card.wealth .amt {
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.biz-flow-connector {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 24px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}
.biz-flow-connector .line {
  width: 1.5px;
  height: 22px;
  background: linear-gradient(to bottom, var(--spid-orange), rgba(249,188,44,0.4));
  margin-left: 23px;
}
.biz-flow-connector .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(247,76,6,0.16);
  color: var(--spid-amber);
  font-weight: 600;
  font-size: 12px;
}

.biz-copy h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: white;
}
.biz-copy h3 .grad {
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.biz-copy > p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0 0 28px;
  max-width: 52ch;
}
.biz-points {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.biz-points li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}
.biz-points li .pic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--spid-amber);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.biz-points li strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  color: white;
}
.biz-points li p {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
  margin: 0;
}

.biz-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .biz-stats { grid-template-columns: 1fr 1fr; } }
.biz-stat {
  background: rgba(255,255,255,0.05);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.biz-stat .n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1;
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.biz-stat .l {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  margin-top: 12px;
  line-height: 1.4;
}
.biz-cta {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.biz-cta .note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* QR badge on the "you" card */
.biz-qr {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: white;
  padding: 5px;
  flex-shrink: 0;
}
.biz-qr svg { width: 100%; height: 100%; display: block; }

/* ============================== TESTIMONIALS ============================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testi {
  background: white;
  border-radius: 22px;
  padding: 30px 28px;
  border: 0.5px solid var(--border-orange);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 16px;
}
.testi .quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--fg-1);
}
.testi .quote::before {
  content: "“";
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  line-height: 0.5;
  color: var(--spid-orange);
  margin-bottom: 16px;
}
.testi .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testi .who .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--spid-gradient);
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.testi .who strong { font-family: var(--font-display); font-weight: 700; font-size: 14px; display: block; }
.testi .who span { font-size: 12px; color: var(--fg-muted); }

/* ============================== SCROLLYTELLING ============================== */
.scrolly {
  position: relative;
  background: var(--spid-cream);
  overflow: clip;
}
.scrolly::before {
  content: "";
  position: absolute;
  width: 900px; height: 900px;
  top: 20vh; right: -350px;
  background: radial-gradient(circle, rgba(247,76,6,0.15) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.scrolly::after {
  content: "";
  position: absolute;
  width: 900px; height: 900px;
  bottom: 0; left: -400px;
  background: radial-gradient(circle, rgba(249,188,44,0.18) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.scrolly-header {
  text-align: center;
  padding: clamp(80px, 11vw, 130px) 0 30px;
  position: relative; z-index: 2;
}
.scrolly-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .scrolly-grid { grid-template-columns: 1fr; gap: 0; }
  .scrolly-phone-wrap { order: -1; }
}

.scrolly-phone-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .scrolly-phone-wrap { top: 70px; height: auto; padding: 16px 0 28px; background: linear-gradient(to bottom, var(--spid-cream) 80%, transparent); z-index: 3; }
}
.scrolly-phone {
  position: relative;
  width: min(340px, 80vw);
  aspect-ratio: 9/19;
  background: #111;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 30px 80px rgba(247,76,6,0.18),
    0 60px 120px rgba(0,0,0,0.22),
    inset 0 0 0 1.5px rgba(255,255,255,0.06);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: rotate(-2deg);
}
@media (max-width: 900px) {
  .scrolly-phone { width: min(240px, 60vw); }
}
.scrolly[data-current="0"] .scrolly-phone { transform: rotate(-2deg) translateY(0); }
.scrolly[data-current="1"] .scrolly-phone { transform: rotate(1.5deg) translateY(-6px); }
.scrolly[data-current="2"] .scrolly-phone { transform: rotate(-1deg) translateY(4px); }
.scrolly[data-current="3"] .scrolly-phone { transform: rotate(2deg) translateY(-2px); }
.scrolly[data-current="4"] .scrolly-phone { transform: rotate(-1.5deg) translateY(6px); }

.scrolly-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--spid-cream);
}
.scrolly-screen::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 24px;
  background: #111;
  border-radius: 20px;
  z-index: 10;
}
.scrolly-state {
  position: absolute;
  inset: 0;
  padding: 40px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 600ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.scrolly-state.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.scrolly-state::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 110% -10%, rgba(249,188,44,0.4), transparent 50%),
              radial-gradient(circle at -20% 110%, rgba(247,76,6,0.3), transparent 50%);
  pointer-events: none;
}
.scrolly-state > * { position: relative; z-index: 1; }
.scrolly-state .ssh { font-size: 11px; color: var(--fg-3); }
.scrolly-state .ssh strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--fg-1); }

/* Scrolly steps (right column) */
.scrolly-steps {
  display: flex;
  flex-direction: column;
}
.scrolly-step {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
}
@media (max-width: 900px) {
  .scrolly-step { min-height: auto; padding: 28px 0 56px; }
}
.scrolly-step .num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--spid-orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.scrolly-step .num::before {
  content: "";
  width: 28px; height: 1.5px;
  background: var(--spid-gradient);
  border-radius: 2px;
}
.scrolly-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.scrolly-step h3 .grad {
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.scrolly-step p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-3);
  max-width: 46ch;
  margin: 0 0 26px;
}
.scrolly-step .chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: white;
  border: 0.5px solid var(--border-orange);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  width: fit-content;
}
.scrolly-step .chip strong {
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.scrolly-step .chip svg { color: var(--spid-orange); }

/* Progress rail */
.scrolly-rail {
  position: fixed;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 30;
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}
.scrolly-rail.visible { opacity: 1; pointer-events: auto; }
.scrolly-rail .tick {
  width: 28px;
  height: 3px;
  border-radius: 4px;
  background: rgba(0,0,0,0.14);
  cursor: pointer;
  transition: background 280ms ease, width 280ms ease;
}
.scrolly-rail .tick.active { background: var(--spid-gradient); width: 44px; }
@media (max-width: 900px) { .scrolly-rail { display: none; } }

/* ============================== SCROLLYTELLING — RESPONSIVE FIXES ============================== */
@media (max-width: 1100px) {
  .scrolly-grid { gap: 48px; }
  .scrolly-phone { width: min(300px, 80vw); }
  .scrolly-step h3 { font-size: clamp(26px, 3.4vw, 40px); }
}
@media (max-width: 900px) {
  .scrolly-phone-wrap {
    position: sticky;
    top: 64px;
    height: auto;
    padding: 14px 0 22px;
    background: linear-gradient(to bottom, var(--spid-cream) 86%, transparent);
    backdrop-filter: blur(6px);
    z-index: 5;
  }
  .scrolly-phone {
    width: min(180px, 50vw);
    border-radius: 28px;
    padding: 7px;
    transform: rotate(-1deg);
  }
  .scrolly-screen { border-radius: 22px; }
  .scrolly-screen::before { width: 70px; height: 18px; top: 6px; border-radius: 14px; }
  .scrolly-state { padding: 28px 10px 10px; gap: 8px; }
  .scrolly-step { min-height: auto; padding: 28px 0 56px; }
  .scrolly-step h3 { font-size: 26px; }
  .scrolly-step p { font-size: 15px; }
  .scrolly-header { padding-top: 64px; padding-bottom: 16px; }
  .scrolly-rail { display: none; }
}
@media (max-width: 600px) {
  .scrolly-phone { width: min(150px, 44vw); }
}

/* ============================== GLASSMORPHISM SHARED TOKENS ============================== */
:root {
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.72);
  --glass-bg-dark: rgba(20, 14, 8, 0.42);
  --glass-blur: blur(22px) saturate(160%);
  --glass-blur-strong: blur(28px) saturate(180%);
  --glass-border: 1px solid rgba(255, 255, 255, 0.55);
  --glass-border-dark: 1px solid rgba(255, 255, 255, 0.10);
  --glass-shine: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.0) 60%);
  --glass-shadow:
    0 30px 60px -20px rgba(247, 76, 6, 0.18),
    0 12px 28px -10px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-radius: 22px;
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  position: relative;
  isolation: isolate;
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--glass-shine);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.glass > * { position: relative; z-index: 1; }

/* Ambient blobs visible behind glass surfaces */
.glass-bed { position: relative; }
.glass-bed::before, .glass-bed::after {
  content: "";
  position: absolute;
  width: 540px; height: 540px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.glass-bed::before {
  top: -120px; left: 8%;
  background: radial-gradient(circle, #F74C06 0%, transparent 65%);
}
.glass-bed::after {
  bottom: -100px; right: 4%;
  background: radial-gradient(circle, #F9BC2C 0%, transparent 65%);
  opacity: 0.45;
}
.glass-bed > * { position: relative; z-index: 1; }

/* Section header center variant */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 0; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::after {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--spid-gradient);
  border-radius: 2px;
}
.section-head .eyebrow::before { display: none; }
.section-head .lead { margin-left: auto; margin-right: auto; text-align: center; }

/* ╔══════════════════════════════════════════════════════════════════╗
   ║                        AWARD LAYER                                 ║
   ╚══════════════════════════════════════════════════════════════════╝ */

/* ---------- Bigger, tighter display type ---------- */
h2.section-title {
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.03em;
}
.h-display {
  font-size: clamp(42px, 6.4vw, 108px);
  letter-spacing: -0.035em;
}

/* ---------- Custom cursor ---------- */
@media (pointer: fine) {
  body.has-cursor, body.has-cursor a, body.has-cursor button,
  body.has-cursor summary, body.has-cursor input[type="range"],
  body.has-cursor .pocket, body.has-cursor .sim-chip { cursor: none; }
}
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 200;
  will-change: transform;
}
.cursor-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--spid-orange);
  transform: translate(-100px, -100px);
}
.cursor-ring {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(5, 3, 0, 0.30);
  transform: translate(-100px, -100px);
  display: grid;
  place-items: center;
  transition: width 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
              height 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 260ms ease,
              background 260ms ease,
              backdrop-filter 260ms ease;
}
.cursor-ring span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--spid-black);
  opacity: 0;
  transition: opacity 200ms ease;
  white-space: nowrap;
}
.cursor-ring.is-active {
  width: 56px; height: 56px;
  border-color: rgba(247, 76, 6, 0.9);
}
.cursor-ring.has-label {
  width: 78px; height: 78px;
  border-color: transparent;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 14px 36px rgba(247, 76, 6, 0.22), inset 0 1px 0 rgba(255,255,255,0.8);
}
.cursor-ring.has-label span { opacity: 1; }
.cursor-dot.is-down { transform-origin: center; }
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--spid-gradient);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 110;
  pointer-events: none;
}

/* ---------- Film grain ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 95;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-1.5%, 1%); }
  50%  { transform: translate(1%, -1.5%); }
  75%  { transform: translate(-1%, -1%); }
  100% { transform: translate(1.5%, 1%); }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.4);
  padding: 26px 0;
  position: relative;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-seq {
  display: flex;
  align-items: center;
  gap: 38px;
  padding-right: 38px;
}
.mq {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1;
}
.mq.solid { color: var(--fg-1); }
.mq.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(5, 3, 0, 0.55);
}
.mq.grad {
  font-style: italic;
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mq-dot {
  color: var(--spid-orange);
  font-size: 18px;
  flex-shrink: 0;
}

/* ---------- Manifesto (word fill on scroll) ---------- */
.manifesto {
  padding: clamp(110px, 16vw, 220px) 0;
  background: var(--spid-cream);
  position: relative;
  overflow: clip;
}
.manifesto::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(249,188,44,0.14) 0%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}
.manifesto-text {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.6vw, 64px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 22ch;
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}
.manifesto-text .mw {
  color: rgba(5, 3, 0, 0.13);
  transition: color 360ms ease;
}
.manifesto-text .mw.on { color: var(--spid-black); }
.manifesto-text .mw.accent.on {
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Split-word title reveals ---------- */
.split-ready .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.split-ready .wi {
  display: inline-block;
  transform: translateY(118%);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--wi, 0) * 55ms);
  will-change: transform;
}
.split-ready.split-in .wi { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .split-ready .wi { transform: none !important; transition: none !important; }
  .manifesto-text .mw { color: var(--spid-black); }
}

/* ---------- Hero 3D mouse parallax ---------- */
.phone-wrap {
  transform: perspective(1200px) rotateX(var(--prx, 0deg)) rotateY(var(--pry, 0deg));
  will-change: transform;
}

/* ---------- Footer giant wordmark ---------- */
.footer-seed {
  position: relative;
  width: 46px; height: 64px;
  margin-bottom: 22px;
  display: inline-block;
}
.footer-seed svg { width: 100%; height: 100%; display: block; position: relative; z-index: 1; animation: seed-bob 5.5s ease-in-out infinite; transform-origin: 50% 80%; }
.footer-seed .seed-glow {
  position: absolute; inset: -50%;
  background: radial-gradient(circle, rgba(247,76,6,0.5) 0%, rgba(249,188,44,0.2) 40%, transparent 70%);
  filter: blur(18px); z-index: 0;
  animation: seed-pulse 4s ease-in-out infinite;
}
.footer-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(110px, 22vw, 300px);
  line-height: 0.78;
  letter-spacing: -0.04em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.16);
  user-select: none;
  margin-bottom: clamp(40px, 6vw, 80px);
  transition: -webkit-text-stroke-color 500ms ease;
  background: linear-gradient(135deg, rgba(247,76,6,0.0) 0%, rgba(249,188,44,0.0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.footer-mark:hover {
  -webkit-text-stroke-color: rgba(249, 188, 44, 0.45);
}

/* ---------- Magnetic helper ---------- */
.is-magnetic {
  will-change: transform;
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║   COMMENTS BATCH : access panel, scroll pill, merchant morph       ║
   ╚══════════════════════════════════════════════════════════════════╝ */

/* ---------- Access panel merged inside "Pour qui" ---------- */
.access-panel {
  margin-top: 64px;
  background: var(--spid-navy, #04052E);
  border-radius: 28px;
  padding: clamp(32px, 4vw, 52px);
  position: relative;
  overflow: hidden;
}
.access-panel::before {
  content: "";
  position: absolute;
  width: 760px; height: 760px;
  top: -320px; right: -240px;
  background: radial-gradient(circle, rgba(247,76,6,0.24) 0%, rgba(249,188,44,0.12) 42%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.access-panel > * { position: relative; z-index: 2; }
.access-panel-head { margin: 0 auto 40px; max-width: 60ch; text-align: center; }
.access-panel-head h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  color: #fff;
}
.access-panel-head .apx {
  background: var(--spid-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.access-panel-head p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
.access-panel .access-grid { margin-top: 0; }

/* ---------- "Mis de côté" pill (counts on scroll) in Pourquoi ---------- */
.grow-pill {
  margin: 30px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px 14px 24px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.6);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 18px 44px rgba(247,76,6,0.18), inset 0 1px 0 rgba(255,255,255,0.85);
}
.grow-pill .pl-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-3);
  letter-spacing: 0.01em;
}
.grow-pill .pl-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--spid-gradient);
  color: #fff;
  box-shadow: 0 8px 20px rgba(247,76,6,0.28);
  white-space: nowrap;
}

/* ---------- Merchant persona card : signature colour ---------- */
.use.use-merchant {
  background: linear-gradient(165deg, rgba(247,76,6,0.10) 0%, rgba(249,188,44,0.08) 100%), rgba(255,255,255,0.55);
  border-color: rgba(247,76,6,0.35);
}
.use.use-merchant .who {
  background: var(--spid-gradient);
  color: #fff;
}
.use.use-merchant h4 {
  background: var(--spid-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.use.use-merchant.morphing { opacity: 0.18; transition: opacity 200ms ease; }

/* ---------- Floating morph pill (Commerçant → docks, left-aligned, above SPID Business) ---------- */
.biz-dock {
  display: block;
  width: 1px; height: 1px;
  margin: 0 auto 8px;        /* centered with the heading */
  pointer-events: none;
}
.morph-pill {
  position: fixed;
  top: 0; left: 0;
  z-index: 1;                 /* under the nav (z50) and behind the blue panel (section wrap z2) */
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px 11px 14px;
  border-radius: var(--radius-pill);
  background: var(--spid-gradient);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: 0 16px 40px rgba(247,76,6,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
  opacity: 0;
  transform: translate(-9999px, -9999px);
  will-change: transform, opacity;
  pointer-events: none;
}
.morph-pill .mi {
  display: grid; place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}
@media (prefers-reduced-motion: reduce) {
  .morph-pill { display: none; }
  .use.use-merchant.morphing { opacity: 1; }
}

/* ---------- Handwriting accent (simulateur "freedom") ---------- */
.handwriting {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 1.28em;
  line-height: 0.9;
  background: var(--spid-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0 0.06em;
  display: inline-block;
  transform: rotate(-4deg);
}
.plus-eq {
  color: var(--spid-orange);
  font-weight: 700;
}

/* ---------- Struck word (richesse → liberté) ---------- */
.struck {
  position: relative;
  color: var(--fg-muted);
  white-space: nowrap;
}
.struck::after {
  content: "";
  position: absolute;
  left: -3%; right: -3%;
  top: 56%;
  height: 0.09em;
  background: var(--spid-orange);
  border-radius: 4px;
  transform: rotate(-2.5deg);
}

/* ---------- Questions band (moved below the FAQ) ---------- */
.questions-band {
  background: var(--spid-navy, #04052E);
  padding: clamp(40px, 6vw, 72px) 0;
  position: relative;
  overflow: hidden;
}
.questions-band::before {
  content: "";
  position: absolute;
  width: 760px; height: 760px;
  top: -320px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(247,76,6,0.22) 0%, rgba(249,188,44,0.10) 42%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.questions-band .wrap { position: relative; z-index: 2; }
.questions-band .access-footnote { margin-top: 0; }

/* ---------- iOS/Android logos in access tag ---------- */
.access-card .tag.tag-logos {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}
.access-card .tag.tag-logos svg { width: 15px; height: 15px; display: block; }
.access-card .tag.tag-logos .logo-sep {
  width: 1px; height: 13px;
  background: rgba(249,188,44,0.4);
}

/* ---------- Business CTA QR ---------- */
.biz-cta { flex-wrap: wrap; }
.biz-cta-qr {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.biz-cta-qr-code {
  width: 66px; height: 66px;
  padding: 7px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(247,76,6,0.18), inset 0 0 0 1px rgba(247,76,6,0.10);
  flex-shrink: 0;
}
.biz-cta-qr-code svg { width: 100%; height: 100%; display: block; }
.biz-cta-qr .note { font-size: 12px; line-height: 1.35; color: rgba(255,255,255,0.72); }
.biz-cta-note { flex-basis: 100%; }

/* ---------- Security "under the hood" tech layer ---------- */
.sec-tech {
  margin-top: 22px;
  background: var(--spid-black);
  border-radius: 22px;
  padding: 30px 32px;
  position: relative;
  overflow: hidden;
}
.sec-tech::before {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  top: -220px; right: -140px;
  background: radial-gradient(circle, rgba(247,76,6,0.22) 0%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.sec-tech-head {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.sec-tech-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--spid-amber);
  font-weight: 700;
}
.sec-tech-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: -0.01em;
  color: #fff;
}
.sec-tech-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 860px) { .sec-tech-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .sec-tech-grid { grid-template-columns: 1fr; } }
.sec-tech-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}
.sec-tech-item svg {
  color: var(--spid-amber);
  flex-shrink: 0;
  margin-top: 1px;
}
.sec-tech-item strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  display: block;
  letter-spacing: -0.01em;
}
.sec-tech-item span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║              ACCESS BAND  (partout, 24/7, on/offline)              ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.access {
  background: var(--spid-navy, #04052E);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.access::before {
  content: "";
  position: absolute;
  width: 900px; height: 900px;
  top: -340px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(247,76,6,0.26) 0%, rgba(249,188,44,0.12) 42%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.access .wrap { position: relative; z-index: 2; }
.access-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .access-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 40px; } }
.access-head .eyebrow { color: var(--spid-amber); }
.access-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 16px 0 0;
  color: #fff;
}
.access-head h2 .grad {
  background: var(--spid-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.access-head .intro {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .access-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .access-grid { grid-template-columns: 1fr; } }
.access-card {
  background: rgba(255,255,255,0.05);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
  transition: transform 360ms cubic-bezier(0.2,0.8,0.2,1), background 360ms ease, border-color 360ms ease;
}
.access-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(247,76,6,0.4);
}
.access-card .ic {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--spid-gradient);
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(247,76,6,0.28);
}
.access-card .ic.wa { background: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 10px 24px rgba(37,211,102,0.28); }
.access-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  color: #fff;
}
.access-card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--spid-amber);
  font-family: var(--font-mono);
  margin-bottom: 12px;
}
.access-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
  margin: 0;
}
.access-card .offline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(0,166,62,0.18);
  border: 1px solid rgba(5,223,114,0.3);
}
.access-card .offline .d { width: 6px; height: 6px; border-radius: 50%; background: var(--success-soft); }

.access-footnote {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: 26px 32px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
}
.access-footnote .left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.access-footnote .ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(249,188,44,0.14);
  color: var(--spid-amber);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.access-footnote h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 2px;
  color: #fff;
}
.access-footnote p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.66); }
.access-footnote .agencies {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.access-footnote .agency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--spid-gradient);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
}
.access-footnote .agency svg { flex-shrink: 0; }

/* ╔══════════════════════════════════════════════════════════════════╗
   ║              SEED → BAOBAB  (brand mascot + growth)                ║
   ╚══════════════════════════════════════════════════════════════════╝ */

/* ---------- Reusable seed mascot ---------- */
.seed-mascot {
  display: inline-block;
  position: relative;
  line-height: 0;
}
.seed-mascot svg { display: block; width: 100%; height: 100%; }
.seed-mascot.floaty {
  animation: seed-bob 5.5s ease-in-out infinite;
  transform-origin: 50% 80%;
}
@keyframes seed-bob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-12px) rotate(3deg); }
}
.seed-mascot .seed-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(247,76,6,0.45) 0%, rgba(249,188,44,0.18) 40%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
  animation: seed-pulse 4s ease-in-out infinite;
}
@keyframes seed-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50%      { opacity: 0.95; transform: scale(1.08); }
}

/* Hero floating seeds */
.hero-seeds { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.hero-seed {
  position: absolute;
  opacity: 0.0;
  animation: hero-seed-drift 9s ease-in-out infinite;
}
.hero-seed svg { width: 100%; height: 100%; display: block; }
.hero-seed.s1 { width: 26px; height: 26px; top: 18%; left: 6%;  animation-delay: 0s;   }
.hero-seed.s2 { width: 18px; height: 18px; top: 64%; left: 12%; animation-delay: -2.5s; }
.hero-seed.s3 { width: 22px; height: 22px; top: 34%; right: 8%; animation-delay: -4.5s; }
.hero-seed.s4 { width: 14px; height: 14px; bottom: 16%; right: 16%; animation-delay: -6.5s; }
@keyframes hero-seed-drift {
  0%   { opacity: 0; transform: translateY(20px) rotate(0deg) scale(0.7); }
  15%  { opacity: 0.7; }
  50%  { opacity: 0.85; transform: translateY(-18px) rotate(180deg) scale(1); }
  85%  { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(20px) rotate(360deg) scale(0.7); }
}

/* Eyebrow seed accent */
.eyebrow .seed-tick {
  width: 15px; height: 18px;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  flex-shrink: 0;
}
.eyebrow .seed-tick svg { width: 100%; height: 100%; display: block; }
.eyebrow:has(.seed-tick)::before,
.eyebrow:has(.seed-tick)::after { display: none !important; }
.section-head .eyebrow:has(.seed-tick) { gap: 8px; }

/* ---------- Growth section (scroll-scrubbed) ---------- */
.grow {
  position: relative;
  background:
    linear-gradient(180deg, var(--spid-cream) 0%, var(--spid-cream-2) 55%, var(--spid-cream-2) 100%);
}
.grow-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .grow-inner { grid-template-columns: 1fr; gap: 8px; }
  .grow-stages { order: 2; }
  .grow-viz { order: 1; }
}

/* Stages (cross-fade like the demo) */
.grow-stages { position: relative; z-index: 3; }
.grow-track { position: relative; min-height: 320px; }
@media (max-width: 900px) { .grow-track { min-height: 260px; } }
.grow-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--spid-orange);
  margin-bottom: 22px;
}
.grow-eyebrow .seed-tick { width: 16px; height: 16px; }
.grow-stage {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 700ms cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.grow-stage.active { opacity: 1; transform: none; pointer-events: auto; }
.grow-stage .step {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--spid-orange);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.grow-stage .step .n {
  font-variant-numeric: tabular-nums;
  opacity: 0.55;
}
.grow-stage h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}
.grow-stage h3 .grad {
  background: var(--spid-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grow-stage p {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0;
  max-width: 42ch;
}

/* Counter */
.grow-counter {
  margin-top: 8px;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.6);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 14px 34px rgba(247,76,6,0.14), inset 0 1px 0 rgba(255,255,255,0.85);
  position: relative;
  z-index: 3;
}
.grow-counter .lbl { font-size: 12px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.grow-counter .val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  background: var(--spid-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Visualization */
.grow-viz {
  position: relative;
  height: 86vh;
  max-height: 760px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.baobab-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
/* Soil */
.bob-soil { fill: rgba(5,3,0,0.08); }
.bob-soil-line { stroke: rgba(5,3,0,0.18); stroke-width: 2; stroke-linecap: round; }
/* Seed (initial) */
.bob-seed {
  transform-box: fill-box;
  transform-origin: 50% 100%;
}
/* Trunk grows from base */
.bob-trunk {
  fill: url(#bob-grad);
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transform: scaleY(0);
}
/* Branches draw */
.bob-branch {
  fill: none;
  stroke: url(#bob-grad);
  stroke-width: 9;
  stroke-linecap: round;
}
/* Roots (subtle, below soil) */
.bob-root {
  fill: none;
  stroke: rgba(5,3,0,0.12);
  stroke-width: 4;
  stroke-linecap: round;
}
/* Canopy leaves = the SPID seed mark */
.bob-leaf {
  transform-box: fill-box;
  transform-origin: 50% 90%;
  transform: scale(0);
  transition: transform 720ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bob-leaf.on { transform: scale(var(--s, 1)); }
.bob-canopy.sway { animation: canopy-sway 6s ease-in-out infinite; transform-origin: 50% 85%; }
@keyframes canopy-sway {
  0%, 100% { transform: rotate(-1.4deg); }
  50%      { transform: rotate(1.4deg); }
}
/* Falling seeds (transactions feeding the tree) — HTML overlay */
.grow-falls { position: absolute; inset: 0; pointer-events: none; z-index: 2; overflow: hidden; }
.grow-fall {
  position: absolute;
  top: -8%;
  width: 24px; height: 24px;
  opacity: 0;
}
.grow-fall svg { width: 100%; height: 100%; display: block; }
.grow-viz.seeding .grow-fall { animation: grow-fall-anim 3.4s ease-in infinite; }
.grow-fall.f1 { left: 30%; width: 22px; height: 22px; animation-delay: -0.2s !important; }
.grow-fall.f2 { left: 52%; width: 16px; height: 16px; animation-delay: -1.3s !important; }
.grow-fall.f3 { left: 44%; width: 26px; height: 26px; animation-delay: -2.2s !important; }
.grow-fall.f4 { left: 62%; width: 18px; height: 18px; animation-delay: -2.9s !important; }
@keyframes grow-fall-anim {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg) scale(0.6); }
  10%  { opacity: 0.95; }
  72%  { opacity: 0.95; }
  100% { opacity: 0; transform: translateY(54vh) rotate(240deg) scale(0.45); }
}
/* progress rail */
.grow-rail {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.grow-rail .seg {
  width: 34px; height: 4px; border-radius: 4px;
  background: rgba(5,3,0,0.12);
  overflow: hidden;
}
.grow-rail .seg i {
  display: block; height: 100%; width: 0%;
  background: var(--spid-gradient);
  transition: width 200ms linear;
}

@media (prefers-reduced-motion: reduce) {
  .seed-mascot.floaty, .hero-seed, .grow-viz.seeding .bob-fall, .bob-canopy.sway { animation: none !important; }
  .hero-seed { opacity: 0.5; }
}
