:root{
  --bg: #ffffff;
  --text: #0b1220;
  --muted: #546178;
  --muted2: #6b7791;
  --border: rgba(15, 23, 42, .12);
  --border2: rgba(15, 23, 42, .08);
  --shadow: 0 18px 60px rgba(15, 23, 42, .10);
  --shadow2: 0 10px 30px rgba(15, 23, 42, .10);
  --brand: #2457ff;
  --brand2: #7c3aed;
  --good: #0f9d86;
  --bad: #d11f4a;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  box-shadow: var(--shadow2);
  z-index: 50;
}

.container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px;
}

.site-header{
  position: sticky;
  top:0;
  z-index: 40;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border2);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand.small .brand-name{ font-size: 14px; }
.brand.small .brand-tag{ font-size: 12px; }

.logo{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  position: relative;
  border: 1px solid var(--border);
  background: radial-gradient(circle at 30% 25%, rgba(36,87,255,.30), transparent 55%),
              radial-gradient(circle at 70% 75%, rgba(124,58,237,.28), transparent 58%),
              linear-gradient(135deg, rgba(36,87,255,.20), rgba(124,58,237,.15));
  box-shadow: 0 10px 26px rgba(36,87,255,.08);
}
.logo-core{
  position:absolute;
  inset: 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(36,87,255,.85), rgba(124,58,237,.75));
  filter: saturate(1.05);
}
.logo-ring{
  position:absolute;
  inset: 6px;
  border-radius: 14px;
  border: 1px solid rgba(36,87,255,.18);
}

.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name{ font-weight: 750; letter-spacing:.2px; }
.brand-tag{ font-size: 12px; color: var(--muted); }

.nav{ display:flex; gap: 14px; align-items:center; }
.nav-link{ color: var(--muted); font-size: 14px; padding: 8px 10px; border-radius: 10px; }
.nav-link:hover{ color: var(--text); background: rgba(15, 23, 42, .04); text-decoration:none; }

.header-cta{ display:flex; align-items:center; gap: 10px; }

.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(36,87,255,.18);
  background: rgba(36,87,255,.06);
  color: rgba(13, 35, 92, .92);
  font-weight: 650;
  font-size: 12px;
}
.badge-dot{ width: 8px; height: 8px; border-radius: 99px; background: linear-gradient(135deg, var(--brand), var(--brand2)); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 650;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .06);
  cursor: pointer;
  user-select: none;
}
.btn:hover{ text-decoration:none; transform: translateY(-1px); box-shadow: 0 10px 28px rgba(15, 23, 42, .10); }
.btn:active{ transform: translateY(0); }
.btn:disabled{ opacity:.6; cursor:not-allowed; transform:none; }

.btn-primary{
  border-color: rgba(36,87,255,.28);
  background: linear-gradient(135deg, rgba(36,87,255,.92), rgba(124,58,237,.84));
  color: #fff;
}
.btn-primary:hover{ box-shadow: 0 14px 40px rgba(36,87,255,.18); }

.btn-soft{
  background: rgba(15,23,42,.04);
  border-color: rgba(15,23,42,.10);
}

.btn-ghost{
  background: transparent;
  border-color: rgba(15,23,42,.10);
  box-shadow: none;
}
.btn-ghost:hover{ background: rgba(15,23,42,.04); box-shadow:none; }

.btn-block{ width: 100%; }

.hero{
  position: relative;
  padding: 28px 0 18px;
  overflow: hidden;
}
.hero-grid{
  position: relative;
  z-index: 2;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;

  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 12px; }
.pill{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.85);
  font-size: 12px;
  color: var(--muted);
}
.pill-soft{ border-color: rgba(36,87,255,.18); background: rgba(36,87,255,.05); color: rgba(13, 35, 92, .85); }

.headline{ font-size: clamp(34px, 4.1vw, 52px); line-height: 1.06; margin: 14px 0 10px; letter-spacing: -0.6px; }
.headline-accent{ background: linear-gradient(135deg, var(--brand), var(--brand2)); -webkit-background-clip:text; background-clip:text; color: transparent; }

.subhead{ color: var(--muted); font-size: 16px; line-height: 1.65; max-width: 56ch; margin: 0 0 16px; }

.checks{ list-style:none; padding:0; margin: 0 0 18px; display:grid; gap: 10px; }
.checks li{ display:flex; gap: 10px; color: rgba(11,18,32,.92); }
.check{
  width: 18px;
  height: 18px;
  border-radius: 6px;
  flex: 0 0 18px;
  margin-top: 2px;
  background: rgba(36,87,255,.10);
  border: 1px solid rgba(36,87,255,.18);
  position: relative;
}
.check:after{
  content:"";
  position:absolute;
  left: 5px;
  top: 3px;
  width: 6px;
  height: 10px;
  border-right: 2px solid rgba(36,87,255,.85);
  border-bottom: 2px solid rgba(36,87,255,.85);
  transform: rotate(40deg);
}

.cta-row{ display:flex; gap: 12px; flex-wrap: wrap; margin: 8px 0 10px; }
.micro{ color: var(--muted2); font-size: 12.5px; }

.hero-panel{
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel-top{ padding: 18px 18px 8px; }
.panel-title{ font-weight: 760; font-size: 16px; }
.panel-sub{ color: var(--muted); font-size: 13px; margin-top: 6px; }

.interest{ padding: 12px 18px 16px; }
.field{ display:block; margin-bottom: 12px; }
.field-label{ display:block; font-size: 12px; color: var(--muted); margin-bottom: 6px; }

.input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, .14);
  background: #fff;
  color: var(--text);
  font-size: 14px;
  outline: none;
}
.input:focus{
  border-color: rgba(36,87,255,.45);
  box-shadow: 0 0 0 4px rgba(36,87,255,.12);
}

