/* ============================================================
     HALCYON PRIME – STORYBOOK
     Design: Christopher Friedmann | Produktion: FRIEDMANN SOLUTIONS
     Farbsystem: Cyan = Ordnung | Rot = Bedrohung | Violett = Twist
  ============================================================ */

  @import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Orbitron:wght@400;500;700;900&family=Share+Tech+Mono&display=swap');

  :root {
    --cyan: #00d4ff;
    --cyan-dim: #0099bb;
    --cyan-glow: rgba(0,212,255,0.25);
    --red: #ff2244;
    --red-dim: #cc1133;
    --red-glow: rgba(255,34,68,0.25);
    --violet: #9933ff;
    --gold: #c8a84b;
    --white: #e8f4ff;
    --silver: #a0b8cc;
    --dark: #04080f;
    --dark2: #080e18;
    --dark3: #0c1420;
    --dark4: #101c2c;
    --panel: rgba(8,14,24,0.92);
    --border-cyan: 1px solid rgba(0,212,255,0.3);
    --border-red: 1px solid rgba(255,34,68,0.3);
    --font-title: 'Orbitron', monospace;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--dark2); }
  ::-webkit-scrollbar-thumb { background: var(--cyan-dim); border-radius: 3px; }

  /* ── SCAN LINE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.03) 2px,
      rgba(0,0,0,0.03) 4px
    );
    pointer-events: none;
    z-index: 9999;
  }

  /* ── TOP NAV BAR ── */
  .topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 72px;
    background: rgba(4,8,15,0.97);
    border-bottom: 1px solid rgba(0,212,255,0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 32px;
    z-index: 10020;
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 38px rgba(0,0,0,0.38);
  }
  .topbar-left {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    flex: 0 1 auto;
  }
  .topbar-logo {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 3px;
    white-space: nowrap;
  }
  .topbar-sep { color: rgba(0,212,255,0.3); }
  .topbar-sub {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--silver);
    letter-spacing: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .topbar-right {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(0,212,255,0.5);
    letter-spacing: 1.4px;
  }
  .topbar-nav {
    display: flex;
    gap: clamp(14px, 1.35vw, 28px);
    align-items: center;
    min-width: 0;
  }
  .topbar-nav a {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--silver);
    text-decoration: none;
    letter-spacing: 1.8px;
    line-height: 1;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .topbar-nav a:hover { color: var(--cyan); }

  /* ── MAIN WRAPPER ── */
  .main { padding-top: 72px; }

  /* ── COVER PAGE ── */
  .cover {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
  }
  .cover-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/header/ChatGPT%20Image%2028.%20Mai%202026%2C%2012_58_41.webp');
    background-size: cover;
    background-position: center center;
    filter: brightness(0.62) saturate(1.12) contrast(1.04);
  }
  .cover-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 34%, rgba(4,8,15,0.42) 78%, rgba(4,8,15,0.86) 100%);
  }
  .cover-bottom-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--dark));
  }
  .cover-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 40px;
    max-width: 900px;
  }
  .cover-studio {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(0,212,255,0.6);
    letter-spacing: 4px;
    margin-bottom: 32px;
    text-transform: uppercase;
  }
  .cover-title {
    font-family: var(--font-title);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: 8px;
    text-shadow: 0 0 60px rgba(0,212,255,0.4), 0 0 120px rgba(0,212,255,0.2);
    line-height: 1;
    margin-bottom: 8px;
  }
  .cover-title span { color: var(--cyan); }
  .cover-subtitle {
    font-family: var(--font-title);
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 400;
    color: var(--silver);
    letter-spacing: 6px;
    margin-bottom: 40px;
  }
  .cover-divider {
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--cyan), transparent);
    margin: 0 auto 40px;
  }
  .cover-episode {
    font-family: var(--font-title);
    font-size: 14px;
    color: var(--cyan);
    letter-spacing: 4px;
    margin-bottom: 12px;
  }
  .cover-epname {
    font-family: var(--font-title);
    font-size: clamp(20px, 4vw, 36px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 4px;
    margin-bottom: 48px;
  }
  .cover-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border: 1px solid rgba(0,212,255,0.2);
    max-width: 700px;
    margin: 0 auto 48px;
    background: rgba(0,212,255,0.1);
  }
  .cover-meta-item {
    background: rgba(4,8,15,0.9);
    padding: 16px;
    text-align: center;
  }
  .cover-meta-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--cyan-dim);
    letter-spacing: 2px;
    margin-bottom: 6px;
  }
  .cover-meta-value {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
  }
  .cover-logline {
    font-family: var(--font-body);
    font-size: 16px;
    font-style: italic;
    color: var(--silver);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.8;
    border-left: 2px solid var(--cyan);
    padding-left: 20px;
    text-align: left;
  }
  .cover-podcast {
    max-width: 700px;
    margin: -20px auto 42px;
    padding: 18px 20px 20px;
    text-align: left;
    border: 1px solid rgba(0,212,255,0.28);
  background:
    linear-gradient(135deg, rgba(0,212,255,0.09), rgba(255,34,68,0.05)),
    rgba(4,8,15,0.82);
  box-shadow: 0 20px 70px rgba(0,0,0,0.36), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: none;
}
  .cover-podcast-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
  }
  .cover-podcast-kicker {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--cyan);
    letter-spacing: 3px;
    margin-bottom: 6px;
  }
  .cover-podcast-title {
    font-family: var(--font-title);
    font-size: clamp(15px, 2vw, 20px);
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .cover-podcast-meta {
    flex: 0 0 auto;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(232,244,255,0.72);
    border: 1px solid rgba(0,212,255,0.26);
    background: rgba(0,212,255,0.08);
    padding: 5px 9px;
  }
  .cover-podcast-player {
    width: 100%;
    display: block;
    accent-color: var(--cyan);
  }
  .cover-podcast-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
  }
  .cover-podcast-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    border: 1px solid rgba(0,212,255,0.42);
    background: linear-gradient(135deg, rgba(0,212,255,0.16), rgba(0,20,34,0.86));
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 0 22px rgba(0,212,255,0.12), inset 0 1px 0 rgba(255,255,255,0.08);
    transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }
  .cover-podcast-link:hover,
  .cover-podcast-link:focus-visible {
    border-color: rgba(0,212,255,0.78);
    color: var(--cyan);
    box-shadow: 0 0 34px rgba(0,212,255,0.24), inset 0 1px 0 rgba(255,255,255,0.12);
    transform: translateY(-1px);
  }
  .cover-credits {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(160,184,204,0.5);
    letter-spacing: 2px;
  }
  .cover-credits span { color: rgba(0,212,255,0.6); }

  /* ── SECTION HEADER ── */
  .section-header {
    padding: 80px 60px 40px;
    border-bottom: 1px solid rgba(0,212,255,0.1);
    background: linear-gradient(to bottom, rgba(0,212,255,0.03), transparent);
  }
  .section-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--cyan);
    letter-spacing: 3px;
    margin-bottom: 12px;
  }
  .section-title {
    font-family: var(--font-title);
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 4px;
    margin-bottom: 8px;
  }
  .section-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--silver);
    max-width: 700px;
  }

  /* ── CHARACTER SECTION ── */
  .characters-section {
    padding: 60px;
    background: var(--dark2);
  }
  .char-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 40px;
  }
  .char-card {
    position: relative;
    overflow: hidden;
    background: var(--dark3);
  }
  .char-card.halcyon { border-top: 3px solid var(--cyan); }
  .char-card.eclipse { border-top: 3px solid var(--red); }
  .char-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #edf0f2;
  }
  .char-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    filter: saturate(1);
    transition: transform 0.6s ease;
  }
  .char-card:hover .char-img-wrap img { transform: scale(1.03); }
  .char-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 28%;
    background: linear-gradient(to top, rgba(4,8,15,0.55), transparent);
    pointer-events: none;
  }
  .char-body {
    padding: 28px 32px;
  }
  .char-faction {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 8px;
  }
  .char-card.halcyon .char-faction { color: var(--cyan); }
  .char-card.eclipse .char-faction { color: var(--red); }
  .char-name {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 4px;
  }
  .char-model {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--silver);
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  .char-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }
  .char-stat {
    background: rgba(0,0,0,0.3);
    padding: 10px 14px;
    border-left: 2px solid;
  }
  .char-card.halcyon .char-stat { border-color: rgba(0,212,255,0.4); }
  .char-card.eclipse .char-stat { border-color: rgba(255,34,68,0.4); }
  .char-stat-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 4px;
  }
  .char-card.halcyon .char-stat-label { color: var(--cyan-dim); }
  .char-card.eclipse .char-stat-label { color: var(--red-dim); }
  .char-stat-value {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
  }
  .char-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--silver);
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .char-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .char-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    padding: 4px 10px;
    letter-spacing: 1px;
    border: 1px solid;
  }
  .char-card.halcyon .char-tag { color: var(--cyan); border-color: rgba(0,212,255,0.3); background: rgba(0,212,255,0.05); }
  .char-card.eclipse .char-tag { color: var(--red); border-color: rgba(255,34,68,0.3); background: rgba(255,34,68,0.05); }

  /* ── LOCATION SECTION ── */
  .locations-section {
    padding: 72px 60px 80px;
    background: var(--dark);
  }
  .loc-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 48px;
  }
  .loc-card {
    position: relative;
    overflow: hidden;
    background: var(--dark3);
    border: 1px solid rgba(0,212,255,0.13);
    cursor: default;
    display: flex;
    flex-direction: column;
  }
  .loc-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #edf0f2;
  }
  .loc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    filter: saturate(0.95) brightness(0.9);
    transition: transform 0.5s ease, filter 0.5s ease;
  }
  .loc-card:hover .loc-img-wrap img {
    transform: scale(1.05);
    filter: saturate(1.1) brightness(1.0);
  }
  .loc-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(4,8,15,0.95), transparent);
  }
  .loc-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 22px;
  }
  .loc-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 7px;
  }
  .loc-name {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 6px;
  }
  .loc-sub {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--silver);
  }
  .loc-copy {
    padding: 22px 24px 26px;
    background:
      linear-gradient(180deg, rgba(12,20,32,0.98), rgba(5,9,16,0.98)),
      var(--dark3);
    border-top: 1px solid rgba(0,212,255,0.1);
    flex: 1;
  }
  .loc-copy p {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(232,244,255,0.82);
  }
  .loc-card.active .loc-tag { color: var(--cyan); }
  .loc-card.shadow .loc-tag { color: var(--red); }
  .loc-card.neutral .loc-tag { color: var(--gold); }

  /* ── SCENE SECTION ── */
  .scene-section {
    padding: 0;
    margin-bottom: 4px;
  }

  .scene-header {
    position: relative;
    padding: 48px 60px 36px;
    overflow: hidden;
  }
  .scene-header.cyan-theme {
    background: linear-gradient(135deg, rgba(0,212,255,0.06) 0%, transparent 60%);
    border-left: 4px solid var(--cyan);
  }
  .scene-header.red-theme {
    background: linear-gradient(135deg, rgba(255,34,68,0.06) 0%, transparent 60%);
    border-left: 4px solid var(--red);
  }
  .scene-header.mixed-theme {
    background: linear-gradient(135deg, rgba(0,212,255,0.04) 0%, rgba(255,34,68,0.04) 100%);
    border-left: 4px solid var(--violet);
  }

  .scene-number-bg {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-title);
    font-size: 120px;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    letter-spacing: -4px;
    user-select: none;
  }

  .scene-meta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
  }
  .scene-num-badge {
    font-family: var(--font-title);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 12px;
    border: 1px solid;
  }
  .cyan-theme .scene-num-badge { color: var(--cyan); border-color: var(--cyan); background: rgba(0,212,255,0.08); }
  .red-theme .scene-num-badge { color: var(--red); border-color: var(--red); background: rgba(255,34,68,0.08); }
  .mixed-theme .scene-num-badge { color: var(--violet); border-color: var(--violet); background: rgba(153,51,255,0.08); }

  .scene-timing {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--silver);
    letter-spacing: 1px;
  }
  .scene-location-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(160,184,204,0.6);
    letter-spacing: 2px;
    margin-left: auto;
  }

  .scene-title {
    font-family: var(--font-title);
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 4px;
    margin-bottom: 8px;
  }
  .scene-goal {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--silver);
    font-style: italic;
  }

  /* ── SHOT GRID ── */
  .shots-container {
    padding: 0 60px 48px;
    background: var(--dark2);
  }

  .shot-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-bottom: 2px;
    background:
      linear-gradient(90deg, rgba(0,212,255,0.1), rgba(255,34,68,0.08)),
      var(--dark3);
    border: 1px solid rgba(0,212,255,0.08);
    position: relative;
    overflow: hidden;
  }
  .shot-card.full-width {
    grid-template-columns: 1fr;
  }
  .shot-card.triple {
    grid-template-columns: 2fr 1fr;
  }

  /* Red-card: full shot-card layout for Scene 2+ with real images */
  .shot-card.red-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-bottom: 2px;
    background: var(--dark3);
    border-top: 2px solid rgba(255,34,68,0.4);
    position: relative;
  }
  .shot-card.red-card .shot-number-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
  }
  .shot-card.red-card .shot-duration-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
  }
  .shot-img-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    min-height: 320px;
  }
  .shot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 320px;
  }

  .shot-img-panel {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    min-height: 320px;
  }
  .shot-img-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .shot-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: repeating-linear-gradient(
      45deg,
      rgba(0,0,0,0.5),
      rgba(0,0,0,0.5) 10px,
      rgba(8,14,24,0.5) 10px,
      rgba(8,14,24,0.5) 20px
    );
    border: 1px dashed rgba(0,212,255,0.15);
  }
  .placeholder-icon {
    font-size: 32px;
    margin-bottom: 12px;
    opacity: 0.3;
  }
  .placeholder-text {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(0,212,255,0.4);
    letter-spacing: 2px;
    text-align: center;
  }
  .placeholder-shot-id {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 700;
    color: rgba(0,212,255,0.15);
    margin-bottom: 8px;
  }

  .shot-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(4,8,15,0.9), transparent);
    pointer-events: none;
  }
  .shot-number-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-title);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    letter-spacing: 2px;
    background: rgba(4,8,15,0.85);
    border: 1px solid;
    backdrop-filter: blur(4px);
  }
  .shot-number-tag.cyan { color: var(--cyan); border-color: rgba(0,212,255,0.5); }
  .shot-number-tag.red { color: var(--red); border-color: rgba(255,34,68,0.5); }
  .shot-number-tag.mixed { color: var(--violet); border-color: rgba(153,51,255,0.5); }

  .shot-duration-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--silver);
    padding: 4px 8px;
    background: rgba(4,8,15,0.85);
    border: 1px solid rgba(160,184,204,0.2);
    backdrop-filter: blur(4px);
  }

  .shot-info-panel {
    padding: clamp(30px, 3vw, 48px) clamp(36px, 4vw, 58px);
    background:
      linear-gradient(180deg, rgba(12,20,32,0.96), rgba(5,9,16,0.98)),
      repeating-linear-gradient(0deg, rgba(0,212,255,0.035) 0 1px, transparent 1px 7px),
      var(--dark3);
    border-left: 1px solid rgba(0,212,255,0.2);
    box-shadow:
      inset 0 0 0 1px rgba(0,212,255,0.06),
      inset 18px 0 40px rgba(0,212,255,0.035),
      inset -18px 0 40px rgba(255,34,68,0.025);
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }

  .shot-content {
    padding: clamp(30px, 3vw, 48px) clamp(36px, 4vw, 58px);
    background:
      linear-gradient(180deg, rgba(12,20,32,0.96), rgba(5,9,16,0.98)),
      repeating-linear-gradient(0deg, rgba(0,212,255,0.035) 0 1px, transparent 1px 7px),
      var(--dark3);
    border-left: 1px solid rgba(0,212,255,0.2);
    box-shadow:
      inset 0 0 0 1px rgba(0,212,255,0.06),
      inset 18px 0 40px rgba(0,212,255,0.035),
      inset -18px 0 40px rgba(255,34,68,0.025);
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }

  .shot-info-panel::before,
  .shot-content::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(0,212,255,0.09);
    border-left-color: rgba(0,212,255,0.22);
    border-top-color: rgba(0,212,255,0.16);
    pointer-events: none;
    z-index: 0;
  }

  .shot-info-panel::after,
  .shot-content::after {
    content: 'ARC DISPLAY // SCENE DATA';
    position: absolute;
    right: 22px;
    bottom: 14px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(0,212,255,0.17);
    pointer-events: none;
    z-index: 0;
  }

  .shot-info-panel > *,
  .shot-content > * {
    position: relative;
    z-index: 1;
  }

  .shot-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }
  .shot-title {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1.3;
  }
  .shot-cam-badge {
    font-family: var(--font-mono);
    font-size: 9px;
    padding: 3px 8px;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid rgba(0,212,255,0.25);
    color: var(--cyan-dim);
    background: rgba(0,212,255,0.05);
  }

  .shot-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--silver);
    line-height: 1.7;
    max-width: 960px;
  }

  .shot-data-grid,
  .shot-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .shot-data-item,
  .shot-meta-item {
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(0,212,255,0.1);
    padding: 11px 13px;
  }
  .shot-data-label,
  .shot-meta-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--cyan-dim);
    letter-spacing: 2px;
    margin-bottom: 5px;
  }
  .shot-data-value,
  .shot-meta-value {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.45;
    color: var(--white);
    font-weight: 500;
  }

  .shot-camera,
  .shot-sound {
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.65;
    color: rgba(232,244,255,0.82);
    background: rgba(0,0,0,0.24);
    border-left: 2px solid rgba(0,212,255,0.24);
    padding: 11px 14px;
  }

  .shot-dialog-block {
    background: linear-gradient(90deg, rgba(0,0,0,0.48), rgba(255,255,255,0.018));
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 2px solid;
    padding: 14px 18px;
  }
  .shot-dialog-block.cyan { border-color: var(--cyan); }
  .shot-dialog-block.red { border-color: var(--red); }
  .shot-dialog-block.system { border-color: var(--gold); }
  .shot-dialog-speaker {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 6px;
  }
  .shot-dialog-block.cyan .shot-dialog-speaker { color: var(--cyan); }
  .shot-dialog-block.red .shot-dialog-speaker { color: var(--red); }
  .shot-dialog-block.system .shot-dialog-speaker { color: var(--gold); }
  .shot-dialog-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
  }

  .shot-interface-block {
    background: rgba(0,212,255,0.055);
    border: 1px solid rgba(0,212,255,0.15);
    padding: 14px 18px;
  }
  .shot-interface-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--cyan);
    letter-spacing: 2px;
    margin-bottom: 8px;
  }
  .shot-interface-line {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--silver);
    line-height: 1.8;
  }
  .shot-interface-line.alert { color: var(--red); }
  .shot-interface-line.ok { color: var(--cyan); }

  .shot-mood-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .mood-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    padding: 3px 8px;
    letter-spacing: 1px;
    border: 1px solid rgba(160,184,204,0.2);
    color: var(--silver);
    background: rgba(0,0,0,0.2);
  }

  .shot-sound-block {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(160,184,204,0.1);
    border-left: 2px solid rgba(160,184,204,0.28);
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.65;
    color: rgba(232,244,255,0.82);
  }
  .shot-sound-icon {
    font-size: 14px;
    opacity: 0.5;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .shot-sound-text {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(160,184,204,0.7);
    line-height: 1.6;
  }

  .shot-transition {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    margin-top: auto;
  }
  .transition-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(0,212,255,0.3), transparent);
  }
  .transition-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(0,212,255,0.5);
    letter-spacing: 2px;
    white-space: nowrap;
  }

  /* ── SCENE DIVIDER ── */
  .scene-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(0,212,255,0.3), transparent);
    margin: 0;
  }

  /* ── CONCEPT ART REFERENCE PANEL ── */
  .concept-ref-panel {
    padding: 32px 60px;
    background: var(--dark4);
    border-top: 1px solid rgba(0,212,255,0.1);
    border-bottom: 1px solid rgba(0,212,255,0.1);
  }
  .concept-ref-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--cyan-dim);
    letter-spacing: 3px;
    margin-bottom: 16px;
  }
  .concept-ref-img {
    width: 100%;
    border: 1px solid rgba(0,212,255,0.15);
    display: block;
  }

  /* ── PENDING SCENE PLACEHOLDER ── */
  .pending-scene {
    padding: 60px;
    background: var(--dark2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border: 1px dashed rgba(0,212,255,0.1);
    text-align: center;
    gap: 16px;
  }
  .pending-icon {
    font-size: 40px;
    opacity: 0.2;
  }
  .pending-title {
    font-family: var(--font-title);
    font-size: 18px;
    color: rgba(0,212,255,0.3);
    letter-spacing: 3px;
  }
  .pending-text {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(160,184,204,0.3);
    letter-spacing: 2px;
  }

  /* ── TIMELINE OVERVIEW ── */
  .timeline-section {
    padding: 60px;
    background: var(--dark3);
  }
  .timeline-bar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-top: 32px;
  }
  .timeline-item {
    background: var(--dark4);
    padding: 16px 12px;
    border-top: 3px solid;
    text-align: center;
  }
  .timeline-item.cyan { border-color: var(--cyan); }
  .timeline-item.red { border-color: var(--red); }
  .timeline-item.mixed { border-color: var(--violet); }
  .timeline-item.gold { border-color: var(--gold); }
  .timeline-scene-num {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
  }
  .timeline-scene-name {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--silver);
    letter-spacing: 1px;
    margin-bottom: 8px;
    line-height: 1.4;
  }
  .timeline-time {
    font-family: var(--font-mono);
    font-size: 10px;
    margin-bottom: 4px;
  }
  .timeline-item.cyan .timeline-time { color: var(--cyan); }
  .timeline-item.red .timeline-time { color: var(--red); }
  .timeline-item.mixed .timeline-time { color: var(--violet); }
  .timeline-item.gold .timeline-time { color: var(--gold); }
  .timeline-status {
    font-family: var(--font-mono);
    font-size: 9px;
    padding: 2px 6px;
    display: inline-block;
    margin-top: 6px;
  }
  .timeline-status.done { color: var(--cyan); border: 1px solid rgba(0,212,255,0.3); background: rgba(0,212,255,0.05); }
  .timeline-status.pending { color: rgba(160,184,204,0.4); border: 1px solid rgba(160,184,204,0.15); }

  /* ── FOOTER ── */
  .footer {
    padding: 48px 60px;
    background: var(--dark);
    border-top: 1px solid rgba(0,212,255,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-left {
    font-family: var(--font-title);
    font-size: 14px;
    color: var(--cyan);
    letter-spacing: 3px;
  }
  .footer-center {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(160,184,204,0.4);
    letter-spacing: 2px;
    text-align: center;
  }
  .footer-right {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(160,184,204,0.4);
    letter-spacing: 2px;
    text-align: right;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1500px) {
    .topbar-right {
      display: none;
    }

    .topbar {
      padding-left: 22px;
      padding-right: 22px;
    }
  }

  @media (max-width: 1024px) {
    .char-grid { grid-template-columns: 1fr; }
    .loc-grid { grid-template-columns: 1fr 1fr; }
    .shot-card { grid-template-columns: 1fr; }
    .shot-card.triple { grid-template-columns: 1fr; }
    .timeline-bar { grid-template-columns: repeat(4, 1fr); }
    .cover-meta-grid { grid-template-columns: repeat(2, 1fr); }
    .section-header, .characters-section, .locations-section, .shots-container, .timeline-section, .footer { padding-left: 24px; padding-right: 24px; }
    .scene-header { padding-left: 24px; padding-right: 24px; }
    .concept-ref-panel { padding-left: 24px; padding-right: 24px; }
    .pending-scene { padding: 40px 24px; }
  }
  @media (max-width: 640px) {
    .loc-grid { grid-template-columns: 1fr; }
    .timeline-bar { grid-template-columns: repeat(2, 1fr); }
    .topbar-nav { display: none; }
    .cover-podcast { padding: 16px; margin-bottom: 34px; }
    .cover-podcast-top { flex-direction: column; gap: 10px; }
  }

/* ═══════════════════════════════════════════════════════
   SCREENPLAY PAGE STYLES
═══════════════════════════════════════════════════════ */

/* ── Hero ── */


/* ══════════════════════════════════════════════════════════════════════
   CINEMATIC HERO HEADER — HALCYON PRIME FILMISCHER HEADER v2
   ══════════════════════════════════════════════════════════════════════ */
.sp-hero {
  position: relative;
  width: 100%;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-bottom: 2px solid rgba(0,212,255,0.3);
}

/* Hintergrundbild: Aether Gate City Panorama */
.sp-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/basis/ChatGPT%20Image%2028.%20Mai%202026%2C%2000_12_11.webp');
  background-size: cover;
  background-position: center center;
  filter: brightness(0.68) saturate(1.18) contrast(1.04);
  z-index: 0;
  transform: scale(1.05);
}

/* Farbüberlagerung: links Cyan, rechts Rot, Mitte dunkel */
.sp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Zentrales Vignette für Textlesbarkeit */
    radial-gradient(ellipse 55% 80% at 50% 50%,
      rgba(0,0,0,0.54) 0%,
      rgba(0,0,0,0.26) 54%,
      rgba(0,0,0,0) 100%
    ),
    /* Horizontales Gradient: Ränder abdunkeln */
    linear-gradient(to right,
      rgba(0,0,0,0.25) 0%,
      rgba(0,0,0,0) 20%,
      rgba(0,0,0,0) 80%,
      rgba(0,0,0,0.25) 100%
    ),
    /* Obere und untere Abdunklung */
    linear-gradient(to bottom,
      rgba(0,0,5,0.34) 0%,
      rgba(0,0,0,0) 20%,
      rgba(0,0,0,0) 75%,
      rgba(0,0,0,0.62) 100%
    );
  z-index: 1;
}

