/* ═══════════════════════════════════════════════════
   FIND ME ASAP — SHARED STYLES v5
   Creator: ZaLayaa Jahzara Wandrick
═══════════════════════════════════════════════════ */

/* ── ACCESSIBILITY ── */
.skip-nav {
  position: absolute; top: -120px; left: 0; z-index: 99999;
  background: var(--yellow); color: #07000F; font-family: 'Nunito', sans-serif;
  font-weight: 900; font-size: 1rem; padding: .75rem 1.5rem;
  text-decoration: none; border-radius: 0 0 10px 0; transition: top .12s;
}
.skip-nav:focus { top: 0; outline: 3px solid #07000F; outline-offset: 2px; }
*:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--yellow); outline-offset: 3px;
}

/* ── CSS VARIABLES ── */
:root {
  --purple: #7B2FBE; --red: #DC143C; --orange: #FF4500;
  --yellow: #FFD700; --bg: #07000F; --green: #22c55e;
  --lp: rgba(123,47,190,.09); --border: rgba(255,215,0,.18);
  --border2: rgba(255,255,255,.1); --purple2: rgba(123,47,190,.35);
  --white: #FFFFFF; --gray: rgba(255,255,255,.55);
  --bg2: rgba(12,2,24,.98); --bg3: rgba(7,0,15,.97);
  --glass: rgba(255,255,255,.04);
  --glass-border: rgba(255,255,255,.09);
  --glow-purple: 0 0 40px rgba(123,47,190,.3);
  --glow-red: 0 0 40px rgba(220,20,60,.3);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg); color: #fff;
  overflow-x: hidden; line-height: 1.6;
}

/* ── AMBIENT BACKGROUND LIGHTING ── */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 8% 0%, rgba(123,47,190,.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 55% at 92% 95%, rgba(220,20,60,.2) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(123,47,190,.06) 0%, transparent 70%);
}

/* ══════════════════════════════════════════════════
   NAV — PREMIUM GLASSMORPHISM
═══════════════════════════════════════════════════ */
nav#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(7,0,15,.94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.75rem; height: 104px;
}
/* Gradient accent line at bottom of nav */
nav#main-nav::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(123,47,190,.85) 20%,
    rgba(220,20,60,.75) 55%,
    rgba(255,69,0,.65) 80%,
    transparent 100%
  );
  pointer-events: none; z-index: 1;
}

/* LOGO */
.nav-logo {
  font-weight: 900; font-size: 1.1rem; color: var(--white);
  text-decoration: none; letter-spacing: .5px; flex-shrink: 0;
  display: flex; align-items: center; gap: 0;
}
.nav-logo span { color: var(--yellow); }

/* NAV LINKS */
.nav-links { display: flex; gap: 0; align-items: center; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-drop-btn {
  display: flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,.6); text-decoration: none;
  font-size: .78rem; font-weight: 700; letter-spacing: .5px;
  padding: .42rem .7rem; border-radius: 7px;
  background: none; border: none; cursor: pointer;
  transition: all .2s; white-space: nowrap; font-family: inherit;
  position: relative;
}
.nav-links > li > a:hover, .nav-drop-btn:hover,
.nav-links > li > a.active {
  color: var(--white); background: rgba(123,47,190,.18);
}
.nav-links > li > a.active { border-bottom: 2px solid var(--purple); border-radius: 7px 7px 0 0; }

/* EMERGENCY BUTTON */
.nav-911 {
  background: linear-gradient(135deg, var(--red), #c8002e) !important;
  color: var(--white) !important; font-weight: 800 !important;
  border-radius: 7px !important; padding: .42rem .85rem !important;
  animation: nav911pulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(220,20,60,.6);
}
.nav-911:hover {
  background: linear-gradient(135deg, #c8002e, #a80026) !important;
  animation: none !important;
  box-shadow: 0 0 0 4px rgba(220,20,60,.35), 0 4px 18px rgba(220,20,60,.5) !important;
}
@keyframes nav911pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,20,60,.6); }
  50% { box-shadow: 0 0 0 8px rgba(220,20,60,0); }
}
@media (prefers-reduced-motion: reduce) { .nav-911 { animation: none; } }

/* CARET */
.nav-caret { font-size: .55rem; opacity: .5; transition: transform .2s; display: inline-block; }
.nav-drop-btn.open .nav-caret { transform: rotate(180deg); }

/* DROPDOWN */
.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: rgba(8,1,20,.98);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(123,47,190,.25);
  border-radius: 12px; padding: .5rem 0; min-width: 215px;
  box-shadow: 0 16px 50px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.04);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .2s ease; z-index: 300; list-style: none;
}
.nav-links > li:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block; padding: .55rem 1.1rem;
  color: rgba(255,255,255,.65); text-decoration: none;
  font-size: .8rem; font-weight: 600; transition: all .15s;
  border-left: 2px solid transparent; margin: 1px 0;
}
.nav-dropdown a:hover {
  color: var(--white); background: rgba(123,47,190,.18);
  border-left-color: var(--purple); padding-left: 1.25rem;
}
.nav-dropdown a.nav-demo-link {
  color: rgba(255,165,60,.9);
  display: flex; align-items: center; gap: 6px;
}
.nav-dropdown a.nav-demo-link::after {
  content: '';
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--orange); flex-shrink: 0;
  animation: nav-demo-pulse 2s ease-in-out infinite;
}
@keyframes nav-demo-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .3; transform: scale(.65); }
}
@media (prefers-reduced-motion: reduce) {
  .nav-dropdown a.nav-demo-link::after { animation: none; opacity: .85; }
}
.nav-dropdown-divider { height: 1px; background: rgba(255,255,255,.07); margin: .35rem 0; }
.nav-dropdown-label {
  padding: .28rem 1.1rem; font-size: .6rem; font-weight: 900;
  letter-spacing: 2.5px; color: rgba(255,255,255,.28); text-transform: uppercase;
}

/* HAMBURGER */
.nav-hamburger {
  display: none; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  cursor: pointer; padding: 0; color: var(--white); font-size: 1.2rem;
  width: 42px; height: 42px; border-radius: 8px;
  align-items: center; justify-content: center;
  transition: all .18s; flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }

