.reg-card { background: rgba(255,255,255,0.05); border-radius: 12px; transition: 0.3s ease; }
.reg-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.reg-title { font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.reg-text { font-size: 14px; line-height: 1.45; color: #c9d6e1; }

.pentest-mobile-list { display: none; color: white; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
.pentest-mobile-list .step { display: block; padding: 12px 0; border-bottom: 2px solid rgba(255,255,255,0.12); padding-bottom: 20px; }
.pentest-mobile-list .icon { font-size: 26px; line-height: 1; padding-bottom: 12px; padding-top: 5px; }

@media (max-width: 600px) {
  .pentest-circle-layout { display: none !important; }
  .pentest-mobile-list { display: block !important; padding: 0 10px; }
  .rt-timeline { flex-direction: column !important; }
  .rt-timeline-line { display: none !important; }
}
@media (min-width: 601px) {
  .pentest-circle-layout { display: block; }
  .pentest-mobile-list { display: none; }
}

.pentest-animated-circle { position: absolute; top: -3%; left: -3%; width: 105%; height: 105%; overflow: visible; transform: rotate(-90deg); }
.pentest-animated-circle circle { fill: none; stroke: #1E88E5; stroke-width: 2; stroke-linecap: round; stroke-dasharray: 302; stroke-dashoffset: 0; filter: drop-shadow(0 0 2px #1E88E5); }
.pentest-circle-layout.animate .pentest-animated-circle circle { animation: draw-loop-rt 4s ease-in-out infinite; }
@keyframes draw-loop-rt {
  0%   { stroke-dashoffset: 302; opacity: 1; }
  40%  { stroke-dashoffset: 0;   opacity: 1; }
  80%  { stroke-dashoffset: 0;   opacity: 1; }
  80.1%{ stroke-dashoffset: 302; opacity: 0; }
  93%  { stroke-dashoffset: 302; opacity: 0; }
  93.1%{ stroke-dashoffset: 302; opacity: 1; }
  100% { stroke-dashoffset: 302; opacity: 1; }
}

.hero-scan-lines {
  position:absolute; inset:0;
  background: repeating-linear-gradient(to bottom, rgba(30, 136, 229,0.08) 0px, rgba(30, 136, 229,0.08) 2px, transparent 2px, transparent 6px);
  animation: scanMoveRT 6s linear infinite; border-radius:25px; pointer-events:none;
}
@keyframes scanMoveRT { 0% { background-position-y: 0; } 100% { background-position-y: 200px; } }

/* Live-Dot im Hero-Subtitle */
.rt-live-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #E24B4A; margin-right: 8px; position: relative; top: -1px;
  animation: rtLivePulse 1.8s ease-in-out infinite;
}
@keyframes rtLivePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(226,75,74,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(226,75,74,0); }
}

/* Ø Time-to-Objective Badge im Hero */
.rt-ttos-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(226,75,74,0.08); border: 1px solid rgba(226,75,74,0.3);
  border-radius: 10px; padding: 10px 16px; margin-top: 8px;
}
.rt-ttos-badge .ttos-icon { color: #E24B4A; flex-shrink: 0; }
.rt-ttos-badge .ttos-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); display: block; }
.rt-ttos-badge .ttos-value { font-size: 16px; font-weight: 700; color: #fff; }

.rt-tracker-area { background: #02101f; padding: 100px 0; }
.rt-tracker-box {
  background: linear-gradient(135deg, #04182F 0%, #061a2e 100%);
  border: 1px solid rgba(226,75,74,0.25);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.rt-tracker-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px; border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap; gap: 12px;
}
.rt-tracker-header .label-wrap { display: flex; align-items: center; gap: 10px; }
.rt-tracker-header .label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #E24B4A; }
.rt-live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: #E24B4A;
  border: 1px solid rgba(226,75,74,0.4); border-radius: 100px; padding: 2px 9px;
}
.rt-live-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #E24B4A; animation: rtLivePulse 1.8s ease-in-out infinite; }

.rt-clock {
  font-family: 'Fira Code', monospace; font-size: 22px; font-weight: 700; color: #fff;
  background: rgba(226,75,74,0.1); border: 1px solid rgba(226,75,74,0.3);
  padding: 6px 16px; border-radius: 8px; letter-spacing: 0.05em;
}
.rt-clock span { font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 500; display: block; text-transform: uppercase; letter-spacing: 0.1em; }

.rt-tracker-body { display: flex; flex-wrap: wrap; }
.rt-timeline-col { flex: 1; min-width: 320px; padding: 40px 28px; }
.rt-log-col { flex: 1; min-width: 320px; background: #000; padding: 28px; font-family: 'Fira Code', monospace; font-size: 13px; min-height: 340px; }

.rt-timeline { display: flex; align-items: flex-start; justify-content: space-between; position: relative; }
.rt-timeline-line { position: absolute; top: 22px; left: 5%; right: 5%; height: 2px; background: rgba(255,255,255,0.08); z-index: 0; }
.rt-timeline-line-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: #E24B4A; transition: width 0.6s ease; }
.rt-node-wrap { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; width: 16%; }
.rt-node { width: 44px; height: 44px; border-radius: 50%; background: #0a2138; border: 2px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 18px; transition: 0.3s ease; margin-bottom: 10px; }
.rt-node.active { border-color: #E24B4A; background: rgba(226,75,74,0.15); box-shadow: 0 0 18px rgba(226,75,74,0.5); }
.rt-node.done { border-color: rgba(100,185,90,0.6); background: rgba(100,185,90,0.1); }
.rt-node-label { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 600; line-height: 1.3; }
.rt-node-wrap.active .rt-node-label { color: #fff; }

.rt-log-line { color: #1E88E5; opacity: 0; white-space: pre-wrap; margin-bottom: 4px; animation: rt-fade-in 0.3s forwards; }
.rt-log-line.hit { color: #E24B4A; font-weight: 700; }
@keyframes rt-fade-in { to { opacity: 1; } }

.rt-tracker-footer {
  padding: 18px 28px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.rt-tracker-footer .status { font-size: 13px; color: rgba(255,255,255,0.5); }
.rt-tracker-footer .status b { color: #fff; }

@media (max-width: 480px) {
  .rt-clock { font-size: 17px; padding: 5px 12px; }
  .rt-tracker-header { flex-direction: column; align-items: flex-start; }
}

.rt-problem-card { background: #061a2e; border: 1px solid rgba(30, 136, 229,0.15); border-radius: 20px; padding: 35px; height: 100%; transition: 0.25s; }
.rt-problem-card:hover { background: #08223e; transform: translateY(-4px); box-shadow: 0 0 25px rgba(30, 136, 229,0.15); }
.rt-problem-card .tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #1E88E5; margin-bottom: 12px; display: block; }
.rt-problem-card h4, .rt-problem-card p { color: #fff; }
.rt-problem-card p { color: rgba(255,255,255,0.6); }

.rt-compare-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); }
.rt-compare-table { width: 100%; border-collapse: collapse; min-width: 640px; color: #fff; }
.rt-compare-table th, .rt-compare-table td { padding: 18px 22px; text-align: left; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.rt-compare-table thead th { background: rgba(255,255,255,0.03); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); }
.rt-compare-table tbody tr:last-child td { border-bottom: none; }
.rt-compare-table td.highlight { color: #1E88E5; font-weight: 700; }
.rt-compare-table td.muted { color: rgba(255,255,255,0.35); }

/* Purple-Team-Overlap-Puls im Why-Us-SVG */
@keyframes rtPulseOverlap { 0%,100% { opacity:0.35; } 50% { opacity:0.75; } }
.rt-overlap { animation: rtPulseOverlap 3s ease-in-out infinite; }

/* Report-Beispiel-Box */
.rt-report-box {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 28px 32px; margin-top: 40px;
}
.rt-report-box .icon { color: #1E88E5; flex-shrink: 0; }
.rt-report-box h4 { color: #fff; margin-bottom: 4px; font-size: 17px; }
.rt-report-box p { color: rgba(255,255,255,0.5); font-size: 14px; margin: 0; }

.ttos-sublabel {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    margin-top: 2px;
    font-weight: 500;
}

/* ---- converted inline style="" attributes ---- */
.rt-i1 { background:#041326; padding:140px 0 120px; position:relative; }
.rt-i2 { margin-bottom:0; }
.rt-i3 { color:#E24B4A; }
.rt-i4 { color:#ffffff; }
.rt-i5 { color:#1E88E5; }
.rt-i6 { max-width:680px; color:#ffffff; }
.rt-i7 { display:flex; align-items:center; gap:6px; font-size:0.82rem; color:rgba(255,255,255,0.65); font-weight:600; }
.rt-i8 { display:flex; align-items:center; gap:6px; font-size:0.82rem; color:rgba(255,255,255,0.65); font-weight:600; }
.rt-i9 { display:flex; align-items:center; gap:6px; font-size:0.82rem; color:rgba(255,255,255,0.65); font-weight:600; }
.rt-i10 { position:relative; }
.rt-i11 { width:100%; max-width:560px; filter:drop-shadow(0 0 30px rgba(30, 136, 229,0.15)); }
.rt-i12 { color:#ffffff; }
.rt-i13 { color:#c9d6e1; max-width:640px; margin:12px auto 0; }
.rt-i14 { margin-top:50px; color:rgba(255,255,255,0.4); font-size:13px; line-height:1.6; }
.rt-i15 { padding:10px 22px; font-size:13px; }
.rt-i16 { display:flex; align-items:center; gap:20px; }
.rt-i17 { white-space:nowrap; }
.rt-i18 { background:#02101f; }
.rt-i19 { color:#ffffff; }
.rt-i20 { background:#04182F; }
.rt-i21 { color:#ffffff; }
.rt-i22 { color:#c9d6e1; margin-top:24px; max-width:760px; }
.rt-i23 { padding:100px 0; color:#ffffff; font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background:#02101f; }
.rt-i24 { max-width:1100px; margin:0 auto; padding:0 20px; text-align:center; }
.rt-i25 { max-width:650px; margin:0 auto 60px; }
.rt-i26 { position:relative; max-width:700px; margin:0 auto; }
.rt-i27 { position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); text-align:center; z-index:3; width:220px; }
.rt-i28 { width:220px; height:220px; border-radius:50%; overflow:hidden; border:3px solid #1E88E5; margin:0 auto; background:#0a2746; display:flex; align-items:center; justify-content:center; }
.rt-i29 { width:100%; }
.rt-i30 { display:block; font-size:13px; text-transform:uppercase; letter-spacing:1px; color:#8fbbe5; margin-top:10px; }
.rt-i31 { position:relative; width:100%; padding-top:100%; border-radius:50%; background:radial-gradient(circle at 50% 50%, rgba(10,39,70,0.85) 0%, rgba(4,24,47,0.95) 60%, #04182F 100%); }
.rt-i32 { position:absolute; top:6%; left:50%; transform:translate(-50%, -50%); display:flex; flex-direction:column; align-items:center; text-align:center; width:220px; max-width:40%; color:#fff; z-index:2; padding:10px; }
.rt-i33 { width:56px; height:56px; border-radius:50%; border:2px solid #1E88E5; display:flex; align-items:center; justify-content:center; font-size:28px; background:radial-gradient(circle at 30% 30%, #0a2746, #020b18); box-shadow:0 6px 16px rgba(0,0,0,0.6); }
.rt-i34 { font-size:20px; margin:10px 0 6px; color:white; }
.rt-i35 { font-size:15px; margin:0; }
.rt-i36 { position:absolute; top:35%; left:88%; transform:translate(-50%, -50%); display:flex; flex-direction:row; align-items:center; text-align:left; width:220px; max-width:40%; color:#fff; z-index:2; padding:10px; }
.rt-i37 { margin-left:8px; }
.rt-i38 { font-size:20px; margin:0 0 6px; color:white; }
.rt-i39 { font-size:15px; margin:0; }
.rt-i40 { width:56px; height:56px; border-radius:50%; border:2px solid #1E88E5; display:flex; align-items:center; justify-content:center; font-size:28px; background:radial-gradient(circle at 30% 30%, #0a2746, #020b18); box-shadow:0 6px 16px rgba(0,0,0,0.6); flex-shrink:0; }
.rt-i41 { position:absolute; top:68%; left:87%; transform:translate(-50%, -50%); display:flex; flex-direction:row; align-items:center; text-align:left; width:220px; max-width:40%; color:#fff; z-index:2; padding:10px; }
.rt-i42 { margin-left:8px; }
.rt-i43 { font-size:20px; margin:0 0 6px; color:white; }
.rt-i44 { font-size:15px; margin:0; }
.rt-i45 { width:56px; height:56px; border-radius:50%; border:2px solid #1E88E5; display:flex; align-items:center; justify-content:center; font-size:28px; background:radial-gradient(circle at 30% 30%, #0a2746, #020b18); box-shadow:0 6px 16px rgba(0,0,0,0.6); flex-shrink:0; }
.rt-i46 { position:absolute; top:93%; left:50%; transform:translate(-50%, -50%); display:flex; flex-direction:column-reverse; align-items:center; text-align:center; width:220px; max-width:40%; color:#fff; z-index:2; padding:10px; }
.rt-i47 { width:56px; height:56px; border-radius:50%; border:2px solid #1E88E5; display:flex; align-items:center; justify-content:center; font-size:28px; background:radial-gradient(circle at 30% 30%, #0a2746, #020b18); box-shadow:0 6px 16px rgba(0,0,0,0.6); margin-top:6px; }
.rt-i48 { font-size:15px; margin:0; }
.rt-i49 { font-size:20px; margin:6px 0 4px; color:white; }
.rt-i50 { position:absolute; top:68%; left:15%; transform:translate(-50%, -50%); display:flex; flex-direction:row-reverse; align-items:center; text-align:right; width:220px; max-width:40%; color:#fff; z-index:2; padding:10px; }
.rt-i51 { font-size:20px; margin:0 0 6px; color:white; }
.rt-i52 { font-size:15px; margin:0; }
.rt-i53 { width:56px; height:56px; border-radius:50%; border:2px solid #1E88E5; display:flex; align-items:center; justify-content:center; font-size:28px; background:radial-gradient(circle at 30% 30%, #0a2746, #020b18); box-shadow:0 6px 16px rgba(0,0,0,0.6); margin-right:8px; flex-shrink:0; }
.rt-i54 { position:absolute; top:35%; left:13%; transform:translate(-50%, -50%); display:flex; flex-direction:row-reverse; align-items:center; text-align:right; width:220px; max-width:40%; color:#fff; z-index:2; padding:10px; }
.rt-i55 { font-size:20px; margin:0 0 6px; color:white; }
.rt-i56 { font-size:15px; margin:0; }
.rt-i57 { width:56px; height:56px; border-radius:50%; border:2px solid #1E88E5; display:flex; align-items:center; justify-content:center; font-size:28px; background:radial-gradient(circle at 30% 30%, #0a2746, #020b18); box-shadow:0 6px 16px rgba(0,0,0,0.6); margin-right:8px; flex-shrink:0; }
.rt-i58 { text-align:center; color:#1E88E5; margin-bottom:20px; font-size:20px; }
.rt-i59 { margin-top:70px; color:#1E88E5; font-weight:600; font-size:15px; }
.rt-i60 { background:#04182F; padding-top:80px; }
.rt-i61, .rt-i62, .rt-i63, .rt-i64 { flex-shrink:0; line-height:1; }
.rt-i65 { width:100%; max-width:480px; }
.rt-i66 { background-color:#02101f; color:white; padding-top:80px; padding-bottom:80px; }
.rt-i67 { display:flex; align-items:flex-start; justify-content:center; gap:8px; }
.rt-i68 { font-size:100px; margin:0; line-height:0.9; color:#e7eef7; opacity:0.9; }
.rt-i69 { font-size:50px; line-height:1.1; color:#e7eef7; opacity:0.9; }
.rt-i70 { margin-top:10px; font-size:22px; }
.rt-i71 { display:flex; align-items:flex-start; justify-content:center; gap:8px; }
.rt-i72 { font-size:100px; margin:0; line-height:0.9; color:#e7eef7; opacity:0.9; }
.rt-i73 { margin-top:10px; font-size:22px; }
.rt-i74 { display:flex; align-items:flex-start; justify-content:center; gap:8px; }
.rt-i75 { font-size:100px; margin:0; line-height:0.9; color:#e7eef7; opacity:0.9; }
.rt-i76 { font-size:50px; line-height:1.1; color:#e7eef7; opacity:0.9; }
.rt-i77 { margin-top:10px; font-size:22px; }
.rt-i78 { display:flex; align-items:flex-start; justify-content:center; gap:8px; }
.rt-i79 { font-size:100px; margin:0; line-height:0.9; color:#e7eef7; opacity:0.9; }
.rt-i80 { font-size:50px; line-height:1.1; color:#e7eef7; opacity:0.9; }
.rt-i81 { margin-top:10px; font-size:22px; }
.rt-i82 { margin-top:60px; }
.rt-i83 { background:#04182F; color:#fff; padding-top:60px; }
.rt-i84 { max-width:100%; }
.rt-i85 { font-size:20px; color:white; }
.rt-i86 { font-size:20px; color:white; }
.rt-i87 { font-size:20px; color:white; }
.rt-i88 { font-size:20px; color:white; }
.rt-i89 { font-size:20px; color:white; }
.rt-i90 { max-width:100%; }
.rt-i91 { font-size:20px; color:white; }
.rt-i92 { font-size:20px; color:white; }
.rt-i93 { font-size:20px; color:white; }
.rt-i94 { font-size:20px; color:white; }
.rt-i95 { background:linear-gradient(135deg,#041326,#0a3560); text-align:center; }
.rt-i96 { color:#ffffff; }
.rt-i97 { color:#c9d6e1; max-width:560px; margin:0 auto 28px; }


/* =========================================================
   Erweiterung 2026-09: zusätzliche Inhaltsabschnitte
   (Vektoren, Formate, RoE, Scorecard, Bericht, Regulierung, Glossar)
   ========================================================= */
.rt-h2 { color: #ffffff; }
.rt-lead { color: #c9d6e1; max-width: 640px; line-height: 1.7; }
.rt-note { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.6; margin-top: 20px; max-width: 820px; }
.rt-textlink {
  display: inline-block; margin-top: 10px; color: #1E88E5; font-weight: 600; font-size: 14px;
  text-decoration: none; border-bottom: 1px solid rgba(30,136,229,0.35); padding-bottom: 1px;
  transition: border-color 0.2s ease;
}
.rt-textlink:hover, .rt-textlink:focus-visible { color: #1E88E5; border-bottom-color: #1E88E5; }
.rt-vec-area h3, .rt-fmt-area h3, .rt-roe-area h3, .rt-rep-area h3, .rt-reg-area h3 { color: #fff; }
.rt-vec-area p, .rt-fmt-area p, .rt-roe-area p, .rt-rep-area p, .rt-reg-area p, .rt-det-area td, .rt-glos-area dd { color: rgba(255,255,255,0.68); }

/* ---- Angriffsvektoren: sticky Einleitung + Figur links, Zeilenliste rechts ---- */
.rt-vec-area { background: #041326; padding: 110px 0 100px; }
.rt-vec-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 64px; align-items: start; }
.rt-vec-aside { position: sticky; top: 110px; }
.rt-vec-figure { margin: 36px 0 0; max-width: 360px; }
.rt-vec-figure svg { width: 100%; height: auto; display: block; }
.rt-vec-figure figcaption { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 8px; }
.rt-vec-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,0.1); }
.rt-vec-row { padding: 30px 0 30px 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: grid; grid-template-columns: 150px minmax(0, 1fr); column-gap: 24px; }
.rt-vec-row .rt-vec-tag { grid-column: 1; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #1E88E5; padding-top: 6px; }
.rt-vec-row h3, .rt-vec-row p, .rt-vec-row .rt-vec-tests, .rt-vec-row .rt-textlink { grid-column: 2; }
.rt-vec-row h3 { font-size: 20px; margin: 0 0 10px; }
.rt-vec-row p { margin: 0 0 12px; line-height: 1.65; }
.rt-vec-tests { font-size: 13px; color: rgba(255,255,255,0.45); font-family: 'Fira Code', monospace; }
.rt-vec-row .rt-textlink { justify-self: start; }

/* ---- Formate: Leiter aus vier Zeilen (Kicker | Inhalt | Für wen) ---- */
.rt-fmt-area { background: #04182F; padding: 100px 0 110px; }
.rt-fmt-head { max-width: 720px; margin-bottom: 48px; }
.rt-fmt-ladder { border-top: 1px solid rgba(255,255,255,0.1); }
.rt-fmt-row { display: grid; grid-template-columns: 190px minmax(0, 1fr) minmax(0, 300px); gap: 32px; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.rt-fmt-kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); padding-top: 5px; }
.rt-fmt-row.is-standard .rt-fmt-kicker { color: #E24B4A; }
.rt-fmt-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #E24B4A; margin-right: 8px; position: relative; top: -1px; }
.rt-fmt-main h3 { font-size: 22px; margin: 0 0 10px; }
.rt-fmt-main p { margin: 0; line-height: 1.65; }
.rt-fmt-for { border-left: 1px solid rgba(255,255,255,0.1); padding-left: 24px; }
.rt-fmt-for-label { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.rt-fmt-for p { margin: 0; font-size: 14px; line-height: 1.6; }

/* ---- Rules of Engagement: ein Panel, nummerierte Liste in zwei Spalten ---- */
.rt-roe-area { background: #02101f; padding: 100px 0; }
.rt-roe-panel { background: #061a2e; border: 1px solid rgba(30,136,229,0.18); border-radius: 20px; padding: 56px 56px 40px; }
.rt-roe-head { max-width: 760px; margin-bottom: 40px; }
.rt-roe-list { list-style: none; margin: 0; padding: 0; counter-reset: roe; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 48px; }
.rt-roe-list li { counter-increment: roe; position: relative; padding: 22px 0 22px 56px; border-top: 1px solid rgba(255,255,255,0.08); }
.rt-roe-list li::before { content: counter(roe, decimal-leading-zero); position: absolute; left: 0; top: 24px; font-family: 'Fira Code', monospace; font-size: 13px; color: #1E88E5; }
.rt-roe-list h3 { font-size: 17px; margin: 0 0 6px; }
.rt-roe-list p { margin: 0; font-size: 14px; line-height: 1.6; }

/* ---- Detection-Scorecard ---- */
.rt-det-area { background: #041326; padding: 100px 0 110px; }
.rt-det-head { max-width: 760px; margin-bottom: 44px; }
.rt-det-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); }
.rt-det-table { width: 100%; border-collapse: collapse; min-width: 760px; color: #fff; }
.rt-det-table th, .rt-det-table td { padding: 18px 20px; text-align: left; font-size: 14px; vertical-align: top; border-bottom: 1px solid rgba(255,255,255,0.06); line-height: 1.55; }
.rt-det-table thead th { background: rgba(255,255,255,0.03); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); }
.rt-det-table tbody tr:last-child td { border-bottom: none; }
.rt-det-table td.rt-det-phase { color: #fff; font-weight: 700; white-space: nowrap; }
.rt-det-table td.rt-det-soc { color: rgba(255,255,255,0.55); }
.rt-verdict { display: inline-block; white-space: nowrap; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; padding: 4px 10px; border-radius: 100px; border: 1px solid transparent; }
.rt-verdict.is-neutral { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.2); }
.rt-verdict.is-partial { color: #f0b13a; border-color: rgba(240,177,58,0.45); background: rgba(240,177,58,0.08); }
.rt-verdict.is-missed { color: #E24B4A; border-color: rgba(226,75,74,0.45); background: rgba(226,75,74,0.08); }
.rt-det-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; margin: 48px 0 0; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.rt-det-metrics dt { color: #fff; font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.rt-det-metrics dd { margin: 0; color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }

/* ---- Berichtsinhalt: Inhaltsverzeichnis ---- */
.rt-rep-area { background: #02101f; padding: 100px 0 110px; }
.rt-rep-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 64px; align-items: start; }
.rt-rep-aside { position: sticky; top: 110px; }
.rt-rep-aside .default-btn { margin-top: 12px; }
.rt-rep-toc { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,0.1); }
.rt-rep-toc li { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 16px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.rt-rep-num { font-family: 'Fira Code', monospace; font-size: 26px; font-weight: 700; color: #1E88E5; line-height: 1; padding-top: 2px; }
.rt-rep-toc h3 { font-size: 18px; margin: 0 0 6px; }
.rt-rep-toc p { margin: 0; font-size: 14px; line-height: 1.6; }

/* ---- Regulierung: 2x2-Raster mit Kreuzlinien ---- */
.rt-reg-area { background: #041326; padding: 100px 0 110px; }
.rt-reg-head { max-width: 720px; margin-bottom: 44px; }
.rt-reg-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,0.1); border-left: 1px solid rgba(255,255,255,0.1); }
.rt-reg-cell { padding: 36px 40px; border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.rt-reg-cell h3 { font-size: 20px; margin: 0 0 12px; }
.rt-reg-cell p { margin: 0; font-size: 15px; line-height: 1.65; }

/* ---- Glossar ---- */
.rt-glos-area { background: #02101f; padding: 90px 0 110px; }
.rt-glos-head { max-width: 640px; margin-bottom: 40px; }
.rt-glos-list { margin: 0; columns: 3; column-gap: 48px; }
.rt-glos-list > div { break-inside: avoid; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.rt-glos-list dt { color: #fff; font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.rt-glos-list dd { margin: 0; font-size: 14px; line-height: 1.6; }

/* ---- Responsive ---- */
@media (max-width: 1199px) {
  .rt-fmt-row { grid-template-columns: 160px minmax(0, 1fr); }
  .rt-fmt-for { grid-column: 2; border-left: none; padding-left: 0; border-top: 1px dashed rgba(255,255,255,0.12); padding-top: 14px; }
  .rt-glos-list { columns: 2; }
}
@media (max-width: 991px) {
  .rt-vec-grid, .rt-rep-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .rt-vec-aside, .rt-rep-aside { position: static; }
  .rt-vec-figure { max-width: 300px; }
  .rt-roe-panel { padding: 40px 28px 24px; }
  .rt-roe-list { grid-template-columns: minmax(0, 1fr); }
  .rt-det-metrics { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .rt-reg-grid { grid-template-columns: minmax(0, 1fr); }
  .rt-reg-cell { padding: 28px 24px; }
}
@media (max-width: 767px) {
  .rt-vec-area, .rt-fmt-area, .rt-roe-area, .rt-det-area, .rt-rep-area, .rt-reg-area { padding: 70px 0; }
  .rt-glos-area { padding: 60px 0 80px; }
  .rt-vec-row { grid-template-columns: minmax(0, 1fr); row-gap: 8px; }
  .rt-vec-row .rt-vec-tag, .rt-vec-row h3, .rt-vec-row p, .rt-vec-row .rt-vec-tests, .rt-vec-row .rt-textlink { grid-column: 1; }
  .rt-fmt-row { grid-template-columns: minmax(0, 1fr); gap: 12px; padding: 26px 0; }
  .rt-fmt-for { grid-column: 1; }
  .rt-roe-list li { padding-left: 44px; }
  .rt-glos-list { columns: 1; }
  .rt-rep-toc li { grid-template-columns: 40px minmax(0, 1fr); }
  .rt-rep-num { font-size: 20px; }
}

.rt-faq-h { font-size:20px; color:white; }
