/* Spanloom – spl.css */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700&family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ─── TOKENS ─── */
:root {
  --ink-base: #0C0F14;
  --ink-1: #141821;
  --ink-2: #1E2533;
  --ink-3: #2A3347;
  --teal-vivid: #00C7B1;
  --teal-mid: #007A6D;
  --teal-deep: #006054;
  --brand-bg: #003D37;
  --surface-0: #FFFFFF;
  --surface-1: #F4F6F9;
  --surface-2: #E8ECF2;
  --text-on-dark: #E8EBF0;
  --text-muted-dark: #8B9AAD;
  --text-on-light: #0C1824;
  --text-muted-light: #4B5B6E;
  --text-accent-dark: #00C7B1;
  --text-accent-light: #006054;

  --font-head: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 24px;

  --container: 1160px;
  --section-pad: clamp(60px, 8vw, 100px);
  --nav-h: 64px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--text-on-dark); background: var(--ink-base); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { max-width: 68ch; }

/* ─── CONTAINER ─── */
.spl-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* ─── UTILITY ─── */
.spl-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-accent-dark);
  margin-bottom: 0.75rem;
}
.spl-eyebrow--light {
  color: var(--text-accent-light);
}
.spl-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.spl-fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.spl-fade-in.spl-visible {
  opacity: 1;
  transform: none;
}

/* ─── BUTTONS ─── */
.spl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}
.spl-btn--primary {
  background: var(--teal-vivid);
  color: var(--ink-base);
  border: 2px solid transparent;
}
.spl-btn--primary:hover {
  background: #00e0c9;
  box-shadow: 0 0 0 3px rgba(0,199,177,0.22);
}
.spl-btn--outline-dark {
  background: transparent;
  color: var(--teal-vivid);
  border: 2px solid var(--teal-vivid);
}
.spl-btn--outline-dark:hover {
  background: rgba(0,199,177,0.08);
}
.spl-btn--outline-light {
  background: transparent;
  color: var(--teal-deep);
  border: 2px solid var(--teal-deep);
}
.spl-btn--outline-light:hover {
  background: rgba(0,96,84,0.06);
}
.spl-btn--ghost-dark {
  background: transparent;
  color: var(--text-on-dark);
  border: 2px solid var(--ink-3);
}
.spl-btn--ghost-dark:hover {
  border-color: var(--text-muted-dark);
}
.spl-btn--ghost-light {
  background: transparent;
  color: var(--text-on-light);
  border: 2px solid var(--surface-2);
}
.spl-btn--ghost-light:hover {
  border-color: var(--teal-deep);
  color: var(--teal-deep);
}
.spl-btn--sm {
  padding: 7px 16px;
  font-size: 0.875rem;
}
.spl-btn--lg {
  padding: 13px 28px;
  font-size: 1rem;
}

/* ─── NAV ─── */
.spl-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.spl-nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.spl-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.spl-nav__logo img {
  height: 30px;
  width: auto;
}
.spl-logo-light { display: block; }
.spl-logo-dark  { display: none; }

.spl-nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}
.spl-nav__links a {
  padding: 6px 12px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-on-dark);
  transition: color 0.15s, background 0.15s;
}
.spl-nav__links a:hover {
  color: var(--teal-vivid);
  background: rgba(0,199,177,0.06);
}
.spl-nav__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.spl-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  margin-left: auto;
}
.spl-nav__hamburger span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: var(--text-on-dark);
  transition: background 0.2s, transform 0.25s, opacity 0.2s;
}

/* Dark-top pages: transparent nav overlaps hero */
.page--dark-top .spl-nav {
  background: transparent;
  border-bottom: 1px solid transparent;
}

/* Light-top pages: nav on white/surface bg, dark links */
.page--light-top .spl-nav {
  background: var(--surface-0);
  border-bottom: 1px solid var(--surface-2);
  box-shadow: 0 1px 0 var(--surface-2);
}
.page--light-top .spl-nav__links a {
  color: var(--text-on-light);
}
.page--light-top .spl-nav__links a:hover {
  color: var(--teal-deep);
  background: rgba(0,96,84,0.06);
}
.page--light-top .spl-nav__hamburger span {
  background: var(--text-on-light);
}
.page--light-top .spl-logo-light { display: none; }
.page--light-top .spl-logo-dark  { display: block; }

/* Scrolled state */
.spl-nav--scrolled {
  background: var(--ink-base) !important;
  border-bottom: 1px solid var(--ink-3) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.35) !important;
}
.spl-nav--scrolled .spl-nav__links a {
  color: var(--text-on-dark);
}
.spl-nav--scrolled .spl-nav__links a:hover {
  color: var(--teal-vivid);
  background: rgba(0,199,177,0.06);
}
.spl-nav--scrolled .spl-logo-light { display: block !important; }
.spl-nav--scrolled .spl-logo-dark  { display: none !important; }
.spl-nav--scrolled .spl-nav__hamburger span {
  background: var(--text-on-dark) !important;
}
.page--light-top .spl-nav--scrolled .spl-btn--ghost-light {
  color: var(--text-on-dark);
  border-color: var(--ink-3);
}
.page--light-top .spl-nav--scrolled .spl-btn--ghost-light:hover {
  border-color: var(--teal-vivid);
  color: var(--teal-vivid);
}

/* Mobile nav drawer */
.spl-nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--ink-1);
  border-bottom: 1px solid var(--ink-3);
  z-index: 99;
  padding: 20px clamp(20px, 4vw, 40px);
  flex-direction: column;
  gap: 8px;
}
.spl-nav__mobile-menu.spl-open {
  display: flex;
}
.spl-nav__mobile-menu a {
  padding: 10px 12px;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-on-dark);
  transition: background 0.15s;
}
.spl-nav__mobile-menu a:hover {
  background: var(--ink-2);
  color: var(--teal-vivid);
}
.spl-nav__mobile-menu .spl-mobile-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--ink-3);
  flex-wrap: wrap;
}

