:root {
  --sv-max: 1160px;
}

/* ── Header / footer overrides ─────────────────────────────── */
.pub-header,
.pub-footer {
  position: relative;
  z-index: 10;
}

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

.pub-login-btn { box-shadow: none; }

.pub-footer { border-top-color: rgba(184,212,240,0.1); }

.pub-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pub-footer-copy {
  font-size: 0.8rem;
  color: var(--ice);
  opacity:0.85;
}

.pub-footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.pub-footer-links a {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ice);
  opacity:0.85;
  transition: opacity 0.15s ease;
}

.pub-footer-links a:hover { opacity: 0.9; }

/* ── Shared shell ───────────────────────────────────────────── */
.sv-home {
  position: relative;
  z-index: 1;
}

.sv-home-shell {
  width: min(calc(100% - 40px), var(--sv-max));
  margin: 0 auto;
}

/* ── Hero ───────────────────────────────────────────────────── */
.sv-home-hero {
  padding: 52px 0 44px;
}

.sv-home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.sv-home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ice);
  opacity:0.85;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(184,212,240,0.14);
  background: rgba(255,255,255,0.04);
  margin-bottom: 20px;
}

.sv-home-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ping-green);
  box-shadow: 0 0 10px rgba(34,197,94,0.85);
  flex-shrink: 0;
}

.sv-home-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  max-width: 10ch;
}

.sv-home-lead {
  font-size: 1.05rem;
  color: var(--ice);
  opacity:0.85;
  line-height: 1.65;
  max-width: 52ch;
  margin-top: 20px;
}

.sv-home-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ── Hero widget (mock dashboard) ──────────────────────────── */
.sv-home-widget {
  background: var(--navy-card);
  border: 1px solid rgba(184,212,240,0.12);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(5,10,22,0.35);
}

.sv-home-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(184,212,240,0.08);
}

.sv-home-widget-title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ice);
  opacity:0.85;
  text-transform: uppercase;
}

.sv-home-widget-all-up {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ping-green);
}

.sv-home-widget-incident {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: rgba(239,68,68,0.08);
  border-bottom: 1px solid rgba(239,68,68,0.15);
}

.sv-home-widget-incident-body {
  flex: 1;
  min-width: 0;
}

.sv-home-widget-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sv-home-widget-dot--up   { background: var(--ping-green); box-shadow: 0 0 8px rgba(34,197,94,0.6); }
.sv-home-widget-dot--down { background: var(--ping-red);   box-shadow: 0 0 8px rgba(239,68,68,0.7); }
.sv-home-widget-dot--warn { background: var(--ping-yellow); box-shadow: 0 0 8px rgba(234,179,8,0.6); }

.sv-home-widget-domain {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.sv-home-widget-meta {
  font-size: 0.72rem;
  color: var(--ping-red);
  margin-top: 2px;
}

.sv-home-widget-badge {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(239,68,68,0.18);
  color: var(--ping-red);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 6px;
  padding: 3px 7px;
  white-space: nowrap;
  flex-shrink: 0;
}

.sv-home-widget-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(184,212,240,0.05);
}

.sv-home-widget-row .sv-home-widget-domain { flex: 1; min-width: 0; }

.sv-home-widget-ms {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ping-green);
  opacity:0.85;
}

.sv-home-widget-ssl-warn {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ping-yellow);
  opacity: 0.9;
}

.sv-home-widget-alert-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: rgba(245,158,43,0.06);
  border-top: 1px solid rgba(245,158,43,0.12);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  opacity: 0.9;
}

/* ── Sections ───────────────────────────────────────────────── */
.sv-home-section       { padding: 36px 0; }
.sv-home-section-soft  {
  padding: 44px 0;
  background: linear-gradient(180deg, rgba(42,95,165,0.09) 0%, rgba(42,95,165,0.05) 100%);
  border-top:    1px solid rgba(184,212,240,0.08);
  border-bottom: 1px solid rgba(184,212,240,0.08);
}

.sv-home-section-head          { margin-bottom: 24px; }
.sv-home-section-head--center  { text-align: center; margin: 0 auto 28px; }

