:root{
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;

  --lightBg: #FBFAFF;
  --lightInk: #0A0A12;

  /* Original neon glow palette */
  --p: #FF4FA3;
  --o: #FFB34F;
  --v: #7A5CFF;

  --darkBg: #070A14;
  --darkInk: #EEF0FF;

  --radius: 22px;
  --shadow: 0 18px 60px rgba(0,0,0,.18);
  --shadowDark: 0 24px 80px rgba(0,0,0,.45);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; overflow-x:hidden; }
body{
  font-family: var(--font);
  background: var(--lightBg);
  color: var(--lightInk);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
.container{
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
}

/* Glass */
.glass{
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.glass:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 90px rgba(255,79,163,.10), 0 22px 80px rgba(122,92,255,.08), var(--shadow);
}

/* =========================
   SECTION SEPARATORS (no extra layout space)
   ========================= */
.sep--lightToDark,
.sep--darkToLight{
  position: relative;
  isolation: isolate;
}
.sep--lightToDark::before{
  content:"";
  position:absolute;
  left:0; right:0;
  top:0;
  height: 46px;
  transform: translateY(-100%);
  background: linear-gradient(to bottom, var(--lightBg), var(--darkBg));
  pointer-events:none;
  z-index: 0;
}
.sep--darkToLight::before{
  content:"";
  position:absolute;
  left:0; right:0;
  top:0;
  height: 46px;
  transform: translateY(-100%);
  background: linear-gradient(to bottom, var(--darkBg), var(--lightBg));
  pointer-events:none;
  z-index: 0;
}

/* NAV */
.nav{
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251,250,255,.72);
  border-bottom: 1px solid rgba(10,10,18,.08);
  backdrop-filter: blur(14px);
}
.nav--scrolled{ background: rgba(251,250,255,.58); }
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 0;
}
.wordmark{
  font-weight: 900;
  letter-spacing: -0.6px;
  font-size: 18px;
}
.nav__right{ display:flex; gap: 10px; align-items:center; }

.pillbtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(10,10,18,.10);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.pillbtn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.pillbtn--light{ background: rgba(255,255,255,.65); }
.pillbtn--dark{
  background: #0A0A12;
  color: #fff;
  border-color: rgba(10,10,18,.25);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid rgba(10,10,18,.12);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
  position: relative;
  overflow:hidden;
  will-change: transform;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--black{
  background: #0A0A12;
  color:#fff;
  border-color: rgba(10,10,18,.35);
}
.btn--outline{
  background: transparent;
  color: #0A0A12;
  border-color: rgba(10,10,18,.18);
}
.btn--sheen::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.50), transparent 65%);
  transform: translateX(-120%);
  transition: transform .65s ease;
}
.btn--sheen:hover::before{ transform: translateX(120%); }

/* HERO */
.hero{
  position:relative;
  padding: 54px 0 34px;
}
.hero__bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
}
.blob{
  position:absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(36px);
  opacity: .55;
  mix-blend-mode: multiply;
  animation: blob 10s ease-in-out infinite;
}
.blob--p{ background: radial-gradient(circle at 30% 30%, rgba(255,79,163,.75), transparent 60%); top:-160px; left:-160px; }
.blob--o{ background: radial-gradient(circle at 30% 30%, rgba(255,179,79,.70), transparent 60%); top: 10%; right:-200px; animation-delay:-2.2s; }
.blob--v{ background: radial-gradient(circle at 30% 30%, rgba(122,92,255,.70), transparent 60%); bottom:-240px; left: 20%; animation-delay:-4.2s; }

@keyframes blob{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(22px,-18px,0) scale(1.03); }
}