/* ─── HERO (HOME) ─── */
.spl-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--ink-base);
  position: relative;
  overflow: hidden;
}
.spl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 45%, rgba(0,199,177,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.spl-hero__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
}
.spl-hero__text {}
.spl-hero__h1 {
  color: var(--text-on-dark);
  margin-bottom: 20px;
}
.spl-hero__h1 span { color: var(--teal-vivid); }
.spl-hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-muted-dark);
  max-width: 52ch;
  margin-bottom: 36px;
  line-height: 1.65;
}
.spl-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.spl-hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-3);
  flex-wrap: wrap;
}
.spl-hero__stat-num {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal-vivid);
  line-height: 1;
}
.spl-hero__stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted-dark);
  margin-top: 4px;
}
.spl-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Trace waterfall SVG wrapper */
.spl-trace-waterfall {
  width: 100%;
  max-width: 520px;
  background: var(--ink-1);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-xl);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 12px;
}
.spl-trace-waterfall__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ink-3);
  background: var(--ink-base);
}
.spl-trace-waterfall__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.spl-trace-waterfall__title {
  font-size: 11px;
  color: var(--text-muted-dark);
  margin-left: 4px;
}
.spl-trace-waterfall__body {
  padding: 16px;
}
.spl-trace-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.spl-trace-row:last-child { margin-bottom: 0; }
.spl-trace-row__label {
  width: 140px;
  flex-shrink: 0;
  color: var(--text-muted-dark);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.spl-trace-row__bar-wrap {
  flex: 1;
  height: 14px;
  background: var(--ink-2);
  border-radius: 3px;
  position: relative;
}
.spl-trace-row__bar {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 3px;
  animation: spl-grow 1.2s ease-out both;
}
@keyframes spl-grow {
  from { width: 0; opacity: 0; }
  to   { opacity: 1; }
}
.spl-trace-row__dur {
  width: 48px;
  flex-shrink: 0;
  text-align: right;
  color: var(--text-muted-dark);
  font-size: 10px;
}

/* ─── SECTION BACKGROUNDS ─── */
.spl-bg--dark     { background: var(--ink-base); }
.spl-bg--dark-alt { background: var(--ink-1); }
.spl-bg--light    { background: var(--surface-1); }
.spl-bg--light-alt{ background: var(--surface-0); }
.spl-bg--white    { background: var(--surface-0); }
.spl-bg--brand    { background: var(--brand-bg); }

/* ─── SECTION WRAPPER ─── */
.spl-section {
  padding-block: var(--section-pad);
}
.spl-section--sm {
  padding-block: calc(var(--section-pad) * 0.6);
}

/* ─── SECTION HEAD ─── */
.spl-section-head {
  margin-bottom: 52px;
}
.spl-section-head--center {
  text-align: center;
}
.spl-section-head--center p {
  margin-inline: auto;
}
.spl-section-head h2 {
  color: var(--text-on-dark);
  margin-bottom: 14px;
}
.spl-section-head p {
  font-size: 1.0625rem;
  color: var(--text-muted-dark);
  max-width: 58ch;
  line-height: 1.65;
}
.spl-section-head--on-light h2 {
  color: var(--text-on-light);
}
.spl-section-head--on-light p {
  color: var(--text-muted-light);
}
.spl-section-head--on-light .spl-eyebrow {
  color: var(--text-accent-light);
}

/* ─── FEATURES GRID ─── */
.spl-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.spl-feature-card {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.spl-feature-card:hover {
  border-color: rgba(0,199,177,0.35);
  transform: translateY(-3px);
}
.spl-feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(0,199,177,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-vivid);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.spl-feature-card__title {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 8px;
}
.spl-feature-card__text {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
  max-width: none;
}

/* Features on light bg */
.spl-feature-card--light {
  background: var(--surface-0);
  border-color: var(--surface-2);
}
.spl-feature-card--light:hover {
  border-color: var(--teal-mid);
}
.spl-feature-card--light .spl-feature-card__icon {
  background: rgba(0,96,84,0.08);
  color: var(--teal-deep);
}
.spl-feature-card--light .spl-feature-card__title {
  color: var(--text-on-light);
}
.spl-feature-card--light .spl-feature-card__text {
  color: var(--text-muted-light);
}

/* ─── HOW-IT-WORKS (3-step) ─── */
.spl-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.spl-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: var(--ink-3);
}
.spl-step {
  text-align: center;
  padding: 0 24px;
}
.spl-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 2px solid var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--teal-vivid);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.spl-step__title {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 8px;
}
.spl-step__text {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
  max-width: none;
}

/* Steps on light bg */
.spl-steps--light::before { background: var(--surface-2); }
.spl-steps--light .spl-step__num {
  background: var(--surface-0);
  border-color: var(--surface-2);
  color: var(--teal-deep);
}
.spl-steps--light .spl-step__title { color: var(--text-on-light); }
.spl-steps--light .spl-step__text  { color: var(--text-muted-light); }

/* ─── TESTIMONIALS ─── */
.spl-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.spl-testimonial {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-xl);
  padding: 28px;
}
.spl-testimonial__quote {
  font-size: 0.9375rem;
  color: var(--text-on-dark);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: none;
}
.spl-testimonial__quote::before { content: '\201C'; color: var(--teal-vivid); font-size: 1.4rem; line-height: 0.5; vertical-align: -0.3em; margin-right: 2px; }
.spl-testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.spl-testimonial__name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-on-dark);
}
.spl-testimonial__role {
  font-size: 0.8125rem;
  color: var(--text-muted-dark);
}