/* ══════════════════════════════════════════════════
   PAGE LAYOUT
═══════════════════════════════════════════════════ */
.page-wrap {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto; padding: 124px 1.4rem 3rem;
}
.narrow { max-width: 820px; }

/* TYPOGRAPHY */
.page-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem); line-height: 1.02; margin-bottom: .4rem;
  background: linear-gradient(135deg, #fff 0%, #FFF5B0 35%, var(--yellow) 65%, var(--orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 28px rgba(255,215,0,.18));
  letter-spacing: 2px;
}
.page-sub {
  color: rgba(255,255,255,.52); font-size: .92rem; font-weight: 700;
  margin-bottom: 1.75rem; line-height: 1.72; max-width: 680px;
}
.eyebrow {
  font-size: .62rem; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,.35); font-weight: 900; margin-bottom: .45rem;
  display: block;
}
.section-title {
  font-family: 'Bebas Neue', cursive; font-size: 1.6rem; letter-spacing: 1px; margin-bottom: .85rem;
}

/* GRADIENT TEXT UTILITY */
.grad-text {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-purple {
  background: linear-gradient(135deg, #C4B5FD, var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════════
   CARDS — GLASSMORPHISM
═══════════════════════════════════════════════════ */
.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px; padding: 1.6rem;
  transition: all .3s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(123,47,190,.07) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s; pointer-events: none; border-radius: inherit;
}
.card:hover { border-color: rgba(123,47,190,.4); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(123,47,190,.18); }
.card:hover::before { opacity: 1; }
.card + .card { margin-top: 1.2rem; }

/* CARD — COLORED ACCENT BORDER ON HOVER */
.card::after {
  content: ''; position: absolute; left: 0; top: 12%; bottom: 12%;
  width: 3px; border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, var(--purple), var(--red));
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.card:hover::after { opacity: 1; }
.card.card-red::after  { background: linear-gradient(180deg, var(--red), var(--orange)); }
.card.card-gold::after { background: linear-gradient(180deg, var(--yellow), var(--orange)); }
.card.card-green::after { background: linear-gradient(180deg, var(--green), #16a34a); }

/* PAGE HERO BAR — premium interior page header accent */
.page-hero-bar {
  position: relative; margin-bottom: 2.2rem;
  padding-bottom: 1.6rem;
}
.page-hero-bar::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 64px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--purple), var(--red), var(--orange));
}
.page-hero-bar .page-title {
  filter: drop-shadow(0 0 40px rgba(123,47,190,.25)) drop-shadow(0 0 80px rgba(220,20,60,.12));
}

/* SECTION LABEL — animated dot prefix */
.section-label {
  position: relative; padding-left: 14px;
}
.section-label::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
  animation: label-dot-pulse 2.4s ease-in-out infinite;
}
@keyframes label-dot-pulse {
  0%,100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50%      { opacity: .4; transform: translateY(-50%) scale(.6); }
}
@media (prefers-reduced-motion: reduce) {
  .section-label::before { animation: none; }
  .card::after { transition: none; }
}

/* ══════════════════════════════════════════════════
   BUTTONS — PREMIUM
═══════════════════════════════════════════════════ */
.btn {
  display: inline-block; padding: .75rem 1.7rem; border: none; border-radius: 8px;
  font-family: 'Bebas Neue', cursive; font-size: 1.05rem; letter-spacing: 1.8px;
  cursor: pointer; text-decoration: none; transition: all .22s; text-align: center;
  -webkit-tap-highlight-color: transparent; user-select: none;
  position: relative; overflow: hidden;
}
/* Shine sweep on hover */
.btn::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transform: skewX(-20deg); transition: left .45s ease;
  pointer-events: none;
}
.btn:hover::after { left: 160%; }
.btn-red {
  background: linear-gradient(135deg, var(--red), var(--orange)); color: #fff;
  box-shadow: 0 4px 22px rgba(220,20,60,.38);
}
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(220,20,60,.55); }
.btn-red:active { transform: translateY(0) scale(.97); }
.btn-purple { background: linear-gradient(135deg, var(--purple), #9333EA); color: #fff; box-shadow: 0 4px 18px rgba(123,47,190,.3); }
.btn-purple:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(123,47,190,.5); }
.btn-purple:active { transform: scale(.97); }
.btn-outline {
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.2); color: #fff;
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); transform: translateY(-1px); }
.btn-outline:active { transform: scale(.97); }
.btn-yellow { background: var(--yellow); color: #000; font-weight: 900; box-shadow: 0 4px 18px rgba(255,215,0,.25); }
.btn-yellow:hover { background: #FFC700; transform: translateY(-2px); }
.btn-yellow:active { transform: scale(.97); }
.btn-green { background: linear-gradient(135deg, var(--green), #16a34a); color: #000; box-shadow: 0 4px 18px rgba(34,197,94,.25); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(34,197,94,.4); }
.btn-green:active { transform: scale(.97); }
.btn-big {
  padding: 1.15rem 2.6rem; font-size: 1.4rem; letter-spacing: 2.5px;
  display: inline-block; text-align: center; text-decoration: none;
  border-radius: 8px; cursor: pointer; border: none; transition: all .22s;
  -webkit-tap-highlight-color: transparent; user-select: none;
  position: relative; overflow: hidden;
}
.btn-big::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transform: skewX(-20deg); transition: left .45s ease; pointer-events: none;
}
.btn-big:hover::after { left: 160%; }

/* ══════════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════════ */
.input-group { margin-bottom: 1.15rem; }
.input-group label {
  display: block; font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,215,0,.82); margin-bottom: .38rem;
}
.input-group input, .input-group textarea, .input-group select {
  width: 100%; background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.11);
  border-radius: 8px; padding: .75rem 1rem; color: #fff;
  font-family: 'Nunito', sans-serif; font-size: .93rem;
  transition: all .2s; -webkit-appearance: none;
}
.input-group input:focus, .input-group textarea:focus, .input-group select:focus {
  outline: none; border-color: var(--purple);
  background: rgba(123,47,190,.08);
  box-shadow: 0 0 0 3px rgba(123,47,190,.15);
}
.input-group textarea { min-height: 88px; resize: vertical; }
.input-group select option { background: #1a0030; }

/* ══════════════════════════════════════════════════
   ALERTS
═══════════════════════════════════════════════════ */
.alert { border-radius: 10px; padding: 1rem 1.35rem; margin-bottom: 1.15rem; font-weight: 700; font-size: .9rem; line-height: 1.6; }
.alert-yellow { background: rgba(255,215,0,.08); border: 1.5px solid rgba(255,215,0,.3); }
.alert-red { background: rgba(220,20,60,.1); border: 1.5px solid rgba(220,20,60,.4); }
.alert-green { background: rgba(34,197,94,.09); border: 1.5px solid rgba(34,197,94,.35); }
.alert-purple { background: rgba(123,47,190,.15); border: 1.5px solid rgba(123,47,190,.4); }

/* ══════════════════════════════════════════════════
   GRIDS
═══════════════════════════════════════════════════ */
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.grid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.15rem; }
.grid4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.1rem; }