.sv-home-section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.sv-home-section-text {
  font-size: 0.98rem;
  color: var(--ice);
  opacity:0.85;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 58ch;
}

/* ── Features ───────────────────────────────────────────────── */
.sv-home-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sv-home-feature-card {
  background: rgba(13,28,50,0.52);
  border: 1px solid rgba(184,212,240,0.18);
  border-radius: 20px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
}

.sv-home-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(42,95,165,0.22);
  color: var(--ice);
  margin-bottom: 14px;
}

.sv-home-feature-card h3 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--orange);
}

.sv-home-feature-card p {
  font-size: 0.875rem;
  color: var(--ice);
  opacity:0.85;
  line-height: 1.6;
  margin-top: 7px;
  flex: 1;
}

.sv-home-feature-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.85;
  text-decoration: none;
  transition: opacity 0.15s;
}
.sv-home-feature-link:hover { opacity: 1; }

/* ── How it works ───────────────────────────────────────────── */
.sv-home-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sv-home-step-card {
  background: rgba(13,28,50,0.52);
  border: 1px solid rgba(184,212,240,0.18);
  border-radius: 20px;
  padding: 24px 22px;
}

.sv-home-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245,158,43,0.15);
  color: var(--orange);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.sv-home-step-card h3 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--white);
}

.sv-home-step-card p {
  font-size: 0.875rem;
  color: var(--ice);
  opacity:0.85;
  line-height: 1.6;
  margin-top: 7px;
}

/* ── Integrations ───────────────────────────────────────────── */
.sv-home-integrations-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.sv-home-integrations-copy .sv-home-section-title { max-width: 16ch; }

.sv-home-chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.sv-home-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,212,240,0.12);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
}

.sv-home-chip--muted {
  color: var(--ice);
  opacity:0.85;
}

/* Alert stack (integrations visual) */
.sv-home-alert-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sv-home-alert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(13,28,50,0.52);
  border: 1px solid rgba(184,212,240,0.18);
  border-radius: 14px;
  padding: 13px 16px;
}

.sv-home-alert-item svg { flex-shrink: 0; color: var(--ice); opacity:0.85; }

.sv-home-alert-item--email { border-left: 3px solid rgba(96,165,250,0.5); }
.sv-home-alert-item--sms   { border-left: 3px solid rgba(34,197,94,0.5);  }
.sv-home-alert-item--slack { border-left: 3px solid rgba(245,158,43,0.5); }

.sv-home-alert-item > div { flex: 1; min-width: 0; }

.sv-home-alert-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ice);
  opacity:0.85;
}

.sv-home-alert-detail {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sv-home-alert-time {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ice);
  opacity: 0.35;
  white-space: nowrap;
}

/* ── Plans ──────────────────────────────────────────────────── */
.sv-home-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.sv-home-plan-card {
  position: relative;
  background: rgba(13,28,50,0.82);
  border: 1px solid rgba(184,212,240,0.18);
  border-radius: 20px;
  padding: 24px 20px 20px;
  box-shadow: 0 20px 60px rgba(5,10,20,0.18);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.sv-home-plan-card:hover {
  border-color: rgba(245,158,43,0.5);
  background: rgba(245,158,43,0.04);
  box-shadow: 0 0 0 1px rgba(245,158,43,0.15), 0 20px 60px rgba(5,10,20,0.25);
}

.sv-home-plan-card--featured {
  border-color: rgba(245,158,43,0.4);
  box-shadow: 0 0 0 1px rgba(245,158,43,0.15), 0 20px 60px rgba(5,10,20,0.18);
}

.sv-home-plan-badge {
  position: absolute;
  top: -11px;
  left: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.sv-home-plan-card h3 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
}

.sv-home-plan-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 8px;
}

.sv-home-plan-price span {
  font-size: 0.88rem;
  color: var(--ice);
  opacity:0.85;
  margin-left: 3px;
}

.sv-home-plan-meta {
  font-size: 0.82rem;
  color: var(--ice);
  opacity:0.85;
  margin-top: 5px;
}