/* ─── CTA BANNER ─── */
.spl-cta-banner {
  background: var(--brand-bg);
  padding-block: 72px;
}
.spl-cta-banner__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  text-align: center;
}
.spl-cta-banner h2 {
  color: var(--text-on-dark);
  margin-bottom: 14px;
}
.spl-cta-banner p {
  font-size: 1.0625rem;
  color: rgba(232,235,240,0.75);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 32px;
  line-height: 1.6;
}
.spl-cta-banner .spl-btn--primary {
  font-size: 1rem;
  padding: 14px 32px;
}

/* ─── FOOTER ─── */
.spl-footer {
  background: var(--ink-base);
  border-top: 1px solid var(--ink-3);
  padding-top: 60px;
  padding-bottom: 32px;
}
.spl-footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.spl-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--ink-3);
}
.spl-footer__brand {}
.spl-footer__brand img {
  height: 28px;
  width: auto;
  margin-bottom: 14px;
}
.spl-footer__tagline {
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
  max-width: 30ch;
}
.spl-footer__col-title {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: 16px;
}
.spl-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spl-footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  transition: color 0.15s;
}
.spl-footer__links a:hover {
  color: var(--teal-vivid);
}
.spl-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
}
.spl-footer__copy {
  font-size: 0.8125rem;
  color: var(--text-muted-dark);
}
.spl-footer__legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.spl-footer__legal-links a {
  font-size: 0.8125rem;
  color: var(--text-muted-dark);
  transition: color 0.15s;
}
.spl-footer__legal-links a:hover {
  color: var(--teal-vivid);
}

/* ─── PRODUCT PAGE ─── */
.spl-product-hero {
  background: var(--ink-base);
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 60px;
}
.spl-product-hero__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  text-align: center;
}
.spl-product-hero__inner h1 {
  color: var(--text-on-dark);
  margin-bottom: 16px;
}
.spl-product-hero__inner p {
  font-size: 1.125rem;
  color: var(--text-muted-dark);
  max-width: 54ch;
  margin-inline: auto;
  line-height: 1.65;
}

/* Product feature section */
.spl-product-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.spl-product-feature > * { min-width: 0; }
.spl-product-feature--reverse {
  direction: rtl;
}
.spl-product-feature--reverse > * {
  direction: ltr;
}
.spl-product-feature__text {}
.spl-product-feature__text h2 {
  margin-bottom: 14px;
}
.spl-product-feature__text p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 50ch;
}
.spl-product-feature__checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spl-product-feature__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.spl-product-feature__checklist li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='rgba(0,199,177,0.15)'/%3E%3Cpath d='M4.5 8l2.5 2.5L11.5 6' stroke='%2300C7B1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 2px;
}
.spl-product-feature__visual {}

/* Inline mock code/diagram boxes */
.spl-mock-panel {
  background: var(--ink-1);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-xl);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 12px;
}
.spl-mock-panel__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--ink-base);
  border-bottom: 1px solid var(--ink-3);
}
.spl-mock-panel__dot { width: 9px; height: 9px; border-radius: 50%; }
.spl-mock-panel__bar-title {
  font-size: 11px;
  color: var(--text-muted-dark);
  margin-left: 4px;
}
.spl-mock-panel__body {
  padding: 16px;
}
.spl-mock-panel__body pre {
  overflow-x: auto;
  line-height: 1.6;
  max-width: 100%;
}
.spl-mock-panel__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11.5px;
}
.spl-mock-panel__table th {
  text-align: left;
  padding: 6px 10px;
  color: var(--text-muted-dark);
  border-bottom: 1px solid var(--ink-3);
  white-space: nowrap;
}
.spl-mock-panel__table td {
  padding: 7px 10px;
  border-bottom: 1px solid rgba(42,51,71,0.5);
  color: var(--text-on-dark);
  white-space: nowrap;
}
.spl-mock-panel__table tr:last-child td { border-bottom: none; }
.spl-tok-green  { color: #4ec9b0; }
.spl-tok-yellow { color: #dcdcaa; }
.spl-tok-blue   { color: #9cdcfe; }
.spl-tok-red    { color: #f48771; }
.spl-tok-orange { color: #ce9178; }
.spl-tok-purple { color: #c586c0; }
.spl-tok-muted  { color: var(--text-muted-dark); }

/* ─── PRICING ─── */
.spl-pricing-hero {
  background: var(--surface-1);
  padding-top: calc(var(--nav-h) + 52px);
  padding-bottom: 52px;
}
.spl-pricing-hero__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  text-align: center;
}
.spl-pricing-hero__inner h1 {
  color: var(--text-on-light);
  margin-bottom: 14px;
}
.spl-pricing-hero__inner p {
  font-size: 1.125rem;
  color: var(--text-muted-light);
  max-width: 50ch;
  margin-inline: auto;
  line-height: 1.65;
}

.spl-pricing-toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.spl-pricing-toggle-label {
  font-size: 0.9375rem;
  color: var(--text-on-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.spl-pricing-save {
  background: var(--teal-vivid);
  color: var(--ink-base);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 99px;
}
.spl-pricing-toggle-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.spl-pricing-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.spl-pricing-toggle-track {
  display: block;
  width: 44px;
  height: 24px;
  background: var(--surface-2);
  border-radius: 99px;
  transition: background 0.2s;
  position: relative;
}
.spl-pricing-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.spl-pricing-toggle:checked + .spl-pricing-toggle-track {
  background: var(--teal-vivid);
}
.spl-pricing-toggle:checked + .spl-pricing-toggle-track::after {
  transform: translateX(20px);
}

.spl-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.spl-plan {
  background: var(--surface-0);
  border: 1px solid var(--surface-2);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative;
}
.spl-plan--featured {
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 2px rgba(0,122,109,0.15);
}
.spl-plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-deep);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 99px;
  white-space: nowrap;
}
.spl-plan__name {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 6px;
}
.spl-plan__desc {
  font-size: 0.875rem;
  color: var(--text-muted-light);
  margin-bottom: 20px;
  line-height: 1.5;
  max-width: none;
}
.spl-plan__price {
  margin-bottom: 24px;
}
.spl-plan__amount {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-on-light);
  line-height: 1;
}
.spl-plan__amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted-light);
}
.spl-plan__period {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  margin-top: 4px;
}
.spl-plan__cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 24px;
}
.spl-plan__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--surface-2);
  padding-top: 20px;
}
.spl-plan__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-on-light);
  line-height: 1.4;
}
.spl-plan__feature i {
  color: var(--teal-deep);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.875rem;
}
.spl-plan__feature--disabled { color: var(--text-muted-light); }
.spl-plan__feature--disabled i { color: var(--surface-2); }

