.ic-areas {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 720px) {
  .ic-areas { grid-template-columns: repeat(2, 1fr); }
}

.ic-area {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 2rem 2.2rem 2.2rem;
  background: #0d1330;
  overflow: hidden;
  transition: background 0.25s ease;
}

.ic-area::before {
  content: attr(data-num);
  position: absolute;
  right: 0.9rem;
  bottom: -1.6rem;
  font-family: var(--font-mono);
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
  transition: color 0.25s ease;
}

.ic-area:hover {
  background: #101740;
}

.ic-area:hover::before {
  color: rgba(34, 197, 94, 0.09);
}

.ic-area-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.35rem;
}

.ic-area-node {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  background: var(--c-green);
  border: 2px solid var(--c-green);
}

.ic-area:hover .ic-area-node {
  background: var(--c-green);
}

.ic-area-num {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--c-green-light);
  white-space: nowrap;
}

.ic-area-num em {
  font-style: normal;
  color: var(--c-text-dimmer);
}

.ic-area h3 {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: #fff;
}

.ic-area p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--c-text-muted);
  max-width: 46ch;
  position: relative;
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .ic-area:nth-child(2) { animation-range: entry 4% entry 58%; }
    .ic-area:nth-child(3) { animation-range: entry 8% entry 62%; }
    .ic-area:nth-child(4) { animation-range: entry 12% entry 66%; }
    .ic-area:nth-child(5) { animation-range: entry 16% entry 70%; }
    .ic-area:nth-child(6) { animation-range: entry 20% entry 74%; }
    .ic-area:nth-child(7) { animation-range: entry 24% entry 78%; }
    .ic-area:nth-child(8) { animation-range: entry 28% entry 82%; }

    .ic-area::before {
      animation: ic-num-in linear both;
      animation-timeline: view();
      animation-range: entry 10% entry 75%;
    }

    .ic-area-node {
      animation: ic-node-in linear both;
      animation-timeline: view();
      animation-range: entry 12% entry 70%;
    }
  }
}

@keyframes ic-num-in {
  from { transform: translateY(14px); opacity: 0; }
  to { transform: none; opacity: 1; }
}

@keyframes ic-node-in {
  from { opacity: 0; transform: scale(0.4); }
  60% { opacity: 1; transform: scale(1.25); }
  to { opacity: 1; transform: none; }
}

html.js-reveal .ic-area:nth-child(2) { transition-delay: 60ms; }
html.js-reveal .ic-area:nth-child(3) { transition-delay: 120ms; }
html.js-reveal .ic-area:nth-child(4) { transition-delay: 180ms; }
html.js-reveal .ic-area:nth-child(5) { transition-delay: 240ms; }
html.js-reveal .ic-area:nth-child(6) { transition-delay: 300ms; }
html.js-reveal .ic-area:nth-child(7) { transition-delay: 360ms; }
html.js-reveal .ic-area:nth-child(8) { transition-delay: 420ms; }

.ic-doc {
  max-width: 860px;
  margin: 0 auto;
  background: #0d1330;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
}

.ic-doc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2rem 1rem 5.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ic-doc-tag {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-green-light);
}

.ic-doc-marks {
  display: inline-flex;
  gap: 0.4rem;
}

.ic-doc-marks i {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.ic-doc-marks i:first-child {
  background: var(--c-green);
}

.ic-doc-row {
  position: relative;
  padding: 1.8rem 2rem 1.8rem 5.4rem;
}

.ic-doc-row + .ic-doc-row {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.ic-doc-idx {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 1.85rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-text-dimmer);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s ease, background 0.2s ease;
}

.ic-doc-row:hover .ic-doc-idx {
  color: var(--c-green-light);
  background: rgba(34, 197, 94, 0.05);
}

.ic-doc-kicker {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-transform: none;
  color: #fff;
  font-family: inherit;
}

.ic-doc-row p {
  margin: 0;
  font-size: 1.01rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.88);
  max-width: 64ch;
}