/* Horizontale Glühlinien */
.sp-hero-glow-line-top {
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(0,212,255,0.5) 30%, rgba(0,212,255,0.8) 50%, rgba(0,212,255,0.5) 70%, transparent 100%);
  z-index: 10;
  box-shadow: 0 0 15px rgba(0,212,255,0.4);
}

/* Charakter links: Aurora-7 Dynamic Pose */
.sp-hero-char-left {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 30%;
  background-image: url('../img/basis/ChatGPT%20Image%2028.%20Mai%202026%2C%2000_10_37.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
  filter: brightness(1.1) saturate(1.5) contrast(1.1)
          drop-shadow(0 0 25px rgba(0,212,255,0.6))
          drop-shadow(0 0 60px rgba(0,150,255,0.25))
          drop-shadow(2px 0 40px rgba(0,212,255,0.15));
  z-index: 4;
  mask-image: linear-gradient(to right, rgba(0,0,0,0.95) 40%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.95) 40%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0) 100%);
}

/* Cyan-Glow-Overlay links */
.sp-hero-char-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,212,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Charakter rechts: Eclipse NOX-17 Dynamic Pose */
.sp-hero-char-right {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 28%;
  background-image: url('../img/basis/ChatGPT%20Image%2028.%20Mai%202026%2C%2000_11_24.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  filter: brightness(1.0) saturate(1.6) contrast(1.15)
          drop-shadow(0 0 25px rgba(220,38,38,0.6))
          drop-shadow(0 0 60px rgba(180,20,20,0.25))
          drop-shadow(-2px 0 40px rgba(220,38,38,0.15));
  z-index: 4;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.95) 40%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.95) 40%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0) 100%);
}

/* Zentraler Text-Bereich */
.sp-hero-center {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 55px 20px 45px;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo / Symbol */
.sp-hero-logo-symbol {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  opacity: 0.95;
  filter: drop-shadow(0 0 10px rgba(0,212,255,0.5));
}

/* Eyebrow */
.sp-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 4px;
  color: rgba(0,212,255,0.55);
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* Haupttitel HALCYON */
.sp-hero-title {
  font-family: var(--font-title);
  font-size: clamp(70px, 11vw, 130px);
  color: #ffffff;
  letter-spacing: 10px;
  line-height: 0.88;
  text-shadow:
    0 0 1px rgba(255,255,255,0.9),
    0 0 20px rgba(0,212,255,0.45),
    0 0 60px rgba(0,212,255,0.18),
    0 4px 30px rgba(0,0,0,0.9);
  margin-bottom: 2px;
}

/* Untertitel PRIME */
.sp-hero-subtitle {
  font-family: var(--font-title);
  font-size: clamp(26px, 4vw, 50px);
  color: rgba(255,255,255,0.88);
  letter-spacing: 18px;
  text-shadow:
    0 0 15px rgba(0,212,255,0.55),
    0 2px 20px rgba(0,0,0,0.9);
  margin-bottom: 22px;
}

/* Trennlinie mit Glow */
.sp-hero-divider {
  width: 200px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,212,255,0.8), transparent);
  margin: 0 auto 20px;
  box-shadow: 0 0 8px rgba(0,212,255,0.4);
}

/* Episode-Label */
.sp-hero-episode {
  font-family: var(--font-mono);
  font-size: clamp(16px, 1.15vw, 20px);
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(0,212,255,0.94);
  margin-bottom: 12px;
  text-shadow: 0 0 15px rgba(0,212,255,0.5), 0 3px 18px rgba(0,0,0,0.72);
}

/* Tagline */
.sp-hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1.55;
  color: rgba(255,58,86,0.92);
  font-style: italic;
  letter-spacing: 1px;
  margin-bottom: 28px;
  text-shadow: 0 0 20px rgba(220,38,38,0.45), 0 3px 18px rgba(0,0,0,0.76);
}

/* Meta-Badges */
.sp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.sp-hero-badge {
  font-family: var(--font-mono);
  font-size: clamp(12px, 0.85vw, 14px);
  letter-spacing: 1.8px;
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 14px;
  border-radius: 2px;
  background: rgba(0,0,0,0.58);
  backdrop-filter: blur(6px);
}
.sp-hero-badge.sp-badge-cyan {
  color: rgba(0,212,255,0.9);
  border-color: rgba(0,212,255,0.35);
  background: rgba(0,212,255,0.06);
  box-shadow: 0 0 8px rgba(0,212,255,0.1);
}
.sp-hero-badge.sp-badge-red {
  color: rgba(220,38,38,0.9);
  border-color: rgba(220,38,38,0.35);
  background: rgba(220,38,38,0.06);
  box-shadow: 0 0 8px rgba(220,38,38,0.1);
}

/* Untere Cyan-Linie */
.sp-hero-bottom-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(0,212,255,0.5) 20%,
    rgba(0,212,255,0.95) 50%,
    rgba(0,212,255,0.5) 80%,
    transparent 100%
  );
  z-index: 10;
  box-shadow: 0 0 20px rgba(0,212,255,0.6), 0 -2px 30px rgba(0,212,255,0.2);
}

/* Eck-Ornamente */
.sp-hero-corner {
  position: absolute;
  width: 36px;
  height: 36px;
  z-index: 10;
  opacity: 0.55;
}
.sp-hero-corner-tl { top: 18px; left: 18px; border-top: 1px solid rgba(0,212,255,0.8); border-left: 1px solid rgba(0,212,255,0.8); }
.sp-hero-corner-tr { top: 18px; right: 18px; border-top: 1px solid rgba(0,212,255,0.8); border-right: 1px solid rgba(0,212,255,0.8); }
.sp-hero-corner-bl { bottom: 18px; left: 18px; border-bottom: 1px solid rgba(0,212,255,0.8); border-left: 1px solid rgba(0,212,255,0.8); }
.sp-hero-corner-br { bottom: 18px; right: 18px; border-bottom: 1px solid rgba(0,212,255,0.8); border-right: 1px solid rgba(0,212,255,0.8); }

/* Responsive */
@media (max-width: 1100px) {
  .sp-hero { min-height: 460px; }
  .sp-hero-char-left { width: 32%; }
  .sp-hero-char-right { width: 30%; }
}
@media (max-width: 900px) {
  .sp-hero { min-height: 380px; }
  .sp-hero-char-left { width: 38%; }
  .sp-hero-char-right { width: 34%; }
  .sp-hero-title { font-size: clamp(52px, 13vw, 90px); }
  .sp-hero-subtitle { letter-spacing: 10px; }
}
@media (max-width: 600px) {
  .sp-hero-char-left, .sp-hero-char-right { display: none; }
  .sp-hero { min-height: 300px; }
}
/* ── Global Notes ── */
.sp-global-notes {
  background: #0b0b14;
  border-bottom: 1px solid rgba(0,212,255,0.12);
  padding: 50px 60px;
}
.sp-notes-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(0,212,255,0.6);
  margin-bottom: 24px;
}
.sp-notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.sp-note-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 6px;
  padding: 20px;
}
.sp-note-aurora { border-color: rgba(0,212,255,0.3); }
.sp-note-eclipse { border-color: rgba(220,38,38,0.3); }
.sp-note-card-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-bottom: 10px;
}
.sp-note-eclipse .sp-note-card-title { color: #dc2626; }
.sp-note-card-body {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--silver);
  line-height: 1.7;
}

/* ── Scene Nav ── */
.sp-scene-nav {
  background: #090912;
  border-bottom: 1px solid rgba(0,212,255,0.1);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  position: sticky;
  top: 56px;
  z-index: 90;
}
.sp-scene-nav-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(0,212,255,0.4);
  white-space: nowrap;
}
.sp-scene-nav-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sp-nav-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--silver);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 3px;
  padding: 5px 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.sp-nav-pill:hover {
  background: rgba(0,212,255,0.1);
  color: var(--cyan);
  border-color: var(--cyan);
}

/* ── Scene Block ── */
.sp-scene-block {
  border-bottom: 2px solid rgba(0,212,255,0.1);
  scroll-margin-top: 100px;
}
.sp-scene-header {
  background: linear-gradient(135deg, #0d0d1a 0%, #0a0a10 100%);
  border-bottom: 1px solid rgba(0,212,255,0.15);
  padding: 40px 60px 32px;
  position: relative;
}
.sp-scene-header::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--cyan), rgba(0,212,255,0.1));
}
.sp-scene-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.sp-scene-number {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--cyan);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.3);
  padding: 4px 12px;
  border-radius: 3px;
}
.sp-scene-timing {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}
.sp-shot-count {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(0,212,255,0.5);
  letter-spacing: 1px;
  margin-left: auto;
}
.sp-scene-title {
  font-family: var(--font-title);
  font-size: clamp(20px, 3vw, 32px);
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.sp-scene-location {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(0,212,255,0.6);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.sp-loc-icon { margin-right: 6px; }
.sp-scene-goal {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--silver);
  font-style: italic;
  line-height: 1.6;
  max-width: 800px;
}

/* ── Shots Grid ── */
.sp-shots-grid {
  padding: 32px 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #0a0a12;
}

/* ── Shot Card ── */
.sp-shot-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.sp-shot-card:hover {
  border-color: rgba(0,212,255,0.3);
}

/* ── Shot Image Panel ── */
.sp-shot-img-panel {
  position: relative;
  background: #060608;
  overflow: hidden;
  min-height: 200px;
}
.sp-shot-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.sp-shot-card:hover .sp-shot-img-panel img {
  transform: scale(1.03);
}
.sp-shot-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--white);
  background: rgba(0,212,255,0.75);
  padding: 3px 8px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.sp-shot-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.6);
  padding: 3px 8px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}

/* ── Shot Info Panel ── */
.sp-shot-info-panel {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid rgba(0,212,255,0.08);
}
.sp-shot-title {
  font-family: var(--font-title);
  font-size: 15px;
  color: var(--white);
  letter-spacing: 2px;
}
.sp-drehbuch-block {
  background: rgba(0,212,255,0.04);
  border-left: 3px solid rgba(0,212,255,0.4);
  padding: 10px 14px;
  border-radius: 0 4px 4px 0;
}
.sp-block-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 2px;
  color: rgba(0,212,255,0.5);
  margin-bottom: 6px;
}
.sp-drehbuch-text {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--silver);
  line-height: 1.7;
  font-style: italic;
}

/* ── Prompt Blocks ── */
.sp-prompt-block {
  border-radius: 4px;
  padding: 10px 14px;
}
.sp-veo-block {
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.15);
}
.sp-seedance-block {
  background: rgba(153,51,255,0.05);
  border: 1px solid rgba(153,51,255,0.15);
}
.sp-prompt-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sp-veo-tag {
  background: rgba(0,212,255,0.2);
  color: var(--cyan);
  padding: 1px 6px;
  border-radius: 2px;
  font-size: 8px;
}
.sp-seedance-tag {
  background: rgba(153,51,255,0.2);
  color: #9933ff;
  padding: 1px 6px;
  border-radius: 2px;
  font-size: 8px;
}
.sp-prompt-text {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ── Production Structure ── */
.sp-structure-block {
  background: #0b0b14;
  border-top: 2px solid rgba(0,212,255,0.15);
  padding: 50px 60px;
}
.sp-structure-title {
  font-family: var(--font-title);
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 28px;
}
.sp-structure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 8px;
  margin-bottom: 32px;
}
.sp-struct-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(0,212,255,0.08);
  border-radius: 4px;
  padding: 12px 16px;
}
.sp-struct-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--cyan);
  white-space: nowrap;
  min-width: 80px;
}
.sp-struct-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--silver);
  line-height: 1.5;
}
.sp-motif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sp-motif-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: 6px;
  padding: 20px;
}
.sp-motif-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-bottom: 14px;
}
.sp-motif-item {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--silver);
  line-height: 1.6;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sp-motif-item:last-child { border-bottom: none; }
.sp-motif-cyan { color: rgba(0,212,255,0.9); }
.sp-motif-red  { color: rgba(220,38,38,0.9); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .sp-shot-card { grid-template-columns: 1fr; }
  .sp-shot-img-panel { min-height: 220px; }
  .sp-hero, .sp-global-notes, .sp-shots-grid,
  .sp-scene-header, .sp-structure-block { padding-left: 20px; padding-right: 20px; }
  .sp-scene-nav { padding-left: 20px; padding-right: 20px; }
  .sp-motif-grid { grid-template-columns: 1fr; }
}


/* Multi-page navigation refinements */
.topbar-nav a.active {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(0,212,255,0.45);
}
.page-jumpbar {
  position: sticky;
  top: 72px;
  z-index: 900;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  padding: 10px 60px;
  background: rgba(4,8,15,0.94);
  border-bottom: 1px solid rgba(0,212,255,0.16);
  backdrop-filter: blur(10px);
}
.page-jumpbar a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--silver);
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid rgba(0,212,255,0.14);
  background: rgba(0,212,255,0.04);
}
.page-jumpbar a:hover { color: var(--cyan); border-color: rgba(0,212,255,0.5); }

@media (max-width: 1280px) {
  .topbar {
    padding: 0 24px;
  }

  .topbar-nav {
    gap: 20px;
  }

  .topbar-right {
    display: none;
  }
}

