/* Helium Locator — Canonical UI Skin v2.6
   Goal: one source of truth for WP pages + consistent “no-gutter” mobile.
   Important: Applies the hard WP/Astra overrides ONLY when body.hl-page is present.
*/

/* =========================
   TOKENS
   ========================= */
:root{
  --bg:#0b0f14; --bg2:#0c121b; --bg3:#0f161f;
  --card:#121923;
  --ink:#e8f0ff; --muted:#a9b7c7;
  --accent:#6ad1ff; --line:#1f2a38;
  --accentGlow:rgba(106,209,255,.35);
  --accent-2:#37e0c2; --accent-2-glow: rgba(55,224,194,.35);

  --hl-max: 1320px;     /* less “mid skinny” */
  --hl-pad: 16px;
  --hl-pad-lg: 24px;
}

@media (max-width: 700px){
  :root{
    --hl-pad: 10px;      /* stop squeezing mobile */
    --hl-pad-lg: 14px;
  }
}

@media(prefers-color-scheme:light){
  :root{ color-scheme:dark light; }
}

/* =========================
   WP/Astra GLUE (ONLY HL pages)
   ========================= */

/* Give HL pages a consistent dark canvas */
body.hl-page{
  background:linear-gradient(180deg,var(--bg) 0%, var(--bg2) 100%) !important;
  color:var(--ink) !important;
}

/* Astra/WP containers: kill side gutters that cause the “tiny useless padding” */
body.hl-page #page,
body.hl-page #content,
body.hl-page .site,
body.hl-page .site-content,
body.hl-page .content-area,
body.hl-page .site-main,
body.hl-page article,
body.hl-page .ast-container,
body.hl-page .ast-container-fluid,
body.hl-page .entry-content{
  width:100% !important;
  max-width:none !important;
  margin-left:0 !important;
  margin-right:0 !important;
  padding-left:0 !important;
  padding-right:0 !important;
}

/* Gutenberg wrappers that love “constrained” layouts */
body.hl-page .is-layout-constrained,
body.hl-page .wp-block-group,
body.hl-page .wp-block-group__inner-container,
body.hl-page .wp-block-columns,
body.hl-page .wp-block-column{
  max-width:none !important;
}

/* Prevent 1–2px horizontal scroll / subpixel gutter */
html, body{
  overflow-x: clip;
}

/* Hide WP title/header on HL pages */
body.hl-page .entry-header,
body.hl-page .entry-title,
body.hl-page h1.entry-title,
body.hl-page .ast-page-title{
  display:none !important;
}

/* If an HL page has an iframe and someone forgot the shell, keep it sane */
body.hl-page .entry-content iframe[title*="Helium Locator"],
body.hl-page .entry-content iframe[src*="/helium/"]{
  display:block;
  width:100% !important;
  min-width:100% !important;
  height:80vh !important;
  min-height:70vh !important;
  border:0 !important;
  background:#0e131b;
  color-scheme:dark;
}


/* =========================
   HL BASE
   ========================= */
a{ color:inherit; }

.hl-shell, .hl-shell *{ box-sizing:border-box; }

/* Do NOT use 100vw breakout on the whole page. Astra is already forced full width above. */
.hl-fullbleed{
  width:100%;
  margin:0;
  overflow-x: clip;
}

/* Core centered shell */
.hl-shell{
  width:100%;
  max-width:var(--hl-max);
  margin:0 auto;
  padding:24px var(--hl-pad) 0 var(--hl-pad);
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial;
}
@media(min-width:1024px){
  .hl-shell{ padding-left:var(--hl-pad-lg); padding-right:var(--hl-pad-lg); }
}

.hl-inner{ width:100%; margin:0 auto; }

/* Blocks */
.hl-wrap{
  border-radius:16px;
  background:linear-gradient(180deg,var(--bg) 0%, var(--bg2) 100%);
  padding:24px var(--hl-pad);
  border:1px solid var(--line);
}
@media(min-width:1024px){
  .hl-wrap{ padding-left:var(--hl-pad-lg); padding-right:var(--hl-pad-lg); }
}

