:root {
  --navy: #08132a;
  --navy2: #102346;
  --gold: #c8922a;
  --gold2: #e5aa3c;
  --paper: #f6f3ed;
  --white: #fff;
  --text: #17223a;
  --muted: #647189;
  --line: rgba(8, 19, 42, .12);
  --radius: 14px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.62;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 19, 42, .96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}
.nav {
  max-width: 1240px;
  margin: 0 auto;
  min-height: 74px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.02em; min-width: 240px; }
.mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  border: 2px solid var(--gold);
  flex: 0 0 auto;
}
.brand small {
  display: block;
  color: rgba(255, 255, 255, .52);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .13em;
  line-height: 1.15;
}
.nav-links { display: flex; gap: 9px; align-items: center; font-size: 13px; color: rgba(255,255,255,.72); }
.nav-links a:not(.btn) { padding: 8px 10px; border-radius: 999px; }
.nav-links a:not(.btn):hover { background: rgba(255,255,255,.07); color: var(--gold2); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 11px;
  border: 1px solid transparent;
  font-weight: 850;
  white-space: nowrap;
}
.btn.gold { background: var(--gold); color: var(--navy); }
.btn.dark { background: var(--navy); color: var(--white); }
.btn.light { border-color: rgba(255,255,255,.2); color: var(--white); }
.hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(200,146,42,.2), transparent 30%),
    linear-gradient(135deg, var(--navy), #0e234a 62%, var(--navy2));
  color: var(--white);
  padding: 86px 20px 70px;
}
.wrap { max-width: 1120px; margin: 0 auto; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr);
  gap: 40px;
  align-items: center;
}
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.58); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.84); }
.eyebrow {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 14px;
}
.dark-label { color: var(--gold); }
h1, h2, h3 { line-height: 1.12; margin: 0; letter-spacing: -.03em; }
h1 { font-family: "Playfair Display", Georgia, serif; font-size: clamp(36px, 5.5vw, 66px); max-width: 840px; }
h2 { font-size: clamp(26px, 3.6vw, 40px); margin-bottom: 12px; }
h3 { font-size: 20px; margin-bottom: 8px; }
.lead { color: rgba(255,255,255,.7); font-size: 18px; max-width: 760px; margin: 20px 0 28px; }
.promo-status, .notice.compact {
  display: inline-flex;
  max-width: 760px;
  margin: 0 0 18px;
  padding: 11px 13px;
  border: 1px solid rgba(229, 170, 60, .45);
  border-radius: 12px;
  background: rgba(229, 170, 60, .12);
  color: rgba(255,255,255,.86);
  font-weight: 800;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.proof-card {
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 26px 80px rgba(0,0,0,.22);
}
.proof-card p { color: rgba(255,255,255,.68); margin: 10px 0 18px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-row span {
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  font-weight: 800;
}
.section { padding: 70px 20px; }
.section.white { background: var(--white); }
.section.dark { background: var(--navy); color: var(--white); }
.intro { max-width: 760px; color: var(--muted); font-size: 17px; margin: 0; }
.dark .intro { color: rgba(255,255,255,.64); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr); gap: 28px; align-items: start; }
.use-card, .detail-card, .card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 34px rgba(8, 19, 42, .055);
}
.use-card ul { margin: 12px 0 0; padding-left: 20px; color: var(--muted); }
.use-card li { margin: 8px 0; }
.detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.detail-card p, .card p { margin: 0; color: var(--muted); }
.answer-section { padding-top: 42px; padding-bottom: 42px; }
.answer-box {
  border: 1px solid rgba(200, 146, 42, .28);
  border-left: 6px solid var(--gold);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff, #fff9ed);
  padding: 26px;
  box-shadow: 0 16px 44px rgba(8, 19, 42, .075);
}
.answer-box p { color: var(--muted); font-size: 18px; max-width: 940px; margin: 14px 0 0; }
.guide-section { background: #fbf8f1; padding-top: 48px; padding-bottom: 48px; }
.guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 22px; }
.guide-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 36px rgba(8, 19, 42, .06);
}
.guide-card h3 { font-size: 18px; }
.guide-card p { color: var(--muted); margin: 0; }
.route-visual-section {
  background:
    radial-gradient(circle at 14% 16%, rgba(200, 146, 42, .18), transparent 24%),
    linear-gradient(180deg, #fff, #f7f2e8);
  padding-top: 54px;
  padding-bottom: 54px;
}
.route-visual-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 4%, rgba(229, 170, 60, .22), transparent 26%),
    linear-gradient(135deg, #08132a, #102346 58%, #071229);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 30px;
  color: var(--white);
  box-shadow: 0 30px 90px rgba(8, 19, 42, .22);
}
.route-visual-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.8), transparent 92%);
  pointer-events: none;
}
.route-visual-head,
.route-visual-grid,
.route-visual-metrics { position: relative; z-index: 1; }
.route-visual-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, .3fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}
.route-visual-head h2 { max-width: 720px; }
.route-visual-head p {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 17px;
}
.route-visual-badge {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  padding: 16px;
  text-align: right;
}
.route-visual-badge strong {
  display: block;
  color: var(--gold2);
  font-size: 16px;
}
.route-visual-badge span {
  color: rgba(255,255,255,.62);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-top: 4px;
}
.route-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  gap: 20px;
  align-items: stretch;
}
.route-map-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 76% 32%, rgba(106, 165, 255, .18), transparent 30%),
    radial-gradient(circle at 34% 68%, rgba(104, 211, 145, .13), transparent 24%),
    rgba(255,255,255,.055);
  padding: 18px;
}
.florida-route-svg {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
}
.florida-shape {
  fill: rgba(255,255,255,.08);
  stroke: rgba(255,255,255,.28);
  stroke-width: 3;
}
.route-line,
.route-line-secondary {
  fill: none;
  stroke: url(#routeGlow);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 14 12;
}
.route-line-secondary {
  opacity: .45;
  stroke-width: 5;
}
.route-pin {
  fill: #6aa5ff;
  stroke: #fff;
  stroke-width: 5;
}
.route-pin.start { fill: var(--gold2); }
.route-pin.priority { fill: #ff7a7a; }
.route-pin.alternate { fill: #68d391; }
.map-label {
  fill: rgba(255,255,255,.88);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 900;
  paint-order: stroke;
  stroke: rgba(8, 19, 42, .74);
  stroke-width: 5px;
  stroke-linejoin: round;
}
.route-map-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(8, 19, 42, .72);
  backdrop-filter: blur(14px);
  padding: 14px 16px;
}
.route-map-caption span {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 900;
}
.route-map-caption strong {
  font-size: 20px;
  line-height: 1.2;
}
.route-map-caption small {
  color: rgba(255,255,255,.62);
  font-weight: 700;
}
.route-sequence {
  display: grid;
  gap: 12px;
  align-content: stretch;
}
.route-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.065);
  padding: 16px;
}
.route-step-num {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold2);
  color: var(--navy);
  font-weight: 950;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.route-step h3 {
  color: var(--white);
  margin-bottom: 4px;
  font-size: 17px;
}
.route-step p {
  margin: 0;
  color: rgba(255,255,255,.64);
  line-height: 1.45;
}
.route-visual-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.route-metric {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  padding: 14px;
}
.route-metric strong {
  display: block;
  color: var(--white);
  line-height: 1.2;
}
.route-metric span {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 750;
  margin-top: 4px;
}
.compare-section { padding-top: 54px; padding-bottom: 54px; }
.compare-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 22px;
}
.compare-note {
  border: 1px solid rgba(200, 146, 42, .32);
  border-left: 5px solid var(--gold);
  border-radius: 16px;
  background: #fff9ed;
  padding: 16px;
  color: #75500d;
  font-size: 13px;
  font-weight: 800;
}
.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(8, 19, 42, .12);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(8, 19, 42, .11);
  background: var(--white);
}
.comparison-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th {
  background: linear-gradient(135deg, var(--navy), #142a55);
  color: var(--white);
  text-align: left;
  padding: 18px 18px;
  vertical-align: top;
  font-size: 13px;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.12);
}
.comparison-table th:nth-child(2) {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
}
.comparison-table td {
  border-top: 1px solid rgba(8, 19, 42, .1);
  border-right: 1px solid rgba(8, 19, 42, .07);
  padding: 18px;
  vertical-align: top;
  color: var(--muted);
}
.comparison-table tr:nth-child(even) td { background: #fbfcff; }
.comparison-table tr:nth-child(even) td:nth-child(2),
.comparison-table td:nth-child(2) {
  background: #fff8e8;
  color: #18223a;
  font-weight: 800;
}
.comparison-table .row-head {
  background: #f4f6fb;
  color: var(--navy);
  font-weight: 900;
  width: 190px;
  box-shadow: inset 4px 0 0 var(--gold);
}
.takeaway-card {
  margin-top: 18px;
  border: 1px solid rgba(200, 146, 42, .28);
  border-left: 6px solid var(--gold);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #fff8e8);
  padding: 20px 22px;
  color: #516079;
  box-shadow: 0 14px 36px rgba(8, 19, 42, .06);
}
.takeaway-card strong { color: var(--navy); }
.local-intel-section { background: #fbf8f1; }
.local-intel-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }
.local-intel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(8, 19, 42, .05);
}
.local-intel h3 { font-size: 17px; }
.local-intel p { color: var(--muted); margin: 0; }
.mini-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
.mini-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
  padding: 18px;
}
.mini-card span { color: rgba(255,255,255,.78); font-weight: 850; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 12px 0;
}
.faq summary { cursor: pointer; font-weight: 900; }
.faq p { color: var(--muted); margin: 12px 0 0; }
.related-section { padding-top: 44px; padding-bottom: 44px; }
.related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.related-links a {
  border: 1px solid var(--line);
  background: #f8f5ee;
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--navy);
  font-weight: 850;
  font-size: 13px;
}
.related-links a:hover { border-color: rgba(200,146,42,.5); color: #8a5b07; }
.cta-band {
  background: linear-gradient(135deg, var(--navy), #142a55);
  color: var(--white);
  border-radius: 24px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band p { color: rgba(255,255,255,.68); margin: 10px 0 0; }
.footer {
  background: #061026;
  color: rgba(255,255,255,.62);
  padding: 40px 20px 26px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.footer-brand strong { display: block; color: var(--white); font-size: 22px; }
.footer-brand span { color: var(--gold2); display: block; margin-top: 4px; }
.footer-brand p { max-width: 360px; margin: 14px 0 0; }
.footer h2 { font-size: 13px; color: var(--white); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.footer-links { display: grid; grid-template-columns: 1fr; gap: 7px; }
.footer-links a { color: rgba(255,255,255,.7); }
.footer-links a:hover { color: var(--gold2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 28px;
  padding-top: 18px;
  color: rgba(255,255,255,.45);
}
@media (max-width: 900px) {
  .hero-grid, .split, .detail-grid, .mini-grid, .local-intel-grid, .guide-grid, .compare-heading, .route-visual-head, .route-visual-grid, .route-visual-metrics, .footer-grid { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; flex-direction: column; padding-top: 14px; padding-bottom: 14px; }
  .nav-links { width: 100%; overflow-x: auto; padding-bottom: 2px; gap: 12px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .route-visual-badge { text-align: left; }
  .route-map-card { min-height: 390px; }
}
@media (max-width: 560px) {
  .hero { padding: 64px 16px 54px; }
  .section { padding: 50px 16px; }
  .nav { padding-left: 16px; padding-right: 16px; }
  .brand { min-width: 0; }
  .brand small { font-size: 9px; }
  .btn { width: 100%; }
  .nav-links .btn { width: auto; min-width: max-content; }
  .actions { width: 100%; }
  .proof-card, .use-card, .detail-card, .card, .cta-band { padding: 20px; }
  .route-visual-shell { border-radius: 22px; padding: 18px; }
  .route-map-card { min-height: 330px; padding: 12px; }
  .florida-route-svg { min-height: 280px; }
  .map-label { font-size: 14px; }
  .route-map-caption {
    position: static;
    margin-top: -8px;
  }
  .route-step {
    grid-template-columns: 36px 1fr;
    padding: 14px;
  }
  .route-step-num {
    width: 32px;
    height: 32px;
  }
  .footer { padding-left: 16px; padding-right: 16px; }
}