.series-structure-section {
  padding: 60px;
  background:
    linear-gradient(180deg, rgba(12,20,32,0.96), rgba(5,8,15,0.98)),
    var(--dark3);
  border-bottom: 1px solid rgba(0,212,255,0.12);
  scroll-margin-top: 110px;
}

.episode-link-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
  margin-top: 38px;
}

.episode-link-card {
  min-height: 172px;
  padding: 20px;
  background: rgba(16,28,44,0.9);
  border: 1px solid rgba(0,212,255,0.08);
  border-top: 3px solid rgba(160,184,204,0.28);
  color: var(--silver);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.episode-link-card:hover {
  transform: translateY(-2px);
  background: rgba(19,35,54,0.98);
  border-color: rgba(0,212,255,0.34);
}

.episode-link-card span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.episode-link-card strong {
  font-family: var(--font-title);
  font-size: 15px;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 10px;
}

.episode-link-card em {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--silver);
  font-style: normal;
}

.episode-link-card.cyan { border-top-color: var(--cyan); }
.episode-link-card.cyan span { color: var(--cyan); }
.episode-link-card.red { border-top-color: rgba(255,34,68,0.72); }
.episode-link-card.red span { color: rgba(255,34,68,0.78); }
.episode-link-card.mixed { border-top-color: rgba(153,51,255,0.72); }
.episode-link-card.mixed span { color: rgba(153,51,255,0.86); }
.episode-link-card.gold { border-top-color: rgba(200,168,75,0.78); }
.episode-link-card.gold span { color: rgba(200,168,75,0.9); }
.episode-link-card.violet { border-top-color: rgba(153,51,255,0.92); }
.episode-link-card.violet span { color: rgba(153,51,255,0.92); }

@media (max-width: 980px) {
  .topbar {
    min-height: 82px;
    height: auto;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 10px 18px;
  }
  .topbar-left { min-width: 100%; }
  .topbar-nav { width: 100%; gap: 18px; overflow-x: auto; padding-bottom: 3px; }
  .topbar-right { display: none; }
  .main { padding-top: 112px; }
  .page-jumpbar { top: 112px; padding: 9px 20px; overflow-x: auto; flex-wrap: nowrap; }
  .characters-section, .locations-section, .scene-section, .timeline-section { padding-left: 24px; padding-right: 24px; }
  .char-grid, .loc-grid { grid-template-columns: 1fr; }
  .loc-card[style] { grid-column: auto !important; }
  .series-structure-section { padding: 44px 24px; }
  .episode-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .main {
    padding-top: 78px;
  }

  .page-jumpbar {
    top: 78px;
  }
}

/* Readability pass: larger text and screenplay image-first layout */
.section-desc,
.scene-desc,
.char-desc {
  font-size: 16px;
  line-height: 1.8;
}

.char-stat-label,
.loc-label,
.timeline-time,
.sp-scene-nav-label {
  font-size: 11px;
}

.char-stat-value,
.loc-sub,
.timeline-card-sub {
  font-size: 14px;
  line-height: 1.65;
}

.sp-global-notes {
  padding: 56px 60px 42px;
}

.sp-notes-title {
  font-size: 14px;
  letter-spacing: 5px;
  margin-bottom: 28px;
}

.sp-notes-grid {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 18px;
}

.sp-note-card {
  padding: 24px;
}

.sp-note-card-title {
  font-size: 13px;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}

.sp-note-card-body,
.sp-note-card-body[style] {
  font-size: 15px !important;
  line-height: 1.85 !important;
}

.sp-scene-nav {
  padding-top: 22px;
  padding-bottom: 22px;
}

.sp-nav-pill {
  font-size: 12px;
  padding: 7px 13px;
}

.sp-scene-number,
.sp-scene-timing,
.sp-shot-count {
  font-size: 12px;
}

.sp-scene-title {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.2;
}

.sp-scene-location {
  font-size: 13px;
}

.sp-scene-goal {
  font-size: 16px;
  line-height: 1.75;
  max-width: 980px;
}

.sp-shots-grid {
  gap: 30px;
}

.sp-shot-card {
  grid-template-columns: minmax(520px, 3fr) minmax(420px, 2fr);
}

.sp-shot-img-panel {
  min-height: 560px;
}

.sp-shot-img-panel img {
  object-fit: contain;
  object-position: center center;
  background: #02050a;
}

.sp-shot-card:hover .sp-shot-img-panel img {
  transform: none;
}

.sp-shot-badge,
.sp-shot-duration {
  font-size: 11px;
  padding: 5px 10px;
}

.sp-shot-info-panel {
  padding: 28px 32px;
  gap: 18px;
}

.sp-shot-title {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.25;
}

.sp-drehbuch-block {
  padding: 16px 18px;
}

.sp-block-label {
  font-size: 10px;
  margin-bottom: 9px;
}

.sp-drehbuch-text {
  font-size: 15px;
  line-height: 1.75;
}

.sp-prompt-block {
  padding: 18px 20px;
}

.sp-prompt-label,
.sp-prompt-label[style] {
  font-size: 11px !important;
  line-height: 1.4 !important;
}

.sp-veo-tag,
.sp-seedance-tag,
.sp-prompt-label span {
  font-size: 10px !important;
}

.sp-prompt-text,
.sp-prompt-text[style] {
  font-size: 13px !important;
  line-height: 1.75 !important;
  color: rgba(255,255,255,0.82) !important;
}

.sp-structure-title {
  font-size: 24px;
}

.sp-struct-time,
.sp-motif-title {
  font-size: 12px;
}

.sp-struct-desc,
.sp-motif-item {
  font-size: 15px;
  line-height: 1.7;
}

@media (min-width: 1600px) {
  .sp-shot-card {
    grid-template-columns: minmax(680px, 3fr) minmax(480px, 2fr);
  }

  .sp-shot-img-panel {
    min-height: 620px;
  }
}

@media (max-width: 1200px) {
  .sp-notes-grid {
    grid-template-columns: 1fr;
  }

  .sp-shot-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .sp-shot-img-panel {
    min-height: 420px;
  }

  .sp-shot-info-panel {
    border-left: 0;
    border-top: 1px solid rgba(0,212,255,0.08);
  }
}

@media (max-width: 720px) {
  .sp-global-notes,
  .sp-shots-grid,
  .sp-scene-header,
  .sp-structure-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sp-note-card-body,
  .sp-note-card-body[style],
  .sp-drehbuch-text,
  .sp-struct-desc,
  .sp-motif-item {
    font-size: 14px !important;
  }

.sp-prompt-text,
.sp-prompt-text[style] {
  font-size: 12px !important;
}
}

/* Screenplay: script text sits above the visual reference */
.sp-shot-card {
  grid-template-columns: minmax(520px, 3fr) minmax(420px, 2fr);
  grid-template-rows: auto minmax(360px, 1fr);
  grid-template-areas:
    "script prompts"
    "image prompts";
  align-items: stretch;
}

.sp-shot-script-panel {
  grid-area: script;
  padding: 30px 32px 24px;
  background:
    linear-gradient(180deg, rgba(9,16,27,0.98), rgba(4,8,15,0.98)),
    repeating-linear-gradient(0deg, rgba(0,212,255,0.025) 0 1px, transparent 1px 7px);
  border-bottom: 1px solid rgba(0,212,255,0.14);
  border-right: 1px solid rgba(0,212,255,0.08);
}

.sp-shot-script-panel .sp-shot-title {
  margin-bottom: 18px;
}

.sp-shot-script-panel .sp-drehbuch-block {
  margin: 0;
}

.sp-shot-img-panel {
  grid-area: image;
  min-height: clamp(360px, 34vw, 520px);
}

.sp-shot-info-panel {
  grid-area: prompts;
  min-width: 0;
  border-left: 1px solid rgba(0,212,255,0.12);
  background:
    linear-gradient(180deg, rgba(11,18,30,0.98), rgba(5,8,15,0.98)),
    repeating-linear-gradient(0deg, rgba(0,212,255,0.025) 0 1px, transparent 1px 7px);
}

.sp-shot-info-panel .sp-prompt-block:first-child {
  margin-top: 0;
}

@media (min-width: 1600px) {
  .sp-shot-card {
    grid-template-columns: minmax(680px, 3fr) minmax(480px, 2fr);
  }

  .sp-shot-img-panel {
    min-height: clamp(420px, 33vw, 620px);
  }
}

@media (max-width: 1200px) {
  .sp-shot-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "script"
      "image"
      "prompts";
  }

  .sp-shot-script-panel {
    border-right: 0;
  }

  .sp-shot-info-panel {
    border-left: 0;
    border-top: 1px solid rgba(0,212,255,0.12);
  }
}

@media (max-width: 720px) {
  .sp-shot-script-panel,
  .sp-shot-info-panel {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Series page */
.series-hero {
  min-height: clamp(650px, 84vh, 880px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 980px);
  align-items: end;
  justify-content: start;
  padding: 92px 60px 72px;
  overflow: hidden;
  background: var(--dark);
}

.series-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/header/ChatGPT%20Image%2029.%20Mai%202026%2C%2006_39_52.webp');
  background-size: cover;
  background-position: center center;
  filter: brightness(0.9) saturate(1.08) contrast(1.04);
}

.series-hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 58%, rgba(0,212,255,0.2), transparent 28%),
    radial-gradient(circle at 54% 35%, rgba(153,51,255,0.17), transparent 24%),
    radial-gradient(circle at 86% 54%, rgba(255,34,68,0.18), transparent 30%),
    linear-gradient(90deg, rgba(4,8,15,0.72) 0%, rgba(4,8,15,0.26) 46%, rgba(4,8,15,0.48) 100%),
    linear-gradient(180deg, rgba(4,8,15,0.08) 0%, rgba(4,8,15,0.14) 52%, rgba(4,8,15,0.82) 100%);
}

.series-hero-content {
  position: relative;
  z-index: 1;
}

.series-hero-content {
  max-width: 960px;
}

.series-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: 5px;
  color: var(--white);
  text-shadow: 0 0 54px rgba(0,212,255,0.26), 0 4px 26px rgba(0,0,0,0.72);
  margin: 18px 0 26px;
}

.series-hero-content p {
  max-width: 760px;
  font-size: clamp(19px, 2.1vw, 27px);
  line-height: 1.55;
  color: rgba(232,244,255,0.84);
  border-left: 3px solid rgba(0,212,255,0.68);
  padding-left: 22px;
  text-shadow: 0 3px 18px rgba(0,0,0,0.78);
}

.series-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.series-hero-meta span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--white);
  padding: 8px 12px;
  border: 1px solid rgba(0,212,255,0.22);
  background: rgba(0,212,255,0.07);
}

.series-section {
  padding: 72px 60px;
  background:
    linear-gradient(180deg, rgba(8,14,24,0.98), rgba(4,8,15,1)),
    var(--dark2);
  border-top: 1px solid rgba(0,212,255,0.1);
}

.series-section-head {
  padding: 0;
  border: 0;
  background: none;
  margin-bottom: 36px;
}

.series-pilot .series-section-head {
  max-width: 1220px;
  margin-bottom: 46px;
  padding-left: 22px;
  border-left: 3px solid rgba(0,212,255,0.88);
  position: relative;
}

.series-pilot .series-section-head::after {
  content: '';
  display: block;
  width: min(520px, 42vw);
  height: 1px;
  margin-top: 26px;
  background: linear-gradient(90deg, rgba(0,212,255,0.74), rgba(255,34,68,0.5), transparent);
  box-shadow: 0 0 28px rgba(0,212,255,0.26);
}

.series-pilot .section-tag {
  font-size: 12px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.series-pilot .section-title {
  font-size: clamp(46px, 5.6vw, 82px);
  line-height: 0.98;
  letter-spacing: 2px;
  max-width: 1180px;
  margin-bottom: 22px;
  text-shadow: 0 0 26px rgba(0,212,255,0.14), 0 8px 34px rgba(0,0,0,0.68);
}

.series-section-head .section-desc {
  max-width: 1060px;
}

.series-pilot .section-desc {
  max-width: 1160px;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(220,238,255,0.86);
}

.series-pilot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.series-story-panel {
  min-height: 360px;
  padding: 34px 32px 36px;
  border: 1px solid rgba(0,212,255,0.18);
  background:
    radial-gradient(circle at 18% 0%, rgba(0,212,255,0.16), transparent 34%),
    linear-gradient(180deg, rgba(10,18,30,0.98), rgba(5,9,16,0.99)),
    repeating-linear-gradient(0deg, rgba(0,212,255,0.03) 0 1px, transparent 1px 8px);
  box-shadow: 0 22px 70px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.045);
  position: relative;
  overflow: hidden;
}

.series-story-panel.red {
  border-color: rgba(255,34,68,0.22);
  background:
    radial-gradient(circle at 18% 0%, rgba(255,34,68,0.16), transparent 34%),
    linear-gradient(180deg, rgba(12,14,24,0.98), rgba(5,9,16,0.99)),
    repeating-linear-gradient(0deg, rgba(255,34,68,0.026) 0 1px, transparent 1px 8px);
}

.series-story-panel.violet {
  border-color: rgba(153,51,255,0.24);
  background:
    radial-gradient(circle at 18% 0%, rgba(153,51,255,0.18), transparent 34%),
    linear-gradient(180deg, rgba(12,12,26,0.98), rgba(5,9,16,0.99)),
    repeating-linear-gradient(0deg, rgba(153,51,255,0.028) 0 1px, transparent 1px 8px);
}

.series-story-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent 72%);
  box-shadow: 0 0 22px rgba(0,212,255,0.34);
}

.series-story-panel.red::before {
  background: linear-gradient(90deg, var(--red), transparent 72%);
  box-shadow: 0 0 22px rgba(255,34,68,0.3);
}

.series-story-panel.violet::before {
  background: linear-gradient(90deg, var(--violet), transparent 72%);
  box-shadow: 0 0 22px rgba(153,51,255,0.34);
}

.series-story-panel::after {
  content: '';
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(0,212,255,0.12);
  background:
    linear-gradient(90deg, transparent 48%, rgba(0,212,255,0.16) 50%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(0,212,255,0.16) 50%, transparent 52%);
  opacity: 0.28;
  pointer-events: none;
}

.series-panel-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(0,212,255,0.16);
}

.series-panel-head span {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0,212,255,0.38);
  background: rgba(0,212,255,0.09);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--cyan);
  box-shadow: inset 0 0 24px rgba(0,212,255,0.07);
}

.series-panel-head h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1.02;
  letter-spacing: 1.5px;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0,212,255,0.14);
}

.series-story-panel.red .series-panel-head {
  border-bottom-color: rgba(255,34,68,0.2);
}

.series-story-panel.red .series-panel-head span {
  border-color: rgba(255,34,68,0.42);
  background: rgba(255,34,68,0.09);
  color: var(--red);
}

.series-story-panel.violet .series-panel-head {
  border-bottom-color: rgba(153,51,255,0.24);
}

.series-story-panel.violet .series-panel-head span {
  border-color: rgba(153,51,255,0.48);
  background: rgba(153,51,255,0.1);
  color: var(--violet);
}

.series-story-panel p,
.series-community-panel p,
.series-note-grid p {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(232,244,255,0.82);
}

.series-story-panel p {
  font-size: 19px;
  line-height: 1.9;
  color: rgba(232,244,255,0.88);
  position: relative;
  z-index: 1;
}

.series-location-strip {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.series-location-strip figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0,212,255,0.15);
  background: var(--dark3);
}

.series-location-strip img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.82) saturate(0.95);
}

.series-location-strip figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--white);
  background: rgba(4,8,15,0.76);
  border: 1px solid rgba(0,212,255,0.2);
  padding: 7px 10px;
}

.series-episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.series-episode-card {
  min-height: 0;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(12,20,32,0.98), rgba(5,9,16,0.98)),
    var(--dark3);
  border-top: 3px solid rgba(0,212,255,0.78);
  border-left: 1px solid rgba(0,212,255,0.08);
  border-right: 1px solid rgba(0,212,255,0.08);
  border-bottom: 1px solid rgba(0,212,255,0.08);
  overflow: hidden;
}

.series-episode-card.red {
  border-top-color: rgba(255,34,68,0.78);
}

.series-episode-card.gold {
  border-top-color: rgba(200,168,75,0.88);
}

.series-episode-card.violet {
  border-top-color: rgba(153,51,255,0.86);
}

.series-episode-media {
  margin: 0;
  border-bottom: 1px solid rgba(0,212,255,0.14);
  background: var(--dark);
  overflow: hidden;
}

.series-episode-media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.86) saturate(0.98) contrast(1.04);
}

.series-episode-card span {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--cyan);
  margin: 22px 24px 10px;
}

.series-episode-card.red span {
  color: var(--red);
}

.series-episode-card.gold span {
  color: var(--gold);
}

.series-episode-card.violet span {
  color: var(--violet);
}

.series-image-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(232,244,255,0.56);
  margin: 0 24px 14px;
}

.series-episode-card h2,
.series-community-panel h2,
.series-note-grid h2 {
  font-family: var(--font-title);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.18;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 18px;
}

.series-episode-card h2 {
  margin-left: 24px;
  margin-right: 24px;
}

.series-episode-card p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--silver);
  margin-left: 24px;
  margin-right: 24px;
  padding-bottom: 28px;
}

.series-character {
  background:
    radial-gradient(circle at 78% 20%, rgba(153,51,255,0.18), transparent 34%),
    radial-gradient(circle at 16% 72%, rgba(0,212,255,0.09), transparent 34%),
    linear-gradient(180deg, rgba(5,8,16,1), rgba(8,12,24,1));
}

.series-character-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  gap: 30px;
  align-items: stretch;
}

.series-character-sheet {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(153,51,255,0.28);
  background: rgba(8,14,24,0.94);
}

.series-character-sheet img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.9) saturate(0.92) contrast(1.03);
}

.series-character-copy {
  border: 1px solid rgba(153,51,255,0.3);
  background:
    linear-gradient(135deg, rgba(153,51,255,0.11), rgba(0,212,255,0.045)),
    repeating-linear-gradient(0deg, rgba(153,51,255,0.035) 0 1px, transparent 1px 9px),
    rgba(8,14,24,0.94);
  padding: 36px;
  box-shadow: inset 0 0 48px rgba(153,51,255,0.08);
}

.series-character-copy h2 {
  font-family: var(--font-title);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: 3px;
  color: var(--white);
  margin: 16px 0 22px;
}

.series-character-copy p {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(232,244,255,0.84);
}

.series-character-copy p + p {
  margin-top: 14px;
}

.series-character-copy blockquote {
  margin: 26px 0 0;
  padding: 18px 20px;
  border-left: 3px solid rgba(153,51,255,0.78);
  background: rgba(153,51,255,0.07);
  font-size: 18px;
  line-height: 1.7;
  color: var(--white);
  font-style: italic;
}

.series-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}

.series-profile-grid span {
  min-height: 64px;
  border: 1px solid rgba(153,51,255,0.2);
  background: rgba(4,8,15,0.52);
  padding: 11px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.4px;
  color: rgba(232,244,255,0.8);
}

.series-profile-grid strong {
  display: block;
  color: rgba(153,51,255,0.95);
  margin-bottom: 7px;
  letter-spacing: 2px;
}

.series-abilities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.series-abilities-grid article {
  border: 1px solid rgba(153,51,255,0.18);
  background: rgba(8,14,24,0.76);
  padding: 18px;
}

