
:root{
  --navy:#0F1E3C; --navy-700:#16294A; --gold:#F5B800; --gold-deep:#D99E00;
  --ink:#1B2A47; --muted:#5B6B8C; --line:#E4E9F2; --bg:#FFFFFF; --bg-alt:#F7F9FC;
  --green:#0E9F6E; --green-bg:#E7F6EF; --red:#E2564A; --red-bg:#FBEDEB;
  --blue:#2563A8; --blue-deep:#1E4E86; --maxw:1180px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{margin:0; background:var(--bg); color:var(--ink);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  line-height:1.6; -webkit-font-smoothing:antialiased;}
h1,h2,h3{font-family:'Playfair Display',Georgia,serif; color:var(--navy); line-height:1.15; margin:0;}
a{color:inherit; text-decoration:none;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 24px;}
.eyebrow{font-family:'Inter'; font-size:.78rem; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--blue);}
.btn{display:inline-flex; align-items:center; gap:.5rem; font-family:'Inter'; font-weight:600;
  font-size:.95rem; padding:.72rem 1.35rem; border-radius:8px; border:1.5px solid transparent;
  cursor:pointer; transition:transform .12s ease, box-shadow .12s ease;}
.btn:focus-visible{outline:3px solid var(--gold); outline-offset:2px;}
.btn-primary{background:var(--gold); color:var(--navy); border-color:var(--gold);}
.btn-primary:hover{transform:translateY(-1px); box-shadow:0 6px 18px rgba(245,184,0,.35);}
.btn-ghost{background:transparent; color:var(--navy); border-color:var(--line);}
.btn-ghost:hover{border-color:var(--navy);}
.btn-lg{padding:.9rem 1.7rem; font-size:1.02rem;}

/* Header */
header.site{position:sticky; top:0; z-index:50; background:rgba(255,255,255,.92);
  backdrop-filter:blur(8px); border-bottom:1px solid var(--line);}
.nav{display:flex; align-items:center; justify-content:space-between; height:68px;}
.brand{display:flex; align-items:center; gap:10px;}
.nav-links{display:flex; align-items:center; gap:1.05rem; font-size:.9rem; font-weight:500; color:var(--ink);}
.nav-links a:hover{color:var(--blue-deep);}
.nav-links a.active{color:var(--blue-deep);}
.nav-links a.nav-parent{font-weight:700; color:var(--navy); border-bottom:2px solid var(--gold); padding-bottom:2px;}
.nav-links a.nav-parent:hover{color:var(--gold-deep);}
.nav-cta{display:flex; align-items:center; gap:.75rem;}
.menu-btn{display:none; background:none; border:0; font-size:1.5rem; color:var(--navy); cursor:pointer;}
.logo-img{height:34px; width:auto; display:block;}
.logo-img-rev{height:30px; width:auto; display:block;}

/* Hero */
.hero{padding:84px 0 72px; background:
    radial-gradient(120% 80% at 85% -10%, rgba(37,99,168,.08), transparent 60%), var(--bg);}
.hero .eyebrow{margin-bottom:18px;}
.hero h1{font-size:clamp(2.3rem,4.6vw,3.7rem); font-weight:800; max-width:16ch;}
.hero .lede{font-size:1.22rem; color:var(--ink); max-width:52ch; margin:22px 0 8px;}
.hero .sub{font-size:1.02rem; color:var(--muted); max-width:60ch; margin:16px 0 30px;}
.hero .sub strong{color:var(--navy);}
.hero-cta{display:flex; flex-wrap:wrap; gap:14px; align-items:center;}

/* Article hero (interior pages) */
.article-hero{padding:66px 0 30px;}
.article-hero .eyebrow{margin-bottom:16px;}
.article-hero h1{font-size:clamp(2rem,4vw,3.05rem); font-weight:800; max-width:20ch;}
.article-hero .lede{font-size:1.18rem; color:var(--ink); max-width:60ch; margin:20px 0 0;}

