:root{
  --bg0:#051024;
  --bg1:#071B3A;
  --bg2:#052654;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(0,0,0,.20);
  --line:rgba(255,255,255,.14);
  --text:rgba(255,255,255,.94);
  --muted:rgba(255,255,255,.74);
  --muted2:rgba(255,255,255,.56);
  --sky:#38bdf8;
  --blue:#3b82f6;
  --green:#22c55e;
  --gold:#fbbf24;
  --yellow:#fde047;
  --shadow: 0 0 0 1px rgba(255,255,255,.10), 0 18px 55px rgba(0,0,0,.55);
  --r:28px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(circle at 18% 10%, rgba(56,189,248,.30), transparent 40%),
    radial-gradient(circle at 80% 12%, rgba(34,197,94,.18), transparent 42%),
    radial-gradient(circle at 65% 85%, rgba(251,191,36,.12), transparent 45%),
    linear-gradient(160deg, var(--bg0), var(--bg1) 45%, var(--bg2));
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit; text-decoration:none}
a:hover{color:#fff}
.container{max-width:1150px; margin:0 auto; padding:0 18px}
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(6,18,40,.70);
  border-bottom:1px solid var(--line);
}
.header-inner{
  height:76px; display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.brand{display:flex; align-items:center; gap:14px}
.brand img{
  width:92px; height:auto;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.30);
  background: rgba(255,255,255,.04);
  padding:6px;
}
.brand .name{font-weight:900; font-size:15px; letter-spacing:.01em; line-height:1.1}
.brand .sub{font-size:12px; color:var(--muted2); margin-top:3px}
.nav{display:none; gap:18px; align-items:center}
.nav a{font-size:14px; color:var(--muted)}
.nav a:hover{color:#fff}
.actions{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 16px;
  border-radius:20px;
  font-weight:900;
  font-size:13px;
  border:1px solid rgba(255,255,255,.12);
  transition: .15s ease;
  user-select:none;
}
.btn.primary{
  background: linear-gradient(90deg, rgba(56,189,248,1), rgba(59,130,246,1));
  color:#061024;
  border-color: transparent;
  box-shadow: var(--shadow);
}
.btn.primary:hover{filter:brightness(1.03)}
.btn.secondary{background: rgba(255,255,255,.10)}
.btn.secondary:hover{background: rgba(255,255,255,.14)}
.btn.gold{
  background: linear-gradient(90deg, rgba(251,191,36,1), rgba(253,224,71,1));
  color:#111827;
  border-color: transparent;
}
.btn.gold:hover{filter:brightness(1.03)}
.btn.ghost{border-color:transparent; background:transparent; color:var(--muted)}
.btn.ghost:hover{background: rgba(255,255,255,.08); color:#fff}
.mobile-toggle{
  display:inline-flex; align-items:center; justify-content:center;
  width:48px; height:48px; border-radius:18px;
  border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.07);
}
.mobile-nav{
  display:none;
  border-top:1px solid var(--line);
  padding:10px 0 16px;
}
.mobile-nav a{
  display:block; padding:12px 8px; border-radius:16px; color:var(--muted);
}
.mobile-nav a:hover{background: rgba(255,255,255,.08); color:#fff}

.hero{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.hero::before{
  content:"";
  position:absolute; inset:-40px;
  opacity:.55;
  background:
    radial-gradient(circle at 20% 20%, rgba(56,189,248,.35), transparent 42%),
    radial-gradient(circle at 70% 30%, rgba(59,130,246,.28), transparent 44%),
    radial-gradient(circle at 65% 85%, rgba(34,197,94,.18), transparent 48%),
    radial-gradient(circle at 85% 75%, rgba(251,191,36,.14), transparent 50%);
  filter:saturate(1.15);
}
.hero-inner{position:relative; padding:78px 0 62px}
.badges{display:flex; flex-wrap:wrap; gap:10px}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  font-size:12px; color:var(--muted);
}
.badge .dot{width:8px; height:8px; border-radius:999px; background: var(--green); box-shadow:0 0 0 3px rgba(34,197,94,.18)}
h1{margin:16px 0 0; font-size:48px; line-height:1.06; letter-spacing:-.02em}
.lead{margin:14px 0 0; max-width:820px; font-size:18px; color:var(--muted); line-height:1.6}
.hero-actions{margin-top:18px; display:flex; flex-wrap:wrap; gap:10px; align-items:center}
.disclaimer{margin-top:14px; font-size:12px; color:var(--muted2); max-width:920px}
.grid{display:grid; gap:14px}
@media(min-width:920px){
  .grid.cols-2{grid-template-columns:repeat(2,1fr)}
  .grid.cols-3{grid-template-columns:repeat(3,1fr)}
  .grid.cols-4{grid-template-columns:repeat(4,1fr)}
}
.card{
  border-radius:30px;
  background: var(--panel);
  border:1px solid rgba(255,255,255,.12);
  padding:18px;
  box-shadow: var(--shadow);
}
.card.slim{box-shadow:none}
.card h3{margin:0; font-size:14px}
.card p{margin:10px 0 0; color:var(--muted); font-size:14px; line-height:1.6}
.section{padding:62px 0}
.eyebrow{font-size:12px; font-weight:900; color: rgba(56,189,248,.95); letter-spacing:.14em}
.section h2{margin:10px 0 0; font-size:30px; letter-spacing:-.02em}
.section .subtitle{margin:12px 0 0; color:var(--muted); max-width:900px; line-height:1.65}

.list{margin:0; padding-left:18px; color:var(--muted); line-height:1.9; font-size:14px}
.kv{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:12px 14px;
}
.kv .k{color:var(--muted); font-size:13px}
.kv .v{font-weight:900; font-size:13px}

.callout{
  border-radius:34px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  padding:22px;
  box-shadow: var(--shadow);
}
.callout-inner{display:flex; flex-direction:column; gap:16px}
@media(min-width:920px){
  .nav{display:flex}
  .mobile-toggle{display:none}
  .callout-inner{flex-direction:row; align-items:center; justify-content:space-between}
}

.form{
  display:flex; flex-wrap:wrap; gap:10px; margin-top:14px;
}
.input{
  flex:1 1 260px;
  padding:12px 14px;
  border-radius:18px;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.14);
  color:var(--text);
  outline:none;
}
.input:focus{border-color: rgba(56,189,248,.60); box-shadow: 0 0 0 4px rgba(56,189,248,.18)}
.helper{margin-top:10px; color:var(--muted2); font-size:12px; line-height:1.5}

.footer{
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.08);
}
.footer-inner{padding:50px 0 18px}
.footer-grid{display:grid; gap:22px}
@media(min-width:920px){ .footer-grid{grid-template-columns:2fr 1fr 1fr} }
.footer h4{margin:0; font-size:13px}
.footer a{color:var(--muted)}
.footer a:hover{color:#fff}
.footer p{margin:10px 0 0; color:var(--muted); font-size:13px; line-height:1.7}
.footer small{color:var(--muted2)}
.copyright{border-top:1px solid var(--line); padding:14px 0; color:var(--muted2); font-size:12px}

/* =========================================================
   GLOBAL LAYOUT ALIGNMENT (Header/Footer match body width)
   - Header/footer background is a subtle grey
   - The grey background is constrained to the same max-width
     container as the body content
   - Fully responsive
   ========================================================= */

/* Header: transparent outer bar; inner container is the grey "card" */
.header{
  background: transparent !important;
  border-bottom: none !important;
  backdrop-filter:none !important;
  padding:10px 0 !important;
}
.header > .container{
  background:#f3f4f6 !important;            /* very slight grey */
  border:1px solid rgba(17,24,39,.12) !important;
  border-radius:22px !important;
  box-shadow: 0 8px 26px rgba(0,0,0,.10) !important;
}
.header-inner{
  height:auto !important;
  padding:10px 12px !important;
}
.header .mobile-nav{
  background: transparent !important;
  border-top:1px solid rgba(17,24,39,.10) !important;
  padding:8px 12px 12px !important;
}
.header .mobile-nav a{
  color:#111827 !important;
}
.header .mobile-nav a:hover{
  background:#e5e7eb !important;
  color:#000 !important;
}

.brand img{
  width:184px !important;  /* 2x logo */
  height:auto !important;
  padding:0 !important;
  border-radius:16px !important;
  background:#f3f4f6 !important; /* match header */
  border:0 !important;
  box-shadow:none !important;
}
.brand .name{ color:#111827 !important; }
.brand .sub{ color:#374151 !important; }
.header .nav a{ color:#111827 !important; }
.header .nav a:hover{ color:#000000 !important; }

.header .btn.secondary{
  background:#111827 !important;
  color:#ffffff !important;
  border-color:#111827 !important;
}
.header .btn.secondary:hover{ background:#0b1220 !important; }

.header .mobile-toggle{
  background:#e5e7eb !important;
  border-color:#cbd5e1 !important;
  color:#111827 !important;
}

/* Footer: make footer background constrained to container as well */
.footer{
  background: transparent !important;
  border-top:none !important;
  padding:18px 0 22px !important;
}
.footer > .container{
  background:#f3f4f6 !important;
  border:1px solid rgba(17,24,39,.12) !important;
  border-radius:22px !important;
  box-shadow: 0 8px 26px rgba(0,0,0,.10) !important;
}
.footer-inner{ padding:28px 18px 14px !important; }
.copyright{
  border-top:1px solid rgba(17,24,39,.12) !important;
  padding:12px 18px 14px !important;
  color:#374151 !important;
}
.footer h4, .footer p, .footer a, .footer small{ color:#111827 !important; }
.footer a:hover{ color:#000000 !important; }

/* Ensure body content still uses the same container width */
.container{ max-width:1150px; }

/* Responsive: prevent header overflow on tablet/mobile */
@media (max-width: 920px){
  .brand img{ width:160px !important; }
  .brand .sub{ display:none; }
  .header-inner{ padding:10px 10px !important; }
  .header > .container{ border-radius:20px !important; }
  .footer > .container{ border-radius:20px !important; }
}
@media (max-width: 520px){
  .brand img{ width:130px !important; }
  .header{ padding:8px 0 !important; }
  .header-inner{ gap:10px !important; padding:10px 8px !important; }
  .header .mobile-nav{ padding:8px 8px 12px !important; }
  .btn{ padding:10px 12px; border-radius:18px; }
}


/* MailerLite embedded form tweaks */
.ml-embedded{width:100%;}
