/* ============================================================
   Sourceless B2B — Inline Sections (FINAL ARCHITECTURE)
   All sections inlined directly into index.html
   No iframes for content. Heights auto-fit. No gaps possible.
   ============================================================ */

/* ===== HERO BLOCK with Grünschleier video background ===== */
.sl-hero-block {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  /* Stack the inner sections inside the video area */
  padding: 0 0 56px;
}
.sl-hero-bgvideo {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.20;            /* ~20% as requested */
  pointer-events: none;
  /* Reduce motion-sickness for users who prefer reduced motion */
}
.sl-hero-bgvideo-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  pointer-events: none;
  /* Soft radial vignette + bottom fade so the video blends into the page */
  background:
    radial-gradient(110% 80% at 50% 30%, transparent 0%, rgba(2,6,7,0.32) 70%, rgba(2,6,7,0.78) 100%),
    linear-gradient(180deg, rgba(2,6,7,0.05) 0%, transparent 30%, transparent 70%, rgba(2,6,7,0.85) 100%);
}
.sl-hero-block > .sl-inline,
.sl-hero-block > .sl-wordmark-section { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .sl-hero-bgvideo { display: none; }
}

.sl-inline {
  position: relative;
  width: 100%;
  max-width: 1380px;
  margin: 8px auto;
  padding: 0 48px;
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  color: #f4fbff;
}
.sl-inline + .sl-inline { margin-top: 32px; }
@media (max-width: 768px) {
  .sl-inline { padding: 0 24px; margin: 28px auto; }
}