.series-abilities-grid span,
.series-world-axis span,
.series-world-arc-grid span {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--violet);
  margin-bottom: 12px;
}

.series-abilities-grid strong,
.series-world-arc-grid strong {
  display: block;
  font-family: var(--font-title);
  font-size: 17px;
  line-height: 1.28;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 10px;
}

.series-abilities-grid p,
.series-world-axis p,
.series-world-arc-grid p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(232,244,255,0.72);
}

.series-new-world {
  background:
    radial-gradient(circle at 76% 28%, rgba(153,51,255,0.18), transparent 34%),
    radial-gradient(circle at 18% 72%, rgba(0,212,255,0.1), transparent 32%),
    linear-gradient(180deg, rgba(5,9,18,1), rgba(8,12,24,1));
}

.series-new-world-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.72fr);
  gap: 30px;
  align-items: stretch;
}

.series-new-world-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(153,51,255,0.26);
  background: var(--dark3);
}

.series-new-world-grid figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,8,15,0.08), rgba(4,8,15,0.28)),
    linear-gradient(0deg, rgba(4,8,15,0.58), transparent 48%);
}

.series-new-world-grid img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.86) saturate(1.08) contrast(1.04);
}

.series-new-world-copy {
  border: 1px solid rgba(153,51,255,0.28);
  background:
    linear-gradient(135deg, rgba(153,51,255,0.12), rgba(0,212,255,0.055)),
    rgba(8,14,24,0.92);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: inset 0 0 42px rgba(153,51,255,0.08);
}

.series-new-world-copy h2 {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.12;
  letter-spacing: 2px;
  color: var(--white);
  margin: 16px 0 22px;
}

.series-new-world-copy p {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(232,244,255,0.82);
}

.series-new-world-copy p + p {
  margin-top: 14px;
}

.series-world-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.series-world-flags span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--white);
  border: 1px solid rgba(153,51,255,0.32);
  background: rgba(153,51,255,0.08);
  padding: 8px 10px;
}

.series-world-axis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.series-world-axis article {
  border: 1px solid rgba(153,51,255,0.18);
  background:
    linear-gradient(180deg, rgba(12,20,34,0.92), rgba(5,9,16,0.96)),
    rgba(8,14,24,0.86);
  padding: 22px;
}

.series-world-axis h3 {
  font-family: var(--font-title);
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 12px;
}

.series-world-arc {
  margin-top: 28px;
  border: 1px solid rgba(0,212,255,0.14);
  background:
    radial-gradient(circle at 12% 0%, rgba(0,212,255,0.09), transparent 38%),
    rgba(4,8,15,0.58);
  padding: 26px;
}

.series-world-arc-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.series-world-arc-grid article {
  border-left: 2px solid rgba(153,51,255,0.44);
  background: rgba(8,14,24,0.76);
  padding: 16px;
}

.series-world-arc-grid span {
  color: var(--cyan);
}

.series-community {
  background:
    radial-gradient(circle at 18% 20%, rgba(0,212,255,0.1), transparent 30%),
    radial-gradient(circle at 82% 30%, rgba(255,34,68,0.09), transparent 32%),
    var(--dark);
}

.series-community-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  gap: 34px;
  align-items: center;
  border: 1px solid rgba(0,212,255,0.2);
  background:
    linear-gradient(135deg, rgba(0,212,255,0.06), rgba(255,34,68,0.045)),
    rgba(8,14,24,0.92);
  padding: 38px;
}

.series-community-panel p + p,
.series-note-grid p + p {
  margin-top: 14px;
}

.series-vote-options {
  display: grid;
  gap: 12px;
}

.series-vote-options button {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--white);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.28);
  padding: 16px 14px;
  cursor: default;
}

.series-vote-options button + button {
  background: rgba(200,168,75,0.08);
  border-color: rgba(200,168,75,0.32);
}

.series-vote-options button:last-child {
  background: rgba(153,51,255,0.1);
  border-color: rgba(153,51,255,0.36);
}

.series-donate {
  padding-top: 0;
  background:
    linear-gradient(180deg, rgba(255,34,68,0.045), transparent 34%),
    var(--dark);
}

.series-donate-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 28px;
  align-items: stretch;
  border: 1px solid rgba(0,212,255,0.24);
  border-left: 3px solid var(--cyan);
  background:
    linear-gradient(135deg, rgba(0,212,255,0.075), rgba(255,34,68,0.055) 54%, rgba(200,168,75,0.035)),
    rgba(5,10,18,0.94);
  box-shadow: 0 24px 80px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.045);
  position: relative;
  overflow: hidden;
}

.series-donate-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0, rgba(0,212,255,0.05) 48%, transparent 58%),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.035) 0, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 7px);
  opacity: 0.36;
  pointer-events: none;
}

.series-donate-copy,
.series-donate-console {
  position: relative;
  z-index: 1;
}

.series-donate-copy {
  padding: 34px 38px 36px;
}

.series-donate-copy h2 {
  font-family: var(--font-title);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 2px;
  color: var(--white);
  margin: 0 0 18px;
  text-transform: uppercase;
}

.series-donate-copy p {
  max-width: 780px;
  color: rgba(207,226,245,0.88);
  font-size: 17px;
  line-height: 1.8;
}

.series-donate-copy p + p {
  margin-top: 12px;
  color: rgba(207,226,245,0.72);
}

.series-donate-console {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 30px;
  border-left: 1px solid rgba(0,212,255,0.18);
  background:
    radial-gradient(circle at 50% 20%, rgba(0,212,255,0.16), transparent 46%),
    rgba(2,6,12,0.56);
}

.series-donate-readout {
  border: 1px solid rgba(0,212,255,0.24);
  background: rgba(0,0,0,0.22);
  padding: 18px;
}

.series-donate-readout span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.4px;
  color: var(--cyan);
  margin-bottom: 8px;
}

.series-donate-readout strong {
  display: block;
  font-family: var(--font-title);
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--white);
}

.series-donate-meter {
  height: 8px;
  border: 1px solid rgba(0,212,255,0.24);
  background: rgba(0,0,0,0.42);
  padding: 2px;
}

.series-donate-meter span {
  display: block;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), rgba(200,168,75,0.95), var(--red));
  box-shadow: 0 0 22px rgba(0,212,255,0.34);
}

.series-donate-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(0,212,255,0.5);
  background:
    linear-gradient(135deg, rgba(0,212,255,0.28), rgba(24,74,150,0.34)),
    rgba(0,0,0,0.28);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(0,212,255,0.16), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.series-donate-button:hover,
.series-donate-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(200,168,75,0.82);
  box-shadow: 0 0 34px rgba(200,168,75,0.18), 0 0 46px rgba(0,212,255,0.18);
  outline: none;
}

.series-donate-note {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 1.4px;
  color: rgba(147,171,195,0.82);
  text-transform: uppercase;
}

.series-design-note {
  padding-bottom: 92px;
}

.series-note-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
}

.series-note-grid figure {
  margin: 0;
  border: 1px solid rgba(0,212,255,0.16);
  background: var(--dark3);
  overflow: hidden;
}

.series-note-grid img {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.88) saturate(0.95);
}

@media (max-width: 1280px) {
  .series-community-panel,
  .series-donate-panel,
  .series-note-grid,
  .series-new-world-grid,
  .series-character-grid {
    grid-template-columns: 1fr;
  }

  .series-pilot-grid,
  .series-location-strip {
    grid-template-columns: 1fr;
  }

  .series-episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .series-abilities-grid,
  .series-world-arc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .series-hero,
  .series-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .series-episode-grid,
  .series-abilities-grid,
  .series-world-axis,
  .series-world-arc-grid,
  .series-profile-grid {
    grid-template-columns: 1fr;
  }

  .series-community-panel {
    padding: 24px;
  }

  .series-donate-copy,
  .series-donate-console {
    padding: 24px;
  }

  .series-donate-console {
    border-left: 0;
    border-top: 1px solid rgba(0,212,255,0.18);
  }

  .series-new-world-copy {
    padding: 24px;
  }

  .series-character-copy {
    padding: 24px;
  }

  .series-character-sheet img,
  .series-new-world-grid img {
    min-height: 300px;
  }
}

/* Video production page */
.video-hero {
  min-height: clamp(620px, 82vh, 860px);
  position: relative;
  display: grid;
  align-items: end;
  padding: 96px 60px 78px;
  overflow: hidden;
  background: var(--dark);
  border-bottom: 1px solid rgba(153,51,255,0.28);
}

.video-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/header/ChatGPT%20Image%204.%20Juni%202026%2C%2001_32_55%20%282%29.webp');
  background-size: cover;
  background-position: center center;
  filter: brightness(0.9) saturate(1.08) contrast(1.05);
}

.video-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,8,15,0.74) 0%, rgba(4,8,15,0.22) 45%, rgba(4,8,15,0.44) 100%),
    linear-gradient(180deg, rgba(4,8,15,0.04) 0%, rgba(4,8,15,0.1) 52%, rgba(4,8,15,0.82) 100%);
}

.video-hero-content {
  position: relative;
  z-index: 1;
  max-width: 950px;
}

.video-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 5px;
  color: var(--white);
  text-shadow: 0 0 54px rgba(153,51,255,0.34), 0 0 36px rgba(0,212,255,0.18), 0 4px 26px rgba(0,0,0,0.72);
  margin: 18px 0 24px;
}

.video-hero p {
  max-width: 820px;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.55;
  color: rgba(232,244,255,0.86);
  border-left: 3px solid rgba(153,51,255,0.72);
  padding-left: 22px;
  text-shadow: 0 3px 18px rgba(0,0,0,0.78);
}

.video-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.video-hero-meta span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--white);
  padding: 8px 12px;
  border: 1px solid rgba(153,51,255,0.28);
  background: rgba(153,51,255,0.09);
}

.video-hero-actions {
  margin-top: 28px;
}

.video-section {
  padding: 72px 60px;
  background:
    linear-gradient(180deg, rgba(8,14,24,0.98), rgba(4,8,15,1)),
    var(--dark2);
  border-top: 1px solid rgba(0,212,255,0.1);
}

.video-section-head {
  padding: 0;
  border: 0;
  background: none;
  margin-bottom: 34px;
}

.vp-raw-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vp-raw-card {
  border: 1px solid rgba(0,212,255,0.2);
  background:
    linear-gradient(180deg, rgba(12,20,32,0.95), rgba(5,8,15,0.98)),
    var(--dark3);
  box-shadow: 0 22px 55px rgba(0,0,0,0.32);
}

.vp-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-bottom: 1px solid rgba(0,212,255,0.18);
}

.vp-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.vp-raw-watermark {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--white);
  padding: 7px 9px;
  border: 1px solid rgba(255,42,85,0.48);
  background: rgba(255,42,85,0.22);
  pointer-events: none;
}

.vp-raw-copy {
  padding: 22px;
}

.vp-shot-meta,
.vp-shot-code,
.vp-shot-duration,
.vp-shot-state,
.vp-shot-action,
.vp-status-pill {
  font-family: var(--font-mono);
  letter-spacing: 1.6px;
}

.vp-shot-meta {
  font-size: 10px;
  color: rgba(0,212,255,0.72);
  margin-bottom: 10px;
}

.vp-raw-copy h3 {
  font-family: var(--font-title);
  font-size: clamp(18px, 2vw, 25px);
  letter-spacing: 1.5px;
  color: var(--white);
  margin: 0 0 12px;
}

.vp-raw-copy p {
  color: rgba(198,221,242,0.8);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 18px;
}

.vp-status-pill {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  padding: 7px 9px;
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--cyan);
  background: rgba(0,212,255,0.08);
}

.vp-status-pill.raw {
  border-color: rgba(255,42,85,0.42);
  color: rgba(255,96,125,0.95);
  background: rgba(255,42,85,0.08);
}

.video-board-section {
  background:
    linear-gradient(180deg, rgba(4,8,15,1), rgba(8,14,24,0.98)),
    var(--dark);
}

.vp-board-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.vp-board-header h2 {
  font-family: var(--font-title);
  font-size: clamp(34px, 4.6vw, 68px);
  letter-spacing: 4px;
  color: var(--white);
  margin: 12px 0 14px;
}

.vp-board-header p {
  max-width: 820px;
  color: rgba(198,221,242,0.82);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.vp-filterbar {
  display: inline-flex;
  border: 1px solid rgba(0,212,255,0.2);
  background: rgba(0,212,255,0.04);
}

.vp-filterbar button {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--silver);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(0,212,255,0.14);
  padding: 11px 13px;
  cursor: pointer;
}

.vp-filterbar button:last-child {
  border-right: 0;
}

.vp-filterbar button:hover,
.vp-filterbar button.is-active {
  color: var(--cyan);
  background: rgba(0,212,255,0.12);
}

.vp-status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(0,212,255,0.18);
  margin-bottom: 24px;
  background: rgba(0,212,255,0.045);
}

.vp-status-strip div {
  padding: 22px;
  border-right: 1px solid rgba(0,212,255,0.12);
}

.vp-status-strip div:last-child {
  border-right: 0;
}

.vp-status-strip strong {
  display: block;
  font-family: var(--font-title);
  font-size: 46px;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 2px;
}

.vp-status-strip span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(0,212,255,0.72);
}

.vp-scene-board {
  display: grid;
  gap: 18px;
}

.vp-scene-block {
  border: 1px solid rgba(0,212,255,0.18);
  background:
    linear-gradient(180deg, rgba(13,22,34,0.92), rgba(5,8,15,0.98)),
    var(--dark3);
}

.vp-scene-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-bottom: 1px solid rgba(0,212,255,0.12);
}

.vp-scene-head h3 {
  font-family: var(--font-title);
  font-size: clamp(22px, 2.5vw, 34px);
  color: var(--white);
  letter-spacing: 2px;
  margin: 0 0 8px;
}

.vp-scene-head p {
  color: rgba(198,221,242,0.78);
  font-size: 15px;
  margin: 0;
}

.vp-scene-counter {
  min-width: 112px;
  text-align: right;
  font-family: var(--font-title);
  font-size: 30px;
  color: var(--cyan);
  letter-spacing: 2px;
}

.vp-scene-counter span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.8px;
  color: rgba(160,184,204,0.68);
}

.vp-shot-list {
  display: grid;
}

.vp-shot-row {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 72px 170px 112px;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(0,212,255,0.08);
  overflow: hidden;
}

.vp-shot-row > * {
  position: relative;
  z-index: 1;
}

.vp-shot-row:last-child {
  border-bottom: 0;
}

.vp-shot-row.is-raw {
  background:
    linear-gradient(90deg, rgba(0,212,255,0.24) 0%, rgba(0,212,255,0.11) 38%, rgba(0,212,255,0.025) 76%),
    linear-gradient(180deg, rgba(11,31,43,0.96), rgba(5,14,22,0.96));
  box-shadow:
    inset 0 1px 0 rgba(139,232,255,0.18),
    inset 0 -1px 0 rgba(0,212,255,0.16),
    0 0 26px rgba(0,212,255,0.08);
}

.vp-shot-row.is-raw::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(232,244,255,0.86), var(--cyan), rgba(0,153,187,0.72));
  box-shadow: 0 0 18px rgba(0,212,255,0.82), 0 0 42px rgba(0,212,255,0.36);
}

.vp-shot-row.is-raw::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 50%, rgba(0,212,255,0.22), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,0.08), transparent 22%);
  opacity: 0.72;
}

.vp-shot-row.is-pending {
  background: linear-gradient(90deg, rgba(153,51,255,0.055), transparent 70%);
}

.vp-shot-code {
  font-size: 10px;
  color: rgba(0,212,255,0.76);
}

.vp-shot-row.is-raw .vp-shot-code {
  color: rgba(139,232,255,0.98);
  text-shadow: 0 0 12px rgba(0,212,255,0.68);
}

.vp-shot-title {
  color: rgba(232,244,255,0.92);
  font-size: 15px;
  line-height: 1.35;
}

.vp-shot-row.is-raw .vp-shot-title {
  color: var(--white);
  text-shadow: 0 0 16px rgba(0,212,255,0.2);
}

.vp-shot-duration {
  font-size: 10px;
  color: rgba(160,184,204,0.72);
}

.vp-shot-row.is-raw .vp-shot-duration {
  color: rgba(214,245,255,0.92);
}

.vp-shot-state {
  font-size: 9px;
  color: rgba(160,184,204,0.76);
}

.vp-shot-row.is-raw .vp-shot-state {
  color: var(--cyan);
  text-shadow: 0 0 14px rgba(0,212,255,0.72);
}

.vp-shot-action a,
.vp-shot-action span {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-decoration: none;
  color: var(--silver);
  border: 1px solid rgba(0,212,255,0.16);
  padding: 7px 8px;
  background: rgba(0,212,255,0.04);
}

.vp-shot-action a:hover {
  color: var(--cyan);
  border-color: rgba(0,212,255,0.5);
  background: rgba(0,212,255,0.1);
}

.vp-shot-row.is-raw .vp-shot-action a {
  color: var(--white);
  border-color: rgba(0,212,255,0.64);
  background:
    linear-gradient(180deg, rgba(0,212,255,0.2), rgba(0,117,150,0.1)),
    rgba(0,212,255,0.08);
  box-shadow:
    0 0 18px rgba(0,212,255,0.2),
    inset 0 1px 0 rgba(232,244,255,0.16);
}

.vp-shot-row.is-raw .vp-shot-action a:hover {
  color: var(--dark);
  border-color: rgba(139,232,255,0.98);
  background: linear-gradient(180deg, rgba(139,232,255,0.96), rgba(0,212,255,0.72));
  box-shadow:
    0 0 26px rgba(0,212,255,0.46),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

.vp-shot-action span {
  color: rgba(160,184,204,0.54);
}

@media (max-width: 1100px) {
  .vp-raw-grid {
    grid-template-columns: 1fr;
  }

  .vp-board-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .vp-shot-row {
    grid-template-columns: 90px minmax(0, 1fr) 70px;
  }

  .vp-shot-state,
  .vp-shot-action {
    grid-column: 2 / -1;
  }
}

@media (max-width: 720px) {
  .video-hero,
  .video-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .video-hero {
    min-height: 560px;
  }

  .video-hero-meta,
  .vp-filterbar {
    width: 100%;
  }

  .vp-filterbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vp-filterbar button {
    border-right: 0;
    border-bottom: 1px solid rgba(0,212,255,0.14);
  }

  .vp-filterbar button:last-child {
    border-bottom: 0;
  }

  .vp-status-strip {
    grid-template-columns: 1fr;
  }

  .vp-status-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(0,212,255,0.12);
  }

  .vp-status-strip div:last-child {
    border-bottom: 0;
  }

  .vp-scene-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .vp-scene-counter {
    text-align: left;
  }

  .vp-shot-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 15px;
  }

  .vp-shot-state,
  .vp-shot-action {
    grid-column: auto;
  }
}

/* Legal page */
.footer {
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-legal a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(0,212,255,0.72);
  text-decoration: none;
  border: 1px solid rgba(0,212,255,0.18);
  background: rgba(0,212,255,0.04);
  padding: 8px 12px;
  display: inline-block;
}

.footer-legal a:hover,
.footer-legal a.active {
  color: var(--cyan);
  border-color: rgba(0,212,255,0.55);
  background: rgba(0,212,255,0.1);
}