/* Pricing comparison table */
.spl-compare-wrap {
  overflow-x: auto;
  border-radius: var(--r-xl);
  border: 1px solid var(--surface-2);
}
.spl-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-0);
  font-size: 0.9rem;
  min-width: 640px;
}
.spl-compare-table th {
  padding: 14px 20px;
  text-align: center;
  font-weight: 600;
  color: var(--text-on-light);
  background: var(--surface-1);
  border-bottom: 1px solid var(--surface-2);
}
.spl-compare-table th:first-child { text-align: left; }
.spl-compare-table td {
  padding: 12px 20px;
  text-align: center;
  border-bottom: 1px solid var(--surface-2);
  color: var(--text-on-light);
}
.spl-compare-table td:first-child { text-align: left; color: var(--text-muted-light); }
.spl-compare-table tr:last-child td { border-bottom: none; }
.spl-compare-table tr:nth-child(even) td { background: var(--surface-1); }
.spl-check { color: var(--teal-deep); }
.spl-dash  { color: var(--surface-2); }

/* FAQ accordion */
.spl-faq-list {
  max-width: 720px;
  margin-inline: auto;
}
.spl-faq-item {
  border-bottom: 1px solid var(--surface-2);
}
.spl-faq-item:first-child { border-top: 1px solid var(--surface-2); }
.spl-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-on-light);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
.spl-faq-trigger:hover {
  color: var(--teal-deep);
}
.spl-faq-trigger__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--text-muted-light);
  transition: transform 0.25s, background 0.15s;
}
.spl-faq-item--open .spl-faq-trigger__icon {
  transform: rotate(45deg);
  background: var(--teal-deep);
  color: #fff;
}
.spl-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.spl-faq-answer__inner {
  padding-bottom: 20px;
  font-size: 0.9375rem;
  color: var(--text-muted-light);
  line-height: 1.7;
  max-width: 62ch;
}
.spl-faq-item--open .spl-faq-answer {
  max-height: 300px;
}

/* FAQ on dark bg */
.spl-faq-list--dark .spl-faq-item { border-color: var(--ink-3); }
.spl-faq-list--dark .spl-faq-item:first-child { border-top-color: var(--ink-3); }
.spl-faq-list--dark .spl-faq-trigger { color: var(--text-on-dark); }
.spl-faq-list--dark .spl-faq-trigger:hover { color: var(--teal-vivid); }
.spl-faq-list--dark .spl-faq-trigger__icon { background: var(--ink-2); color: var(--text-muted-dark); }
.spl-faq-list--dark .spl-faq-item--open .spl-faq-trigger__icon { background: var(--teal-vivid); color: var(--ink-base); }
.spl-faq-list--dark .spl-faq-answer__inner { color: var(--text-muted-dark); }

/* ─── ABOUT ─── */
.spl-about-hero {
  background: var(--ink-base);
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 60px;
}
.spl-about-hero__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.spl-about-hero__inner > * { min-width: 0; }
.spl-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin-inline: auto;
}
.spl-about-hero__text h1 {
  color: var(--text-on-dark);
  margin-bottom: 16px;
}
.spl-about-hero__text p {
  font-size: 1.0625rem;
  color: var(--text-muted-dark);
  line-height: 1.65;
  max-width: 50ch;
}
.spl-about-hero__visual {
  position: relative;
}
.spl-about-hero__visual img {
  width: 100%;
  border-radius: var(--r-xl);
  aspect-ratio: 3/2;
  object-fit: cover;
}
.spl-about-hero__tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--ink-base);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-lg);
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted-dark);
}
.spl-about-hero__tag strong {
  color: var(--teal-vivid);
  display: block;
  font-size: 13px;
}

/* Team grid */
.spl-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.spl-team-card {
  text-align: center;
}
.spl-team-card__portrait {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid var(--ink-3);
}
.spl-team-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spl-team-card__name {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 4px;
}
.spl-team-card__role {
  font-size: 0.875rem;
  color: var(--teal-vivid);
  margin-bottom: 8px;
}
.spl-team-card__bio {
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
  max-width: none;
}

/* Values grid */
.spl-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.spl-value-card {
  background: var(--surface-0);
  border: 1px solid var(--surface-2);
  border-radius: var(--r-xl);
  padding: 28px;
}
.spl-value-card__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-accent-light);
  font-weight: 500;
  margin-bottom: 10px;
}
.spl-value-card__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-on-light);
  margin-bottom: 8px;
}
.spl-value-card__text {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  line-height: 1.6;
  max-width: none;
}

/* ─── CHANGELOG ─── */
.spl-changelog-hero {
  background: var(--surface-1);
  padding-top: calc(var(--nav-h) + 52px);
  padding-bottom: 52px;
}
.spl-changelog-hero__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.spl-changelog-hero__text h1 {
  color: var(--text-on-light);
  margin-bottom: 12px;
}
.spl-changelog-hero__text p {
  font-size: 1.0625rem;
  color: var(--text-muted-light);
  line-height: 1.6;
  max-width: 48ch;
}
.spl-changelog-hero__stat {
  background: var(--surface-0);
  border: 1px solid var(--surface-2);
  border-radius: var(--r-xl);
  padding: 28px;
  text-align: center;
}
.spl-changelog-hero__stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 8px;
}
.spl-changelog-hero__stat-label {
  font-size: 0.875rem;
  color: var(--text-muted-light);
}