/* ===== SECTION 01: Hero1 "Digitale Souveränität" ===== */
.sl-inline-hero1 {
  max-width: 1100px;
  text-align: center;
  padding: 96px 32px 32px;
}
.sl-h1-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(180, 255, 220, 0.92);
  margin: 0 0 28px;
}
.sl-h1-eyebrow-line {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,255,195,0.55));
}
.sl-h1-eyebrow-line-r { background: linear-gradient(90deg, rgba(77,255,195,0.55), transparent); }
.sl-h1-headline {
  font-weight: 700;
  font-size: clamp(40px, 6.2vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.032em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.sl-h1-line { display: block; color: #fff; }
.sl-h1-accent {
  background: linear-gradient(90deg, #fff 0%, #b8ff6a 28%, #4dffc3 55%, #9fb4ff 80%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(100,255,200,0.18));
  animation: slShimmer 6s ease-in-out infinite;
}
@keyframes slShimmer { 0%,100%{background-position:0% 50%;} 50%{background-position:100% 50%;} }

/* ===== SECTION 03: Hero2 "Unternehmen bauen" ===== */
.sl-inline-hero2 {
  text-align: center;
  padding: 24px 24px 40px;
}
.sl-h2-text {
  max-width: 1000px;
  margin: 0 auto;
}
.sl-h2-title {
  font-family: "Avenir Light", "Avenir", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(32px, 5.6vw, 66px);
  line-height: 1.14;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 24px;
}
.sl-h2-line {
  display: block;
}
.sl-h2-accent {
  background: linear-gradient(90deg, #fff 0%, #b7ff5f 35%, #63f3ff 65%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slShimmer 6s ease-in-out infinite;
}
.sl-h2-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px auto 22px;
}
.sl-h2-sep-line {
  display: block;
  width: clamp(80px, 16vw, 180px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,255,106,0.55), rgba(99,243,255,0.55), transparent);
}
.sl-h2-sep-hex {
  width: 10px;
  height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 28'><path d='M12 1 L23 7 L23 21 L12 27 L1 21 L1 7 Z' fill='%237cff7a'/></svg>") center/contain no-repeat;
  animation: slHexSpin 9s linear infinite;
}
@keyframes slHexSpin { to { transform: rotate(360deg); } }
.sl-h2-sub {
  font-family: "Avenir Light", "Avenir", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(22px, 3.4vw, 32px);
  line-height: 1.45;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin: 0;
}
.sl-h2-sub-word { display: inline-block; margin-right: 0.4em; }
.sl-h2-sub-word { display: inline-block; margin-right: 0.25em; }

/* ===== SECTION 04: Problem ===== */
.sl-inline-problem { max-width: 1000px; padding: 32px 24px; }
.sl-prob-headline {
  font-weight: 600;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 40px;
  color: #fff;
}
.sl-prob-dash { color: rgba(77,255,195,0.7); margin: 0 0.1em; }
.sl-prob-accent {
  background: linear-gradient(90deg, #fff 0%, #b8ff6a 28%, #4dffc3 55%, #9fb4ff 80%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(100,255,200,0.18));
  animation: slShimmer 6s ease-in-out infinite;
}
.sl-prob-list { display: flex; flex-direction: column; gap: 0; }
.sl-prob-line { height: 1px; background: linear-gradient(90deg, rgba(77,255,195,0.5), rgba(99,243,255,0.4), transparent); }
.sl-prob-content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 8px;
  transition: transform 0.4s ease;
}
.sl-prob-item:hover .sl-prob-content { transform: translateX(10px); }
.sl-prob-num {
  font-size: 14px;
  font-weight: 600;
  color: rgba(77,255,195,0.55);
  letter-spacing: 0.12em;
  min-width: 32px;
  transition: color 0.3s ease;
}
.sl-prob-item:hover .sl-prob-num { color: rgba(184,255,106,0.95); }
.sl-prob-text {
  font-family: 'Avenir', 'Avenir Light', 'Helvetica Neue', sans-serif;
  font-weight: 300;
  font-size: 25px;
  line-height: 1.35;
  color: rgba(210,235,255,0.75);
  flex: 1;
  transition: color 0.3s ease;
}
.sl-prob-item:hover .sl-prob-text { color: #fff; }
.sl-prob-arrow {
  font-size: 22px;
  color: rgba(77,255,195,0.6);
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sl-prob-item:hover .sl-prob-arrow { opacity: 1; }
@media (max-width: 768px) { .sl-prob-text { font-size: 19px; } }

/* ===== SECTION 05: Slider "Was konkret möglich" ===== */
.sl-inline-slider {
  max-width: 1400px;
  padding: 32px 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 18%, rgba(99,243,255,0.07), transparent 22%),
    radial-gradient(circle at 84% 18%, rgba(142,125,255,0.08), transparent 22%),
    linear-gradient(140deg, rgba(2,6,7,0.98) 0%, rgba(8,18,10,0.94) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.sl-slider-head {
  padding: 0 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.sl-slider-kicker {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6BE3FF;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sl-slider-kicker::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: #6BE3FF; box-shadow: 0 0 12px rgba(107,227,255,0.8);
  animation: slPulseDot 2.2s ease-in-out infinite;
}
@keyframes slPulseDot { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(0.7);opacity:0.5;} }
.sl-slider-title {
  margin: 0; font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.04; letter-spacing: -0.04em; font-weight: 700; color: #fff;
}
.sl-slider-grad {
  background: linear-gradient(90deg, #fff 0%, #aaf4ff 40%, #b7ff5f 72%, #ac97ff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slShimmer 7s ease-in-out infinite;
}
.sl-slider-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(210,230,244,0.66);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sl-slider-note::before {
  content: "←";
  font-size: 14px;
  color: #b7ff5f;
  animation: slSliderHint 2.2s ease-in-out infinite;
}
.sl-slider-note::after {
  content: "→";
  font-size: 14px;
  color: #b7ff5f;
  animation: slSliderHint 2.2s ease-in-out infinite 1.1s;
}
@keyframes slSliderHint {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50%      { transform: translateX(3px); opacity: 1; }
}
.sl-slider-track-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0 32px;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  scrollbar-width: none;
  cursor: grab;
  scroll-behavior: smooth;
}
.sl-slider-track-wrap::-webkit-scrollbar { display: none; }
.sl-slider-track-wrap.is-grabbing { cursor: grabbing; scroll-behavior: auto; }
.sl-slider-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 24px;
  animation: slSliderScroll var(--sl-slider-duration, 60s) linear infinite;
  will-change: transform;
}
.sl-slider-track-wrap:hover .sl-slider-track,
.sl-slider-track-wrap.is-manual .sl-slider-track {
  animation-play-state: paused;
}
.sl-slider-track-wrap.is-manual .sl-slider-track {
  animation: none;
  transform: none;
}
@keyframes slSliderScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--sl-slider-shift, 50%))); }
}
@media (max-width: 720px) {
  .sl-slider-track { --sl-slider-duration: 80s; }
}
.sl-slider-card {
  scroll-snap-align: start;
  flex: 0 0 360px;
  min-height: 240px;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(7,12,10,0.82), rgba(9,13,11,0.64));
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  user-select: none;
}
.sl-slider-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124,255,106,0.40);
  box-shadow: 0 14px 32px rgba(0,0,0,0.35), 0 0 28px rgba(183,255,95,0.10);
}
.sl-slider-card-hl { background: linear-gradient(155deg, rgba(124,255,106,0.10), rgba(99,243,255,0.05)); border-color: rgba(124,255,106,0.40); }
.sl-slider-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(210,230,244,0.54);
  margin-bottom: 14px;
}
.sl-slider-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.14;
  font-weight: 700;
  background: linear-gradient(90deg, #fff 0%, #a7f5ff 45%, #b7ff5f 80%, #9ea8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sl-slider-card p { margin: 0 0 18px; font-size: 17px; line-height: 1.55; color: rgba(210,230,244,0.78); flex: 1; }
.sl-slider-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #b7ff5f;
  background: rgba(183,255,95,0.08);
  border: 1px solid rgba(183,255,95,0.22);
  align-self: flex-start;
  transition: all 0.3s ease;
}
.sl-slider-cta svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.sl-slider-card:hover .sl-slider-cta {
  background: rgba(183,255,95,0.15);
  border-color: rgba(183,255,95,0.45);
  box-shadow: 0 0 16px rgba(183,255,95,0.20);
}
.sl-slider-card:hover .sl-slider-cta svg { transform: translateX(3px); }

