@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap');

:root{
  --bg:#070a0f;
  --card:#0f1623;
  --text:#e8eef7;
  --muted:#9aa8ba;
  --line:rgba(255,255,255,.09);

  --primary:#22c55e;
  --primary2:#16a34a;

  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --shadowSoft: 0 10px 30px rgba(0,0,0,.35);
}

/* Ensure the HTML hidden attribute always works even if other CSS resets exist */
[hidden]{display:none !important}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(34,197,94,.14), transparent 60%),
    radial-gradient(800px 520px at 90% 10%, rgba(34,197,94,.10), transparent 55%),
    linear-gradient(180deg, #05070b 0%, var(--bg) 40%, #05070b 100%);
  position:relative;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.22;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(circle at 50% 25%, rgba(0,0,0,1), rgba(0,0,0,.25) 55%, rgba(0,0,0,0) 75%);
          mask-image: radial-gradient(circle at 50% 25%, rgba(0,0,0,1), rgba(0,0,0,.25) 55%, rgba(0,0,0,0) 75%);
}

a{color:inherit;text-decoration:none}
.container{max-width:1120px;margin:0 auto;padding:28px 22px}

.nav{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px 0}
.brand{
  display:flex;align-items:center;gap:10px;
  font-family:"Space Grotesk", Inter, system-ui;
  font-weight:700;letter-spacing:.2px;font-size:18px
}

.logo{
  width:40px;height:40px;border-radius:14px;
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.28);
  box-shadow: 0 18px 45px rgba(34,197,94,.10);
  display:grid;place-items:center;
}
.logo::before{
  content:"";
  width:22px;height:22px;
  background: var(--primary);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%3E%0A%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%279%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%2F%3E%0A%3Cpath%20d%3D%27M16%208l-2%208-8%202%202-8%208-2z%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linejoin%3D%27round%27%2F%3E%0A%3Cpath%20d%3D%27M12%2012l4-4%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%2F%3E%0A%3C%2Fsvg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%3E%0A%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%279%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%2F%3E%0A%3Cpath%20d%3D%27M16%208l-2%208-8%202%202-8%208-2z%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linejoin%3D%27round%27%2F%3E%0A%3Cpath%20d%3D%27M12%2012l4-4%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%2F%3E%0A%3C%2Fsvg%3E");
  -webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;
  -webkit-mask-position:center;mask-position:center;
  -webkit-mask-size:contain;mask-size:contain;
  filter: drop-shadow(0 10px 25px rgba(34,197,94,.25));
}

.navlinks{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.pill{
  padding:10px 12px;border:1px solid var(--line);border-radius:999px;
  background: rgba(255,255,255,.03);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  transition: border-color .2s ease, transform .12s ease, background .2s ease;
  font-size:13px;
}
.pill:hover{border-color:rgba(34,197,94,.35);background:rgba(34,197,94,.06);transform: translateY(-1px)}

.h1{
  font-family:"Space Grotesk", Inter, system-ui;
  font-size:52px;line-height:1.03;margin:0 0 14px;letter-spacing:-.03em
}
@media (max-width: 720px){.h1{font-size:40px}}
.h2{
  font-family:"Space Grotesk", Inter, system-ui;
  font-size:22px;margin:0 0 8px;letter-spacing:-.01em
}
.lead{font-size:18px;line-height:1.6;color:var(--muted);margin:0 0 18px}
.small{color:var(--muted);line-height:1.55;margin:0}
.notice{font-size:13px;color:var(--muted);line-height:1.45}

.hero{padding:44px 0 24px;display:grid;grid-template-columns:1.2fr .8fr;gap:22px;align-items:start}
@media (max-width: 880px){.hero{grid-template-columns:1fr}.navlinks{justify-content:flex-start}}

.kicker{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;
  border:1px solid rgba(34,197,94,.25);
  background: rgba(34,197,94,.06);
  color: var(--text);
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.kicker::before{content:"";width:8px;height:8px;border-radius:999px;background:var(--primary);box-shadow:0 0 0 6px rgba(34,197,94,.10)}

.ctaRow{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
.btn{
  display:inline-flex;align-items:center;gap:10px;padding:12px 14px;border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadowSoft);
  transition:transform .12s ease, border-color .2s ease, background .2s ease;
  font-weight:600;
}
.btn.primary{
  border:1px solid rgba(34,197,94,.35);
  background: linear-gradient(135deg, rgba(34,197,94,.95), rgba(22,163,74,.85));
  box-shadow: 0 20px 55px rgba(34,197,94,.14);
  color:#06100a;
}
.btn:hover{transform: translateY(-1px);border-color:rgba(34,197,94,.32);background: rgba(34,197,94,.07)}
.btn.primary:hover{background: linear-gradient(135deg, rgba(34,197,94,.98), rgba(22,163,74,.90))}

.badge{
  display:inline-flex;align-items:center;padding:4px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  font-size:12px;color:var(--muted);
  background: rgba(0,0,0,.22);
}

.card{
  border:1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.03);
  border-radius:22px;
  padding:18px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.card::after{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(600px 140px at 20% 0%, rgba(34,197,94,.18), transparent 55%);
  opacity:.6;
  pointer-events:none;
}
.card > *{position:relative}
.card:hover{border-color:rgba(34,197,94,.28)}

.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:18px 0}
@media(max-width: 900px){.grid3{grid-template-columns:1fr}}

.hr{height:1px;background:rgba(255,255,255,.08);margin:22px 0}

.code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:13px;padding:14px;border-radius:16px;border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.38);overflow:auto
}