.spl-changelog-list {
  max-width: 800px;
  margin-inline: auto;
}
.spl-changelog-entry {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--surface-2);
}
.spl-changelog-entry:last-child {
  border-bottom: none;
}
.spl-changelog-entry__meta {
  text-align: right;
  padding-top: 4px;
}
.spl-changelog-entry__date {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted-light);
  margin-bottom: 8px;
}
.spl-changelog-entry__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 99px;
  background: rgba(0,96,84,0.1);
  color: var(--teal-deep);
}
.spl-changelog-entry__tag--new { background: rgba(0,199,177,0.1); color: #00615c; }
.spl-changelog-entry__tag--fix { background: rgba(245,158,11,0.1); color: #92600a; }
.spl-changelog-entry__tag--improvement { background: rgba(79,70,229,0.1); color: #3730a3; }
.spl-changelog-entry__body h3 {
  font-size: 1.125rem;
  color: var(--text-on-light);
  margin-bottom: 8px;
}
.spl-changelog-entry__body p {
  font-size: 0.9375rem;
  color: var(--text-muted-light);
  line-height: 1.65;
  max-width: none;
}

/* ─── CONTACT ─── */
.spl-contact-hero {
  background: var(--surface-1);
  padding-top: calc(var(--nav-h) + 52px);
  padding-bottom: 52px;
}
.spl-contact-hero__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.spl-contact-hero__text h1 {
  color: var(--text-on-light);
  margin-bottom: 12px;
}
.spl-contact-hero__text p {
  font-size: 1.0625rem;
  color: var(--text-muted-light);
  line-height: 1.6;
  max-width: 46ch;
}
.spl-contact-hero__contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.spl-contact-hero__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.spl-contact-hero__item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: rgba(0,96,84,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-deep);
  flex-shrink: 0;
}
.spl-contact-hero__item-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-on-light);
  margin-bottom: 2px;
}
.spl-contact-hero__item-text span {
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

/* Contact form */
.spl-form {
  background: var(--surface-0);
  border: 1px solid var(--surface-2);
  border-radius: var(--r-xl);
  padding: 36px;
}
.spl-form h2 {
  color: var(--text-on-light);
  margin-bottom: 24px;
  font-size: 1.375rem;
}
.spl-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.spl-field {
  margin-bottom: 18px;
}
.spl-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-on-light);
  margin-bottom: 6px;
}
.spl-field input,
.spl-field select,
.spl-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--surface-2);
  border-radius: var(--r-md);
  background: var(--surface-1);
  color: var(--text-on-light);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.spl-field input:focus,
.spl-field select:focus,
.spl-field textarea:focus {
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(0,122,109,0.12);
}
.spl-field textarea { resize: vertical; min-height: 120px; }

/* ─── DOCS ─── */
.spl-docs-hero {
  background: var(--ink-base);
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 60px;
}
.spl-docs-hero__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  text-align: center;
}
.spl-docs-hero__inner h1 {
  color: var(--text-on-dark);
  margin-bottom: 14px;
}
.spl-docs-hero__inner p {
  font-size: 1.125rem;
  color: var(--text-muted-dark);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.65;
  margin-bottom: 28px;
}
.spl-docs-search {
  position: relative;
  max-width: 460px;
  margin-inline: auto;
}
.spl-docs-search input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1px solid var(--ink-3);
  border-radius: var(--r-lg);
  background: var(--ink-1);
  color: var(--text-on-dark);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.15s;
}
.spl-docs-search input:focus { border-color: var(--teal-vivid); }
.spl-docs-search input::placeholder { color: var(--text-muted-dark); }
.spl-docs-search__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted-dark);
}

.spl-docs-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.spl-docs-cat-card {
  background: var(--surface-0);
  border: 1px solid var(--surface-2);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.spl-docs-cat-card:hover {
  border-color: var(--teal-mid);
  transform: translateY(-2px);
}
.spl-docs-cat-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(0,96,84,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-deep);
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.spl-docs-cat-card__title {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-on-light);
  margin-bottom: 8px;
}
.spl-docs-cat-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted-light);
  line-height: 1.55;
  max-width: none;
}
.spl-docs-cat-card__links {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.spl-docs-cat-card__links a {
  font-size: 0.875rem;
  color: var(--text-accent-light);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s;
}
.spl-docs-cat-card__links a:hover { gap: 10px; }

/* Docs content pages (quickstart, api-ref) */
.spl-docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  padding-top: 40px;
  padding-bottom: 80px;
  min-height: calc(100vh - var(--nav-h));
}
.spl-docs-layout > * { min-width: 0; }
.spl-docs-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  height: fit-content;
  padding-right: 28px;
}
.spl-docs-sidebar__section-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-top: 20px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--surface-2);
}
.spl-docs-sidebar__link {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted-light);
  padding: 5px 0;
  transition: color 0.15s;
}
.spl-docs-sidebar__link:hover { color: var(--teal-deep); }
.spl-docs-sidebar__link--active { color: var(--teal-deep); font-weight: 600; }
.spl-docs-content {
  max-width: 720px;
  background: var(--surface-0);
  border-radius: var(--r-xl);
  padding: 40px 44px;
  border: 1px solid var(--surface-2);
  color: var(--text-on-light);
}
.spl-docs-content h1 {
  color: var(--text-on-light);
  font-size: 1.875rem;
  margin-bottom: 8px;
}
.spl-docs-content .spl-docs-lead {
  font-size: 1.0625rem;
  color: var(--text-muted-light);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: none;
}
.spl-docs-content h2 {
  color: var(--text-on-light);
  font-size: 1.25rem;
  margin-top: 36px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--surface-2);
}
.spl-docs-content h3 {
  color: var(--text-on-light);
  font-size: 1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}