.legal-hero {
  min-height: clamp(430px, 58vh, 620px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 112px 60px 66px;
  border-bottom: 1px solid rgba(0,212,255,0.2);
  background: #050912;
  box-sizing: border-box;
}

.legal-hero-bg,
.legal-hero-shade {
  position: absolute;
  inset: 0;
}

.legal-hero-bg {
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
}

.legal-hero-privacy .legal-hero-bg {
  background-image: url("../img/header/ChatGPT Image 5. Juni 2026, 01_47_04 (1).webp");
}

.legal-hero-impressum .legal-hero-bg {
  background-image: url("../img/header/ChatGPT Image 5. Juni 2026, 01_47_04 (2).webp");
}

.legal-hero-shade {
  background:
    linear-gradient(90deg, rgba(3,6,12,0.68) 0%, rgba(3,6,12,0.35) 48%, rgba(3,6,12,0.72) 100%),
    linear-gradient(180deg, rgba(3,6,12,0.18) 0%, rgba(3,6,12,0.7) 100%);
}

.legal-hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100vw - 120px));
  box-sizing: border-box;
  padding: clamp(28px, 3.3vw, 42px);
  border: 1px solid rgba(0,212,255,0.28);
  background:
    linear-gradient(135deg, rgba(5,11,22,0.82), rgba(7,13,26,0.58)),
    radial-gradient(circle at 0% 0%, rgba(0,212,255,0.16), transparent 42%);
  box-shadow: 0 28px 90px rgba(0,0,0,0.45);
}

.legal-hero-content h1 {
  margin: 16px 0 18px;
  font-family: var(--font-title);
  font-size: clamp(46px, 5.8vw, 86px);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(0,212,255,0.28);
}

.legal-hero-content p {
  max-width: 680px;
  color: rgba(236,246,255,0.9);
  font-family: var(--font-body);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.62;
}

.legal-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.legal-hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(0,212,255,0.3);
  background: rgba(0,12,22,0.56);
  color: rgba(221,244,255,0.94);
  font-family: var(--font-mono);
  font-size: 11px;
}

.legal-page .legal-section > .section-tag,
.legal-page .legal-section > .section-title,
.legal-page .legal-section > .legal-intro {
  display: none;
}

.legal-section {
  min-height: calc(100vh - 220px);
  padding: 58px 60px 88px;
  background:
    radial-gradient(circle at 15% 0%, rgba(0,212,255,0.09), transparent 34%),
    linear-gradient(180deg, rgba(8,12,22,0.98) 0%, rgba(4,6,12,1) 100%);
}

.legal-intro {
  max-width: 960px;
  overflow-wrap: anywhere;
}

.legal-panel {
  max-width: 1080px;
  margin-top: 42px;
  border: 1px solid rgba(0,212,255,0.18);
  background: rgba(255,255,255,0.025);
  box-shadow: 0 26px 80px rgba(0,0,0,0.35);
  padding: 40px;
}

.legal-block + .legal-block {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,212,255,0.1);
}

.legal-block h2 {
  font-family: var(--font-title);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.2;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}

.legal-block p,
.legal-list li {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: var(--silver);
  overflow-wrap: anywhere;
}

.legal-block p + p {
  margin-top: 14px;
}

.legal-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.legal-contact a,
.legal-block a {
  color: var(--cyan);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.legal-contact a:hover,
.legal-block a:hover {
  text-decoration: underline;
}

.legal-list {
  margin: 16px 0 0 22px;
  padding: 0;
}

.legal-list li + li {
  margin-top: 8px;
}

.legal-stand {
  font-family: var(--font-mono) !important;
  color: rgba(0,212,255,0.8) !important;
  letter-spacing: 1px;
}

@media (max-width: 820px) {
  .topbar-left {
    flex-wrap: wrap;
    row-gap: 2px;
  }

  .topbar-sub {
    white-space: normal;
    line-height: 1.35;
    max-width: calc(100vw - 58px);
  }

  .legal-section {
    padding: 46px 22px 64px;
  }

  .legal-hero {
    min-height: 500px;
    padding: 88px 22px 36px;
  }

  .legal-hero-bg {
    background-position: center;
  }

  .legal-hero-content {
    width: calc(100vw - 44px);
    padding: 24px;
  }

  .legal-hero-content h1 {
    font-size: clamp(25px, 7vw, 36px);
    overflow-wrap: anywhere;
  }

  .legal-hero-content p {
    max-width: min(100%, calc(100vw - 132px));
    font-size: 15px;
    line-height: 1.58;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .legal-hero-meta span {
    width: 100%;
    justify-content: center;
  }

  .legal-section .section-title {
    font-size: clamp(24px, 6.8vw, 32px);
    letter-spacing: 1px;
    overflow-wrap: anywhere;
  }

  .legal-intro {
    font-size: 15px;
    line-height: 1.7;
  }

  .legal-panel {
    padding: 24px;
    width: 100%;
    max-width: 100%;
  }

  .legal-block {
    min-width: 0;
  }

  .legal-contact {
    grid-template-columns: 1fr;
  }

  .legal-block p,
  .legal-list li {
    font-size: 15px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .legal-block h2 {
    font-size: clamp(21px, 6.2vw, 28px);
    letter-spacing: 1px;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 480px) {
  .legal-hero-content {
    width: min(300px, 100%);
  }

  .legal-hero-content p {
    max-width: 100%;
    font-size: 14.5px;
  }
}

@media (max-width: 620px) {
  .episode-link-grid {
    grid-template-columns: 1fr;
  }

  .episode-link-card {
    min-height: 0;
  }
}

/* Unified HALCYON PRIME hero logo and readability panels */
.cover-content {
  --cover-panel-width: min(760px, 100%);
  max-width: 940px;
  width: min(940px, 100%);
}
.cover-title-panel,
.cover-meta-grid,
.cover-logline,
.cover-podcast {
  width: var(--cover-panel-width);
  max-width: none;
}
.cover-title-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0 auto 36px;
  padding: clamp(24px, 4vw, 36px) clamp(22px, 5vw, 48px) clamp(26px, 4vw, 40px);
  border: 1px solid rgba(218,228,238,0.17);
  background:
    linear-gradient(180deg, rgba(5,11,20,0.72), rgba(3,7,13,0.58));
  box-shadow: 0 26px 80px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.045);
  backdrop-filter: none;
}
.cover-title-panel::before {
  content: '';
  position: absolute;
  inset: -34% -12% auto;
  height: 58%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0,212,255,0.12), rgba(50,105,160,0.07) 34%, transparent 70%);
  filter: none;
  opacity: 0.58;
  pointer-events: none;
  z-index: -1;
}
.cover-title-panel::after {
  display: none;
}
.cover-title-panel .cover-studio {
  margin-bottom: 16px;
}
.cover-logo-aura {
  position: relative;
  width: min(540px, 78%);
  margin: 0 auto 18px;
  isolation: isolate;
}
.cover-logo-aura::before {
  content: '';
  position: absolute;
  inset: -58% -30%;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(245,250,255,0.36) 0%, rgba(0,212,255,0.34) 24%, rgba(112,80,255,0.22) 48%, transparent 74%);
  filter: blur(24px);
  opacity: 0.95;
  z-index: -2;
  pointer-events: none;
}
.cover-logo-aura::after {
  content: '';
  position: absolute;
  inset: -18% -8%;
  background: url('../logo/halcyon-prime-logo-clean-v2.webp') center / contain no-repeat;
  filter: blur(10px) brightness(2.35) saturate(1.55);
  opacity: 0.72;
  z-index: -1;
  pointer-events: none;
}
.cover-logo-mark {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  filter:
    drop-shadow(0 0 18px rgba(245,250,255,0.88))
    drop-shadow(0 0 58px rgba(0,212,255,0.72))
    drop-shadow(0 0 126px rgba(80,150,255,0.48))
    drop-shadow(0 8px 34px rgba(0,0,0,0.62));
}
.cover-title-panel .cover-subtitle {
  margin-bottom: 20px;
}
.cover-title-panel .cover-divider {
  margin-bottom: 22px;
}
.cover-title-panel .cover-epname {
  margin-bottom: 0;
}
.cover-logline {
  font-size: 17px;
  color: rgba(232,244,255,0.9);
  border: 1px solid rgba(218,228,238,0.2);
  border-left: 3px solid var(--cyan);
  padding: 20px 26px 22px;
  background:
    linear-gradient(180deg, rgba(5,11,20,0.78), rgba(4,8,15,0.66));
  box-shadow: 0 20px 70px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: none;
  text-shadow: 0 3px 18px rgba(0,0,0,0.76);
}
.sp-hero-center {
  max-width: 760px;
}
.sp-hero-logo-image {
  display: block;
  width: min(520px, 74vw);
  height: auto;
  margin: 0 auto 22px;
  opacity: 1;
  filter:
    drop-shadow(0 0 12px rgba(232,244,255,0.38))
    drop-shadow(0 0 32px rgba(0,212,255,0.32))
    drop-shadow(0 0 58px rgba(80,150,255,0.18))
    drop-shadow(0 5px 30px rgba(0,0,0,0.72));
}
@media (max-width: 640px) {
  .cover-content {
    --cover-panel-width: min(100%, calc(100vw - 32px));
  }
  .cover-title-panel {
    padding: 22px 18px 26px;
  }
  .cover-logo-mark,
  .sp-hero-logo-image {
    width: min(420px, 80vw);
  }
}
@media (max-width: 640px) {
  .sp-hero-episode {
    font-size: 14px;
    letter-spacing: 2px;
  }
  .sp-hero-tagline {
    font-size: 16px;
    line-height: 1.45;
  }
  .sp-hero-badge {
    font-size: 10px;
    letter-spacing: 1.1px;
    padding: 6px 10px;
  }
}

/* Scenes page hero */
.scenes-hero {
  min-height: clamp(640px, 84vh, 880px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 980px);
  align-items: end;
  justify-content: start;
  padding: 92px 60px 72px;
  overflow: hidden;
  background: var(--dark);
  border-bottom: 1px solid rgba(0,212,255,0.28);
}
.scenes-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/header/ChatGPT%20Image%204.%20Juni%202026%2C%2017_04_26%20%281%29.webp');
  background-size: cover;
  background-position: center center;
  filter: brightness(0.88) saturate(1.08) contrast(1.04);
}
.scenes-hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 19% 58%, rgba(0,212,255,0.18), transparent 30%),
    radial-gradient(circle at 55% 28%, rgba(153,51,255,0.18), transparent 26%),
    radial-gradient(circle at 88% 54%, rgba(255,34,68,0.16), transparent 32%),
    linear-gradient(90deg, rgba(4,8,15,0.82) 0%, rgba(4,8,15,0.34) 48%, rgba(4,8,15,0.5) 100%),
    linear-gradient(180deg, rgba(4,8,15,0.08) 0%, rgba(4,8,15,0.14) 52%, rgba(4,8,15,0.84) 100%);
}
.scenes-hero-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
}
.scenes-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: 5px;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 0 54px rgba(0,212,255,0.28), 0 4px 26px rgba(0,0,0,0.76);
  margin: 18px 0 26px;
}
.scenes-hero-content p {
  max-width: 760px;
  font-size: clamp(19px, 2.1vw, 27px);
  line-height: 1.55;
  color: rgba(232,244,255,0.86);
  border-left: 3px solid rgba(0,212,255,0.68);
  padding-left: 22px;
  text-shadow: 0 3px 18px rgba(0,0,0,0.78);
}
.scenes-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}
.scenes-hero-meta span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--white);
  padding: 8px 12px;
  border: 1px solid rgba(0,212,255,0.22);
  background: rgba(0,212,255,0.07);
}
@media (max-width: 980px) {
  .scenes-hero {
    min-height: 620px;
    padding: 88px 32px 56px;
  }
}
@media (max-width: 640px) {
  .scenes-hero {
    min-height: 560px;
    padding: 78px 22px 44px;
  }
  .scenes-hero h1 {
    font-size: clamp(34px, 11vw, 52px);
    letter-spacing: 2px;
  }
  .scenes-hero-content p {
    font-size: 18px;
  }
  .scenes-hero-meta span {
    font-size: 10px;
    letter-spacing: 1.2px;
  }
}
/* Screenplay hero aligned with series page */
.screenplay-hero {
  min-height: clamp(640px, 84vh, 880px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 980px);
  align-items: end;
  justify-content: start;
  padding: 92px 60px 72px;
  overflow: hidden;
  background: var(--dark);
  border-bottom: 1px solid rgba(0,212,255,0.28);
}
.screenplay-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/header/ChatGPT%20Image%204.%20Juni%202026%2C%2017_04_27%20%282%29.webp');
  background-size: cover;
  background-position: center center;
  filter: brightness(0.9) saturate(1.08) contrast(1.04);
  transform: scale(1.015);
}
.screenplay-hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 54%, rgba(0,212,255,0.22), transparent 30%),
    radial-gradient(circle at 72% 52%, rgba(255,34,68,0.16), transparent 34%),
    linear-gradient(90deg, rgba(4,8,15,0.78) 0%, rgba(4,8,15,0.34) 48%, rgba(4,8,15,0.55) 100%),
    linear-gradient(180deg, rgba(4,8,15,0.1) 0%, rgba(4,8,15,0.16) 52%, rgba(4,8,15,0.86) 100%);
}
.screenplay-hero-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
}

.screenplay-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(46px, 6.4vw, 92px);
  line-height: 0.98;
  letter-spacing: 5px;
  color: var(--white);
  text-shadow: 0 0 54px rgba(0,212,255,0.28), 0 4px 26px rgba(0,0,0,0.76);
  margin: 0 0 26px;
}
.screenplay-hero-content p {
  max-width: 760px;
  font-size: clamp(19px, 2.1vw, 27px);
  line-height: 1.55;
  color: rgba(232,244,255,0.86);
  border-left: 3px solid rgba(0,212,255,0.68);
  padding-left: 22px;
  text-shadow: 0 3px 18px rgba(0,0,0,0.78);
}
.screenplay-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}
.screenplay-hero-meta span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--white);
  padding: 8px 12px;
  border: 1px solid rgba(0,212,255,0.22);
  background: rgba(0,212,255,0.07);
}
@media (max-width: 980px) {
  .screenplay-hero {
    min-height: 620px;
    padding: 88px 32px 56px;
  }
}

@media (max-width: 640px) {
  .screenplay-hero {
    min-height: 560px;
    padding: 78px 22px 44px;
  }
}

/* Mobile site navigation */
.topbar-menu {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(0,212,255,0.38);
  background:
    linear-gradient(135deg, rgba(0,212,255,0.14), rgba(153,51,255,0.08)),
    rgba(3,7,13,0.86);
  box-shadow: 0 0 26px rgba(0,212,255,0.12), inset 0 1px 0 rgba(255,255,255,0.08);
  cursor: pointer;
  position: relative;
  z-index: 10040;
}

.topbar-menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0,212,255,0.5);
  transition: transform 180ms ease, opacity 180ms ease;
}

.topbar.is-open .topbar-menu span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.topbar.is-open .topbar-menu span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1280px) {
  body.nav-open {
    overflow: hidden;
  }

  .topbar {
    height: 72px !important;
    min-height: 72px !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    padding: 0 16px !important;
  }

  .topbar-left {
    min-width: 0 !important;
    flex: 1 1 auto;
    gap: 10px;
    overflow: hidden;
    flex-wrap: nowrap !important;
    padding-right: 58px;
  }

  .topbar-logo {
    font-size: clamp(16px, 4.6vw, 20px);
    letter-spacing: 2px;
    white-space: nowrap;
  }

  .topbar-sub {
    max-width: 42vw;
    overflow: hidden;
    white-space: nowrap !important;
    text-overflow: ellipsis;
    line-height: 1;
  }

  .topbar-right {
    display: none !important;
  }

  .topbar-menu {
    display: inline-flex;
    position: absolute;
    top: 13px;
    right: 16px;
  }

  .topbar-nav {
    position: fixed;
    top: 72px;
    left: 12px;
    right: 12px;
    width: auto !important;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 8px !important;
    max-height: calc(100vh - 92px);
    padding: 14px !important;
    overflow-y: auto;
    border: 1px solid rgba(0,212,255,0.28);
    background:
      radial-gradient(circle at 18% 0%, rgba(0,212,255,0.16), transparent 34%),
      linear-gradient(180deg, rgba(6,12,21,0.98), rgba(3,7,13,0.99));
    box-shadow: 0 28px 90px rgba(0,0,0,0.72), inset 0 1px 0 rgba(255,255,255,0.055);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    z-index: 10030;
  }

  .topbar.is-open .topbar-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .topbar-nav a {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border: 1px solid rgba(0,212,255,0.18);
    background: rgba(0,212,255,0.055);
    font-size: 16px;
    letter-spacing: 2.4px;
  }

  .topbar-nav a::after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.52;
  }

  .topbar-nav a.active {
    color: var(--cyan);
    border-color: rgba(0,212,255,0.58);
    background:
      linear-gradient(90deg, rgba(0,212,255,0.18), rgba(0,212,255,0.04)),
      rgba(0,0,0,0.2);
    box-shadow: inset 3px 0 0 var(--cyan), 0 0 24px rgba(0,212,255,0.08);
  }

  .main {
    padding-top: 72px !important;
  }

  .page-jumpbar {
    top: 72px !important;
  }
}

@media (max-width: 620px) {
  .topbar {
    padding: 0 12px !important;
  }

  .topbar-left {
    padding-right: 54px;
  }

  .topbar-sep,
  .topbar-sub {
    display: none;
  }

  .topbar-nav {
    left: 8px;
    right: 8px;
    padding: 10px !important;
  }

  .topbar-menu {
    right: 12px;
  }

  .topbar-nav a {
    min-height: 54px;
    font-size: 15px;
  }
}