/* Sections */
section{padding:64px 0;}
.band{background:var(--bg-alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.sec-head{max-width:62ch; margin-bottom:36px;}
.sec-head h2{font-size:clamp(1.6rem,3vw,2.35rem); font-weight:700; margin-top:12px;}
.sec-head p{color:var(--muted); font-size:1.05rem; margin:14px 0 0;}
.lead{font-size:1.12rem; color:var(--ink); max-width:66ch;}

/* Compare (signature) */
.compare{display:grid; grid-template-columns:1fr 1fr; gap:24px;}
.col{border-radius:14px; padding:30px; border:1px solid var(--line); background:var(--bg);}
.col.bad{background:var(--red-bg); border-color:#F3C9C3;}
.col.good{background:var(--green-bg); border-color:#BEE7D5;}
.col .tag{font-family:'Inter'; font-weight:700; font-size:.75rem; letter-spacing:.1em; text-transform:uppercase;}
.col.bad .tag{color:var(--red);} .col.good .tag{color:var(--green);}
.col h3{font-size:1.3rem; margin:10px 0 12px;}
.col p{margin:0; color:var(--ink); font-size:.98rem;}

/* Cards */
.grid{display:grid; gap:22px;}
.g3{grid-template-columns:repeat(3,1fr);} .g4{grid-template-columns:repeat(4,1fr);}
.g2{grid-template-columns:repeat(2,1fr);}
.card{background:var(--bg); border:1px solid var(--line); border-radius:14px; padding:26px;
  transition:transform .12s ease, box-shadow .12s ease;}
.card:hover{transform:translateY(-3px); box-shadow:0 10px 30px rgba(15,30,60,.07);}
.card h3{font-family:'Inter'; font-weight:700; font-size:1.1rem; color:var(--navy); margin-bottom:8px;}
.card p{margin:0; color:var(--muted); font-size:.95rem;}
.card .dot{width:38px; height:38px; border-radius:9px; background:var(--navy); color:var(--gold);
  display:grid; place-items:center; margin-bottom:16px; font-weight:700;}
a.card{color:inherit;}
.pillar{display:block;}
.pillar .more{font-family:'Inter'; font-weight:600; font-size:.88rem; color:var(--blue-deep); margin-top:14px; display:inline-block;}

/* Prose list */
.plist{list-style:none; padding:0; margin:0; display:grid; gap:11px;}
.plist li{padding-left:26px; position:relative; color:var(--ink); font-size:1rem;}
.plist li::before{content:"—"; position:absolute; left:0; color:var(--gold-deep); font-weight:700;}
.plist.tight li{font-size:.97rem;}

/* Callout */
.callout{background:var(--bg-alt); border-left:4px solid var(--gold); border-radius:0 12px 12px 0;
  padding:24px 28px; margin:8px 0; max-width:70ch;}
.callout p{margin:0 0 8px; color:var(--ink);} .callout p:last-child{margin:0;}
.callout strong{color:var(--navy);}

/* Split + images */
.split{display:grid; grid-template-columns:1.05fr .95fr; gap:44px; align-items:center;}
.shot{max-width:420px; margin-inline:auto; border-radius:14px; overflow:hidden;
  border:1px solid var(--line); box-shadow:0 10px 30px rgba(15,30,60,.10); background:#fff;}
.shot img{display:block; width:100%; height:auto;}
.shot-center{margin:28px auto 0;}

/* A New Dawn */
.dawn{background:var(--navy); color:#fff; text-align:center;}
.dawn h2{color:#fff; font-size:clamp(1.7rem,3vw,2.4rem); font-weight:700; margin-top:10px;}
.dawn p{color:#C7D2E6; font-size:1.08rem; margin:12px 0 26px;}
.dawn-video{max-width:338px; margin:0 auto; border-radius:12px; overflow:hidden;
  border:1px solid #24365C; box-shadow:0 12px 40px rgba(0,0,0,.35); background:#0A1730;}
.dawn-video img{display:block; width:100%; height:auto;}

/* Boutique */
.boutique{background:var(--navy); color:#fff;}
.boutique h2{color:#fff;} .boutique p{color:#C7D2E6; font-size:1.12rem; max-width:70ch; margin:14px 0 0;}
.boutique .eyebrow{color:var(--gold);}

/* CTA band + offers */
.cta-band{text-align:center;}
.cta-band h2{font-size:clamp(1.8rem,3vw,2.6rem);}
.cta-band p{color:var(--muted); font-size:1.1rem; margin:14px auto 30px; max-width:52ch;}
.offers{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; text-align:left; max-width:960px; margin:0 auto;}
.offer{background:var(--bg); border:1px solid var(--line); border-radius:14px; padding:26px; display:flex; flex-direction:column;}
.offer.featured{border:2px solid var(--gold); box-shadow:0 10px 30px rgba(15,30,60,.08);}
.offer .price{font-family:'Playfair Display',serif; font-size:2rem; font-weight:800; color:var(--navy);}
.offer .offer-name{font-family:'Inter'; font-weight:700; color:var(--navy); margin:2px 0 10px;}
.offer p{color:var(--muted); font-size:.92rem; margin:0 0 18px;}
.offer .btn{margin-top:auto;}

/* Pricing tiers */
.tiers{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:stretch;}
.tier{background:var(--bg); border:1px solid var(--line); border-radius:16px; padding:32px; display:flex; flex-direction:column;}
.tier.featured{border:2px solid var(--gold); box-shadow:0 14px 40px rgba(15,30,60,.10); position:relative;}
.tier .badge{position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--gold);
  color:var(--navy); font-family:'Inter'; font-weight:700; font-size:.72rem; letter-spacing:.08em;
  text-transform:uppercase; padding:5px 14px; border-radius:20px;}
.tier .tprice{font-family:'Playfair Display',serif; font-size:2.6rem; font-weight:800; color:var(--navy); line-height:1;}
.tier .tname{font-family:'Inter'; font-weight:700; font-size:1.05rem; color:var(--navy); margin:10px 0 4px;}
.tier .tfor{color:var(--muted); font-size:.92rem; margin:0 0 18px;}
.tier .plist{margin:0 0 24px;} .tier .plist li{font-size:.94rem;}
.tier .btn{margin-top:auto; justify-content:center;}

/* Footer */
footer.site{background:var(--navy); color:#AEBBD4; padding:54px 0 30px; font-size:.9rem;}
footer.site .cols{display:flex; justify-content:space-between; flex-wrap:wrap; gap:30px; margin-bottom:34px;}
footer.site .brand-col{display:flex; flex-direction:column; gap:12px;}
footer.site .tagline{font-family:'Playfair Display',Georgia,serif; font-style:italic;
  font-size:1.02rem; color:var(--gold); letter-spacing:.01em;}
footer.site a{color:#C7D2E6;} footer.site a:hover{color:#fff;}
footer.site .fnav{display:flex; flex-wrap:wrap; gap:16px 22px; max-width:640px;}
footer.site .legal{border-top:1px solid #24365C; padding-top:20px; color:#7E8DAD; font-size:.82rem;}
.patent{color:#7E8DAD; margin-top:6px;}

@media(max-width:900px){
  .nav-links{display:none;} .menu-btn{display:block;}
  .compare,.g3,.g4,.g2,.split,.offers,.tiers{grid-template-columns:1fr;}
  section{padding:52px 0;} .hero{padding:56px 0 46px;}
}
@media(prefers-reduced-motion:reduce){*{transition:none!important; scroll-behavior:auto;}}