.spl-docs-content p {
  font-size: 0.9375rem;
  color: var(--text-muted-light);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: none;
}
.spl-docs-content a {
  color: var(--teal-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.spl-docs-content a:hover { color: var(--teal-mid); }
.spl-docs-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.spl-docs-content ul li {
  font-size: 0.9375rem;
  color: var(--text-muted-light);
  line-height: 1.6;
}
.spl-docs-content code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--surface-2);
  color: var(--teal-deep);
  padding: 1px 5px;
  border-radius: 3px;
}
.spl-docs-content pre {
  background: var(--ink-1);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  overflow-x: auto;
  margin-bottom: 20px;
  max-width: 100%;
}
.spl-docs-content pre code {
  background: none;
  padding: 0;
  font-size: 0.875rem;
  color: var(--text-on-dark);
  border-radius: 0;
  line-height: 1.65;
}
.spl-docs-note {
  background: rgba(0,199,177,0.07);
  border-left: 3px solid var(--teal-vivid);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: 0.9375rem;
  color: var(--text-muted-light);
  line-height: 1.65;
}
.spl-docs-note strong { color: var(--text-on-light); }

/* Docs tables (general) */
.spl-docs-table-wrap {
  overflow-x: auto;
  margin-bottom: 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--surface-2);
  max-width: 100%;
}
.spl-docs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 480px;
  color: var(--text-on-light);
}
.spl-docs-table th {
  text-align: left;
  padding: 10px 14px;
  background: var(--surface-1);
  color: var(--text-on-light);
  border-bottom: 1px solid var(--surface-2);
  font-weight: 600;
}
.spl-docs-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--surface-2);
  color: var(--text-muted-light);
  vertical-align: top;
}
.spl-docs-table tr:last-child td { border-bottom: none; }
.spl-docs-table td code {
  background: var(--surface-2);
  color: var(--text-on-light);
  padding: 1px 5px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
}

/* API reference table */
.spl-api-table-wrap {
  overflow-x: auto;
  margin-bottom: 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--surface-2);
  max-width: 100%;
}
.spl-api-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 480px;
}
.spl-api-table th {
  text-align: left;
  padding: 10px 14px;
  background: var(--surface-1);
  color: var(--text-on-light);
  border-bottom: 1px solid var(--surface-2);
  font-weight: 600;
}
.spl-api-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--surface-2);
  color: var(--text-muted-light);
  vertical-align: top;
}
.spl-api-table tr:last-child td { border-bottom: none; }
.spl-api-table td code {
  background: var(--surface-2);
  padding: 1px 5px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--teal-deep);
}
.spl-method-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}
.spl-method-badge--get  { background: rgba(16,185,129,0.12); color: #059669; }
.spl-method-badge--post { background: rgba(59,130,246,0.12); color: #1d4ed8; }
.spl-method-badge--del  { background: rgba(239,68,68,0.12);  color: #b91c1c; }

/* ─── BLOG INDEX ─── */
.spl-blog-hero {
  background: var(--ink-base);
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 60px;
}
.spl-blog-hero__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.spl-blog-hero__text h1 {
  color: var(--text-on-dark);
  margin-bottom: 14px;
}
.spl-blog-hero__text p {
  font-size: 1.0625rem;
  color: var(--text-muted-dark);
  max-width: 46ch;
  line-height: 1.65;
}
.spl-blog-hero__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.spl-blog-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  color: var(--text-muted-dark);
}
.spl-blog-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.spl-blog-hero__stat {
  background: var(--ink-1);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-xl);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.spl-blog-hero__stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-vivid);
  line-height: 1;
}
.spl-blog-hero__stat-label {
  font-size: 0.875rem;
  color: var(--text-muted-dark);
}

/* Blog featured card */
.spl-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--surface-0);
  border: 1px solid var(--surface-2);
  border-radius: var(--r-2xl);
  overflow: hidden;
  margin-bottom: 32px;
  text-decoration: none;
  transition: box-shadow 0.18s;
}
.spl-blog-featured:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.spl-blog-featured__cover {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.spl-blog-featured__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.spl-blog-featured:hover .spl-blog-featured__cover img {
  transform: scale(1.03);
}
.spl-blog-featured__body {
  padding: 32px 32px 32px 0;
}
.spl-blog-featured__title {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 12px;
  line-height: 1.3;
}
.spl-blog-featured__excerpt {
  font-size: 0.9375rem;
  color: var(--text-muted-light);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: none;
}
.spl-blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted-light);
}
.spl-blog-featured__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.spl-blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-2xl);
  overflow: hidden;
}
.spl-blog-featured-card__cover {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.spl-blog-featured-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spl-blog-featured-card__body {
  padding: 36px 36px 36px 0;
}
.spl-blog-featured-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.spl-blog-cat {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-vivid);
  font-weight: 500;
}
.spl-blog-date {
  font-size: 0.8125rem;
  color: var(--text-muted-dark);
}
.spl-blog-featured-card__title {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.spl-blog-featured-card__title a {
  color: inherit;
  transition: color 0.15s;
}
.spl-blog-featured-card__title a:hover { color: var(--teal-vivid); }
.spl-blog-featured-card__excerpt {
  font-size: 0.9375rem;
  color: var(--text-muted-dark);
  line-height: 1.65;
  max-width: 50ch;
  margin-bottom: 20px;
}
.spl-blog-featured-card__footer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.spl-blog-author {
  font-size: 0.8125rem;
  color: var(--text-muted-dark);
}
.spl-blog-readtime {
  font-size: 0.8125rem;
  color: var(--text-muted-dark);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Blog card grid */
.spl-blog-grid-section {
  background: var(--surface-1);
  padding-block: var(--section-pad);
}
.spl-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.spl-blog-card {
  background: var(--surface-0);
  border: 1px solid var(--surface-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.spl-blog-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.spl-blog-card__cover {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.spl-blog-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.spl-blog-card:hover .spl-blog-card__cover img {
  transform: scale(1.04);
}
.spl-blog-card__body {
  padding: 20px;
}
.spl-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-muted-light);
  font-size: 0.8125rem;
}
.spl-blog-card__title {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-on-light);
  margin-bottom: 8px;
  line-height: 1.3;
}
.spl-blog-card__title a {
  color: inherit;
  transition: color 0.15s;
}
.spl-blog-card__title a:hover { color: var(--teal-deep); }
.spl-blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-muted-light);
  line-height: 1.6;
  max-width: none;
  margin-bottom: 14px;
}
.spl-blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--surface-2);
  padding-top: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted-light);
}