.hl-body-wrap{
  border-radius:16px;
  background:linear-gradient(180deg,var(--bg2) 0%, var(--bg3) 100%);
  border:1px solid var(--line);
  padding:24px var(--hl-pad) 32px var(--hl-pad);
  margin-top:24px;
}
@media(min-width:1024px){
  .hl-body-wrap{ padding-left:var(--hl-pad-lg); padding-right:var(--hl-pad-lg); }
}

.hl-wrap-bg{
  border-radius:16px;
  background:linear-gradient(180deg,var(--bg2) 0%, var(--bg3) 100%);
  border:1px solid var(--line);
  padding:16px;
  margin-top:16px;
}
@media(min-width:1024px){
  .hl-wrap-bg{ padding:24px; }
}

/* Typography */
.hl-logo{
  font-weight:800;
  font-size:22px;
  letter-spacing:.3px;
  text-decoration:none;
  color:var(--ink);
  display:inline-flex;
  gap:8px;
  align-items:center;
}
.hl-head{ margin-top:12px; max-width:900px; }
.hl-head h1{
  margin:8px 0 10px 0;
  font-size:clamp(24px,3.6vw,34px);
  line-height:1.12;
  color:var(--ink);
}
.hl-head p{ margin:0; color:var(--muted); max-width:75ch; font-size:15px; line-height:1.5; }
.hl-note{ color:var(--muted); font-size:12px; margin-top:8px; }

.hl-section{ margin-top:22px; }
.hl-section:first-of-type{ margin-top:0; }
.hl-section h1,.hl-section h2,.hl-section h3{ color:var(--ink) !important; margin:.3rem 0 .5rem; }
.hl-section h2{ font-size:22px; margin:0 0 8px 0; }
.hl-small{ font-size:13px; color:var(--muted) !important; line-height:1.5; }

/* Ensure theme can’t turn HL text dark inside HL containers */
.hl-shell, .hl-body-wrap, .hl-wrap-bg, .hl-live-block{ color:var(--ink); }
.hl-shell p, .hl-shell li,
.hl-body-wrap p, .hl-body-wrap li,
.hl-wrap-bg p, .hl-wrap-bg li,
.hl-live-block p, .hl-live-block li{ color:var(--ink); }


/* Buttons */
.hl-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }
.hl-btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
  border:1px solid var(--line);
  font-size:15px;
  line-height:1.2;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease, border-color .12s ease;
}
.hl-btn.primary{
  background:var(--accent);
  color:#001018 !important;
  border-color:transparent;
  box-shadow:0 8px 26px var(--accentGlow), inset 0 -1px 0 rgba(0,0,0,.15);
}
.hl-btn.primary:hover{ transform:translateY(-1px); box-shadow:0 12px 34px rgba(106,209,255,.42); }
.hl-btn.ghost{ background:transparent; color:var(--ink); }
.hl-btn.ghost:hover{
  background:var(--accent);
  color:#001018 !important;
  border-color:var(--accent);
  box-shadow:0 10px 26px var(--accentGlow);
}

/* Cards + grids */
.hl-grid{ display:grid; gap:12px; margin-top:14px; }
@media(min-width:900px){ .hl-grid.cols-3{ grid-template-columns:repeat(3,1fr); } }

.hl-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
}
.hl-card h3{ margin:0 0 6px 0; font-size:18px; color:var(--ink); }
.hl-card p{ margin:0; color:var(--muted); font-size:14px; line-height:1.5; }