.sv-home-plan-card ul {
  list-style: none;
  display: grid;
  gap: 7px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(184,212,240,0.07);
}

.sv-home-plan-card li {
  font-size: 0.85rem;
  color: var(--white);
  padding-left: 16px;
  position: relative;
  opacity: 0.85;
}

.sv-home-plan-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ping-green);
  box-shadow: 0 0 8px rgba(34,197,94,0.5);
}

.sv-home-pricing-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(13,28,50,0.82);
  border: 1px solid rgba(184,212,240,0.18);
}

.sv-home-pricing-teaser-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.sv-home-pricing-teaser-copy {
  font-size: 0.9rem;
  color: var(--ice);
  opacity:0.85;
  margin-top: 5px;
}

.sv-home-plan-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ── Final CTA ──────────────────────────────────────────────── */
.sv-home-final-cta { padding-bottom: 60px; }

.sv-home-final-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 36px;
  border-radius: 24px;
  background: linear-gradient(130deg, rgba(42,95,165,0.18), rgba(255,255,255,0.05));
  border: 1px solid rgba(184,212,240,0.12);
  box-shadow: 0 24px 70px rgba(5,10,22,0.2);
}

/* ── Hero widget — alert-first redesign ─────────────────────── */
.sv-home-widget-incident-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(239,68,68,0.1);
  border-bottom: 1px solid rgba(239,68,68,0.18);
}

.sv-home-widget-incident-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(239,68,68,0.2);
  color: #f87171;
  flex-shrink: 0;
}

.sv-home-widget-incident-top-body { flex: 1; min-width: 0; }

.sv-home-widget-incident-top-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: #fca5a5;
}

.sv-home-widget-incident-top-sub {
  font-size: 0.72rem;
  color: var(--ice);
  opacity: 0.85;
  margin-top: 2px;
}

.sv-home-widget-alerts-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ice);
  opacity: 0.35;
  padding: 10px 16px 6px;
}

.sv-home-widget-delivery {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sv-home-widget-delivery-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(184,212,240,0.05);
}

.sv-home-widget-delivery-row--slack { border-left: 3px solid #4A154B; }
.sv-home-widget-delivery-row--sms   { border-left: 3px solid #16a34a; }
.sv-home-widget-delivery-row--email { border-left: 3px solid #2563eb; }

.sv-home-widget-delivery-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  flex-shrink: 0;
}

.sv-home-widget-delivery-detail {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sv-home-widget-delivery-channel {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ice);
  opacity: 0.85;
}

.sv-home-widget-delivery-msg {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sv-home-widget-delivery-time {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ping-green);
  white-space: nowrap;
  flex-shrink: 0;
}

.sv-home-widget-context-row {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ice);
  opacity: 0.85;
  border-top: 1px solid rgba(184,212,240,0.08);
  background: rgba(255,255,255,0.02);
  flex-wrap: wrap;
  row-gap: 4px;
}

/* ── Section eyebrow label ──────────────────────────────────── */
.sv-home-section-eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

/* ── Generic left/right split layout ────────────────────────── */
.sv-home-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.sv-home-split--reverse { direction: rtl; }
.sv-home-split--reverse > * { direction: ltr; }

.sv-home-split-copy { max-width: 52ch; }

/* ── Image placeholders ─────────────────────────────────────── */
.sv-home-img-placeholder {
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(184,212,240,0.15);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv-home-img-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ice);
  opacity: 0.35;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  padding: 24px;
}

/* ── Location tags ──────────────────────────────────────────── */
.sv-home-location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.sv-home-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(42,95,165,0.15);
  border: 1px solid rgba(42,95,165,0.3);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ice);
}

/* ── Heartbeat visual ───────────────────────────────────────── */
.sv-home-hb-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sv-home-hb-flow {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184,212,240,0.1);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sv-home-hb-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.sv-home-hb-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(42,95,165,0.2);
  color: var(--ice);
  flex-shrink: 0;
}

.sv-home-hb-step-icon--ping {
  background: rgba(245,158,43,0.15);
  color: var(--orange);
}

