:root{
  --ink:#101828; --muted:#667085; --line:#E4E7EC; --brand:#673DE6;
  --bg:#F7FBFC; --card:#FFFFFF; --link:#4F46E5; --link-hover:#4338CA;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--ink);
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,'Helvetica Neue',Arial,'Noto Sans',sans-serif}

/* Header */
.header{display:flex;align-items:center;justify-content:space-between;
  padding:12px 16px;border-bottom:1px solid var(--line);background:#fff;position:sticky;top:0;z-index:10}
.brand{font-weight:700;font-size:16px}
.last-updated{font-size:12px;color:var(--muted)}

/* Full-bleed banner */
.banner-marquee{
  width:100vw; position:relative; left:50%; right:50%;
  margin-left:-50vw; margin-right:-50vw; border-bottom:1px solid var(--line);
  background:#f9f5ff; overflow:hidden; white-space:nowrap;
}
.marquee-inner{display:inline-block;padding:8px 0;animation:scroll 22s linear infinite}
.banner-item{display:inline-block;margin:0 24px;color:#4E2ADB;font-weight:600}
@keyframes scroll{0%{transform:translateX(100%)}100%{transform:translateX(-100%)}}

/* Sub-nav aligned to the same left margin as the table */
.subnav{
  border-bottom:1px solid var(--line);
  background:#fff;
}

/* Use the shared .container to align with table; add row styling here */
.subnav-inner{
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 0; /* vertical only; left/right come from .container */
}

/* Buttons */
.subnav-btn{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:#EEF2FF;
  color:#3730A3;
  font-weight:600;
  font-size:14px;
  text-decoration:none;
  border:1px solid #E0E7FF;
}
.subnav-btn:hover{ background:#E0E7FF; color:#312E81; }
.subnav-btn.is-active{ background:#4338CA; color:#fff; border-color:#4338CA; }


/* Layout */
.container{max-width:1280px;margin:0 auto;padding:16px}
.controls{display:flex;flex-wrap:wrap;gap:12px;align-items:center;justify-content:flex-start;margin:12px 0}
.filters{display:flex;gap:8px;align-items:center;flex-wrap:wrap}
.filters select,.input{border:1px solid var(--line);border-radius:8px;padding:8px 10px;font-size:14px;background:#fff}
.input{width:260px;max-width:70vw}

/* Table card */
.table-wrap{overflow:auto;border:1px solid var(--line);border-radius:14px;background:var(--card);
  box-shadow:0 6px 18px rgba(16,24,40,0.06)}

/* DataTable look */
.display{border-collapse:separate;border-spacing:0;width:100%}
.display thead th{position:sticky;top:0;background:#F9FAFB;border-bottom:1px solid var(--line);
  text-align:left;padding:10px 12px;font-size:12px;color:#475467;z-index:1;font-weight:600}
.display tbody td{padding:10px 12px;border-bottom:1px solid #F1F3F5;font-size:14px;vertical-align:top}
.display tbody tr:nth-child(odd) td{background:#FCFCFD}
.display tbody tr:hover td{background:#F5F7FF;transition:background .15s ease}
.display a{color:var(--link);text-decoration:none}
.display a:hover{color:var(--link-hover);text-decoration:underline}

/* Numeric alignment helpers (both pages) */
#pricingTable td:nth-child(3),
#pricingTable td:nth-child(4),
#pricingTable td:nth-child(5),
#pricingTable td:nth-child(6){white-space:nowrap;text-align:right}

/* Details panel for responsive folding */
.kp-detail{display:grid;gap:10px;padding:12px;background:#F9FAFB;border-top:1px dashed #E5E7EB}
.kp-detail-row{display:grid;grid-template-columns:160px 1fr;gap:10px;align-items:start}
.kp-detail-label{font-size:12px;color:#667085;font-weight:600}
.kp-detail-value{font-size:14px;color:#101828;word-break:break-word}

/* Landing hero */
.hero{padding:40px 16px}
.hero h1{margin:0 0 6px 0}
.hero p{color:#667085;margin:0 0 16px 0}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap}
.cta{display:inline-block;padding:10px 16px;border-radius:10px;background:#4338CA;color:#fff;text-decoration:none;font-weight:600;border:1px solid #4338CA}
.cta.outline{background:#fff;color:#4338CA}

/* Responsive tweaks */
@media (max-width:1024px){ .input{width:220px} }
@media (max-width:768px){ .filters{gap:6px} .input{width:180px} }
@media (max-width:480px){
  .input{width:140px}
  .table-wrap{border-radius:10px}
  .display tbody td,.display thead th{padding:8px}
  .kp-detail-row{grid-template-columns:120px 1fr}
}