/* Mobile refinement pass */
@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  img,
  video {
    max-width: 100%;
  }

  .main {
    width: 100%;
    overflow: hidden;
  }

  .cover {
    min-height: auto;
    align-items: stretch;
    justify-content: flex-start;
    padding: 26px 0 54px;
  }

  .cover-bg {
    background-position: center center;
    filter: brightness(0.58) saturate(1.08) contrast(1.04);
    transform: none;
  }

  .cover-content {
    width: 100%;
    max-width: 100%;
    padding: 26px 18px 42px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .cover-content {
    --cover-panel-width: 100%;
  }

  .cover-title-panel,
  .cover-meta-grid,
  .cover-logline,
  .cover-podcast {
    width: auto !important;
    max-width: 100% !important;
    min-width: 0;
  }

  .cover-title-panel {
    width: 100%;
    margin: 0 auto 24px;
    padding: 22px 16px 24px;
  }

  .cover-title-panel .cover-studio {
    font-size: 9px;
    letter-spacing: 2.4px;
    margin-bottom: 12px;
  }

  .cover-logo-aura {
    width: min(270px, 68vw);
    margin-bottom: 12px;
  }

  .cover-logo-aura::after {
    display: none;
  }

  .cover-logo-mark {
    width: 100% !important;
    max-width: 100%;
  }

  .cover-title-panel .cover-subtitle {
    font-size: clamp(18px, 5.4vw, 22px);
    letter-spacing: 3px;
    margin-bottom: 16px;
  }

  .cover-title-panel .cover-divider {
    width: 150px;
    margin-bottom: 18px;
  }

  .cover-episode {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .cover-title-panel .cover-epname {
    max-width: 100%;
    font-size: clamp(19px, 6.2vw, 25px);
    letter-spacing: 1.2px;
    line-height: 1.16;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .cover-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 30px;
  }

  .cover-meta-item {
    padding: 14px 10px;
  }

  .cover-logline {
    width: 100%;
    font-size: 16px;
    line-height: 1.65;
    padding: 18px 18px 20px;
    margin-bottom: 34px;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .cover-podcast {
    width: 100%;
    margin: 0 auto 34px;
    padding: 16px 14px 16px;
    overflow: hidden;
  }

  .cover-podcast-title {
    font-size: clamp(15px, 5.2vw, 19px);
    letter-spacing: 1px;
    line-height: 1.32;
  }

  .cover-podcast-kicker {
    font-size: 9px;
    letter-spacing: 2px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .cover-podcast-player {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .cover-podcast-actions {
    justify-content: stretch;
  }

  .cover-podcast-link {
    width: 100%;
    min-height: 42px;
  }

  .cover-title-panel,
  .cover-meta-grid,
  .cover-logline,
  .cover-podcast {
    width: calc(100vw - 36px) !important;
    max-width: calc(100vw - 36px) !important;
    margin-left: auto;
    margin-right: auto;
  }

  .cover-podcast,
  .cover-podcast-top,
  .cover-podcast-top > div,
  .cover-podcast-player,
  .cover-podcast-actions,
  .cover-podcast-link {
    min-width: 0;
  }

  .cover-podcast-title {
    max-width: 100%;
    font-size: clamp(14px, 4.4vw, 17px);
    letter-spacing: 0.6px;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .series-hero,
  .scenes-hero,
  .screenplay-hero,
  .video-hero {
    min-height: 560px;
    grid-template-columns: minmax(0, 1fr);
    padding: 76px 20px 42px;
  }

  .series-hero-content,
  .scenes-hero-content,
  .screenplay-hero-content,
  .video-hero-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .series-hero h1,
  .scenes-hero h1,
  .screenplay-hero h1,
  .video-hero h1 {
    font-size: clamp(36px, 10vw, 50px);
    line-height: 1.04;
    letter-spacing: 1.6px;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    margin-bottom: 18px;
  }

  .scenes-hero h1 {
    font-size: clamp(32px, 8.4vw, 42px);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
  }

  .video-hero h1 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .series-hero-content p,
  .scenes-hero-content p,
  .screenplay-hero-content p,
  .video-hero p {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.5;
    padding-left: 16px;
  }

  .series-hero-meta,
  .scenes-hero-meta,
  .screenplay-hero-meta,
  .video-hero-meta {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 7px;
    margin-top: 24px;
  }

  .series-hero-meta span,
  .scenes-hero-meta span,
  .screenplay-hero-meta span,
  .video-hero-meta span {
    width: 100%;
    max-width: 100%;
    font-size: 10px;
    letter-spacing: 1.2px;
    line-height: 1.35;
    padding: 8px 10px;
    overflow-wrap: anywhere;
  }

  .video-hero-bg {
    background-position: center top;
  }

  .section-header,
  .characters-section,
  .locations-section,
  .series-section,
  .video-section,
  .timeline-section,
  .shots-container,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-title,
  .series-pilot .section-title {
    font-size: clamp(32px, 9vw, 46px);
    line-height: 1.08;
    letter-spacing: 1.2px;
    overflow-wrap: anywhere;
  }

  .series-pilot .series-section-head {
    padding-left: 16px;
    margin-bottom: 28px;
  }

  .series-pilot .section-desc,
  .section-desc {
    font-size: 16px;
    line-height: 1.65;
  }

  .series-pilot-grid,
  .series-episode-grid,
  .series-abilities-grid,
  .series-world-axis,
  .series-world-arc-grid,
  .video-board-grid,
  .vp-raw-grid,
  .char-grid,
  .loc-grid {
    grid-template-columns: 1fr !important;
  }

  .series-story-panel {
    min-height: 0;
    padding: 24px 22px 28px;
  }

  .series-panel-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }

  .series-panel-head h3 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(25px, 7.6vw, 32px);
    line-height: 1.05;
    letter-spacing: 1px;
    overflow-wrap: anywhere;
  }

  .series-story-panel p {
    font-size: 17px;
    line-height: 1.75;
  }

  .page-jumpbar {
    max-width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .page-jumpbar::-webkit-scrollbar {
    display: none;
  }

  .page-jumpbar a {
    flex: 0 0 auto;
  }

  .video-jumpbar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 20px;
  }

  .video-jumpbar a {
    width: 100%;
    justify-content: center;
  }

  .shot-title-row {
    flex-wrap: wrap;
  }

  .shot-cam-badge {
    white-space: normal;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .vp-filterbar,
  .vp-status-strip,
  .video-hero-meta {
    max-width: 100%;
  }

  .vp-status-strip div,
  .video-card,
  .vp-board,
  .vp-shot-row {
    min-width: 0;
  }

  .footer {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }

  .footer-left,
  .footer-right {
    text-align: center;
  }
}

@media (max-width: 420px) {
  .topbar-logo {
    font-size: 18px;
    letter-spacing: 1.8px;
  }

  .cover-content {
    padding-left: 14px;
    padding-right: 14px;
  }

  .cover-title-panel {
    padding-left: 14px;
    padding-right: 14px;
  }

  .cover-logo-aura {
    width: min(248px, 64vw);
  }

  .series-hero,
  .scenes-hero,
  .screenplay-hero,
  .video-hero {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Supporter / financing page */
.support-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 212, 255, 0.18);
  background: var(--dark);
}

.support-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/header/ChatGPT%20Image%2029.%20Mai%202026%2C%2023_28_38.webp');
  background-size: cover;
  background-position: center center;
  filter: brightness(0.58) saturate(1.08) contrast(1.06);
  transform: scale(1.015);
}

.support-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 12, 0.95) 0%, rgba(4, 8, 15, 0.58) 42%, rgba(4, 8, 15, 0.78) 100%),
    linear-gradient(180deg, rgba(4, 8, 15, 0.1) 0%, rgba(4, 8, 15, 0.18) 45%, rgba(4, 8, 15, 0.96) 100%),
    repeating-linear-gradient(0deg, rgba(0, 212, 255, 0.045) 0 1px, transparent 1px 7px);
}

.support-hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 80px));
  padding: clamp(72px, 9vw, 130px) 0 clamp(54px, 7vw, 92px);
  margin-left: clamp(32px, 6vw, 96px);
}

.support-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(52px, 7.4vw, 112px);
  line-height: 0.92;
  letter-spacing: 1px;
  color: var(--white);
  margin: 0 0 28px;
  text-shadow: 0 0 44px rgba(0, 212, 255, 0.24), 0 10px 36px rgba(0, 0, 0, 0.72);
}

.support-hero p {
  max-width: 760px;
  margin: 0 0 30px;
  padding: 0 0 0 22px;
  border-left: 3px solid var(--cyan);
  font-size: clamp(17px, 1.5vw, 23px);
  line-height: 1.72;
  color: rgba(232, 244, 255, 0.88);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.74);
}

.support-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 860px;
}

.support-hero-meta span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(232, 244, 255, 0.82);
  border: 1px solid rgba(0, 212, 255, 0.24);
  background: rgba(4, 8, 15, 0.68);
  padding: 10px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.support-section {
  padding: clamp(58px, 7vw, 104px) clamp(24px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.035), transparent 42%),
    var(--dark2);
  border-bottom: 1px solid rgba(0, 212, 255, 0.11);
}

.support-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  max-width: 1480px;
  margin: 0 auto;
}

.support-intro h2,
.support-access-copy h2,
.support-cta h2 {
  font-family: var(--font-title);
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.02;
  letter-spacing: 1px;
  color: var(--white);
  margin: 0 0 26px;
  text-shadow: 0 0 34px rgba(0, 212, 255, 0.18);
}

.support-intro p,
.support-access-copy p,
.support-cta p {
  max-width: 900px;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.82;
  color: rgba(190, 214, 235, 0.88);
  margin: 0;
}

.support-intro p + p {
  margin-top: 20px;
}

.support-console {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(0, 212, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(0, 212, 255, 0.1), rgba(153, 51, 255, 0.08) 46%, rgba(255, 34, 68, 0.06)),
    repeating-linear-gradient(0deg, rgba(0, 212, 255, 0.05) 0 1px, transparent 1px 8px),
    rgba(5, 10, 18, 0.92);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.support-console::before {
  content: '';
  position: absolute;
  inset: 0;
  border-left: 3px solid var(--cyan);
  pointer-events: none;
}

.support-console-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.support-console-head span,
.support-console-row span,
.support-tier-kicker,
.support-access-list span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.4px;
  color: var(--cyan);
}

.support-console-head strong {
  font-family: var(--font-title);
  font-size: clamp(18px, 2vw, 26px);
  color: var(--white);
  letter-spacing: 2px;
  text-align: right;
}

.support-console-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 212, 255, 0.14);
}

.support-console-row strong {
  font-family: var(--font-body);
  color: rgba(232, 244, 255, 0.9);
  font-size: 15px;
  text-align: right;
}

.support-console-scan {
  height: 6px;
  border: 1px solid rgba(0, 212, 255, 0.24);
  background: rgba(0, 0, 0, 0.26);
  margin: 22px 0;
  overflow: hidden;
}

.support-console-scan span {
  display: block;
  height: 100%;
  width: 62%;
  background: linear-gradient(90deg, var(--cyan), rgba(153, 51, 255, 0.86), var(--red));
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.35);
}

.support-console p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(160, 184, 204, 0.84);
  margin: 0;
}

.support-section-head {
  max-width: 1280px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  padding: 0;
  border: 0;
  background: none;
}

.support-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  max-width: 1480px;
  margin: 0 auto;
}

.support-tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-top: 3px solid var(--cyan);
  background:
    linear-gradient(180deg, rgba(11, 25, 40, 0.92), rgba(5, 9, 16, 0.97)),
    repeating-linear-gradient(0deg, rgba(0, 212, 255, 0.035) 0 1px, transparent 1px 8px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.support-tier-card.featured {
  border-color: rgba(153, 51, 255, 0.36);
  border-top-color: var(--violet);
  background:
    linear-gradient(180deg, rgba(18, 17, 42, 0.94), rgba(5, 9, 16, 0.98)),
    repeating-linear-gradient(0deg, rgba(153, 51, 255, 0.045) 0 1px, transparent 1px 8px);
}

.support-tier-card.red {
  border-color: rgba(255, 34, 68, 0.32);
  border-top-color: var(--red);
  background:
    linear-gradient(180deg, rgba(35, 12, 20, 0.9), rgba(5, 9, 16, 0.98)),
    repeating-linear-gradient(0deg, rgba(255, 34, 68, 0.04) 0 1px, transparent 1px 8px);
}

.support-tier-card h2 {
  font-family: var(--font-title);
  font-size: clamp(24px, 2.4vw, 36px);
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
  margin: 16px 0 14px;
}

.support-tier-price {
  display: grid;
  gap: 4px;
  margin: 0 0 22px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  background:
    linear-gradient(90deg, rgba(0, 212, 255, 0.12), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.support-tier-card.featured .support-tier-price {
  border-color: rgba(153, 51, 255, 0.34);
  background:
    linear-gradient(90deg, rgba(153, 51, 255, 0.18), rgba(0, 212, 255, 0.06)),
    rgba(0, 0, 0, 0.22);
}

.support-tier-card.red .support-tier-price {
  border-color: rgba(255, 34, 68, 0.34);
  background:
    linear-gradient(90deg, rgba(255, 34, 68, 0.16), rgba(0, 212, 255, 0.04)),
    rgba(0, 0, 0, 0.22);
}

.support-tier-price span,
.support-tier-price em,
.support-tier-access,
.support-price-strip span,
.support-price-strip em {
  font-family: var(--font-mono);
  letter-spacing: 1.9px;
  text-transform: uppercase;
}

.support-tier-price span {
  font-size: 10px;
  color: var(--cyan);
}

.support-tier-price strong {
  font-family: var(--font-title);
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1;
  color: var(--white);
  letter-spacing: 1px;
  text-shadow: 0 0 22px rgba(0, 212, 255, 0.28);
}

.support-tier-card.featured .support-tier-price strong {
  text-shadow: 0 0 26px rgba(153, 51, 255, 0.34);
}

.support-tier-card.red .support-tier-price strong {
  text-shadow: 0 0 26px rgba(255, 34, 68, 0.32);
}

.support-tier-price em {
  font-style: normal;
  font-size: 10px;
  color: rgba(190, 214, 235, 0.7);
}

.support-tier-card p {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(190, 214, 235, 0.86);
  margin: 0 0 22px;
}

.support-tier-card ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.support-tier-card li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(232, 244, 255, 0.82);
}

.support-tier-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.54);
}

.support-tier-card.featured li::before {
  background: var(--violet);
}

.support-tier-card.red li::before {
  background: var(--red);
}

.support-tier-access {
  margin: 0 0 18px;
  padding: 11px 13px;
  border: 1px solid rgba(0, 212, 255, 0.16);
  background: rgba(0, 0, 0, 0.2);
  color: rgba(190, 214, 235, 0.72);
  font-size: 10px;
  line-height: 1.45;
}

.support-tier-card a,
.support-primary-button,
.support-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid rgba(0, 212, 255, 0.34);
  background: rgba(0, 212, 255, 0.12);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: auto;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.support-tier-card a:hover,
.support-primary-button:hover,
.support-secondary-button:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.2);
}

.support-access {
  background:
    radial-gradient(circle at 82% 18%, rgba(153, 51, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.98), rgba(4, 8, 15, 1));
}

.support-access-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 80px);
  max-width: 1480px;
  margin: 0 auto;
  align-items: start;
}

.support-access-list {
  display: grid;
  gap: 12px;
}

.support-access-list div {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(86px, 0.18fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(0, 212, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(0, 212, 255, 0.08), rgba(153, 51, 255, 0.05)),
    rgba(5, 10, 18, 0.82);
}

.support-access-list strong {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.45vw, 22px);
  color: var(--white);
  line-height: 1.5;
  text-shadow: 0 0 18px rgba(0, 212, 255, 0.2);
}

.support-access-list small {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.58;
  color: rgba(190, 214, 235, 0.82);
}

.support-cta {
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(255, 34, 68, 0.06)),
    var(--dark2);
}

.support-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.55fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(0, 212, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(0, 212, 255, 0.08), rgba(153, 51, 255, 0.06) 50%, rgba(255, 34, 68, 0.05)),
    rgba(5, 10, 18, 0.9);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.support-cta-actions {
  display: grid;
  gap: 14px;
}

.support-price-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 4px;
}

.support-price-strip div {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(153, 51, 255, 0.055)),
    rgba(0, 0, 0, 0.24);
  min-width: 0;
}

.support-price-strip span {
  color: var(--cyan);
  font-size: 9px;
}

.support-price-strip strong {
  font-family: var(--font-title);
  color: var(--white);
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1;
  letter-spacing: 1px;
}

.support-price-strip em {
  color: rgba(190, 214, 235, 0.72);
  font-size: 9px;
  font-style: normal;
  line-height: 1.4;
}

.support-primary-button {
  border-color: rgba(0, 212, 255, 0.58);
  background:
    linear-gradient(90deg, rgba(0, 212, 255, 0.24), rgba(153, 51, 255, 0.18));
}

.support-secondary-button {
  background: rgba(255, 255, 255, 0.035);
}

.support-cta-actions p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(160, 184, 204, 0.76);
}

