    /* ── Reset & Root ───────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg-deep:    #06060f;
      --bg-mid:     #0c0c1c;
      --bg-card:    rgba(12, 10, 22, 0.88);
      --gold:       #c8a84b;
      --gold-lt:    #f0d985;
      --gold-pale:  rgba(200, 168, 75, 0.12);
      --gold-glow:  rgba(200, 168, 75, 0.45);
      --ember:      #e8602a;
      --ember-lt:   #ff9060;
      --ember-glow: rgba(232, 96, 42, 0.35);
      --steel:      #7a9abf;
      --steel-lt:   #a8c8e8;
      --parchment:  #d4c4a0;
      --text:       #bfb090;
      --text-dim:   #7a6f5a;
      --green-ok:   #5abf72;
      --border:     rgba(200, 168, 75, 0.18);
      --border-hi:  rgba(200, 168, 75, 0.55);
    }

    html { font-size: 16px; scroll-behavior: smooth; }

    body {
      background: var(--bg-deep);
      color: var(--text);
      font-family: 'EB Garamond', Georgia, serif;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ── Canvas ─────────────────────────────────────────── */
    #cosmos {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    /* ── Typography ─────────────────────────────────────── */
    h1, h2, h3, h4 {
      font-family: 'Cinzel', serif;
      letter-spacing: 0.05em;
    }
    code, .mono {
      font-family: 'Fira Code', 'Consolas', monospace;
    }

    /* ── Layout ─────────────────────────────────────────── */
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    section { position: relative; z-index: 1; }

    /* ── Animations ─────────────────────────────────────── */
    @keyframes glow-pulse {
      0%, 100% { box-shadow: 0 0 10px var(--gold-glow), 0 0 24px var(--gold-glow); }
      50%       { box-shadow: 0 0 20px var(--gold-glow), 0 0 50px var(--gold-glow), 0 0 70px rgba(200,168,75,0.18); }
    }
    @keyframes shimmer {
      0%   { background-position: -300% center; }
      100% { background-position:  300% center; }
    }
    @keyframes sword-drop {
      from { transform: translateY(-40px) scaleY(0.4); opacity: 0; filter: blur(10px); }
      to   { transform: translateY(0) scaleY(1); opacity: 1; filter: blur(0); }
    }
    @keyframes rise {
      from { transform: translateY(36px); opacity: 0; }
      to   { transform: translateY(0);    opacity: 1; }
    }
    @keyframes fade {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-9px); }
    }
    @keyframes ring-spin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    @keyframes ring-spin-rev {
      from { transform: rotate(0deg); }
      to   { transform: rotate(-360deg); }
    }
    @keyframes border-march {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .fade-in-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .fade-in-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── Navigation ─────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      padding: 0.9rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(6, 6, 15, 0.82);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      text-decoration: none;
      color: var(--gold);
      font-family: 'Cinzel', serif;
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: 0.12em;
    }
    .nav-brand svg {
      width: 20px; height: 38px;
      filter: drop-shadow(0 0 5px var(--gold));
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      color: var(--text-dim);
      text-decoration: none;
      font-family: 'Cinzel', serif;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: color 0.3s, text-shadow 0.3s;
    }
    .nav-links a:hover {
      color: var(--gold-lt);
      text-shadow: 0 0 10px var(--gold-glow);
    }

    /* ── Hero ───────────────────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 2rem 5rem;
      position: relative;
      overflow: hidden;
    }

    /* Aragorn decorative figure */
    @keyframes aragorn-rise {
      from { opacity: 0; transform: translateX(50px) scale(0.97); }
      to   { opacity: 0.62; transform: translateX(0) scale(1); }
    }

    .hero-aragorn {
      position: absolute;
      right: max(-60px, calc(50% - 600px));
      bottom: -10px;
      height: min(91vh, 820px);
      width: auto;
      pointer-events: none;
      z-index: 0;
      /* invert the B&W ink drawing so lines glow on the dark background */
      filter: invert(1) sepia(0.55) hue-rotate(6deg) brightness(0.68) contrast(1.08);
      mix-blend-mode: screen;
      -webkit-mask-image: linear-gradient(
        to left,
        black 0%,
        black 42%,
        rgba(0,0,0,0.55) 62%,
        transparent 86%
      );
      mask-image: linear-gradient(
        to left,
        black 0%,
        black 42%,
        rgba(0,0,0,0.55) 62%,
        transparent 86%
      );
      animation: aragorn-rise 2s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
    }

    @media (max-width: 1000px) {
      .hero-aragorn {
        height: min(70vh, 600px);
        right: -80px;
        opacity: 0.4;
        -webkit-mask-image: linear-gradient(to left, black 0%, black 30%, transparent 72%);
        mask-image:         linear-gradient(to left, black 0%, black 30%, transparent 72%);
      }
    }
    @media (max-width: 640px) {
      .hero-aragorn { display: none; }
    }

    /* Decorative rune rings */
    .rune-ring {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      top: 50%; left: 50%;
    }
    .rune-ring-1 {
      width: 520px; height: 520px;
      border: 1px solid rgba(200,168,75,0.07);
      transform: translate(-50%, -50%);
      animation: ring-spin 80s linear infinite;
    }
    .rune-ring-2 {
      width: 680px; height: 680px;
      border: 1px dashed rgba(200,168,75,0.04);
      transform: translate(-50%, -50%);
      animation: ring-spin-rev 120s linear infinite;
    }
    /* Runic tickmarks on outer ring */
    .rune-ring-2::before {
      content: '✦';
      position: absolute;
      top: -0.6em; left: 50%;
      transform: translateX(-50%);
      color: rgba(200,168,75,0.2);
      font-size: 0.7rem;
    }
    .rune-ring-2::after {
      content: '✦';
      position: absolute;
      bottom: -0.6em; left: 50%;
      transform: translateX(-50%);
      color: rgba(200,168,75,0.2);
      font-size: 0.7rem;
    }

    .hero-sword {
      animation: sword-drop 1.4s cubic-bezier(0.16, 1, 0.3, 1) both,
                 float 7s ease-in-out 1.5s infinite;
      margin-bottom: 2.2rem;
      filter: drop-shadow(0 0 14px var(--ember))
              drop-shadow(0 0 30px var(--gold-glow));
    }

    .hero-eyebrow {
      font-family: 'Cinzel', serif;
      font-size: 0.72rem;
      letter-spacing: 0.42em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.75;
      margin-bottom: 0.7rem;
      animation: rise 1s 0.9s both;
    }

    .hero-title {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(3.8rem, 12vw, 8rem);
      font-weight: 900;
      line-height: 1;
      background: linear-gradient(
        130deg,
        var(--gold-lt)  0%,
        var(--gold)     35%,
        var(--ember-lt) 65%,
        var(--gold-lt)  100%
      );
      background-size: 300% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: rise 1s 1.05s both, shimmer 6s linear 2.2s infinite;
      margin-bottom: 0.25rem;
    }

    .hero-subtitle {
      font-family: 'Cinzel', serif;
      font-size: clamp(0.65rem, 1.8vw, 0.85rem);
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: var(--steel-lt);
      margin-bottom: 1.8rem;
      animation: rise 1s 1.25s both;
    }

    .hero-tagline {
      font-size: clamp(1.05rem, 2.5vw, 1.3rem);
      font-style: italic;
      color: var(--parchment);
      max-width: 560px;
      line-height: 1.65;
      margin: 0 auto 2.6rem;
      animation: rise 1s 1.45s both;
    }
    .hero-tagline em {
      font-style: normal;
      color: var(--gold-lt);
      text-shadow: 0 0 14px var(--gold-glow);
    }

    .hero-cta {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
      justify-content: center;
      animation: rise 1s 1.65s both;
      margin-bottom: 3rem;
    }

    /* Buttons */
    .btn-forge {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.75rem 1.9rem;
      background: linear-gradient(130deg, #7a5a10, var(--gold), #a87820);
      background-size: 220% auto;
      color: #09090f;
      font-family: 'Fira Code', monospace;
      font-size: 0.82rem;
      font-weight: 600;
      text-decoration: none;
      border: none;
      border-radius: 2px;
      cursor: pointer;
      transition: background-position 0.4s, box-shadow 0.4s, transform 0.2s;
      box-shadow: 0 0 20px rgba(200,168,75,0.28);
    }
    .btn-forge:hover {
      background-position: right center;
      box-shadow: 0 0 32px rgba(200,168,75,0.6), 0 0 64px rgba(200,168,75,0.18);
      transform: translateY(-2px);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.75rem 1.9rem;
      background: transparent;
      color: var(--gold);
      font-family: 'Cinzel', serif;
      font-size: 0.76rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-decoration: none;
      border: 1px solid var(--border-hi);
      border-radius: 2px;
      transition: background 0.3s, box-shadow 0.3s, transform 0.2s, color 0.3s;
    }
    .btn-ghost:hover {
      background: var(--gold-pale);
      box-shadow: 0 0 22px var(--gold-glow);
      transform: translateY(-2px);
      color: var(--gold-lt);
    }

    .hero-badges {
      display: flex;
      gap: 0.7rem;
      flex-wrap: wrap;
      justify-content: center;
      animation: fade 1s 2.2s both;
    }
    .badge {
      padding: 0.25rem 0.75rem;
      background: rgba(200,168,75,0.07);
      border: 1px solid rgba(200,168,75,0.18);
      border-radius: 999px;
      font-family: 'Fira Code', monospace;
      font-size: 0.7rem;
      color: var(--text-dim);
    }

    /* ── Section chrome ──────────────────────────────────── */
    .s-eyebrow {
      font-family: 'Cinzel', serif;
      font-size: 0.68rem;
      letter-spacing: 0.45em;
      text-transform: uppercase;
      color: var(--ember);
      margin-bottom: 0.75rem;
    }
    .s-title {
      font-size: clamp(1.7rem, 4vw, 2.6rem);
      color: var(--gold-lt);
      text-shadow: 0 0 28px rgba(200,168,75,0.28);
      margin-bottom: 0.9rem;
    }
    .s-desc {
      font-size: 1.05rem;
      color: var(--text-dim);
      max-width: 540px;
      margin: 0 auto;
      font-style: italic;
    }
    .s-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .divider {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin: 5rem 0;
      opacity: 0.28;
    }
    .divider::before, .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .divider-rune {
      font-size: 1.1rem;
      color: var(--gold);
      letter-spacing: 0.6em;
    }

    /* ── Features ───────────────────────────────────────── */
    #features { padding: 8rem 0; }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
      gap: 1.4rem;
    }

    .feat-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 1.9rem;
      position: relative;
      overflow: hidden;
      transition: border-color 0.4s, transform 0.3s, box-shadow 0.4s;
    }
    .feat-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(200,168,75,0.04), transparent 55%);
      pointer-events: none;
    }
    .feat-card:hover {
      border-color: var(--border-hi);
      transform: translateY(-4px);
      box-shadow: 0 8px 40px rgba(200,168,75,0.1), 0 0 0 1px rgba(200,168,75,0.08);
    }

    .feat-card.hero-feat {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: 3.5rem 1fr;
      gap: 1.4rem;
      align-items: start;
      background: linear-gradient(130deg, rgba(200,168,75,0.06), rgba(232,96,42,0.04), var(--bg-card));
      border-color: rgba(200,168,75,0.28);
    }
    .feat-card.hero-feat:hover {
      animation: glow-pulse 2.5s ease-in-out infinite;
    }

    .feat-icon { font-size: 2rem; margin-bottom: 0.9rem; display: block; }
    .hero-feat .feat-icon { margin-bottom: 0; font-size: 2.4rem; }

    .feat-title {
      font-family: 'Cinzel', serif;
      font-size: 0.95rem;
      color: var(--gold);
      margin-bottom: 0.5rem;
      letter-spacing: 0.06em;
    }
    .feat-desc { font-size: 0.93rem; color: var(--text); line-height: 1.6; }
    .feat-tag {
      display: inline-block;
      margin-top: 0.75rem;
      padding: 0.18rem 0.55rem;
      background: rgba(200,168,75,0.07);
      border: 1px solid rgba(200,168,75,0.16);
      border-radius: 2px;
      font-family: 'Fira Code', monospace;
      font-size: 0.68rem;
      color: var(--text-dim);
    }

    /* ── Install ─────────────────────────────────────────── */
    #install { padding: 8rem 0; }

    /* Channels overview grid */
    .channels-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 1rem;
      margin: 0 auto 2.8rem;
      max-width: 900px;
    }
    .channel-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 1.2rem 1rem 1rem;
      text-align: center;
      transition: border-color 0.3s, transform 0.3s;
    }
    .channel-card:hover {
      border-color: rgba(200,168,75,0.45);
      transform: translateY(-3px);
    }
    .channel-icon { font-size: 1.6rem; margin-bottom: 0.45rem; line-height: 1; }
    .channel-icon img { width: 2rem; height: 2rem; object-fit: contain; }
    .channel-name {
      font-family: 'Cinzel', serif;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      color: var(--gold);
      margin-bottom: 0.25rem;
    }
    .channel-desc {
      font-size: 0.72rem;
      color: var(--text-dim);
      margin-bottom: 0.65rem;
    }
    .channel-cmd {
      display: block;
      font-family: 'Fira Code', monospace;
      font-size: 0.7rem;
      color: var(--steel-lt);
      background: rgba(0,0,0,0.4);
      padding: 0.3rem 0.5rem;
      border-radius: 2px;
      word-break: break-all;
    }

    .install-wrap { max-width: 855px; margin: 0 auto; }

    .tab-bar {
      display: flex;
      flex-wrap: wrap;
      border-bottom: 1px solid var(--border);
    }

    /* AUR table inside tab panel */
    .aur-table {
      border: 1px solid var(--border);
      border-radius: 3px;
      overflow: hidden;
      margin-bottom: 0.2rem;
    }
    .aur-row {
      display: grid;
      grid-template-columns: 2fr 1fr 0.6fr;
      gap: 0.5rem;
      padding: 0.55rem 1rem;
      font-size: 0.82rem;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      align-items: center;
    }
    .aur-row:last-child { border-bottom: none; }
    .aur-row.header {
      background: rgba(200,168,75,0.07);
      font-family: 'Cinzel', serif;
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      color: var(--text-dim);
    }
    .aur-row a { color: var(--steel-lt); text-decoration: none; }
    .aur-row a:hover { color: var(--gold); }
    .chip-yes { color: #5abf72; font-weight: 700; }
    .chip-no  { color: var(--text-dim); }

    .tab-btn {
      padding: 0.65rem 1.4rem;
      background: none;
      border: none;
      border-bottom: 2px solid transparent;
      color: var(--text-dim);
      font-family: 'Cinzel', serif;
      font-size: 0.76rem;
      letter-spacing: 0.12em;
      cursor: pointer;
      margin-bottom: -1px;
      transition: color 0.3s, border-color 0.3s;
    }
    .tab-btn.active, .tab-btn:hover {
      color: var(--gold);
      border-color: var(--gold);
    }

    .tab-panel {
      display: none;
      background: rgba(6, 5, 14, 0.92);
      border: 1px solid var(--border);
      border-top: none;
      border-radius: 0 0 4px 4px;
      padding: 1.8rem;
    }
    .tab-panel.active { display: block; }

    .tab-intro {
      font-size: 0.88rem;
      color: var(--text-dim);
      font-style: italic;
      margin-bottom: 1.1rem;
    }

    .code-wrap {
      position: relative;
      margin: 0.9rem 0;
    }
    .code-block {
      background: rgba(0,0,0,0.55);
      border-left: 3px solid var(--ember);
      padding: 1.1rem 1.4rem 1.1rem 1.3rem;
      border-radius: 0 3px 3px 0;
      font-family: 'Fira Code', monospace;
      font-size: 0.83rem;
      line-height: 1.75;
      color: #d4d4d4;
      overflow-x: auto;
    }
    .c-comment { color: var(--text-dim); font-style: italic; }
    .c-cmd     { color: #9cdcfe; }
    .c-arg     { color: var(--ember-lt); }
    .c-flag    { color: #4ec9b0; }
    .c-string  { color: #ce9178; }

    .copy-btn {
      position: absolute;
      top: 0.4rem; right: 0.4rem;
      background: rgba(200,168,75,0.08);
      border: 1px solid var(--border);
      color: var(--text-dim);
      padding: 0.2rem 0.55rem;
      font-family: 'Fira Code', monospace;
      font-size: 0.64rem;
      cursor: pointer;
      border-radius: 2px;
      transition: background 0.25s, color 0.25s;
    }
    .copy-btn:hover { background: rgba(200,168,75,0.18); color: var(--gold); }

    .install-note {
      font-size: 0.85rem;
      color: var(--text-dim);
      margin-top: 1rem;
      padding: 0.75rem 1rem;
      background: rgba(200,168,75,0.04);
      border-left: 2px solid rgba(200,168,75,0.2);
      line-height: 1.6;
    }
    .install-note code {
      font-size: 0.82rem;
      color: var(--steel-lt);
    }
    .install-note a {
      color: var(--gold);
      text-decoration: underline;
      text-decoration-color: rgba(200,168,75,0.4);
      text-underline-offset: 2px;
    }
    .install-note a:hover {
      text-decoration-color: var(--gold);
    }

    /* ── GPU ─────────────────────────────────────────────── */
    #gpu { padding: 8rem 0; }

    .gpu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
      gap: 1.4rem;
    }
    .gpu-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 1.7rem 1.4rem;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .gpu-card:hover { transform: translateY(-4px); }

    .gpu-card.ok      { border-color: rgba(90,191,114,0.4); }
    .gpu-card.ok:hover{ box-shadow: 0 4px 28px rgba(90,191,114,0.18); }
    .gpu-card.warn    { border-color: rgba(200,168,75,0.3); }
    .gpu-card.warn:hover{ box-shadow: 0 4px 28px rgba(200,168,75,0.14); }
    .gpu-card.dim     { border-color: rgba(100,100,140,0.25); opacity: 0.6; }

    .gpu-vendor  { font-size: 2.6rem; margin-bottom: 0.45rem; }
    .gpu-name    { font-family: 'Cinzel', serif; font-size: 0.88rem; color: var(--gold); margin-bottom: 0.25rem; }
    .gpu-driver  { font-family: 'Fira Code', monospace; font-size: 0.68rem; color: var(--text-dim); margin-bottom: 1.1rem; }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      justify-content: center;
      margin-bottom: 1rem;
    }
    .chip {
      padding: 0.18rem 0.5rem;
      border-radius: 2px;
      font-family: 'Fira Code', monospace;
      font-size: 0.63rem;
    }
    .chip.ok      { background: rgba(90,191,114,0.12); border: 1px solid rgba(90,191,114,0.3);  color: var(--green-ok); }
    .chip.warn    { background: rgba(200,168,75,0.10); border: 1px solid rgba(200,168,75,0.25); color: var(--gold); }
    .chip.none    { background: rgba(100,100,140,0.10); border: 1px solid rgba(100,100,140,0.2); color: #66668a; }

    .gpu-label {
      font-family: 'Cinzel', serif;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      padding: 0.28rem 0.8rem;
      border-radius: 999px;
    }
    .gpu-label.ok     { background: rgba(90,191,114,0.12); color: var(--green-ok); }
    .gpu-label.warn   { background: rgba(200,168,75,0.10); color: var(--gold); }
    .gpu-label.dim    { background: rgba(100,100,140,0.10); color: #8888aa; }

    .gpu-footnote {
      margin-top: 2rem;
      text-align: center;
      font-size: 0.83rem;
      color: var(--text-dim);
      font-style: italic;
    }

    /* ── Keybindings ─────────────────────────────────────── */
    #keybindings { padding: 6rem 0; }

    .keys-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 0.7rem;
    }
    .key-row {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      padding: 0.65rem 0.9rem;
      background: var(--bg-card);
      border: 1px solid rgba(200,168,75,0.1);
      border-radius: 2px;
    }
    kbd {
      display: inline-block;
      padding: 0.18rem 0.5rem;
      background: rgba(200,168,75,0.1);
      border: 1px solid rgba(200,168,75,0.3);
      border-bottom: 2px solid rgba(200,168,75,0.42);
      border-radius: 3px;
      font-family: 'Fira Code', monospace;
      font-size: 0.72rem;
      color: var(--gold);
      white-space: nowrap;
      min-width: 2.2rem;
      text-align: center;
    }
    .key-desc { font-size: 0.86rem; color: var(--text); }

    /* ── Comparison ──────────────────────────────────────── */
    #comparison { padding: 8rem 0; }

    .table-scroll { overflow-x: auto; border-radius: 3px; }

    table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
    thead tr { background: rgba(200,168,75,0.07); border-bottom: 1px solid var(--border-hi); }
    th {
      padding: 0.9rem 1.1rem;
      font-family: 'Cinzel', serif;
      font-size: 0.76rem;
      letter-spacing: 0.1em;
      text-align: left;
      color: var(--gold);
      white-space: nowrap;
    }
    th:first-child { color: var(--text-dim); }
    th:last-child  { color: var(--gold-lt); }
    td {
      padding: 0.75rem 1.1rem;
      border-bottom: 1px solid rgba(200,168,75,0.05);
      color: var(--text);
      white-space: nowrap;
    }
    tr:last-child td { border-bottom: none; }
    tr:hover td { background: rgba(200,168,75,0.025); }
    td:last-child { color: var(--gold-lt); font-weight: 500; }
    .chk  { color: var(--green-ok); }
    .crss { color: #585870; }
    .part { color: var(--gold); }

    /* ── Roadmap ─────────────────────────────────────────── */
    #roadmap { padding: 8rem 0; }

    .roadmap-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 2.5rem;
    }
    .rm-col h3 {
      font-family: 'Cinzel', serif;
      font-size: 0.88rem;
      letter-spacing: 0.14em;
      color: var(--gold);
      margin-bottom: 1.4rem;
      padding-bottom: 0.7rem;
      border-bottom: 1px solid var(--border);
    }
    .rm-item {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      margin-bottom: 0.9rem;
      padding: 0.5rem 0.6rem;
      border-radius: 2px;
      transition: background 0.3s;
    }
    .rm-item:hover { background: rgba(200,168,75,0.04); }
    .rm-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 0.55rem;
    }
    .rm-dot.near   { background: var(--ember);  box-shadow: 0 0 6px var(--ember-glow); }
    .rm-dot.mid    { background: var(--gold);   box-shadow: 0 0 6px var(--gold-glow); }
    .rm-dot.far    { background: var(--steel);  box-shadow: 0 0 5px rgba(122,154,191,0.4); }
    .rm-text { font-size: 0.88rem; color: var(--text); line-height: 1.5; }
    .rm-text code { font-size: 0.82rem; color: var(--steel-lt); }

    /* ── Footer ──────────────────────────────────────────── */
    footer {
      position: relative;
      z-index: 1;
      padding: 5rem 2rem 3rem;
      text-align: center;
      border-top: 1px solid var(--border);
      background: linear-gradient(180deg, transparent, rgba(200,168,75,0.025));
    }
    .footer-quote {
      font-style: italic;
      font-size: 1.1rem;
      color: var(--parchment);
      max-width: 480px;
      margin: 0 auto 0.45rem;
      opacity: 0.65;
    }
    .footer-attr {
      font-family: 'Cinzel', serif;
      font-size: 0.7rem;
      color: var(--text-dim);
      letter-spacing: 0.2em;
      margin-bottom: 3rem;
    }
    .footer-links {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }
    .footer-links a {
      color: var(--text-dim);
      text-decoration: none;
      font-family: 'Cinzel', serif;
      font-size: 0.76rem;
      letter-spacing: 0.1em;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy { font-size: 0.75rem; color: var(--text-dim); opacity: 0.45; }

    /* ── Responsive ──────────────────────────────────────── */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .rune-ring-1 { width: 280px; height: 280px; }
      .rune-ring-2 { width: 360px; height: 360px; }
      .feat-card.hero-feat { grid-template-columns: 1fr; }
    }

    /* ── DSGVO Banner ──────────────────────────────────────── */
    #dsgvo-banner {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 9000;
      padding: 0 1.5rem 1.5rem;
      pointer-events: none;
    }
    #dsgvo-banner[hidden] { display: none; }

    .dsgvo-inner {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      background: rgba(8, 7, 18, 0.96);
      border: 1px solid var(--border-hi);
      border-radius: 4px;
      padding: 1rem 1.4rem;
      pointer-events: all;
      box-shadow: 0 -4px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(200,168,75,0.06);
      animation: rise 0.5s ease both;
    }

    .dsgvo-text {
      flex: 1;
      font-size: 0.84rem;
      color: var(--text-dim);
      line-height: 1.6;
      min-width: 200px;
    }
    .dsgvo-text strong { color: var(--text); }
    .dsgvo-text a {
      color: var(--gold);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .dsgvo-text a:hover { color: var(--gold-lt); }

    .dsgvo-btn {
      flex-shrink: 0;
      padding: 0.55rem 1.4rem;
      background: var(--gold-pale);
      border: 1px solid var(--border-hi);
      border-radius: 2px;
      color: var(--gold);
      font-family: 'Cinzel', serif;
      font-size: 0.76rem;
      letter-spacing: 0.1em;
      cursor: pointer;
      transition: background 0.25s, box-shadow 0.25s, color 0.25s;
      white-space: nowrap;
    }
    .dsgvo-btn:hover {
      background: rgba(200,168,75,0.22);
      box-shadow: 0 0 16px var(--gold-glow);
      color: var(--gold-lt);
    }

    /* ── Impressum ───────────────────────────────────────── */
    .impressum {
      margin-top: 3rem;
      border-top: 1px solid var(--border);
      text-align: left;
    }

    .impressum summary {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.75rem 1.2rem;
      cursor: pointer;
      list-style: none;
      font-family: 'Cinzel', serif;
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-dim);
      user-select: none;
      transition: color 0.3s;
    }
    .impressum summary::-webkit-details-marker { display: none; }
    .impressum summary::marker { display: none; }

    .impressum summary:hover { color: var(--gold); }

    .impressum-arrow {
      display: inline-block;
      font-size: 0.6rem;
      transition: transform 0.3s ease;
    }
    .impressum[open] .impressum-arrow { transform: rotate(90deg); }

    .impressum-body {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 2rem;
      padding: 1.6rem 1.2rem 2rem;
      border-top: 1px solid rgba(200,168,75,0.08);
    }

    .impressum-col h4 {
      font-family: 'Cinzel', serif;
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.85rem;
    }

    .impressum-col p, .impressum-col a {
      font-size: 0.83rem;
      color: var(--text-dim);
      line-height: 1.7;
      text-decoration: none;
    }
    .impressum-col a:hover { color: var(--gold); text-decoration: underline; }
