/* ==========================================================================
   LPT 2026 MVP — page components not covered by lpt.css
   (proof strip, six-door cards, teaser rows, nav plain links, stat grids).
   Tokens come from lpt.css; keep everything on those variables.
   ========================================================================== */

/* Mobile: the header's backdrop-filter would become the containing block for
   the fixed-position slide-down menu and collapse it — use a solid header
   (visually identical at .97 alpha) so the menu can fill the viewport. */
@media (max-width:920px){
  .site-header{backdrop-filter:none; -webkit-backdrop-filter:none; background:rgba(0,15,28,.97);}
}

/* Plain top-level nav links rendered by nav.js alongside the Paths dropdown */
.site-header .site-nav a.nav-top{color:#fff; opacity:.9;}
.site-header .site-nav a.nav-top:hover{opacity:1;}
@media (max-width:920px){
  .site-header .site-nav a.nav-top{width:100%; padding:16px 0; font-size:1.05rem;
    border-bottom:1px solid rgba(255,255,255,.08);}
}

/* ---- Hero (home) ---- */
.hero{position:relative; color:#fff; padding:110px 0 90px;
  background:radial-gradient(120% 120% at 70% 20%, #063356 0%, #001521 55%, #000 100%);}
.hero h1{font-size:4.2rem; max-width:960px; margin-bottom:22px;}
.hero h1 .accent{color:var(--orange);}
.hero .kicker{color:#6FB2E6; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  font-size:.85rem; margin-bottom:22px; display:block;}
.hero .sub{font-size:1.25rem; max-width:640px; color:#C6D3DE; margin-bottom:34px;}
.hero-actions{display:flex; gap:16px; flex-wrap:wrap; align-items:center;}
@media (max-width:860px){ .hero h1{font-size:2.6rem; line-height:1.08;} .hero .sub{font-size:1.1rem;} }

/* ---- Proof strip (rendered from assets/claims.js) ---- */
.proofbar{background:var(--blue-award); color:#fff; padding:38px 0;}
.proofbar .wrap{display:flex; align-items:stretch; justify-content:space-between; gap:20px; flex-wrap:wrap;}
.proof{flex:1 1 0; min-width:150px; text-align:center; padding:8px 10px; border-right:1px solid rgba(255,255,255,.18);}
.proof:last-child{border-right:none;}
.proof .num{font-family:var(--display); font-weight:900; font-size:2.3rem; line-height:1; color:#fff;}
.proof .lbl{font-size:.9rem; color:#CFE0F2; margin-top:8px;}
.proof-note{text-align:center; color:#9DBBDA; font-size:.78rem; margin-top:20px;}
@media (max-width:760px){ .proof{flex:1 1 40%; border-right:none;} }

/* ---- Six doors ---- */
.group-label{font-family:var(--sans); font-weight:700; letter-spacing:2px; text-transform:uppercase;
  font-size:.78rem; color:var(--blue); margin:44px 0 20px; display:flex; align-items:center; gap:14px;}
.group-label::after{content:""; flex:1; height:1px; background:var(--gray-200);}
.doors{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
.door{display:flex; flex-direction:column; background:#fff; border:1px solid var(--gray-200);
  border-radius:var(--radius-lg); padding:28px; text-align:left;
  transition:transform .15s, box-shadow .15s, border-color .15s;}
.door:hover{transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--blue);}
.door .door-icon{width:64px; height:64px; border-radius:12px; background:var(--blue-tint);
  color:var(--blue); display:flex; align-items:center; justify-content:center; margin-bottom:18px;}
.door h3{margin-bottom:10px; color:var(--ink); font-size:1.25rem;}
.door .def{font-size:.95rem; color:#555; margin-bottom:16px; flex:1;}
.door .fit{font-size:.85rem; color:var(--blue-deep); background:var(--blue-tint);
  border-radius:6px; padding:10px 12px; margin-bottom:18px;}
.door .fit b{display:block; font-size:.72rem; letter-spacing:1px; text-transform:uppercase; margin-bottom:4px; color:var(--blue);}
.door .door-cta{font-weight:700; color:var(--orange); font-size:.95rem; display:inline-flex; gap:8px; align-items:center;}
@media (max-width:860px){ .doors{grid-template-columns:1fr;} }

/* ---- Teaser rows (home links to section pages) ---- */
.teasers{display:grid; grid-template-columns:1fr 1fr; gap:22px;}
.teaser{background:#fff; border:1px solid var(--gray-200); border-radius:var(--radius-lg); padding:28px;
  display:flex; flex-direction:column; transition:border-color .15s, box-shadow .15s;}
.teaser:hover{border-color:var(--blue); box-shadow:var(--shadow);}
.teaser h3{font-size:1.2rem; margin-bottom:8px;}
.teaser p{font-size:.95rem; color:#555; margin:0 0 14px; flex:1;}
@media (max-width:760px){ .teasers{grid-template-columns:1fr;} }

/* ---- Stat grid (Why LPT) ---- */
.wlstats{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; max-width:1000px; margin:0 auto;}
.wlstat{text-align:center; padding:8px 12px; border-right:1px solid var(--gray-200); min-width:0;}
.wlstat:last-child{border-right:none;}
.wlstat .num{font-family:var(--display); font-weight:900; font-size:2rem; color:var(--blue); line-height:1.15; overflow-wrap:break-word;}
.wlstat .num.num-sm{font-size:1.15rem; line-height:1.35; padding-top:6px;}
.wlstat .lbl{font-size:.9rem; color:#555; margin-top:6px;}
.wlstat .ent{font-size:.68rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--gray-500); margin-top:6px;}
@media (max-width:760px){ .wlstats{grid-template-columns:1fr 1fr;} .wlstat{border-right:none;} .wlstat .num{font-size:1.5rem;} }

/* ---- Simple check/cross lists (Brokerage for Life) ---- */
.preserve{display:grid; grid-template-columns:1fr 1fr; gap:32px; max-width:900px; margin:0 auto;}
.preserve h3{margin-bottom:12px; font-size:1.2rem;}
.plist{list-style:none; padding:0; margin:0;}
.plist li{padding:7px 0 7px 28px; position:relative; color:#C7D4E0; font-size:.95rem;}
.plist li svg{position:absolute; left:0; top:9px; width:16px; height:16px; stroke-width:2.2;}
.plist.good li svg{color:var(--green);}
.plist.bad li svg{color:#E07A6A;}
@media (max-width:760px){ .preserve{grid-template-columns:1fr;} }

/* ---- Overview sections on combined pages ---- */
.ovm{display:grid; grid-template-columns:220px 1fr; gap:32px; padding:38px 0; max-width:960px; margin:0 auto;}
.ovm + .ovm{border-top:1px solid var(--gray-200);}
.ovm .wordmark{font-family:var(--display); font-weight:800; font-size:1.2rem; color:var(--ink);}
.ovm h3{font-size:1.45rem; margin-bottom:10px;}
.ovm p{color:#444; margin-bottom:0;}
.ovm p + p{margin-top:12px;}
@media (max-width:720px){ .ovm{grid-template-columns:1fr; gap:12px; padding:30px 0;} }

/* Section-dark variant */
.section-dark .ovm + .ovm, .section-navy .ovm + .ovm{border-top-color:rgba(255,255,255,.1);}
.section-dark .ovm .wordmark, .section-navy .ovm .wordmark{color:#8FC3EA;}
.section-dark .ovm p, .section-navy .ovm p{color:#B9C6D2;}

/* Consultation band */
.conversion p.lead{max-width:640px; margin:14px auto 22px;}
.conversion .note{color:#8FA6B8;}

/* ---- Legal footer (real lpt.com footer content) ---- */
.site-footer{padding:52px 0 36px;}
.site-footer .wrap.foot-grid{display:grid; grid-template-columns:1.1fr 1fr 1.5fr; gap:40px; align-items:start;}
.site-footer .foot-brand img{height:52px; margin-bottom:14px;}
.site-footer .foot-brand p{margin:0; line-height:1.7; color:var(--gray-400);}
.site-footer .foot-brand strong{color:var(--gray-200); font-size:1rem;}
.foot-head{font-family:var(--display); font-weight:800; font-size:.85rem; letter-spacing:1.5px;
  text-transform:uppercase; color:var(--gray-300); margin:0 0 14px;}
.site-footer .foot-col ul{list-style:none; margin:0; padding:0; display:grid; gap:10px;}
.site-footer .foot-col a{color:var(--gray-300); text-decoration:underline; line-height:1.5;}
.site-footer .foot-col a:hover{color:#fff;}
.site-footer .foot-plain{color:var(--gray-500); line-height:1.5;}
.site-footer .wrap.foot-legal{display:block; margin-top:38px; padding-top:24px;
  border-top:1px solid rgba(255,255,255,.12);}
.site-footer .foot-legal p{font-size:.8rem; color:var(--gray-500); line-height:1.7; margin:0 0 12px;}
.site-footer .foot-legal a{color:var(--gray-400); text-decoration:underline;}
.site-footer .foot-legal a:hover{color:var(--gray-200);}
.site-footer .foot-disclaimer{text-transform:none;}
.site-footer .foot-copy{margin:18px 0 0; font-size:.8rem; color:var(--gray-500);}
@media (max-width:820px){
  .site-footer .wrap.foot-grid{grid-template-columns:1fr; gap:30px;}
}

/* Mobile type scale (lpt.css sets desktop sizes only) */
@media (max-width:640px){
  h1{font-size:2.4rem; letter-spacing:.5px;}
  h2{font-size:1.8rem;}
  .path-hero, .dhero{padding:90px 0 60px;}
  .section{padding:64px 0;}
}
