:root{
  --navy:#0f172a;
  --navy-2:#121c33;
  --slate:#1e293b;
  --slate-2:#22314a;
  --gold:#d6b25e;
  --text:#f1f5f9;
  --muted:rgba(241,245,249,.72);
  --muted2:rgba(241,245,249,.58);
  --border:rgba(255,255,255,.10);
  --border2:rgba(255,255,255,.14);
  --max:1120px;
  --r:18px;
  --r2:22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:var(--navy);
  color:var(--text);
}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}

/* Header */
.header{
  position:sticky; top:0; z-index:20;
  background:rgba(15,23,42,.90);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 180px;
}
.brand__mark{display:flex; align-items:center}
.logo{height:34px; width:auto; display:block}
.brand__name{font-weight:700; letter-spacing:-.2px; font-size:14px; color:rgba(241,245,249,.92)}

.nav{
  display:none;
  align-items:center;
  gap:22px;
}
.nav a{
  color:rgba(241,245,249,.70);
  text-decoration:none;
  font-size:14px;
  padding:8px 6px;
}
.nav a:hover{color:rgba(241,245,249,.95)}

.header__actions{display:flex; align-items:center; gap:10px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:14px;
  border:1px solid var(--border);
  padding:10px 12px;
  text-decoration:none;
  color:rgba(241,245,249,.90);
  background:transparent;
  cursor:pointer;
}
.btn--primary{
  background:var(--gold);
  color:var(--navy);
  border-color:rgba(214,178,94,.55);
}
.btn--ghost{background:transparent}
.btn--sm{padding:8px 10px; border-radius:12px; font-size:13px}
.btn--block{width:100%}

/* Mobile menu button */
.btn--menu{width:40px; height:40px; padding:0; border-radius:14px; position:relative}
.btn--menu::before{
  content:"";
  width:18px; height:12px;
  background:
    currentColor 0 0/100% 2px no-repeat,
    currentColor 0 50%/100% 2px no-repeat,
    currentColor 0 100%/100% 2px no-repeat;
  display:block;
  margin:0 auto;
  opacity:.9;
}

/* Hero */
.hero{padding:58px 0 34px}
.hero__inner{display:grid; gap:18px; grid-template-columns:1fr}
.hero__copy h1{
  margin:0;
  font-size:44px;
  letter-spacing:-1px;
  line-height:1.05;
}
.lead{
  margin:14px 0 0;
  color:var(--muted);
  line-height:1.6;
  max-width:760px;
}

.badges{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:14px}
.badge{
  font-size:12px;
  color:rgba(241,245,249,.92);
  background:transparent;
  border:1px solid rgba(214,178,94,.32);
  padding:7px 11px;
  border-radius:999px;
}
.cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}
.pills{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}
.pill{
  font-size:12px;
  color:rgba(241,245,249,.86);
  border:1px solid var(--border);
  background:transparent;
  padding:7px 10px;
  border-radius:999px;
}

/* Sections */
.section{padding:44px 0}
.section h2{
  margin:0;
  font-size:28px;
  letter-spacing:-.6px;
  display:inline-block;
  position:relative;
}
.section h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:44px;
  height:2px;
  border-radius:999px;
  background:var(--gold);
  opacity:.85;
}
.sub{
  margin:12px 0 0;
  color:var(--muted);
  line-height:1.6;
  max-width:760px;
}

.grid2,.grid3{display:grid; gap:14px; margin-top:18px}
.grid3{grid-template-columns:1fr}
.grid2{grid-template-columns:1fr}

.card{
  border:1px solid var(--border);
  border-radius:var(--r2);
  background:rgba(30,41,59,.72);
  padding:18px;
}
.card--flat{background:rgba(30,41,59,.66)}
.card h3{margin:0 0 8px; font-size:16px; color:rgba(241,245,249,.95)}
.card p{margin:0; color:var(--muted); line-height:1.55}

.list,.bullets{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.checks{list-style:none; padding:0; margin:10px 0 0}
.checks li{margin:10px 0; padding-left:22px; position:relative; color:var(--muted); line-height:1.5}
.checks li:before{content:"✓"; position:absolute; left:0; top:0; color:rgba(214,178,94,.95)}

.label{display:block; font-size:13px; color:rgba(241,245,249,.78); margin:10px 0}
.input{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border2);
  outline:none;
  background:rgba(15,23,42,.55);
  color:rgba(241,245,249,.92);
}
.input::placeholder{color:rgba(241,245,249,.45)}
.input:focus{border-color:rgba(214,178,94,.55); box-shadow:0 0 0 4px rgba(214,178,94,.12)}
.hr{border:0; height:1px; background:var(--border); margin:14px 0}
.fine{font-size:12px; color:var(--muted2); line-height:1.55; margin-top:10px}

