/* HotRocket Development cleaned stylesheet: hotrocket-launch-page.html */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:        #0a0a0f;
      --surface:   #111118;
      --card:      #16161f;
      --border:    #ffffff12;
      --flame:     #ff5c1a;
      --flamesoft: #ff8c50;
      --flameglow: rgba(255,92,26,.18);
      --gold:      #f5c842;
      --text:      #f0ede8;
      --muted:     #8a8898;
      --white:     #ffffff;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav { position:fixed; top:0; left:0; right:0; z-index:500; background:rgba(8,8,14,.95); backdrop-filter:blur(20px); border-bottom:1px solid var(--border); }
    .nav-inner { max-width:1280px; margin:0 auto; display:flex; align-items:center; padding:.95rem 2.5rem; gap:1.5rem; transition:padding .3s; }
    .logo { display:flex; align-items:center; gap:.5rem; text-decoration:none; flex-shrink:0; }
    .logo-rocket { font-size:1.4rem; }
    .logo-type { font-family:'Bebas Neue',sans-serif; font-size:1.35rem; letter-spacing:.07em; color:var(--white); }
    .logo-type em { color:var(--flame); font-style:normal; }
    .nav-list { display:flex; align-items:center; gap:.2rem; list-style:none; flex:1; }
    .nav-item { position:relative; }
    .nav-link { display:flex; align-items:center; gap:.3rem; padding:.55rem .85rem; color:var(--muted); font-size:.86rem; font-weight:500; text-decoration:none; border-radius:7px; white-space:nowrap; transition:color .2s, background .2s; }
    .nav-link:hover, .nav-item:hover > .nav-link { color:var(--white); background:rgba(255,255,255,.05); }
    .nav-link.active { color:var(--flame); }
    .nav-link svg { width:13px; height:13px; flex-shrink:0; transition:transform .25s; }
    .nav-item:hover > .nav-link svg { transform:rotate(180deg); }
    .dropdown { position:absolute; top:calc(100% + .6rem); left:0; background:var(--surface); border:1px solid var(--border-hi); border-radius:14px; box-shadow:0 24px 60px rgba(0,0,0,.5); padding:1rem; min-width:230px; opacity:0; pointer-events:none; transform:translateY(8px); transition:opacity .2s ease, transform .2s ease; }
    .nav-item:hover > .dropdown { opacity:1; pointer-events:all; transform:translateY(0); }
    .mega-dropdown { position:absolute; top:calc(100% + .6rem); left:50%; transform:translateX(-50%) translateY(8px); background:var(--surface); border:1px solid var(--border-hi); border-radius:16px; box-shadow:0 24px 60px rgba(0,0,0,.55); padding:1.6rem; width:680px; opacity:0; pointer-events:none; transition:opacity .2s ease, transform .2s ease; }
    .nav-item:hover > .mega-dropdown { opacity:1; pointer-events:all; transform:translateX(-50%) translateY(0); }
    .dd-link { display:flex; align-items:flex-start; gap:.8rem; padding:.72rem .9rem; border-radius:9px; text-decoration:none; color:var(--text); transition:background .2s; }
    .dd-link:hover { background:rgba(255,92,26,.1); }
    .dd-icon { font-size:1.2rem; flex-shrink:0; margin-top:1px; }
    .dd-title { font-size:.88rem; font-weight:600; color:var(--white); }
    .dd-sub { font-size:.77rem; color:var(--muted); margin-top:.12rem; }
    .mega-label { font-family:'Space Mono',monospace; font-size:.62rem; letter-spacing:.18em; text-transform:uppercase; color:var(--flame); margin-bottom:.9rem; padding:0 .4rem; }
    .mega-grid { display:grid; grid-template-columns:1fr 1fr; gap:.35rem; }
    .mega-divider { height:1px; background:var(--border); margin:1rem 0; }
    .mega-footer { display:flex; justify-content:space-between; align-items:center; padding:.85rem 1rem; background:var(--flameglow); border:1px solid rgba(255,92,26,.2); border-radius:10px; text-decoration:none; transition:background .2s; }
    .mega-footer:hover { background:rgba(255,92,26,.22); }
    .mega-footer-title { font-size:.87rem; font-weight:600; color:var(--white); }
    .mega-footer-sub { font-size:.76rem; color:var(--flamesoft); margin-top:.1rem; }
    .mega-arrow { font-size:1.15rem; color:var(--flame); }
    .nav-right { display:flex; align-items:center; gap:.75rem; flex-shrink:0; margin-left:auto; }
    .btn-ghost { color:var(--muted); font-size:.84rem; font-weight:500; text-decoration:none; padding:.5rem .85rem; border-radius:7px; transition:color .2s, background .2s; white-space:nowrap; }
    .btn-ghost:hover { color:var(--white); background:rgba(255,255,255,.05); }
    .btn-nav { background:var(--flame); color:var(--white); padding:.58rem 1.3rem; border-radius:7px; font-size:.85rem; font-weight:700; text-decoration:none; white-space:nowrap; transition:background .2s, transform .2s; }
    .btn-nav:hover { background:#e0450d; transform:translateY(-1px); }
    .hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:.4rem; }
    .hamburger span { display:block; width:22px; height:2px; background:var(--white); border-radius:2px; transition:transform .3s, opacity .3s; }
    .mobile-menu { display:none; position:fixed; inset:0; z-index:400; background:var(--bg); padding:5rem 2rem 2rem; overflow-y:auto; flex-direction:column; gap:.4rem; }
    .mobile-menu.open { display:flex; }
    .mobile-link { display:block; padding:.85rem 1rem; color:var(--text); text-decoration:none; font-size:.97rem; font-weight:500; border-bottom:1px solid var(--border); }
    .mobile-section-label { font-family:'Space Mono',monospace; font-size:.64rem; letter-spacing:.15em; text-transform:uppercase; color:var(--flame); padding:1.2rem 1rem .35rem; }
    .mobile-cta { background:var(--flame); color:var(--white); display:block; text-align:center; padding:.95rem; border-radius:8px; font-weight:700; text-decoration:none; margin-top:1.5rem; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column; justify-content: center; align-items: center;
      text-align: center;
      padding: 8rem 2rem 5rem;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,92,26,.22) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(245,200,66,.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      background: var(--flameglow);
      border: 1px solid rgba(255,92,26,.35);
      color: var(--flamesoft);
      font-family: 'Space Mono', monospace;
      font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
      padding: .45rem 1rem; border-radius: 999px;
      margin-bottom: 2rem;
      animation: fadeDown .7s ease both;
    }
    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.5rem, 8vw, 7.5rem);
      line-height: .95;
      letter-spacing: .03em;
      color: var(--white);
      max-width: 900px;
      animation: fadeDown .8s .1s ease both;
    }
    .hero h1 .accent { color: var(--flame); }
    .hero-sub {
      margin-top: 1.6rem;
      font-size: clamp(.95rem, 1.5vw, 1.15rem);
      color: var(--muted);
      max-width: 560px;
      line-height: 1.7;
      animation: fadeDown .8s .2s ease both;
    }
    .hero-ctas {
      margin-top: 2.5rem;
      display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
      animation: fadeDown .8s .3s ease both;
    }
    .btn-primary {
      background: var(--flame);
      color: var(--white);
      padding: .85rem 2.2rem;
      border-radius: 8px;
      font-weight: 600; font-size: .95rem;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: .5rem;
      transition: transform .2s, box-shadow .2s, background .2s;
      box-shadow: 0 4px 24px rgba(255,92,26,.3);
    }
    .btn-primary:hover {
      background: #e04a0a;
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(255,92,26,.45);
    }
    .btn-secondary {
      background: transparent;
      color: var(--text);
      padding: .85rem 2.2rem;
      border-radius: 8px;
      border: 1px solid var(--border);
      font-weight: 500; font-size: .95rem;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: .5rem;
      transition: border-color .2s, color .2s;
    }
    .btn-secondary:hover { border-color: var(--flame); color: var(--flame); }
    .hero-stats {
      margin-top: 4rem;
      display: flex; gap: 3rem; flex-wrap: wrap; justify-content: center;
      animation: fadeUp .8s .5s ease both;
    }
    .stat { text-align: center; }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.8rem; color: var(--flame); letter-spacing: .04em;
    }
    .stat-label { font-size: .82rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }

    /* ── SCROLL TICKER ── */
    .ticker-wrap {
      overflow: hidden; background: var(--flame);
      padding: .75rem 0; white-space: nowrap;
    }
    .ticker-inner {
      display: inline-block;
      animation: ticker 28s linear infinite;
    }
    .ticker-inner span {
      font-family: 'Space Mono', monospace;
      font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
      color: var(--white);
      padding: 0 2rem;
    }
    .ticker-inner span::after { content: '•'; margin-left: 2rem; }

    /* ── SECTIONS ── */
    section { padding: 6rem 2rem; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-label {
      font-family: 'Space Mono', monospace;
      font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
      color: var(--flame); margin-bottom: .8rem;
    }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.4rem, 4vw, 3.8rem);
      letter-spacing: .04em;
      color: var(--white);
      line-height: 1.05;
    }
    .section-title .accent { color: var(--flame); }

    /* ── PAIN POINTS ── */
    .pain { background: var(--surface); }
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .pain-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      transition: border-color .3s, transform .3s;
    }
    .pain-card:hover { border-color: rgba(255,92,26,.4); transform: translateY(-4px); }
    .pain-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--flame), transparent);
      opacity: 0; transition: opacity .3s;
    }
    .pain-card:hover::before { opacity: 1; }
    .pain-icon { font-size: 2rem; margin-bottom: 1rem; }
    .pain-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .6rem; }
    .pain-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

    /* ── OUR SYSTEM ── */
    .system-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
      align-items: center; margin-top: 3rem;
    }
    .system-features { display: flex; flex-direction: column; gap: 1.4rem; }
    .feature-item {
      display: flex; gap: 1rem; align-items: flex-start;
      background: var(--card); border: 1px solid var(--border);
      padding: 1.4rem; border-radius: 10px;
      transition: border-color .3s;
    }
    .feature-item:hover { border-color: rgba(255,92,26,.35); }
    .feature-check {
      width: 32px; height: 32px; flex-shrink: 0;
      background: var(--flameglow); border: 1px solid rgba(255,92,26,.4);
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
      color: var(--flame); font-size: 1rem; font-weight: 700;
    }
    .feature-item h4 { font-size: .95rem; font-weight: 600; margin-bottom: .3rem; }
    .feature-item p { font-size: .85rem; color: var(--muted); line-height: 1.6; }
    .system-visual {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2.5rem;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .rocket-display {
      font-size: 5rem; margin-bottom: 1rem;
      display: block;
      animation: rocket-float 3s ease-in-out infinite;
    }
    .system-visual h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem; letter-spacing: .06em; color: var(--white);
    }
    .system-visual p { color: var(--muted); margin-top: .6rem; font-size: .9rem; line-height: 1.6; }
    .guarantee-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(245,200,66,.1); border: 1px solid rgba(245,200,66,.3);
      color: var(--gold); font-size: .82rem; font-weight: 600;
      padding: .55rem 1.1rem; border-radius: 999px; margin-top: 1.5rem;
    }

    /* ── PROCESS ── */
    .process { background: var(--surface); }
    .steps {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 0; margin-top: 3.5rem; position: relative;
    }
    .steps::before {
      content: '';
      position: absolute; top: 2.5rem; left: 12%; right: 12%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--flame), transparent);
    }
    .step { text-align: center; padding: 2rem 1.5rem; position: relative; }
    .step-num {
      width: 52px; height: 52px;
      background: var(--flameglow);
      border: 2px solid var(--flame);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.4rem;
      font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
      color: var(--flame);
      position: relative; z-index: 1;
    }
    .step h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
    .step p { font-size: .87rem; color: var(--muted); line-height: 1.65; }

    /* ── TESTIMONIALS ── */
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem; margin-top: 3rem;
    }
    .tcard {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 12px; padding: 1.8rem;
      transition: border-color .3s, transform .3s;
    }
    .tcard:hover { border-color: rgba(255,92,26,.3); transform: translateY(-3px); }
    .stars { color: var(--gold); font-size: 1rem; margin-bottom: .9rem; letter-spacing: .1em; }
    .tcard p { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
    .tcard p::before { content: '"'; }
    .tcard p::after  { content: '"'; }
    .tclient { display: flex; align-items: center; gap: .75rem; }
    .tclient-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--flame), var(--gold));
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; color: var(--white); font-size: .95rem; flex-shrink: 0;
    }
    .tclient-name { font-weight: 600; font-size: .9rem; }
    .tclient-meta { font-size: .78rem; color: var(--muted); }

    /* ── PRICING ── */
    .pricing { background: var(--surface); }
    .pricing-tabs {
      display: flex; gap: .5rem; background: var(--card);
      border: 1px solid var(--border); border-radius: 10px;
      padding: .4rem; width: fit-content; margin: 2.5rem auto 0;
    }
    .tab-btn {
      padding: .65rem 1.8rem; border-radius: 7px;
      border: none; cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: .88rem; font-weight: 600;
      background: transparent; color: var(--muted);
      transition: all .2s;
    }
    .tab-btn.active {
      background: var(--flame); color: var(--white);
      box-shadow: 0 2px 12px rgba(255,92,26,.35);
    }
    .pricing-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem; margin-top: 2.5rem;
    }
    .pricing-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 16px; padding: 2.2rem;
      position: relative; transition: border-color .3s, transform .3s;
    }
    .pricing-card:hover { transform: translateY(-5px); }
    .pricing-card.featured {
      border-color: var(--flame);
      box-shadow: 0 0 40px rgba(255,92,26,.15);
    }
    .featured-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--flame); color: var(--white);
      font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
      padding: .35rem 1.1rem; border-radius: 999px;
    }
    .plan-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.7rem; letter-spacing: .06em; color: var(--white);
    }
    .plan-tagline { font-size: .85rem; color: var(--muted); margin: .3rem 0 1.4rem; }
    .plan-launch {
      font-size: .78rem; color: var(--muted); margin-bottom: .3rem;
      font-family: 'Space Mono', monospace;
    }
    .plan-price {
      display: flex; align-items: baseline; gap: .3rem;
      margin-bottom: 1.8rem;
    }
    .plan-price .dollar { font-size: 1.3rem; color: var(--flame); font-weight: 700; }
    .plan-price .amount {
      font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem;
      color: var(--white); letter-spacing: .02em; line-height: 1;
    }
    .plan-price .period { font-size: .82rem; color: var(--muted); }
    .plan-features { list-style: none; margin-bottom: 2rem; }
    .plan-features li {
      display: flex; align-items: flex-start; gap: .7rem;
      font-size: .88rem; color: var(--muted);
      padding: .45rem 0; border-bottom: 1px solid var(--border);
    }
    .plan-features li::before {
      content: '→'; color: var(--flame); font-size: .9rem; flex-shrink: 0; margin-top: 1px;
    }
    .plan-cta {
      display: block; text-align: center;
      background: var(--flameglow); border: 1px solid rgba(255,92,26,.35);
      color: var(--flame); font-weight: 600; font-size: .9rem;
      padding: .9rem; border-radius: 8px;
      text-decoration: none; transition: all .2s;
    }
    .plan-cta:hover { background: var(--flame); color: var(--white); }
    .pricing-card.featured .plan-cta {
      background: var(--flame); color: var(--white);
    }
    .pricing-card.featured .plan-cta:hover { background: #e04a0a; }

    /* ── FAQ ── */
    .faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1px; }
    .faq-item {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 10px; margin-bottom: .6rem; overflow: hidden;
    }
    .faq-q {
      width: 100%; text-align: left;
      padding: 1.3rem 1.6rem;
      background: none; border: none; cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: .95rem; font-weight: 600; color: var(--text);
      display: flex; justify-content: space-between; align-items: center;
      gap: 1rem; transition: color .2s;
    }
    .faq-q:hover { color: var(--flame); }
    .faq-arrow { font-size: 1.2rem; color: var(--flame); transition: transform .3s; flex-shrink: 0; }
    .faq-a {
      max-height: 0; overflow: hidden;
      font-size: .88rem; color: var(--muted); line-height: 1.7;
      transition: max-height .4s ease, padding .3s;
      padding: 0 1.6rem;
    }
    .faq-item.open .faq-a { max-height: 300px; padding: 0 1.6rem 1.3rem; }
    .faq-item.open .faq-arrow { transform: rotate(45deg); }

    /* ── CTA BANNER ── */
    .cta-banner {
      background: linear-gradient(135deg, #1a0d07 0%, #0a0a0f 50%, #0f0f1a 100%);
      text-align: center; padding: 7rem 2rem;
      position: relative; overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,92,26,.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-banner h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.8rem, 5vw, 5rem); letter-spacing: .04em;
      color: var(--white); line-height: 1.05;
    }
    .cta-banner h2 .accent { color: var(--flame); }
    .cta-banner p {
      margin: 1.2rem auto; max-width: 500px;
      color: var(--muted); font-size: 1rem; line-height: 1.7;
    }
    .cta-banner .btn-primary { margin-top: .8rem; }

    /* ── FOOTER ── */
    footer {
      background: var(--surface);
      border-top: 1px solid var(--border);
      padding: 4rem 2rem 2rem;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem; max-width: 1100px; margin: 0 auto;
    }
    .footer-brand p { color: var(--muted); font-size: .88rem; line-height: 1.7; margin-top: .9rem; max-width: 280px; }
    .footer-col h4 {
      font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
      color: var(--flame); font-family: 'Space Mono', monospace;
      margin-bottom: 1.1rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
    .footer-col ul a { color: var(--muted); font-size: .88rem; text-decoration: none; transition: color .2s; }
    .footer-col ul a:hover { color: var(--flame); }
    .footer-bottom {
      max-width: 1100px; margin: 3rem auto 0;
      border-top: 1px solid var(--border); padding-top: 1.5rem;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: .8rem;
    }
    .footer-bottom p { font-size: .8rem; color: var(--muted); }
    .footer-bottom a { color: var(--muted); text-decoration: none; }
    .footer-bottom a:hover { color: var(--flame); }

    /* ── ANIMATIONS ── */
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes ticker {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    @keyframes rocket-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    /* ── PRICING TAB PANELS ── */
    .tab-panel { display: none; }
    .tab-panel.active { display: block; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .nav-list, .btn-ghost { display: none; }
      .hamburger { display: flex; }
      .system-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .steps::before { display: none; }
    }
    @media (max-width: 480px) {
      .footer-grid { grid-template-columns: 1fr; }
    }

/* Safety: never hide page content if animation JS fails. */
.reveal{opacity:1!important;transform:none!important;}


/* HotRocket final nav hover stability fix */
.nav-item::after{content:"";position:absolute;left:0;right:0;top:100%;height:16px;}
.nav-item:hover>.dropdown,.nav-item:focus-within>.dropdown{opacity:1;pointer-events:auto;transform:translateY(0);}
.nav-item:hover>.mega-dropdown,.nav-item:focus-within>.mega-dropdown{opacity:1;pointer-events:auto;transform:translateX(-50%) translateY(0);}
.nav-item:focus-within>.nav-link{color:var(--white);background:rgba(255,255,255,.05);}