.spl-blog-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 600;
}

/* Blog cat pills on light bg */
.spl-blog-cat--light {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 500;
}

/* ─── ARTICLE PAGE ─── */
.spl-article-hero {
  background: var(--surface-1);
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 40px;
  color: var(--text-on-light);
}
.spl-article-hero__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.spl-article-hero h1 {
  color: var(--text-on-light);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: 14px;
  max-width: 22ch;
}
.spl-article-hero__sub {
  font-size: 1.0625rem;
  color: var(--text-muted-light);
  max-width: 58ch;
  line-height: 1.65;
}
.spl-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.spl-article-hero__meta time,
.spl-article-hero__meta span {
  color: var(--text-muted-light);
  font-size: 0.9rem;
}
.spl-article-hero__dot {
  color: var(--text-muted-light);
}
.spl-article-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  color: var(--teal-deep);
  margin-bottom: 24px;
  transition: gap 0.15s;
  font-weight: 500;
}
.spl-article-back:hover { gap: 11px; }
.spl-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.spl-article-hero__h1 {
  color: var(--text-on-light);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: 14px;
  max-width: 20ch;
}
.spl-article-hero__excerpt {
  font-size: 1.0625rem;
  color: var(--text-muted-light);
  max-width: 58ch;
  line-height: 1.65;
  margin-bottom: 20px;
}
.spl-article-hero__byline {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.spl-article-hero__byline-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-on-light);
}
.spl-article-hero__byline-date {
  font-size: 0.875rem;
  color: var(--text-muted-light);
}
.spl-article-hero__byline-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--surface-2);
}

/* Article cover image */
.spl-article-cover {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  margin-bottom: 0;
}
.spl-article-cover img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--r-xl);
}

/* Article body */
.spl-article-body {
  background: var(--surface-0);
  padding-block: 52px;
}
.spl-article-content {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.spl-article-content h2 {
  color: var(--text-on-light);
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 14px;
}
.spl-article-content h3 {
  color: var(--text-on-light);
  font-size: 1.125rem;
  margin-top: 28px;
  margin-bottom: 10px;
}
.spl-article-content p {
  font-size: 1rem;
  color: var(--text-on-light);
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: none;
}
.spl-article-content a {
  color: var(--teal-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.spl-article-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.spl-article-content ul li {
  font-size: 1rem;
  color: var(--text-on-light);
  line-height: 1.7;
}
.spl-article-content pre {
  background: var(--ink-1);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-lg);
  padding: 20px;
  overflow-x: auto;
  margin-bottom: 20px;
  max-width: 100%;
}
.spl-article-content pre code {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-on-dark);
  line-height: 1.65;
  display: block;
}
.spl-article-content code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--surface-2);
  color: var(--teal-deep);
  padding: 1px 5px;
  border-radius: 3px;
}
.spl-article-footer {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  padding-top: 32px;
  padding-bottom: 40px;
  border-top: 1px solid var(--surface-2);
  margin-top: 40px;
}
.spl-article-cta {
  background: var(--surface-1);
  border: 1px solid var(--surface-2);
  border-radius: var(--r-xl);
  padding: 32px;
  margin-top: 48px;
  text-align: center;
}
.spl-article-cta h3 {
  color: var(--text-on-light);
  margin-bottom: 10px;
}
.spl-article-cta p {
  color: var(--text-muted-light);
  font-size: 0.9375rem;
  max-width: 44ch;
  margin-inline: auto;
  margin-bottom: 20px;
}

/* ─── AUTH PAGES ─── */
.spl-auth-page {
  min-height: 100vh;
  background: var(--ink-base);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.spl-auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--ink-1);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-2xl);
  padding: 40px;
}
.spl-auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.spl-auth-logo img {
  height: 28px;
  width: auto;
}
.spl-auth-card h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-on-dark);
  text-align: center;
  margin-bottom: 6px;
}
.spl-auth-card .spl-auth-sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  margin-bottom: 28px;
  max-width: none;
}
.spl-auth-form { width: 100%; }
.spl-auth-field {
  margin-bottom: 16px;
}
.spl-auth-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-on-dark);
  margin-bottom: 6px;
}
.spl-auth-field input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--ink-3);
  border-radius: var(--r-md);
  background: var(--ink-base);
  color: var(--text-on-dark);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.spl-auth-field input:focus {
  border-color: var(--teal-vivid);
  box-shadow: 0 0 0 3px rgba(0,199,177,0.15);
}
.spl-auth-field input::placeholder { color: var(--text-muted-dark); }
.spl-auth-btn {
  width: 100%;
  padding: 12px;
  background: var(--teal-vivid);
  color: var(--ink-base);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  margin-top: 4px;
  transition: background 0.18s;
}
.spl-auth-btn:hover { background: #00e0c9; }
.spl-auth-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}
.spl-auth-links a {
  font-size: 0.875rem;
  color: var(--teal-vivid);
  transition: color 0.15s;
}
.spl-auth-links a:hover { color: #00e0c9; }
.spl-auth-links span {
  font-size: 0.875rem;
  color: var(--text-muted-dark);
}
.spl-auth-divider {
  border-top: 1px solid var(--ink-3);
  margin-block: 20px;
}
.spl-auth-legal {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8125rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
}
.spl-auth-legal a {
  color: var(--text-muted-dark);
  text-decoration: underline;
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink-1);
  border-top: 1px solid var(--ink-3);
  z-index: 9999;
  padding: 16px clamp(20px, 4vw, 40px);
}
.cookie-banner__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  line-height: 1.55;
  min-width: 200px;
}
.cookie-banner__text a {
  color: var(--teal-vivid);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  padding: 8px 18px;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner__btn--primary {
  background: var(--teal-vivid);
  color: var(--ink-base);
  border-color: var(--teal-vivid);
}
.cookie-banner__btn--primary:hover { background: #00e0c9; border-color: #00e0c9; }
.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--text-on-dark);
  border-color: var(--ink-3);
}
.cookie-banner__btn--secondary:hover { border-color: var(--text-muted-dark); }

