:root{
  --bg:#0b1220;
  --card:#0f1a2e;
  --text:#e6edf7;
  --muted:#b5c2d9;
  --line:rgba(255,255,255,.10);
  --brand1:#3B82F6;
  --brand2:#22C55E;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 20px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:
    radial-gradient(1000px 600px at 20% 10%, rgba(59,130,246,.25), transparent 60%),
    radial-gradient(900px 600px at 90% 0%, rgba(34,197,94,.18), transparent 55%),
    linear-gradient(180deg, #070b14, #0b1220 40%, #0b1220);
  color:var(--text);
}
a{color:inherit}
.container{max-width:1150px; margin:0 auto; padding:0 20px}
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.55);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:18px;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand img{height:36px; width:auto}
.brand .name{font-weight:800; letter-spacing:.5px}
.brand .sub{font-size:12px; color:var(--muted); margin-top:2px}
.menu{display:flex; gap:14px; flex-wrap:wrap; align-items:center}
.menu a{
  text-decoration:none; color:var(--muted);
  font-weight:650; font-size:14px; padding:10px 10px; border-radius:12px;
}
.menu a:hover{color:var(--text); background: rgba(255,255,255,.06)}
.cta{
  display:inline-flex; align-items:center; gap:10px;
  text-decoration:none; font-weight:800;
  padding:10px 14px; border-radius:14px;
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  color:#07111f;
  box-shadow: 0 18px 40px rgba(59,130,246,.20);
}
.hero{padding:72px 0 32px}
.hero-grid{display:grid; grid-template-columns: 1.25fr .75fr; gap:24px; align-items:stretch}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px; border:1px solid var(--line); border-radius:999px;
  color:var(--muted); font-weight:700; font-size:13px;
  background: rgba(255,255,255,.03);
}
.kicker .dot{width:10px; height:10px; border-radius:999px; background: linear-gradient(135deg, var(--brand1), var(--brand2))}
h1{font-size: clamp(34px, 4vw, 54px); line-height:1.05; margin:16px 0 12px; letter-spacing:-.6px}
.lead{font-size:18px; color:var(--muted); line-height:1.6; margin:0 0 22px}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  border:1px solid var(--line);
  text-decoration:none; font-weight:800;
  background: rgba(255,255,255,.03);
}
.btn:hover{background: rgba(255,255,255,.06)}
.card{
  background: rgba(15,26,46,.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card{padding:18px; display:flex; flex-direction:column; gap:14px}
.hero-card .mini{
  display:flex; align-items:flex-start; gap:12px;
  padding:12px; border-radius:16px; border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.badge{
  font-size:12px; font-weight:800; letter-spacing:.2px;
  padding:6px 10px; border-radius:999px;
  background: rgba(59,130,246,.14);
  border:1px solid rgba(59,130,246,.25);
  color: #cfe2ff;
  height: fit-content;
}
.badge.green{
  background: rgba(34,197,94,.14);
  border:1px solid rgba(34,197,94,.25);
  color:#d7ffe8;
}
.section{padding:44px 0}
.section h2{margin:0 0 10px; font-size:28px}
.section p{margin:0; color:var(--muted); line-height:1.7}
.grid3{margin-top:18px; display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.feature{padding:18px}
.feature h3{margin:0 0 8px; font-size:18px}
.feature p{margin:0; color:var(--muted); line-height:1.7}
.split{display:grid; grid-template-columns: 1fr 1fr; gap:16px; margin-top:18px}
.list{margin:10px 0 0; padding-left:18px; color:var(--muted); line-height:1.8}
.pill-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.pill{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:999px;
  padding:8px 12px;
  color:var(--muted); font-weight:700; font-size:13px;
}
.footer{padding:34px 0; border-top:1px solid var(--line); background: rgba(0,0,0,.15); margin-top:40px}
.footer-grid{display:grid; grid-template-columns: 1.5fr 1fr 1fr; gap:16px}
.small{color:var(--muted); font-size:13px; line-height:1.7}
.footer a{color:var(--muted); text-decoration:none}
.footer a:hover{color:var(--text)}
hr.sep{border:none; border-top:1px solid var(--line); margin:14px 0}
.form{display:grid; gap:10px; margin-top:12px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
.notice{font-size:12px; color:var(--muted); line-height:1.6}
@media (max-width: 940px){
  .hero-grid{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .menu{display:none}
  .menu.show{display:flex}
  .hamb{display:inline-flex}
}
.hamb{
  display:none; align-items:center; justify-content:center;
  width:44px; height:44px; border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  cursor:pointer;
}



/* === HALO X LIGHT CORPORATE THEME === */
body{
  background: #f5f7fb !important;
  color: #0f172a !important;
}

.nav{
  background: #ffffff !important;
  border-bottom: 1px solid rgba(15,23,42,.08) !important;
}

.card{
  background: #ffffff !important;
  box-shadow: 0 8px 25px rgba(15,23,42,.08) !important;
}

.footer{
  background: #f1f5f9 !important;
  color: #334155 !important;
}

.menu a{
  color:#334155 !important;
}

.menu a:hover{
  color:#0f172a !important;
}



/* === VISIBILITY ENHANCEMENT === */

body{
  background: #ffffff !important;
  color: #111827 !important;
  font-size: 18px !important;
}

h1{
  font-size: clamp(42px, 4vw, 64px) !important;
  color: #0f172a !important;
}

h2{
  font-size: 32px !important;
  color: #0f172a !important;
}

h3{
  font-size: 22px !important;
  color: #0f172a !important;
}

.lead{
  font-size: 21px !important;
  color: #334155 !important;
}

.menu a{
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
}

.card{
  border: 1px solid #e5e7eb !important;
}

.footer{
  color: #334155 !important;
}
