
:root{
  --gold:#E1D6B7; --gold-hot:#FFFDF4; --gold-bright:#F3EBD3; --ink:#0a0800;
  --text:#F4F1E9; --muted:#9A968C; --soft:rgba(244,241,233,.65);
  --fd:"Cormorant Garamond",Georgia,serif; --fu:"Barlow Condensed",sans-serif;
  --fb:Inter,system-ui,sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:
    radial-gradient(1200px 640px at 80% -10%, rgba(225,214,183,.12), transparent 55%),
    radial-gradient(900px 500px at 10% 30%, rgba(225,214,183,.05), transparent 55%),
    #070605;
  color:var(--text); font-family:var(--fb); font-size:16px; line-height:1.6;
  -webkit-font-smoothing:antialiased; min-height:100vh;
}
a{color:inherit;text-decoration:none}
.wrap{max-width:1100px;margin:0 auto;padding:0 24px}
nav{
  position:sticky;top:0;z-index:50;height:64px;
  display:flex;align-items:center;justify-content:space-between;padding:0 3.5%;
  background:rgba(8,7,6,.96); backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,248,232,.08);
}
.nav-logo{
  font-family:Cinzel,serif; font-weight:600; font-size:13px; letter-spacing:.14em; text-transform:uppercase;
  background:linear-gradient(180deg,#FFFBEE,#F3E7C8 55%,#D9C89E);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
  display:flex; align-items:center; gap:10px;
}
.nav-logo img{width:28px;height:28px;-webkit-text-fill-color:initial}
.nav-links{display:flex;gap:16px;align-items:center;list-style:none;flex-wrap:wrap}
.nav-links a{font-size:13px;color:var(--muted);font-weight:500}
.nav-links a:hover{color:var(--text)}
.btn-gold{
  font-size:13px;font-weight:700;padding:9px 16px;border-radius:10px;border:none;cursor:pointer;
  background:linear-gradient(135deg,#FFFDF4,#E1D6B7); color:var(--ink);
  box-shadow:0 4px 18px rgba(225,214,183,.28); display:inline-block;
}
.btn-ghost{
  font-size:13px;font-weight:500;padding:9px 14px;border-radius:10px;cursor:pointer;
  border:1px solid rgba(225,214,183,.28); background:transparent; color:var(--soft); display:inline-block;
}
.hero{padding:48px 0 20px}
.crumbs{font-size:12px;color:var(--muted);margin-bottom:16px}
.crumbs a{color:rgba(225,214,183,.75)}
.kicker{
  font-family:var(--fu); font-size:11px; font-weight:800; letter-spacing:.2em; text-transform:uppercase;
  color:rgba(225,214,183,.72); margin-bottom:12px;
}
h1{
  font-family:var(--fd); font-weight:700; font-size:clamp(34px,5vw,52px); line-height:1.08;
  margin-bottom:14px;
  background:linear-gradient(180deg,#FFFFFA 0%,#F6EED6 40%,#E1D6B7 62%,#F2E9CE 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent; -webkit-text-fill-color:transparent;
}
.lede{font-size:17px;color:var(--soft);max-width:52ch;margin-bottom:24px}
.actions{display:flex;gap:12px;flex-wrap:wrap;margin:18px 0 8px}
.pill{
  display:inline-flex; align-items:center; gap:6px;
  font-family:var(--fu); font-size:10px; font-weight:800; letter-spacing:.14em; text-transform:uppercase;
  padding:5px 10px; border-radius:999px;
  color:var(--ink); background:linear-gradient(135deg,#FFFDF4,#E1D6B7);
}
.pill.ghost{
  color:rgba(225,214,183,.85); background:rgba(225,214,183,.08);
  border:1px solid rgba(225,214,183,.3);
}
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:14px;margin:20px 0 36px}
.card{
  position:relative; overflow:hidden; border-radius:18px; padding:22px 20px;
  background:
    linear-gradient(125deg, rgba(255,252,242,.16) 0%, transparent 45%),
    linear-gradient(160deg,#1A1712,#0A0908);
  border:1px solid rgba(225,214,183,.34);
  box-shadow:0 18px 44px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,251,238,.1);
  transition:transform .2s, border-color .2s;
  display:block; color:inherit;
}
a.card:hover{transform:translateY(-3px); border-color:rgba(225,214,183,.55)}
.card h2,.card .cn{font-family:var(--fd);font-size:22px;font-weight:600;color:#F6EFD9;margin-bottom:4px}
.card .reg{font-family:var(--fu);font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:rgba(225,214,183,.65);margin-bottom:12px}
.card .stat{display:flex;justify-content:space-between;font-size:13px;color:rgba(244,241,233,.55);padding:6px 0;border-top:1px solid rgba(225,214,183,.1)}
.card .stat b{color:#F6EFD9;font-family:var(--fd);font-size:18px;font-weight:700}
.card .more{margin-top:12px;font-size:13px;font-weight:700;color:#E1D6B7}
.section{padding:12px 0 8px}
.section h2{font-family:var(--fd);font-size:28px;color:#F6EFD9;margin:28px 0 12px}
.section p{color:var(--soft);max-width:62ch;margin-bottom:12px}
.two{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:18px 0}
@media(max-width:800px){.two{grid-template-columns:1fr}}
/* Mobile nav: the 7-item nav-links wrapped into a 2nd row and overflowed the
   fixed 64px bar. Below 760px, keep it to one clean row — logo + the two CTAs
   (Log in / Get started, the last two <li>); hide the section links. */
@media(max-width:760px){
  nav{padding:0 5%}
  .nav-links{gap:10px;flex-wrap:nowrap}
  .nav-links li:not(:nth-last-child(-n+2)){display:none}
  .nav-logo{font-size:11px;letter-spacing:.1em;gap:8px}
  .nav-logo img{width:24px;height:24px}
  .btn-gold,.btn-ghost{padding:8px 12px;font-size:12px}
}
.panel{
  border-radius:18px; padding:24px 22px;
  background:linear-gradient(160deg,#17140F,#0B0A08);
  border:1px solid rgba(225,214,183,.28);
  box-shadow:0 16px 40px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,251,238,.08);
}
.panel h3{font-family:var(--fd);font-size:20px;color:#F6EFD9;margin-bottom:8px}
.panel p,.panel li{font-size:14.5px;color:rgba(244,241,233,.65);line-height:1.55}
.panel ul{margin:10px 0 0 18px}
.chips{display:flex;flex-wrap:wrap;gap:8px;margin:12px 0}
.chip{
  font-size:12.5px; padding:7px 12px; border-radius:999px;
  border:1px solid rgba(225,214,183,.25); background:rgba(225,214,183,.06);
  color:rgba(244,241,233,.75);
}
.chip a{color:#E1D6B7;font-weight:600}
.list-plain{list-style:none;display:grid;grid-template-columns:1fr 1fr;gap:8px;margin:12px 0}
@media(max-width:600px){.list-plain{grid-template-columns:1fr}}
.list-plain li{
  padding:10px 12px; border-radius:12px;
  background:rgba(255,250,240,.03); border:1px solid rgba(225,214,183,.16);
  font-size:14px; color:rgba(244,241,233,.7);
}
.faq details{
  border-radius:14px; padding:14px 16px; margin:8px 0;
  background:rgba(255,250,240,.03); border:1px solid rgba(225,214,183,.18);
}
.faq summary{cursor:pointer;font-weight:600;color:#F6EFD9}
.faq p{margin-top:8px;font-size:14px;color:rgba(244,241,233,.62)}
.map-box{
  border-radius:20px; padding:22px; margin:18px 0 28px;
  background:linear-gradient(160deg,#14120E,#0A0908);
  border:1.5px solid rgba(225,214,183,.35);
  box-shadow:0 22px 50px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,251,238,.1);
}
.map-svg{width:100%;max-width:520px;margin:0 auto;display:block}
.map-svg .county{fill:rgba(225,214,183,.12);stroke:rgba(225,214,183,.35);stroke-width:1.2;cursor:pointer;transition:fill .15s}
.map-svg .county.live{fill:rgba(225,214,183,.28)}
.map-svg .county.live:hover{fill:rgba(225,214,183,.48)}
.map-svg .county.next{fill:rgba(225,214,183,.08);stroke-dasharray:4 3}
.map-legend{display:flex;gap:16px;flex-wrap:wrap;justify-content:center;margin-top:14px;font-size:12px;color:var(--muted)}
.map-legend i{display:inline-block;width:10px;height:10px;border-radius:2px;margin-right:6px;vertical-align:middle}
.map-legend .l{background:rgba(225,214,183,.4)}
.map-legend .n{background:rgba(225,214,183,.12);border:1px dashed rgba(225,214,183,.4)}
.cta-band{
  margin:36px 0 50px; padding:32px 28px; border-radius:22px; text-align:center;
  background:linear-gradient(125deg, rgba(255,252,242,.18) 0%, transparent 50%),
    linear-gradient(160deg,#1C1913,#0B0A08);
  border:1.5px solid rgba(225,214,183,.4);
}
.cta-band h2{font-family:var(--fd);font-size:clamp(24px,3vw,32px);color:#F6EFD9;margin-bottom:10px}
.cta-band p{color:var(--soft);margin-bottom:18px}
.sib{display:flex;flex-wrap:wrap;gap:10px;margin:16px 0}
.sib a{
  padding:10px 14px; border-radius:12px; font-size:13px; font-weight:600;
  border:1px solid rgba(225,214,183,.25); background:rgba(225,214,183,.05); color:#E1D6B7;
}
.sib a:hover{border-color:rgba(225,214,183,.5)}
footer{
  border-top:1px solid rgba(255,248,232,.08); padding:28px 3.5% 40px;
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  font-size:13px; color:var(--muted);
}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* ── Florida coverage map — Option A (approved) ────────────────────── */
.fl-map-frame{
  --map-gold:#C9A227; --map-gold-lite:#E4C765; --map-ivory:#F4F1E9;
  border-radius:22px; padding:26px 22px 22px; margin:20px 0 30px;
  background:
    radial-gradient(120% 120% at 50% -10%, rgba(201,162,39,.07), transparent 60%),
    linear-gradient(160deg,#15130E,#0A0908 70%);
  border:1.5px solid rgba(201,162,39,.32);
  box-shadow:0 24px 60px rgba(0,0,0,.75), 0 6px 18px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,251,238,.09);
}
.fl-map-head{text-align:center;margin-bottom:14px}
.fl-map-head .kicker{margin-bottom:4px}
.fl-map-stage{
  position:relative;
  background:radial-gradient(120% 120% at 50% 0%,#15161a,#0a0b0d 72%);
  border-radius:16px; padding:18px; display:flex; justify-content:center;
}
.fl-map-svg{width:100%;max-width:480px;height:auto;display:block;overflow:visible}
.fl-map-svg .fl-base path{fill:rgba(244,241,233,.025);stroke:rgba(201,162,39,.16);stroke-width:.5}
.fl-map-svg .c-exp{fill:rgba(201,162,39,.06);stroke:var(--map-gold);stroke-width:.9;stroke-dasharray:3 2}
.fl-map-svg .c-live{fill:url(#flGold);stroke:var(--map-gold-lite);stroke-width:1;filter:drop-shadow(0 0 6px rgba(228,199,101,.65));cursor:pointer;transition:filter .18s}
.fl-map-svg a:hover .c-live,.fl-map-svg a:focus-visible .c-live{filter:drop-shadow(0 0 11px rgba(228,199,101,.95))}
.fl-map-svg a{outline:none}
.fl-map-svg a:focus-visible .c-live{stroke:#FFFDF4;stroke-width:1.6}
.fl-map-svg .ll{
  fill:#1a1400; font-size:8px; font-weight:700; text-anchor:middle;
  font-family:Inter,sans-serif; pointer-events:none;
  paint-order:stroke; stroke:rgba(228,199,101,.55); stroke-width:2px;
}
.fl-map-svg .pin circle{fill:var(--map-gold-lite)}
.fl-map-svg .pin .ring{fill:none;stroke:var(--map-gold);stroke-width:1;opacity:.45}
.fl-map-svg .pin text{fill:#cdb668;font-size:9px;font-family:Inter,sans-serif;font-weight:600}
.fl-legend{display:flex;gap:20px;flex-wrap:wrap;justify-content:center;margin-top:16px;font-size:12px;color:var(--muted)}
.fl-legend span{display:flex;align-items:center;gap:7px}
.fl-legend i{display:inline-block;width:14px;height:10px;border-radius:3px}
.fl-legend .live-sw{background:linear-gradient(180deg,#E4C765,#B8901f);box-shadow:0 0 6px rgba(228,199,101,.6)}
.fl-legend .exp-sw{background:rgba(201,162,39,.08);border:1.4px dashed #C9A227}

/* expanding markets — dimmer, non-clickable */
.expand-card{opacity:.86}
.expand-card .cn{color:rgba(244,241,233,.85)}
.expand-card .more{color:rgba(225,214,183,.55)}