.hero__grid{
  position:relative;
  z-index:1;
  display:grid;
  gap: 18px;
  align-items:start;
}
@media (min-width: 980px){
  .hero__grid{
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items:stretch;
  }
}
.hero__eyebrow{
  font-weight: 700;
  color: rgba(10,10,18,.65);
  font-size: 12px;
  letter-spacing: .2px;
  text-transform: uppercase;
}
.hero__h1{
  margin: 12px 0 10px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -1.1px;
}
.hero__sub{
  margin:0;
  color: rgba(10,10,18,.72);
  line-height: 1.7;
  max-width: 58ch;
}
.hero__ctas{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero__mini{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.miniCard{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(10,10,18,.10);
  padding: 12px 14px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.miniCard__t{ font-weight: 900; letter-spacing:-.2px; }
.miniCard__p{ color: rgba(10,10,18,.70); font-size: 13px; margin-top: 4px; }

.hero__stage{
  position:relative;
  min-height: 460px;
}
@media (min-width: 980px){
  .hero__stage{ min-height: 520px; }
}

/* Floating cards */
.floatCard{
  position:absolute;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(10,10,18,.10);
  box-shadow: var(--shadow);
  padding: 14px 14px;
}
.fc{
  width: 220px;
  border-radius: 22px;
  animation: floaty 5.8s ease-in-out infinite;
}
.fc--l{ left: 0; top: 28px; --r:-2deg; }
.fc--r{ right: 0; top: 64px; --r:2deg; animation-delay:-1.4s; }
.fc--c{ left: 18%; bottom: 26px; width: 240px; --r:1deg; animation-delay:-2.7s; }

@keyframes floaty{
  0%,100%{ transform: translateY(0) rotate(var(--r)); }
  50%{ transform: translateY(-10px) rotate(var(--r)); }
}

.fc__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 8px;
}
.fc__badge{
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10,10,18,.06);
  border: 1px solid rgba(10,10,18,.10);
}
.fc__dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: linear-gradient(135deg, var(--p), var(--o));
  box-shadow: 0 12px 30px rgba(255,79,163,.22);
}
.fc__dot--alt{
  background: linear-gradient(135deg, var(--v), var(--p));
  box-shadow: 0 12px 30px rgba(122,92,255,.20);
}
.fc__title{ font-weight: 900; letter-spacing:-.2px; }
.fc__meta{ color: rgba(10,10,18,.70); font-size: 12px; margin-top: 4px; }
.fc__bar{
  height: 10px;
  border-radius: 999px;
  margin-top: 10px;
  background: linear-gradient(90deg, rgba(255,79,163,.70), rgba(255,179,79,.70));
}
.fc__bar--alt{
  background: linear-gradient(90deg, rgba(122,92,255,.70), rgba(255,79,163,.70));
}

/* Hero panel (desktop absolute, mobile static) */
.hero__panel{
  position:absolute;
  left: 50%;
  top: 120px;
  transform: translateX(-50%);
  width: min(420px, 92);
  padding: 16px 16px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(10,10,18,.10);
  box-shadow: var(--shadow);
  border-radius: 24px;
}
.panel__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 10px;
}
.panel__title{ display:flex; gap: 10px; align-items:flex-start; }
.panel__spark{
  width: 12px; height: 12px; border-radius: 999px;
  background: linear-gradient(135deg, var(--o), var(--p));
  box-shadow: 0 14px 30px rgba(255,179,79,.22);
  margin-top: 4px;
}
.panel__name{ font-weight: 900; letter-spacing:-.3px; }
.panel__sub{ color: rgba(10,10,18,.62); font-size: 12px; margin-top: 2px; }
.chip{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(10,10,18,.12);
}
.chip--live{ background: rgba(255,255,255,.55); }
.panel__stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 12px;
}
.pstat{
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(10,10,18,.10);
  background: rgba(255,255,255,.52);
}
.pstat__k{ color: rgba(10,10,18,.62); font-size: 12px; }
.pstat__v{ font-weight: 900; font-size: 22px; margin-top: 6px; letter-spacing:-.4px; }

.panel__list{ margin-top: 12px; display:grid; gap: 8px; }
.prow{
  display:grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items:center;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(10,10,18,.10);
  background: rgba(255,255,255,.52);
}
.time{ color: rgba(10,10,18,.55); font-size: 12px; }
.tag{
  font-size: 11px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(10,10,18,.10);
  background: rgba(10,10,18,.06);
}
.tag--p{ border-color: rgba(255,79,163,.25); background: rgba(255,79,163,.10); }
.tag--o{ border-color: rgba(255,179,79,.25); background: rgba(255,179,79,.10); }
.tag--v{ border-color: rgba(122,92,255,.25); background: rgba(122,92,255,.10); }

/* Mobile hero: prevent overlays */
@media (max-width: 820px){
  .hero{ padding: 42px 0 28px; }
  .hero__stage{
    min-height: auto;
    display:grid;
    gap: 12px;
    margin-top: 10px;
  }
  .hero__panel{
    position:relative;
    left:auto; top:auto;
    transform:none;
    width: 100%;
    order: 1;
  }
  .floatCard{
    position:relative;
    left:auto; right:auto; top:auto; bottom:auto;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    animation: none;
  }
  .fc--l, .fc--r, .fc--c{ transform:none; width: 100%; max-width: 520px; }
}

/* Dark section base */
.trust--dark, .network--dark, .tiles--dark, .faq--dark, .foot--dark{
  background: var(--darkBg);
  color: var(--darkInk);
}
.trust, .network, .tiles, .faq, .foot{ padding: 56px 0; }
@media (max-width: 880px){ .trust, .network, .tiles, .faq, .foot{ padding: 46px 0; } }

