:root{
  --bg:#ffffff;
  --text:#0b1220;
  --muted:#4b5563;
  --muted2:#6b7280;
  --border:rgba(15,23,42,.10);
  --card:#ffffff;
  --shadow: 0 22px 55px rgba(2,8,23,.08);
  --shadow2: 0 10px 26px rgba(2,8,23,.07);
  --radius: 18px;
  --accent:#e11d48;      /* brand accent (red-ish like enterprise SaaS) */
  --accent2:#2563eb;     /* secondary */
}
*{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;
  color:var(--text);
  background:
    radial-gradient(900px 480px at 20% 0%, rgba(37,99,235,.07), transparent 55%),
    radial-gradient(950px 520px at 85% 10%, rgba(225,29,72,.06), transparent 55%),
    var(--bg);
}
a{color:inherit; text-decoration:none}
.container{width:min(1160px, 92vw); margin-inline:auto}
.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0;}
.brand{display:flex; align-items:center; gap:10px; font-weight:900;}
.brand-badge{
  width:42px;height:42px;border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  box-shadow: var(--shadow2);
  display:grid; place-items:center; overflow:hidden;
}
.brand-badge img{width:100%;height:100%;object-fit:contain;padding:7px}
.brand span small{display:block; color:var(--muted2); font-weight:700; margin-top:2px; font-size:12px}

.navlinks{display:flex; gap:6px; align-items:center}
.navlinks a{
  padding:9px 12px; border-radius:999px;
  color: rgba(11,18,32,.88);
  font-weight:800;
}
.navlinks a:hover{background: rgba(2,8,23,.04)}
.navlinks a.active{background: rgba(225,29,72,.10); color: var(--accent);}
.cta{
  padding:10px 14px; border-radius:999px;
  background: var(--accent);
  border:0; color:white; font-weight:900;
  box-shadow: 0 18px 44px rgba(225,29,72,.20);
  display:inline-flex; align-items:center; justify-content:center;
}
.cta:hover{filter:brightness(1.03)}
.burger{display:none; border:1px solid var(--border); background:#fff; color:var(--text); padding:10px 12px; border-radius:12px; font-weight:900}
.mobilemenu{display:none; padding:10px 0 16px}
.mobilemenu a{
  display:block; padding:10px 12px;
  border:1px solid var(--border);
  background: #fff;
  border-radius:12px;
  margin-top:10px;
  font-weight:800;
}
.mobilemenu.show{display:block}

.hero{padding:56px 0 26px}
.hero-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:28px; align-items:center;}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background:#fff;
  box-shadow: var(--shadow2);
  color: rgba(11,18,32,.90);
  font-weight:900;
}
.kicker .dot{width:9px; height:9px; border-radius:999px; background: var(--accent); box-shadow:0 0 0 6px rgba(225,29,72,.12);}
h1{margin:14px 0 10px; font-size: clamp(36px, 4.8vw, 62px); line-height:1.03; letter-spacing:-.9px;}
.lead{color:var(--muted); font-size: 17px; line-height:1.8; max-width: 56ch;}
.hero-actions{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 14px; border-radius:999px;
  border:1px solid var(--border);
  background: #fff;
  color:rgba(11,18,32,.92);
  font-weight:900;
  box-shadow: var(--shadow2);
}
.btn:hover{background: rgba(2,8,23,.03)}
.btn.primary{
  border:0;
  background: var(--accent);
  color:white;
  box-shadow: 0 18px 44px rgba(225,29,72,.20);
}
.note{margin-top:12px; color: var(--muted2); font-size: 13px; line-height:1.7}

.card{border:1px solid var(--border); background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);}
.panel{padding:22px}
.hero-right{padding:22px}
.hero-right h3{margin:0 0 10px; font-size:14px; color: var(--muted2); letter-spacing:.06em; text-transform:uppercase}
.featurelist{display:grid; gap:12px; margin-top:10px}
.item{
  display:flex; gap:12px; align-items:flex-start;
  padding:14px; border-radius:16px; border:1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.9);
}
.item .ic{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  border:1px solid rgba(15,23,42,.08);
  background: rgba(225,29,72,.08);
  font-size:18px;
}
.item strong{display:block; font-size:15px; margin-bottom:4px}
.item span{color:var(--muted); font-size:13px; line-height:1.65}

.lottiebox{
  border-radius:16px;
  border:1px solid rgba(15,23,42,.08);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(248,250,252,1));
  overflow:hidden;
  min-height: 320px;
  box-shadow: var(--shadow2);
}
.section{padding:44px 0}
.section h2{margin:0 0 10px; font-size: 30px; letter-spacing:-.3px}
.section p.sub{margin:0 0 18px; color:var(--muted); line-height:1.8}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.grid2{display:grid; grid-template-columns: repeat(2, 1fr); gap:16px}
.feature{padding:18px; display:flex; gap:14px; align-items:flex-start}
.icon{
  width:46px; height:46px; border-radius:14px;
  border:1px solid rgba(15,23,42,.08);
  background: rgba(37,99,235,.08);
  display:grid; place-items:center;
  font-size:20px;
}
.feature h3{margin:0 0 6px; font-size: 16px}
.feature p{margin:0; color:var(--muted); line-height:1.75; font-size:14px}

.badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
.badge{
  padding:8px 10px; border-radius: 999px;
  border:1px solid rgba(15,23,42,.10);
  background: #fff;
  box-shadow: var(--shadow2);
  color: rgba(11,18,32,.88);
  font-weight:900; font-size:12px;
}

.tablewrap{overflow:auto; border-radius: var(--radius)}
table{width:100%; border-collapse: collapse; min-width: 920px}
th, td{padding:12px 12px; border-bottom:1px solid rgba(15,23,42,.08); vertical-align:top}
th{text-align:left; font-size:13px; color: rgba(75,85,99,.95); background: rgba(225,29,72,.06); position:sticky; top:0;}
td{font-size:14px; color: rgba(11,18,32,.92)}
td small{display:block; color:var(--muted); margin-top:6px; line-height:1.6}

.footer{padding:28px 0; border-top: 1px solid var(--border); color: var(--muted);}
.footergrid{display:flex; gap:16px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap}
.footer a{color: rgba(11,18,32,.92)}
.footer a:hover{text-decoration:underline}
.form{display:grid; gap:12px}
.input{
  width:100%; padding:12px 12px; border-radius: 14px;
  border:1px solid var(--border);
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow2);
}
textarea.input{min-height: 110px; resize:vertical}
.small{font-size:12px; color:var(--muted2); line-height:1.7}
.legal-note{font-size:12px; color: var(--muted2); line-height:1.75}
.post{padding:18px;}
.post .meta{font-size:12px; color:var(--muted2); font-weight:900; letter-spacing:.02em}
.post h3{margin:8px 0 6px; font-size:18px; letter-spacing:-.2px}
.post p{margin:0; color:var(--muted); line-height:1.8}
.post a.read{display:inline-flex; margin-top:12px; color:var(--accent); font-weight:900}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .grid3{grid-template-columns: 1fr}
  .grid2{grid-template-columns: 1fr}
  .navlinks{display:none}
  .burger{display:inline-flex; align-items:center; gap:8px}
}
