  :root {
    --bg: #17191d;
    --bg-2: #1d1f23;
    --surface: #22252a;
    --surface-2: #282b31;

    --ink: #f5f3eb;
    --ink-2: #c8c5bc;
    --muted: #7b7b73;
    --muted-2: #4f4f49;

    --line: rgba(255, 255, 255, 0.07);
    --line-strong: rgba(255, 255, 255, 0.13);

    --y: #f5d000;
    --y-soft: #ffe85c;
    --y-ink: #14110a;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.4), 0 6px 16px rgba(0,0,0,0.22);
    --shadow-md: 0 2px 6px rgba(0,0,0,0.35), 0 16px 32px rgba(0,0,0,0.32);
    --inset: inset 0 1px 0 rgba(255,255,255,0.06);
  }

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

  html, body {
    background: var(--bg);
    color: var(--ink);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-feature-settings: "ss01", "cv11", "tnum";
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  html.lenis, html.lenis body { height: auto; }
  .lenis.lenis-smooth { scroll-behavior: auto !important; }

  a { color: inherit; text-decoration: none; }
  img, video { max-width: 100%; display: block; }
  ::selection { background: var(--y); color: var(--y-ink); }

  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
  .wrap-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

  /* ====================================================
     NAV
     ==================================================== */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(14,15,17,0.75) 0%, rgba(14,15,17,0.5) 70%, rgba(14,15,17,0) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 32px;
  }
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.005em;
  }
  .brand img { height: 22px; }
  nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
  }
  nav a {
    position: relative;
    color: var(--muted);
    transition: color 0.18s;
    padding: 8px 14px;
  }
  nav a:hover { color: var(--ink); }
  nav a.active { color: var(--ink); }
  nav a.active::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 2px;
    background: var(--y);
    border-radius: 2px;
  }

  /* ====================================================
     HERO  (editorial wordmark, no buttons, no slop)
     ==================================================== */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    padding: 140px 0 0;
    isolation: isolate;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
    opacity: 0.85;
    filter: saturate(1.05) contrast(1.05);
  }
  .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(70% 60% at 70% 30%, transparent 0%, rgba(23,25,29,0.35) 55%, rgba(23,25,29,0.7) 100%),
      linear-gradient(180deg, rgba(23,25,29,0.3) 0%, rgba(23,25,29,0.18) 25%, rgba(23,25,29,0.55) 65%, rgba(23,25,29,0.92) 88%, var(--bg) 100%);
  }
  .hero-inner { position: relative; z-index: 2; }
  .hero-inner {
    display: block;
    padding-bottom: 80px;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
    width: 100%;
  }
  .wordmark {
    font-size: clamp(72px, 16vw, 220px);
    font-weight: 600;
    line-height: 0.84;
    letter-spacing: -0.06em;
    color: var(--ink);
  }
  .wordmark .star {
    color: var(--y);
    display: inline-block;
    transform: translateY(-0.05em);
    font-weight: 500;
  }
  .wordmark .row { display: block; }
  .wordmark .row.two { color: var(--y); }
  .wordmark .row .three {
    display: inline-flex;
    align-items: center;
    margin-left: 0.18em;
    gap: 0.06em;
    vertical-align: -0.02em;
  }
  .wordmark .row .three i {
    display: inline-block;
    width: 0.085em;
    height: 0.92em;
    background: var(--y);
    border-radius: 2px;
  }
  .hero-meta {
    text-align: right;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    max-width: 240px;
  }
  .hero-meta b { display: block; color: var(--ink); font-weight: 500; margin-bottom: 2px; }
  .hero-meta hr { border: none; height: 1px; background: var(--line); margin: 16px 0; }

  .hero-links {
    grid-column: 1 / -1;
    display: flex;
    gap: 24px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .hero-links a {
    font-size: 14px;
    color: var(--ink-2);
    transition: color 0.18s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .hero-links a::after { content: "↗"; color: var(--muted); transition: color 0.18s; }
  .hero-links a:hover { color: var(--y); }
  .hero-links a:hover::after { color: var(--y); }

  .hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-scroll::after {
    content: "";
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--muted), transparent);
  }

  /* ====================================================
     COMMON TYPE
     ==================================================== */
  .num {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
  }
  h2.display {
    font-size: clamp(40px, 7vw, 96px);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: var(--ink);
  }
  h2.mid {
    font-size: clamp(32px, 4.2vw, 56px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.03em;
  }
  p.body {
    color: var(--ink-2);
    font-size: 18px;
    line-height: 1.55;
    max-width: 60ch;
  }
  p.body.small {
    font-size: 16px;
    color: var(--ink-2);
  }
  .arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--ink);
    padding-bottom: 3px;
    border-bottom: 1px solid var(--line-strong);
    transition: color 0.18s, border-color 0.18s;
  }
  .arrow-link:hover { color: var(--y); border-color: var(--y); }
  .arrow-link::after { content: "→"; }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.005em;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
    user-select: none;
    white-space: nowrap;
  }
  .btn:active { transform: translateY(0.5px); }

  .btn-primary {
    background: linear-gradient(180deg, #ffe04a 0%, var(--y) 100%);
    color: var(--y-ink);
    box-shadow:
      inset 0 0 0 1px rgba(0,0,0,0.10),
      inset 0 1px 0 rgba(255,255,255,0.55),
      inset 0 -1px 0 rgba(0,0,0,0.12),
      0 1px 2px rgba(0,0,0,0.35),
      0 0 0 0 rgba(245,208,0,0);
  }
  .btn-primary:hover {
    background: linear-gradient(180deg, #ffe85c 0%, #ffd91a 100%);
    box-shadow:
      inset 0 0 0 1px rgba(0,0,0,0.10),
      inset 0 1px 0 rgba(255,255,255,0.6),
      inset 0 -1px 0 rgba(0,0,0,0.12),
      0 2px 4px rgba(0,0,0,0.35),
      0 0 0 4px rgba(245,208,0,0.12);
  }
  .btn-primary:active {
    box-shadow:
      inset 0 0 0 1px rgba(0,0,0,0.15),
      inset 0 1px 2px rgba(0,0,0,0.18),
      0 0 0 0 rgba(245,208,0,0);
  }

  .btn-secondary {
    background: linear-gradient(180deg, #2c2f35 0%, #23262b 100%);
    color: var(--ink);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.08),
      inset 0 1px 0 rgba(255,255,255,0.06),
      inset 0 -1px 0 rgba(0,0,0,0.4),
      0 1px 2px rgba(0,0,0,0.35);
  }
  .btn-secondary:hover {
    background: linear-gradient(180deg, #34373d 0%, #292c32 100%);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.12),
      inset 0 1px 0 rgba(255,255,255,0.08),
      inset 0 -1px 0 rgba(0,0,0,0.4),
      0 2px 4px rgba(0,0,0,0.4);
  }
  .btn-secondary:active {
    background: linear-gradient(180deg, #1f2228 0%, #1c1f25 100%);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.06),
      inset 0 1px 2px rgba(0,0,0,0.3);
  }

  .btn .arr { transition: transform 0.18s ease; display: inline-block; }
  .btn:hover .arr { transform: translateX(2px); }

  /* ====================================================
     INTRO SECTION
     ==================================================== */
  .intro {
    padding: 140px 0 80px;
  }
  .intro-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
  }
  .intro-inner .col-left .num { margin-bottom: 28px; }
  .intro h2 {
    font-size: clamp(40px, 5.6vw, 80px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.035em;
  }
  .intro h2 .y { color: var(--y); }
  .intro p { margin-bottom: 24px; }
  .intro .col-right {
    padding-top: 8px;
  }
  .intro .actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
  }

  .trailer {
    margin-top: 100px;
    position: relative;
  }
  .trailer-meta {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 16px;
  }
  .trailer-meta .left .num { display: block; margin-bottom: 6px; }
  .trailer-meta .left .title {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
  }
  .trailer-meta .right {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .trailer-frame {
    aspect-ratio: 16 / 9;
    background: #050505;
    border: 1px solid var(--line);
    overflow: hidden;
  }
  .trailer-frame video {
    width: 100%; height: 100%; object-fit: cover;
  }
  .trailer-frame iframe {
    width: 100%; height: 100%; border: 0; display: block;
  }

  /* ====================================================
     CHAPTER  (re-usable section frame)
     ==================================================== */
  .chapter {
    padding: 140px 0;
  }
  .chapter-tight { padding: 100px 0; }
  .chapter-head {
    display: flex;
    align-items: baseline;
    gap: 28px;
    margin-bottom: 56px;
  }
  .chapter-head .num { flex-shrink: 0; min-width: 64px; }

  /* ====================================================
     GENERATORS  (editorial cards, less polish)
     ==================================================== */
  .gen-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: end;
  }
  .gen-intro .right {
    padding-bottom: 8px;
  }
  .gen-intro .right p { color: var(--ink-2); font-size: 15px; }
  .gen-intro .right p + p { margin-top: 16px; color: var(--muted); }

  .gen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .gen-item {
    background: var(--bg);
    padding: 0;
  }
  .gen-item .gen-vid {
    aspect-ratio: 1 / 1;
    background: #050505;
    overflow: hidden;
  }
  .gen-item .gen-vid video {
    width: 100%; height: 100%; object-fit: cover;
  }
  .gen-item .gen-info {
    padding: 22px 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
  }
  .gen-item h4 {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .gen-item .gen-status {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
  }
  .gen-item .gen-status.live { color: var(--ink-2); }
  .gen-item .gen-status.soon { color: var(--y); }

  /* ====================================================
     ROCK FEATURED
     ==================================================== */
  .rock {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
    margin-top: 60px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .rock .rock-text {
    padding: 60px 60px 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .rock h3 {
    font-size: clamp(36px, 4.2vw, 56px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
  }
  .rock h3 em { font-style: normal; color: var(--y); }
  .rock p { color: var(--ink-2); font-size: 17px; margin-bottom: 24px; }
  .rock p.note { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
  .rock .rock-vid {
    aspect-ratio: 4/3;
    background: #050505;
    border-left: 1px solid var(--line);
    overflow: hidden;
  }
  .rock .rock-vid video {
    width: 100%; height: 100%; object-fit: cover;
  }

  /* ====================================================
     CONVERSION
     ==================================================== */
  .conv-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 56px;
  }
  .conv-intro h2 { color: var(--ink); }
  .conv-intro h2 em { font-style: normal; color: var(--y); }
  .conv-intro .right p { color: var(--ink-2); font-size: 15px; }
  .conv-intro .right p.note { color: var(--muted); margin-top: 16px; font-size: 14px; }
  .conv-intro .right a { margin-top: 18px; display: inline-flex; }

  .ba-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .ba {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .ba-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    position: relative;
  }
  .ba-pair > div {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
  }
  .ba-pair img {
    width: 100%; height: 100%; object-fit: cover;
  }
  .ba-pair > div::after {
    content: attr(data-tag);
    position: absolute;
    top: 12px; left: 12px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
  }
  .ba-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 13px;
    color: var(--muted);
    padding-top: 6px;
    border-top: 1px solid var(--line);
  }
  .ba-meta b { color: var(--ink); font-weight: 500; }

  /* ====================================================
     EXPORT
     ==================================================== */
  .export-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
  }
  .export-list {
    list-style: none;
  }
  .export-list li {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: baseline;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    gap: 20px;
  }
  .export-list li .idx {
    color: var(--muted-2);
    font-variant-numeric: tabular-nums;
    font-size: 13px;
  }
  .export-list li .name {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--ink);
  }
  .export-list li .ext {
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .export-list li.coming .name { color: var(--muted); }
  .export-list li.coming .ext { color: var(--muted-2); }
  .export-video {
    aspect-ratio: 4 / 5;
    background: #050505;
    overflow: hidden;
    border: 1px solid var(--line);
  }
  .export-video video { width: 100%; height: 100%; object-fit: cover; }

  /* ====================================================
     PALETTE
     ==================================================== */
  .palette-frame {
    aspect-ratio: 16 / 8;
    background: #050505;
    border: 1px solid var(--line);
    overflow: hidden;
    margin-top: 40px;
  }
  .palette-frame video { width: 100%; height: 100%; object-fit: cover; }

  /* ====================================================
     ASSET LIBRARY
     ==================================================== */
  .asset-library-frame {
    background: #050505;
    border: 1px solid var(--line);
    overflow: hidden;
    margin-top: 40px;
  }
  .asset-library-frame img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ====================================================
     MODIFIER STACK
     ==================================================== */
  .modifier-frame {
    aspect-ratio: 16 / 9;
    background: #050505;
    border: 1px solid var(--line);
    overflow: hidden;
    margin-top: 40px;
  }
  .modifier-frame video { width: 100%; height: 100%; object-fit: cover; }

  /* ====================================================
     MODDED BLOCKS
     ==================================================== */
  .modded {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    margin-top: 60px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .modded .modded-text {
    padding: 60px 60px 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .modded h3 {
    font-size: clamp(36px, 4.2vw, 56px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
  }
  .modded h3 em { font-style: normal; color: var(--y); }
  .modded p { color: var(--ink-2); font-size: 17px; margin-bottom: 24px; }
  .modded p.note { color: var(--muted); font-size: 14px; margin-bottom: 0; }
  .modded .modded-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
  }
  .modded .modded-tags span {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-2);
    padding: 6px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(255,255,255,0.02);
  }
  .modded .modded-tags span.vanilla { color: var(--ink); }
  .modded .modded-tags span.mod { color: var(--y); border-color: rgba(245,208,0,0.3); }
  .modded .modded-vid {
    aspect-ratio: 4/3;
    background: #050505;
    border-left: 1px solid var(--line);
    overflow: hidden;
  }
  .modded .modded-vid video {
    width: 100%; height: 100%; object-fit: cover;
  }

  /* ====================================================
     BLENDER PARTNER
     ==================================================== */
  .blender {
    display: grid;
    grid-template-columns: 1fr 1.4fr auto;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .blender .blender-logo {
    width: 96px;
    height: 96px;
    border-radius: 18px;
    background: #f5f3eb;
    display: grid;
    place-items: center;
    padding: 14px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
  }
  .blender .blender-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  .blender h3 {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .blender h3 em { font-style: normal; color: var(--y); }
  .blender p { color: var(--ink-2); font-size: 16px; max-width: 56ch; }

  /* ====================================================
     MODS
     ==================================================== */
  .mods-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
  }
  .mods-intro h2 em { font-style: normal; color: var(--y); }
  .mods-intro .right p { color: var(--ink-2); font-size: 15px; }
  .mods-intro .right p + p { margin-top: 16px; color: var(--muted); }

  .mods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .mod {
    padding: 40px 32px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .mod:last-child { border-right: 0; }
  .mod-num {
    font-size: 12px;
    color: var(--muted);
  }
  .mod-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #f5f3eb;
    display: grid;
    place-items: center;
    padding: 8px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
  }
  .mod-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  .mod h4 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.02em;
  }
  .mod p {
    color: var(--muted);
    font-size: 14.5px;
    flex: 1;
  }
  .mod .formats {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--y);
    text-transform: uppercase;
  }

  /* ====================================================
     PRICING (colored cards)
     ==================================================== */
  .pricing-head {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
  }
  .pricing-head h2 em { font-style: normal; color: var(--y); }
  .pricing-head .right p { color: var(--ink-2); font-size: 15px; }

  .plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .plan {
    border-radius: 22px;
    padding: 28px 26px 30px;
    display: flex;
    flex-direction: column;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.5),
      0 1px 2px rgba(0,0,0,0.3),
      0 12px 32px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
  }
  .plan-trial      { background: #f5f3eb; color: #14110a; }
  .plan-studio     { background: linear-gradient(180deg, #ffe04a 0%, #f5cf00 100%); color: #14110a; }
  .plan-commercial { background: linear-gradient(180deg, #c4d8f5 0%, #a8c4ea 100%); color: #15243f; }
  .plan-supporter  { background: linear-gradient(180deg, #e5d4b8 0%, #d4bf99 100%); color: #2e2113; }

  .plan-name {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
  }
  .plan-desc {
    font-size: 14.5px;
    line-height: 1.5;
    margin-bottom: 24px;
    opacity: 0.85;
    min-height: 7.5em;
  }
  .plan-desc strong { font-weight: 700; opacity: 1; }
  .plan-price {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .plan-price small {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.7;
    letter-spacing: 0;
    line-height: 1.3;
  }
  .plan-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.005em;
    line-height: 1.15;
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.05s ease;
    margin-bottom: 28px;
    cursor: pointer;
  }
  .plan-cta:active { transform: translateY(0.5px); }

  /* TRIAL — outlined on cream */
  .plan-trial .plan-cta {
    background: linear-gradient(180deg, #ffffff 0%, #f0eee5 100%);
    color: #14110a;
    box-shadow:
      inset 0 0 0 1px rgba(20,17,10,0.92),
      inset 0 1px 0 rgba(255,255,255,0.9),
      inset 0 -1px 0 rgba(20,17,10,0.08),
      0 1px 2px rgba(0,0,0,0.18),
      0 4px 10px rgba(0,0,0,0.06);
  }
  .plan-trial .plan-cta:hover {
    background: linear-gradient(180deg, #14110a 0%, #000 100%);
    color: #f5f3eb;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.15),
      inset 0 -1px 0 rgba(0,0,0,0.4),
      0 2px 6px rgba(0,0,0,0.35);
  }

  /* STUDIO — solid dark on yellow (primary) */
  .plan-studio .plan-cta {
    background: linear-gradient(180deg, #2c2620 0%, #14110a 100%);
    color: #ffe04a;
    box-shadow:
      inset 0 0 0 1px rgba(0,0,0,0.6),
      inset 0 1px 0 rgba(255,255,255,0.14),
      inset 0 -1px 0 rgba(0,0,0,0.5),
      0 1px 2px rgba(0,0,0,0.4),
      0 6px 16px rgba(0,0,0,0.18);
  }
  .plan-studio .plan-cta:hover {
    background: linear-gradient(180deg, #3a3328 0%, #1c1810 100%);
    color: #ffe85c;
    box-shadow:
      inset 0 0 0 1px rgba(0,0,0,0.65),
      inset 0 1px 0 rgba(255,255,255,0.18),
      inset 0 -1px 0 rgba(0,0,0,0.5),
      0 2px 4px rgba(0,0,0,0.4),
      0 8px 22px rgba(0,0,0,0.24),
      0 0 0 4px rgba(20,17,10,0.12);
  }

  /* COMMERCIAL — outlined on blue */
  .plan-commercial .plan-cta {
    background: linear-gradient(180deg, #d6e4f7 0%, #c0d2ee 100%);
    color: #15243f;
    box-shadow:
      inset 0 0 0 1px rgba(21,36,63,0.92),
      inset 0 1px 0 rgba(255,255,255,0.85),
      inset 0 -1px 0 rgba(21,36,63,0.10),
      0 1px 2px rgba(0,0,0,0.18),
      0 4px 10px rgba(0,0,0,0.08);
  }
  .plan-commercial .plan-cta:hover {
    background: linear-gradient(180deg, #15243f 0%, #0a1428 100%);
    color: #d6e4f7;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.15),
      inset 0 -1px 0 rgba(0,0,0,0.35),
      0 2px 6px rgba(0,0,0,0.35);
  }

  /* SUPPORTER — outlined on tan */
  .plan-supporter .plan-cta {
    background: linear-gradient(180deg, #f0e0c2 0%, #dccbab 100%);
    color: #2e2113;
    box-shadow:
      inset 0 0 0 1px rgba(46,33,19,0.9),
      inset 0 1px 0 rgba(255,255,255,0.85),
      inset 0 -1px 0 rgba(46,33,19,0.1),
      0 1px 2px rgba(0,0,0,0.18),
      0 4px 10px rgba(0,0,0,0.06);
  }
  .plan-supporter .plan-cta:hover {
    background: linear-gradient(180deg, #2e2113 0%, #1a1108 100%);
    color: #f0e0c2;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.12),
      inset 0 -1px 0 rgba(0,0,0,0.35),
      0 2px 6px rgba(0,0,0,0.35);
  }

  .plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 4px;
  }
  .plan-features li {
    display: flex;
    gap: 12px;
    font-size: 14.5px;
    line-height: 1.45;
    align-items: flex-start;
  }
  .plan-features li::before {
    content: "";
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3Cpolyline points='3.27 6.96 12 12.01 20.73 6.96'/%3E%3Cline x1='12' y1='22.08' x2='12' y2='12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
  }
  .plan-features li strong { font-weight: 700; }
  .plan-features li.coffee-row {
    display: block;
    text-align: center;
    margin-top: 14px;
    padding-top: 16px;
    font-size: 13px;
    border-top: 1px solid rgba(0,0,0,0.12);
    opacity: 0.7;
  }

  /* ====================================================
     COMPARE
     ==================================================== */
  .compare-wrap {
    margin-top: 120px;
  }
  .compare-title {
    text-align: center;
    color: var(--y);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 60px;
  }
  table.compare {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 15px;
  }
  .compare th, .compare td {
    text-align: center;
    padding: 22px 16px;
    border-bottom: 1px solid var(--line);
    width: 21.333%;
  }
  .compare th:first-child, .compare td:first-child {
    text-align: right;
    color: var(--ink-2);
    width: 36%;
    padding-right: 32px;
  }
  .compare thead th {
    border-bottom: 0;
    padding-bottom: 28px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  .compare thead th:nth-child(2) { color: var(--ink); font-weight: 500; }
  .compare thead th:nth-child(3) { color: var(--y); }
  .compare thead th:nth-child(4) { color: #a8c4ea; }

  /* per-column text + icon color */
  .compare tbody td:nth-child(2) { color: var(--ink); }
  .compare tbody td:nth-child(3) { color: var(--y); font-weight: 600; }
  .compare tbody td:nth-child(4) { color: #a8c4ea; font-weight: 600; }

  .compare .text-val { font-size: 15px; }
  .compare tbody td:nth-child(2) .text-val { font-weight: 400; color: var(--ink-2); }

  .icon-check {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
  }
  .icon-dash {
    display: inline-block;
    width: 22px;
    height: 4px;
    border-radius: 2px;
    background: var(--muted-2);
    vertical-align: middle;
  }

  /* ====================================================
     VV+
     ==================================================== */
  .vvplus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .vvplus h2 em { font-style: normal; color: var(--y); }
  .vvplus .left p { color: var(--ink-2); margin-top: 22px; font-size: 17px; }
  .vvplus .left a { margin-top: 28px; display: inline-flex; }
  .vvplus-perks { list-style: none; }
  .vvplus-perks li {
    padding: 24px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }
  .vvplus-perks li:last-child { border-bottom: 1px solid var(--line); }
  .vvplus-perks li .n {
    font-size: 13px;
    color: var(--muted);
  }
  .vvplus-perks li h4 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }
  .vvplus-perks li p {
    color: var(--muted);
    font-size: 14.5px;
  }

  /* ====================================================
     LEGACY
     ==================================================== */
  .legacy-head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 50px;
  }
  .legacy-head h2 em { font-style: normal; color: var(--y); }
  .legacy-head .right p { color: var(--ink-2); font-size: 15px; }

  .legacy-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .legacy-item {
    padding: 32px 16px;
    text-align: center;
    border-right: 1px solid var(--line);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.005em;
  }
  .legacy-item:last-child {
    border-right: 0;
    color: var(--y);
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  /* ====================================================
     COMMUNITY (full bleed editorial)
     ==================================================== */
  .community {
    padding: 200px 0;
    text-align: center;
  }
  .community-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px 8px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    margin: 0 auto 36px;
    font-size: 13px;
    color: var(--ink-2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 4px 14px rgba(0,0,0,0.25);
  }
  .community-badge strong {
    color: var(--ink);
    font-weight: 600;
  }
  .community-badge .pulse {
    position: relative;
    width: 8px; height: 8px;
    border-radius: 999px;
    background: var(--y);
    box-shadow: 0 0 0 4px rgba(245,208,0,0.16), 0 0 12px rgba(245,208,0,0.55);
  }
  .community-badge .pulse::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 999px;
    border: 1px solid var(--y);
    opacity: 0;
    animation: pulseRing 2.4s ease-out infinite;
  }
  @keyframes pulseRing {
    0%   { transform: scale(0.7); opacity: 0.7; }
    100% { transform: scale(2.4); opacity: 0; }
  }
  .community h2 {
    font-size: clamp(56px, 9vw, 140px);
    font-weight: 600;
    line-height: 0.92;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
  }
  .community h2 em { font-style: normal; color: var(--y); }
  .community p {
    color: var(--ink-2);
    font-size: 18px;
    max-width: 56ch;
    margin: 0 auto 36px;
  }
  .community .actions {
    display: flex;
    gap: 12px;
    justify-content: center;
  }

  /* ====================================================
     FOOTER
     ==================================================== */
  footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--line);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
  }
  .footer-brand img { height: 24px; margin-bottom: 18px; }
  .footer-brand p {
    color: var(--muted);
    font-size: 14px;
    max-width: 40ch;
  }
  .footer-grid h5 {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .footer-grid ul { list-style: none; }
  .footer-grid li { padding: 4px 0; }
  .footer-grid a {
    font-size: 14px;
    color: var(--ink-2);
    transition: color 0.18s;
  }
  .footer-grid a:hover { color: var(--y); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--muted);
    gap: 20px;
  }

  /* ====================================================
     RESPONSIVE
     ==================================================== */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-meta { text-align: left; max-width: none; }
    .intro-inner, .gen-intro, .conv-intro, .mods-intro, .pricing-head, .legacy-head, .vvplus, .export-layout { grid-template-columns: 1fr; gap: 40px; }
    .gen-grid, .mods-grid { grid-template-columns: 1fr 1fr; }
    .legacy-row { grid-template-columns: 1fr 1fr; }
    .legacy-item { border-right: 0; border-bottom: 1px solid var(--line); }
    .rock { grid-template-columns: 1fr; }
    .rock .rock-text { padding: 40px 0; }
    .rock .rock-vid { border-left: 0; border-top: 1px solid var(--line); }
    .modded { grid-template-columns: 1fr; }
    .modded .modded-text { padding: 40px 0; }
    .modded .modded-vid { border-left: 0; border-top: 1px solid var(--line); }
    .ba-row { grid-template-columns: 1fr; gap: 30px; }
    .blender { grid-template-columns: 1fr; text-align: left; padding: 32px 0; gap: 24px; }
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    nav ul { gap: 16px; font-size: 13px; }
    nav ul li:nth-child(n+4) { display: none; }
  }
  @media (max-width: 640px) {
    .wrap, .wrap-wide, header > div, .nav { padding-left: 20px; padding-right: 20px; }
    .gen-grid, .mods-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .intro, .chapter { padding: 80px 0; }
    .community { padding: 120px 0; }
  }

/* ====================================================
   SUBPAGE LAYOUTS (FAQ / Changelog / Documentation)
   ==================================================== */
.subpage {
  padding: 180px 0 60px;
  position: relative;
}
.subpage-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.subpage-head h1 {
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.subpage-head h1 em { font-style: normal; color: var(--y); }
.subpage-head .right p {
  color: var(--ink-2);
  font-size: 15px;
  max-width: 44ch;
}
.subpage-head .right p + p { color: var(--muted); margin-top: 12px; }

/* ====================================================
   ACCORDION (shared by FAQ + Changelog)
   ==================================================== */
.accordion { list-style: none; }
.accordion details {
  border-bottom: 1px solid var(--line);
}
.accordion details[open] { background: rgba(255,255,255,0.012); }
.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: baseline;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.18s;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:hover { color: var(--y); }
.accordion summary .idx {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}
.accordion summary .chev {
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.2s ease, border-color 0.18s;
  align-self: center;
}
.accordion details[open] summary .chev {
  transform: rotate(225deg) translate(-2px, -2px);
  border-color: var(--y);
}
.accordion summary:hover .chev { border-color: var(--y); }
.accordion .body {
  padding: 0 0 28px 88px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
  max-width: 72ch;
}
.accordion .body p + p { margin-top: 12px; }
.accordion .body ul {
  margin-top: 8px;
  padding-left: 18px;
  color: var(--ink-2);
}
.accordion .body ul li { margin: 6px 0; }
.accordion .body .tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--y);
  font-weight: 600;
  margin-right: 8px;
}

/* ====================================================
   CHANGELOG SPECIFIC
   ==================================================== */
.version-meta {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-left: 12px;
  font-weight: 400;
}
.version-pill {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--y-ink);
  background: var(--y);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  margin-right: 12px;
  vertical-align: middle;
}

/* ====================================================
   DOCS GRID
   ==================================================== */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.doc-card {
  background: var(--bg);
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.18s;
}
.doc-card:hover { background: var(--bg-2); }
.doc-card .doc-num {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.doc-card h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.doc-card p { color: var(--muted); font-size: 14.5px; flex: 1; }
.doc-card .doc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line-strong);
  align-self: flex-start;
  transition: color 0.18s, border-color 0.18s;
}
.doc-card .doc-cta:hover { color: var(--y); border-color: var(--y); }
.doc-card .doc-cta::after { content: "↗"; }

/* ====================================================
   DOCS VIDEO PLAYLIST
   ==================================================== */
.playlist { margin-top: 90px; }
.playlist-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.playlist-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.playlist-title em { font-style: normal; color: var(--y); }
.playlist-frame {
  aspect-ratio: 16 / 9;
  background: #050505;
  border: 1px solid var(--line);
  overflow: hidden;
}
.playlist-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.playlist-empty {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px; text-align: center; padding: 24px;
}
.playlist-empty code { color: var(--ink-2); }

/* ====================================================
   FAQ DISCORD CTA
   ==================================================== */
.discord-cta {
  margin-top: 100px;
  padding: 60px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.discord-cta h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.discord-cta h3 em { font-style: normal; color: var(--y); }
.discord-cta p { color: var(--ink-2); font-size: 16px; max-width: 60ch; }

/* ====================================================
   LEGAL / PROSE (Privacy Policy + Impressum)
   ==================================================== */
.legal {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  border-top: 1px solid var(--line);
  padding-top: 60px;
}
.legal-meta {
  position: sticky;
  top: 120px;
  align-self: start;
}
.legal-meta .updated {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.legal-meta nav { display: flex; flex-direction: column; gap: 10px; }
.legal-meta nav a {
  color: var(--ink-2);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.18s;
}
.legal-meta nav a:hover { color: var(--y); }

.legal-body { max-width: 72ch; }
.legal-body section { padding: 0 0 44px; }
.legal-body section + section {
  border-top: 1px solid var(--line);
  padding-top: 44px;
}
.legal-body h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.legal-body h2 .idx {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.legal-body h2 em { font-style: normal; color: var(--y); }
.legal-body h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 24px 0 8px;
  color: var(--ink);
}
.legal-body p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 12px;
}
.legal-body ul {
  margin-top: 12px;
  padding-left: 20px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
}
.legal-body ul li { margin: 6px 0; }
.legal-body a {
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  text-decoration: none;
  transition: color 0.18s, border-color 0.18s;
}
.legal-body a:hover { color: var(--y); border-color: var(--y); }
.legal-body .legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 15px;
}
.legal-body .legal-table th,
.legal-body .legal-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  vertical-align: top;
}
.legal-body .legal-table th {
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .legal { grid-template-columns: 1fr; gap: 32px; }
  .legal-meta { position: static; }
}

@media (max-width: 1024px) {
  .subpage-head { grid-template-columns: 1fr; gap: 32px; }
  .docs-grid { grid-template-columns: 1fr; }
  .discord-cta { grid-template-columns: 1fr; padding: 40px; }
  .accordion summary { grid-template-columns: 48px 1fr auto; gap: 16px; font-size: 16px; }
  .accordion .body { padding-left: 64px; }
}
@media (max-width: 640px) {
  .subpage { padding: 140px 0 40px; }
  .discord-cta { padding: 32px 24px; }
  .accordion summary { padding: 22px 0; }
  .accordion .body { padding-left: 0; }
}