/* Two-up layout (DIY vs Decor page) */
.hl-two-up{
  display:grid;
  gap:12px;
}
@media (min-width: 900px){
  .hl-two-up{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Micro-button inline links */
.hl-chip-link{
  display:inline-block;
  padding:4px 8px;
  border:1px solid var(--accent);
  border-radius:6px;
  font-size:13px;
  color:var(--accent);
  text-decoration:none;
  margin:0 3px;
  line-height:1.2;
  font-weight:600;
  background:rgba(106,209,255,0.06);
  transition:all .15s ease;
}

.hl-chip-link:hover{
  background:var(--accent);
  color:#001018;
  border-color:var(--accent);
  box-shadow:0 0 12px var(--accentGlow);
}

/* Checklist spacing */
.hl-checklist{
  margin:8px 0 0;
  padding-left:18px;
}
.hl-checklist li{
  margin:4px 0;
}

/* Chips */
.state-chip{
  display:inline-block;
  text-align:center;
  text-decoration:none;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  font-weight:700;
  letter-spacing:.3px;
  color:var(--ink);
  background:#0e131b;
  transition:all .15s ease;
  font-size:14px;
  line-height:1.2;
}
.state-chip:hover{
  transform:translateY(-1px);
  box-shadow:0 2px 8px rgba(0,0,0,.4);
  background:var(--accent);
  color:#001018;
  border-color:var(--accent);
}

.state-chip-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }
.chip-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); gap:10px; }

.state-chip-primary{
  background:var(--accent);
  color:#001018;
  border-color:var(--accent);
  box-shadow:0 4px 14px var(--accentGlow);
}

.state-chip-primary:hover{
  background:var(--accent);
  color:#001018;
  border-color:var(--accent);
  box-shadow:0 6px 18px var(--accentGlow);
}