/* ===== SECTION 06 + 13: Article (expandable) ===== */
.sl-inline-article { max-width: 1100px; }
.sl-art-details { width: 100%; }
.sl-art-trigger {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(99,243,255,0.07), rgba(183,255,95,0.05) 50%, rgba(142,125,255,0.07));
  border: 1px solid rgba(99,243,255,0.18);
  border-radius: 18px;
  cursor: pointer;
  list-style: none;
  transition: all 0.3s ease;
}
.sl-art-trigger::-webkit-details-marker { display: none; }
.sl-art-details[open] .sl-art-trigger,
.sl-art-trigger:hover {
  border-color: rgba(99,243,255,0.4);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px -12px rgba(99,243,255,0.2);
}
.sl-art-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #B7FF5F;
  box-shadow: 0 0 14px #B7FF5F;
  flex-shrink: 0;
}
.sl-art-label { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0; }
.sl-art-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #63F3FF;
}
.sl-art-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  color: #EAFFE7;
  letter-spacing: -0.005em;
}
.sl-art-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(183,255,95,0.06);
  border: 1px dashed rgba(183,255,95,0.30);
  font-size: 13px;
  line-height: 1.35;
  color: rgba(220,255,200,0.85);
  font-weight: 400;
  align-self: flex-start;
  max-width: 100%;
}
.sl-art-hint strong { color: #b7ff5f; font-weight: 600; }
.sl-art-hint::before {
  content: "👆";
  font-size: 14px;
  filter: drop-shadow(0 0 6px rgba(183,255,95,0.5));
  animation: slArtHintBob 1.8s ease-in-out infinite;
}
@keyframes slArtHintBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
details[open] .sl-art-hint { display: none; }
.sl-art-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
  flex-wrap: wrap;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(234,255,231,0.55);
}
.sl-art-stat-num { color: #63F3FF; font-weight: 500; }
.sl-art-stat-num.is-grn { color: #B7FF5F; }
.sl-art-stat-num.is-vio { color: #8E7DFF; }
.sl-art-stat-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(234,255,231,0.55);
  opacity: 0.5;
}
.sl-art-arrow {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(99,243,255,0.35);
  background: rgba(99,243,255,0.08);
  display: grid; place-items: center;
  transition: all 0.4s ease;
}
.sl-art-arrow svg { width: 22px; height: 22px; stroke: #63F3FF; transition: transform 0.4s ease, stroke 0.3s ease; }
.sl-art-details[open] .sl-art-arrow {
  background: rgba(183,255,95,0.18);
  border-color: #B7FF5F;
}
.sl-art-details[open] .sl-art-arrow svg { transform: rotate(180deg); stroke: #B7FF5F; }

/* ===== Mobile: Story-Karten sauberer skalieren ===== */
@media (max-width: 640px) {
  .sl-art-trigger {
    align-items: flex-start;
    gap: 14px;
    padding: 20px 18px;
    border-radius: 16px;
  }
  .sl-art-pulse { margin-top: 7px; }
  .sl-art-label { gap: 10px; }
  .sl-art-eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    line-height: 1.45;
  }
  .sl-art-title {
    font-size: 18px;
    line-height: 1.32;
  }
  .sl-art-hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    padding: 11px 13px;
    border-radius: 12px;
    font-size: 12.5px;
    line-height: 1.5;
  }
  .sl-art-hint::before { font-size: 15px; line-height: 1.4; }
  .sl-art-arrow {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .sl-art-arrow svg { width: 18px; height: 18px; }
  .sl-art-body { padding: 28px 18px 20px; }
}
.sl-art-body { padding: 40px 28px 24px; }
.sl-art-status {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(99,243,255,0.18);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(234,255,231,0.55);
}
.sl-art-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #B7FF5F; box-shadow: 0 0 10px #B7FF5F; }
.sl-art-h-title {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  background: linear-gradient(135deg, #EAFFE7 0%, #63F3FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sl-art-h-sub {
  font-size: 22px; line-height: 1.45;
  color: rgba(234,255,231,0.78);
  margin: 0 0 40px;
  max-width: 75ch;
}
.sl-art-lead {
  font-size: 22px; line-height: 1.6;
  color: #EAFFE7;
  margin: 0 0 48px;
  padding: 26px 30px;
  border-left: 2px solid #63F3FF;
  background: rgba(99,243,255,0.04);
  border-radius: 0 14px 14px 0;
}
.sl-art-sec {
  margin-bottom: 28px;
  padding: 32px 30px;
  background: rgba(18,32,26,0.45);
  border: 1px solid rgba(99,243,255,0.18);
  border-radius: 16px;
  position: relative;
}
.sl-art-sec::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,243,255,0.35), transparent);
}
.sl-art-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #63F3FF;
  margin-bottom: 14px;
}
.sl-art-h {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  color: #EAFFE7;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.sl-art-sec p {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(234,255,231,0.78);
  margin: 0;
}
.sl-art-sec strong { color: #EAFFE7; font-weight: 600; }
.sl-art-closing {
  margin-top: 36px;
  padding: 36px 32px;
  background: linear-gradient(135deg, rgba(99,243,255,0.06), rgba(183,255,95,0.04) 50%, rgba(142,125,255,0.07));
  border: 1px solid rgba(99,243,255,0.35);
  border-radius: 16px;
  position: relative;
}
.sl-art-closing::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #63F3FF 0%, #B7FF5F 50%, #8E7DFF 100%);
}
.sl-art-closing-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #B7FF5F;
  margin-bottom: 14px;
}
.sl-art-closing p {
  font-size: 20px; line-height: 1.55;
  color: #EAFFE7; margin: 0 0 18px;
}
.sl-art-closing p:last-child { margin-bottom: 0; }
.sl-art-closing strong { color: #EAFFE7; font-weight: 600; }
.sl-art-steps { display: grid; gap: 14px; margin-top: 8px; }
.sl-art-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(8,16,12,0.35);
  border: 1px solid rgba(99,243,255,0.18);
  border-radius: 10px;
}
.sl-art-step-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  color: #63F3FF;
  letter-spacing: 0.18em;
}
.sl-art-step-text { font-size: 18px; line-height: 1.55; color: #EAFFE7; }

/* ===== SECTION 08, 10, 12: Block Lists (GodCypher / STR Domains / SLNN) ===== */
.sl-inline-blocks { max-width: 800px; }
.sl-blk-root {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 0 24px;
}
.sl-blk-item {
  display: grid;
  grid-template-columns: 38px 2px 1fr;
  gap: 0 22px;
  align-items: stretch;
  padding: 24px 4px 24px 0;
  position: relative;
  cursor: default;
  transition: transform 0.4s ease;
}
.sl-blk-item:hover { transform: translateX(6px); }
.sl-blk-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.06);
}
.sl-blk-num {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(80,220,140,0.4);
  padding-top: 4px;
  text-align: right;
  transition: color 0.4s ease, transform 0.4s ease;
}
.sl-blk-item:hover .sl-blk-num {
  color: rgba(120,255,170,0.95);
  transform: scale(1.12);
}
.sl-blk-bar {
  width: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.sl-blk-bar-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(100,220,120,0.85) 0%, rgba(77,255,195,0.95) 50%, rgba(155,143,255,0.55) 100%);
}
.sl-blk-tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(80,220,140,0.55);
  margin-bottom: 12px;
  transition: color 0.4s ease;
}
.sl-blk-item:hover .sl-blk-tag { color: rgba(130,255,170,0.95); }
.sl-blk-text {
  font-size: 22px;
  line-height: 1.6;
  color: rgba(235,248,240,0.92);
  margin: 0;
  font-weight: 400;
  transition: color 0.3s ease;
}
.sl-blk-item:hover .sl-blk-text { color: #fff; }
.sl-blk-hl {
  background: linear-gradient(90deg, #7bff6a 0%, #4dffc3 35%, #a095ff 65%, #7bff6a 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  animation: slShimmer 7s linear infinite;
}
@media (max-width: 640px) {
  .sl-blk-item { grid-template-columns: 30px 2px 1fr; gap: 0 16px; padding: 22px 0; }
  .sl-blk-text { font-size: 18px; }
}

/* ===== SECTION 14: Systemic Benefits Header ===== */
.sl-inline-benefits-head {
  max-width: 1100px;
}
.sl-bhead-shell {
  padding: 54px 42px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15,22,18,0.78), rgba(9,14,12,0.62));
  border: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sl-bhead-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(114,255,124,0.10), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(77,255,195,0.08), transparent 24%);
  pointer-events: none;
}
.sl-bhead-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(80,220,140,0.7);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.sl-bhead-title {
  font-size: clamp(32px, 4.4vw, 50px);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 22px;
  position: relative;
  z-index: 1;
}
.sl-bhead-grad {
  background: linear-gradient(90deg, #fff 0%, #b8ff6a 28%, #4dffc3 55%, #9fb4ff 80%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slShimmer 7s ease-in-out infinite;
}
.sl-bhead-text {
  font-size: 22px;
  line-height: 1.5;
  color: rgba(232,241,235,0.86);
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  z-index: 1;
}
.sl-bhead-accent { color: #b8ff6a; font-weight: 500; }

/* ===== SECTION 14b: Benefits Pills — Premium v19 ===== */
.sl-inline-benefits-pills { max-width: 1100px; }
.sl-pills-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 32px 0;
}
.sl-pill {
  position: relative;
  padding: 18px 32px;
  border-radius: 999px;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(124,255,106,0.08), transparent 60%),
    linear-gradient(155deg, rgba(7,18,14,0.78), rgba(9,13,11,0.58));
  border: 1px solid rgba(124, 255, 106, 0.26);
  color: rgba(232, 244, 252, 0.95);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.005em;
  box-shadow: 0 10px 30px rgba(0,0,0,0.32), 0 0 0 1px rgba(124,255,106,0.05) inset;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), border-color 0.45s ease, box-shadow 0.45s ease;
  cursor: default;
}
.sl-pill::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: skewX(-18deg);
  transition: left 0.9s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  border-radius: 999px;
}
.sl-pill:hover {
  border-color: rgba(124,255,106,0.55);
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.42), 0 0 0 1px rgba(124,255,106,0.20) inset, 0 0 24px rgba(124,255,106,0.10);
}
.sl-pill:hover::before { left: 140%; }