/* Footer */
.footer{
  border-top:1px solid var(--border);
  padding:22px 0;
  background:rgba(15,23,42,.92);
}
.footer__inner{
  display:flex;
  flex-direction:column;
  gap:10px;
  color:rgba(241,245,249,.60);
  font-size:13px;
}
.footer__links{display:flex; gap:14px; flex-wrap:wrap}
.footer__links a{color:rgba(241,245,249,.62); text-decoration:none}
.footer__links a:hover{color:rgba(241,245,249,.92)}

/* Fullscreen mobile menu */
.menuOverlay{
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(15,23,42,.98);
}
.menuFullscreen{
  height: 100%;
  width: 100%;
  display:flex;
  flex-direction:column;
}
.menuTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--border);
  background: rgba(15,23,42,.98);
}
.menuBrand{display:flex; align-items:center; gap:10px}
.menuLogo{height:34px; width:auto; display:block}
.menuClose{
  width:44px;height:44px;
  border-radius:18px;
  border:1px solid var(--border);
  background:transparent;
  color:rgba(241,245,249,.90);
  cursor:pointer;
  font-size:26px;
  line-height:1;
}
.menuBody{
  padding: 18px 16px 22px;
  display:flex;
  flex-direction:column;
  gap:12px;
  flex:1;
}
.menuItem{
  text-decoration:none;
  color: rgba(241,245,249,.95);
  font-weight:650;
  font-size:22px;
  letter-spacing:-.3px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(30,41,59,.65);
}
.menuItem:hover{background: rgba(30,41,59,.80)}
.menuCtas{margin-top: 10px; display:flex; flex-direction:column; gap:10px}
.menuFine{margin-top:auto; padding-top: 8px; color: var(--muted2); font-size: 12px; text-align:center}

.srOnly{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* Responsive */
@media (min-width:860px){
  .nav{display:flex}
  .hero__copy h1{font-size:56px}
  .grid3{grid-template-columns:repeat(3,1fr)}
  .grid2{grid-template-columns:repeat(2,1fr)}
  .footer__inner{flex-direction:row; align-items:center; justify-content:space-between}
  .btn--menu{display:none}
}

@media (max-width:859px){
  /* Ultra-clean mobile header: only menu button visible */
  #emailLink{display:none}
  .header__actions .btn--primary{display:none}
}
@media (max-width:480px){
  .cta{flex-direction:column}
  .cta .btn{width:100%}
  .hero__copy h1{font-size:38px}
  .logo{height:32px}
}

/* --- v10 header tweaks: logo-only + larger logo --- */
.brand{gap:0}
.brand__mark{background:transparent; width:auto; height:auto}
.brand__mark img.logo{display:block; height:52px; width:auto}
@media (min-width: 860px){
  .brand__mark img.logo{height:58px}
}

/* --- Mobile hamburger visibility fix --- */
@media (max-width: 859px){
  .btn--menu{display:inline-flex !important}
}
.btn--menu{
  color: rgba(229,231,235,.92);
  border-color: rgba(255,255,255,.18);
  background: transparent;
}
.btn--menu::before{
  content:"";
  width:18px;height:12px;
  background:
    linear-gradient(currentColor,currentColor) 0 0/100% 2px no-repeat,
    linear-gradient(currentColor,currentColor) 0 50%/100% 2px no-repeat,
    linear-gradient(currentColor,currentColor) 0 100%/100% 2px no-repeat;
  display:block;
  margin:0 auto;
  opacity:.95;
}

.header__inner{align-items:center}
.nav a{color: rgba(229,231,235,.78)}
.nav a:hover{color: rgba(255,255,255,.95)}

/* --- v14 fix: keep header in one row --- */
.header__inner{flex-wrap:nowrap}
.brand{flex:0 0 auto}
.nav{flex:1 1 auto; justify-content:center}
.header__actions{flex:0 0 auto}

/* Mobile: show hamburger only */
@media (max-width: 859px){
  .nav{display:none !important}
  #emailLink, .header__actions .btn--primary{display:none !important}
  .btn--menu{display:inline-flex !important}
}
