:root{
  --bg: #0B1220;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.09);
  --text: rgba(255,255,255,0.90);
  --muted: rgba(255,255,255,0.70);
  --line: rgba(255,255,255,0.12);
  --brand: #22C55E; /* close to logo green */
  --brand2: #16A34A;
  --navy: #0F1A2C;
  --shadow: 0 18px 45px rgba(0,0,0,0.45);
  --radius: 18px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  background: radial-gradient(1200px 650px at 15% 0%, rgba(34,197,94,0.18), transparent 55%),
              radial-gradient(900px 600px at 90% 10%, rgba(34,197,94,0.10), transparent 60%),
              linear-gradient(180deg, #070B14 0%, var(--bg) 35%, #070B14 100%);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
a:hover{opacity:0.92}

.container{max-width:var(--max); margin:0 auto; padding:0 22px}
.section{padding:86px 0}
.section.compact{padding:58px 0}
.kicker{
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-weight:700;
  font-size:12px;
  color:var(--muted);
}
h1{
  font-size: clamp(36px, 4.4vw, 58px);
  line-height:1.05;
  margin:14px 0 16px;
}
h2{
  font-size: clamp(24px, 3vw, 36px);
  line-height:1.15;
  margin:10px 0 14px;
}
p{color:var(--muted); line-height:1.7; font-size:16px; margin:0 0 14px}
.lead{font-size:18px; color:rgba(255,255,255,0.78)}
hr.sep{
  border:0;
  height:1px;
  background:linear-gradient(90deg, transparent, var(--line), transparent);
  margin:0;
}

.nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(7,11,20,0.65);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand img{
  height:34px;
  width:auto;
  display:block;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav-links a{
  color:rgba(255,255,255,0.78);
  font-weight:600;
  font-size:14px;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
}
.nav-links a:hover{
  color:rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(34,197,94,0.35);
  background: linear-gradient(180deg, rgba(34,197,94,0.18), rgba(34,197,94,0.08));
  color:rgba(255,255,255,0.92);
  font-weight:800;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0px)}
.btn.secondary{
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  font-weight:700;
}

.hero{
  position:relative;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:34px;
  align-items:center;
}
.hero-card{
  border:1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.hero-card::before{
  content:"";
  position:absolute;
  inset:-40px -30px auto auto;
  width:320px;
  height:320px;
  background: radial-gradient(circle at 30% 30%, rgba(34,197,94,0.32), transparent 60%);
  filter: blur(2px);
  pointer-events:none;
}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.badge{
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  padding:8px 10px;
  border-radius:999px;
  font-size:13px;
  color:rgba(255,255,255,0.78);
  font-weight:600;
}

.submark{
  position:absolute;
  right:-120px;
  top:120px;
  width:420px;
  opacity:0.07;
  transform: rotate(8deg);
  pointer-events:none;
  filter: saturate(1.1);
}
.submark.bottom{
  right:auto;
  left:-140px;
  top:auto;
  bottom:-120px;
  transform: rotate(-10deg);
  width:460px;
  opacity:0.05;
}

.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:22px}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.card{
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding:20px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}
.card h3{margin:0 0 10px; font-size:18px; line-height:1.2}
.card ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.8}
.card li{margin:6px 0}
.callout{
  border:1px solid rgba(34,197,94,0.28);
  background: linear-gradient(180deg, rgba(34,197,94,0.10), rgba(255,255,255,0.03));
}
.quote{
  font-size:18px;
  color:rgba(255,255,255,0.82);
  line-height:1.6;
}
.quote strong{color:rgba(255,255,255,0.94)}
.pills{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.pill{
  border:1px solid rgba(34,197,94,0.25);
  background: rgba(34,197,94,0.08);
  color:rgba(255,255,255,0.82);
  padding:8px 10px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
}

.footer{
  padding:42px 0;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,0.22);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
}
.small{font-size:13px; color:rgba(255,255,255,0.65)}
.email{
  font-weight:800;
  color:rgba(255,255,255,0.90);
  border-bottom:1px dashed rgba(255,255,255,0.35);
}

@media (max-width: 960px){
  .hero-grid{grid-template-columns:1fr; gap:18px}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .brand{min-width:auto}
  .submark{display:none}
}
