:root{
  --bg:#ffffff;
  --text:#0b1220;
  --muted:#5b6472;
  --border:#e7ebf2;
  --shadow:0 10px 30px rgba(11,18,32,.06);
  --max:1100px;
  --radius:16px;
  --accent:#0a66c2;
  --prose:74ch;
  --space:56px;
}

*{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;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

img{max-width:100%; height:auto; display:block}
.wrap{max-width:var(--max); margin:0 auto; padding:0 20px}
.muted{color:var(--muted)}

/* ================= NAV / HEADER ================= */
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(180%) blur(10px);
  background:rgba(255,255,255,.86);
  border-bottom:1px solid var(--border);
}

.nav-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  padding:18px 0 20px;
}

.brand{
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:inherit;
}

/* HEADER LOGO — FORCE BIG, NEVER SQUISH */
.header-logo{
  height: 92px !important;
  width: auto !important;
  max-width: none !important;
  filter: none !important;
  opacity: 1 !important;
}

@media (max-width: 720px){
  .header-logo{ height: 76px !important; }
}

.nav-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}
.nav-links a{
  color:var(--muted);
  text-decoration:none;
  font-size:14px;
  padding:8px 10px;
  border-radius:999px;
}
.nav-links a:hover{background:#f3f5f9; color:var(--text)}

.nav-actions{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
}
.nav-actions select{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  font:inherit;
  color:var(--muted);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  padding:12px 16px;
  border-radius:999px;
  font-weight:650;
  box-shadow:0 1px 0 rgba(11,18,32,.04)
}
.btn:hover{transform:translateY(-1px)}
.btn.primary{background:var(--accent); color:#fff; border-color:transparent}

/* ================= HERO ================= */
.hero{padding:36px 0 10px}
.hero-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:26px; align-items:start}
.kicker{color:var(--muted); font-weight:650; margin:0 0 10px}
.hero h1{margin:0 0 10px; font-size:42px; line-height:1.08; letter-spacing:-.8px}
.hero .sub{margin:0 0 18px; font-size:18px; color:var(--muted); max-width:60ch}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:14px}

.hero-proof{
  margin:0;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
}

/* ================= SECTIONS ================= */
.section{padding:var(--space) 0}
.section-sep{height:1px; background:var(--border); margin-bottom:24px}
.section h2{margin:0 0 10px; font-size:28px; letter-spacing:-.4px}
.lead{margin:0 0 18px; color:var(--muted); font-size:16px}

.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}
.tile{padding:18px; background:#fff; border:1px solid var(--border); border-radius:var(--radius); box-shadow:var(--shadow)}
.tile h3{margin:0 0 8px; font-size:16px}
.tile p{margin:0; color:var(--muted)}

.card{background:#fff; border:1px solid var(--border); border-radius:var(--radius); box-shadow:var(--shadow); padding:18px}
.divider{height:1px; background:var(--border); margin:22px 0}
.list{margin:0; padding-left:18px; color:var(--muted)}

/* ================= FORM ================= */
form{display:grid; gap:12px}
label{display:block; font-size:13px; color:var(--muted); margin-bottom:6px}
input, textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 12px;
  font:inherit;
  outline:none;
}
textarea{min-height:130px; resize:vertical}
input:focus, textarea:focus{border-color:rgba(10,102,194,.55); box-shadow:0 0 0 4px rgba(10,102,194,.12)}

/* ================= FOOTER ================= */
.footer{border-top:1px solid var(--border); padding:26px 0; color:var(--muted)}
.footer-row{display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap}

/* FOOTER LOGO — GREYSCALE + NEVER SQUISH */
.footer-logo{
  display:block !important;
  height: 54px !important;
  width: auto !important;
  max-width: 340px !important;
  filter: grayscale(100%) contrast(110%) brightness(90%) !important;
  opacity: .75 !important;
}

@media (max-width: 720px){
  .footer-logo{ height: 46px !important; }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr;}
  .hero h1{font-size:36px}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
}