:root {
      --ink: #02061b;
      --ink-2: #06123c;
      --panel: rgba(4, 14, 52, .76);
      --panel-solid: #071746;
      --blue: #176bff;
      --blue-2: #16c8ff;
      --cyan: #76f3ff;
      --white: #f8fbff;
      --muted: #9eb8dd;
      --gold: #ffd865;
      --line: rgba(99, 205, 255, .25);
      --shadow: 0 30px 90px rgba(0, 0, 0, .42);
      --shell: min(1380px, calc(100vw - 64px));
      --mx: 50vw;
      --my: 35vh;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; overflow-x: clip; }
    body {
      margin: 0;
      min-width: 320px;
      color: var(--white);
      background:
        radial-gradient(circle at 85% 12%, rgba(20, 119, 255, .2), transparent 31%),
        radial-gradient(circle at 11% 60%, rgba(0, 223, 255, .12), transparent 34%),
        linear-gradient(180deg, #020718 0%, #030d2c 38%, #020718 100%);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      overflow-x: clip;
      isolation: isolate;
    }

    body::before {
      content: "";
      position: fixed;
      inset: -12%;
      z-index: -8;
      background:
        linear-gradient(135deg, transparent 0 18%, rgba(44, 158, 255, .2) 18% 19%, transparent 19% 40%, rgba(118, 243, 255, .14) 40% 41%, transparent 41%),
        radial-gradient(circle at 66% 28%, rgba(23, 107, 255, .24), transparent 30%),
        radial-gradient(circle at 20% 84%, rgba(22, 200, 255, .16), transparent 28%);
      filter: blur(18px) saturate(1.35);
      animation: ambientDrift 18s ease-in-out infinite alternate;
      pointer-events: none;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(650px circle at var(--mx) var(--my), rgba(76, 215, 255, .11), transparent 68%),
        linear-gradient(90deg, rgba(2, 6, 27, .15), rgba(2, 6, 27, .55));
      pointer-events: none;
    }

    a { color: inherit; text-decoration: none; }
    button { color: inherit; font: inherit; }
    img { max-width: 100%; display: block; }
    ::selection { color: #00102f; background: var(--cyan); }

    .section-shell { width: var(--shell); margin-inline: auto; }

    .reading-progress {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      z-index: 1000;
      background: rgba(255,255,255,.04);
    }
    .reading-progress span {
      display: block;
      height: 100%;
      width: 0;
      background: linear-gradient(90deg, var(--blue), var(--cyan), #fff);
      box-shadow: 0 0 18px var(--cyan);
    }

    #energyCanvas {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: -4;
      pointer-events: none;
      opacity: .72;
    }

    .ambient-art {
      position: fixed;
      z-index: -7;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 16% 12%, rgba(43, 151, 255, .28), transparent 24%),
        radial-gradient(circle at 75% 34%, rgba(43, 198, 255, .13), transparent 30%),
        radial-gradient(circle at 40% 91%, rgba(58, 51, 255, .18), transparent 28%);
      animation: pulseField 8s ease-in-out infinite alternate;
    }

    .cyber-matrix {
      position: fixed;
      inset: 0;
      z-index: -6;
      pointer-events: none;
      overflow: hidden;
      contain: strict;
      opacity: .25;
      background-image:
        linear-gradient(rgba(40, 132, 255, .18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(40, 132, 255, .18) 1px, transparent 1px);
      background-size: 58px 58px;
      mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.7) 52%, transparent 96%);
      animation: gridTravel 10s linear infinite;
    }

    .speed-field {
      position: fixed;
      inset: 0;
      z-index: -5;
      pointer-events: none;
      overflow: hidden;
      contain: strict;
      opacity: .18;
      background: repeating-conic-gradient(from 232deg at 78% 35%, rgba(88, 222, 255, .9) 0deg .22deg, transparent .22deg 2.5deg);
      mask-image: radial-gradient(circle at 78% 35%, transparent 0 7%, black 11% 46%, transparent 69%);
      animation: pulseField 9s ease-in-out infinite alternate;
    }

    .halftone {
      position: fixed;
      inset: 0;
      z-index: -2;
      opacity: .17;
      pointer-events: none;
      background-image: radial-gradient(circle, rgba(112, 218, 255, .65) 1px, transparent 1.5px);
      background-size: 12px 12px;
      mask-image: linear-gradient(145deg, #000, transparent 42%, #000 86%);
    }

    .cursor-orb {
      position: fixed;
      width: 34px;
      height: 34px;
      margin: -17px 0 0 -17px;
      z-index: 999;
      border: 1px solid rgba(131, 235, 255, .72);
      border-radius: 50%;
      box-shadow: 0 0 26px rgba(32, 199, 255, .35), inset 0 0 12px rgba(32, 199, 255, .2);
      pointer-events: none;
      opacity: 0;
      transition: opacity .2s ease, width .18s ease, height .18s ease, margin .18s ease;
      mix-blend-mode: screen;
    }
    .cursor-orb.active { width: 56px; height: 56px; margin: -28px 0 0 -28px; }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 100;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      min-height: 78px;
      padding: 10px max(32px, calc((100vw - 1380px) / 2));
      border-bottom: 1px solid rgba(97, 205, 255, .18);
      background: linear-gradient(180deg, rgba(1, 6, 28, .92), rgba(2, 10, 37, .74));
      backdrop-filter: blur(18px) saturate(1.25);
      box-shadow: 0 12px 40px rgba(0,0,0,.24);
    }
    .topbar::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
      opacity: .7;
    }

    .brand { display: inline-flex; align-items: center; gap: 13px; width: max-content; }
    .brand-mark {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      object-fit: cover;
      border: 1px solid rgba(255, 216, 101, .54);
      box-shadow: 0 0 26px rgba(255, 216, 101, .25), 0 0 36px rgba(22, 200, 255, .18);
      background: #06123c;
    }
    .brand-copy { display: flex; flex-direction: column; line-height: 1; }
    .brand-copy strong {
      font-size: clamp(22px, 2.1vw, 32px);
      letter-spacing: .02em;
      color: var(--gold);
      text-shadow: 0 0 18px rgba(255, 216, 101, .32);
    }
    .brand-copy span {
      margin-top: 6px;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .24em;
      color: var(--cyan);
    }

    .topnav {
      display: flex;
      gap: 6px;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(118, 243, 255, .16);
      padding: 7px;
      background: rgba(0, 18, 59, .48);
      clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    }
    .topnav a {
      min-width: 92px;
      padding: 11px 12px;
      text-align: center;
      color: var(--muted);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .15em;
      transition: color .2s ease, background .2s ease, transform .2s ease;
    }
    .topnav a:hover,
    .topnav a.active {
      color: #06123c;
      background: linear-gradient(90deg, var(--cyan), #fff);
      transform: translateY(-1px);
    }

    .system-pill {
      justify-self: end;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      width: max-content;
      padding: 12px 14px;
      border: 1px solid rgba(118, 243, 255, .18);
      color: var(--cyan);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .16em;
      background: rgba(2, 13, 45, .7);
      box-shadow: inset 0 0 24px rgba(22, 200, 255, .08);
    }
    .system-pill i {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #36ffbb;
      box-shadow: 0 0 14px #36ffbb;
    }

    .hero {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
      gap: clamp(30px, 5vw, 76px);
      align-items: center;
      min-height: calc(100vh - 78px);
      padding: 72px 0 54px;
    }
    .hero::before {
      content: "GAN89";
      position: absolute;
      top: 14%;
      left: 44%;
      z-index: -1;
      color: transparent;
      -webkit-text-stroke: 1px rgba(118, 243, 255, .12);
      font-size: clamp(96px, 18vw, 260px);
      font-weight: 1000;
      letter-spacing: .03em;
      transform: translateX(-50%) skew(-8deg);
      opacity: .8;
    }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      width: max-content;
      max-width: 100%;
      margin-bottom: 24px;
      color: var(--cyan);
      font-size: 12px;
      font-weight: 1000;
      letter-spacing: .22em;
      text-transform: uppercase;
    }
    .eyebrow-number {
      display: grid;
      place-items: center;
      width: 42px;
      height: 30px;
      color: #00102f;
      background: var(--cyan);
      clip-path: polygon(9px 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
      box-shadow: 0 0 20px rgba(118, 243, 255, .34);
    }
    .eyebrow-line {
      width: min(160px, 22vw);
      height: 1px;
      background: linear-gradient(90deg, var(--cyan), transparent);
    }

    .glitch-title {
      position: relative;
      margin: 0;
      font-size: clamp(54px, 9.2vw, 132px);
      line-height: .82;
      letter-spacing: 0;
      font-weight: 1000;
      text-transform: uppercase;
      filter: drop-shadow(0 22px 42px rgba(0, 0, 0, .4));
    }
    .glitch-title span { display: block; }
    .title-small {
      color: var(--white);
      font-size: .58em;
      text-shadow: 2px 0 var(--blue-2), -2px 0 var(--blue);
    }
    .title-brush {
      width: max-content;
      max-width: 100%;
      color: #06123c;
      padding: .06em .18em .12em;
      margin: .03em 0 .03em -.04em;
      background: linear-gradient(90deg, var(--gold), #fff3aa 52%, #ffb21d);
      clip-path: polygon(3% 0, 100% 6%, 96% 88%, 1% 100%);
      transform: rotate(-2deg);
      box-shadow: 0 0 34px rgba(255, 216, 101, .24);
    }
    .title-bottom {
      color: var(--cyan);
      text-shadow: 0 0 34px rgba(118, 243, 255, .36);
    }
    .glitch-title::after {
      content: attr(data-text);
      position: absolute;
      inset: 0;
      color: rgba(118, 243, 255, .12);
      transform: translate(8px, 8px);
      z-index: -1;
      clip-path: polygon(0 34%, 100% 28%, 100% 48%, 0 55%);
    }

    .hero-paragraph {
      max-width: 690px;
      margin: 28px 0 0;
      color: var(--muted);
      font-size: clamp(16px, 1.25vw, 20px);
      line-height: 1.82;
    }
    .hero-paragraph strong { color: #fff; }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }
    .slash-button {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      min-height: 58px;
      padding: 0 23px;
      clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
      font-size: 12px;
      font-weight: 1000;
      letter-spacing: .16em;
      text-transform: uppercase;
      transition: transform .22s ease, filter .22s ease;
    }
    .slash-button:hover { transform: translateY(-3px); filter: saturate(1.15); }
    .slash-button.primary {
      color: #04143a;
      background: linear-gradient(90deg, var(--cyan), #fff, var(--gold));
      box-shadow: 0 12px 36px rgba(22, 200, 255, .3);
    }
    .slash-button.secondary {
      color: var(--cyan);
      border: 1px solid rgba(118, 243, 255, .35);
      background: rgba(7, 23, 70, .64);
    }
    .slash-button b {
      display: grid;
      place-items: center;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      color: #06123c;
      background: rgba(255,255,255,.9);
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 660px;
      margin-top: 34px;
    }
    .metric {
      min-height: 96px;
      padding: 18px;
      border: 1px solid rgba(118, 243, 255, .18);
      background: linear-gradient(180deg, rgba(5, 20, 63, .76), rgba(4, 12, 41, .48));
      clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
      box-shadow: inset 0 0 28px rgba(22, 200, 255, .06);
    }
    .metric strong {
      display: block;
      color: #fff;
      font-size: clamp(24px, 2.4vw, 38px);
      line-height: 1;
    }
    .metric span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .visual-stage {
      position: relative;
      min-height: 640px;
      perspective: 1100px;
    }
    .electric-ring {
      position: absolute;
      inset: 50%;
      border-radius: 50%;
      border: 1px solid rgba(118, 243, 255, .34);
      transform: translate(-50%, -50%);
      box-shadow: 0 0 42px rgba(22, 200, 255, .18), inset 0 0 44px rgba(22, 200, 255, .08);
      animation: orbitSpin 28s linear infinite;
    }
    .ring-one { width: 86%; aspect-ratio: 1; }
    .ring-two {
      width: 68%;
      aspect-ratio: 1;
      animation-duration: 18s;
      animation-direction: reverse;
      border-style: dashed;
    }
    .brush-cloud {
      position: absolute;
      border-radius: 999px;
      filter: blur(30px);
      opacity: .7;
      pointer-events: none;
    }
    .brush-cloud-one {
      width: 260px;
      height: 180px;
      left: 3%;
      top: 8%;
      background: rgba(23, 107, 255, .36);
    }
    .brush-cloud-two {
      width: 280px;
      height: 220px;
      right: -4%;
      bottom: 8%;
      background: rgba(118, 243, 255, .22);
    }
    .character-card {
      position: absolute;
      inset: 52px 34px 44px;
      margin: 0;
      transform-style: preserve-3d;
      transform: rotateX(5deg) rotateY(-9deg);
      clip-path: polygon(7% 0, 100% 0, 100% 90%, 92% 100%, 0 100%, 0 9%);
      background: linear-gradient(145deg, rgba(4, 14, 52, .98), rgba(2, 9, 34, .78));
      border: 1px solid rgba(118, 243, 255, .32);
      box-shadow: var(--shadow), inset 0 0 60px rgba(22, 200, 255, .12);
      overflow: hidden;
      transition: transform .22s ease;
    }
    .character-card img {
      width: 100%;
      height: 100%;
      min-height: 520px;
      object-fit: cover;
      object-position: center;
      filter: saturate(1.17) contrast(1.06);
    }
    .image-shade {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, transparent 30%, rgba(2, 6, 27, .82) 100%),
        radial-gradient(circle at 50% 38%, transparent 0 40%, rgba(2, 6, 27, .32) 68%);
      pointer-events: none;
    }
    .image-scan {
      position: absolute;
      inset: 0;
      opacity: .16;
      background: repeating-linear-gradient(0deg, rgba(255,255,255,.14) 0 1px, transparent 1px 7px);
      mix-blend-mode: screen;
      animation: scanMove 7s linear infinite;
      pointer-events: none;
    }
    .image-code {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 22px;
      padding: 13px 14px;
      color: var(--cyan);
      font-size: 11px;
      font-weight: 1000;
      letter-spacing: .18em;
      background: rgba(1, 7, 29, .72);
      border-left: 3px solid var(--gold);
      box-shadow: 0 0 28px rgba(0,0,0,.28);
    }
    .manga-sticker {
      position: absolute;
      z-index: 4;
      display: grid;
      place-items: center;
      text-align: center;
      border: 2px solid #06123c;
      color: #06123c;
      background: linear-gradient(135deg, var(--gold), #fff6b6);
      box-shadow: 8px 8px 0 rgba(0,0,0,.28), 0 0 22px rgba(255,216,101,.22);
      transform: rotate(-8deg);
    }
    .manga-sticker span { font-size: 28px; font-weight: 1000; line-height: 1; }
    .manga-sticker small { font-size: 9px; font-weight: 1000; letter-spacing: .1em; }
    .sticker-jp { width: 112px; height: 88px; left: -6px; top: 18%; clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 92%); }
    .sticker-join { width: 122px; height: 92px; right: -2px; bottom: 17%; transform: rotate(7deg); clip-path: polygon(0 9%, 92% 0, 100% 88%, 9% 100%); }
    .speech-chip {
      position: absolute;
      left: 10%;
      bottom: 6%;
      z-index: 4;
      padding: 13px 16px;
      color: #021338;
      background: #fff;
      border: 2px solid #06123c;
      font-size: 12px;
      font-weight: 1000;
      letter-spacing: .12em;
      transform: rotate(-3deg);
      box-shadow: 7px 7px 0 rgba(0,0,0,.28);
    }

    .feature-rail {
      display: grid;
      grid-template-columns: 190px 1fr 1fr 1fr;
      gap: 1px;
      margin-top: 6px;
      border: 1px solid rgba(118, 243, 255, .2);
      background: rgba(118, 243, 255, .18);
      box-shadow: 0 18px 60px rgba(0,0,0,.22);
    }
    .rail-lead,
    .rail-item {
      min-height: 112px;
      padding: 20px;
      background: rgba(5, 17, 56, .78);
    }
    .rail-lead span,
    .rail-item span {
      display: block;
      color: var(--cyan);
      font-size: 11px;
      font-weight: 1000;
      letter-spacing: .18em;
      text-transform: uppercase;
    }
    .rail-lead strong,
    .rail-item strong {
      display: block;
      margin-top: 9px;
      color: #fff;
      font-size: clamp(18px, 1.6vw, 26px);
      line-height: 1.08;
    }
    .rail-item p {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .chapter {
      display: grid;
      grid-template-columns: 330px minmax(0, 1fr);
      gap: 28px;
      align-items: start;
      padding-top: 104px;
    }
    .chapter-console {
      position: sticky;
      top: 110px;
      min-height: 520px;
      padding: 24px;
      background: linear-gradient(180deg, rgba(7, 23, 70, .8), rgba(2, 9, 34, .72));
      border: 1px solid rgba(118, 243, 255, .22);
      clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
      box-shadow: var(--shadow);
    }
    .console-label,
    .panel-code,
    .section-index {
      color: var(--cyan);
      font-size: 11px;
      font-weight: 1000;
      letter-spacing: .18em;
      text-transform: uppercase;
    }
    .chapter-no {
      display: block;
      margin-top: 18px;
      color: transparent;
      -webkit-text-stroke: 1px rgba(118, 243, 255, .8);
      font-size: 118px;
      line-height: .8;
      font-weight: 1000;
    }
    .chapter-console h2 {
      margin: 20px 0 24px;
      font-size: 36px;
      line-height: 1;
      text-transform: uppercase;
    }
    .chapter-links {
      display: grid;
      gap: 10px;
      margin-bottom: 32px;
    }
    .chapter-links a {
      display: flex;
      gap: 10px;
      align-items: center;
      padding: 13px 12px;
      color: var(--muted);
      border: 1px solid rgba(118, 243, 255, .14);
      background: rgba(255,255,255,.03);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .09em;
      text-transform: uppercase;
    }
    .chapter-links a:hover,
    .chapter-links a.active {
      color: #05143a;
      background: linear-gradient(90deg, var(--cyan), #fff);
    }
    .signal-radar {
      position: relative;
      display: grid;
      place-items: center;
      width: 170px;
      aspect-ratio: 1;
      margin: 36px auto 24px;
      border-radius: 50%;
      border: 1px solid rgba(118, 243, 255, .24);
      background: repeating-conic-gradient(rgba(118,243,255,.18) 0 8deg, transparent 8deg 18deg);
      box-shadow: inset 0 0 40px rgba(22,200,255,.1), 0 0 34px rgba(22,200,255,.1);
      overflow: hidden;
    }
    .signal-radar span {
      position: absolute;
      inset: 50% auto auto 50%;
      width: 50%;
      height: 2px;
      background: linear-gradient(90deg, var(--cyan), transparent);
      transform-origin: left center;
      animation: orbitSpin 3.5s linear infinite;
    }
    .signal-radar i,
    .signal-radar b {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(118,243,255,.28);
    }
    .signal-radar i { width: 68%; aspect-ratio: 1; }
    .signal-radar b { width: 34%; aspect-ratio: 1; background: rgba(118,243,255,.18); }
    .console-status {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      color: var(--muted);
      font-size: 11px;
      font-weight: 1000;
      letter-spacing: .16em;
    }
    .console-status span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #36ffbb;
      box-shadow: 0 0 14px #36ffbb;
    }

    .story-panel {
      position: relative;
      padding: clamp(28px, 4vw, 54px);
      border: 1px solid rgba(118, 243, 255, .2);
      background:
        linear-gradient(180deg, rgba(7, 23, 70, .72), rgba(2, 9, 34, .7)),
        repeating-linear-gradient(135deg, rgba(118,243,255,.04) 0 1px, transparent 1px 12px);
      box-shadow: var(--shadow);
      clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
    }
    .panel-code {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(118,243,255,.16);
    }
    .story-panel h2 {
      margin: 34px 0 18px;
      font-size: clamp(32px, 4.8vw, 72px);
      line-height: .94;
      text-transform: uppercase;
    }
    .story-panel h3 {
      margin: 0 0 16px;
      color: var(--gold);
      font-size: 20px;
      line-height: 1.2;
      text-transform: uppercase;
    }
    .story-panel p {
      margin: 0 0 20px;
      color: #c6d8f3;
      font-size: 17px;
      line-height: 1.86;
    }
    .story-panel a,
    .story-panel strong { color: #fff; }
    .story-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      margin-top: 28px;
    }
    .story-card {
      min-height: 186px;
      padding: 22px;
      border: 1px solid rgba(118,243,255,.17);
      background: rgba(255,255,255,.035);
      clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    }
    .story-card span {
      display: inline-flex;
      margin-bottom: 14px;
      color: var(--cyan);
      font-size: 11px;
      font-weight: 1000;
      letter-spacing: .18em;
    }
    .story-card p {
      margin-bottom: 0;
      font-size: 15px;
      line-height: 1.75;
    }

    .section-heading,
    .review-heading {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: end;
      margin-bottom: 30px;
    }
    .section-heading h2,
    .review-heading h2 {
      margin: 8px 0 0;
      font-size: clamp(34px, 5.4vw, 82px);
      line-height: .9;
      text-transform: uppercase;
    }
    .entry-counter {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--cyan);
      border: 1px solid rgba(118,243,255,.22);
      padding: 12px 14px;
      background: rgba(7,23,70,.58);
    }
    .entry-counter strong { font-size: 38px; line-height: 1; }
    .entry-counter span {
      font-size: 10px;
      font-weight: 1000;
      letter-spacing: .14em;
      color: var(--muted);
    }

    .faq-section,
    .review-section { padding-top: 104px; }
    .faq-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 420px;
      gap: 24px;
      align-items: stretch;
    }
    .faq-list { display: grid; gap: 12px; }
    .faq-item {
      border: 1px solid rgba(118,243,255,.18);
      background: rgba(5, 17, 56, .7);
      clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
      overflow: hidden;
    }
    .faq-question {
      width: 100%;
      display: grid;
      grid-template-columns: 46px 1fr 32px;
      align-items: center;
      gap: 14px;
      min-height: 76px;
      padding: 16px 18px;
      border: 0;
      background: transparent;
      text-align: left;
      cursor: pointer;
    }
    .faq-number {
      color: var(--gold);
      font-weight: 1000;
      font-size: 14px;
    }
    .faq-question strong {
      color: #fff;
      font-size: 17px;
      line-height: 1.3;
    }
    .faq-icon {
      position: relative;
      width: 28px;
      height: 28px;
      border: 1px solid rgba(118,243,255,.3);
      border-radius: 50%;
    }
    .faq-icon::before,
    .faq-icon::after {
      content: "";
      position: absolute;
      left: 7px;
      right: 7px;
      top: 50%;
      height: 2px;
      background: var(--cyan);
      transform: translateY(-50%);
    }
    .faq-icon::after {
      transform: translateY(-50%) rotate(90deg);
      transition: transform .2s ease;
    }
    .faq-item.open .faq-icon::after { transform: translateY(-50%) rotate(0); }
    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows .28s ease;
    }
    .faq-item.open .faq-answer { grid-template-rows: 1fr; }
    .faq-answer div { overflow: hidden; }
    .faq-answer p {
      margin: 0;
      padding: 0 18px 22px 78px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.74;
    }
    .faq-visual {
      position: relative;
      min-height: 100%;
      overflow: hidden;
      border: 1px solid rgba(118,243,255,.2);
      background: rgba(3, 13, 44, .72);
      clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
      box-shadow: var(--shadow);
    }
    .faq-visual img {
      width: 100%;
      height: 100%;
      min-height: 486px;
      object-fit: cover;
      opacity: .84;
      filter: saturate(1.1) contrast(1.05);
    }
    .faq-visual-overlay {
      position: absolute;
      inset: auto 18px 18px;
      padding: 18px;
      background: rgba(1, 7, 29, .72);
      border-left: 3px solid var(--gold);
    }
    .faq-visual-overlay span {
      display: block;
      color: var(--cyan);
      font-size: 11px;
      font-weight: 1000;
      letter-spacing: .16em;
    }
    .faq-visual-overlay strong {
      display: block;
      margin-top: 8px;
      font-size: 26px;
      line-height: 1;
      text-transform: uppercase;
    }

    .review-dashboard {
      display: grid;
      grid-template-columns: 360px minmax(0, 1fr);
      gap: 22px;
      margin-bottom: 22px;
    }
    .rating-core,
    .rating-bars,
    .review-card {
      border: 1px solid rgba(118,243,255,.18);
      background: linear-gradient(180deg, rgba(7, 23, 70, .72), rgba(2, 9, 34, .72));
      box-shadow: var(--shadow);
    }
    .rating-core {
      position: relative;
      display: grid;
      place-items: center;
      min-height: 290px;
      padding: 28px;
      overflow: hidden;
      clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
    }
    .rating-orbit {
      position: absolute;
      width: 190px;
      aspect-ratio: 1;
      border-radius: 50%;
      border: 1px solid rgba(118,243,255,.26);
      animation: orbitSpin 14s linear infinite;
    }
    .rating-orbit i {
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 18px var(--cyan);
    }
    .rating-orbit i:nth-child(1) { left: 50%; top: -5px; }
    .rating-orbit i:nth-child(2) { right: 12px; bottom: 28px; }
    .rating-orbit i:nth-child(3) { left: 13px; bottom: 28px; }
    .rating-score { position: relative; text-align: center; }
    .rating-score strong {
      display: block;
      color: #fff;
      font-size: 76px;
      line-height: .88;
    }
    .rating-score span { color: var(--muted); font-weight: 900; }
    .stars,
    .mini-stars {
      color: var(--gold);
      letter-spacing: .14em;
      text-shadow: 0 0 16px rgba(255,216,101,.36);
    }
    .verified {
      margin-top: 14px;
      color: var(--cyan);
      font-size: 11px;
      font-weight: 1000;
      letter-spacing: .12em;
    }
    .verified i {
      display: inline-grid;
      place-items: center;
      width: 18px;
      height: 18px;
      margin-right: 6px;
      border-radius: 50%;
      color: #021338;
      background: var(--cyan);
      font-style: normal;
    }
    .rating-bars {
      display: grid;
      gap: 14px;
      padding: 26px;
      clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
    }
    .bar-row {
      display: grid;
      grid-template-columns: 24px 22px minmax(0, 1fr) 48px;
      gap: 12px;
      align-items: center;
      color: var(--muted);
      font-weight: 900;
    }
    .bar-row i { color: var(--gold); font-style: normal; }
    .bar-row div {
      height: 12px;
      background: rgba(255,255,255,.08);
      overflow: hidden;
      clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
    }
    .bar-row b {
      display: block;
      height: 100%;
      width: 0;
      background: linear-gradient(90deg, var(--blue), var(--cyan), var(--gold));
      box-shadow: 0 0 18px rgba(118,243,255,.28);
      transition: width 1.1s ease;
    }
    .bars-foot {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin-top: 6px;
      padding-top: 16px;
      border-top: 1px solid rgba(118,243,255,.14);
      color: var(--muted);
      font-size: 11px;
      font-weight: 1000;
      letter-spacing: .15em;
    }
    .bars-foot strong { color: var(--cyan); }
    .review-cards {
      display: grid;
      grid-template-columns: repeat(5, minmax(210px, 1fr));
      gap: 16px;
    }
    .review-card {
      min-height: 250px;
      padding: 20px;
      clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
      transition: transform .2s ease, border-color .2s ease;
    }
    .review-card:hover {
      transform: translateY(-4px);
      border-color: rgba(118,243,255,.38);
    }
    .review-top {
      display: grid;
      grid-template-columns: 46px minmax(0, 1fr) auto;
      gap: 12px;
      align-items: center;
      margin-bottom: 16px;
    }
    .avatar {
      display: grid;
      place-items: center;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      color: #06123c;
      background: linear-gradient(135deg, var(--cyan), #fff);
      font-weight: 1000;
    }
    .review-top strong {
      display: block;
      color: #fff;
      font-size: 15px;
      line-height: 1.2;
    }
    .review-top small {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 9px;
      font-weight: 900;
      letter-spacing: .12em;
    }
    .review-top b { color: var(--cyan); }
    .review-card p {
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .final-cta {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
      margin-top: 108px;
      margin-bottom: 44px;
      padding: clamp(28px, 4vw, 48px);
      overflow: hidden;
      border: 1px solid rgba(118,243,255,.22);
      background:
        radial-gradient(circle at 82% 50%, rgba(118,243,255,.18), transparent 28%),
        linear-gradient(90deg, rgba(7,23,70,.86), rgba(3,13,44,.68));
      clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
      box-shadow: var(--shadow);
    }
    .cta-burst {
      position: absolute;
      right: 18%;
      top: 50%;
      width: 720px;
      height: 720px;
      transform: translate(50%, -50%);
      opacity: .2;
      background: repeating-conic-gradient(#6eeaff 0 .6deg, transparent .6deg 5deg);
      mask-image: radial-gradient(circle, transparent 0 18%, black 23% 72%, transparent 80%);
      animation: orbitSpin 40s linear infinite;
    }
    .cta-copy { position: relative; z-index: 2; }
    .cta-copy span {
      color: var(--cyan);
      font-size: 11px;
      font-weight: 1000;
      letter-spacing: .18em;
    }
    .cta-copy h2 {
      margin: 10px 0 12px;
      font-size: clamp(32px, 5vw, 76px);
      line-height: .92;
      text-transform: uppercase;
    }
    .cta-copy p {
      max-width: 760px;
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.7;
    }
    .cta-button {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 30px;
      min-width: 220px;
      padding: 19px 20px 19px 25px;
      color: #021338;
      background: linear-gradient(90deg, #f5fdff, #5ce6ff);
      clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
      font-size: 11px;
      font-weight: 1000;
      letter-spacing: .14em;
      box-shadow: 0 0 34px rgba(76, 222, 255, .35);
      transition: transform .2s ease;
    }
    .cta-button:hover { transform: translateY(-3px); }
    .cta-button b {
      display: grid;
      place-items: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #06123c;
      color: var(--cyan);
    }

    .site-footer {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      padding: 24px 0 42px;
      color: var(--muted);
      border-top: 1px solid rgba(118,243,255,.12);
    }
    .footer-brand strong {
      display: block;
      color: var(--gold);
      font-size: 22px;
      line-height: 1;
    }
    .footer-brand span,
    .footer-links {
      color: var(--muted);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: flex-end;
    }
    .footer-links a:hover { color: var(--cyan); }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }

    @keyframes ambientDrift {
      from { transform: translate3d(-1.5%, -1%, 0) scale(1); }
      to { transform: translate3d(1.5%, 1%, 0) scale(1.05); }
    }
    @keyframes pulseField {
      from { opacity: .12; transform: scale(1); }
      to { opacity: .28; transform: scale(1.04); }
    }
    @keyframes gridTravel { to { background-position: 0 54px, 54px 0; } }
    @keyframes orbitSpin { to { rotate: 360deg; } }
    @keyframes scanMove { to { background-position: 0 280px; } }

    @media (max-width: 1180px) {
      :root { --shell: min(100% - 40px, 1080px); }
      .topbar { grid-template-columns: 1fr auto; gap: 14px; }
      .topnav { order: 3; grid-column: 1 / -1; width: 100%; }
      .topnav a { flex: 1; min-width: 0; }
      .system-pill { justify-self: end; }
      .hero { grid-template-columns: 1fr; min-height: 0; }
      .visual-stage { min-height: 580px; }
      .feature-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .chapter,
      .faq-layout,
      .review-dashboard { grid-template-columns: 1fr; }
      .chapter-console { position: relative; top: auto; min-height: auto; }
      .review-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 720px) {
      :root { --shell: calc(100% - 22px); }
      body { background: linear-gradient(180deg, #020718, #031139 48%, #020718); }
      .cursor-orb { display: none; }
      .topbar {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        min-height: 0;
        padding: 10px 11px 12px;
      }
      .brand { justify-content: center; }
      .system-pill { justify-self: auto; justify-content: center; width: 100%; }
      .topnav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
      }
      .topnav a { min-width: 0; }
      .hero { padding-top: 48px; gap: 22px; }
      .eyebrow { gap: 10px; font-size: 10px; letter-spacing: .16em; }
      .glitch-title { font-size: clamp(42px, 14vw, 56px); }
      .hero-metrics,
      .feature-rail,
      .story-grid,
      .review-cards,
      .final-cta { grid-template-columns: 1fr; }
      .visual-stage { min-height: 430px; }
      .character-card { inset: 22px 4px 24px; transform: rotateX(3deg) rotateY(-4deg); }
      .character-card img { min-height: 386px; }
      .manga-sticker { scale: .82; }
      .sticker-jp { left: -12px; }
      .sticker-join { right: -16px; }
      .speech-chip { left: 4%; bottom: 2%; font-size: 10px; }
      .chapter { padding-top: 70px; }
      .story-panel { padding: 24px 18px; }
      .panel-code { flex-direction: column; }
      .chapter-no { font-size: 88px; }
      .faq-section,
      .review-section { padding-top: 70px; }
      .section-heading,
      .review-heading {
        display: grid;
        align-items: start;
      }
      .entry-counter { width: max-content; }
      .faq-question {
        grid-template-columns: 34px 1fr 30px;
        gap: 10px;
        min-height: 72px;
        padding: 14px 13px;
      }
      .faq-question strong { font-size: 15px; }
      .faq-answer p { padding: 0 13px 18px 57px; }
      .faq-visual img { min-height: 360px; }
      .rating-bars { padding: 18px 14px; }
      .bar-row { grid-template-columns: 20px 18px minmax(0, 1fr) 42px; gap: 8px; }
      .final-cta { margin-top: 72px; }
      .site-footer {
        display: grid;
        text-align: center;
        justify-content: center;
      }
      .footer-links { justify-content: center; }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
      }
      .reveal { opacity: 1; transform: none; }
    }

/* GAN89 — moonlit crystal luxury art direction */
:root {
  --ink: #020817;
  --ink-2: #06152f;
  --panel: rgba(5, 17, 43, .78);
  --panel-solid: #07162f;
  --blue: #336dff;
  --blue-2: #89b7ff;
  --cyan: #c5dcff;
  --white: #fffaf0;
  --muted: #a9b9d3;
  --gold: #f8c35e;
  --gold-deep: #b96e16;
  --gold-soft: #fff0b0;
  --sapphire: #4f7cff;
  --line: rgba(244, 193, 92, .22);
  --shadow: 0 30px 80px rgba(0, 3, 16, .55);
}

html { color-scheme: dark; }
body {
  background:
    radial-gradient(circle at 80% 7%, rgba(100, 147, 255, .18), transparent 25%),
    radial-gradient(circle at 13% 35%, rgba(236, 163, 50, .09), transparent 27%),
    linear-gradient(180deg, #020817 0%, #06142e 38%, #020817 100%);
}
body::before {
  inset: 0;
  background:
    radial-gradient(circle at 84% 7%, rgba(218, 231, 255, .14) 0 2.8%, transparent 3.1%),
    radial-gradient(circle at 84% 7%, rgba(84, 125, 255, .14), transparent 12%),
    radial-gradient(circle at 10% 22%, rgba(255, 190, 76, .12), transparent 20%);
  filter: none;
  animation: luxurySky 16s ease-in-out infinite alternate;
}
body::after {
  background:
    radial-gradient(520px circle at var(--mx) var(--my), rgba(255, 205, 105, .08), transparent 66%),
    linear-gradient(90deg, rgba(2, 8, 23, .05), rgba(2, 8, 23, .4));
}
.ambient-art {
  opacity: .32;
  background:
    radial-gradient(circle, rgba(255,255,255,.95) 0 1px, transparent 1.5px) 0 0 / 91px 83px,
    radial-gradient(circle, rgba(255,202,103,.75) 0 1px, transparent 1.8px) 23px 18px / 137px 119px;
  animation: starDrift 36s linear infinite;
}
.cyber-matrix { opacity: .035; filter: sepia(1) saturate(2); }
.speed-field { opacity: .12; filter: sepia(1) hue-rotate(350deg) saturate(1.8); }
.halftone { opacity: .08; }
.reading-progress span {
  background: linear-gradient(90deg, #9d5c12, var(--gold), #fff5c5, var(--sapphire));
  box-shadow: 0 0 20px rgba(248, 195, 94, .72);
}
.cursor-orb {
  border-color: rgba(255, 213, 126, .72);
  background: radial-gradient(circle, rgba(255,230,171,.22), transparent 65%);
  box-shadow: 0 0 28px rgba(248,195,94,.24);
}

.topbar {
  top: 18px;
  border: 1px solid rgba(255, 220, 143, .24);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(5, 17, 43, .9), rgba(3, 10, 28, .72));
  box-shadow: 0 18px 55px rgba(0,0,0,.34), inset 0 1px rgba(255,255,255,.055);
  backdrop-filter: blur(20px) saturate(1.25);
}
.topbar::after { background: linear-gradient(90deg, transparent, rgba(255, 207, 110, .68), transparent); }
.brand-mark {
  border: 1px solid rgba(255, 211, 120, .44);
  background: #07132b;
  box-shadow: 0 0 0 4px rgba(248,195,94,.07), 0 0 28px rgba(248,195,94,.2);
}
.brand-logo-only .brand-mark {
  width: 174px;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  mix-blend-mode: normal;
  object-fit: contain;
  transform: none;
}
.brand-logo-only {
  display: inline-grid;
  place-items: center;
  width: 174px;
  height: 54px;
  overflow: visible;
  background: transparent;
}
@media (max-width: 720px) {
  .brand-logo-only {
    width: 156px;
    height: 48px;
    margin-inline: auto;
  }
  .brand-logo-only .brand-mark {
    width: 156px;
    height: auto;
    transform: none;
  }
}
.brand-copy strong,
.footer-brand strong {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .1em;
  text-shadow: 0 2px 0 #7c430c, 0 0 18px rgba(255,193,78,.34);
}
.brand-copy span,
.system-pill,
.section-index,
.panel-code,
.console-label { color: #ccdcf6; }
.topnav {
  border-color: rgba(255, 214, 127, .13);
  background: rgba(255,255,255,.025);
}
.topnav a::after { background: var(--gold); }
.topnav a:hover,
.topnav a.active { color: var(--gold-soft); }
.system-pill i { background: #ffd36d; box-shadow: 0 0 14px #ffd36d; }

.hero {
  min-height: 790px;
  gap: clamp(30px, 5vw, 86px);
}
.hero::before {
  border-color: rgba(255, 214, 129, .08);
  background:
    radial-gradient(circle at 68% 42%, rgba(71, 117, 255, .15), transparent 37%),
    radial-gradient(circle at 18% 75%, rgba(248, 195, 94, .08), transparent 32%);
}
.eyebrow { color: #d8e5fb; }
.eyebrow-number {
  color: #091124;
  background: linear-gradient(135deg, #fff0b0, #e9a73b 70%, #97500b);
  box-shadow: 0 0 22px rgba(248,195,94,.28);
}
.eyebrow-line { background: linear-gradient(90deg, var(--gold), transparent); }
.glitch-title {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6.4vw, 112px);
  line-height: .78;
  letter-spacing: -.055em;
  text-transform: none;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.38));
}
.glitch-title .title-small {
  margin-bottom: 17px;
  color: #f8c65f;
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: .2em;
  letter-spacing: .38em;
  text-shadow: 0 0 18px rgba(248,195,94,.36);
}
.glitch-title .title-brush,
.glitch-title .title-bottom {
  color: transparent;
  background: linear-gradient(180deg, #fff9d9 0%, #ffd878 32%, #e99b2e 63%, #8f490b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(255, 237, 187, .48);
  text-shadow: none;
}
.glitch-title .title-bottom { margin-left: .12em; }
.glitch-title::after { display: none; }
.hero-paragraph {
  max-width: 650px;
  color: #bac8dd;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.85;
}
.hero-paragraph strong { color: var(--gold-soft); }

.slash-button,
.cta-button {
  border: 1px solid rgba(255, 226, 161, .45);
  border-radius: 999px;
  clip-path: none;
}
.slash-button.primary,
.cta-button {
  color: #1c1003;
  background: linear-gradient(135deg, #fff2b0 0%, #f4bd53 48%, #c87b1e 100%);
  box-shadow: 0 14px 36px rgba(202,119,25,.24), inset 0 1px rgba(255,255,255,.7);
}
.slash-button.secondary {
  color: #f6e3b5;
  background: rgba(255, 220, 148, .045);
}
.slash-button:hover,
.cta-button:hover {
  box-shadow: 0 18px 46px rgba(236,164,53,.34), 0 0 0 5px rgba(255,213,126,.07);
}
.metric {
  border-color: rgba(255, 215, 132, .14);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
}
.metric strong { color: var(--gold-soft); }

.visual-stage {
  min-height: 680px;
  border-radius: 32px;
  filter: drop-shadow(0 32px 42px rgba(0,0,0,.46));
}
.visual-stage::before {
  border-color: rgba(255, 214, 126, .38);
  background: linear-gradient(145deg, rgba(255,214,126,.08), transparent 34%, rgba(69,113,255,.12));
  box-shadow: inset 0 0 80px rgba(4,13,36,.42), 0 0 0 1px rgba(255,255,255,.03);
}
.character-card {
  inset: 20px;
  border: 1px solid rgba(255, 219, 142, .38);
  border-radius: 26px;
  clip-path: none;
  transform: none;
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.05);
}
.character-card img {
  height: 100%;
  min-height: 640px;
  object-position: center center;
  filter: saturate(.96) contrast(1.04) brightness(.92);
  transform: scale(1.01);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .8s ease;
}
.visual-stage:hover .character-card img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.04) brightness(.98);
}
.image-shade { background: linear-gradient(180deg, rgba(3,9,24,.08), transparent 42%, rgba(2,7,20,.5)); }
.image-scan { opacity: .1; filter: sepia(1); }
.image-code {
  color: #ffe8ad;
  border-color: rgba(255,211,122,.28);
  background: rgba(3,10,27,.72);
  backdrop-filter: blur(10px);
}
.electric-ring { border-color: rgba(255, 205, 100, .3); filter: drop-shadow(0 0 12px rgba(255,193,68,.38)); }
.brush-cloud { opacity: .26; filter: sepia(1) saturate(1.5); }
.manga-sticker,
.speech-chip {
  border-color: rgba(255,216,135,.48);
  background: rgba(3,12,32,.84);
  color: var(--gold-soft);
  box-shadow: 0 12px 36px rgba(0,0,0,.32);
  backdrop-filter: blur(12px);
}

.feature-rail,
.chapter-console,
.story-panel,
.faq-item,
.faq-visual,
.rating-core,
.rating-bars,
.review-card,
.final-cta {
  border-color: rgba(255, 216, 135, .17);
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), transparent 38%),
    linear-gradient(135deg, rgba(7,22,50,.92), rgba(3,11,29,.84));
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.045);
}
.feature-rail { border-radius: 22px; overflow: hidden; }
.rail-lead span,
.rail-item > span,
.story-card > span,
.bars-foot span { color: var(--gold); }
.rail-lead strong,
.rail-item strong,
.story-panel h2,
.section-heading h2,
.review-heading h2,
.final-cta h2 { font-family: Georgia, "Times New Roman", serif; }
.chapter-console,
.story-panel,
.faq-visual,
.rating-core,
.rating-bars,
.review-card,
.final-cta { border-radius: 22px; clip-path: none; }
.chapter-no {
  color: transparent;
  -webkit-text-stroke-color: rgba(255,205,101,.24);
}
.chapter-console h2,
.chapter-links a.active,
.story-panel a,
.story-panel strong { color: var(--gold-soft); }
.chapter-links a.active { border-color: rgba(255,211,127,.3); background: rgba(255,209,115,.065); }
.signal-radar { filter: sepia(1) saturate(2); }
.story-panel p,
.faq-answer p,
.review-card p,
.final-cta p { color: #b8c5d8; line-height: 1.8; }
.story-card {
  border-color: rgba(255,211,127,.13);
  background: rgba(255,255,255,.022);
}
.section-heading,
.review-heading { border-bottom-color: rgba(255,213,126,.15); }
.entry-counter strong,
.rating-score strong,
.review-top b { color: var(--gold-soft); }

.faq-item { overflow: hidden; }
.faq-item.open {
  border-color: rgba(255, 213, 126, .42);
  box-shadow: 0 24px 65px rgba(0,0,0,.36), inset 3px 0 var(--gold);
}
.faq-number,
.faq-icon { color: var(--gold); }
.faq-question:hover strong { color: var(--gold-soft); }
.faq-visual img { filter: saturate(.88) contrast(1.06) brightness(.8); transition: transform 1s ease, filter .8s ease; }
.faq-visual:hover img { transform: scale(1.04); filter: saturate(1) contrast(1.04) brightness(.92); }
.faq-visual-overlay { background: linear-gradient(180deg, transparent, rgba(2,8,23,.84)); }
.stars,
.mini-stars { color: #ffd36f; text-shadow: 0 0 14px rgba(255,190,61,.35); }
.rating-orbit { filter: sepia(1) saturate(2); }
.bar-row b { background: linear-gradient(90deg, #a85e13, #f5ba4e, #fff0ad); }

.review-card { position: relative; overflow: hidden; }
.review-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,235,187,.08) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform .8s ease;
}
.review-card:hover::after { transform: translateX(120%); }
.review-card:hover { border-color: rgba(255,213,126,.36); }
.avatar {
  color: #201204;
  background: linear-gradient(135deg, #fff0ab, #d58a27);
}
.final-cta {
  background:
    radial-gradient(circle at 85% 20%, rgba(88,130,255,.18), transparent 27%),
    linear-gradient(120deg, rgba(7,22,50,.96), rgba(31,20,12,.9));
}
.cta-burst { filter: sepia(1) saturate(2); opacity: .32; }
.cta-copy > span { color: var(--gold); }
.site-footer { border-top-color: rgba(255,213,126,.16); }
.footer-links a:hover { color: var(--gold-soft); }

@keyframes luxurySky {
  from { opacity: .72; transform: scale(1); }
  to { opacity: 1; transform: scale(1.025); }
}
@keyframes starDrift {
  to { background-position: 91px 83px, -114px 119px; }
}

@media (max-width: 1100px) {
  .hero { min-height: 0; }
  .visual-stage { min-height: 680px; }
}
@media (max-width: 720px) {
  body {
    background:
      radial-gradient(circle at 88% 4%, rgba(100,147,255,.16), transparent 20%),
      linear-gradient(180deg, #020817, #06152f 48%, #020817);
  }
  .topbar { top: 8px; border-radius: 15px; }
  .hero { padding-top: 58px; }
  .glitch-title {
    font-size: clamp(45px, 14.5vw, 68px);
    line-height: .84;
  }
  .glitch-title .title-small { font-size: .23em; }
  .visual-stage { min-height: 490px; border-radius: 22px; }
  .character-card { inset: 8px; border-radius: 18px; }
  .character-card img { min-height: 472px; }
  .feature-rail,
  .chapter-console,
  .story-panel,
  .faq-item,
  .faq-visual,
  .rating-core,
  .rating-bars,
  .review-card,
  .final-cta { border-radius: 17px; }
}
