/**
 * Landing pubbliche — layer marketing unificato (prefisso sl-).
 * Variabili: --sl-* (inline su #lpApp) + --lp-* per modali.
 */

body.landing.landing-single {
  margin: 0;
  display: block;
  min-height: 100dvh;
  font-family: var(--sl-font-family, "Inter", "Segoe UI", system-ui, sans-serif);
  color: var(--sl-text, #0f172a);
  background: var(--sl-bg, #f5f7fb);
}

.sl-theme-professional {
  --sl-font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

.sl-theme-editorial {
  --sl-font-family: Georgia, "Times New Roman", serif;
}

.sl-theme-compact {
  --sl-font-family: "Segoe UI", system-ui, sans-serif;
}

#lpApp.lp-app.sl-landing-root,
#lpApp.lp-app {
  position: relative;
  min-height: 100dvh;
  box-sizing: border-box;
  overflow-x: hidden;
  padding: 0;
  color: var(--sl-text, #0f172a);
}

.sl-page {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(16px, 3vw, 28px) clamp(16px, 3vw, 32px) 48px;
  box-sizing: border-box;
}

/* --- Topbar --- */
.sl-topbar {
  position: sticky;
  top: 0;
  z-index: 8;
  margin: 0 0 clamp(20px, 3vw, 32px);
  padding: 12px 0;
  background: color-mix(in srgb, var(--sl-surface, #fff) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--sl-border, #d9e2ef) 70%, transparent);
}

.sl-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.sl-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 1 auto;
  min-width: 0;
}

.sl-brand__badge {
  display: block;
  line-height: 0;
  max-width: min(200px, 42vw);
}

.sl-brand__logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.sl-topbar__nav {
  display: none;
  align-items: center;
  gap: clamp(8px, 2vw, 20px);
  flex: 1;
  justify-content: center;
}

@media (min-width: 880px) {
  .sl-topbar__nav {
    display: flex;
  }
}

.sl-topbar__link {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sl-muted, #475569);
  text-decoration: none;
  white-space: nowrap;
}

.sl-topbar__link:hover {
  color: var(--sl-primary, #0b5fff);
}

.sl-topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* --- Buttons --- */
.sl-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--sl-radius-md, 14px);
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.sl-btn:hover {
  transform: translateY(-1px);
}

.sl-btn:disabled,
.sl-btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.sl-btn:disabled:hover,
.sl-btn[aria-disabled="true"]:hover {
  transform: none;
}

.sl-btn--lg {
  min-height: 52px;
  padding: 0 24px;
  font-size: 0.98rem;
}

.sl-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--sl-primary-dark, #0848c7), var(--sl-primary, #0b5fff));
  box-shadow: 0 12px 28px color-mix(in srgb, var(--sl-primary, #0b5fff) 28%, transparent);
}

.sl-btn--ghost {
  color: var(--sl-text, #0f172a);
  background: color-mix(in srgb, var(--sl-surface, #fff) 92%, transparent);
  border-color: color-mix(in srgb, var(--sl-border, #d9e2ef) 85%, var(--sl-text));
}

/* --- Hero split --- */
.sl-hero {
  margin-bottom: clamp(28px, 5vw, 48px);
}

.sl-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.sl-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sl-primary, #0b5fff);
}

.sl-hero__title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--sl-text, #0f172a);
}

.sl-hero-size-compact .sl-hero__title {
  font-size: clamp(1.75rem, 3.6vw, 2.55rem);
}

.sl-hero-size-normal .sl-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
}

.sl-hero-size-large .sl-hero__title {
  font-size: clamp(2.25rem, 5.2vw, 3.75rem);
}

.sl-hero__subtitle {
  margin: 0 0 22px;
  max-width: 46ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--sl-muted, #475569);
}

.sl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sl-hero__figure {
  position: relative;
  isolation: isolate;
  border-radius: var(--sl-radius-lg, 22px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--sl-border, #d9e2ef) 80%, transparent);
  box-shadow: var(--sl-shadow, 0 18px 48px rgba(15, 23, 42, 0.08));
  min-height: 200px;
  aspect-ratio: 16 / 10;
  background: color-mix(in srgb, var(--sl-bg-soft, #dbe6ff) 55%, var(--sl-surface, #fff));
}

/* Video hero nel blocco marketing (stesso file di INTRO, id distinto) */
.sl-hero__figure .hv-video-wrap {
  border-radius: inherit;
}

.sl-hero__figure .hv-video {
  border-radius: inherit;
}

.sl-hero__media.landing-static-hero-media,
.sl-hero__figure .landing-static-hero-media {
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.sl-hero__figure .landing-static-hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .sl-hero__grid {
    grid-template-columns: 1fr;
  }

  .sl-hero__actions {
    justify-content: flex-start;
  }

  .sl-hero__figure {
    order: -1;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}

/* --- Highlight grid --- */
.sl-highlight {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.sl-highlight__inner {
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--sl-radius-lg, 22px);
  background: var(--sl-surface, #fff);
  border: 1px solid color-mix(in srgb, var(--sl-border, #d9e2ef) 85%, transparent);
  box-shadow: var(--sl-shadow, 0 18px 48px rgba(15, 23, 42, 0.06));
}

.sl-highlight__kicker {
  margin: 0 0 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sl-primary, #0b5fff);
}

.sl-highlight__title {
  margin: 0 0 22px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.sl-highlight__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.sl-highlight__card {
  padding: 18px 18px 20px;
  border-radius: var(--sl-radius-md, 14px);
  border: 1px solid color-mix(in srgb, var(--sl-border, #d9e2ef) 90%, transparent);
  background: color-mix(in srgb, var(--sl-bg, #f5f7fb) 35%, var(--sl-surface, #fff));
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.sl-highlight__card:hover {
  border-color: color-mix(in srgb, var(--sl-primary, #0b5fff) 25%, var(--sl-border));
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.sl-highlight__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  color: var(--sl-primary, #0b5fff);
}

.sl-highlight__icon svg {
  width: 100%;
  height: 100%;
}

.sl-highlight__card-title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.sl-highlight__card-desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--sl-muted, #475569);
}

/* --- Value band --- */
.sl-value-band {
  margin-bottom: clamp(24px, 4vw, 40px);
  padding: clamp(22px, 3vw, 36px) clamp(18px, 3vw, 28px);
  border-radius: var(--sl-radius-lg, 22px);
  background: linear-gradient(135deg, var(--sl-navy, #0f172a) 0%, color-mix(in srgb, var(--sl-navy, #0f172a) 72%, var(--sl-primary-dark, #0848c7)) 100%);
  color: #e2e8f0;
}

.sl-value-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}

.sl-value-band__item {
  padding: 8px 4px;
  min-width: 0;
}

.sl-value-band__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  color: color-mix(in srgb, #fff 70%, var(--sl-accent, #7c3aed));
}

.sl-value-band__icon svg {
  width: 100%;
  height: 100%;
}

.sl-value-band__title {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #f8fafc;
}

.sl-value-band__body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.62;
  color: rgba(226, 232, 240, 0.88);
  text-wrap: balance;
  hyphens: auto;
  overflow-wrap: break-word;
}

/* --- Trust logos --- */
.sl-trust {
  margin-bottom: clamp(28px, 4vw, 44px);
  text-align: center;
}

.sl-trust__line {
  margin: 0 0 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sl-muted, #475569);
}

.sl-trust__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
}

.sl-trust__logo {
  max-height: 36px;
  width: auto;
  max-width: min(140px, 28vw);
  object-fit: contain;
  opacity: 0.82;
  filter: grayscale(0.15);
}

/* --- Stats --- */
.sl-stats {
  margin-bottom: clamp(24px, 3vw, 36px);
}

.sl-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.sl-stat {
  padding: 16px 18px;
  border-radius: var(--sl-radius-md, 14px);
  background: var(--sl-surface, #fff);
  border: 1px solid color-mix(in srgb, var(--sl-border, #d9e2ef) 80%, transparent);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.sl-stat dt {
  margin: 0;
  font-size: 0.82rem;
  color: var(--sl-muted, #475569);
}

.sl-stat dd {
  margin: 8px 0 0;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* --- Webinar: stage --- */
.sl-stage {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.sl-stage__head {
  max-width: 52rem;
  margin-bottom: 20px;
}

.sl-stage__kicker {
  margin: 0 0 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sl-primary, #0b5fff);
}

.sl-stage__title {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
}

.sl-stage__subtitle {
  margin: 0;
  color: var(--sl-muted, #475569);
  line-height: 1.6;
}

.sl-stage__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.sl-stage-card {
  padding: 20px;
  border-radius: var(--sl-radius-md, 14px);
  background: var(--sl-surface, #fff);
  border: 1px solid color-mix(in srgb, var(--sl-border, #d9e2ef) 85%, transparent);
}

.sl-stage-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  color: var(--sl-primary, #0b5fff);
}

.sl-stage-card__icon svg {
  width: 100%;
  height: 100%;
}

.sl-stage-card__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
}

.sl-stage-card__desc {
  margin: 0 0 12px;
  font-size: 0.92rem;
  color: var(--sl-muted, #475569);
  line-height: 1.55;
}

.sl-stage-card__bullets {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--sl-muted, #475569);
  line-height: 1.5;
}

/* --- Webinar: control --- */
.sl-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 44px);
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--sl-radius-lg, 22px);
  background: var(--sl-surface, #fff);
  border: 1px solid color-mix(in srgb, var(--sl-border, #d9e2ef) 85%, transparent);
}

.sl-control__monitor {
  color: var(--sl-muted, #64748b);
}

.sl-control__monitor svg {
  width: 100%;
  height: auto;
  display: block;
}

.sl-control__kicker {
  margin: 0 0 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sl-primary, #0b5fff);
}

.sl-control__title {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 800;
}

.sl-control__intro {
  display: grid;
  gap: 8px;
}

.sl-control__subtitle {
  margin: 0 0 16px;
  color: var(--sl-muted, #475569);
  line-height: 1.6;
}

.sl-control__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.sl-control-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.sl-control-feature__icon {
  flex: 0 0 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  background: var(--sl-primary-soft, color-mix(in srgb, var(--sl-primary) 18%, transparent));
  color: var(--sl-primary-dark, #0848c7);
}

.sl-control-feature__title {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

.sl-control-feature__desc {
  margin: 0;
  font-size: 0.88rem;
  color: var(--sl-muted, #475569);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .sl-control {
    grid-template-columns: 1fr;
  }
}

/* --- Webinar: numbers --- */
.sl-numbers {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.sl-numbers__head {
  margin-bottom: 16px;
}

.sl-numbers__kicker {
  margin: 0 0 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sl-primary, #0b5fff);
}

.sl-numbers__title {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 800;
}

.sl-numbers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.sl-number {
  padding: 18px;
  border-radius: var(--sl-radius-md, 14px);
  background: var(--sl-surface, #fff);
  border: 1px solid color-mix(in srgb, var(--sl-border, #d9e2ef) 85%, transparent);
  text-align: center;
}

.sl-number__value {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.sl-number__label {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: var(--sl-muted, #475569);
}

/* --- Meeting: who / values / quote --- */
.sl-whofor {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.sl-whofor__intro {
  margin-bottom: 18px;
}

.sl-whofor__kicker {
  margin: 0 0 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sl-primary, #0b5fff);
}

.sl-whofor__title {
  margin: 0;
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  font-weight: 800;
}

.sl-whofor__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.sl-whofor__card {
  padding: 22px;
  border-radius: var(--sl-radius-lg, 22px);
  background: var(--sl-surface, #fff);
  border: 1px solid color-mix(in srgb, var(--sl-border, #d9e2ef) 85%, transparent);
}

.sl-whofor__shape {
  height: 56px;
  margin-bottom: 12px;
  color: var(--sl-primary, #0b5fff);
}

.sl-whofor__shape svg {
  height: 100%;
  width: auto;
}

.sl-whofor__card-title {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 700;
}

.sl-whofor__lead {
  margin: 0 0 10px;
  color: var(--sl-muted, #475569);
  line-height: 1.55;
}

.sl-whofor__bullets {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--sl-muted, #475569);
  font-size: 0.9rem;
  line-height: 1.5;
}

.sl-values {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.sl-values__intro {
  margin-bottom: 18px;
}

.sl-values__kicker {
  margin: 0 0 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sl-primary, #0b5fff);
}

.sl-values__title {
  margin: 0;
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  font-weight: 800;
}

.sl-values__list {
  display: grid;
  gap: 18px;
}

.sl-values__row {
  display: grid;
  grid-template-columns: minmax(0, 100px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: var(--sl-radius-md, 14px);
  background: var(--sl-surface, #fff);
  border: 1px solid color-mix(in srgb, var(--sl-border, #d9e2ef) 85%, transparent);
}

.sl-values__row--reverse {
  direction: rtl;
}

.sl-values__row--reverse > * {
  direction: ltr;
}

.sl-values__shape {
  color: var(--sl-primary, #0b5fff);
}

.sl-values__shape svg {
  width: 100%;
  max-width: 100px;
  height: auto;
}

.sl-values__copy-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
}

.sl-values__copy-desc {
  margin: 0;
  font-size: 0.92rem;
  color: var(--sl-muted, #475569);
  line-height: 1.55;
}

@media (max-width: 640px) {
  .sl-values__row,
  .sl-values__row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.sl-quote {
  margin-bottom: clamp(28px, 4vw, 44px);
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--sl-radius-lg, 22px);
  background: color-mix(in srgb, var(--sl-bg-soft, #dbe6ff) 45%, var(--sl-surface, #fff));
  border: 1px solid color-mix(in srgb, var(--sl-border, #d9e2ef) 75%, transparent);
}

.sl-quote blockquote {
  margin: 0;
}

.sl-quote p {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  font-style: italic;
  color: var(--sl-text, #0f172a);
}

.sl-quote cite {
  display: block;
  margin-top: 14px;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  color: var(--sl-muted, #475569);
}

/* --- Instance: flow / features --- */
.sl-flow {
  margin-bottom: clamp(24px, 3vw, 36px);
  padding: clamp(20px, 2.5vw, 26px);
  border-radius: var(--sl-radius-lg, 22px);
  background: var(--sl-surface, #fff);
  border: 1px solid color-mix(in srgb, var(--sl-border, #d9e2ef) 85%, transparent);
  border-left: 3px solid var(--sl-primary, #0b5fff);
}

.sl-flow__kicker {
  margin: 0 0 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sl-primary, #0b5fff);
}

.sl-flow__title {
  margin: 0 0 14px;
  font-size: 1.2rem;
  font-weight: 800;
}

.sl-flow__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.sl-flow__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.55;
}

.sl-flow__dot {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--sl-primary, #0b5fff), var(--sl-accent, #7c3aed));
}

.sl-features {
  margin-bottom: clamp(24px, 3vw, 36px);
}

.sl-features__intro {
  margin-bottom: 14px;
}

.sl-features__kicker {
  margin: 0 0 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sl-primary, #0b5fff);
}

.sl-features__title {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
}

.sl-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.sl-feature-card {
  padding: 18px;
  border-radius: var(--sl-radius-md, 14px);
  background: var(--sl-surface, #fff);
  border: 1px solid color-mix(in srgb, var(--sl-border, #d9e2ef) 85%, transparent);
  transition: box-shadow 0.18s ease;
}

.sl-feature-card:hover {
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
}

.sl-feature-card__title {
  margin: 0 0 8px;
  font-size: 0.98rem;
  font-weight: 700;
}

.sl-feature-card__desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--sl-muted, #475569);
  line-height: 1.55;
}

/* --- Promo page --- */
.sl-promo {
  margin-top: 8px;
}

.sl-promo__title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.sl-promo__lead {
  margin: 0 0 18px;
  color: var(--sl-muted, #475569);
  line-height: 1.6;
  max-width: 52rem;
}

/* --- Footer --- */
.sl-footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--sl-border, #d9e2ef) 70%, transparent);
  text-align: center;
  font-size: 0.84rem;
  color: var(--sl-muted, #475569);
}

.sl-footer p {
  margin: 0;
}

/* --- Extra media strip (meeting poster) --- */
.sl-media-strip {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.sl-media-strip__frame {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--sl-radius-lg, 22px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--sl-border, #d9e2ef) 80%, transparent);
  box-shadow: var(--sl-shadow, 0 18px 48px rgba(15, 23, 42, 0.08));
  aspect-ratio: 16 / 10;
  background: color-mix(in srgb, var(--sl-bg-soft, #dbe6ff) 40%, var(--sl-surface, #fff));
}

.sl-media-strip__frame .landing-static-hero-media,
.sl-media-strip__frame .sl-hero__media {
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.sl-media-strip__frame .landing-static-hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sl-media-strip__caption {
  text-align: center;
  margin: 14px 0 0;
  font-size: 0.92rem;
  color: var(--sl-muted, #475569);
}

/* --- Reserved landing redesign --- */
body.landing.landing-single {
  background:
    radial-gradient(circle at 88% 18%, color-mix(in srgb, var(--sl-bg-soft, #dbe6ff) 55%, transparent) 0 18%, transparent 34%),
    linear-gradient(180deg, #fff 0%, var(--sl-bg, #f5f7fb) 100%);
}

.sl-page {
  width: min(1440px, 100%);
  padding: 0 clamp(18px, 4vw, 64px) 28px;
  max-width: 100%;
}

.sl-page,
.sl-page main,
.sl-topbar,
.sl-topbar__inner,
.sl-hero,
.sl-hero__grid,
.sl-hero__copy,
.sl-hero__figure,
.sl-highlight,
.sl-highlight__inner,
.sl-highlight__grid,
.sl-highlight__card,
.sl-footer {
  min-width: 0;
}

.sl-hero__title,
.sl-hero__subtitle,
.sl-hero__eyebrow,
.sl-highlight__card-title,
.sl-highlight__card-desc,
.sl-footer,
.sl-btn {
  overflow-wrap: anywhere;
}

.sl-topbar {
  width: 100vw;
  margin: 0 0 16px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 12px clamp(18px, 4vw, 64px);
  box-sizing: border-box;
  background: color-mix(in srgb, #fff 92%, transparent);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.sl-topbar__inner {
  min-height: 40px;
  flex-wrap: nowrap;
}

.sl-brand__badge {
  max-width: min(190px, 46vw);
}

.sl-brand__logo {
  max-height: 54px;
}

.sl-topbar__nav {
  gap: clamp(18px, 3vw, 38px);
}

.sl-topbar__link {
  font-size: 0.82rem;
  color: #1f2937;
}

.sl-hamburger-menu {
  display: block;
  height: 0;
}

body.sl-hamburger-menu-open {
  overflow: hidden;
  touch-action: none;
}

.sl-hamburger-menu__button {
  appearance: none;
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 16px;
  background: #fff;
  color: var(--sl-text, #0f172a);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
  position: relative;
  z-index: 62;
}

.sl-hamburger-menu__button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--sl-primary, #0b5fff) 36%, transparent);
  outline-offset: 2px;
}

.sl-hamburger-menu__button:hover {
  border-color: color-mix(in srgb, var(--sl-primary, #0b5fff) 36%, rgba(15, 23, 42, 0.14));
  color: var(--sl-primary-dark, #0848c7);
}

.sl-hamburger-menu__button:active {
  transform: scale(0.98);
}

.sl-hamburger-menu__button span {
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.sl-hamburger-menu.is-open .sl-hamburger-menu__button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.sl-hamburger-menu.is-open .sl-hamburger-menu__button span:nth-child(2) {
  opacity: 0;
}

.sl-hamburger-menu.is-open .sl-hamburger-menu__button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sl-hamburger-menu__backdrop {
  appearance: none;
  position: fixed;
  inset: 0;
  z-index: 58;
  border: 0;
  padding: 0;
  background: rgba(15, 23, 42, 0.36);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  cursor: pointer;
}

.sl-hamburger-menu__panel {
  position: fixed;
  inset: 12px;
  z-index: 60;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--sl-primary, #0b5fff) 7%, #fff), #fff 34%),
    #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}

.sl-hamburger-menu.is-open .sl-hamburger-menu__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.sl-hamburger-menu.is-open .sl-hamburger-menu__panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.sl-hamburger-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.sl-hamburger-menu__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.sl-hamburger-menu__logo {
  max-width: 118px;
  max-height: 42px;
  object-fit: contain;
}

.sl-hamburger-menu__name {
  min-width: 0;
  color: var(--sl-text, #0f172a);
  font-size: 0.9rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.sl-hamburger-menu__close {
  appearance: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.9);
  color: var(--sl-text, #0f172a);
  cursor: pointer;
  position: relative;
}

.sl-hamburger-menu__close:hover {
  background: color-mix(in srgb, var(--sl-primary, #0b5fff) 8%, #fff);
  border-color: color-mix(in srgb, var(--sl-primary, #0b5fff) 16%, transparent);
}

.sl-hamburger-menu__close:active {
  transform: scale(0.98);
}

.sl-hamburger-menu__close span {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.sl-hamburger-menu__close span:first-child {
  transform: rotate(45deg);
}

.sl-hamburger-menu__close span:last-child {
  transform: rotate(-45deg);
}

.sl-hamburger-menu__close:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--sl-primary, #0b5fff) 35%, transparent);
  outline-offset: 2px;
}

.sl-hamburger-menu__links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.sl-hamburger-menu__link {
  appearance: none;
  min-height: 48px;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--sl-text, #0f172a);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.sl-hamburger-menu__link:hover,
.sl-hamburger-menu__link:focus-visible {
  background: #fff;
  border-color: color-mix(in srgb, var(--sl-primary, #0b5fff) 28%, transparent);
  outline: none;
}

.sl-hamburger-menu__link:active {
  transform: scale(0.99);
}

.sl-hamburger-menu__cta {
  appearance: none;
  min-height: 52px;
  width: 100%;
  margin-top: auto;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--sl-primary, #0b5fff);
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
}

.sl-hamburger-menu__cta:hover {
  background: var(--sl-primary-dark, #0848c7);
}

.sl-hamburger-menu__cta:active {
  transform: scale(0.99);
}

.sl-hamburger-menu__cta:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--sl-primary, #0b5fff) 35%, transparent);
  outline-offset: 2px;
}

@media (max-width: 879px) {
  .sl-topbar__actions {
    display: flex;
  }

  .sl-hamburger-menu__button {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: auto;
  }
}

.sl-btn {
  text-decoration: none;
}

.sl-btn:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--sl-primary, #0b5fff) 35%, transparent);
  outline-offset: 2px;
}

.sl-btn:active {
  transform: translateY(0) scale(0.99);
}

.sl-btn--primary {
  background: var(--sl-primary, #0b5fff);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--sl-primary, #0b5fff) 24%, transparent);
}

.sl-btn--ghost {
  background: #fff;
  border-color: rgba(30, 41, 59, 0.14);
}

.sl-btn--login {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 0.8rem;
}

.sl-btn__lock {
  display: inline-flex;
  width: 16px;
  height: 16px;
}

.sl-btn__lock svg {
  width: 100%;
  height: 100%;
}

.sl-hero {
  margin: 0 0 22px;
  min-height: clamp(360px, 56vw, 590px);
  display: grid;
  align-items: center;
}

.sl-hero__grid {
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(28px, 5vw, 86px);
}

.sl-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--sl-primary, #0b5fff) 8%, #fff);
  letter-spacing: 0.08em;
}

.sl-hero__title {
  max-width: 11ch;
  font-size: clamp(2.45rem, 5.4vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.sl-hero__subtitle {
  max-width: 54ch;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.72;
}

.sl-hero__figure {
  border-radius: 24px;
  border: 0;
  box-shadow: none;
  overflow: visible;
  min-height: clamp(260px, 36vw, 500px);
  aspect-ratio: 16 / 10;
  background: transparent;
}

.sl-hero__figure .landing-static-hero-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.14);
}

.sl-hero-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: 26px;
  padding: clamp(12px, 2vw, 20px);
  box-sizing: border-box;
  background: #111827;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.22);
}

.sl-hero-placeholder__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 32px;
  padding: 0 10px;
  border-radius: 14px 14px 0 0;
  background: #f8fafc;
  color: #0f172a;
}

.sl-hero-placeholder__chrome span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #cbd5e1;
}

.sl-hero-placeholder__chrome strong {
  margin-left: 8px;
  font-size: 0.72rem;
  font-weight: 700;
}

.sl-hero-placeholder__screen {
  height: calc(100% - 54px);
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.72fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  border-radius: 16px 16px 16px 16px;
  background: #f8fafc;
  overflow: hidden;
  place-items: center;
}

.sl-hero-placeholder__image {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #f8fafc;
}

.sl-hero-placeholder__tile {
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(15, 23, 42, 0.08)),
    #e2e8f0;
}

.sl-hero-placeholder__tile--large {
  grid-column: span 2;
}

.sl-hero-placeholder__side {
  grid-row: 1 / 3;
  grid-column: 3;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 10px;
  border-left: 1px solid #e2e8f0;
}

.sl-hero-placeholder__side span {
  height: 11px;
  border-radius: 999px;
  background: #dbe4ef;
}

.sl-hero-placeholder__caption {
  position: absolute;
  left: clamp(22px, 3vw, 34px);
  bottom: clamp(16px, 2vw, 24px);
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1e3a8a;
  background: rgba(255, 255, 255, 0.88);
}

@media (min-width: 901px) {
  .sl-hero__grid {
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 0.88fr);
    gap: clamp(24px, 4vw, 64px);
  }

  .sl-hero__figure {
    justify-self: end;
    width: min(100%, 620px);
    margin-right: clamp(12px, 2vw, 28px);
    min-height: clamp(240px, 30vw, 430px);
  }
}

.sl-highlight {
  margin-bottom: clamp(24px, 4vw, 40px);
}

.sl-highlight__inner {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.sl-highlight__kicker,
.sl-highlight__title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.sl-highlight__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.sl-highlight__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: start;
  min-height: 100%;
  padding: clamp(20px, 2.2vw, 28px);
  border-radius: 18px;
  border-color: rgba(191, 213, 242, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 252, 255, 0.96) 100%);
  box-shadow: 0 14px 34px rgba(15, 40, 84, 0.08);
  text-align: left;
}

.sl-highlight__card--rich {
  position: relative;
  overflow: hidden;
}

.sl-highlight__card--rich::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 18% 0%, rgba(68, 137, 255, 0.12), transparent 34%);
}

.sl-highlight__card--rich > * {
  position: relative;
  z-index: 1;
}

.sl-highlight__icon {
  width: 42px;
  height: 42px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--sl-primary, #0b5fff);
  background: linear-gradient(135deg, rgba(234, 242, 255, 0.98), rgba(245, 249, 255, 0.98));
  box-shadow: inset 0 0 0 1px rgba(179, 204, 238, 0.68);
}

.sl-highlight__icon svg {
  width: 24px;
  height: 24px;
}

.sl-highlight__card-title {
  margin: 0;
  color: var(--sl-navy, #0f172a);
  font-size: clamp(1.08rem, 1.25vw, 1.24rem);
  line-height: 1.2;
  text-align: left;
}

.sl-highlight__card-desc {
  margin: -6px 0 0;
  color: #334155;
  font-size: 0.84rem;
  line-height: 1.52;
  text-align: left;
  text-wrap: pretty;
}

.sl-highlight__group,
.sl-highlight__share {
  width: 100%;
}

.sl-highlight__group-label {
  margin: 0 0 8px;
  color: #1e293b;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
}

.sl-highlight__checks {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sl-highlight__checks li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: #26354a;
  font-size: 0.79rem;
  font-weight: 500;
  line-height: 1.42;
}

.sl-highlight__checks svg {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  flex: 0 0 auto;
  fill: var(--sl-primary, #0b5fff);
}

.sl-highlight__share-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.sl-highlight__share-item {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #1f2f46;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.sl-highlight__share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--sl-primary, #0b5fff);
  background: #eef5ff;
  box-shadow: inset 0 0 0 1px rgba(126, 169, 228, 0.38);
}

.sl-highlight__share-icon svg {
  width: 17px;
  height: 17px;
}

.sl-highlight__media {
  width: 100%;
  margin: auto auto 0;
  overflow: hidden;
  border-radius: 16px;
}

.sl-highlight__media-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(15, 23, 42, 0.1));
}

.sl-highlight__media--participants,
.sl-highlight__media--live,
.sl-highlight__media--reliability {
  background: linear-gradient(180deg, rgba(249, 252, 255, 0.88), rgba(255, 255, 255, 0.96));
}

.sl-highlight__media--live .sl-highlight__media-image,
.sl-highlight__media--reliability .sl-highlight__media-image {
  margin-inline: auto;
  max-width: 96%;
}

.sl-highlight__media--participants .sl-highlight__media-image {
  margin-inline: auto;
  max-width: 98%;
}

.sl-highlight__media {
  margin-top: auto;
}

.sl-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 0;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1080px) {
  .sl-highlight__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .sl-topbar__inner {
    flex-wrap: wrap;
  }

  .sl-hero {
    min-height: 0;
    padding-top: 18px;
  }

  .sl-hero__grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .sl-hero__grid > * {
    min-width: 0;
  }

  .sl-hero__figure {
    order: 0;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .sl-hero__title {
    max-width: 12ch;
  }
}

@media (max-width: 680px) {
  .sl-page {
    padding-inline: 16px;
    overflow-x: hidden;
  }

  .sl-topbar {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    padding-inline: 16px;
    max-width: calc(100% + 32px);
  }

  .sl-topbar__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }

  .sl-brand {
    display: flex;
    grid-column: 1;
    justify-self: start;
    max-width: min(128px, 30vw);
    min-width: 0;
  }

  .sl-brand__badge {
    max-width: 100%;
  }

  .sl-brand__logo {
    max-height: 40px;
  }

  .sl-topbar__nav {
    display: none;
  }

  .sl-topbar__actions {
    display: flex;
    grid-column: 2;
    justify-self: center;
    justify-content: center;
    max-width: 100%;
    min-width: 0;
  }

  .sl-btn--login {
    padding-inline: 10px;
  }

  .sl-hamburger-menu__button {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
  }

  .sl-hero__title {
    max-width: 100%;
    font-size: clamp(2.2rem, 14vw, 3.3rem);
  }

  .sl-hero__subtitle {
    max-width: 100%;
  }

  .sl-hero__actions {
    width: 100%;
    max-width: 100%;
  }

  .sl-hero__actions .sl-btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .sl-hero__figure,
  .sl-hero-placeholder {
    width: min(100%, calc(100vw - 32px));
    max-width: 100%;
  }

  .sl-highlight__grid {
    grid-template-columns: 1fr;
  }

  .sl-highlight__card {
    grid-template-columns: 42px minmax(0, 1fr);
  }
}

@media (max-width: 680px) and (prefers-reduced-motion: reduce) {
  .sl-hamburger-menu__panel,
  .sl-hamburger-menu__button span {
    transition: none;
  }
}