/* ─── SUBPAGE HERO GENERIC ─── */
.spl-subhero {
  padding-top: calc(var(--nav-h) + 52px);
  padding-bottom: 52px;
}
.spl-subhero__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.spl-subhero--dark { background: var(--ink-base); }
.spl-subhero--light { background: var(--surface-1); }

/* Stat band (visual weight for subpages) */
.spl-stat-band {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.spl-stat-band__item {}
.spl-stat-band__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-vivid);
  line-height: 1;
}
.spl-stat-band__label {
  font-size: 0.8125rem;
  color: var(--text-muted-dark);
  margin-top: 4px;
}
.spl-stat-band--light .spl-stat-band__num { color: var(--teal-deep); }
.spl-stat-band--light .spl-stat-band__label { color: var(--text-muted-light); }

/* ─── INTEGRATION LOGO AREA ─── */
.spl-integrations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.spl-integration-pill {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: var(--r-lg);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted-dark);
  transition: border-color 0.15s;
}
.spl-integration-pill:hover { border-color: rgba(0,199,177,0.35); }
.spl-integration-pill i { color: var(--teal-vivid); font-size: 1rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .spl-features-grid { grid-template-columns: repeat(2, 1fr); }
  .spl-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .spl-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .spl-docs-layout { grid-template-columns: 200px 1fr; }
  .spl-footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .spl-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .spl-nav__links  { display: none; }
  .spl-nav__actions { display: none; }
  .spl-nav__hamburger { display: flex; }

  .spl-hero__inner { grid-template-columns: 1fr; }
  .spl-hero__visual { display: none; }

  .spl-features-grid { grid-template-columns: 1fr; }
  .spl-steps { grid-template-columns: 1fr; gap: 32px; }
  .spl-steps::before { display: none; }
  .spl-testimonials-grid { grid-template-columns: 1fr; }
  .spl-pricing-grid { grid-template-columns: 1fr; }

  .spl-product-feature { grid-template-columns: 1fr; }
  .spl-product-feature--reverse { direction: ltr; }

  .spl-about-hero__inner { grid-template-columns: 1fr; }
  .spl-team-grid { grid-template-columns: 1fr; }
  .spl-values-grid { grid-template-columns: 1fr; }

  .spl-changelog-hero__inner { grid-template-columns: 1fr; }
  .spl-changelog-entry { grid-template-columns: 1fr; gap: 12px; }
  .spl-changelog-entry__meta { text-align: left; }

  .spl-contact-hero__inner { grid-template-columns: 1fr; }
  .spl-form-row { grid-template-columns: 1fr; }

  .spl-docs-layout { grid-template-columns: 1fr; padding-top: 20px; }
  .spl-docs-sidebar { position: static; padding-right: 0; margin-bottom: 24px; }
  .spl-docs-categories { grid-template-columns: 1fr; }
  .spl-docs-content { padding: 24px; }

  .spl-blog-hero__inner { grid-template-columns: 1fr; }
  .spl-blog-featured-card { grid-template-columns: 1fr; }
  .spl-blog-featured-card__body { padding: 24px; }
  .spl-blog-grid { grid-template-columns: 1fr; }

  .spl-article-hero__inner { padding-inline: 20px; }
  .spl-article-cover { padding-inline: 20px; }
  .spl-article-content { padding-inline: 20px; }

  .spl-footer__top { grid-template-columns: 1fr 1fr; }
  .spl-footer__brand { grid-column: 1 / -1; }
  .spl-footer__bottom { flex-direction: column; align-items: flex-start; }
  .spl-footer__legal-links { gap: 14px; }

  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .spl-footer__top { grid-template-columns: 1fr; }
  .spl-hero__actions { flex-direction: column; align-items: flex-start; }
  .spl-hero__stats { gap: 20px; }
  .spl-pricing-grid { grid-template-columns: 1fr; }
  .spl-about-stats { grid-template-columns: 1fr; }
}

/* ─── LEGAL PAGES ─── */
.spl-legal-header { padding-block: 64px 40px; }
.spl-legal-header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.spl-legal-header__inner h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.spl-legal-header__sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.spl-legal-content { padding-block: 40px 80px; }
.spl-legal-content__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.legal-article {
  max-width: 72ch;
  line-height: 1.75;
  color: var(--text-body, var(--text));
}
.legal-article h2 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 2.5em;
  margin-bottom: 0.6em;
}
.legal-article h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.75em;
  margin-bottom: 0.5em;
}
.legal-article p { margin-bottom: 1em; }
.legal-article ul,
.legal-article ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.legal-article li { margin-bottom: 0.4em; }
.legal-article a { color: var(--teal-vivid); text-decoration: underline; }