@media (max-width: 640px) {
  .ic-doc-head { padding: 0.85rem 1.2rem 0.85rem 3.6rem; }
  .ic-doc-row { padding: 1.4rem 1.2rem 1.4rem 3.6rem; }
  .ic-doc-idx { width: 2.6rem; padding-top: 1.45rem; font-size: 0.7rem; }
  .ic-area { padding: 1.7rem 1.5rem 1.8rem; }
  .ic-area::before { font-size: 5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ic-area { transition: none; }
}

@media (forced-colors: active) {
  .ic-area,
  .ic-doc { border-color: CanvasText; }
  .ic-area::before { display: none; }
}

.ic-special-photo {
  position: relative;
  background-image:
    var(--paper-grain),
    linear-gradient(100deg, rgba(9, 14, 38, 0.95) 30%, rgba(9, 14, 38, 0.7)),
    url("../../img/unsplash/racks.58ac3109ca9a.webp");
  background-size: var(--paper-grain-size), auto, cover;
  background-repeat: repeat, no-repeat, no-repeat;
  background-position: 0 0, center, center right;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ic-special-photo .sp-special-glow,
.ic-special-photo .sp-special-grid {
  display: none;
}

.ic-threat {
  position: relative;
  margin: 1.6rem auto 0;
  padding: 3.1rem 2.4rem 2.4rem;
  background: #0a0f28;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ic-threat-banner {
  position: absolute;
  top: -1.05rem;
  left: -0.9rem;
  padding: 0.55rem 1.3rem;
  background: var(--c-green);
  color: var(--c-ink-on-green);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ic-threat-head {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ic-threat-skull {
  flex: none;
  fill: var(--c-green);
  opacity: 0.9;
}

.ic-threat-intro h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #fff;
}

.ic-threat-intro p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-text-muted);
}

.ic-threat-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ic-threat-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.7rem 1.5rem 1.8rem;
  background: #0a0f28;
}

.ic-threat-num {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-green);
}

.ic-threat-text {
  font-size: 0.97rem;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.9);
}

.ic-threat-src {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--c-text-dimmer);
}

.ic-threat .ic-brief-action {
  margin-top: 1.8rem;
}

@media (max-width: 820px) {
  .ic-threat-stats { grid-template-columns: 1fr; }
  .ic-threat-head { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .ic-threat { padding: 2.8rem 1.4rem 2rem; }
  .ic-threat-banner { left: -0.4rem; font-size: 0.68rem; letter-spacing: 0.16em; }
}

@media (forced-colors: active) {
  .ic-threat,
  .ic-threat-stats li { border-color: CanvasText; }
}

.ic-extra-block {
  background: #0d1330;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--c-green);
}

.ic-extra-badge {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.4);
  color: var(--c-green-light);
}

.sp-prose,
.sd-article,
.ic-folds,
.ic-areas,
.ic-doc,
.sp-flow,
.sp-faq,
.ic-brief-card,
.ic-addons,
.ic-confidential {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.sp-prose p,
.sd-article p,
.ic-doc-row p,
.sp-flow-body p {
  max-width: 72ch;
}

@media (max-width: 640px) {
}

@media (forced-colors: active) {
}

.sp-prose em {
  font-style: normal;
  color: var(--c-green-light);
  border-bottom: 1px dotted rgba(74, 222, 128, 0.5);
}

.ic-statement {
  position: relative;
  margin: 2.2rem 0;
  padding: 2.1rem 2.3rem 2.2rem;
  background: #0a0f28;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 2px solid var(--c-green);
}

.ic-statement::before,
.ic-statement::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 0 solid var(--c-green);
  pointer-events: none;
}

.ic-statement::before {
  top: -1px;
  left: -1px;
  border-left-width: 2px;
}

.ic-statement::after {
  bottom: -1px;
  right: -1px;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.ic-statement-kicker {
  margin: 0 0 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-green-light);
}

.ic-statement-line {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3.6vw, 2.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
}

.ic-statement-sub {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.75;
  color: rgba(226, 232, 240, 0.88);
  max-width: 60ch;
}


@media (max-width: 640px) {
  .ic-statement { padding: 1.6rem 1.4rem 1.7rem; }
}

@media (forced-colors: active) {
  .ic-statement { border-color: CanvasText; }
}

.ic-threat-text + .ic-threat-text {
  margin-top: 0.9rem;
}

.ic-threat-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(226, 232, 240, 0.88);
  max-width: 60ch;
}

.ic-threat-intro h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.ic-threat-lead {
  margin: 0;
  padding: 1.4rem 0 1.5rem;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.65;
  color: #fff;
  max-width: 66ch;
}

.ic-threat-head {
  align-items: flex-start;
}

.ic-threat-intro h2 em {
  font-style: italic;
  color: var(--c-green-light);
}

.ic-threat-outro {
  margin: 1.7rem 0 0;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #fff;
}