/* ══════════════════════════════════════════════════
   DIVIDER
═══════════════════════════════════════════════════ */
.divider {
  border: none; height: 1px; margin: 2.5rem 0;
  background: linear-gradient(90deg, transparent, rgba(123,47,190,.35), rgba(220,20,60,.2), transparent);
}

/* ══════════════════════════════════════════════════
   NCMEC BAR
═══════════════════════════════════════════════════ */
.ncmec-bar {
  background: linear-gradient(135deg, rgba(220,20,60,.15), rgba(255,69,0,.07));
  border: 1px solid rgba(220,20,60,.35);
  border-left: 4px solid var(--red);
  border-radius: 8px; padding: .85rem 1.25rem;
  font-weight: 800; font-size: .88rem; color: rgba(255,255,255,.88);
  margin-bottom: 1.6rem;
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  box-shadow: 0 4px 18px rgba(220,20,60,.1);
}
.ncmec-bar span { color: var(--red); font-family: 'Bebas Neue', cursive; font-size: 1.05rem; letter-spacing: 1px; }
.ncmec-bar a { color: var(--yellow); text-decoration: none; }
.ncmec-bar a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════
   TAGS
═══════════════════════════════════════════════════ */
.tag { display: inline-block; font-size: .6rem; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; padding: .2rem .55rem; border-radius: 4px; }
.tag-purple { background: var(--purple); color: #fff; }
.tag-red { background: var(--red); color: #fff; }
.tag-orange { background: var(--orange); color: #fff; }
.tag-yellow { background: var(--yellow); color: #000; }
.tag-green { background: var(--green); color: #000; }

/* ══════════════════════════════════════════════════
   KIT EXAMPLE MODAL
═══════════════════════════════════════════════════ */
.kit-ex-overlay { position:fixed;inset:0;z-index:600;background:rgba(0,0,0,.88);backdrop-filter:blur(8px);display:flex;align-items:center;justify-content:center;padding:1rem;opacity:0;visibility:hidden;transition:all .25s; }
.kit-ex-overlay.open { opacity:1;visibility:visible; }
.kit-ex-modal { background:rgba(10,1,22,.99);border:1.5px solid rgba(123,47,190,.3);border-radius:16px;width:100%;max-width:740px;max-height:90vh;overflow:hidden;display:flex;flex-direction:column;box-shadow:0 24px 80px rgba(0,0,0,.8); }
.kit-ex-head { background:rgba(7,0,15,.98);padding:.9rem 1.2rem;border-bottom:1px solid rgba(255,255,255,.07);display:flex;align-items:center;justify-content:space-between;flex-shrink:0; }
.kit-ex-head-title { font-weight:900;font-size:.9rem;color:var(--yellow);letter-spacing:.5px; }
.kit-ex-close { background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);color:var(--gray);font-size:1rem;cursor:pointer;padding:.3rem .6rem;border-radius:6px;transition:all .15s; }
.kit-ex-close:hover { color:var(--white);background:rgba(255,255,255,.12); }
.kit-ex-tabs { display:flex;gap:4px;padding:.6rem 1rem;border-bottom:1px solid rgba(255,255,255,.06);flex-wrap:wrap;flex-shrink:0; }
.kit-ex-tab { background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.09);color:rgba(255,255,255,.5);font-size:.7rem;font-weight:700;padding:.32rem .7rem;border-radius:20px;cursor:pointer;transition:all .18s;white-space:nowrap; }
.kit-ex-tab.active { background:var(--purple);border-color:var(--purple);color:var(--white); }
.kit-ex-body { padding:1.2rem;overflow-y:auto;flex:1; }
.kit-ex-flag { background:rgba(220,20,60,.09);border:2px solid rgba(220,20,60,.35);border-radius:10px;padding:.85rem 1rem;margin-bottom:1rem; }
.kit-ex-flag-badge { font-size:.65rem;font-weight:900;letter-spacing:2px;color:var(--red);margin-bottom:.35rem;text-transform:uppercase; }
.kit-ex-flag-title { font-weight:800;font-size:.9rem;color:var(--white);margin-bottom:.45rem; }
.kit-ex-flag p { font-size:.83rem;color:rgba(255,255,255,.8);line-height:1.65; }
.kit-ex-content { font-size:.84rem;line-height:1.85;color:rgba(255,255,255,.82);white-space:pre-wrap; }
.kit-ex-section { margin-bottom:1.2rem; }
.kit-ex-section-label { font-size:.65rem;font-weight:900;letter-spacing:2px;color:var(--orange);margin-bottom:.5rem;text-transform:uppercase; }

/* ══════════════════════════════════════════════════
   PRINT
═══════════════════════════════════════════════════ */
@media print {
  nav, footer, .no-print, .mobile-sticky-bar, .fma-simple-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  .page-wrap { padding: 0; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 900px) { .grid4 { grid-template-columns: repeat(2,1fr); } }

@media (max-width: 860px) {
  /* MOBILE NAV */
  .nav-links {
    display: none; position: fixed; top: 104px; left: 0; right: 0;
    background: rgba(6,0,14,.99); backdrop-filter: blur(20px);
    flex-direction: column; align-items: stretch;
    padding: .5rem 0 1rem; border-bottom: 1px solid rgba(123,47,190,.25);
    gap: 0; z-index: 490; max-height: calc(100vh - 104px); overflow-y: auto;
  }
  .nav-links.mobile-open { display: flex; animation: navSlideDown .22s ease; }
  .nav-links > li > a, .nav-drop-btn {
    border-radius: 0; padding: .82rem 1.4rem; font-size: .85rem;
    border-left: 3px solid transparent;
  }
  .nav-links > li > a:active, .nav-drop-btn:active { background: rgba(123,47,190,.22); }
  .nav-links > li > a.active { border-left-color: var(--purple); background: rgba(123,47,190,.1); }
  .nav-links > li > a.nav-911 { border-left: none; margin: .35rem .75rem; border-radius: 8px; justify-content: center; font-size: .9rem; padding: .9rem; }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: none; border-top: 1px solid rgba(255,255,255,.05); border-radius: 0;
    box-shadow: none; background: rgba(123,47,190,.06);
    padding: .25rem 0 .25rem 1.1rem; display: none; min-width: unset;
  }
  .nav-dropdown a { padding: .62rem 1rem; font-size: .82rem; border-left: none; }
  .nav-dropdown a:hover { padding-left: 1.15rem; }
  .nav-links > li.mobile-expanded .nav-dropdown { display: block; }
  .nav-hamburger { display: flex; }
}

@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 700px) {
  .grid2, .grid3, .grid4 { grid-template-columns: 1fr; }
  .btn-big { padding: .95rem 1.75rem; font-size: 1.2rem; }
}
@media (max-width: 480px) {
  .page-wrap { padding-top: 98px; }
  .page-title { font-size: clamp(2rem, 7vw, 2.9rem); }
  .card { padding: 1.2rem; }
}

/* ══════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════ */
@keyframes _animReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
  animation: _animReveal 0s .5s forwards;
}
.anim.visible {
  opacity: 1; transform: translateY(0);
  animation: none;
}
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,20,60,.65), 0 6px 30px rgba(220,20,60,.4); }
  50% { box-shadow: 0 0 0 20px rgba(220,20,60,0), 0 6px 45px rgba(255,69,0,.55); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .18; } }