/* ===== SECTION 16: 6 Feature Cards ===== */
.sl-inline-cards { max-width: 1320px; }
.sl-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 8px 0;
}
.sl-c-item {
  position: relative;
  padding: 44px 32px 36px;
  border-radius: 26px;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(124,255,106,0.06), transparent 60%),
    radial-gradient(120% 100% at 100% 100%, rgba(99,243,255,0.04), transparent 60%),
    linear-gradient(155deg, rgba(7,18,14,0.92) 0%, rgba(11,18,12,0.85) 100%);
  border: 1px solid rgba(124,255,106,0.18);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 22px 52px rgba(0,0,0,0.30), 0 0 0 1px rgba(124,255,106,0.05) inset;
  overflow: hidden;
  transition: transform 0.55s cubic-bezier(.2,.7,.2,1), border-color 0.45s ease, box-shadow 0.45s ease;
}
.sl-c-item::after {
  content: "";
  position: absolute;
  left: -50%; top: 0; bottom: 0; width: 50%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transform: skewX(-18deg);
  transition: left 0.95s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.sl-c-item:hover {
  transform: translateY(-7px);
  border-color: rgba(124,255,106,0.42);
  box-shadow: 0 32px 72px rgba(0,0,0,0.42), 0 0 0 1px rgba(124,255,106,0.20) inset, 0 0 56px rgba(124,255,106,0.10);
}
.sl-c-item:hover::after { left: 150%; }
.sl-c-badge {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(156,255,87,0.35);
  transition: color 0.3s ease;
}
.sl-c-item:hover .sl-c-badge { color: rgba(156,255,87,0.85); }
.sl-c-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 14px rgba(120,255,90,0.16);
  transition: all 0.4s ease;
}
.sl-c-icon svg {
  width: 22px; height: 22px;
  stroke: #9cff57;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sl-c-item:hover .sl-c-icon { transform: translateY(-3px) rotate(6deg); border-color: rgba(120,255,90,0.35); }
.sl-c-item:hover .sl-c-icon svg { stroke: #c8ff93; }
.sl-c-title {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.02em;
  max-width: 95%;
}
.sl-c-text {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  font-weight: 400;
  line-height: 1.55;
  max-width: 95%;
}
@media (max-width: 980px) { .sl-cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .sl-cards-grid { grid-template-columns: 1fr; } }

/* ===== SECTION 17: B2B Process ===== */
.sl-inline-b2b { max-width: 1300px; }
.sl-b2b-shell {
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(140deg, rgba(2,6,7,0.98) 0%, rgba(4,8,8,0.96) 34%, rgba(8,18,10,0.94) 68%, rgba(14,34,12,0.90) 100%);
  border: 1px solid rgba(124,255,106,0.18);
  position: relative;
  overflow: hidden;
}
.sl-b2b-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(110,255,120,0.10), transparent 18%),
    radial-gradient(circle at 82% 64%, rgba(110,120,255,0.08), transparent 18%);
  pointer-events: none;
}
.sl-b2b-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.sl-b2b-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #cde977;
  font-size: 22px;
  font-weight: 600;
}
.sl-b2b-badge::before {
  content: "";
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205,233,119,0.72));
}
.sl-b2b-symbols { display: inline-flex; gap: 10px; }
.sl-b2b-symbol {
  width: 34px; height: 34px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.sl-b2b-symbol svg { width: 18px; height: 18px; stroke-width: 1.5; }
.sl-b2b-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.sl-b2b-copy {
  padding: 28px 30px 26px;
  border-radius: 30px;
  background: linear-gradient(160deg, rgba(6,10,8,0.80), rgba(7,10,9,0.58));
  border: 1px solid rgba(255,255,255,0.08);
}
.sl-b2b-title {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
}
.sl-b2b-intro {
  margin: 0;
  font-size: 22px;
  line-height: 1.48;
  color: rgba(255,255,255,0.90);
}
.sl-b2b-features { display: grid; gap: 18px; }
.sl-b2b-feat {
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(7,12,10,0.74), rgba(9,13,11,0.56));
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.sl-b2b-feat:hover { transform: translateY(-3px); border-color: rgba(124,255,106,0.18); }
.sl-b2b-feat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.sl-b2b-feat-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.sl-b2b-feat-icon svg { width: 20px; height: 20px; }
.sl-b2b-feat-title {
  font-size: 22px;
  line-height: 1.22;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.015em;
}
.sl-b2b-feat-text {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
}
@media (max-width: 980px) {
  .sl-b2b-grid { grid-template-columns: 1fr; }
  .sl-b2b-shell { padding: 24px; }
}

/* ===== SECTION 18: Access Block ===== */
.sl-inline-access { max-width: 980px; }
.sl-acc-block {
  padding: 42px 46px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 8%, rgba(99,243,255,0.10), transparent 50%),
    radial-gradient(circle at 92% 100%, rgba(124,255,106,0.10), transparent 50%),
    linear-gradient(155deg, rgba(8,14,11,0.92), rgba(10,16,12,0.66));
  border: 1px solid rgba(183,255,95,0.18);
  position: relative;
}
.sl-acc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.sl-acc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(183,255,95,0.10);
  border: 1px solid rgba(183,255,95,0.30);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b7ff5f;
  font-weight: 600;
}
.sl-acc-badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #b7ff5f;
  box-shadow: 0 0 10px #b7ff5f;
  animation: slPulseDot 2.2s ease-in-out infinite;
}
.sl-acc-badge-2 { background: rgba(99,243,255,0.06); border-color: rgba(99,243,255,0.24); color: #6BE3FF; }
.sl-acc-badge-2::before { background: #6BE3FF; box-shadow: 0 0 10px #6BE3FF; }
.sl-acc-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #f4fbff;
}
.sl-acc-acc {
  background: linear-gradient(90deg, #b7ff5f 0%, #63F3FF 60%, #8E7DFF 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slShimmer 7s ease-in-out infinite;
}
.sl-acc-text {
  margin: 0 0 22px;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(225,236,245,0.86);
}
.sl-acc-text strong { color: #f4fbff; font-weight: 600; }
.sl-acc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 28px;
}
.sl-acc-stat {
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: all 0.3s ease;
}
.sl-acc-stat:hover { transform: translateY(-2px); border-color: rgba(183,255,95,0.30); }
.sl-acc-stat-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.025em;
  background: linear-gradient(90deg, #B7FF5F, #63F3FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.sl-acc-stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.10em;
  color: rgba(210,230,244,0.72);
  text-transform: uppercase;
}
.sl-acc-mp {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  margin: 0 0 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(99,243,255,0.06), rgba(124,255,106,0.04));
  border: 1px solid rgba(99,243,255,0.20);
  flex-wrap: wrap;
}
.sl-acc-mp-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(99,243,255,0.10);
  border: 1px solid rgba(99,243,255,0.32);
  display: grid; place-items: center;
}
.sl-acc-mp-icon svg { width: 24px; height: 24px; }
.sl-acc-mp-text { flex: 1; min-width: 200px; }
.sl-acc-mp-title { font-size: 19px; font-weight: 700; color: #f4fbff; margin-bottom: 4px; }
.sl-acc-mp-sub { font-size: 16px; color: rgba(210,230,244,0.78); line-height: 1.4; }
.sl-acc-mp-prices { display: flex; gap: 8px; flex-wrap: wrap; font-family: "JetBrains Mono", monospace; font-size: 13px; }
.sl-acc-mp-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(124,255,106,0.08);
  border: 1px solid rgba(124,255,106,0.22);
  color: #b7ff5f;
}
.sl-acc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px 26px;
}
.sl-acc-list li {
  position: relative;
  padding-left: 32px;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(225,236,245,0.88);
}
.sl-acc-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(183,255,95,0.14);
  border: 1px solid rgba(183,255,95,0.45);
}
.sl-acc-list li::after {
  content: "";
  position: absolute;
  left: 6px; top: 11px;
  width: 8px; height: 4px;
  border-left: 2px solid #b7ff5f;
  border-bottom: 2px solid #b7ff5f;
  transform: rotate(-45deg);
}
.sl-acc-list li.sl-acc-li-hl::before { background: rgba(99,243,255,0.16); border-color: rgba(99,243,255,0.55); }
.sl-acc-list li.sl-acc-li-hl::after { border-left-color: #6BE3FF; border-bottom-color: #6BE3FF; }
.sl-acc-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.sl-acc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.sl-acc-cta-primary {
  background: linear-gradient(135deg, rgba(183,255,95,0.26), rgba(99,243,255,0.20));
  border-color: rgba(183,255,95,0.55);
  color: #fff;
}
.sl-acc-cta-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(183,255,95,0.38), rgba(99,243,255,0.26));
  border-color: rgba(183,255,95,0.78);
}
.sl-acc-cta-secondary {
  background: rgba(99,243,255,0.06);
  border-color: rgba(99,243,255,0.28);
  color: #aaf4ff;
}
.sl-acc-cta-secondary:hover { background: rgba(99,243,255,0.12); border-color: rgba(99,243,255,0.55); color: #fff; }
.sl-acc-cta svg { width: 16px; height: 16px; }
.sl-acc-divider { color: rgba(225,236,245,0.36); font-size: 14px; }
.sl-acc-trust {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: rgba(210,230,244,0.62);
}
.sl-acc-trust span { display: inline-flex; align-items: center; gap: 6px; }
.sl-acc-trust span::before { content: "✓"; color: #b7ff5f; font-weight: 700; }
@media (max-width: 700px) {
  .sl-acc-stats { grid-template-columns: 1fr; }
  .sl-acc-block { padding: 28px 22px; border-radius: 22px; }
  .sl-acc-list { grid-template-columns: 1fr; }
}

/* ============================================================
   Homepage Tech-CTA-Buttons (under each block-section)
   ============================================================ */
.sl-home-cta-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 28px auto 12px;
  padding: 0 24px;
}
.sl-home-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 44px;
  border-radius: 999px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #f4fbff;
  text-decoration: none;
  background: rgba(8, 14, 11, 0.6);
  border: 1px solid rgba(124, 255, 200, 0.5);
  box-shadow:
    0 0 24px rgba(99, 243, 255, 0.15),
    0 0 48px rgba(124, 255, 106, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease;
  position: relative;
  overflow: hidden;
}
.sl-home-cta::after {
  content: "→";
  margin-left: 12px;
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sl-home-cta:hover {
  transform: translateY(-3px);
  background: rgba(12, 22, 18, 0.7);
  border-color: rgba(174, 252, 77, 0.85);
  box-shadow:
    0 0 32px rgba(174, 252, 77, 0.35),
    0 0 64px rgba(99, 243, 255, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.sl-home-cta:hover::after {
  transform: translateX(4px);
  opacity: 1;
}

/* ============================================================
   DNA Helix Background — links + rechts AUSSERHALB der content
   area, NICHT unter dem Text. Die Helix sitzt an den äußeren
   Section-Rändern und blendet zur Mitte hin aus.
   ============================================================ */
.sl-helix-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
/* Left helix — sits at the far LEFT, fades to right */
.sl-helix-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(180px, 22%, 360px);
  height: 100%;
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  opacity: 0.72;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 32px rgba(174, 252, 77, 0.28));
  animation: slHelixFloatL 16s ease-in-out infinite alternate;
  mask-image: linear-gradient(90deg, #000 0%, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 55%, transparent 100%);
}
/* Right helix — sits at the far RIGHT, fades to left */
.sl-helix-bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(180px, 22%, 360px);
  height: 100%;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  opacity: 0.72;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 32px rgba(99, 243, 255, 0.28));
  animation: slHelixFloatR 16s ease-in-out infinite alternate -3s;
  mask-image: linear-gradient(270deg, #000 0%, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(270deg, #000 0%, #000 55%, transparent 100%);
}
/* Hide helix on narrow screens where content has no room to breathe */
@media (max-width: 820px) {
  .sl-helix-bg::before,
  .sl-helix-bg::after { display: none; }
}
.sl-helix-bg-1::before { background-image: url('/assets/img/helix-1.png'); }
.sl-helix-bg-1::after  { background-image: url('/assets/img/helix-1.png'); transform: scaleX(-1); }
.sl-helix-bg-2::before { background-image: url('/assets/img/helix-2.png'); }
.sl-helix-bg-2::after  { background-image: url('/assets/img/helix-2.png'); transform: scaleX(-1); }
.sl-helix-bg-3::before { background-image: url('/assets/img/helix-3.png'); }
.sl-helix-bg-3::after  { background-image: url('/assets/img/helix-3.png'); transform: scaleX(-1); }
/* Make sure section text stays above the helix backgrounds */
.sl-helix-bg .sl-section-header,
.sl-helix-bg .sl-h2-text,
.sl-helix-bg .sl-blk-root,
.sl-helix-bg .sl-home-cta-wrap,
.sl-helix-bg > * { position: relative; z-index: 1; }
.sl-helix-bg .sl-blk-root,
.sl-helix-bg .sl-home-cta-wrap {
  position: relative;
  z-index: 1;
}
@keyframes slHelixFloatL {
  0%   { transform: translate3d(0, 0, 0); opacity: 0.55; }
  100% { transform: translate3d(0, -14px, 0); opacity: 0.85; }
}
@keyframes slHelixFloatR {
  0%   { transform: scaleX(-1) translate3d(0, 0, 0); opacity: 0.55; }
  100% { transform: scaleX(-1) translate3d(0, -14px, 0); opacity: 0.85; }
}
@media (max-width: 980px) {
  .sl-helix-bg::before, .sl-helix-bg::after {
    width: 24%;
    opacity: 0.35;
  }
}
@media (max-width: 768px) {
  .sl-helix-bg::before, .sl-helix-bg::after {
    width: 18%;
    opacity: 0.18;
  }
  .sl-home-cta { padding: 14px 32px; }
}

/* ============================================================
   Homepage Scroll-Reveal Animations
   ============================================================ */
.sl-home-init {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}
.sl-home-init.sl-home-in {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered children reveal inside groups */
.sl-blocks-godcypher .sl-blk-item:nth-child(1).sl-home-init,
.sl-blocks-strdomain .sl-blk-item:nth-child(1).sl-home-init,
.sl-blocks-slnn .sl-blk-item:nth-child(1).sl-home-init { transition-delay: 0.05s; }
.sl-blocks-godcypher .sl-blk-item:nth-child(2).sl-home-init,
.sl-blocks-strdomain .sl-blk-item:nth-child(2).sl-home-init,
.sl-blocks-slnn .sl-blk-item:nth-child(2).sl-home-init { transition-delay: 0.18s; }
.sl-blocks-godcypher .sl-blk-item:nth-child(3).sl-home-init { transition-delay: 0.31s; }

.sl-prob-list .sl-prob-item:nth-child(1).sl-home-init { transition-delay: 0.05s; }
.sl-prob-list .sl-prob-item:nth-child(2).sl-home-init { transition-delay: 0.15s; }
.sl-prob-list .sl-prob-item:nth-child(3).sl-home-init { transition-delay: 0.25s; }

.sl-c-list .sl-c-item.sl-home-init:nth-child(1) { transition-delay: 0.05s; }
.sl-c-list .sl-c-item.sl-home-init:nth-child(2) { transition-delay: 0.12s; }
.sl-c-list .sl-c-item.sl-home-init:nth-child(3) { transition-delay: 0.19s; }
.sl-c-list .sl-c-item.sl-home-init:nth-child(4) { transition-delay: 0.26s; }
.sl-c-list .sl-c-item.sl-home-init:nth-child(5) { transition-delay: 0.33s; }
.sl-c-list .sl-c-item.sl-home-init:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   Fix: Section Headlines with data-anim-words stay visible
   ============================================================ */
.sl-gc-title .sl-anim-w,
.sl-prob-headline .sl-anim-w,
.sl-b2b-title .sl-anim-w,
.sl-acc-title .sl-anim-w {
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  background: transparent;
}
.sl-gc-title .sl-anim-w-accent,
.sl-prob-headline .sl-anim-w-accent,
.sl-b2b-title .sl-anim-w-accent,
.sl-acc-title .sl-anim-w-accent {
  -webkit-text-fill-color: transparent !important;
  background-image: linear-gradient(90deg, #b7ff5f 0%, #aefc4d 30%, #d4ff8c 60%, #b7ff5f 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}

/* ============================================================
   v19: STR.Dome-style FEATURE MARQUEE
   Running pill-bar that scrolls horizontally across the page
   ============================================================ */
.sl-feat-marquee {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(2,6,7,0.4) 50%, transparent 100%);
  border-top: 1px solid rgba(124,255,106,0.10);
  border-bottom: 1px solid rgba(124,255,106,0.10);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  cursor: grab;
  user-select: none;
}
.sl-feat-marquee.is-grabbing { cursor: grabbing; }
.sl-feat-marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: slFeatMarquee 60s linear infinite;
  will-change: transform;
}
.sl-feat-marquee:hover .sl-feat-marquee-track,
.sl-feat-marquee.is-paused .sl-feat-marquee-track { animation-play-state: paused; }
.sl-feat-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(232,244,252,0.92);
  background: rgba(7,18,14,0.55);
  border: 1px solid rgba(124,255,106,0.18);
  white-space: nowrap;
  transition: border-color 0.4s ease, background 0.4s ease;
}
.sl-feat-marquee-item:hover {
  border-color: rgba(124,255,106,0.45);
  background: rgba(11,30,22,0.7);
}
.sl-feat-marquee-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  flex-shrink: 0;
}
@keyframes slFeatMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .sl-feat-marquee-track { animation: none; }
}