.sv-home-hb-step-label {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--white);
  margin-top: 2px;
}

.sv-home-hb-step-sub {
  font-size: 0.75rem;
  color: var(--ice);
  opacity: 0.85;
  margin-top: 3px;
}

.sv-home-hb-step-code {
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  color: var(--orange);
  background: rgba(245,158,43,0.08);
  border: 1px solid rgba(245,158,43,0.15);
  border-radius: 6px;
  padding: 4px 8px;
  margin-top: 5px;
  display: inline-block;
}

.sv-home-hb-step-code em {
  font-style: normal;
  opacity: 0.6;
}

.sv-home-hb-arrow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 8px 0 8px 54px;
  color: var(--ice);
  opacity: 0.35;
}

.sv-home-hb-arrow-healthy {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ping-green);
  opacity: 1;
}

.sv-home-hb-arrow--split { opacity: 1; }

.sv-home-hb-arrow-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 0;
}

.sv-home-hb-arrow-branch {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ping-green);
}

.sv-home-hb-arrow-branch--alert { color: #f87171; }

.sv-home-hb-usecases {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.sv-home-hb-usecase {
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,212,240,0.1);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ice);
  opacity: 0.85;
}

/* ── Text swap animation ────────────────────────────────────── */
.sv-swap-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.sv-swap-inner {
  display: block;
  will-change: transform, opacity;
  line-height: inherit;
}
@keyframes svSwapOut {
  from { transform: translateY(0);     opacity: 1; }
  to   { transform: translateY(-110%); opacity: 0; }
}
@keyframes svSwapIn {
  from { transform: translateY(110%);  opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

/* ── Integration logo grid ──────────────────────────────────── */
.sv-home-logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.sv-home-logo-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.sv-home-logo-tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
}

.sv-home-logo-tile span {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--ice);
  opacity: 0.85;
  text-align: center;
}

/* ── SSL + Domain two-col cards ─────────────────────────────── */
.sv-home-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.sv-home-two-col-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,212,240,0.09);
  border-radius: 20px;
  padding: 26px 24px;
}

.sv-home-two-col-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-top: 14px;
}

.sv-home-two-col-card p {
  font-size: 0.875rem;
  color: var(--ice);
  opacity: 0.85;
  line-height: 1.65;
  margin-top: 8px;
}

.sv-home-two-col-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(184,212,240,0.07);
}

.sv-home-stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.sv-home-stat-label {
  font-size: 0.78rem;
  color: var(--ice);
  opacity: 0.85;
}

/* ── Status page pills ──────────────────────────────────────── */
.sv-home-status-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 22px;
}

.sv-home-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  max-width: fit-content;
}

.sv-home-status-pill--green {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  color: #4ade80;
}

.sv-home-status-pill--red {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  color: #f87171;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .sv-home-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .sv-home-hero-grid,
  .sv-home-integrations-row,
  .sv-home-final-cta-box,
  .sv-home-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sv-home-split--reverse { direction: ltr; }

  .sv-home-steps,
  .sv-home-two-col {
    grid-template-columns: 1fr;
  }

  .sv-home-title     { max-width: none; }
  .sv-home-widget    { max-width: 440px; }
  .sv-home-split-copy { max-width: none; }
  .sv-home-img-placeholder { min-height: 200px; }
}

@media (max-width: 700px) {
  .sv-home-shell { width: min(calc(100% - 28px), var(--sv-max)); }

  .sv-home-hero  { padding-top: 30px; }

  .sv-home-feature-grid { grid-template-columns: 1fr; }

  .sv-home-final-cta-box { padding: 24px; }

  .sv-home-actions--stack-mobile .sv-btn {
    width: 100%;
    justify-content: center;
  }

  .sv-home-pricing-teaser {
    flex-direction: column;
    align-items: flex-start;
  }

  .sv-home-pricing-teaser .sv-btn { width: 100%; justify-content: center; }

  .pub-header-actions .sv-btn { padding-left: 14px; padding-right: 14px; }

  .pub-footer { gap: 16px; }
}
