:root {
  --spl-ink: #101b2d;
  --spl-muted: #64728a;
  --spl-blue: #1264ee;
  --spl-blue-dark: #0845b6;
  --spl-cyan: #20c7d9;
  --spl-mint: #54d995;
  --spl-lime: #b8ef72;
  --spl-navy: #09172a;
  --spl-navy-soft: #10233d;
  --spl-paper: #f3f7fc;
  --spl-white: #ffffff;
  --spl-line: #dce5f1;
  --spl-content: 1360px;
  --spl-gutter: max(24px, calc((100vw - var(--spl-content)) / 2));
  --spl-shadow: 0 26px 80px rgba(23, 48, 83, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--spl-ink);
  background: var(--spl-paper);
  font-family: "Onest", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.spl-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 72px;
  padding: 12px var(--spl-gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(218, 228, 241, .78);
  background: rgba(250, 252, 255, .9);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background .2s ease;
}
.spl-header.is-scrolled { background: rgba(255, 255, 255, .96); box-shadow: 0 9px 30px rgba(25, 46, 75, .08); }
.spl-brand, .spl-header-actions, .spl-nav, .spl-hero-actions, .spl-kicker { display: flex; align-items: center; }
.spl-brand { gap: 10px; font-size: 21px; font-weight: 900; letter-spacing: -.03em; }
.spl-brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  color: #fff; border-radius: 12px; background: var(--spl-blue);
  box-shadow: inset 0 -8px 14px rgba(1, 45, 128, .22); font-weight: 900;
}
.spl-nav { justify-content: center; gap: clamp(14px, 2vw, 28px); color: #46566d; font-size: 14px; font-weight: 700; }
.spl-nav a, .spl-login { transition: color .18s ease; }
.spl-nav a:hover, .spl-login:hover { color: var(--spl-blue); }
.spl-header-actions { justify-content: flex-end; gap: 14px; }
.spl-login { font-size: 14px; font-weight: 800; }

.spl-button {
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.spl-button:hover { transform: translateY(-2px); }
.spl-button-primary { color: #fff; background: var(--spl-blue); box-shadow: 0 13px 28px rgba(18, 100, 238, .23); }
.spl-button-primary:hover { background: var(--spl-blue-dark); box-shadow: 0 16px 34px rgba(18, 100, 238, .3); }
.spl-button-quiet { color: #18304f; border-color: #cbd9ea; background: rgba(255, 255, 255, .72); }
.spl-button-quiet:hover { border-color: #a9bfdd; background: #fff; }
.spl-button-large { min-height: 54px; padding: 0 25px; font-size: 15px; }
.spl-button-full { width: 100%; }

.spl-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  padding: clamp(64px, 8vw, 124px) var(--spl-gutter) clamp(72px, 8vw, 118px);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, .97fr);
  align-items: center;
  gap: clamp(42px, 7vw, 112px);
  overflow: hidden;
  background:
    linear-gradient(rgba(10, 37, 72, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 72, .035) 1px, transparent 1px),
    radial-gradient(circle at 11% 8%, rgba(32, 199, 217, .18), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(18, 100, 238, .18), transparent 32%),
    linear-gradient(145deg, #fbfdff 0%, #eef5fd 100%);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}
.spl-hero::after {
  content: ""; position: absolute; width: 340px; height: 340px; right: -170px; bottom: -170px;
  border: 52px solid rgba(18, 100, 238, .07); border-radius: 50%;
}
.spl-hero-copy { position: relative; z-index: 2; }
.spl-kicker {
  width: fit-content; gap: 9px; margin-bottom: 24px; padding: 9px 13px;
  color: #0d5f5c; border: 1px solid #bfe9e4; border-radius: 999px; background: rgba(235, 254, 249, .88);
  font-size: 13px; font-weight: 800;
}
.spl-kicker i { width: 8px; height: 8px; border-radius: 50%; background: var(--spl-mint); box-shadow: 0 0 0 5px rgba(84, 217, 149, .16); }
.spl-hero h1 {
  max-width: 820px; margin: 0; font-size: clamp(45px, 6.1vw, 88px); line-height: .98;
  letter-spacing: -.065em; font-weight: 900;
}
.spl-hero h1 em { color: var(--spl-blue); font-style: normal; }
.spl-hero-copy > p { max-width: 720px; margin: 27px 0 0; color: var(--spl-muted); font-size: clamp(18px, 1.65vw, 23px); line-height: 1.5; }
.spl-hero-actions { flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.spl-trial-note { margin-top: 20px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: #6a768a; font-size: 13px; font-weight: 600; }
.spl-trial-note span { color: #08784b; font-weight: 800; }
.spl-trial-note b { color: #b5c1d1; }

.spl-hero-orbit { position: relative; z-index: 2; min-height: 520px; }
.spl-orbit { position: absolute; inset: 50%; border-radius: 50%; border: 1px solid rgba(30, 104, 224, .18); transform: translate(-50%, -50%); }
.spl-orbit-one { width: 470px; height: 470px; animation: spl-spin 28s linear infinite; }
.spl-orbit-two { width: 340px; height: 340px; border-style: dashed; animation: spl-spin-reverse 21s linear infinite; }
.spl-orbit::before, .spl-orbit::after { content: ""; position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--spl-blue); box-shadow: 0 0 0 7px rgba(18, 100, 238, .11); }
.spl-orbit::before { top: 8%; left: 18%; }
.spl-orbit::after { right: 2%; bottom: 29%; background: var(--spl-mint); box-shadow: 0 0 0 7px rgba(84, 217, 149, .13); }
@keyframes spl-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spl-spin-reverse { to { transform: translate(-50%, -50%) rotate(-360deg); } }
.spl-forecast-card {
  position: absolute; left: 50%; top: 50%; width: min(330px, 76%); padding: 26px;
  transform: translate(-50%, -50%); border: 1px solid rgba(255,255,255,.12); border-radius: 24px;
  color: #fff; background: linear-gradient(145deg, #0b1c32, #102d51); box-shadow: 0 32px 80px rgba(7, 25, 51, .3);
}
.spl-forecast-card > span { color: #95a9c5; font-size: 12px; font-weight: 700; }
.spl-forecast-card > strong { display: block; margin-top: 11px; font-size: 64px; line-height: 1; letter-spacing: -.06em; }
.spl-forecast-card > small { display: block; margin-top: 5px; color: #a9bad0; }
.spl-forecast-chart { height: 92px; margin-top: 24px; display: flex; align-items: flex-end; gap: 8px; }
.spl-forecast-chart i { flex: 1; min-height: 10px; border-radius: 6px 6px 2px 2px; background: linear-gradient(#5edfa6, #20a77b); }
.spl-risk-card, .spl-season-card { position: absolute; z-index: 3; border: 1px solid #d8e4f1; border-radius: 16px; background: rgba(255,255,255,.95); box-shadow: var(--spl-shadow); }
.spl-risk-card { left: 0; top: 15%; padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.spl-risk-card > i { width: 11px; height: 11px; border-radius: 50%; background: #f46565; box-shadow: 0 0 0 6px rgba(244,101,101,.13); }
.spl-risk-card span { display: grid; gap: 2px; }
.spl-risk-card b { font-size: 15px; }
.spl-risk-card small, .spl-season-card small { color: var(--spl-muted); font-size: 11px; }
.spl-season-card { right: 0; bottom: 13%; padding: 15px 18px; display: grid; gap: 3px; }
.spl-season-card > span { color: var(--spl-muted); font-size: 11px; }
.spl-season-card strong { color: var(--spl-blue); font-size: 26px; }

.spl-proof { padding: 0 var(--spl-gutter); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); background: #fff; border-top: 1px solid var(--spl-line); border-bottom: 1px solid var(--spl-line); }
.spl-proof article { min-height: 116px; padding: 25px clamp(16px, 2vw, 32px); display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--spl-line); }
.spl-proof article:last-child { border-right: 0; }
.spl-proof strong { font-size: 22px; letter-spacing: -.03em; }
.spl-proof span { margin-top: 6px; color: var(--spl-muted); font-size: 13px; }

.spl-product { padding: clamp(74px, 9vw, 130px) var(--spl-gutter); color: #fff; background: var(--spl-navy); }
.spl-section-heading { max-width: 800px; margin: 0 auto 42px; text-align: center; }
.spl-section-heading > span, .spl-eyebrow { display: inline-block; margin-bottom: 12px; color: var(--spl-blue); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.spl-section-heading h2, .spl-seasonality h2, .spl-price-section h2, .spl-cta h2 { margin: 0; font-size: clamp(34px, 4.6vw, 64px); line-height: 1.03; letter-spacing: -.055em; }
.spl-section-heading p { max-width: 720px; margin: 17px auto 0; color: var(--spl-muted); font-size: 17px; line-height: 1.6; }
.spl-section-heading-light > span { color: var(--spl-cyan); }
.spl-section-heading-light p { color: #94a7c0; }

.spl-demo-window { max-width: var(--spl-content); margin: 0 auto; overflow: hidden; border: 1px solid rgba(172, 199, 230, .17); border-radius: 24px; background: #f8fbff; box-shadow: 0 40px 100px rgba(0, 0, 0, .28); }
.spl-demo-topbar { min-height: 78px; padding: 14px 18px 14px 23px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #fff; background: #0c1b2f; }
.spl-demo-topbar > div { display: grid; grid-template-columns: auto auto; gap: 2px 9px; align-items: center; }
.spl-demo-topbar > div i { grid-row: 1 / 3; width: 9px; height: 9px; border-radius: 50%; background: var(--spl-mint); box-shadow: 0 0 0 5px rgba(84,217,149,.12); }
.spl-demo-topbar strong { font-size: 14px; }
.spl-demo-topbar small { color: #879bb6; font-size: 10px; }
.spl-demo-topbar nav { padding: 4px; display: flex; gap: 3px; border-radius: 11px; background: #172a43; }
.spl-demo-topbar button { min-height: 35px; padding: 0 15px; border: 0; border-radius: 8px; color: #92a5bd; background: transparent; font-size: 11px; font-weight: 800; cursor: pointer; }
.spl-demo-topbar button.active { color: #132036; background: #fff; box-shadow: 0 6px 16px rgba(0,0,0,.2); }
.spl-demo-layout { min-height: 480px; display: grid; grid-template-columns: 235px minmax(0, 1fr); }
.spl-demo-sidebar { padding: 23px; color: #d4dfed; background: #10233d; }
.spl-demo-sidebar > span { color: #7890ad; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.spl-demo-sidebar h3 { margin: 7px 0 20px; font-size: 17px; }
.spl-demo-sidebar label { min-height: 47px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid rgba(184,202,224,.1); color: #9eb0c6; font-size: 11px; }
.spl-demo-sidebar label b { color: #fff; font-size: 12px; }
.spl-demo-divider { height: 1px; margin: 21px 0; background: rgba(184,202,224,.13); }
.spl-demo-season { margin-top: 10px; padding: 12px; display: grid; grid-template-columns: auto 1fr; gap: 2px 8px; border: 1px solid rgba(87,218,171,.18); border-radius: 10px; background: rgba(73,196,152,.08); }
.spl-demo-season i { grid-row: 1 / 3; align-self: center; width: 8px; height: 8px; border-radius: 50%; background: var(--spl-mint); }
.spl-demo-season b { font-size: 10px; }
.spl-demo-season small { color: #81a895; font-size: 9px; }
.spl-demo-switch { margin-top: 18px; display: flex; align-items: center; gap: 9px; color: #a6b7cb; font-size: 10px; }
.spl-demo-switch i { position: relative; width: 29px; height: 17px; border-radius: 99px; background: var(--spl-blue); }
.spl-demo-switch i::after { content: ""; position: absolute; width: 11px; height: 11px; top: 3px; right: 3px; border-radius: 50%; background: #fff; }
.spl-demo-workspace { min-width: 0; padding: 18px; color: var(--spl-ink); }
.spl-demo-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.spl-demo-metrics article { padding: 15px; border: 1px solid #dfe8f3; border-radius: 12px; background: #fff; }
.spl-demo-metrics span, .spl-demo-metrics small { display: block; color: var(--spl-muted); font-size: 9px; }
.spl-demo-metrics strong { display: block; margin: 6px 0 2px; font-size: 26px; line-height: 1; }
.spl-demo-table { margin-top: 13px; overflow: hidden; border: 1px solid #dfe8f3; border-radius: 12px; background: #fff; }
.spl-demo-table-head, .spl-demo-row { display: grid; grid-template-columns: 1.7fr repeat(5, minmax(76px, 1fr)); align-items: center; }
.spl-demo-table-head { min-height: 43px; color: #728098; background: #f2f6fb; font-size: 8px; font-weight: 900; text-transform: uppercase; }
.spl-demo-table-head span, .spl-demo-row span { padding: 0 12px; }
.spl-demo-row { min-height: 58px; border-top: 1px solid #e7edf5; color: #41516a; font-size: 10px; transition: opacity .18s ease, transform .18s ease; }
.spl-demo-row span:first-child { color: #17243a; font-weight: 800; }
.spl-demo-row.is-risk { background: linear-gradient(90deg, rgba(255,241,241,.72), transparent 60%); }
.spl-demo-row.is-risk span:nth-child(4) { color: #d85555; font-weight: 800; }
.spl-demo-row .is-supply { color: var(--spl-blue); font-size: 12px; font-weight: 900; }
.spl-demo-footer { padding: 13px 4px 0; display: flex; justify-content: space-between; gap: 18px; color: #718097; font-size: 9px; }
.spl-demo-footer span { display: flex; align-items: center; gap: 7px; color: #207855; font-weight: 800; }
.spl-demo-footer i { width: 7px; height: 7px; border-radius: 50%; background: var(--spl-mint); }

.spl-section { padding: clamp(72px, 9vw, 132px) var(--spl-gutter); }
.spl-capability-grid { max-width: var(--spl-content); margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.spl-capability { min-height: 255px; padding: 26px; border: 1px solid var(--spl-line); border-radius: 20px; background: #fff; box-shadow: 0 14px 42px rgba(26,52,89,.06); }
.spl-capability-main { grid-column: span 2; color: #fff; background: linear-gradient(145deg, #0b1b30, #15385d); border-color: transparent; }
.spl-feature-number { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid #d9e5f3; border-radius: 50%; color: var(--spl-blue); font-size: 11px; font-weight: 900; }
.spl-capability-main .spl-feature-number { color: var(--spl-mint); border-color: rgba(97,222,175,.35); }
.spl-capability h3 { margin: 28px 0 10px; font-size: 24px; letter-spacing: -.035em; }
.spl-capability p { max-width: 520px; margin: 0; color: var(--spl-muted); font-size: 14px; line-height: 1.6; }
.spl-capability-main p { color: #aabbd0; }
.spl-formula { margin-top: 24px; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.spl-formula span, .spl-formula strong { padding: 8px 11px; border-radius: 9px; background: rgba(255,255,255,.08); font-size: 11px; }
.spl-formula strong { color: #092c24; background: var(--spl-mint); }
.spl-formula i { color: #7291b2; font-style: normal; }

.spl-seasonality { display: grid; grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr); align-items: center; gap: clamp(44px, 7vw, 110px); color: #fff; background: #0a192d; }
.spl-seasonality-copy > p { max-width: 600px; margin: 22px 0 0; color: #9bacc2; font-size: 17px; line-height: 1.65; }
.spl-seasonality-copy ul { margin: 28px 0 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.spl-seasonality-copy li { position: relative; padding-left: 29px; color: #d2ddeb; font-size: 14px; }
.spl-seasonality-copy li::before { content: "✓"; position: absolute; left: 0; top: -2px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: #072c20; background: var(--spl-mint); font-size: 11px; font-weight: 900; }
.spl-seasonality-visual { padding: 24px; overflow: hidden; border: 1px solid rgba(185,205,230,.16); border-radius: 22px; background: #10243d; box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.spl-seasonality-head { display: flex; align-items: center; gap: 12px; }
.spl-seasonality-head span { color: #7890ac; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.spl-seasonality-head strong { font-size: 15px; }
.spl-seasonality-head b { margin-left: auto; padding: 6px 9px; border-radius: 99px; color: #72ddb5; background: rgba(84,217,149,.1); font-size: 9px; }
.spl-month-chart { height: 270px; margin-top: 28px; padding-top: 20px; display: grid; grid-template-columns: repeat(12, minmax(34px, 1fr)); align-items: end; gap: 7px; border-top: 1px solid rgba(190,207,229,.1); }
.spl-month-chart div { height: 100%; display: grid; grid-template-rows: 1fr auto auto; align-items: end; gap: 6px; text-align: center; }
.spl-month-chart i { width: 100%; min-height: 18px; align-self: end; border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, #2a75e7, #17498f); }
.spl-month-chart .active i { background: linear-gradient(180deg, #65e5b3, #20a77c); box-shadow: 0 0 24px rgba(84,217,149,.25); }
.spl-month-chart span { color: #8295ae; font-size: 8px; }
.spl-month-chart b { color: #ced9e7; font-size: 9px; }
.spl-seasonality-product { margin-top: 22px; padding: 13px 14px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; border: 1px solid rgba(186,205,229,.12); border-radius: 12px; background: rgba(255,255,255,.04); }
.spl-seasonality-product span { color: #7890ac; font-size: 9px; }
.spl-seasonality-product b { font-size: 11px; }
.spl-seasonality-product strong { color: var(--spl-mint); font-size: 11px; }

.spl-workflow { background: #fff; }
.spl-align-left { margin: 0 0 44px; text-align: left; }
.spl-align-left p { margin-left: 0; }
.spl-workflow-list { max-width: var(--spl-content); margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); list-style: none; counter-reset: steps; }
.spl-workflow-list li { position: relative; min-height: 270px; padding: 27px; border-top: 1px solid #b9c9dc; border-right: 1px solid var(--spl-line); }
.spl-workflow-list li:last-child { border-right: 0; }
.spl-workflow-list > li > span { color: var(--spl-blue); font-size: 12px; font-weight: 900; }
.spl-workflow-list h3 { margin: 82px 0 10px; font-size: 21px; letter-spacing: -.03em; }
.spl-workflow-list p { margin: 0; color: var(--spl-muted); font-size: 13px; line-height: 1.55; }
.spl-workflow-list li::after { content: ""; position: absolute; width: 9px; height: 9px; top: -5px; left: 26px; border-radius: 50%; background: var(--spl-blue); box-shadow: 0 0 0 6px #e5efff; }

.spl-price-section { padding: clamp(72px, 9vw, 132px) var(--spl-gutter); display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, 510px); align-items: center; gap: clamp(48px, 9vw, 150px); background: linear-gradient(145deg, #e9f2ff, #f7fbff); }
.spl-price-copy > span { color: var(--spl-blue); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.spl-price-copy p { max-width: 570px; margin: 20px 0 0; color: var(--spl-muted); font-size: 17px; line-height: 1.6; }
.spl-price-card { position: relative; padding: 32px; border: 1px solid #cbdcf2; border-radius: 24px; background: #fff; box-shadow: var(--spl-shadow); }
.spl-price-card > span { color: var(--spl-muted); font-size: 13px; font-weight: 700; }
.spl-price-badge { position: absolute; right: 23px; top: -15px; padding: 8px 12px; border-radius: 999px; color: #0a4e37; background: var(--spl-lime); font-size: 11px; font-weight: 900; box-shadow: 0 9px 20px rgba(111,179,47,.18); }
.spl-price { margin-top: 16px; display: flex; align-items: baseline; gap: 8px; }
.spl-price strong { font-size: 48px; letter-spacing: -.06em; }
.spl-price small { color: var(--spl-muted); }
.spl-price-card ul { margin: 25px 0; padding: 21px 0; display: grid; gap: 12px; border-top: 1px solid var(--spl-line); border-bottom: 1px solid var(--spl-line); list-style: none; }
.spl-price-card li { position: relative; padding-left: 25px; color: #35455c; font-size: 13px; }
.spl-price-card li::before { content: "✓"; position: absolute; left: 0; color: #139566; font-weight: 900; }
.spl-price-card > small { display: block; margin-top: 12px; color: #8490a2; font-size: 10px; text-align: center; }

.spl-faq { max-width: 980px; margin: 0 auto; border-top: 1px solid #cbd7e7; }
.spl-faq details { border-bottom: 1px solid #cbd7e7; }
.spl-faq summary { position: relative; padding: 23px 48px 23px 0; cursor: pointer; list-style: none; font-size: 17px; font-weight: 800; }
.spl-faq summary::-webkit-details-marker { display: none; }
.spl-faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: var(--spl-blue); font-size: 25px; font-weight: 500; }
.spl-faq details[open] summary::after { content: "−"; }
.spl-faq p { max-width: 790px; margin: -5px 0 22px; color: var(--spl-muted); font-size: 14px; line-height: 1.65; }

.spl-cta { margin: 0; padding: clamp(36px, 5vw, 64px) var(--spl-gutter); display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 40px; color: #fff; background: linear-gradient(130deg, #091a30, #123d69); box-shadow: 0 28px 70px rgba(8,32,64,.22); }
.spl-cta span { display: block; margin-bottom: 11px; color: var(--spl-mint); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.spl-cta h2 { max-width: 850px; font-size: clamp(31px, 4vw, 55px); }
.spl-cta-actions { display: grid; gap: 13px; text-align: center; }
.spl-support { color: #b7c8dc; font-size: 12px; font-weight: 700; }
.spl-support:hover { color: #fff; }

.spl-footer { padding: 28px var(--spl-gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--spl-line); background: #fff; }
.spl-footer > div { display: grid; gap: 4px; }
.spl-footer strong { font-size: 18px; }
.spl-footer span { color: var(--spl-muted); font-size: 11px; }
.spl-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; color: #596a82; font-size: 11px; font-weight: 700; }
.spl-footer a:hover { color: var(--spl-blue); }

@media (max-width: 1120px) {
  .spl-nav { display: none; }
  .spl-hero { grid-template-columns: 1fr; min-height: auto; }
  .spl-hero-copy { text-align: center; }
  .spl-kicker, .spl-hero-actions { margin-left: auto; margin-right: auto; }
  .spl-hero-copy > p { margin-left: auto; margin-right: auto; }
  .spl-trial-note { justify-content: center; }
  .spl-hero-orbit { width: min(650px, 100%); margin: 0 auto; }
  .spl-seasonality { grid-template-columns: 1fr; }
  .spl-seasonality-copy { max-width: 760px; }
  .spl-capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spl-workflow-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spl-workflow-list li:nth-child(2) { border-right: 0; }
  .spl-price-section { grid-template-columns: 1fr; }
  .spl-price-card { width: min(510px, 100%); }
}

@media (max-width: 820px) {
  .spl-header { grid-template-columns: auto 1fr; }
  .spl-login { display: none; }
  .spl-header-actions { gap: 0; }
  .spl-header-actions .spl-button { min-height: 42px; padding: 0 14px; font-size: 12px; }
  .spl-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spl-proof article:nth-child(2) { border-right: 0; }
  .spl-proof article:nth-child(-n+2) { border-bottom: 1px solid var(--spl-line); }
  .spl-demo-layout { grid-template-columns: 1fr; }
  .spl-demo-sidebar { display: none; }
  .spl-demo-table { overflow-x: auto; }
  .spl-demo-table-head, .spl-demo-row { min-width: 750px; }
  .spl-month-chart { overflow-x: auto; grid-template-columns: repeat(12, minmax(44px, 1fr)); }
  .spl-seasonality-product { grid-template-columns: 1fr; }
  .spl-cta { grid-template-columns: 1fr; }
  .spl-cta-actions { width: fit-content; text-align: left; }
  .spl-footer { align-items: flex-start; flex-direction: column; }
  .spl-footer nav { justify-content: flex-start; }
}

@media (max-width: 620px) {
  :root { --spl-gutter: 14px; }
  .spl-header { min-height: 64px; padding: 10px 14px; }
  .spl-brand { font-size: 18px; }
  .spl-brand-mark { width: 34px; height: 34px; }
  .spl-header-actions .spl-button { font-size: 11px; }
  .spl-hero { padding-top: 55px; }
  .spl-hero h1 { font-size: clamp(39px, 13vw, 60px); }
  .spl-hero-copy > p { font-size: 17px; }
  .spl-hero-actions { align-items: stretch; flex-direction: column; }
  .spl-hero-actions .spl-button { width: 100%; }
  .spl-hero-orbit { min-height: 420px; }
  .spl-orbit-one { width: 390px; height: 390px; }
  .spl-orbit-two { width: 280px; height: 280px; }
  .spl-risk-card { top: 7%; }
  .spl-season-card { bottom: 7%; }
  .spl-proof { padding: 0 12px; }
  .spl-proof article { min-height: 100px; padding: 18px 12px; }
  .spl-proof strong { font-size: 18px; }
  .spl-product { padding-left: 12px; padding-right: 12px; }
  .spl-demo-topbar { align-items: stretch; flex-direction: column; }
  .spl-demo-topbar nav { display: grid; grid-template-columns: repeat(3, 1fr); }
  .spl-demo-topbar button { padding: 0 7px; font-size: 9px; }
  .spl-demo-workspace { padding: 11px; }
  .spl-demo-metrics { grid-template-columns: 1fr; }
  .spl-capability-grid { grid-template-columns: 1fr; }
  .spl-capability-main { grid-column: auto; }
  .spl-seasonality { grid-template-columns: 1fr; padding-left: 14px; padding-right: 14px; }
  .spl-seasonality-visual { padding: 16px 12px; }
  .spl-month-chart { height: 230px; }
  .spl-workflow-list { grid-template-columns: 1fr; }
  .spl-workflow-list li { min-height: 210px; border-right: 0; }
  .spl-workflow-list h3 { margin-top: 52px; }
  .spl-price-section { padding-left: 14px; padding-right: 14px; }
  .spl-price-card { padding: 26px 20px; }
  .spl-cta { padding: 30px 14px; }
  .spl-cta-actions { width: 100%; }
  .spl-cta-actions .spl-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