@media (max-width: 1120px) {
  .support-tier-grid {
    grid-template-columns: 1fr;
  }

  .support-tier-card {
    min-height: 0;
  }

  .support-intro-grid,
  .support-access-grid,
  .support-cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar-menu {
    display: inline-flex !important;
    position: fixed !important;
    top: 13px !important;
    right: 12px !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .support-hero {
    min-height: 600px;
  }

  .support-hero-bg {
    background-position: center top;
    filter: brightness(0.48) saturate(1.02) contrast(1.05);
  }

  .support-hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 72px 0 42px;
    max-width: 100%;
  }

  .support-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.2vw, 44px);
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .support-hero p {
    width: auto;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.62;
    padding-right: 14px;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .support-hero-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .support-section {
    padding: 46px 20px;
    overflow-x: hidden;
  }

  .support-intro-grid,
  .support-access-grid,
  .support-tier-grid,
  .support-cta-panel,
  .support-section-head,
  .support-intro-grid > *,
  .support-access-grid > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .support-intro h2,
  .support-access-copy h2,
  .support-cta h2,
  .support-section-head .section-title {
    font-size: clamp(27px, 7.8vw, 36px);
    line-height: 1.08;
    overflow-wrap: anywhere;
    max-width: calc(100vw - 40px);
  }

  .support-intro p,
  .support-access-copy p,
  .support-cta p {
    max-width: calc(100vw - 40px);
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .support-console-head,
  .support-console-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .support-console-head strong,
  .support-console-row strong {
    text-align: left;
    overflow-wrap: anywhere;
  }

  .support-console,
  .support-tier-card,
  .support-cta-panel {
    padding: 24px;
    min-width: 0;
  }

  .support-access-list div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .support-price-strip {
    grid-template-columns: 1fr;
  }

  .support-page .main,
  .support-page section,
  .support-page article,
  .support-page div,
  .support-page p,
  .support-page li,
  .support-page small,
  .support-page strong {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .support-hero p,
  .support-intro p,
  .support-section-head .section-desc,
  .support-tier-card p,
  .support-tier-card li,
  .support-access-list small,
  .support-console p,
  .support-cta p {
    width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .support-jumpbar {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: thin;
  }
}

@media (max-width: 420px) {
  .support-hero h1 {
    font-size: clamp(31px, 9vw, 38px);
  }

  .support-intro h2,
  .support-access-copy h2,
  .support-cta h2,
  .support-section-head .section-title {
    font-size: clamp(25px, 7vw, 31px);
  }
}

/* Copy deterrence + subtle screenplay and scene image watermark */
img,
video {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

.shot-img-panel,
.concept-ref-panel,
.sp-shot-img-panel {
  isolation: isolate;
}

.shot-img-panel img,
.concept-ref-img,
.sp-shot-img-panel img {
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

.shot-img-panel::before,
.concept-ref-panel::before {
  content: '';
  position: absolute;
  right: clamp(16px, 2.2vw, 30px);
  bottom: clamp(18px, 2.2vw, 30px);
  width: clamp(104px, 10vw, 190px);
  aspect-ratio: 639 / 183;
  background: url('../logo/halcyon-prime-logo-transparent-glow.webp') center / contain no-repeat;
  opacity: 0.23;
  filter:
    drop-shadow(0 0 18px rgba(0, 212, 255, 0.34))
    drop-shadow(0 2px 10px rgba(0, 0, 0, 0.72));
  pointer-events: none;
  z-index: 5;
}

.shot-img-panel::after,
.concept-ref-panel::after {
  content: 'FRIEDMANN SOLUTIONS';
  position: absolute;
  right: clamp(18px, 2.3vw, 34px);
  bottom: calc(clamp(18px, 2.2vw, 30px) + clamp(30px, 3.2vw, 54px));
  font-family: var(--font-mono);
  font-size: clamp(8px, 0.58vw, 10px);
  letter-spacing: 1.8px;
  color: rgba(232, 244, 255, 0.32);
  text-shadow: 0 0 16px rgba(0, 212, 255, 0.24), 0 2px 10px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  z-index: 5;
}

.concept-ref-panel {
  position: relative;
}

.concept-ref-panel::before {
  bottom: clamp(42px, 4.2vw, 68px);
}

.concept-ref-panel::after {
  bottom: calc(clamp(42px, 4.2vw, 68px) + clamp(30px, 3.2vw, 54px));
}

.sp-shot-img-panel::before {
  content: '';
  position: absolute;
  right: clamp(16px, 2.6vw, 34px);
  bottom: clamp(128px, 12vw, 210px);
  width: clamp(118px, 14vw, 230px);
  aspect-ratio: 639 / 183;
  background: url('../logo/halcyon-prime-logo-transparent-glow.webp') center / contain no-repeat;
  opacity: 0.24;
  filter:
    drop-shadow(0 0 18px rgba(0, 212, 255, 0.34))
    drop-shadow(0 2px 10px rgba(0, 0, 0, 0.72));
  pointer-events: none;
  z-index: 2;
}

.sp-shot-img-panel::after {
  content: 'FRIEDMANN SOLUTIONS';
  position: absolute;
  right: clamp(18px, 2.7vw, 38px);
  bottom: calc(clamp(128px, 12vw, 210px) + clamp(34px, 4.4vw, 72px));
  font-family: var(--font-mono);
  font-size: clamp(8px, 0.65vw, 11px);
  letter-spacing: 2px;
  color: rgba(232, 244, 255, 0.3);
  text-shadow: 0 0 16px rgba(0, 212, 255, 0.24), 0 2px 10px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  z-index: 2;
}

.sp-shot-badge,
.sp-shot-duration,
.shot-number-tag,
.shot-duration-tag {
  z-index: 7;
}

.shot-img-overlay {
  z-index: 2;
}

@media (max-width: 720px) {
  .shot-img-panel::before,
  .concept-ref-panel::before {
    width: clamp(96px, 31vw, 138px);
    opacity: 0.18;
  }

  .shot-img-panel::after,
  .concept-ref-panel::after {
    font-size: 8px;
    letter-spacing: 1.3px;
  }

  .sp-shot-img-panel::before {
    width: clamp(104px, 34vw, 150px);
    bottom: clamp(64px, 18vw, 96px);
    opacity: 0.18;
  }

  .sp-shot-img-panel::after {
    bottom: calc(clamp(64px, 18vw, 96px) + 34px);
    font-size: 8px;
    letter-spacing: 1.4px;
  }
}

/* Brighter page heroes with startpage-style text panels */
.support-hero-bg,
.scenes-hero-bg,
.series-hero-bg,
.screenplay-hero-bg,
.video-hero-bg {
  filter: brightness(1.03) saturate(1.08) contrast(1.04);
}

.support-hero-shade,
.scenes-hero-shade,
.series-hero-shade,
.screenplay-hero-shade,
.video-hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 8, 15, 0.2) 0%, rgba(4, 8, 15, 0.05) 50%, rgba(4, 8, 15, 0.14) 100%),
    linear-gradient(180deg, rgba(4, 8, 15, 0.02) 0%, rgba(4, 8, 15, 0.08) 54%, rgba(4, 8, 15, 0.52) 100%),
    repeating-linear-gradient(0deg, rgba(0, 212, 255, 0.03) 0 1px, transparent 1px 7px);
}

.support-hero-content,
.scenes-hero-content,
.series-hero-content,
.screenplay-hero-content,
.video-hero-content {
  width: min(960px, calc(100% - 80px));
  max-width: 960px;
  padding: clamp(24px, 4vw, 42px) clamp(22px, 4.6vw, 48px);
  border: 1px solid rgba(218, 228, 238, 0.17);
  background:
    linear-gradient(180deg, rgba(5, 11, 20, 0.68), rgba(3, 7, 13, 0.52));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: none;
}

.support-hero-content {
  margin-bottom: clamp(48px, 6vw, 78px);
}

.scenes-hero-content {
  width: min(1220px, calc(100vw - 120px));
  max-width: 1220px;
}

.video-hero-content {
  width: min(1180px, calc(100vw - 120px));
  max-width: 1180px;
}

.scenes-hero {
  grid-template-columns: minmax(0, 1fr);
}

.support-hero h1,
.scenes-hero h1,
.series-hero h1,
.screenplay-hero h1,
.video-hero h1 {
  text-shadow: 0 0 36px rgba(0, 212, 255, 0.28), 0 8px 30px rgba(0, 0, 0, 0.82);
}

.support-hero p,
.scenes-hero-content p,
.series-hero-content p,
.screenplay-hero-content p,
.video-hero p {
  color: rgba(232, 244, 255, 0.92);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.82);
}

.support-hero-meta span,
.scenes-hero-meta span,
.series-hero-meta span,
.screenplay-hero-meta span,
.video-hero-meta span {
  background: rgba(4, 8, 15, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

@media (max-width: 720px) {
  .support-hero-bg,
  .scenes-hero-bg,
  .series-hero-bg,
  .screenplay-hero-bg,
  .video-hero-bg {
    filter: brightness(0.92) saturate(1.06) contrast(1.04);
  }

  .support-hero-content,
  .scenes-hero-content,
  .series-hero-content,
  .screenplay-hero-content,
  .video-hero-content {
    width: calc(100% - 36px);
    max-width: calc(100% - 36px);
    padding: 22px 18px 24px;
    background:
      linear-gradient(180deg, rgba(5, 11, 20, 0.74), rgba(3, 7, 13, 0.58));
  }

  .support-hero-content {
    margin: 0 auto 42px;
  }
}

.protected-access-strip {
  align-items: center;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.16), rgba(153, 51, 255, 0.11), rgba(255, 34, 68, 0.10));
  border-bottom: 1px solid rgba(0, 212, 255, 0.24);
  color: rgba(232, 244, 255, 0.86);
  display: flex;
  flex-wrap: wrap;
  font-family: "Share Tech Mono", monospace;
  gap: 12px;
  justify-content: center;
  letter-spacing: 1.5px;
  padding: 9px 18px;
  position: sticky;
  text-transform: uppercase;
  top: var(--topbar-height, 64px);
  z-index: 998;
}

.protected-access-strip strong {
  color: var(--cyan);
  font-weight: 700;
}

.protected-access-strip a {
  border: 1px solid rgba(0, 212, 255, 0.28);
  color: #ffffff;
  padding: 5px 9px;
  text-decoration: none;
}

.protected-access-strip a:hover {
  background: rgba(0, 212, 255, 0.12);
  color: var(--cyan);
}

@media (max-width: 720px) {
  .protected-access-strip {
    font-size: 11px;
    justify-content: flex-start;
    top: 64px;
  }
}

@media (max-width: 720px) {
  .support-page,
  .support-page .main {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .support-page * {
    min-width: 0;
  }

  .support-hero {
    width: 100%;
    max-width: 100vw;
    min-height: auto;
    padding: 28px 0 34px;
  }

  .support-hero-content {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin: 0 auto;
    padding: 24px 18px 24px;
    overflow: hidden;
  }

  .support-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .support-hero p {
    width: 100%;
    max-width: 100%;
    padding-left: 14px;
    font-size: 15px;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .support-section,
  .support-intro-grid,
  .support-access-grid,
  .support-tier-grid,
  .support-cta-panel,
  .support-section-head {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .support-intro-grid > *,
  .support-access-grid > *,
  .support-tier-card,
  .support-console,
  .support-cta-panel > * {
    width: 100%;
    max-width: 100%;
  }

  .support-page p,
  .support-page li,
  .support-page strong {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .support-hero-meta span {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .support-intro h2,
  .support-access-copy h2,
  .support-cta h2,
  .support-section-head .section-title {
    max-width: 100%;
    font-size: clamp(24px, 6.4vw, 30px);
    letter-spacing: 0;
  }

  .support-jumpbar {
    max-width: 100vw;
    flex-wrap: wrap;
    overflow-x: hidden;
    justify-content: flex-start;
  }

  .support-jumpbar a {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    text-align: center;
  }
}

/* Podcast archive */
.podcast-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 8%, rgba(0, 212, 255, 0.12), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(153, 51, 255, 0.12), transparent 28%),
    var(--dark);
}

.podcast-hero {
  position: relative;
  min-height: clamp(620px, 82vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 212, 255, 0.18);
  background: var(--dark);
}

.podcast-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/header/ChatGPT%20Image%204.%20Juni%202026%2C%2004_32_40.webp');
  background-size: cover;
  background-position: center center;
  filter: brightness(0.98) saturate(1.08) contrast(1.04);
  transform: scale(1.01);
}

.podcast-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 8, 15, 0.24) 0%, rgba(4, 8, 15, 0.08) 48%, rgba(4, 8, 15, 0.34) 100%),
    linear-gradient(180deg, rgba(4, 8, 15, 0.04) 0%, rgba(4, 8, 15, 0.14) 55%, rgba(4, 8, 15, 0.74) 100%),
    repeating-linear-gradient(0deg, rgba(0, 212, 255, 0.035) 0 1px, transparent 1px 7px);
}

.podcast-hero-content {
  position: relative;
  z-index: 2;
  width: min(960px, calc(100% - 80px));
  max-width: 960px;
  margin: 0 0 clamp(54px, 7vw, 96px) clamp(32px, 6vw, 96px);
  padding: clamp(26px, 4vw, 44px) clamp(22px, 4.6vw, 50px);
  border: 1px solid rgba(218, 228, 238, 0.18);
  background:
    linear-gradient(180deg, rgba(5, 11, 20, 0.72), rgba(3, 7, 13, 0.58));
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.podcast-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(58px, 8.5vw, 128px);
  line-height: 0.92;
  letter-spacing: 1.2px;
  color: var(--white);
  margin: 0 0 28px;
  text-shadow: 0 0 38px rgba(0, 212, 255, 0.28), 0 10px 34px rgba(0, 0, 0, 0.82);
}

.podcast-hero p {
  max-width: 760px;
  margin: 0 0 30px;
  padding-left: 22px;
  border-left: 3px solid var(--cyan);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.65;
  color: rgba(232, 244, 255, 0.92);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.82);
}

.podcast-hero-meta,
.podcast-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.podcast-hero-meta span,
.podcast-card-meta span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(232, 244, 255, 0.84);
  border: 1px solid rgba(0, 212, 255, 0.25);
  background: rgba(4, 8, 15, 0.66);
  padding: 10px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.podcast-jumpbar {
  justify-content: center;
}

.podcast-section {
  padding: clamp(58px, 7vw, 104px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.035), transparent 44%),
    var(--dark2);
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
}

.podcast-section-head {
  max-width: 1480px;
  margin: 0 auto clamp(28px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}

.podcast-section-head > *,
.podcast-card-copy,
.podcast-support-strip > div {
  min-width: 0;
}

.podcast-section-head h2,
.podcast-support-strip h2 {
  font-family: var(--font-title);
  font-size: clamp(34px, 4.5vw, 66px);
  line-height: 1.02;
  letter-spacing: 1px;
  color: var(--white);
  margin: 0;
  text-shadow: 0 0 34px rgba(0, 212, 255, 0.18);
}

.podcast-section-head p,
.podcast-support-strip p {
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.75;
  color: rgba(190, 214, 235, 0.86);
  margin: 0;
}

.podcast-list {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.podcast-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(153, 51, 255, 0.07) 52%, rgba(255, 34, 68, 0.035)),
    rgba(5, 10, 18, 0.92);
  box-shadow: 0 26px 82px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.podcast-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 212, 255, 0.18), transparent 34%),
    repeating-linear-gradient(0deg, rgba(0, 212, 255, 0.035) 0 1px, transparent 1px 8px);
  opacity: 0.5;
  pointer-events: none;
}

.podcast-card.featured {
  border-color: rgba(0, 212, 255, 0.42);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42), 0 0 42px rgba(0, 212, 255, 0.08);
}

.podcast-card-index {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--cyan);
  padding: 22px clamp(22px, 3vw, 42px) 0;
}

.podcast-card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
  padding: clamp(20px, 3vw, 38px) clamp(22px, 3vw, 42px) clamp(24px, 3.2vw, 44px);
}

.podcast-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--cyan);
  margin-bottom: 12px;
}

.podcast-card h2 {
  font-family: var(--font-title);
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0.8px;
  color: var(--white);
  margin: 0 0 18px;
}

.podcast-card p {
  max-width: 840px;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.75;
  color: rgba(205, 225, 242, 0.88);
  margin: 0 0 24px;
}

.podcast-player-panel {
  min-width: 0;
  padding: clamp(18px, 2.4vw, 30px);
  border: 1px solid rgba(0, 212, 255, 0.24);
  background:
    radial-gradient(circle at 28% 0%, rgba(0, 212, 255, 0.14), transparent 34%),
    rgba(2, 6, 12, 0.7);
}

.podcast-player-panel audio {
  display: block;
  width: 100%;
  max-width: 100%;
  accent-color: var(--cyan);
}

.podcast-support-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: clamp(46px, 6vw, 86px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(0, 212, 255, 0.08), rgba(153, 51, 255, 0.06), rgba(255, 34, 68, 0.045)),
    var(--dark);
  border-bottom: 1px solid rgba(0, 212, 255, 0.14);
}

.podcast-support-strip > div {
  max-width: 960px;
}

@media (max-width: 960px) {
  .podcast-section-head,
  .podcast-card-grid,
  .podcast-support-strip {
    grid-template-columns: 1fr;
  }

  .podcast-player-panel {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .podcast-hero {
    min-height: 560px;
  }

  .podcast-hero-bg {
    background-position: center top;
    filter: brightness(0.9) saturate(1.06) contrast(1.04);
  }

  .podcast-hero-content {
    width: calc(100% - 36px);
    max-width: calc(100% - 36px);
    margin: 0 auto 42px;
    padding: 22px 18px 24px;
  }

  .podcast-hero h1 {
    font-size: clamp(48px, 15vw, 70px);
    line-height: 0.96;
  }

  .podcast-hero p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.55;
    padding-left: 16px;
    padding-right: 10px;
  }

  .podcast-hero-meta,
  .podcast-card-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .podcast-hero-meta span,
  .podcast-card-meta span {
    width: 100%;
    font-size: 10px;
    letter-spacing: 1.4px;
  }

  .podcast-section,
  .podcast-support-strip {
    padding-left: 20px;
    padding-right: 20px;
  }

  .podcast-section-head h2,
  .podcast-support-strip h2 {
    font-size: clamp(28px, 7.2vw, 34px);
    letter-spacing: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .podcast-card-grid {
    padding: 22px 18px 24px;
    gap: 22px;
  }

  .podcast-card-index {
    padding: 20px 18px 0;
  }

  .podcast-card h2 {
    font-size: clamp(28px, 8vw, 38px);
    overflow-wrap: anywhere;
  }

  .podcast-card p,
  .podcast-section-head p,
  .podcast-support-strip p {
    font-size: 16px;
    line-height: 1.65;
  }

  .podcast-player-panel {
    padding: 16px;
  }

  .podcast-jumpbar {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .podcast-jumpbar a {
    flex: 1 1 100%;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .topbar {
    z-index: 10020 !important;
  }

  .topbar .topbar-menu {
    display: inline-flex !important;
    position: fixed !important;
    top: 13px !important;
    right: 12px !important;
    width: 46px !important;
    height: 46px !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10040 !important;
    border-color: rgba(0, 212, 255, 0.72) !important;
    background:
      linear-gradient(135deg, rgba(0, 212, 255, 0.22), rgba(153, 51, 255, 0.12)),
      rgba(3, 7, 13, 0.94) !important;
  }

  .topbar .topbar-menu span {
    display: block !important;
    background: var(--cyan) !important;
  }
}

/* Unified portal navigation consistency */
.topbar {
  height: 72px;
  min-height: 72px;
  padding: 0 clamp(16px, 1.7vw, 32px);
  gap: clamp(16px, 1.5vw, 28px);
}

.topbar-left {
  flex: 0 0 auto;
  min-width: auto;
  gap: 0;
}

.topbar-logo {
  font-size: clamp(18px, 1.4vw, 24px);
  text-decoration: none;
  line-height: 1;
  text-shadow: 0 0 18px rgba(0, 212, 255, 0.38);
}

.topbar-sep,
.topbar-sub,
.topbar-right {
  display: none !important;
}

.topbar-nav {
  margin-left: auto;
  gap: clamp(12px, 1.05vw, 24px);
}

.topbar-nav a {
  font-size: clamp(12px, 0.76vw, 14px);
  letter-spacing: 1.7px;
  padding: 9px 2px;
}

.topbar-nav .topbar-nav-cta {
  border: 1px solid rgba(0, 212, 255, 0.45);
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.11), rgba(0, 212, 255, 0.04));
  color: rgba(232, 244, 255, 0.92);
  padding: 10px 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 0 22px rgba(0, 212, 255, 0.07);
}

.topbar-nav .topbar-nav-cta:hover {
  color: var(--cyan);
  border-color: rgba(0, 212, 255, 0.72);
  background: rgba(0, 212, 255, 0.14);
}

@media (max-width: 1280px) {
  .topbar-left {
    flex: 1 1 auto !important;
    padding-right: 58px !important;
  }

  .topbar-nav {
    margin-left: 0;
  }

  .topbar-nav a,
  .topbar-nav .topbar-nav-cta {
    min-height: 56px;
    padding: 0 16px;
    font-size: 16px;
  }
}

@media (max-width: 620px) {
  .topbar-logo {
    font-size: clamp(17px, 5vw, 20px);
    letter-spacing: 2px;
  }

  .topbar-nav a,
  .topbar-nav .topbar-nav-cta {
    min-height: 54px;
    padding: 0 16px;
    font-size: 15px;
  }
}
/* End unified portal navigation consistency */

/* Protected access gate hero polish */
.protected-gate-hero {
  align-items: center;
  padding-top: clamp(96px, 10vh, 128px);
  padding-bottom: clamp(56px, 9vh, 96px);
}

.protected-gate-panel {
  position: relative;
  overflow: hidden;
}

.protected-gate-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 212, 255, 0.14), transparent 42%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.032) 0 1px, transparent 1px 9px);
  opacity: 0.72;
}

.protected-gate-panel > * {
  position: relative;
  z-index: 1;
}

.protected-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(26px, 3vw, 38px);
}

.protected-gate-actions .support-primary-button,
.protected-gate-actions .support-secondary-button {
  min-height: 46px;
}

.scenes-hero-bg {
  background-position: center center;
}

.screenplay-hero-bg {
  background-position: center center;
}

.scenes-hero.protected-gate-hero .scenes-hero-shade,
.screenplay-hero.protected-gate-hero .screenplay-hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 8, 15, 0.18) 0%, rgba(4, 8, 15, 0.04) 52%, rgba(4, 8, 15, 0.16) 100%),
    linear-gradient(180deg, rgba(4, 8, 15, 0.04) 0%, rgba(4, 8, 15, 0.1) 55%, rgba(4, 8, 15, 0.58) 100%),
    repeating-linear-gradient(0deg, rgba(0, 212, 255, 0.028) 0 1px, transparent 1px 7px);
}

@media (max-width: 720px) {
  .protected-gate-hero {
    min-height: calc(100vh - 72px);
    padding-top: 88px;
  }

  .protected-gate-actions {
    flex-direction: column;
  }

  .protected-gate-actions .support-primary-button,
  .protected-gate-actions .support-secondary-button {
    width: 100%;
    justify-content: center;
  }
}
/* End protected access gate hero polish */

/* Final mobile navigation guard */
@media (max-width: 1280px) {
  .topbar {
    position: fixed !important;
    overflow: visible !important;
  }

  .topbar-left {
    max-width: calc(100vw - 86px) !important;
    padding-right: 0 !important;
  }

  .topbar .topbar-menu {
    display: inline-flex !important;
    position: fixed !important;
    top: 13px !important;
    right: 14px !important;
    left: auto !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    z-index: 10080 !important;
  }

  .topbar .topbar-menu span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    opacity: 1 !important;
  }

  .topbar .topbar-nav {
    z-index: 10060 !important;
  }
}
/* End final mobile navigation guard */