/* Denser chips on phones (reduce the endless scroll) */
@media (max-width: 620px){
  .chip-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); gap:8px; }
  .state-chip-row{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:8px; }
  .state-chip{ width:100%; font-size:13px; padding:10px 10px; line-height:1.15; }
}
@media (max-width: 420px){
  .chip-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .state-chip-row{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}

/* State jump select */
.state-jump-select{
  -webkit-appearance:none; appearance:none;
  background:#0e131b !important;
  color:var(--ink) !important;
  border:1px solid var(--line) !important;
  border-radius:8px;
  padding:10px 12px;
}
.state-jump-select:focus{
  outline:none;
  border-color:var(--accent) !important;
  box-shadow:0 0 0 3px var(--accentGlow);
}
.state-jump-select option{ color:var(--ink); background:#0e131b; }

/* HERO layouts */
.hl-hero-grid,
.hl-state-hero{
  display:flex;
  flex-direction:column;
  gap:16px;
  align-items:flex-start;
}
@media(min-width:900px){
  .hl-hero-grid,
  .hl-state-hero{
    flex-direction:row;
    align-items:stretch;
    justify-content:space-between;
  }
}
/* inside WP, go side-by-side sooner */
@media(min-width:760px){
  body.hl-page .hl-hero-grid,
  body.hl-page .hl-state-hero{
    flex-direction:row;
    align-items:stretch;
    justify-content:space-between;
  }
}

.hl-hero-main,
.hl-state-hero-main{ flex:1 1 58%; }

.hl-hero-art,
.hl-state-hero-art{
  flex:1 1 42%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:12px;
  width:100%;
}
@media(min-width:900px){
  .hl-hero-art,
  .hl-state-hero-art{ margin-top:0; }
}

.hl-hero-art-link{ display:block; width:100%; }
.hl-hero-art-link img,
.hl-state-hero-art img{
  width:100%;
  height:auto;
  border-radius:16px;
  border:1px solid var(--line);
  background:#05070b;
  object-fit:contain;
  padding:6px;
  box-shadow:0 10px 30px rgba(0,0,0,.5);
  display:block;
  transition:transform .12s ease, box-shadow .12s ease;
}

/* stacked: keep image chill */
.hl-hero-art-link img,
.hl-state-hero-art img{
  max-width:560px;
  margin-left:auto;
  margin-right:auto;
}
/* side-by-side: fill column */
@media(min-width:760px){
  body.hl-page .hl-hero-art-link img,
  body.hl-page .hl-state-hero-art img{
    max-width:100%;
    margin:0;
  }
}

/* Map CTA */
.hl-map-cta{
  margin-top:16px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#0e131b;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  justify-content:space-between;
}
.hl-map-cta p{ margin:0; font-size:14px; color:var(--muted) !important; }
.hl-map-cta-actions{ display:flex; flex-wrap:wrap; gap:8px; }

/* LIVE DIRECTORY
   Desktop: stays in shell and looks classy.
   Mobile: full-bleed so your app’s own padding isn’t double-padded.
*/
.hl-live-block{
  margin:24px auto 48px auto;
  border-radius:16px;
  background:linear-gradient(180deg,var(--bg2) 0%, var(--bg3) 100%);
  border:1px solid var(--line);
  color:var(--ink);
  padding:24px var(--hl-pad) 0 var(--hl-pad);
}
@media(min-width:1024px){
  .hl-live-block{ padding-left:var(--hl-pad-lg); padding-right:var(--hl-pad-lg); }
}
.hl-live-head{ max-width:900px; }
.hl-live-head h2{ margin:0 0 12px 0; font-size:22px; line-height:1.2; font-weight:600; color:var(--ink); }
.hl-live-head p{ margin:0 0 16px 0; color:var(--muted) !important; font-size:14px; line-height:1.4; max-width:70ch; }

/* Mobile full-bleed for the live block */
@media (max-width: 900px){
  body.hl-page .hl-live-block{
    width:100vw !important;
    margin-left:calc(50% - 50vw) !important;
    margin-right:calc(50% - 50vw) !important;
    border-left:0 !important;
    border-right:0 !important;
    border-radius:0 !important;
    padding-left:0 !important;
    padding-right:0 !important;
  }
  body.hl-page .hl-live-block > .hl-live-head,
  body.hl-page .hl-live-block > .hl-map-cta{
    margin-left:var(--hl-pad) !important;
    margin-right:var(--hl-pad) !important;
  }
}

/* Iframe shell: always flush inside the live-block */
.hl-iframe-shell{
  background:#0e131b;
  margin-top:12px;
  border-top:1px solid var(--line);
  position:relative;
  width:100%;
  min-height:80vh;
  overflow:hidden;
}
@media(min-width:1024px){
  .hl-iframe-shell{
    border:1px solid var(--line);
    border-radius:14px;
  }
}
.hl-iframe-shell iframe{
  display:block;
  width:100% !important;
  min-width:100% !important;
  border:0 !important;
  height:80vh !important;
  min-height:80vh !important;
  background:#0e131b;
  color-scheme:dark;
}
@media(min-width:1024px){ .hl-iframe-shell iframe{ border-radius:12px; } }
@media(min-width:1280px){ .hl-iframe-shell iframe{ height:85vh !important; min-height:85vh !important; } }

/* FAQ */
details.hl-faq{ background:#0e131b; border:1px solid var(--line); border-radius:10px; padding:10px; }
details.hl-faq + details.hl-faq{ margin-top:8px; }
details.hl-faq summary{ cursor:pointer; font-weight:600; color:var(--ink); font-size:15px; line-height:1.3; outline:none; }
.hl-faq-text{ margin-top:6px; font-size:13px; color:var(--muted) !important; line-height:1.4; }

/* Accordions (state pages) */
.hl-accord details{ border:1px solid var(--line); border-radius:12px; margin:10px 0; background:#0e131b; }
.hl-accord summary{ cursor:pointer; padding:12px 14px; font-weight:800; list-style:none}
.hl-accord summary::-webkit-details-marker{ display:none; }
.hl-accord .hl-faq-text{ padding:0 14px 12px 14px; color:var(--muted) !important; }

/* Footer */
.hl-footer{
  margin-top:28px;
  font-size:12px;
  color:var(--muted) !important;
  text-align:left;
  line-height:1.4;
}

.hl-footer a{
  color:var(--accent);
  text-decoration:none;
}

.hl-footer a:hover{
  text-decoration:underline;
}

.site-footer-nav{
  display:flex;
  gap:.5rem;
  flex-wrap:wrap;
  justify-content:flex-start;
  font-size:14px;
  opacity:.9;
}

.site-footer-nav a{
  color:var(--accent);
}

.site-footer-nav span{
  color:var(--muted) !important;
}


/* RankMath breadcrumbs (if present) */
.rm-breadcrumbs { margin:8px 0 12px; font-size:14px; opacity:.9 }
.rm-breadcrumbs a:hover { text-decoration:underline }
/* ==========================================
   HL — Mobile Full-Bleed for ALL main blocks
   Makes the whole page match the app section
========================================== */
@media (max-width: 900px){
  /* shell itself shouldn't add any extra gutters */
  body.hl-page .hl-shell{
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* make the main “card blocks” full-width like the live block */
  body.hl-page .hl-wrap,
  body.hl-page .hl-body-wrap,
  body.hl-page .hl-wrap-bg{
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;

    /* keep readable padding inside */
    padding-left: var(--hl-pad) !important;
    padding-right: var(--hl-pad) !important;

    /* kill the side borders that look weird at the viewport edge */
    border-left: 0 !important;
    border-right: 0 !important;

    /* optional: full-bleed usually looks better flat on mobile */
    border-radius: 0 !important;
  }
}
/* Meta / brag text */
.hl-meta{
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

.hl-meta-link{
  text-decoration: none;
}

.hl-meta-link:hover,
.hl-meta-link:focus{
  text-decoration: underline;
}

/* Guides list block */
.hl-guides{
  margin-top:24px;
}

.hl-guides-list{
  list-style:none;
  margin:12px 0 0;
  padding:0;
}

.hl-guides-list li{
  margin-bottom:12px;
  padding:10px 12px;
  border-radius:10px;
  background:#0e131b;
  border:1px solid var(--line);
}

.hl-guides-list li strong{
  font-size:14px;
}

.hl-guide-actions{
  margin-top:8px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}


/* HL map — go truly edge-to-edge on small screens */
@media (max-width: 900px){
  body.hl-map .hl-shell{
    max-width: 100vw !important;
    width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.hl-map .hl-body-wrap{
    margin: 0 !important;
    border-radius: 0 !important;
  }
}
/* Homepage: collapsible "All states" chips */
.state-chips-wrapper{
  margin-top:12px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#0e131b;
  overflow:hidden;
}

.state-chips-summary{
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  font-weight:800;
  list-style:none;
}
.state-chips-summary::-webkit-details-marker{ display:none; }

.state-chips-cta{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(106,209,255,.45);
  background:rgba(106,209,255,.12);
  color:var(--accent);
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
}

.state-chips-wrapper[open] .state-chips-cta{
  background:var(--accent);
  color:#001018;
  border-color:var(--accent);
  box-shadow:0 10px 28px var(--accentGlow);
}

/* Make the state code grid look intentional */
.state-chips-wrapper .states-grid{
  padding:12px 12px 14px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(64px, 1fr));
  gap:8px;
}
/* Static pages inside WP themes: enforce HL colors */
.hl-fullbleed{ color: var(--ink); }
.hl-fullbleed h1,
.hl-fullbleed h2,
.hl-fullbleed h3{ color: var(--ink) !important; }
.hl-fullbleed p,
.hl-fullbleed .hl-small{ color: var(--muted); }

/* ===========================================================
   HL — Sitewide Polish Layer (append-only)
   Drop this at the END of hl.css so it overrides earlier styles.
   Goal: “alive” lighting + card sheen + richer UI feel.
   =========================================================== */

:root{
  /* Optional: if you ever upload a shared background image */
  /* --hl-hero-bg: url('/assets/helium/img/site-bg.png'); */

  --hl-polish-card-border: rgba(255,255,255,.10);
  --hl-polish-glow-a: rgba(106,209,255,.12);  /* a touch stronger blue */
  --hl-polish-glow-b: rgba(106,209,255,.06);  /* make “b” blue too */
}

/* Add lighting to the whole canvas (WP pages + static pages) */
body.hl-page{
  background:
    radial-gradient(900px 420px at 12% 8%, var(--hl-polish-glow-b), transparent 60%),
    radial-gradient(900px 520px at 92% 10%, var(--hl-polish-glow-a), transparent 58%),
    linear-gradient(180deg,var(--bg) 0%, var(--bg2) 55%, var(--bg3) 100%) !important;
}

/* Static pages (or anything using hl-fullbleed) also get the vibe */
.hl-fullbleed{
  background:
    radial-gradient(900px 420px at 12% 8%, var(--hl-polish-glow-b), transparent 60%),
    radial-gradient(900px 520px at 92% 10%, var(--hl-polish-glow-a), transparent 58%),
    linear-gradient(180deg,var(--bg) 0%, var(--bg2) 55%, var(--bg3) 100%);
}

/* ==========================================
   Main blocks: upgrade the “panel” feel
   ========================================== */
.hl-wrap{
  position: relative;
  border-radius: 22px;
  overflow: hidden;

  background:
    linear-gradient(180deg, rgba(7,10,18,.62), rgba(7,10,18,.82)),
    var(--hl-hero-bg, none);
  background-position: center;
  background-size: cover;

  border-color: rgba(255,255,255,.10);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.hl-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 240px at 18% 0%, rgba(106,209,255,.14), transparent 60%),
    radial-gradient(900px 280px at 82% 18%, rgba(106,209,255,.08), transparent 60%),
    radial-gradient(900px 320px at 50% 120%, rgba(106,209,255,.08), transparent 55%);
  opacity:.95;
}

/* Keep block content above overlays */
.hl-wrap > *{ position: relative; }

/* ==========================================
   Cards: sheen + hover lift (sitewide)
   ========================================== */
.hl-card{
  position: relative;
  overflow: hidden;
  border-color: var(--hl-polish-card-border);
  box-shadow: 0 12px 34px rgba(0,0,0,.38);
}

.hl-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(900px 240px at 20% 0%, rgba(106,209,255,.12), transparent 60%),
    radial-gradient(900px 280px at 80% 20%, rgba(55,224,194,.10), transparent 60%);
  opacity:.9;
}

.hl-card > *{ position: relative; }

@media (hover:hover){
  .hl-card:hover{
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.16);
    box-shadow:
      0 18px 46px rgba(0,0,0,.46),
      0 0 28px rgba(106,209,255,.10);
  }
}
@media (prefers-reduced-motion: no-preference){
  .hl-card{ transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
}

/* ==========================================
   “Guides / tools” and any wrap-bg sections
   ========================================== */
.hl-wrap-bg{
  position: relative;
  border-radius: 18px;
  background:
    radial-gradient(800px 240px at 15% 10%, rgba(55,224,194,.14), transparent 60%),
    radial-gradient(700px 220px at 80% 15%, rgba(106,209,255,.12), transparent 62%),
    radial-gradient(900px 300px at 50% 120%, rgba(66,255,120,.07), transparent 55%),
    linear-gradient(180deg, rgba(9,16,24,.94), rgba(9,16,24,.86));
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* ==========================================
   Buttons: richer primary hover everywhere
   ========================================== */
.hl-btn{ text-decoration:none !important; }

.hl-btn.primary{
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
@media (hover:hover){
  .hl-btn.primary:hover{
    transform: translateY(-1px);
    box-shadow:
      0 14px 34px rgba(0,0,0,.50),
      0 0 0 1px rgba(106,209,255,.28),
      0 0 26px rgba(106,209,255,.20),
      0 0 18px rgba(55,224,194,.10);
  }
}
@media (prefers-reduced-motion: no-preference){
  .hl-btn.primary{ transition: box-shadow .18s ease, transform .18s ease; }
}