/* ============================================================
   v19: Section spacing & section header polish
   ============================================================ */
.sl-section-header {
  text-align: center;
  margin: 88px auto 36px;
  max-width: 1200px;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .sl-section-header { padding: 0 24px; margin: 56px auto 28px; }
}

/* ============================================================
   v21: STR.Dome-inspired Premium Polish
   - Section eyebrows with side-ticks (like "— ABOUT —")
   - Beveled / clipped corners on premium buttons
   - Glow-corner card variant
   ============================================================ */

/* Section eyebrow with neon side-ticks (STR.Dome style) */
.sl-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(180, 255, 220, 0.92);
  margin: 0 0 24px;
}
.sl-eyebrow::before,
.sl-eyebrow::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,255,106,0.65));
}
.sl-eyebrow::after {
  background: linear-gradient(90deg, rgba(124,255,106,0.65), transparent);
}

/* Beveled premium button — clipped corners (sci-fi feel) */
.sl-btn-bevel {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a1004;
  background: linear-gradient(135deg, #b7ff5f, #c8ff7a);
  clip-path: polygon(
    14px 0,
    100% 0,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    0 100%,
    0 14px
  );
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), filter 0.4s ease;
  cursor: pointer;
}
.sl-btn-bevel:hover {
  transform: translateY(-2px);
  filter: brightness(1.08) drop-shadow(0 8px 24px rgba(124,255,106,0.4));
}
.sl-btn-bevel-outline {
  color: #b7ff5f;
  background: transparent;
  border: 1px solid rgba(183,255,95,0.4);
}
.sl-btn-bevel-outline:hover {
  background: rgba(183,255,95,0.06);
  border-color: rgba(183,255,95,0.75);
  filter: drop-shadow(0 8px 24px rgba(124,255,106,0.18));
}