@keyframes fadeUp { from { opacity:0; transform: translateY(14px); } to { opacity:1; transform: translateY(0); } }
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ══════════════════════════════════════════════════
   MOBILE STICKY BOTTOM BAR
═══════════════════════════════════════════════════ */
.mobile-sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 64px;
  background: rgba(6,0,14,.97);
  border-top: 1px solid rgba(123,47,190,.3);
  z-index: 400;
  backdrop-filter: blur(20px);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.msb-btn {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,.45);
  font-size: .52rem; font-weight: 900; letter-spacing: .5px;
  text-transform: uppercase; gap: 3px; transition: all .2s;
  border-left: 1px solid rgba(255,255,255,.05); padding: 0 4px;
}
.msb-btn:first-child { border-left: none; }
.msb-btn:hover, .msb-btn:active { color: #fff; background: rgba(123,47,190,.16); }
.msb-icon { font-size: 1.25rem; line-height: 1; }
.msb-label { font-size: .5rem; }
.msb-generate { color: var(--orange) !important; }
.msb-generate:hover { background: rgba(220,20,60,.14) !important; }
.msb-found { color: var(--green) !important; }
.msb-found:hover { background: rgba(34,197,94,.11) !important; }
.msb-911 { background: rgba(220,20,60,.07) !important; color: var(--red) !important; }
.msb-911:hover { background: rgba(220,20,60,.18) !important; }
@media (max-width: 860px) {
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 74px; }
}

/* ══════════════════════════════════════════════════
   TRUST & PRIVACY PANEL
═══════════════════════════════════════════════════ */
.trust-panel {
  background: rgba(123,47,190,.07); border: 1px solid rgba(123,47,190,.22);
  border-radius: 12px; padding: 1rem 1.35rem;
  display: flex; align-items: flex-start; gap: .9rem;
  font-size: .83rem; font-weight: 700; color: rgba(255,255,255,.58);
  line-height: 1.65; margin-bottom: 1.25rem;
}
.trust-panel-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .05rem; }
.trust-panel strong { color: rgba(255,255,255,.85); }

/* ══════════════════════════════════════════════════
   SIMPLE LANGUAGE MODE
═══════════════════════════════════════════════════ */
.fma-simple-toggle {
  position: fixed; bottom: 82px; right: 14px; z-index: 300;
  background: rgba(7,0,15,.92); border: 1px solid rgba(123,47,190,.38);
  border-radius: 20px; padding: .38rem .95rem;
  font-size: .58rem; font-weight: 900; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  cursor: pointer; transition: all .2s; font-family: 'Nunito', sans-serif;
}
.fma-simple-toggle:hover { border-color: var(--purple); color: #fff; background: rgba(123,47,190,.15); }
@media (max-width: 860px) { .fma-simple-toggle { bottom: 78px; } }
body.fma-simple .page-sub, body.fma-simple p { font-size: .97rem !important; line-height: 1.85 !important; }
body.fma-simple .btn, body.fma-simple button { min-height: 50px; }

/* ══════════════════════════════════════════════════
   SAFETY DISCLAIMER BAR
═══════════════════════════════════════════════════ */
.safety-disclaimer {
  background: rgba(220,20,60,.07); border: 1px solid rgba(220,20,60,.22);
  border-radius: 10px; padding: .9rem 1.2rem;
  font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.65);
  line-height: 1.7; margin-bottom: 1.5rem; text-align: center;
}
.safety-disclaimer strong { color: var(--red); }
.safety-disclaimer a { color: var(--yellow); text-decoration: none; }

/* ══════════════════════════════════════════════════
   QUALITY SCORE
═══════════════════════════════════════════════════ */
.quality-bar-wrap { margin-bottom: 1.5rem; }
.quality-bar-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: .5rem; }
.quality-bar-title { font-size: .68rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.5); }
.quality-bar-score { font-family: 'Bebas Neue', cursive; font-size: 1.1rem; letter-spacing: 1px; }
.quality-bar-track { background: rgba(255,255,255,.07); border-radius: 20px; height: 8px; overflow: hidden; }
.quality-bar-fill { height: 100%; border-radius: 20px; transition: width .65s ease; }
.quality-items { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; margin-top: .75rem; }
@media (max-width: 500px) { .quality-items { grid-template-columns: 1fr; } }
.quality-item { display: flex; align-items: center; gap: .5rem; font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.5); }
.quality-item.done { color: rgba(255,255,255,.8); }
.quality-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.14); flex-shrink: 0; }
.quality-item.done .quality-dot { background: var(--green); box-shadow: 0 0 6px var(--green); }