label{display:block;font-size:13px;color:var(--muted);margin:10px 0 6px}
input,select,textarea{
  width:100%;padding:12px 12px;border-radius:14px;border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);color:var(--text);outline:none
}
input:focus,select:focus,textarea:focus{border-color:rgba(34,197,94,.35);box-shadow:0 0 0 6px rgba(34,197,94,.10)}
textarea{min-height:110px;resize:vertical}
.formRow{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media(max-width: 720px){.formRow{grid-template-columns:1fr}}

.roiGrid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media(max-width: 900px){.roiGrid{grid-template-columns:1fr}}
.roiOut{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:12px}
@media(max-width: 720px){.roiOut{grid-template-columns:1fr}}
.roiStat{border:1px solid rgba(255,255,255,.10);background: rgba(255,255,255,.02);border-radius:16px;padding:12px}
.roiStat b{display:block;font-size:12px;color:var(--muted);margin-bottom:6px;font-weight:600}
.roiStat span{font-size:18px;font-weight:700}
.smallcaps{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted)}

/* Hide legacy footer blocks; replaced with modern footer */
.footer{display:none;}

.siteFooter{
  margin-top:28px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.siteFooter .wrap{max-width:1120px;margin:0 auto;padding:56px 22px 28px}
.footerGrid{
  display:grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap:28px;
}
@media(max-width: 980px){.footerGrid{grid-template-columns: 1fr 1fr;}}
@media(max-width: 560px){.footerGrid{grid-template-columns: 1fr;}}

.footerBrand{display:flex;flex-direction:column;gap:14px}
.footerBrand .brandRow{
  display:flex;align-items:center;gap:10px;
  font-family:"Space Grotesk", Inter, system-ui;
  font-weight:700;font-size:18px;
}
.footerBrand p{margin:0;color:var(--muted);max-width:340px;font-size:13px;line-height:1.6}
.socialRow{display:flex;gap:10px;flex-wrap:wrap}
.socialBtn{
  width:38px;height:38px;border-radius:12px;
  display:grid;place-items:center;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  color:var(--muted);
  transition: transform .12s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.socialBtn:hover{transform: translateY(-1px);border-color:rgba(34,197,94,.30);background:rgba(34,197,94,.06);color:var(--text)}

.footerCol h4{
  margin:0 0 12px;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--text);
}
.footerCol a{
  display:block;
  color:var(--muted);
  font-size:13px;
  padding:6px 0;
}
.footerCol a:hover{color:var(--text)}

.footerBottom{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:12px;
}

.positioning{display:none;}

/* ================================
   Tradedly AI Console (Demo)
   ================================ */

.aiFab{
  position:fixed;right:18px;bottom:18px;z-index:9999;
  display:flex;align-items:center;gap:10px;
  padding:12px 14px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(10,12,16,.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color:var(--text);
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  cursor:pointer;
  transition: transform .12s ease, border-color .2s ease, background .2s ease;
}
.aiFab:hover{transform: translateY(-1px);border-color: rgba(34,197,94,.35);background: rgba(10,12,16,.86)}
.aiFabDot{width:10px;height:10px;border-radius:50%;background: rgba(34,197,94,1);box-shadow:0 0 18px rgba(34,197,94,.65)}
.aiFabLabel{font-size:12px;letter-spacing:.02em}

.aiBackdrop{
  position:fixed;inset:0;z-index:9998;
  background: rgba(0,0,0,.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

/* Prevent background scroll when console is open (esp. on mobile) */
.aiConsoleOpen body{overflow:hidden}

.aiPanel{
  position:fixed;right:18px;bottom:74px;z-index:9999;
  width:min(420px, calc(100vw - 36px));
  max-height:min(640px, calc(100vh - 120px));
  display:flex;flex-direction:column;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(10,12,16,.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 70px rgba(0,0,0,.55);
  overflow:hidden;
}
.aiPanel.open{animation: aiPop .14s ease-out}
@keyframes aiPop{from{transform:translateY(6px);opacity:.7}to{transform:translateY(0);opacity:1}}

.aiPanelHeader{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:12px 12px 10px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.aiPanelTitle{display:flex;align-items:center;gap:10px}
.aiMark{
  width:34px;height:34px;border-radius:12px;
  background: rgba(34,197,94,.10);
  border:1px solid rgba(34,197,94,.26);
  box-shadow: 0 0 26px rgba(34,197,94,.14);
}
.aiMark::before{
  content:"";
  width:18px;height:18px;display:block;margin:auto;
  background: var(--primary);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%3E%0A%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%279%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%2F%3E%0A%3Cpath%20d%3D%27M16%208l-2%208-8%202%202-8%208-2z%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linejoin%3D%27round%27%2F%3E%0A%3Cpath%20d%3D%27M12%2012l4-4%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%2F%3E%0A%3C%2Fsvg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%3E%0A%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%279%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%2F%3E%0A%3Cpath%20d%3D%27M16%208l-2%208-8%202%202-8%208-2z%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linejoin%3D%27round%27%2F%3E%0A%3Cpath%20d%3D%27M12%2012l4-4%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%2F%3E%0A%3C%2Fsvg%3E");
  -webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;
  -webkit-mask-position:center;mask-position:center;
  -webkit-mask-size:contain;mask-size:contain;
  filter: drop-shadow(0 8px 18px rgba(34,197,94,.22));
}
.aiTitle{font-weight:700;letter-spacing:.02em}
.aiSub{color:var(--muted);font-size:12px;margin-top:1px}
.aiPanelActions{display:flex;gap:8px}
.aiIconBtn{
  width:34px;height:34px;border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  cursor:pointer;
}
.aiIconBtn:hover{border-color: rgba(34,197,94,.30);color:var(--text);background: rgba(34,197,94,.06)}

.aiQuick{display:flex;gap:8px;flex-wrap:wrap;padding:10px 12px 0}

/* Demo status + timeline */
.aiStatusBar{display:flex;flex-wrap:wrap;gap:10px;align-items:center;justify-content:space-between;padding:10px 12px;margin-top:8px}
.aiStatusLeft{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.aiHeaderChips{display:flex;gap:8px;align-items:center;flex-wrap:wrap}
.aiHChip{
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  color:var(--muted);
}
.aiHChip strong{color:var(--text)}
.aiStatusPill{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  color:var(--text);
}
.aiStatusPill.isIdle{color:var(--muted)}
.aiStatusPill.isOk{border-color: rgba(34,197,94,.30);background: rgba(34,197,94,.10)}
.aiStatusPill.isWarn{border-color: rgba(34,197,94,.28);background: rgba(34,197,94,.06)}

.aiTimeline{display:flex;gap:8px;align-items:center;flex-wrap:wrap}
.aiStep{display:flex;gap:6px;align-items:center;font-size:11px;color:var(--muted)}
.aiDot{width:8px;height:8px;border-radius:999px;border:1px solid rgba(255,255,255,.14);background: rgba(255,255,255,.04)}
.aiStep.isDone{color:var(--text)}
.aiStep.isDone .aiDot{border-color: rgba(34,197,94,.45);background: rgba(34,197,94,.25)}
.aiStep.isActive{color:var(--text)}
.aiStep.isActive .aiDot{border-color: rgba(34,197,94,.60);background: rgba(34,197,94,.35);box-shadow:0 0 0 6px rgba(34,197,94,.08)}
.aiChip{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  color:var(--text);
  cursor:pointer;
}
.aiChip:hover{border-color: rgba(34,197,94,.30);background: rgba(34,197,94,.06)}

.aiLog{padding:12px;display:flex;flex-direction:column;gap:10px;overflow:auto;min-height:220px}
.aiMsgMeta{font-size:11px;color:var(--muted);margin:0 0 6px}
.aiMsg.user .aiMsgMeta{text-align:right}
.aiBubble{
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  color:var(--text);
  line-height:1.55;
}
.aiMsg.user .aiBubble{
  margin-left:auto;
  border-color: rgba(34,197,94,.22);
  background: rgba(34,197,94,.06);
}
.aiJson{
  margin:0;
  padding:10px;
  border-radius:12px;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.08);
  overflow:auto;
  font-size:12px;
}
.aiMuted{color:var(--muted)}

.aiForm{display:flex;gap:10px;padding:10px 12px 12px;border-top:1px solid rgba(255,255,255,.08)}
.aiInput{
  flex:1;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  color:var(--text);
  outline:none;
}
.aiInput:focus{border-color: rgba(34,197,94,.35);box-shadow:0 0 0 4px rgba(34,197,94,.10)}
.aiSend{
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(34,197,94,.30);
  background: rgba(34,197,94,.10);
  color:var(--text);
  cursor:pointer;
  white-space:nowrap;
}
.aiSend:hover{background: rgba(34,197,94,.16);border-color: rgba(34,197,94,.42)}

.aiDisclaimer{padding:0 12px 12px;color:var(--muted);font-size:11px;line-height:1.45}

/* Embedded block */
.aiEmbed{margin-top:18px}
.aiEmbedMobile{display:none;margin-top:14px}
.aiEmbedOpenBtn{
  width:100%;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(10,12,16,.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color:var(--text);
  font-weight:600;
  cursor:pointer;
}
.aiEmbedOpenBtn:hover{border-color: rgba(34,197,94,.35);background: rgba(10,12,16,.86)}
.aiEmbedMobileNote{margin-top:8px;color:var(--muted);font-size:12px;line-height:1.45}
.aiEmbedHeader{display:flex;flex-wrap:wrap;gap:12px;justify-content:space-between;align-items:flex-start;margin-bottom:10px}
.aiEmbedTitle{display:flex;gap:10px;align-items:center}
.aiEmbedBadges{display:flex;gap:8px;flex-wrap:wrap}
.aiPill{font-size:12px;padding:6px 10px;border-radius:999px;border:1px solid rgba(255,255,255,.10);background: rgba(255,255,255,.02);color:var(--muted)}

@media (max-width: 520px){
  .aiFabLabel{display:none}
  .aiFab{right:12px;bottom:12px}
  .aiPanel{
    left:12px;right:12px;bottom:12px;
    width:auto;
    max-height:70vh;
    border-radius:18px;
  }

  /* On small screens hide the embedded console to avoid blocking the page.
     Users can open the floating console via the button above. */
  .aiEmbed{display:none}
  .aiEmbedMobile{display:block}
}

/* ================================
   Mobile Nav (Hamburger)
   ================================ */
.navToggle{display:none;align-items:center;justify-content:center;gap:8px;
  width:42px;height:42px;border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  cursor:pointer;
}
.navBurger{display:inline-flex;flex-direction:column;gap:4px}
.navBurger span{width:18px;height:2px;border-radius:99px;background: rgba(255,255,255,.85)}

@media (max-width: 720px){
  .nav{position:relative}
  .navToggle{display:flex}
  .navlinks{
    display:none;
    position:absolute;
    top:62px;
    left:0;
    right:0;
    padding:12px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.10);
    background: rgba(10,12,16,.88);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 70px rgba(0,0,0,.55);
    flex-direction:column;
    gap:10px;
    z-index:50;
  }
  .nav.navOpen .navlinks{display:flex}
  .pill{width:100%;text-align:left;justify-content:flex-start}
}
