
:root{
  --bg:#f8fafc;
  --surface:#ffffff;
  --surface-2:#f1f5f9;
  --text:#0f172a;
  --muted:#475569;
  --border:rgba(15,23,42,0.08);
  --brand:#2563eb;
  --brand-2:#0ea5e9;
  --brand-dark:#1d4ed8;
  --shadow:0 12px 30px rgba(15,23,42,0.06);
  --radius:22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter, Arial, sans-serif;
}
img{max-width:100%;display:block}
a{color:inherit}
.wrap{
  width:min(calc(100% - 32px), 1200px);
  margin:0 auto;
}
.container-narrow{
  width:min(calc(100% - 32px), 920px);
  margin:0 auto;
}
.section{padding:36px 0}
.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow);
}
h1,h2,h3{
  margin:0 0 16px;
  letter-spacing:-0.03em;
  color:var(--text);
}
p{
  margin:0 0 16px;
  font-size:17px;
  line-height:1.8;
  color:var(--muted);
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(37,99,235,0.08);
  color:var(--brand);
  font-size:13px;
  font-weight:800;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.btn-row,.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 22px;
  border-radius:999px;
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  white-space:nowrap;
  transition:all .18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;
  border-color:transparent;
}
.btn-primary:hover{
  background:linear-gradient(135deg,var(--brand-dark),var(--brand));
}
.btn-secondary{
  background:var(--surface);
  color:#334155;
}
.btn-secondary:hover{
  background:var(--surface-2);
}
.footer{
  text-align:center;
  color:#64748b;
  font-size:14px;
  padding:18px 0 44px;
  white-space:nowrap;
}
@media (max-width:768px){
  .section{padding:28px 0}
  p{font-size:16px;line-height:1.75}
  .footer{white-space:normal}
  .btn{padding:11px 18px}
}


/* v34 light theme polish */
body:not(.theme-dark) .header{
  background: rgba(255,255,255,0.98);
  box-shadow: 0 1px 0 rgba(15,23,42,0.04);
}
body:not(.theme-dark) .brand{
  color:#0f172a;
}
body:not(.theme-dark) .navlinks a,
body:not(.theme-dark) .theme-btn{
  background:#ffffff;
  border:1px solid rgba(15,23,42,0.06);
  color:#334155;
}
body:not(.theme-dark) .navlinks a:hover,
body:not(.theme-dark) .theme-btn:hover{
  background:#f8fafc;
}
body:not(.theme-dark) .footer{
  color:#94a3b8;
}


.site-footer{
  padding: 28px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-wrap{
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}
.footer-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.footer-links a{
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.footer-links a:hover{
  color: var(--text);
}
.footer-copy{
  margin: 0;
  font-size: 14px;
  color: #64748b;
}
body.theme-dark .footer-copy{
  color: rgba(255,255,255,0.62);
}


/* v123 domination UI */
.breadcrumb{
  font-size:12px;
  margin-bottom:10px;
  opacity:0.7;
}
.pillar-section{
  margin-top:24px;
  padding:16px;
  border-radius:12px;
  background:rgba(255,255,255,0.03);
}
.related-advanced{
  margin-top:16px;
}