/* Final legal page responsive guard */
.legal-page .legal-hero-content,
.legal-page .legal-panel,
.legal-page .legal-block,
.legal-page .legal-block p,
.legal-page .legal-block li {
  min-width: 0;
}

@media (max-width: 900px) {
  .legal-page,
  .legal-page .main {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .legal-page .legal-hero {
    padding-left: 22px;
    padding-right: 22px;
  }

  .legal-page .legal-hero-content {
    width: min(640px, calc(100vw - 44px));
    max-width: calc(100vw - 44px);
  }

  .legal-page .legal-hero-content p,
  .legal-page .legal-block p,
  .legal-page .legal-list li {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

@media (max-width: 520px) {
  .legal-page .legal-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .legal-page .legal-hero-content {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    padding: 22px 18px;
  }

  .legal-page .legal-hero-content h1 {
    font-size: clamp(29px, 8.6vw, 40px);
    line-height: 1;
  }

  .legal-page .legal-hero-content p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
  }
}

@media (max-width: 380px) {
  .legal-page .legal-hero-content h1 {
    font-size: 28px;
  }

  .legal-page .legal-hero-content p {
    font-size: 14px;
  }
}
/* End final legal page responsive guard */

/* Inline GTranslate language switcher */
.topbar-translate {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-left: clamp(4px, 0.7vw, 12px);
  position: relative;
  z-index: 10070;
}

.topbar-translate .gtranslate_wrapper {
  display: flex;
  align-items: center;
}

.topbar-translate .gt_float_switcher {
  font-family: var(--font-ui, inherit) !important;
  font-size: 12px !important;
  line-height: 1 !important;
  border: 1px solid rgba(0, 212, 255, 0.38) !important;
  border-radius: 0 !important;
  background: rgba(4, 11, 19, 0.82) !important;
  color: rgba(232, 244, 255, 0.94) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 0 18px rgba(0, 212, 255, 0.12) !important;
  overflow: visible !important;
}

.topbar-translate .gt_float_switcher .gt-selected,
.topbar-translate .gt_float_switcher .gt-selected .gt-current-lang {
  background: transparent !important;
  color: rgba(232, 244, 255, 0.94) !important;
}

.topbar-translate .gt_float_switcher .gt-selected .gt-current-lang {
  padding: 8px 10px !important;
}

.topbar-translate .gt_float_switcher img {
  width: 20px !important;
  height: auto !important;
}

.topbar-translate .gt_float_switcher .gt_options {
  border: 1px solid rgba(0, 212, 255, 0.32) !important;
  background: rgba(4, 8, 15, 0.98) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.58) !important;
}

.topbar-translate .gt_float_switcher .gt_options a {
  color: rgba(232, 244, 255, 0.92) !important;
  background: transparent !important;
}

.topbar-translate .gt_float_switcher .gt_options a:hover {
  color: var(--cyan) !important;
  background: rgba(0, 212, 255, 0.12) !important;
}

@media (max-width: 1280px) {
  .topbar-translate {
    position: fixed !important;
    top: 17px !important;
    right: 72px !important;
    margin-left: 0 !important;
    min-height: 38px !important;
    z-index: 10079 !important;
  }
}

@media (max-width: 520px) {
  .topbar-translate {
    top: 18px !important;
    right: 68px !important;
    transform: scale(0.92);
    transform-origin: right center;
  }
}
/* End inline GTranslate language switcher */

/* Final protected sticky stack guard */
:root {
  --hp-topbar-height: 72px;
  --hp-access-strip-height: 48px;
}

.protected-access-strip-status {
  position: sticky !important;
  top: var(--hp-topbar-height) !important;
  z-index: 10010 !important;
  min-height: var(--hp-access-strip-height) !important;
}

.protected-access-strip-status ~ .main .page-jumpbar {
  top: calc(var(--hp-topbar-height) + var(--hp-access-strip-height)) !important;
  z-index: 10000 !important;
}

.protected-access-strip-status ~ .main section[id],
.protected-access-strip-status ~ .main .scene-section,
.protected-access-strip-status ~ .main .series-structure-section {
  scroll-margin-top: calc(var(--hp-topbar-height) + var(--hp-access-strip-height) + 58px) !important;
}

@media (max-width: 720px) {
  :root {
    --hp-access-strip-height: 48px;
  }

  .protected-access-strip-status {
    top: var(--hp-topbar-height) !important;
  }

  .protected-access-strip-status ~ .main .page-jumpbar {
    top: calc(var(--hp-topbar-height) + var(--hp-access-strip-height)) !important;
  }
}
/* End final protected sticky stack guard */
/* Startpage brighter hero background pass */
.cover-bg {
  filter: brightness(0.9) saturate(1.08) contrast(1.03) !important;
}

.cover-vignette {
  background:
    linear-gradient(90deg, rgba(4, 8, 15, 0.14) 0%, rgba(4, 8, 15, 0.03) 50%, rgba(4, 8, 15, 0.12) 100%),
    radial-gradient(ellipse at center, rgba(4, 8, 15, 0.00) 0%, rgba(4, 8, 15, 0.08) 58%, rgba(4, 8, 15, 0.46) 100%) !important;
}

.cover-bottom-fade {
  background: linear-gradient(to bottom, rgba(4, 8, 15, 0), rgba(4, 8, 15, 0.68)) !important;
}

@media (max-width: 720px) {
  .cover-bg {
    filter: brightness(0.84) saturate(1.08) contrast(1.04) !important;
  }

  .cover-vignette {
    background:
      linear-gradient(90deg, rgba(4, 8, 15, 0.18) 0%, rgba(4, 8, 15, 0.05) 50%, rgba(4, 8, 15, 0.16) 100%),
      radial-gradient(ellipse at center, rgba(4, 8, 15, 0.02) 0%, rgba(4, 8, 15, 0.12) 58%, rgba(4, 8, 15, 0.54) 100%) !important;
  }
}
/* End startpage brighter hero background pass */
/* Borderless GTranslate switcher */
.topbar-translate .gt_float_switcher,
.portal-translate .gt_float_switcher {
  border: 0 !important;
  box-shadow: none !important;
}

.topbar-translate .gt_float_switcher .gt_options,
.portal-translate .gt_float_switcher .gt_options {
  border: 0 !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.58) !important;
}
/* End borderless GTranslate switcher */
/* Stable reserved GTranslate width */
.topbar-translate,
.portal-translate {
  flex: 0 0 96px !important;
  width: 96px !important;
  min-width: 96px !important;
  max-width: 96px !important;
}

.topbar-translate .gtranslate_wrapper,
.portal-translate .gtranslate_wrapper,
.topbar-translate .gt_float_switcher,
.portal-translate .gt_float_switcher {
  width: 86px !important;
  min-width: 86px !important;
  max-width: 86px !important;
}

.topbar-translate .gt_float_switcher,
.portal-translate .gt_float_switcher {
  position: relative !important;
}

.topbar-translate .gt_float_switcher .gt-selected .gt-current-lang,
.portal-translate .gt_float_switcher .gt-selected .gt-current-lang {
  width: 86px !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
}

.topbar-translate .gt_float_switcher .gt_options,
.portal-translate .gt_float_switcher .gt_options {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  width: 154px !important;
  min-width: 154px !important;
  max-width: 154px !important;
  z-index: 10090 !important;
}

@media (max-width: 1280px) {
  .topbar-translate,
  .portal-translate {
    flex-basis: 86px !important;
    width: 86px !important;
    min-width: 86px !important;
    max-width: 86px !important;
  }
}
/* End stable reserved GTranslate width */

/* Live QA mobile hardening - 2026-06-22 */
@media screen and (max-width: 760px) {
  html,
  body,
  .main {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
  }

  .topbar {
    height: 72px !important;
    padding: 0 12px !important;
    gap: 8px !important;
    overflow: visible !important;
  }

  .topbar-left {
    flex: 1 1 auto !important;
    max-width: calc(100vw - 152px) !important;
    min-width: 0 !important;
    padding-right: 0 !important;
  }

  .topbar-logo {
    max-width: 100% !important;
    font-size: clamp(16px, 4.9vw, 20px) !important;
    letter-spacing: 2px !important;
    overflow: hidden !important;
    text-overflow: clip !important;
  }

  .topbar-sep,
  .topbar-sub {
    display: none !important;
  }

  .topbar .topbar-menu {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed !important;
    top: 13px !important;
    right: 10px !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    z-index: 2147483647 !important;
  }

  body .topbar > .topbar-menu {
    left: min(calc(100vw - 56px), 334px) !important;
    right: auto !important;
  }

  .topbar-translate {
    position: fixed !important;
    top: 17px !important;
    left: min(calc(100vw - 142px), 250px) !important;
    right: auto !important;
    width: 78px !important;
    min-width: 78px !important;
    max-width: 78px !important;
    transform: none !important;
    z-index: 2147483000 !important;
  }

  body .gtranslate_wrapper .gt_float_switcher,
  body .topbar-translate .gt_float_switcher {
    position: fixed !important;
    top: 17px !important;
    left: min(calc(100vw - 142px), 250px) !important;
    right: auto !important;
    width: 78px !important;
    min-width: 78px !important;
    max-width: 78px !important;
    transform: none !important;
    z-index: 2147483000 !important;
  }

  .topbar-translate .gtranslate_wrapper,
  .topbar-translate .gt_float_switcher {
    width: 78px !important;
    min-width: 78px !important;
    max-width: 78px !important;
  }

  .topbar-translate .gt_float_switcher .gt-selected .gt-current-lang {
    width: 78px !important;
    padding: 8px 7px !important;
  }

  .topbar-translate .gt_float_switcher .gt_options {
    right: 0 !important;
  }

  .topbar-nav {
    max-width: 100vw !important;
  }

  .cover-content,
  .cover-title-panel,
  .cover-meta-grid,
  .cover-logline,
  .cover-podcast,
  .support-hero-content,
  .podcast-hero-content,
  .support-section,
  .podcast-section {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    min-width: 0 !important;
  }

  .cover-content {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .cover-logline,
  .cover-logline p,
  .cover-podcast-title,
  .support-hero p,
  .podcast-hero p,
  .podcast-card-copy,
  .podcast-card-copy h2,
  .section-title {
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  .support-hero h1,
  .podcast-hero h1 {
    max-width: 100% !important;
    font-size: clamp(42px, 15vw, 64px) !important;
    line-height: 0.98 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  .podcast-section-head .section-title,
  .support-section-head .section-title {
    font-size: clamp(28px, 10vw, 42px) !important;
    line-height: 1.05 !important;
  }
}
/* End live QA mobile hardening */

/* Live QA mobile text fit override - 2026-06-22 */
@media screen and (max-width: 760px) {
  body .topbar {
    left: 0 !important;
    right: 0 !important;
  }

  body .topbar .topbar-menu::before {
    content: "\2630" !important;
    display: block !important;
    color: var(--cyan) !important;
    font-family: Arial, sans-serif !important;
    font-size: 29px !important;
    line-height: 1 !important;
    text-shadow: 0 0 14px rgba(0, 212, 255, 0.8) !important;
  }

  body .topbar .topbar-menu span {
    display: none !important;
  }

  body .topbar.is-open .topbar-menu::before {
    content: "\00d7" !important;
    font-size: 36px !important;
  }

  body .cover-logline,
  body .cover-podcast,
  body .cover-podcast-title,
  body .podcast-card-copy h2,
  body .podcast-section-head h2,
  body .support-hero p,
  body .podcast-hero p {
    inline-size: 100% !important;
    max-inline-size: 100% !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    hyphens: auto !important;
  }

  body .cover-podcast-title {
    font-size: clamp(18px, 6.2vw, 24px) !important;
    line-height: 1.12 !important;
  }

  body .podcast-section-head h2,
  body .podcast-section-head .section-title {
    font-size: clamp(30px, 8.8vw, 38px) !important;
    line-height: 1.08 !important;
  }

  body .support-hero h1 {
    font-size: clamp(39px, 13vw, 54px) !important;
  }

  body .podcast-hero h1 {
    font-size: clamp(58px, 18vw, 74px) !important;
  }

  body audio,
  body .cover-podcast-player,
  body .podcast-player-panel audio {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}
/* End live QA mobile text fit override */

/* Live QA mobile containment pass - 2026-06-22 */
@media screen and (max-width: 760px) {
  body *,
  body *::before,
  body *::after {
    box-sizing: border-box;
  }

  body .cover-content,
  body .cover-title-panel,
  body .cover-meta-grid,
  body .cover-logline,
  body .cover-podcast,
  body .support-hero-content,
  body .podcast-hero-content {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body .support-hero-content,
  body .podcast-hero-content {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  body .cover-logline,
  body .cover-podcast,
  body .support-hero p,
  body .podcast-hero p,
  body .podcast-section-head,
  body .podcast-list,
  body .podcast-card,
  body .podcast-card-grid,
  body .podcast-card-copy,
  body .podcast-player-panel,
  body .podcast-support-strip {
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body .podcast-section {
    width: 100% !important;
    max-width: 100vw !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  body .podcast-section-head,
  body .podcast-card-grid,
  body .podcast-support-strip {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body .cover-podcast-top,
  body .podcast-card-meta {
    align-items: flex-start !important;
  }
}
/* End live QA mobile containment pass */

/* Public mobile burger single-source guard - 2026-06-23
   Keep the public HTML navigation aligned with the portal navigation:
   three real spans draw the icon, no pseudo glyph can create a second menu. */
@media screen and (max-width: 1280px) {
  body .topbar > .topbar-menu::before,
  body .topbar > .topbar-menu::after {
    content: none !important;
    display: none !important;
  }

  body .topbar > .topbar-menu {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
  }

  body .topbar > .topbar-menu > span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background: var(--cyan) !important;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.5) !important;
    opacity: 1;
  }

  body .topbar.is-open > .topbar-menu > span:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
  }

  body .topbar.is-open > .topbar-menu > span:nth-child(2) {
    opacity: 0 !important;
  }

  body .topbar.is-open > .topbar-menu > span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
  }
}

/* Live QA mobile edge breathing pass - 2026-06-22 */
@media screen and (max-width: 760px) {
  body .cover-title-panel,
  body .cover-meta-grid,
  body .cover-logline,
  body .cover-podcast,
  body .support-hero-content,
  body .podcast-hero-content {
    width: calc(100vw - 56px) !important;
    max-width: calc(100vw - 56px) !important;
  }

  body .cover-logo-aura {
    width: min(238px, 100%) !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  body .cover-logo-mark {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  body .cover-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body .cover-meta-item,
  body .cover-meta-value {
    min-width: 0 !important;
    overflow-wrap: break-word !important;
  }

  body .cover-podcast-title {
    font-size: clamp(18px, 5.4vw, 21px) !important;
    line-height: 1.16 !important;
  }

  body .support-hero h1 {
    font-size: clamp(36px, 11.8vw, 48px) !important;
  }

  body .support-hero-content {
    width: min(calc(100vw - 56px), 334px) !important;
    max-width: min(calc(100vw - 56px), 334px) !important;
    margin-left: 28px !important;
    margin-right: auto !important;
  }

  body .support-hero p,
  body .podcast-hero p {
    font-size: 14px !important;
    line-height: 1.58 !important;
  }

  body .podcast-section-head h2,
  body .podcast-section-head .section-title {
    font-size: clamp(25px, 8vw, 32px) !important;
    line-height: 1.1 !important;
    max-width: calc(100vw - 40px) !important;
  }

  body .podcast-hero h1 {
    font-size: clamp(50px, 16vw, 66px) !important;
  }
}
/* End live QA mobile edge breathing pass */

/* Live QA start podcast mobile word guard - 2026-06-22 */
@media screen and (max-width: 760px) {
  body .cover-podcast {
    width: min(calc(100vw - 104px), 286px) !important;
    max-width: min(calc(100vw - 104px), 286px) !important;
    margin-left: 28px !important;
    margin-right: auto !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  body .cover-podcast-title {
    display: block !important;
    max-width: 100% !important;
    font-size: 17px !important;
    line-height: 1.18 !important;
    letter-spacing: 0 !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    hyphens: auto !important;
  }

  body .cover-podcast-player {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}
/* End live QA start podcast mobile word guard */

/* Live QA mobile section text rails - 2026-06-22 */
@media screen and (max-width: 760px) {
  body .support-section-head,
  body .support-intro-grid,
  body .support-access-grid,
  body .support-tier-grid,
  body .support-cta-panel,
  body .podcast-section-head,
  body .podcast-list,
  body .podcast-support-strip {
    width: min(350px, calc(100vw - 40px)) !important;
    max-width: min(350px, calc(100vw - 40px)) !important;
    margin-left: 20px !important;
    margin-right: auto !important;
  }

  body .support-page p,
  body .podcast-page p {
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }
}
/* End live QA mobile section text rails */

/* Portal topbar active-state fix - 2026-07-09 */
@media screen and (min-width: 1281px) {
  .topbar-nav a:not(.active):not([aria-current="page"]):not(.topbar-nav-cta) {
    border: 1px solid transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 9px 2px !important;
    color: var(--silver) !important;
  }

  .topbar-nav a.active,
  .topbar-nav a[aria-current="page"] {
    border: 1px solid rgba(0, 212, 255, 0.62) !important;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.05)) !important;
    color: var(--cyan) !important;
    padding: 10px 14px !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 0 22px rgba(0, 212, 255, 0.08) !important;
    text-shadow: 0 0 18px rgba(0, 212, 255, 0.45) !important;
  }
}
/* End portal topbar active-state fix */

/* Register CTA distinction - 2026-07-09 */
.topbar-nav .topbar-nav-cta,
.topbar-nav .topbar-nav-cta.active,
.topbar-nav .topbar-nav-cta[aria-current="page"] {
  border: 1px solid rgba(60, 255, 150, 0.72) !important;
  background:
    linear-gradient(180deg, rgba(80, 255, 155, 0.24), rgba(12, 117, 62, 0.30)),
    linear-gradient(90deg, rgba(0, 36, 24, 0.92), rgba(0, 14, 18, 0.82)) !important;
  color: rgba(228, 255, 238, 0.98) !important;
  padding: 10px 16px !important;
  box-shadow:
    inset 0 1px 0 rgba(235, 255, 244, 0.28),
    inset 0 -2px 0 rgba(0, 42, 20, 0.72),
    0 0 18px rgba(43, 255, 139, 0.22),
    0 5px 0 rgba(0, 44, 23, 0.52) !important;
  text-shadow: 0 0 14px rgba(64, 255, 153, 0.48) !important;
  transform: translateY(-1px);
}

.topbar-nav .topbar-nav-cta:hover,
.topbar-nav .topbar-nav-cta:focus-visible {
  border-color: rgba(120, 255, 184, 0.98) !important;
  background:
    linear-gradient(180deg, rgba(101, 255, 174, 0.34), rgba(18, 146, 78, 0.38)),
    linear-gradient(90deg, rgba(2, 54, 35, 0.96), rgba(0, 23, 25, 0.88)) !important;
  color: #ffffff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -2px 0 rgba(0, 61, 29, 0.76),
    0 0 26px rgba(43, 255, 139, 0.34),
    0 4px 0 rgba(0, 44, 23, 0.58) !important;
}

.topbar-nav .topbar-nav-cta:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.36),
    0 0 16px rgba(43, 255, 139, 0.24) !important;
}
/* End register CTA distinction */