/* Beveled premium card — angular corners + green glow corner */
.sl-bevel-card {
  position: relative;
  padding: 32px 32px 28px;
  background: linear-gradient(155deg, rgba(7,18,14,0.85), rgba(9,13,11,0.62));
  border: 1px solid rgba(124,255,106,0.22);
  clip-path: polygon(
    18px 0,
    100% 0,
    100% calc(100% - 18px),
    calc(100% - 18px) 100%,
    0 100%,
    0 18px
  );
  box-shadow: 0 16px 38px rgba(0,0,0,0.30), 0 0 0 1px rgba(124,255,106,0.04) inset;
  transition: transform 0.55s cubic-bezier(.2,.7,.2,1), filter 0.45s ease;
  overflow: hidden;
}
.sl-bevel-card::before {
  /* glowing diagonal corner accent (top-left) */
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 20px; height: 20px;
  background: linear-gradient(135deg, rgba(124,255,106,0.7), transparent 50%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
}
.sl-bevel-card::after {
  /* glowing diagonal corner accent (bottom-right) */
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 20px; height: 20px;
  background: linear-gradient(315deg, rgba(124,255,106,0.7), transparent 50%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.sl-bevel-card:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0 16px 38px rgba(124,255,106,0.18));
}

/* Numbered badge in STR.Dome style — large mono number */
.sl-numbig {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(183,255,95,0.55);
  margin-bottom: 14px;
  display: block;
}

/* Performance-overview panel (STR.Dome inspired) */
.sl-perfpanel {
  position: relative;
  padding: 28px;
  border-radius: 22px;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(124,255,106,0.06), transparent 60%),
    linear-gradient(155deg, rgba(7,18,14,0.92), rgba(9,13,11,0.75));
  border: 1px solid rgba(124,255,106,0.22);
  box-shadow: 0 22px 56px rgba(0,0,0,0.32);
  overflow: hidden;
}
.sl-perfpanel-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(183,255,95,0.55);
  margin-bottom: 14px;
}