/* ══════════════════════════════════════════════════
   RISK FLAGS & CHIPS
═══════════════════════════════════════════════════ */
.risk-flags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.2rem; }
.risk-flag { background: rgba(220,20,60,.1); border: 1.5px solid rgba(220,20,60,.28); border-radius: 20px; padding: .3rem .88rem; font-size: .72rem; font-weight: 900; color: #FCA5A5; letter-spacing: .5px; }
.risk-flag.warn { background: rgba(255,215,0,.07); border-color: rgba(255,215,0,.28); color: var(--yellow); }
.chip-grid { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.25rem; }
.chip { background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.12); border-radius: 20px; padding: .46rem 1.05rem; font-size: .78rem; font-weight: 800; color: rgba(255,255,255,.58); cursor: pointer; transition: all .2s; user-select: none; }
.chip:hover { border-color: rgba(123,47,190,.6); color: #fff; background: rgba(123,47,190,.12); }
.chip.selected { background: rgba(123,47,190,.22); border-color: var(--purple); color: #fff; }
.chip.selected-red { background: rgba(220,20,60,.18); border-color: var(--red); color: #FCA5A5; }
.chip.selected-green { background: rgba(34,197,94,.14); border-color: var(--green); color: #4ade80; }

/* ══════════════════════════════════════════════════
   PAGE HERO BANNERS
═══════════════════════════════════════════════════ */
.page-hero { border-radius: 16px; padding: 2.25rem 1.85rem; margin-bottom: 2rem; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 90% 10%, rgba(123,47,190,.18) 0%, transparent 70%);
}
.page-hero-eyebrow { font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 900; margin-bottom: .5rem; opacity: .7; }
.page-hero h1 { font-family: 'Bebas Neue', cursive; font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: 2px; line-height: 1; margin-bottom: .65rem; }
.page-hero p { font-size: .93rem; font-weight: 700; color: rgba(255,255,255,.62); max-width: 560px; line-height: 1.68; }

/* ══════════════════════════════════════════════════
   INFO SECTIONS
═══════════════════════════════════════════════════ */
.info-section { margin-bottom: 2.5rem; }
.info-section-head { display: flex; align-items: center; gap: .85rem; margin-bottom: 1rem; }
.info-section-bar { width: 4px; border-radius: 3px; height: 26px; flex-shrink: 0; }
.info-section h2 { font-family: 'Bebas Neue', cursive; font-size: 1.6rem; letter-spacing: 1px; }
.info-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px; padding: 1.35rem 1.5rem; margin-bottom: .85rem; transition: all .3s; }
.info-card:hover { border-color: rgba(123,47,190,.35); box-shadow: 0 8px 28px rgba(123,47,190,.12); transform: translateY(-2px); }
.info-card h3 { font-family: 'Bebas Neue', cursive; font-size: 1.15rem; letter-spacing: 1px; margin-bottom: .5rem; }
.info-card p, .info-card li { font-size: .87rem; font-weight: 700; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: .3rem; }
.info-card ul, .info-card ol { padding-left: 1.4rem; }
.cannot-box { background: rgba(220,20,60,.07); border: 1.5px solid rgba(220,20,60,.22); border-radius: 12px; padding: 1.2rem 1.4rem; }
.can-box { background: rgba(34,197,94,.07); border: 1.5px solid rgba(34,197,94,.2); border-radius: 12px; padding: 1.2rem 1.4rem; }

/* ══════════════════════════════════════════════════
   NAV LOGO IMAGE
═══════════════════════════════════════════════════ */
.nav-logo { display: flex; align-items: center; gap: 0; }
.nav-logo-img { height: 88px; width: auto; display: block; flex-shrink: 0; object-fit: contain; }
.nav-logo-text { display: none !important; }
@media (max-width: 860px) {
  .nav-logo { gap: 8px; }
  .nav-logo-img { height: 64px; }
}

/* ── LANDSCAPE ORIENTATION FIX ─────────────────────────────────── */
@media (orientation: landscape) and (max-height: 500px) {
  nav#main-nav { height: 60px !important; }
  .nav-logo-img { height: 42px !important; }
  .page-wrap, main { padding-top: 60px !important; }
  .nav-links { top: 60px !important; max-height: calc(100vh - 60px) !important; }
  .page-subnav { top: 60px !important; }
  .found-banner { top: 60px !important; }
  .fma-footer { padding-top: 1.75rem !important; margin-top: 2rem !important; }
  .fma-footer-top { grid-template-columns: 1fr !important; gap: 1rem !important; padding-bottom: 1rem !important; }
  .fma-footer-cols { grid-template-columns: repeat(2,1fr) !important; gap: .75rem !important; }
  .fma-footer-logo-img { height: 36px !important; }
  .fma-footer-mission { display: none !important; }
}

/* ── PAGE IN-PAGE SUBNAV ────────────────────────────────────────── */
.page-subnav {
  position: sticky;
  top: 104px;
  z-index: 200;
  background: rgba(6,0,14,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 0 max(1.5rem, env(safe-area-inset-left));
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
  display: flex;
  gap: 0;
  -ms-overflow-style: none;
}
.page-subnav::-webkit-scrollbar { display: none; }
.page-subnav a {
  display: inline-flex;
  align-items: center;
  padding: .6rem .9rem;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all .18s;
  white-space: nowrap;
  flex-shrink: 0;
}
.page-subnav a:hover { color: rgba(255,255,255,.88); border-bottom-color: rgba(123,47,190,.5); }
.page-subnav a.psn-active { color: #fff; border-bottom-color: var(--purple); }
.page-subnav .psn-sep { width: 1px; background: rgba(255,255,255,.08); margin: .35rem 0; flex-shrink: 0; }
.page-subnav a.psn-emergency { color: rgba(220,20,60,.75); }
.page-subnav a.psn-emergency:hover { color: var(--red); border-bottom-color: var(--red); }
/* Scroll offset so sticky nav+subnav don't cover anchor targets */
.snav-anchor { scroll-margin-top: 160px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ══════════════════════════════════════════════════
   PREMIUM SITE FOOTER
═══════════════════════════════════════════════════ */
.fma-footer-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.fma-footer {
  background: rgba(4,0,10,.99);
  border-top: 1px solid rgba(123,47,190,.18);
  padding: 3.5rem max(1.5rem, env(safe-area-inset-right, 0px)) max(1.75rem, env(safe-area-inset-bottom, 0px)) max(1.5rem, env(safe-area-inset-left, 0px));
  margin-top: 5rem;
  position: relative; overflow: visible;
}
.fma-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(123,47,190,.7) 30%, rgba(220,20,60,.6) 70%, transparent 100%);
}
.fma-footer-top { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 200px 1fr; gap: 3.5rem; padding-bottom: 2.5rem; }
.fma-footer-brand { display: flex; flex-direction: column; gap: .85rem; }
.fma-footer-logo-img { height: 52px; width: auto; }
.fma-footer-tagline { font-family: 'Bebas Neue', cursive; font-size: .9rem; letter-spacing: 3.5px; color: rgba(255,255,255,.3); }
.fma-footer-ncmec-pill {
  background: rgba(220,20,60,.1); border: 1px solid rgba(220,20,60,.25);
  border-radius: 20px; padding: .35rem .85rem; font-size: .7rem;
  font-weight: 900; color: #FCA5A5; letter-spacing: .5px; display: inline-block;
}
.fma-footer-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.fma-footer-col-head {
  font-size: .58rem; font-weight: 900; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,215,0,.45); margin-bottom: .75rem;
  padding-bottom: .5rem; border-bottom: 1px solid rgba(255,215,0,.1);
}
.fma-footer-col a {
  display: block; font-size: .79rem; font-weight: 700;
  color: rgba(255,255,255,.4); text-decoration: none;
  margin-bottom: .38rem; transition: all .18s; padding-left: 0;
}
.fma-footer-col a:hover { color: rgba(255,255,255,.85); padding-left: 4px; }
.fma-footer-bottom {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem; display: flex; flex-direction: column; gap: .45rem;
}
.fma-footer-credit { font-size: .83rem; font-weight: 700; color: rgba(255,255,255,.58); }
.fma-footer-credit strong { color: #fff; }
.fma-footer-email { color: var(--yellow); text-decoration: none; }
.fma-footer-email:hover { text-decoration: underline; }
.fma-footer-legal { font-size: .7rem; color: rgba(255,255,255,.25); font-weight: 600; line-height: 1.65; }
@media (max-width: 860px) {
  .fma-footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .fma-footer-cols { grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
}
@media (max-width: 480px) { .fma-footer-cols { grid-template-columns: 1fr 1fr; } }

/* ══════════════════════════════════════════════════
   STANDALONE GENERATOR PAGES
═══════════════════════════════════════════════════ */
.gen-form-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 14px; padding: 1.85rem; margin-bottom: 1.25rem; }
.gen-label { font-size: .72rem; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.42); display: block; margin-bottom: .4rem; margin-top: .85rem; }
.gen-label:first-child { margin-top: 0; }
.gen-input, .gen-textarea { width: 100%; background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.09); border-radius: 8px; padding: .78rem 1rem; color: #fff; font-family: 'Nunito', sans-serif; font-size: .92rem; transition: all .2s; }
.gen-input:focus, .gen-textarea:focus { outline: none; border-color: var(--purple); background: rgba(123,47,190,.08); box-shadow: 0 0 0 3px rgba(123,47,190,.14); }
.gen-textarea { resize: vertical; min-height: 90px; }
.gen-result-box { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 1.5rem; margin-bottom: 1rem; }
.gen-result-text { white-space: pre-wrap; font-size: .88rem; line-height: 1.9; color: rgba(255,255,255,.85); font-family: 'Nunito', sans-serif; }
.gen-actions { display: flex; gap: .65rem; flex-wrap: wrap; margin-top: 1rem; }
.gen-btn { padding: .58rem 1.25rem; background: rgba(123,47,190,.22); border: 1px solid rgba(123,47,190,.45); color: #fff; font-size: .75rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; border-radius: 6px; cursor: pointer; transition: all .2s; }
.gen-btn:hover { background: var(--purple); box-shadow: 0 4px 14px rgba(123,47,190,.35); }
.gen-btn-red { background: rgba(220,20,60,.18); border-color: rgba(220,20,60,.45); }
.gen-btn-red:hover { background: var(--red); }
.gen-btn-green { background: rgba(34,197,94,.14); border-color: rgba(34,197,94,.4); }
.gen-btn-green:hover { background: rgba(34,197,94,.3); }
.gen-spinner { width: 52px; height: 52px; border: 4px solid rgba(123,47,190,.18); border-top: 4px solid var(--purple); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 1.25rem; }
.profile-prefill { background: rgba(34,197,94,.06); border: 1px solid rgba(34,197,94,.2); border-radius: 10px; padding: .78rem 1rem; font-size: .8rem; font-weight: 700; color: rgba(34,197,94,.9); margin-bottom: 1.25rem; }
.gen-cross-links { margin-top: 1.5rem; background: rgba(255,215,0,.04); border: 1px solid rgba(255,215,0,.14); border-radius: 12px; padding: 1.3rem 1.5rem; }
.gen-cross-links-label { font-size: .6rem; font-weight: 900; letter-spacing: 2px; color: rgba(255,215,0,.45); margin-bottom: .75rem; text-transform: uppercase; }

/* ══════════════════════════════════════════════════
   CHIP SELECTOR VARIATIONS
═══════════════════════════════════════════════════ */
.page-hero { border-radius: 16px; padding: 2.25rem 1.85rem; margin-bottom: 2rem; position: relative; overflow: hidden; }
.page-hero-eyebrow { font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 900; margin-bottom: .5rem; opacity: .7; }
.page-hero h1 { font-family: 'Bebas Neue', cursive; font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: 2px; line-height: 1; margin-bottom: .65rem; }
.page-hero p { font-size: .93rem; font-weight: 700; color: rgba(255,255,255,.62); max-width: 560px; line-height: 1.68; }

/* ══════════════════════════════════════════════════
   SPARKLE PARTICLES & GLAM EFFECTS
═══════════════════════════════════════════════════ */
@keyframes sparkle-float {
  0%   { transform: translate(0,0) scale(1) rotate(0deg); opacity: 1; }
  100% { transform: translate(var(--tx,0px), -90px) scale(0) rotate(var(--rot,180deg)); opacity: 0; }
}
.fma-sparkle-particle {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  font-size: var(--sz, 14px);
  color: var(--col, #FFD700);
  text-shadow: 0 0 8px var(--col, #FFD700);
  animation: sparkle-float var(--dur, 1.2s) ease-out forwards;
  user-select: none;
}
@keyframes glam-shimmer {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.glam-text {
  background: linear-gradient(90deg, #FFD700 0%, #FF4500 20%, #DC143C 40%, #7B2FBE 60%, #DC143C 80%, #FFD700 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glam-shimmer 4s ease infinite;
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 18px rgba(123,47,190,.4); }
  50%      { box-shadow: 0 0 36px rgba(123,47,190,.75), 0 0 60px rgba(220,20,60,.2); }
}
.glam-pulse { animation: pulse-glow 3s ease-in-out infinite; }
@keyframes drift-up {
  0%   { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}
.drift-in { animation: drift-up .6s ease forwards; }
/* stat counter shimmer */
@keyframes count-shimmer {
  0%,100% { color: #FFD700; text-shadow: 0 0 0 transparent; }
  50%      { color: #fff; text-shadow: 0 0 20px rgba(255,215,0,.6); }
}
.stat-shimmer { animation: count-shimmer 3s ease-in-out infinite; }

/* ══════════════════════════════════════════════════
   NAV LOGO — DESKTOP TEXT ALWAYS VISIBLE
═══════════════════════════════════════════════════ */
.nav-logo { gap: 10px; }
.nav-logo-img { height: 92px; }
.nav-logo-text {
  display: block;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.22rem; letter-spacing: 3px; line-height: 1;
  background: linear-gradient(90deg, #FFD700 0%, #FF4500 60%, #DC143C 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════════
   DOCUMENT PREVIEW MODAL
═══════════════════════════════════════════════════ */
.fma-prev-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.88); backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.fma-prev-overlay.open { opacity: 1; visibility: visible; }
.fma-prev-modal {
  background: rgba(9,1,20,.99);
  border: 1.5px solid rgba(123,47,190,.35);
  border-radius: 18px; width: 100%; max-width: 580px;
  max-height: 88vh; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 32px 96px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.04);
  transform: translateY(24px) scale(.97);
  transition: transform .22s ease;
}
.fma-prev-overlay.open .fma-prev-modal { transform: translateY(0) scale(1); }
.fma-prev-head {
  background: rgba(6,0,14,.99); padding: 1.1rem 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0; position: relative;
}
.fma-prev-head::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123,47,190,.6), rgba(220,20,60,.5), transparent);
}
.fma-prev-head-title {
  font-family: 'Bebas Neue', cursive; font-size: 1.15rem;
  letter-spacing: 2px; color: #fff;
}
.fma-prev-close {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.5); font-size: 1.1rem; cursor: pointer;
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.fma-prev-close:hover { background: rgba(255,255,255,.15); color: #fff; }
.fma-prev-body { padding: 1.5rem 1.4rem; overflow-y: auto; flex: 1; }
.fma-prev-badge {
  display: inline-block; font-size: .6rem; font-weight: 900;
  letter-spacing: 2px; text-transform: uppercase;
  background: rgba(123,47,190,.22); border: 1px solid rgba(123,47,190,.45);
  border-radius: 4px; padding: .22rem .65rem; color: #c084fc; margin-bottom: 1rem;
}
.fma-prev-mockup {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 1.4rem; margin-bottom: 1.1rem;
  font-size: .83rem; line-height: 1.85; color: rgba(255,255,255,.82);
  font-family: 'Nunito', sans-serif; white-space: pre-wrap;
}
.fma-prev-mockup-header {
  font-family: 'Bebas Neue', cursive; font-size: 1.4rem; letter-spacing: 3px;
  color: #fff; margin-bottom: .5rem;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fma-prev-desc {
  font-size: .84rem; font-weight: 600; color: rgba(255,255,255,.48);
  line-height: 1.72; margin-bottom: 1.1rem;
}
.fma-prev-actions { display: flex; gap: .65rem; flex-wrap: wrap; }
.fma-prev-tag {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .65rem; font-weight: 900; letter-spacing: 1px;
  text-transform: uppercase; padding: .28rem .7rem;
  border-radius: 4px; background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.3); color: #4ade80;
  margin-bottom: .9rem;
}

/* ══════════════════════════════════════════════════
   AI FEATURE CARDS
═══════════════════════════════════════════════════ */
.ai-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ai-card {
  background: var(--glass);
  border: 1px solid rgba(123,47,190,.18);
  border-radius: 14px; padding: 1.4rem 1.1rem;
  position: relative; overflow: hidden;
  transition: all .32s ease; cursor: default;
}
.ai-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--red));
  opacity: 0; transition: opacity .3s;
}
.ai-card:hover {
  border-color: rgba(123,47,190,.52);
  background: rgba(123,47,190,.1);
  transform: translateY(-5px);
  box-shadow: 0 14px 48px rgba(123,47,190,.22);
}
.ai-card:hover::before { opacity: 1; }
.ai-card-icon { font-size: 1.8rem; margin-bottom: .65rem; display: block; }
.ai-card-label {
  font-size: .55rem; font-weight: 900; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(123,47,190,.9);
  margin-bottom: .3rem;
}
.ai-card-title {
  font-family: 'Bebas Neue', cursive; font-size: 1.05rem;
  letter-spacing: 1px; color: #fff; margin-bottom: .4rem; line-height: 1.2;
}
.ai-card-desc {
  font-size: .73rem; font-weight: 600;
  color: rgba(255,255,255,.43); line-height: 1.6;
}
@media (max-width: 900px) { .ai-cards-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px)  { .ai-cards-grid { grid-template-columns: 1fr 1fr; gap: .7rem; } }

/* ══════════════════════════════════════════════════
   RECOGNITION SECTION
═══════════════════════════════════════════════════ */
.recognition-band {
  background: linear-gradient(135deg, rgba(255,140,0,.1), rgba(255,215,0,.07));
  border: 1.5px solid rgba(255,165,0,.28);
  border-radius: 16px; padding: 2rem 2.2rem;
  display: flex; align-items: center; gap: 2rem;
  position: relative; overflow: hidden;
}
.recognition-band::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,.7), rgba(255,165,0,.6), transparent);
}
.recognition-icon { font-size: 2.6rem; flex-shrink: 0; }
.recognition-content { flex: 1; }
.recognition-eyebrow {
  font-size: .58rem; font-weight: 900; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,165,0,.7); margin-bottom: .3rem;
}
.recognition-title {
  font-family: 'Bebas Neue', cursive; font-size: 1.6rem;
  letter-spacing: 2px; color: #fff; margin-bottom: .35rem; line-height: 1.1;
}
.recognition-desc {
  font-size: .83rem; font-weight: 700; color: rgba(255,255,255,.52);
  line-height: 1.65; margin-bottom: .7rem;
}
.recognition-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .76rem; font-weight: 900; letter-spacing: .5px;
  color: var(--yellow); text-decoration: none;
  border-bottom: 1px solid rgba(255,215,0,.38); padding-bottom: 1px;
  transition: all .18s;
}
.recognition-link:hover { color: #fff; border-bottom-color: rgba(255,255,255,.6); }
@media (max-width: 640px) {
  .recognition-band { flex-direction: column; gap: 1rem; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════
   HERO MOCKUP CARD
═══════════════════════════════════════════════════ */
.hero-mockup {
  background: rgba(9,1,20,.92);
  border: 1.5px solid rgba(123,47,190,.35);
  border-radius: 16px; padding: 1.2rem;
  max-width: 520px; margin: 2.2rem auto 0;
  text-align: left;
  box-shadow: 0 20px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.04);
  position: relative; overflow: hidden;
}
.hero-mockup::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--red), var(--orange));
}
.hero-mockup-topbar {
  display: flex; align-items: center; gap: .55rem;
  margin-bottom: .9rem; padding-bottom: .65rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hero-mockup-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hero-mockup-label {
  font-size: .6rem; font-weight: 900; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.28); margin-left: auto;
}
.hero-mockup-row {
  display: flex; align-items: center; gap: .65rem;
  padding: .5rem .65rem; border-radius: 8px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  margin-bottom: .4rem;
  font-size: .74rem; font-weight: 700; color: rgba(255,255,255,.72);
}
.hero-mockup-row-icon { font-size: .95rem; flex-shrink: 0; }
.hero-mockup-bar {
  height: 5px; border-radius: 3px; flex: 1; background: rgba(255,255,255,.07);
  overflow: hidden;
}
.hero-mockup-bar-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--purple), var(--red));
  animation: bar-fill 2.8s ease-in-out infinite alternate;
}
@keyframes bar-fill { from { width: 30%; } to { width: 94%; } }
.hero-mockup-status {
  font-size: .58rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase;
  color: var(--green); text-align: right; margin-top: .6rem;
  display: flex; align-items: center; justify-content: flex-end; gap: .35rem;
}
.hero-mockup-status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green);
  animation: blink 1.5s infinite;
}