.status{ min-height: 18px; margin-top: 10px; font-size: 13px; color: var(--muted); }
.status[data-kind="good"]{ color: var(--good); }
.status[data-kind="bad"]{ color: var(--bad); }

.fineprint{ margin-top: 12px; font-size: 11.5px; color: var(--muted2); line-height: 1.45; }

.panel-foot{ border-top: 1px solid var(--border2); padding: 14px 18px; background: rgba(15,23,42,.02); }
.signal{ display:flex; gap: 12px; align-items:flex-start; }
.signal-dot{ width: 12px; height: 12px; border-radius: 999px; margin-top: 3px; background: linear-gradient(135deg, var(--brand), var(--brand2)); box-shadow: 0 10px 22px rgba(36,87,255,.18); }
.signal-strong{ font-weight: 700; font-size: 13px; }
.signal-muted{ color: var(--muted); font-size: 12px; margin-top: 2px; }

.hero-bg{ position:absolute; inset:0; z-index:1; pointer-events:none; }
.hero-orb{ position:absolute; width: 520px; height: 520px; border-radius: 999px; filter: blur(28px); opacity: .28; }
.hero-orb-a{ left: -240px; top: -260px; background: radial-gradient(circle at 30% 30%, rgba(36,87,255,.75), transparent 60%); }
.hero-orb-b{ right: -280px; top: -220px; background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.65), transparent 62%); }
.hero-gridlines{
  position:absolute;
  inset: -10px;
  opacity: .55;
  background-image:
    linear-gradient(rgba(15,23,42,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 20% 20%, #000 0%, transparent 55%);
}

.section{ padding: 44px 0; }
.section-soft{ background: rgba(15,23,42,.02); border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); }
.section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap: 18px; flex-wrap:wrap; margin-bottom: 18px; }
.section-head h2{ margin: 0; font-size: 26px; letter-spacing: -0.4px; }
.section-head p{ margin: 0; color: var(--muted); max-width: 68ch; }

.feature-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature{
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 12px 36px rgba(15,23,42,.06);
}
.feature-icon{ width: 36px; height: 36px; border-radius: 14px; display:grid; place-items:center; background: rgba(36,87,255,.06); border: 1px solid rgba(36,87,255,.14); margin-bottom: 10px; }
.feature h3{ margin: 6px 0 6px; font-size: 16px; }
.feature p{ margin: 0; color: var(--muted); line-height: 1.55; }

.divider{ height: 1px; background: var(--border2); margin: 22px 0; }

.split{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.split-card{ border: 1px solid var(--border); border-radius: 18px; background: #fff; padding: 18px; box-shadow: 0 12px 36px rgba(15,23,42,.06); }
.split-card h3{ margin: 0 0 10px; font-size: 16px; }
.bullets{ margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.6; }

.trust-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.trust{ border: 1px solid var(--border); border-radius: 18px; padding: 16px; background:#fff; box-shadow: 0 12px 36px rgba(15,23,42,.06); }
.trust-k{ font-weight: 750; }
.trust-v{ margin-top: 6px; color: var(--muted); line-height: 1.55; }

.cta-banner{ margin-top: 18px; border-radius: 20px; border: 1px solid rgba(36,87,255,.22); background: linear-gradient(135deg, rgba(36,87,255,.08), rgba(124,58,237,.06)); padding: 18px; display:flex; align-items:center; justify-content:space-between; gap: 14px; flex-wrap:wrap; }
.cta-banner-title{ font-weight: 800; font-size: 16px; }
.cta-banner-sub{ margin-top: 4px; color: var(--muted); }

.site-footer{ padding: 26px 0; }
.footer-inner{ display:flex; align-items:flex-start; justify-content:space-between; gap: 18px; flex-wrap:wrap; }
.copyright{ margin-top: 8px; color: var(--muted2); font-size: 12.5px; }
.footer-right{ display:flex; align-items:center; gap: 10px; color: var(--muted); font-size: 13px; }
.sep{ opacity: .5; }

/* Hard-hide honeypot no matter what */
input[name="company"]{ display:none !important; }

@media (max-width: 980px){
  .nav{ display:none; }
  .hero-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .feature-grid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .trust-grid{ grid-template-columns: 1fr; }
  .btn{ width: 100%; }
  .header-cta .btn{ width: auto; }
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; transition:none !important; animation:none !important; }
}












/* --- How it works page patch (matches landing hero + panels) --- */
.hero-compact { padding-top: 28px; padding-bottom: 18px; }


/* feature grid + charts */
.features-4{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.viz-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}
.viz-svg{ width:100%; height:auto; display:block; }
.small{ font-size: 13px; }

/* make the hero-panel inner content spacing consistent with index */
.hero-panel > div[style] { padding-top: 16px !important; padding-bottom: 8px !important; }

@media (max-width: 980px){
  .features-4{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .viz-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .features-4{ grid-template-columns: 1fr; }
}

/* HOW PAGE ONLY: center the hero background mask (Safari + Firefox) */

.page-how .hero-copy{ grid-column: 1 / -1; }
.page-how .hero-grid{
  grid-template-columns: 1fr !important;
}
.page-how .hero-copy{
  max-width: 760px;
}