/* TRUST */
.trust__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 860px){
  .trust__grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
.trust__col{
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(14px);
}
.trust__h{ color: rgba(238,240,255,.75); font-weight: 800; }
.trust__v{ font-size: 28px; font-weight: 900; letter-spacing:-.6px; margin-top: 8px; }
.stars{ margin-top: 10px; color: rgba(255,255,255,.88); letter-spacing: 1px; }

.logoStrip{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.logo{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(238,240,255,.75);
  font-weight: 800;
  font-size: 13px;
}

/* Light sections typography helpers */
.h2{
  margin:0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.7px;
  line-height: 1.15;
}
.muted{
  margin: 10px 0 0;
  color: rgba(10,10,18,.70);
  line-height: 1.7;
}
.muted--onDark{ color: rgba(238,240,255,.72); }
.h2--onDark{ color: rgba(238,240,255,.94); }

/* TYPES (light) */
.types--light{
  background: var(--lightBg);
  color: var(--lightInk);
  padding: 64px 0;
}
.types__grid{
  display:grid;
  gap: 16px;
  align-items:start;
}
@media (min-width: 980px){
  .types__grid{ grid-template-columns: 1fr 1fr; }
}
.types__list{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(10,10,18,.10);
  padding: 18px;
  box-shadow: var(--shadow);
}
.types__list ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 12px;
}
.types__list li{
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(10,10,18,.08);
  background: rgba(255,255,255,.50);
  font-weight: 800;
}
.dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: linear-gradient(135deg, var(--p), var(--v));
  box-shadow: 0 14px 30px rgba(255,79,163,.16);
}
.types__cta{ margin-top: 14px; width: 100%; }

/* NETWORK (dark) */
.network__wrap{ max-width: 860px; }
.network__wrap p{ margin-top: 10px; }