/* ══════════════════════════════════════════════════
   FOOTER LOGO MARK + MISSION
═══════════════════════════════════════════════════ */
.fma-footer-logo-mark {
  font-family: 'Bebas Neue', cursive; font-size: 2rem;
  letter-spacing: 4px; line-height: 1;
  background: linear-gradient(135deg, #FFD700, #FF4500, #DC143C);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block; margin-bottom: .2rem;
}
.fma-footer-mission {
  font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.38);
  line-height: 1.72; max-width: 210px; margin-top: .25rem;
}
.fma-footer-recognition {
  font-size: .72rem; font-weight: 800; color: rgba(255,165,0,.6);
  text-decoration: none; display: inline-block; margin-top: .55rem;
  border-bottom: 1px solid rgba(255,165,0,.2); padding-bottom: 1px;
  transition: color .18s, border-color .18s;
}
.fma-footer-recognition:hover { color: var(--yellow); border-bottom-color: rgba(255,215,0,.5); }

/* ══════════════════════════════════════════════════
   PREMIUM DESIGN SYSTEM — v6 UPGRADES
   Immersive · Emotional · High-Performance
═══════════════════════════════════════════════════ */

/* ── SHIMMER TEXT EFFECT ── */
@keyframes shimmer-text {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.text-shimmer {
  background: linear-gradient(90deg,
    var(--yellow) 0%, #fff 25%, var(--yellow) 50%, var(--orange) 75%, var(--yellow) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 4s linear infinite;
}

/* ── GLOW PULSE ON KEY ELEMENTS ── */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(123,47,190,.25), 0 8px 40px rgba(0,0,0,.5); }
  50% { box-shadow: 0 0 45px rgba(123,47,190,.5), 0 0 80px rgba(220,20,60,.15), 0 8px 50px rgba(0,0,0,.6); }
}
.glow-card {
  animation: glow-pulse 4s ease-in-out infinite;
}