/* Apply bevel-card variant to existing tech-card and step components on hover */
.sl-c-item.sl-bevel-on {
  clip-path: polygon(
    16px 0,
    100% 0,
    100% calc(100% - 16px),
    calc(100% - 16px) 100%,
    0 100%,
    0 16px
  );
}

/* Make the feature cards on home page look more "premium chip" — corner glows */
.sl-c-item {
  position: relative;
}
.sl-c-item .sl-c-corner {
  position: absolute;
  top: 0; left: 0;
  width: 16px; height: 16px;
  background: linear-gradient(135deg, rgba(124,255,106,0.7), transparent 60%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.sl-c-item:hover .sl-c-corner { opacity: 1; }


/* ============================================================
   v21: Style upgrade for existing kicker/eyebrow elements
   (Section labels get STR.Dome-style side-ticks automatically)
   ============================================================ */
.sl-slider-kicker,
.sl-bhead-kicker,
.sl-arch-inline-kicker {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
}
.sl-slider-kicker::before,
.sl-slider-kicker::after,
.sl-bhead-kicker::before,
.sl-bhead-kicker::after,
.sl-arch-inline-kicker::before,
.sl-arch-inline-kicker::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,255,106,0.65));
  flex-shrink: 0;
}
.sl-slider-kicker::after,
.sl-bhead-kicker::after,
.sl-arch-inline-kicker::after {
  background: linear-gradient(90deg, rgba(124,255,106,0.65), transparent);
}

