    :root {
      --bg: #04040a;
      --bg2: #070710;
      --red: #e8001a;
      --red-dim: rgba(232,0,26,0.12);
      --red-glow: rgba(232,0,26,0.5);
      --cyan: #00e5ff;
      --cyan-dim: rgba(0,229,255,0.07);
      --cyan-glow: rgba(0,229,255,0.35);
      --gold: #c9a84c;
      --gold-dim: rgba(201,168,76,0.1);
      --magenta: #ff0080;
      --white: #eeeaf8;
      --gray: #A6A6A6;
      --gray2: #16141f;
      --mono: 'Share Tech Mono', monospace;
      --serif: 'Noto Serif JP', serif;
      --big: 'Bebas Neue', sans-serif;
      --display: 'Orbitron', sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { background: var(--bg); color: var(--white); font-family: var(--mono); overflow-x: hidden; cursor: crosshair; }

    /* ── ATMOSPHERIC LAYERS ── */
    .noise-overlay { position: fixed; inset: 0; z-index: 1; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E"); opacity: 0.5; }
    .scanlines { position: fixed; inset: 0; z-index: 1; pointer-events: none; background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.09) 2px, rgba(0,0,0,0.09) 4px); }
    .vignette { position: fixed; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.72) 100%); }
    #rain { position: fixed; inset: 0; z-index: 2; pointer-events: none; opacity: 0.18; }

    .cyber-grid {
      background-image:
        linear-gradient(rgba(0,229,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,255,0.022) 1px, transparent 1px);
      background-size: 44px 44px;
    }

    /* ── NAV ── */
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: rgba(4,4,10,0.9); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(0,229,255,0.12); }
    .nav-topline { height: 2px; background: linear-gradient(90deg, transparent 0%, var(--red) 25%, var(--cyan) 50%, var(--magenta) 75%, transparent 100%); }
    .nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; height: 58px; }
    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .nav-logo-box { width: 36px; height: 36px; border: 1px solid rgba(0,229,255,0.4); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 14px var(--cyan-glow), inset 0 0 8px rgba(0,229,255,0.05); }
    .nav-logo-box::before { content: '刀'; font-family: var(--serif); font-size: 18px; color: var(--cyan); text-shadow: 0 0 12px var(--cyan); }
    .nav-logo-text { font-family: var(--display); font-size: 13px; font-weight: 900; letter-spacing: 4px; color: var(--white); }
    .nav-logo-text span { color: var(--red); text-shadow: 0 0 10px var(--red-glow); }
    .nav-links { display: flex; gap: 2px; }
    .nav-links a { padding: 7px 14px; font-size: 9px; letter-spacing: 3px; color: var(--gray); text-decoration: none; text-transform: uppercase; transition: color 0.2s, background 0.2s; border: 1px solid transparent; }
    .nav-links a:hover { color: var(--cyan); background: var(--cyan-dim); border-color: rgba(0,229,255,0.2); text-shadow: 0 0 8px var(--cyan); }
    .nav-cta { display: flex; align-items: center; gap: 8px; padding: 9px 22px; background: var(--red); color: #fff; font-family: var(--mono); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%); box-shadow: 0 0 22px var(--red-glow); transition: box-shadow 0.3s; }
    .nav-cta:hover { box-shadow: 0 0 44px var(--red-glow); }

    /* ── HERO ── */
    #hero { min-height: 100vh; display: flex; flex-direction: column; position: relative; overflow: hidden; }

    .hero-atmosphere {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 55% 60% at 30% 50%, rgba(232,0,26,0.09) 0%, transparent 65%),
        radial-gradient(ellipse 70% 60% at 85% 75%, rgba(0,229,255,0.06) 0%, transparent 55%),
        radial-gradient(ellipse 40% 80% at 60% 20%, rgba(255,0,128,0.04) 0%, transparent 60%);
    }

    /* neon city floor line */
    .hero-floor { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--red) 30%, var(--cyan) 60%, transparent); opacity: 0.5; z-index: 4; }

    /* squad image — full background wallpaper */
    .hero-image-wrap {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      pointer-events: none; z-index: 3;
    }
    .hero-image-wrap::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 35%; background: linear-gradient(to top, var(--bg) 0%, transparent 100%); z-index: 5; }
    .hero-image-wrap::after { content: ''; position: absolute; inset: 0; background: rgba(4,4,10,0.50); z-index: 4; }
    .hero-image-wrap img { width: 100%; height: 110%; display: block; object-fit: cover; object-position: center center; filter: saturate(1.3) contrast(1.05) brightness(0.75); }

    /* red energy scan line moving on image */
    .hero-image-wrap .scan { position: absolute; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--red), transparent); animation: scan-move 5s ease-in-out infinite; opacity: 0.5; z-index: 6; }
    @keyframes scan-move { 0%,100%{top:10%;opacity:0;} 20%{opacity:0.6;} 50%{top:80%;opacity:0.3;} 80%{opacity:0.6;} }

    .hero-ticker-wrap { background: rgba(7,7,16,0.93); border-bottom: 1px solid rgba(0,229,255,0.1); overflow: hidden; padding: 7px 0; margin-top: calc(58px + 2px); position: relative; z-index: 10; }
    .ticker-track { display: flex; white-space: nowrap; animation: ticker 50s linear infinite; }
    .ticker-item { font-size: 9px; letter-spacing: 3px; color: var(--gray); padding: 0 36px; text-transform: uppercase; }
    .ticker-sep { color: var(--red); margin: 0 10px; }
    .ticker-cyan { color: var(--cyan); }
    .ticker-gold { color: var(--gold); }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    .hero-content { flex: 1; display: flex; align-items: center; justify-content: center; padding: 80px 28px 80px; position: relative; z-index: 10; }
    .hero-inner { max-width: 700px; text-align: center; }

    .hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 9px; letter-spacing: 5px; color: var(--cyan); text-transform: uppercase; margin-bottom: 24px; border: 1px solid rgba(0,229,255,0.3); padding: 7px 16px; background: var(--cyan-dim); text-shadow: 0 0 8px var(--cyan); }
    .hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--red); box-shadow: 0 0 8px var(--red); display: block; animation: blink-r 1.4s step-end infinite; }
    @keyframes blink-r { 0%,100%{opacity:1;} 50%{opacity:0;} }

    .hero-kanji-deco {
      font-family: var(--serif); font-size: 90px; font-weight: 900;
      color: transparent; -webkit-text-stroke: 1px rgba(232,0,26,0.25);
      line-height: 1; display: block; margin-bottom: -10px;
      letter-spacing: 8px;
      text-shadow: 0 0 40px rgba(232,0,26,0.15);
    }

    .hero-title { font-family: var(--big); font-size: clamp(58px, 8.5vw, 112px); line-height: 0.88; letter-spacing: 5px; margin-bottom: 8px; }
    .hero-title .t1 { display: block; color: var(--white); }
    .hero-title .t2 { display: block; color: var(--red); text-shadow: 0 0 30px var(--red-glow), 0 0 70px rgba(232,0,26,0.25); }
    .hero-title .t3 { display: block; color: transparent; -webkit-text-stroke: 1px var(--cyan); opacity: 0.75; }

    .hero-subtitle { font-family: var(--serif); font-size: 12px; color: var(--gray); margin: 28px auto 36px; line-height: 2.1; max-width: 560px; font-weight: 300; }
    .hero-subtitle strong { color: var(--red); font-weight: 400; text-shadow: 0 0 8px var(--red-glow); }
    .hero-subtitle em { font-style: normal; color: var(--cyan); text-shadow: 0 0 6px var(--cyan); }

    .hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; justify-content: center; }
    .pill { font-size: 9px; letter-spacing: 3px; padding: 6px 14px; text-transform: uppercase; clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%); border: 1px solid var(--gray2); color: var(--gray); transition: all 0.2s; cursor: default; }
    .pill.active, .pill:hover { border-color: var(--red); color: var(--red); background: var(--red-dim); box-shadow: 0 0 14px var(--red-dim); }

    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
    .btn-primary { display: flex; align-items: center; gap: 8px; padding: 14px 36px; background: var(--red); color: #fff; font-family: var(--mono); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%); animation: pulse-r 3s ease-in-out infinite; transition: box-shadow 0.2s; }
    @keyframes pulse-r { 0%,100%{box-shadow:0 0 20px var(--red-glow);} 50%{box-shadow:0 0 50px var(--red-glow),0 0 90px rgba(232,0,26,0.2);} }
    .btn-primary:hover { box-shadow: 0 0 60px var(--red-glow) !important; }
    .btn-ghost { display: flex; align-items: center; gap: 8px; padding: 14px 36px; border: 1px solid rgba(0,229,255,0.4); color: var(--cyan); font-family: var(--mono); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%); text-shadow: 0 0 8px var(--cyan); transition: all 0.25s; }
    .btn-ghost:hover { background: var(--cyan-dim); box-shadow: 0 0 28px var(--cyan-glow); }

    /* ── STATS BAR ── */
    .stats-bar { position: relative; z-index: 10; background: rgba(7,7,16,0.97); border-top: 1px solid rgba(0,229,255,0.1); border-bottom: 1px solid rgba(0,229,255,0.1); }
    .stats-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
    .stat-item { padding: 22px 24px; text-align: center; border-right: 1px solid rgba(0,229,255,0.08); transition: background 0.2s; }
    .stat-item:last-child { border-right: none; }
    .stat-item:hover { background: var(--cyan-dim); }
    .stat-label { font-size: 8px; letter-spacing: 4px; color: var(--gray); text-transform: uppercase; margin-bottom: 6px; }
    .stat-value { font-family: var(--display); font-size: 18px; letter-spacing: 2px; color: var(--red); text-shadow: 0 0 15px var(--red-glow); line-height: 1.2; }
    .stat-value.cyan { color: var(--cyan); text-shadow: 0 0 12px var(--cyan-glow); }
    .stat-value.gold { color: var(--gold); text-shadow: 0 0 12px rgba(201,168,76,0.5); }

    /* ── DIVIDER ── */
    .section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--red) 20%, var(--cyan) 50%, var(--magenta) 80%, transparent); opacity: 0.2; }

    /* ── SECTION HEADERS ── */
    .section-header { text-align: center; margin-bottom: 64px; }
    .section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 9px; letter-spacing: 5px; color: var(--cyan); text-transform: uppercase; border-top: 1px solid rgba(0,229,255,0.3); border-bottom: 1px solid rgba(0,229,255,0.3); padding: 6px 22px; margin-bottom: 20px; text-shadow: 0 0 8px var(--cyan); }
    .section-title { font-family: var(--big); font-size: clamp(38px,5vw,66px); letter-spacing: 5px; line-height: 1; margin-bottom: 16px; }
    .section-title em { font-style: normal; color: var(--red); text-shadow: 0 0 20px var(--red-glow); }
    .section-title .outline { color: transparent; -webkit-text-stroke: 1px var(--cyan); }
    .section-title .gold { color: var(--gold); text-shadow: 0 0 16px rgba(201,168,76,0.5); }
    .section-desc { font-size: 12px; color: var(--gray); max-width: 580px; margin: 0 auto; line-height: 2; font-family: var(--serif); font-weight: 300; }
    .section-desc strong { color: var(--white); font-weight: 400; }

    /* ── LORE / ORIGIN ── */
    #origin { padding: 20px 20px; position: relative; }

    .origin-grid {
      max-width: 1280px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1.6fr;
      border: 1px solid rgba(0,229,255,0.1);
      box-shadow: 0 0 60px rgba(232,0,26,0.04);
    }

    .origin-left {
      padding: 60px 44px;
      border-right: 1px solid rgba(0,229,255,0.1);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      background: linear-gradient(160deg, rgba(7,7,16,0.9) 0%, rgba(12,6,18,0.6) 100%);
      position: relative; overflow: hidden;
    }

    /* big kanji watermark */
    .origin-left::after { content: 'リセット'; font-family: var(--serif); font-size: 100px; font-weight: 900; position: absolute; color: rgba(232,0,26,0.05); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; writing-mode: vertical-rl; line-height: 1; }

    .emblem {
      width: 180px; height: 180px;
      border: 1px solid rgba(0,229,255,0.25);
      border-radius: 50%;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      position: relative; z-index: 1;
      background: radial-gradient(circle, rgba(232,0,26,0.12) 0%, transparent 70%);
      box-shadow: 0 0 40px rgba(0,229,255,0.08), 0 0 80px rgba(232,0,26,0.06);
    }

    .emblem::before { content: ''; position: absolute; inset: -12px; border: 1px solid rgba(0,229,255,0.12); border-radius: 50%; animation: spin-slow 22s linear infinite; }
    .emblem::after { content: ''; position: absolute; inset: -24px; border: 1px dashed rgba(232,0,26,0.08); border-radius: 50%; animation: spin-slow 35s linear infinite reverse; }
    @keyframes spin-slow { to { transform: rotate(360deg); } }

    .emblem-kanji { font-family: var(--serif); font-size: 64px; color: var(--cyan); text-shadow: 0 0 25px var(--cyan-glow); line-height: 1; }
    .emblem-label { font-size: 7px; letter-spacing: 5px; color: var(--gray); text-transform: uppercase; margin-top: 8px; text-align: center; }
    .emblem-label span { color: var(--red); display: block; font-size: 8px; letter-spacing: 4px; margin-top: 2px; }

    .origin-right { padding: 52px 56px; }

    .lore-blocks { display: flex; flex-direction: column; gap: 0; }

    .lore-block {
      display: flex; gap: 24px; align-items: flex-start;
      padding: 28px 0;
      border-bottom: 1px solid rgba(0,229,255,0.05);
    }
    .lore-block:last-child { border-bottom: none; }

    .lore-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      border: 1px solid rgba(232,0,26,0.3);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif); font-size: 22px;
      color: var(--red);
      transition: all 0.25s;
      position: relative;
    }

    .lore-block:hover .lore-icon { border-color: var(--red); background: var(--red-dim); box-shadow: 0 0 25px var(--red-dim); }

    .lore-label { font-size: 9px; letter-spacing: 4px; color: var(--red); text-transform: uppercase; margin-bottom: 8px; text-shadow: 0 0 8px var(--red-glow); font-family: var(--mono); }
    .lore-text { font-size: 11px; color: var(--gray); line-height: 2; font-family: var(--serif); font-weight: 300; }
    .lore-text strong { color: var(--white); font-weight: 400; }
    .lore-text em { font-style: normal; color: var(--cyan); }

    /* ── MANIFESTO ── */
    #manifesto { padding: 20px 20px; background: var(--bg2); position: relative; overflow: hidden; }

    #manifesto::before {
      content: '日本';
      position: absolute;
      font-family: var(--serif); font-size: 400px; font-weight: 900;
      color: rgba(0,229,255,0.02);
      right: -80px; top: 50%;
      transform: translateY(-50%);
      pointer-events: none; line-height: 1;
    }

    .manifesto-inner { max-width: 1280px; margin: 0 auto; }

    .manifesto-quote {
      text-align: center;
      max-width: 900px; margin: 0 auto 80px;
      position: relative; z-index: 1;
      padding: 48px 40px;
      border: 1px solid rgba(232,0,26,0.15);
      background: rgba(232,0,26,0.03);
    }

    .manifesto-quote::before, .manifesto-quote::after {
      content: '';
      position: absolute;
      width: 40px; height: 40px;
      border-color: var(--red); border-style: solid;
    }

    .manifesto-quote::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
    .manifesto-quote::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

    .manifesto-quote blockquote {
      font-family: var(--serif); font-size: 18px; font-weight: 300;
      color: var(--white); line-height: 1.9; font-style: italic;
      letter-spacing: 0.5px;
    }

    .manifesto-quote blockquote em { font-style: normal; color: var(--red); text-shadow: 0 0 12px var(--red-glow); }
    .manifesto-quote blockquote strong { font-weight: 400; color: var(--cyan); }
    .manifesto-quote cite { display: block; margin-top: 20px; font-size: 9px; letter-spacing: 4px; color: var(--gray); font-style: normal; font-family: var(--mono); text-transform: uppercase; }

    .pillars-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 0; border: 1px solid rgba(0,229,255,0.1);
    }

    .pillar {
      padding: 44px 36px;
      border-right: 1px solid rgba(0,229,255,0.07);
      position: relative; overflow: hidden;
      transition: background 0.25s;
    }
    .pillar:last-child { border-right: none; }
    .pillar:hover { background: rgba(232,0,26,0.025); }

    .pillar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,var(--red),var(--cyan)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
    .pillar:hover::before { transform: scaleX(1); }

    .pillar-num { font-family: var(--big); font-size: 80px; color: rgba(232,0,26,0.12); line-height: 1; margin-bottom: 16px; letter-spacing: 2px; }
    .pillar-kanji { font-family: var(--serif); font-size: 36px; color: var(--gold); display: block; margin-bottom: 8px; text-shadow: 0 0 16px rgba(201,168,76,0.4); }
    .pillar-title { font-family: var(--big); font-size: 20px; letter-spacing: 4px; color: var(--white); margin-bottom: 14px; }
    .pillar-desc { font-size: 11px; color: var(--gray); line-height: 1.9; font-family: var(--serif); font-weight: 300; }
    .pillar-desc strong { color: var(--red); font-weight: 400; }

    /* ── NEO-TOKYO CHRONICLES ── */
    #chronicles { padding: 20px 20px; }

    .chronicles-timeline {
      max-width: 1280px; margin: 0 auto;
      display: flex; flex-direction: column; gap: 0;
      border: 1px solid rgba(0,229,255,0.1);
    }

    .chronicle-entry {
      display: grid; grid-template-columns: 180px 1fr;
      border-bottom: 1px solid rgba(0,229,255,0.07);
      transition: background 0.25s;
    }
    .chronicle-entry:last-child { border-bottom: none; }
    .chronicle-entry:hover { background: rgba(0,229,255,0.02); }

    .chronicle-date {
      padding: 32px 28px;
      border-right: 1px solid rgba(0,229,255,0.07);
      display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start;
      background: rgba(7,7,16,0.5);
    }

    .chronicle-era { font-size: 8px; letter-spacing: 4px; color: var(--red); text-transform: uppercase; margin-bottom: 6px; text-shadow: 0 0 6px var(--red); }
    .chronicle-year { font-family: var(--display); font-size: 22px; color: var(--white); letter-spacing: 2px; }
    .chronicle-phase { font-size: 8px; letter-spacing: 3px; color: var(--gray); text-transform: uppercase; margin-top: 8px; }

    .chronicle-content { padding: 32px 40px; }
    .chronicle-title { font-family: var(--big); font-size: 22px; letter-spacing: 4px; color: var(--white); margin-bottom: 10px; }
    .chronicle-title em { font-style: normal; color: var(--red); text-shadow: 0 0 12px var(--red-glow); }
    .chronicle-desc { font-size: 11px; color: var(--gray); line-height: 1.9; font-family: var(--serif); font-weight: 300; max-width: 780px; }
    .chronicle-desc strong { color: var(--cyan); font-weight: 400; }

    .chronicle-tags { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
    .c-tag { font-size: 8px; letter-spacing: 3px; padding: 3px 10px; border: 1px solid rgba(0,229,255,0.18); color: var(--cyan); text-transform: uppercase; }
    .c-tag.red { border-color: rgba(232,0,26,0.25); color: var(--red); }
    .c-tag.gold { border-color: rgba(201,168,76,0.25); color: var(--gold); }

    .chronicle-status { margin-top: 12px; }
    .progress-bar { height: 2px; background: var(--gray2); margin-top: 8px; width: 300px; max-width: 100%; }
    .progress-fill { height: 100%; background: linear-gradient(90deg,var(--red),var(--cyan)); box-shadow: 0 0 10px var(--red-glow); }

    /* ── PROTOCOL ── */
    #protocol { padding: 20px 20px;  background: var(--bg2); }

    .protocol-grid {
      max-width: 1280px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 0; border: 1px solid rgba(0,229,255,0.08);
    }

    .protocol-card {
      padding: 36px 28px;
      border-right: 1px solid rgba(0,229,255,0.06);
      border-bottom: 1px solid rgba(0,229,255,0.06);
      position: relative; overflow: hidden;
      transition: background 0.25s;
    }
    .protocol-card:hover { background: rgba(232,0,26,0.025); }
    .protocol-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,var(--red),var(--cyan)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
    .protocol-card:hover::before { transform: scaleX(1); }
    .protocol-card:nth-child(3n) { border-right: none; }

    .pc-num { font-family: var(--big); font-size: 44px; color: rgba(232,0,26,0.16); margin-bottom: 16px; letter-spacing: 2px; }
    .pc-icon { font-family: var(--serif); font-size: 30px; display: block; margin-bottom: 12px; }
    .pc-title { font-size: 10px; letter-spacing: 3px; color: var(--white); text-transform: uppercase; margin-bottom: 10px; font-family: var(--mono); }
    .pc-desc { font-size: 10px; color: var(--gray); line-height: 1.9; font-family: var(--serif); font-weight: 300; }
    .pc-desc em { font-style: normal; color: var(--red); }

    /* ── TERMINAL ── */
    #terminal-section { padding: 20px 20px; }

    .terminal-wrap {
      max-width: 1280px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0; border: 1px solid rgba(0,229,255,0.1);
    }

    .terminal-lore { padding: 48px 44px; border-right: 1px solid rgba(0,229,255,0.1); }
    .terminal-lore-title { font-family: var(--big); font-size: 36px; letter-spacing: 4px; color: var(--white); margin-bottom: 24px; line-height: 1; }
    .terminal-lore-title em { font-style: normal; color: var(--red); text-shadow: 0 0 16px var(--red-glow); }

    .lore-stat-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(0,229,255,0.06); }
    .lore-stat-row:last-child { border-bottom: none; }
    .lsr-label { font-size: 9px; letter-spacing: 3px; color: var(--gray); text-transform: uppercase; }
    .lsr-value { font-family: var(--display); font-size: 11px; letter-spacing: 2px; color: var(--cyan); text-shadow: 0 0 8px var(--cyan); }
    .lsr-value.red { color: var(--red); text-shadow: 0 0 8px var(--red); }
    .lsr-value.gold { color: var(--gold); }

    .terminal-panel { }
    .terminal-header { display: flex; align-items: center; gap: 8px; padding: 12px 20px; background: #060610; border-bottom: 1px solid rgba(0,229,255,0.1); }
    .t-dot { width: 10px; height: 10px; border-radius: 50%; }
    .t-dot.r { background: var(--red); box-shadow: 0 0 6px var(--red); }
    .t-dot.y { background: var(--gold); }
    .t-dot.g { background: #2ecc71; box-shadow: 0 0 6px #2ecc71; }
    .terminal-title-bar { font-size: 9px; letter-spacing: 3px; color: var(--gray); margin-left: 8px; }
    .terminal-live { margin-left: auto; font-size: 9px; color: var(--cyan); display: flex; align-items: center; gap: 5px; letter-spacing: 2px; text-shadow: 0 0 6px var(--cyan); }
    .terminal-body { padding: 24px; background: #030308; height: 480px; overflow: hidden; }
    .tl { font-size: 10px; line-height: 2.15; display: flex; gap: 8px; }
    .t-p { color: var(--cyan); text-shadow: 0 0 6px var(--cyan); }
    .t-c { color: var(--white); }
    .t-o { color: var(--gray); }
    .t-s { color: #2ecc71; text-shadow: 0 0 6px #2ecc71; }
    .t-v { color: var(--cyan); text-shadow: 0 0 6px var(--cyan); }
    .t-w { color: var(--gold); }
    .t-r { color: var(--red); text-shadow: 0 0 6px var(--red); }
    .t-cur { animation: blink-r 1s step-end infinite; color: var(--red); }

    /* ── JOIN THE RISING ── */
    #join { padding: 20px 20px;  text-align: center; position: relative; overflow: hidden; }
    #join::before { content: '覚醒'; position: absolute; font-family: var(--serif); font-size: 400px; font-weight: 900; color: rgba(232,0,26,0.02); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }

    .join-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
    .join-kanji { font-family: var(--serif); font-size: 100px; color: var(--red); opacity: 0.18; margin-bottom: 20px; text-shadow: 0 0 60px var(--red-glow); }

    .join-ca {
      margin: 40px auto;
      max-width: 700px;
      background: rgba(232,0,26,0.06);
      border: 1px solid rgba(232,0,26,0.2);
      padding: 20px 28px;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      flex-wrap: wrap;
    }
    .join-ca-label { font-size: 8px; letter-spacing: 5px; color: var(--red); text-transform: uppercase; text-shadow: 0 0 6px var(--red); }
    .join-ca-addr { font-size: 10px; color: var(--white); letter-spacing: 1px; font-family: var(--mono); opacity: 0.8; word-break: break-all; }
    .join-ca-copy { font-size: 8px; letter-spacing: 3px; padding: 6px 14px; border: 1px solid rgba(0,229,255,0.3); color: var(--cyan); text-transform: uppercase; cursor: pointer; background: none; font-family: var(--mono); transition: all 0.2s; }
    .join-ca-copy:hover { background: var(--cyan-dim); box-shadow: 0 0 12px var(--cyan-glow); }

    .join-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }

    /* ── FOOTER ── */
    footer { border-top: 1px solid rgba(0,229,255,0.1); background: #030308; padding: 52px 28px 36px; }
    .footer-inner { max-width: 1280px; margin: 0 auto; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 44px; }
    .footer-brand p { font-size: 10px; color: var(--gray); line-height: 2; margin-top: 14px; font-family: var(--serif); font-weight: 300; }
    .footer-col h4 { font-size: 9px; letter-spacing: 4px; color: var(--cyan); text-transform: uppercase; margin-bottom: 16px; text-shadow: 0 0 6px var(--cyan); }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-col a { font-size: 10px; color: var(--gray); text-decoration: none; letter-spacing: 2px; transition: color 0.2s; }
    .footer-col a:hover { color: var(--red); text-shadow: 0 0 6px var(--red); }
    .footer-bottom { border-top: 1px solid rgba(0,229,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-bottom p { font-size: 9px; color: var(--gray); letter-spacing: 2px; }
    .footer-bottom a { font-size: 9px; color: var(--gray); text-decoration: none; letter-spacing: 2px; transition: color 0.2s; }
    .footer-bottom a:hover { color: var(--cyan); }

    /* CHAT BUTTON */
    .chat-btn { position: fixed; bottom: 34px; right: 34px; z-index: 300; width: 56px; height: 56px; background: var(--red); border: none; cursor: crosshair; display: flex; align-items: center; justify-content: center; clip-path: polygon(12px 0%,100% 0%,calc(100% - 12px) 100%,0% 100%); animation: pulse-r 3s ease-in-out infinite; transition: transform 0.2s; }
    .chat-btn:hover { transform: scale(1.07); }
    .chat-btn svg { width: 22px; height: 22px; color: #fff; }

    /* RESPONSIVE */
    @media (max-width: 1024px) { .hero-image-wrap { width: 55%; opacity: 0.65; } .origin-grid { grid-template-columns: 1fr; } .origin-left { border-right: none; border-bottom: 1px solid rgba(0,229,255,0.1); } .terminal-wrap { grid-template-columns: 1fr; } .terminal-lore { border-right: none; border-bottom: 1px solid rgba(0,229,255,0.1); } }
    @media (max-width: 860px) { .hero-image-wrap { display: none; } .stats-inner { grid-template-columns: repeat(2,1fr); } .pillars-grid { grid-template-columns: 1fr; } .protocol-grid { grid-template-columns: repeat(2,1fr); } .chronicle-entry { grid-template-columns: 1fr; } .chronicle-date { border-right: none; border-bottom: 1px solid rgba(0,229,255,0.07); } .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
    @media (max-width: 560px) { .nav-links { display: none; } .stats-inner { grid-template-columns: 1fr 1fr; } .protocol-grid { grid-template-columns: 1fr; } .footer-top { grid-template-columns: 1fr; } .hero-btns { flex-direction: column; } .manifesto-quote blockquote { font-size: 15px; } }
    
    @media (max-width: 768px) {

  /* Stats bar */
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-value { font-size: 13px; }

  /* Origin */
  .origin-grid { grid-template-columns: 1fr; }
  .origin-left { border-right: none; border-bottom: 1px solid rgba(0,229,255,0.1); padding: 36px 24px; }
  .origin-right { padding: 28px 20px; }
  .lore-block { flex-direction: column; gap: 12px; padding: 20px 0; }
  .lore-icon { width: 38px; height: 38px; font-size: 18px; }

  /* Manifesto */
  .manifesto-quote { padding: 28px 20px; margin-bottom: 40px; }
  .manifesto-quote blockquote { font-size: 13px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(0,229,255,0.07); padding: 32px 24px; }
  .pillar:last-child { border-bottom: none; }

  /* Chronicles */
  .chronicle-entry { grid-template-columns: 1fr; }
  .chronicle-date { border-right: none; border-bottom: 1px solid rgba(0,229,255,0.07); padding: 20px; flex-direction: row; align-items: center; gap: 16px; }
  .chronicle-year { font-size: 16px; }
  .chronicle-content { padding: 20px; }
  .progress-bar { width: 100%; }
  .chronicle-tags { gap: 6px; }

  /* Protocol */
  .protocol-grid { grid-template-columns: 1fr; }
  .protocol-card { border-right: none; padding: 28px 20px; }
  .protocol-card:nth-child(3n) { border-right: none; }

  /* Terminal */
  .terminal-wrap { grid-template-columns: 1fr; }
  .terminal-lore { border-right: none; border-bottom: 1px solid rgba(0,229,255,0.1); padding: 28px 20px; }
  .terminal-body { height: 320px; padding: 16px; }
  .lore-stat-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .lsr-value { font-size: 9px; }

  /* Section headers */
  .section-title { font-size: 32px; letter-spacing: 3px; }
  .section-desc { font-size: 11px; }
  .section-header { margin-bottom: 36px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Nav */
  .nav-links { display: none; }
  .nav-cta { padding: 8px 14px; font-size: 8px; }
  /* Hero spacing */
  .hero-content { padding: 40px 20px 40px; }
  .hero-kanji-deco { font-size: 60px; margin-bottom: -6px; }
  .hero-eyebrow { margin-bottom: 14px; font-size: 8px; letter-spacing: 3px; }

  /* Sections 2–6 padding */
  #origin,
  #manifesto,
  #chronicles,
  #protocol,
  #terminal-section { padding: 36px 20px; }

}