/* WAR-1 X1 — StreamLumi marketing / acquisition surfaces */
.sl-mkt {
  --mkt-ink: #f4efe6;
  --mkt-muted: rgba(244, 239, 230, 0.72);
  --mkt-amber: #e8b86d;
  --mkt-amber-deep: #c9923f;
  --mkt-line: rgba(244, 239, 230, 0.12);
  --mkt-panel: rgba(12, 14, 18, 0.72);
  --mkt-bg0: #07080b;
  --mkt-bg1: #12151c;
  color: var(--mkt-ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px 520px at 12% -10%, rgba(232, 184, 109, 0.16), transparent 55%),
    radial-gradient(900px 480px at 88% 0%, rgba(180, 90, 70, 0.12), transparent 50%),
    linear-gradient(180deg, var(--mkt-bg1), var(--mkt-bg0) 42%, #050608);
  min-height: 70vh;
  padding: 0 0 72px;
}

.sl-mkt-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 20px 0;
}

.sl-mkt-subnav__link {
  color: var(--mkt-muted);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.sl-mkt-subnav__link:hover,
.sl-mkt-subnav__link.is-active {
  color: var(--mkt-ink);
  border-bottom-color: var(--mkt-amber);
}

.sl-mkt-hero {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(36px, 7vw, 72px) 20px clamp(28px, 5vw, 48px);
  min-height: min(78vh, 720px);
  display: grid;
  align-content: end;
  gap: 18px;
  overflow: hidden;
}

.sl-mkt-hero::before {
  content: "";
  position: absolute;
  inset: 8% 8% auto auto;
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  border-radius: 40% 60% 55% 45%;
  background:
    radial-gradient(circle at 35% 30%, rgba(232, 184, 109, 0.35), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(90, 60, 40, 0.45), transparent 60%);
  filter: blur(2px);
  pointer-events: none;
  animation: sl-mkt-orb 14s ease-in-out infinite alternate;
}

.sl-mkt-brand {
  position: relative;
  z-index: 1;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0;
  color: var(--mkt-ink);
}

.sl-mkt-brand span {
  display: block;
  color: var(--mkt-amber);
}

.sl-mkt-hero h1 {
  position: relative;
  z-index: 1;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 18ch;
  line-height: 1.2;
}

.sl-mkt-lede {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 36ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--mkt-muted);
}

.sl-mkt-cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.sl-mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.sl-mkt-btn--primary {
  background: linear-gradient(135deg, var(--mkt-amber), var(--mkt-amber-deep));
  color: #16120c;
}

.sl-mkt-btn--ghost {
  border: 1px solid var(--mkt-line);
  color: var(--mkt-ink);
  background: rgba(255, 255, 255, 0.03);
}

.sl-mkt-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px 20px 0;
}

.sl-mkt-section h2 {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.sl-mkt-section > p {
  margin: 0 0 22px;
  max-width: 54ch;
  color: var(--mkt-muted);
  line-height: 1.6;
}

.sl-mkt-steps {
  display: grid;
  gap: 22px;
  counter-reset: mktstep;
}

.sl-mkt-step {
  counter-increment: mktstep;
  padding-top: 8px;
  border-top: 1px solid var(--mkt-line);
}

.sl-mkt-step h3 {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.1rem;
  margin: 0 0 8px;
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.sl-mkt-step h3::before {
  content: counter(mktstep, decimal-leading-zero);
  color: var(--mkt-amber);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.sl-mkt-step p {
  margin: 0;
  color: var(--mkt-muted);
  line-height: 1.55;
  max-width: 60ch;
}

.sl-mkt-split {
  display: grid;
  gap: 28px;
}

@media (min-width: 900px) {
  .sl-mkt-split {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .sl-mkt-steps {
    grid-template-columns: 1fr 1fr;
  }
}

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

.sl-mkt-list li {
  padding-left: 0;
  color: var(--mkt-muted);
  line-height: 1.55;
}

.sl-mkt-list strong {
  display: block;
  color: var(--mkt-ink);
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
}

.sl-mkt-faq details {
  border-top: 1px solid var(--mkt-line);
  padding: 14px 0;
}

.sl-mkt-faq summary {
  cursor: pointer;
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 600;
  list-style: none;
}

.sl-mkt-faq summary::-webkit-details-marker {
  display: none;
}

.sl-mkt-faq details[open] summary {
  color: var(--mkt-amber);
}

.sl-mkt-faq details p {
  margin: 10px 0 0;
  color: var(--mkt-muted);
  line-height: 1.55;
  max-width: 62ch;
}

.sl-mkt-warn {
  border-left: 3px solid var(--mkt-amber);
  padding: 12px 0 12px 16px;
  margin: 18px 0;
  color: var(--mkt-muted);
  line-height: 1.55;
}

.sl-mkt-warn strong {
  color: var(--mkt-ink);
}

.sl-mkt-footer-band {
  max-width: 1120px;
  margin: 48px auto 0;
  padding: 28px 20px 0;
  border-top: 1px solid var(--mkt-line);
}

.sl-mkt-footer-band h2 {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.35rem;
  margin: 0 0 8px;
}

.sl-mkt-footer-band p {
  margin: 0 0 16px;
  color: var(--mkt-muted);
}

@keyframes sl-mkt-orb {
  from { transform: translate(0, 0) scale(1); opacity: 0.85; }
  to { transform: translate(-18px, 22px) scale(1.06); opacity: 1; }
}

@media (max-width: 700px) {
  .sl-mkt-hero {
    min-height: auto;
    padding-top: 28px;
  }
  .sl-mkt-btn {
    width: 100%;
  }
  .sl-mkt-cta-row {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sl-mkt-hero::before,
  .sl-mkt-btn {
    animation: none !important;
    transition: none !important;
  }
}