/* Better visual hierarchy for tech-hero-eyebrow (apply tick lines too) */
.sl-tech-hero-eyebrow {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.sl-tech-hero-eyebrow::before,
.sl-tech-hero-eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,243,255,0.55));
  flex-shrink: 0;
}
.sl-tech-hero-eyebrow::after {
  background: linear-gradient(90deg, rgba(99,243,255,0.55), transparent);
}



/* === MOBILE HERO FIX === */
@media (max-width: 480px) {
  .sl-h1-headline {
    font-size: clamp(26px, 7.5vw, 40px);
    letter-spacing: -0.01em;
    gap: 2px;
    word-spacing: 0.05em;
  }
  .sl-h1-line {
    letter-spacing: -0.01em;
  }
  .sl-inline-hero1 {
    padding: 72px 16px 24px;
  }
  .sl-h1-eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
  }
  .sl-inline-hero2 {
    font-size: 18px;
    letter-spacing: -0.01em;
    word-spacing: 0.05em;
    padding-left: 16px;
    padding-right: 16px;
  }
  .sl-inline-hero2 .sl-h2-main {
    font-size: 22px;
    letter-spacing: -0.01em;
    word-spacing: 0.05em;
  }
}

/* === MOBILE WORD-ANIMATION GLOBAL FIX (Session 38) === */
@media (max-width: 600px) {
  .sl-anim-w,
  .sl-anim-w-accent {
    display: inline !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .sl-home-init,
  [data-anim-words] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .sl-home-in {
    opacity: 1 !important;
    transform: none !important;
  }
  [data-anim-words],
  .sl-h1-headline,
  .sl-h2-text,
  .sl-prob-headline,
  .sl-gc-title {
    word-spacing: normal !important;
  }
}