.ic-glitch {
  position: relative;
  display: inline-block;
  color: var(--c-green-light);
}

.ic-glitch::before,
.ic-glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

.ic-glitch::before {
  color: var(--c-green-pale);
  transform: translateX(-2px);
}

.ic-glitch::after {
  color: rgba(255, 255, 255, 0.85);
  transform: translateX(2px);
}

@media (prefers-reduced-motion: no-preference) {
  .ic-glitch::before {
    animation: ic-glitch-a 11s steps(1, end) infinite;
  }
  .ic-glitch::after {
    animation: ic-glitch-b 11s steps(1, end) infinite;
  }
}

@keyframes ic-glitch-a {
  0%, 92% { opacity: 0; clip-path: inset(0 0 100% 0); }
  92.6% { opacity: 1; clip-path: inset(12% 0 62% 0); transform: translateX(-3px); }
  93.6% { opacity: 1; clip-path: inset(58% 0 22% 0); transform: translateX(2px); }
  94.6% { opacity: 1; clip-path: inset(30% 0 48% 0); transform: translateX(-2px); }
  95.6%, 100% { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateX(-2px); }
}

@keyframes ic-glitch-b {
  0%, 92% { opacity: 0; clip-path: inset(0 0 100% 0); }
  92.6% { opacity: 1; clip-path: inset(64% 0 14% 0); transform: translateX(3px); }
  93.6% { opacity: 1; clip-path: inset(22% 0 58% 0); transform: translateX(-2px); }
  94.6% { opacity: 1; clip-path: inset(46% 0 32% 0); transform: translateX(2px); }
  95.6%, 100% { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateX(2px); }
}

.sp-section--slim .sp-prose {
  padding: 1.4rem 0 0.4rem;
}

.ic-brief {
  padding-top: 1.2rem;
}

.ic-threat {
  margin-top: 0.6rem;
}

.ic-find {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 720px) {
  .ic-find { grid-template-columns: repeat(2, 1fr); }
}

.ic-find li {
  position: relative;
  padding: 1.15rem 1.5rem 1.2rem 3.2rem;
  background: #0d1330;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.9);
  transition: background 0.2s ease;
}

.ic-find li::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 1.55rem;
  width: 9px;
  height: 9px;
  border: 2px solid var(--c-green);
}

.ic-find li:hover {
  background: #101740;
}

.ic-find li:hover::before {
  background: var(--c-green);
}

@media (prefers-reduced-motion: reduce) {
  .ic-find li { transition: none; }
}

@media (forced-colors: active) {
  .ic-find,
  .ic-find li::before { border-color: CanvasText; }
}

.ic-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.7rem 0 1.2rem;
}

.ic-trust span {
  padding: 0.34rem 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-green-light);
  border: 1px solid rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.06);
}

@media (max-width: 640px) {
}

@media (forced-colors: active) {
  .ic-trust span,
}
.ic-doc-accent {
  --lot-size: 62px;
}

.ic-confidential-wrap {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  max-width: 820px;
  margin: 0 auto;
}

.ic-confidential-lock {
  --lot-size: 66px;
  margin-top: 1.15rem;
}

@media (max-width: 640px) {
  .ic-doc-accent { --lot-size: 48px; }
  .ic-confidential-wrap { gap: 1rem; }
  .ic-confidential-lock { --lot-size: 52px; }
}
.ic-midcta {
  margin-top: 2.6rem;
  padding: 1.9rem 1.8rem;
  border: 1px solid rgba(34, 197, 94, 0.28);
  background: rgba(34, 197, 94, 0.05);
}

.ic-midcta-line {
  margin: 0 0 1.2rem;
  font-size: 1.06rem;
  line-height: 1.5;
  color: var(--c-text-soft);
}

.ic-midcta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.ic-midcta-note {
  margin: 1.1rem 0 0;
  font-size: 0.92rem;
  color: var(--c-text-dim);
}

.ic-midcta-note a {
  color: var(--c-green-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .ic-midcta { padding: 1.4rem 1.1rem; }
  .ic-midcta-actions { flex-direction: column; }
  .ic-midcta-actions .sp-btn { width: 100%; justify-content: center; }
}

#pruefbereiche .sp-section-head {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

#pruefbereiche .sp-section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  letter-spacing: -0.02em;
}

.ic-midcta {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.ic-area h3 {
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.ic-area::before {
  font-size: 7.5rem;
}

.ic-area {
  padding: 2.1rem 1.9rem 2.2rem;
}