/* WHY (light) */
.why--light{
  background: var(--lightBg);
  color: var(--lightInk);
  padding: 64px 0;
}
.statsRow{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(10,10,18,.10);
  box-shadow: var(--shadow);
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 14px;
}
@media (min-width: 860px){
  .statsRow{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
.statBox{
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(10,10,18,.08);
  background: rgba(255,255,255,.52);
  text-align:center;
}
.statBox__n{
  font-weight: 900;
  font-size: 32px;
  letter-spacing:-.8px;
}
.statBox__l{
  color: rgba(10,10,18,.65);
  font-weight: 700;
  margin-top: 6px;
}
.why__head{ margin-top: 18px; }

.featureGrid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 860px){
  .featureGrid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
.fcard{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(10,10,18,.10);
  box-shadow: var(--shadow);
  padding: 18px;
  border-radius: 22px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.fcard:hover{ transform: translateY(-2px); box-shadow: 0 22px 70px rgba(0,0,0,.18); }
.fcard h3{ margin:0 0 8px; letter-spacing:-.3px; }
.fcard p{ margin:0; color: rgba(10,10,18,.70); line-height: 1.7; }

.centerCta{ display:flex; justify-content:center; margin-top: 16px; }

/* VIDEO TILES (dark) */
.tiles__grid{
  display:grid;
  gap: 16px;
  align-items:center;
}
@media (min-width: 980px){
  .tiles__grid{ grid-template-columns: 1fr 1fr; }
}
.bullets{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(10,10,18,.70);
  display:grid;
  gap: 8px;
  line-height: 1.7;
}
.bullets--onDark{ color: rgba(238,240,255,.72); }

.tiles__media{
  display:grid;
  gap: 12px;
  position:relative;
  grid-template-columns: 1fr;
}
@media (min-width: 640px){
  .tiles__media{
    grid-template-columns: 1fr auto;
    align-items:center;
    gap: 0;
  }
}

.tile{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadowDark);
  overflow:hidden;
  position:relative;
  will-change: transform;
  transition: transform .18s ease, box-shadow .18s ease;
}
.tile--big{
  height: 420px;
  border-radius: 24px;
  background:
    radial-gradient(240px 240px at 25% 20%, rgba(255,79,163,.22), transparent 60%),
    radial-gradient(260px 260px at 80% 30%, rgba(255,179,79,.18), transparent 60%),
    radial-gradient(320px 320px at 60% 90%, rgba(122,92,255,.18), transparent 65%),
    rgba(255,255,255,.04);
}

.tileStack{
  position:relative;
  margin-left: -18px;
}
.tile--small{
  width: min(220px, 80vw);
  height: 170px;
  border-radius: 22px;
  background:
    radial-gradient(200px 200px at 30% 30%, rgba(56,189,248,.14), transparent 60%),
    radial-gradient(200px 200px at 70% 70%, rgba(255,79,163,.12), transparent 60%),
    rgba(255,255,255,.03);
}
.tile--top{ transform: translateY(-24px); z-index:2; }
.tile--bot{ transform: translateY(18px); opacity:.96; }

.tile__overlay{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
}
.play{
  width: 54px; height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
  position:relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.play::before{
  content:"";
  position:absolute;
  left: 22px;
  top: 16px;
  width: 0; height: 0;
  border-left: 16px solid rgba(255,255,255,.88);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.tile__meta{
  position:absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
}
.tile__t{ font-weight: 900; }
.tile__s{ color: rgba(238,240,255,.72); font-size: 12px; margin-top: 4px; }

.tile:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 80px rgba(255,79,163,.10), 0 24px 80px rgba(122,92,255,.08), var(--shadowDark);
}
.tile:hover .play{
  box-shadow: 0 24px 80px rgba(255,79,163,.14), 0 24px 80px rgba(122,92,255,.10);
}

/* Mobile stacking for tiles: remove overlap */
@media (max-width: 639px){
  .tileStack{
    margin-left: 0;
    display:grid;
    gap: 12px;
  }
  .tile--top, .tile--bot{ transform: none; }
  .tile--small{ width: 100%; height: 190px; }
  .tile--big{ height: 380px; }
}

/* PRICING (light) */
.pricing--light{
  background: var(--lightBg);
  color: var(--lightInk);
  padding: 64px 0;
}
.pricing__head{
  display:grid;
  gap: 10px;
  margin-bottom: 14px;
}
.priceGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 980px){
  .priceGrid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
.pcard{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(10,10,18,.10);
  box-shadow: var(--shadow);
  padding: 18px;
  border-radius: 24px;
  position:relative;
  transition: transform .18s ease, box-shadow .18s ease;
  min-width: 0;
}
.pcard:hover{ transform: translateY(-2px); box-shadow: 0 22px 70px rgba(0,0,0,.18); }
.pcard__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 10px;
  min-width: 0;
}
.pcard h3{ margin:0; letter-spacing:-.3px; }
.price{
  font-weight: 900;
  letter-spacing:-.6px;
  font-size: 22px;
  white-space: nowrap;
}
.plist{
  margin: 12px 0 16px;
  padding-left: 18px;
  color: rgba(10,10,18,.70);
  display:grid;
  gap: 8px;
  line-height: 1.7;
}
.pcard--pop{
  border-color: rgba(122,92,255,.22);
  box-shadow: 0 24px 90px rgba(122,92,255,.14), 0 24px 90px rgba(255,79,163,.10);
}
.popTag{
  position:absolute;
  top: 14px; right: 14px;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(122,92,255,.22);
  background: rgba(122,92,255,.10);
}

/* Fix: avoid price overlap on narrow screens */
@media (max-width: 420px){
  .pcard__top{
    flex-direction: column;
    align-items:flex-start;
    gap: 6px;
  }
  .popTag{ top: 12px; right: 12px; }
}

/* FAQ (dark) */
.faq__head{ margin-bottom: 14px; }
.faqList{ display:grid; gap: 10px; }
.faqItem{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  padding: 0;
  overflow:hidden;
}
.faqQ{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  padding: 14px 14px;
  border: none;
  background: transparent;
  color: rgba(238,240,255,.92);
  font-weight: 900;
  font-size: 14px;
  cursor:pointer;
}
.faqQ:focus-visible{
  outline: 2px solid rgba(255,179,79,.55);
  outline-offset: 2px;
}
.chev{
  width: 30px; height: 30px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  transition: transform .18s ease;
  flex: 0 0 auto;
}
.faqA{
  padding: 0 14px 14px;
  color: rgba(238,240,255,.72);
  line-height: 1.7;
}
.faqItem.is-open .chev{ transform: rotate(45deg); }

/* FOOTER */
.foot__wrap{ padding-top: 10px; }
.bigWord{
  font-weight: 900;
  letter-spacing: -2px;
  font-size: clamp(52px, 10vw, 140px);
  line-height: 0.95;
  opacity: .88;
}
.foot__row{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.foot__muted{ color: rgba(238,240,255,.70); font-weight: 700; }
.foot__links{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
}
.foot__links a{
  color: rgba(238,240,255,.70);
  font-weight: 800;
}
.foot__links a:hover{ color: rgba(238,240,255,.92); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .blob, .fc{ animation:none !important; }
  .btn, .glass, .tile{ transition:none !important; }
}