/* ── GRADIENT BORDER CARDS ── */
.grad-border-card {
  position: relative; border-radius: 14px;
  background: linear-gradient(135deg, rgba(123,47,190,.08), rgba(220,20,60,.05));
  isolation: isolate;
}
.grad-border-card::before {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit; padding: 1.5px;
  background: linear-gradient(135deg, rgba(123,47,190,.6), rgba(220,20,60,.4), rgba(255,69,0,.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}

/* ── AMBIENT PARTICLE LAYER ── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 15% 22%, rgba(123,47,190,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 82% 11%, rgba(255,215,0,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 67%, rgba(220,20,60,.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 42%, rgba(123,47,190,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 28% 88%, rgba(255,69,0,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 91% 76%, rgba(255,215,0,.25) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 18%, rgba(255,255,255,.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 8% 55%, rgba(123,47,190,.35) 0%, transparent 100%);
  opacity: .7;
}

/* ── GLASS CARD UPGRADE ── */
.glass-premium {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow:
    0 1px 0 rgba(255,255,255,.1) inset,
    0 -1px 0 rgba(0,0,0,.3) inset,
    0 20px 60px rgba(0,0,0,.4);
}

/* ── SECTION ENTRANCE ANIMATION ── */
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim.visible { animation: slideUpFade .65s cubic-bezier(.22,1,.36,1) both; }

/* ── INTERACTIVE HOVER DEPTH ── */
.depth-card {
  transition: transform .32s cubic-bezier(.22,1,.36,1),
              box-shadow .32s cubic-bezier(.22,1,.36,1),
              border-color .32s;
  will-change: transform;
}
.depth-card:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 24px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(123,47,190,.25);
}

