/* ============================================================
   DESIGN SYSTEM — The Brain of Li Yanxin
   Graphite & Highlight System · Pencil Draft Vibe · Neural Grid
   ============================================================ */

/* --- CSS Variables --- */
:root {
  /* Palette */
  --background: #F8F9FA;
  --foreground: #2D2D2D;
  --color-garden:     #EF6654;
  --color-onekilburn: #DFAF22;
  --color-locksmart:  #00CE93;
  --color-nexus:      #6F33FF;
  --color-creabox:    #0194FB;
  --color-mirror:     #B6C93E;
  --color-self:       #2D2D2D;

  /* Typography */
  --font-primary: 'Inter', 'Noto Sans SC', sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

  /* Motion */
  --ease-primary: cubic-bezier(0.2, 0, 0, 1);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-exit:    cubic-bezier(0.4, 0, 1, 1);
  --ease-enter:   cubic-bezier(0, 0, 0.2, 1);

  /* Layout */
  --nav-height: 56px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--foreground) transparent;
  font-size: 16px;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--foreground); opacity: 0.3; border-radius: 2px; }

body {
  font-family: var(--font-primary);
  background: var(--background);
  color: var(--foreground);
  overflow: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; border: none; background: none; }

/* --- Custom Cursor --- */
#custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s var(--ease-enter);
}
#custom-cursor svg { width: 100%; height: 100%; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#global-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: #2d2d2d;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 32px;
  position: relative;
}
.nav-logo, .nav-link, .nav-home {
  color: rgba(255, 255, 255, 0.85);
}
.nav-logo {
  font-weight: 100;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}
.nav-home {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease-enter);
  position: relative;
  flex-shrink: 0;
  z-index: 1;
}
.nav-home:hover, .nav-home.active { opacity: 1; }
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 32px;
}
.nav-link {
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity 0.3s var(--ease-enter);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0.5px;
  background: var(--foreground);
  transition: width 0.4s var(--ease-primary);
}
.nav-link:hover, .nav-link.active { opacity: 1; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.lang-btn {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border: 0.5px solid var(--foreground);
  opacity: 0.5;
  transition: opacity 0.3s var(--ease-enter);
  margin-left: auto;
  z-index: 1;
}
.lang-btn:hover { opacity: 1; }

.nav-line {
  position: absolute;
  bottom: 0; left: 32px; right: 32px;
  height: 0.5px;
  background: var(--foreground);
  opacity: 0.15;
}
.nav-line::before, .nav-line::after {
  content: '+';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8px;
  opacity: 0.5;
}
.nav-line::before { left: -8px; }
.nav-line::after  { right: -8px; }

/* Dark nav for brain page */
body.brain-active #global-nav {
  background: rgba(45, 45, 45, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
body.brain-active .nav-link,
body.brain-active .lang-btn {
  color: rgba(255, 255, 255, 0.7);
}
body.brain-active .nav-link:hover,
body.brain-active .nav-link.active {
  color: #ffffff;
}
body.brain-active .nav-link::after {
  background: rgba(255, 255, 255, 0.6);
}

/* Dark nav for engram page - 石墨色背景 */
body.engram-active #global-nav {
  background: #2D2D2D;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
body.engram-active .nav-logo,
body.engram-active .nav-link,
body.engram-active .lang-btn {
  color: #e0e0e0;
}
body.engram-active .nav-link::after {
  background: #e0e0e0;
}

/* Light nav for non-dark pages */
body.nav-light #global-nav {
  background: rgba(248, 249, 250, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
body.nav-light .nav-logo,
body.nav-light .nav-link,
body.nav-light .nav-home,
body.nav-light .lang-btn {
  color: rgba(45, 45, 45, 0.7);
}
body.nav-light .nav-link:hover,
body.nav-light .nav-link.active {
  color: #2d2d2d;
}
body.nav-light .nav-link::after {
  background: rgba(45, 45, 45, 0.5);
}

/* Dark nav for nexus page */
body.nexus-active #global-nav {
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
body.nexus-active .nav-logo,
body.nexus-active .nav-link,
body.nexus-active .nav-home,
body.nexus-active .lang-btn {
  color: rgba(200, 200, 200, 0.7);
}
body.nexus-active .nav-link:hover,
body.nexus-active .nav-link.active {
  color: #ffffff;
}
body.nexus-active .nav-link::after {
  background: rgba(200, 200, 200, 0.5);
}
body.engram-active .nav-line {
  background: #e0e0e0;
}

/* ============================================================
   PAGE SYSTEM
   ============================================================ */
.page {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0; bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s var(--ease-primary), visibility 0.7s;
  overflow-y: auto;
  overflow-x: hidden;
}
.page.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   PAGE: THE BRAIN
   ============================================================ */
#page-brain { overflow: hidden; background: #2D2D2D; }

.neural-network-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.neural-network-container canvas {
  pointer-events: auto;
}

.label-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 100;
}

.node-label {
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 300;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.04em;
}

.brain-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}

.brain-greeting-wrap {
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  pointer-events: none;
}

.greeting {
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  opacity: 0;
  line-height: 1.6;
  white-space: nowrap;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}
.greeting.visible { opacity: 1; animation: fadeIn 1s ease-out forwards; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   PAGE: THE LABS
   ============================================================ */
#page-labs { background: var(--background); }

.labs-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 249, 250, 0.9);
  backdrop-filter: blur(8px);
  padding: 24px 48px 20px;
}

/* Lab Entry Cards */
.labs-entry {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 56px);
  padding: 48px;
}
.lab-entry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 48px 40px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s var(--ease-enter);
  opacity: 0.6;
  min-width: 200px;
  position: relative;
  z-index: 2;
  background: rgba(248, 249, 250, 0.85);
  backdrop-filter: blur(4px);
}
.lab-entry-card:hover {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  background: rgba(248, 249, 250, 0.7);
  backdrop-filter: blur(8px);
}
.lab-hover-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.lab-hover-bg.visible {
  opacity: 1;
}
.lab-entry-card:hover {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.lab-icon {
  width: 64px;
  height: 64px;
}
.lab-entry-name {
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--foreground);
}
.lab-entry-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  opacity: 0.4;
  text-transform: uppercase;
}

/* Lab Sub-page */
.labs-sub {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--background);
}
.labs-sub-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 249, 250, 0.9);
  backdrop-filter: blur(8px);
  padding: 24px 48px 20px;
}
.labs-back-btn {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--foreground);
  background: none;
  border: 0.5px solid var(--foreground);
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s var(--ease-enter);
}
.labs-back-btn:hover {
  opacity: 1;
}
.lab-tabs { display: flex; gap: 24px; }
.lab-tab {
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
  padding-bottom: 8px;
  border-bottom: 0.5px solid transparent;
  transition: all 0.4s var(--ease-primary);
}
.lab-tab:hover { opacity: 0.7; }
.lab-tab.active {
  opacity: 1;
  border-bottom-color: var(--foreground);
}

.lab-panel {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  padding-top: 64px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-primary), visibility 0.5s;
  background-repeat: repeat;
  background-size: 480px 480px;
  animation: lab-panel-bg-drift 30s linear infinite;
}
@keyframes lab-panel-bg-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 480px 480px; }
}
/* Per-lab background lines — unique patterns, all graphite color */
/* Systemic Lab: neural network grid */
.lab-panel[data-lab="systemic"] {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 480 480' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%232D2D2D' fill='none' stroke-width='0.3' opacity='0.4'%3E%3Cline x1='0' y1='120' x2='120' y2='120'/%3E%3Cline x1='120' y1='120' x2='240' y2='80'/%3E%3Cline x1='240' y1='80' x2='360' y2='120'/%3E%3Cline x1='360' y1='120' x2='480' y2='100'/%3E%3Cline x1='0' y1='280' x2='100' y2='240'/%3E%3Cline x1='100' y1='240' x2='200' y2='280'/%3E%3Cline x1='200' y1='280' x2='320' y2='260'/%3E%3Cline x1='320' y1='260' x2='480' y2='280'/%3E%3Cline x1='0' y1='400' x2='80' y2='380'/%3E%3Cline x1='80' y1='380' x2='180' y2='420'/%3E%3Cline x1='180' y1='420' x2='300' y2='400'/%3E%3Cline x1='300' y1='400' x2='480' y2='420'/%3E%3Cline x1='120' y1='0' x2='100' y2='120'/%3E%3Cline x1='100' y1='120' x2='120' y2='240'/%3E%3Cline x1='120' y1='240' x2='100' y2='360'/%3E%3Cline x1='100' y1='360' x2='120' y2='480'/%3E%3Cline x1='280' y1='0' x2='300' y2='120'/%3E%3Cline x1='300' y1='120' x2='280' y2='240'/%3E%3Cline x1='280' y1='240' x2='300' y2='360'/%3E%3Cline x1='300' y1='360' x2='280' y2='480'/%3E%3Cline x1='420' y1='0' x2='400' y2='120'/%3E%3Cline x1='400' y1='120' x2='420' y2='240'/%3E%3Cline x1='420' y1='240' x2='400' y2='360'/%3E%3Cline x1='400' y1='360' x2='420' y2='480'/%3E%3Cline x1='100' y1='120' x2='200' y2='80'/%3E%3Cline x1='300' y1='120' x2='200' y2='80'/%3E%3Cline x1='100' y1='240' x2='200' y2='280'/%3E%3Cline x1='300' y1='240' x2='200' y2='280'/%3E%3Cline x1='100' y1='360' x2='180' y2='420'/%3E%3Cline x1='300' y1='360' x2='180' y2='420'/%3E%3Cline x1='400' y1='120' x2='320' y2='80'/%3E%3Cline x1='400' y1='120' x2='480' y2='100'/%3E%3Cline x1='400' y1='240' x2='320' y2='260'/%3E%3Cline x1='400' y1='360' x2='300' y2='400'/%3E%3Ccircle cx='120' cy='120' r='2'/%3E%3Ccircle cx='280' cy='120' r='2'/%3E%3Ccircle cx='420' cy='120' r='1.5'/%3E%3Ccircle cx='100' cy='240' r='2'/%3E%3Ccircle cx='300' cy='240' r='2'/%3E%3Ccircle cx='400' cy='240' r='1.5'/%3E%3Ccircle cx='100' cy='360' r='2'/%3E%3Ccircle cx='300' cy='360' r='2'/%3E%3Ccircle cx='400' cy='360' r='1.5'/%3E%3Ccircle cx='200' cy='80' r='1.5'/%3E%3Ccircle cx='200' cy='280' r='1.5'/%3E%3Ccircle cx='180' cy='420' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}
/* Sensory Lab: concentric ripple waves */
.lab-panel[data-lab="sensory"] {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%232D2D2D' fill='none' stroke-width='0.3' opacity='0.35'%3E%3Ccircle cx='200' cy='200' r='30'/%3E%3Ccircle cx='200' cy='200' r='60'/%3E%3Ccircle cx='200' cy='200' r='90'/%3E%3Ccircle cx='200' cy='200' r='120'/%3E%3Ccircle cx='200' cy='200' r='150'/%3E%3Ccircle cx='200' cy='200' r='180'/%3E%3Ccircle cx='0' cy='0' r='30'/%3E%3Ccircle cx='0' cy='0' r='60'/%3E%3Ccircle cx='0' cy='0' r='90'/%3E%3Ccircle cx='400' cy='0' r='30'/%3E%3Ccircle cx='400' cy='0' r='60'/%3E%3Ccircle cx='400' cy='0' r='90'/%3E%3Ccircle cx='0' cy='400' r='30'/%3E%3Ccircle cx='0' cy='400' r='60'/%3E%3Ccircle cx='0' cy='400' r='90'/%3E%3Ccircle cx='400' cy='400' r='30'/%3E%3Ccircle cx='400' cy='400' r='60'/%3E%3Ccircle cx='400' cy='400' r='90'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 400px 400px;
  animation: sensory-ripple 10s ease-in-out infinite;
}
@keyframes sensory-ripple {
  0%, 100% { background-position: 0 0; }
  50% { background-position: 100px 100px; }
}
/* Touchpoint Lab: floating wireframe cubes */
.lab-panel[data-lab="touchpoint"] {
}
.lab-panel.active { opacity: 1; visibility: visible; }

.lab-bg-canvas {
  position: absolute;
  top: 72px; left: 0; right: 0; bottom: 0;
  width: 100%; height: calc(100% - 72px);
  pointer-events: none;
  opacity: 0.25;
}

.lab-projects {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 48px;
  padding: 64px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Sensory lab hint */
.lab-sensory-hint {
  width: 100%;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #ccc;
  margin-bottom: 20px;
  padding: 18px 20px 8px;
  border-radius: 3px;
  background: #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}
.lab-sensory-hint-icon { display: inline-flex; align-items: center; color: #aaa; flex-shrink: 0; }
.lab-sensory-hint-icon svg { vertical-align: middle; display: block; }

/* Card requirement icons */
.project-card-icons {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.project-card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0.4; transition: opacity 0.3s; color: inherit;
}
.project-card:hover .project-card-icon { opacity: 0.8; }

.project-card {
  flex: 1;
  min-width: 360px;
  max-width: 560px;
  padding: 48px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  background: rgba(248, 249, 250, 0.6);
  backdrop-filter: blur(8px);
  transition: transform 0.5s var(--ease-primary), border-color 0.5s var(--ease-enter);
  position: relative;
  overflow: hidden;
}
.project-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--foreground);
  opacity: 0;
  transition: opacity 0.4s var(--ease-enter);
  z-index: 1;
}
.project-card-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s var(--ease-enter);
}
.project-card:hover .project-card-canvas {
  opacity: 1;
}
.project-card:hover {
  transform: translateY(-2px);
  border-color: var(--foreground);
}
.project-card:hover::before { opacity: 0.3; }

.project-card[data-color="garden"]:hover     { border-color: var(--color-garden); }
.project-card[data-color="garden"]:hover::before { background: var(--color-garden); }
.project-card[data-color="garden"]:hover .tag {
  background: var(--color-garden);
  color: #F5F5F5;
  border-color: var(--color-garden);
  opacity: 0.9;
}
.project-card[data-color="onekilburn"]:hover     { border-color: var(--color-onekilburn); }
.project-card[data-color="onekilburn"]:hover::before { background: var(--color-onekilburn); }
.project-card[data-color="onekilburn"]:hover .tag {
  background: var(--color-onekilburn);
  color: #F5F5F5;
  border-color: var(--color-onekilburn);
  opacity: 0.9;
}
.project-card[data-color="nexus"]:hover     { border-color: var(--color-nexus); }
.project-card[data-color="nexus"]:hover::before { background: var(--color-nexus); }
.project-card[data-color="nexus"]:hover .tag {
  background: var(--color-nexus);
  color: #F5F5F5;
  border-color: var(--color-nexus);
  opacity: 0.9;
}
.project-card[data-color="mirror"]:hover     { border-color: var(--color-mirror); }
.project-card[data-color="mirror"]:hover::before { background: var(--color-mirror); }
.project-card[data-color="mirror"]:hover .tag {
  background: var(--color-mirror);
  color: #2d2d2d;
  border-color: var(--color-mirror);
  opacity: 0.9;
}
.project-card[data-color="creabox"]:hover     { border-color: var(--color-creabox); }
.project-card[data-color="creabox"]:hover::before { background: var(--color-creabox); }
.project-card[data-color="creabox"]:hover .tag {
  background: var(--color-creabox);
  color: #E8EAED;
  border-color: var(--color-creabox);
  opacity: 0.9;
}
.project-card[data-color="locksmart"]:hover     { border-color: var(--color-locksmart); }
.project-card[data-color="locksmart"]:hover::before { background: var(--color-locksmart); }
.project-card[data-color="locksmart"]:hover .tag {
  background: var(--color-locksmart);
  color: #E8EAED;
  border-color: var(--color-locksmart);
  opacity: 0.9;
}

.project-index {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  opacity: 0.3;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
}
.project-name {
  font-weight: 100;
  font-size: 2rem;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.project-tags { display: flex; gap: 6px; margin-bottom: 20px; position: relative; z-index: 2; flex-wrap: wrap; }
.tag {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border: 0.5px solid var(--foreground);
  opacity: 0.5;
  border-radius: 2px;
}
.project-desc {
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 1.8;
  opacity: 0.6;
  position: relative;
  z-index: 2;
}

/* ============================================================
   PAGE: ENGRAM
   ============================================================ */
#page-engram {
  background: #2D2D2D;
  color: #e0e0e0;
  overflow: hidden;
  min-height: 100vh;
  position: relative;
}
.engram-header {
    position: relative;
    z-index: 5;
    padding: 40px 48px 0;
    background: #2d2d2d;
    display: flex;
    flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* Engram 顶部引导文案 */
.engram-intro {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin-bottom: 4px;
  text-align: left;
}

/* Live 指示器 */
.engram-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #B6C93E;
  animation: pulse-dot 1.2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(182, 201, 62, 0.5);
}
@keyframes pulse-dot {
  0%, 100% { opacity: 0.5; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* 粒子漂移动画 */
@keyframes engramDrift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(10px, -15px); }
  50% { transform: translate(-8px, 12px); }
  75% { transform: translate(15px, 8px); }
  100% { transform: translate(-5px, -10px); }
}

/* 粒子 hover tooltip */
.engram-tip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(12px);
  border: 0.5px solid rgba(144, 107, 255, 0.3);
  border-radius: 6px;
  padding: 10px 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 100;
}
.engram-tip-title {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.engram-tip-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 4px;
}
.tip-icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}
.tip-loc {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  position: relative;
}
.tip-loc::after {
  content: '';
  position: absolute;
  width: 4px; height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.tip-date {
  background: none;
  border: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.35);
  border-left: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 0 0 0 2px;
}
.tip-sep {
  margin: 0 2px;
  opacity: 0.3;
}

.live-text {
  color: #B6C93E;
  opacity: 0.9;
}

.engram-title {
  font-weight: 100;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
}
.engram-subtitle {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.engram-mode-toggle { display: flex; gap: 0; }
.mode-btn {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 0.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
  background: transparent;
  transition: all 0.3s var(--ease-enter);
  cursor: pointer;
}
.mode-btn:first-child { border-radius: 2px 0 0 2px; }
.mode-btn:last-child  { border-radius: 0 2px 2px 0; border-left: none; }
.mode-btn.active {
  background: rgba(144, 107, 255, 0.2);
  color: #906BFF;
  border-color: #906BFF;
}

.engram-tags {
  position: relative;
  z-index: 20;
  display: flex;
  gap: 12px;
  padding: 20px 48px;
  flex-wrap: wrap;
}
.engram-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s var(--ease-enter);
}
.engram-tag:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.7); }
.engram-tag.active {
  border-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
}

#engram-canvas {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.engram-search {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-primary);
}
.engram-search.visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.search-input {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: rgba(255,255,255,0.9);
  padding: 14px 24px;
  width: 400px;
  max-width: 80vw;
  outline: none;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s var(--ease-enter);
}
.search-input::placeholder { color: rgba(255,255,255,0.3); }
.search-input:focus { border-color: rgba(255,255,255,0.5); }

.engram-particles {
  position: absolute;
  top: 280px; left: 0; right: 0; bottom: 0;
  z-index: 10;
  pointer-events: auto !important;
}
.engram-particle {
  position: absolute !important;
  border-radius: 50%;
  pointer-events: auto !important;
  cursor: pointer !important;
  transition: transform 0.6s var(--ease-bounce), box-shadow 0.4s var(--ease-enter);
  background: rgba(220, 220, 220, 0.85);
  box-shadow:
    0 0 8px 2px rgba(220, 220, 220, 0.4),
    0 0 20px 4px rgba(220, 220, 220, 0.15),
    0 0 40px 8px rgba(200, 200, 200, 0.08);
}
.engram-particle:hover {
  transform: scale(1.8);
  z-index: 20;
  box-shadow:
    0 0 12px 4px rgba(255, 255, 255, 0.6),
    0 0 30px 8px rgba(255, 255, 255, 0.25),
    0 0 60px 16px rgba(255, 255, 255, 0.1);
}
.engram-particle .particle-tooltip {
  position: absolute;
  bottom: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 30, 30, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 18px;
  min-width: 180px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-enter);
  pointer-events: none;
}
.engram-particle .tooltip-title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.engram-particle .tooltip-date {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
}
.engram-particle:hover .particle-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Engram Modal (Observation Report) */
.engram-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.engram-modal-content {
  background: var(--color-void, #0A0A0F);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 28px;
  font-family: 'JetBrains Mono', monospace;
  position: relative;
}
.engram-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}
.engram-modal-content .data-id {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}
.status-sync {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  color: var(--color-nexus, #906BFF);
}
.pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-nexus, #906BFF);
  animation: status-pulse 2s infinite;
}
@keyframes status-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.engram-meta-box {
  border: 0.5px dashed rgba(255, 255, 255, 0.3);
  padding: 16px;
  margin-bottom: 20px;
  border-radius: 4px;
}
.engram-meta-box .meta-row {
  display: flex;
  gap: 20px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
.engram-meta-box .meta-row:last-child { margin-bottom: 0; }
.engram-meta-box .stimulus-row { color: rgba(255, 255, 255, 0.5); }
.engram-thought-body {
  padding: 16px 0;
}
.engram-thought-body .thought-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
}
.engram-thought-body .thought-content {
  font-family: var(--font-serif, 'Noto Serif SC', serif);
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}
.engram-citation-section {
  border-left: 2px solid var(--color-nexus, #906BFF);
  padding-left: 16px;
  margin: 16px 0;
}
.engram-citation-section .citation-text {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.engram-citation-section .citation-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(144, 107, 255, 0.3);
  border-radius: 3px;
  color: var(--color-nexus, #906BFF);
  font-size: 0.65rem;
  text-decoration: none;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
}
.engram-citation-section .citation-link:hover {
  border-color: var(--color-nexus, #906BFF);
  background: rgba(144, 107, 255, 0.1);
}
.engram-modal-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 16px;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
}
.engram-close-btn {
  position: absolute;
  top: 12px; right: 16px;
  width: 28px; height: 28px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
}
.engram-close-btn:hover {
  border-color: var(--color-nexus, #906BFF);
  color: var(--color-nexus, #906BFF);
}

/* ============================================================
   ENGRAM CANVAS V2.0
   ============================================================ */
#engram-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* ============================================================
   OBSERVATION REPORT MODAL
   ============================================================ */
.observation-report {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.observation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(8px);
}
.observation-panel {
  position: relative;
  width: 90%;
  max-width: 560px;
  max-height: 85vh;
  background: var(--color-void, #0A0A0F);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.observation-top {
  flex-shrink: 0;
  padding: 28px 28px 0;
  position: relative;
}
.observation-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 0 28px;
}
.observation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}
.observation-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.observation-entry-title {
  font-family: var(--font-serif, 'Noto Serif SC', serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
}
.observation-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border: 1px solid;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.observation-panel .data-id {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}
.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: #906BFF;
}
.observation-panel .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #906BFF;
  animation: status-pulse 2s ease-in-out infinite;
}
@keyframes status-pulse {
  0%, 100% { opacity: 0.5; box-shadow: none; }
  50% { opacity: 1; box-shadow: 0 0 8px #906BFF; }
}
.observation-meta {
  border: 0.5px dashed rgba(255, 255, 255, 0.3);
  padding: 16px;
  margin: 16px 0;
  border-radius: 4px;
}
.observation-panel .meta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.65rem;
}
.observation-panel .meta-row:last-child {
  margin-bottom: 0;
}
.observation-panel .meta-label {
  color: rgba(255, 255, 255, 0.4);
  min-width: 100px;
}
.observation-panel .meta-value {
  color: rgba(255, 255, 255, 0.75);
}
.intensity-bar {
  display: inline-flex;
  gap: 2px;
  margin-left: 8px;
}
.intensity-bar .bar {
  width: 6px;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
}
.intensity-bar .bar.filled {
  background: #906BFF;
}
.brain-state-badge {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid #906BFF;
  border-radius: 2px;
  color: #906BFF;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  background: rgba(144, 107, 255, 0.1);
}
.observation-body {
  padding: 16px 0;
}
.observation-panel .section-label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.observation-panel .thought-content {
  font-family: var(--font-serif, 'Noto Serif SC', serif);
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}
.observation-panel .thought-content h1 { font-size: 1.2rem; margin: 16px 0 8px; color: rgba(255,255,255,0.95); }
.observation-panel .thought-content h2 { font-size: 1.05rem; margin: 14px 0 6px; color: rgba(255,255,255,0.95); }
.observation-panel .thought-content h3 { font-size: 0.95rem; margin: 12px 0 4px; color: rgba(255,255,255,0.9); }
.observation-panel .thought-content strong { color: #fff; font-weight: 500; }
.observation-panel .thought-content em { color: rgba(255,255,255,0.7); }
.observation-panel .thought-content code {
  background: rgba(144,107,255,0.15);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85em;
}
.observation-panel .thought-content blockquote {
  border-left: 2px solid var(--color-nexus, #906BFF);
  padding-left: 14px;
  margin: 10px 0;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}
.observation-panel .thought-content a {
  color: var(--color-nexus, #906BFF);
  text-decoration: underline;
}
.observation-panel .thought-content li { margin-bottom: 4px; padding-left: 4px; }
.observation-external {
  border-left: 2px solid #906BFF;
  padding-left: 16px;
  margin: 16px 0;
}
.observation-panel .citation-text {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  font-size: 0.85rem;
}
.observation-panel .external-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  color: #906BFF;
  font-size: 0.65rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.observation-panel .external-link:hover {
  border-color: #906BFF;
  background: rgba(144, 107, 255, 0.1);
  text-decoration: none;
}
.observation-panel .external-link::before {
  content: '↗';
  font-size: 0.8em;
}
.observation-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}
.observation-panel .state-badge {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.6);
}
.energy-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
}
.energy-blocks {
  display: flex;
  gap: 2px;
}
.energy-block {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}
.energy-block.filled {
  background: linear-gradient(135deg, #906BFF, #5B8DEE);
}
.observation-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
  z-index: 10;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.observation-close:hover {
  border-color: #906BFF;
  color: #906BFF;
}

/* ============================================================
   PAGE: AUTHOR
   ============================================================ */
#page-author { overflow-y: auto; }

.author-bg-canvas {
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  width: 100%; height: calc(100% - var(--nav-height));
  pointer-events: none;
  opacity: 0.08;
  z-index: 0;
}

.author-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 48px;
  min-height: calc(100vh - var(--nav-height));
  align-content: start;
}

.author-photo-frame {
  width: 200px; height: 240px;
  border: 0.5px solid var(--foreground);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  opacity: 0.9;
  overflow: visible;
  position: relative;
  perspective: 1000px;
}
.author-photo-flip {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.photo-front, .photo-back {
  position: absolute;
  width: 100%; height: 100%;
  backface-visibility: hidden;
  overflow: hidden;
  border-radius: 2px;
}
.photo-front img, .photo-back img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.photo-back {
  transform: rotateY(180deg);
}

/* Mode Toggle - Easter Egg */
.photo-mode-toggle {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  transition: opacity 0.3s;
}
.photo-mode-toggle:hover {
  opacity: 0.8;
}
.mode-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--foreground);
  opacity: 0.4;
  transition: all 0.3s;
}
.photo-mode-toggle.active .mode-indicator {
  opacity: 1;
  background: var(--color-nexus);
}
.mode-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.photo-mode-toggle:hover .mode-label {
  opacity: 0.75;
}
.photo-mode-toggle.active .mode-label {
  opacity: 0.8;
}

/* Easter Egg Hint */
.author-easter-egg-hint-bar {
  text-align: center;
  padding: 12px 0 0;
  position: relative;
  z-index: 1;
}
.author-easter-egg-hint {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: var(--foreground);
  margin-top: 0;
  display: inline-block;
}

.author-name {
  font-weight: 100;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.author-name-en {
  font-weight: 300;
  font-size: 0.8rem;
  opacity: 0.4;
  letter-spacing: 0.06em;
}

.author-meta { display: flex; flex-direction: column; gap: 16px; }
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 2px;
}
.meta-value {
  font-weight: 300;
  font-size: 0.78rem;
  opacity: 0.7;
  letter-spacing: 0.02em;
  line-height: 1.7;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 0.5px solid var(--foreground);
  display: inline-block;
}

.author-statement { margin-bottom: 48px; }
.author-statement p {
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 2;
  opacity: 0.55;
  max-width: 520px;
}

.contact-links { display: flex; gap: 24px; }
.contact-link {
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  opacity: 0.5;
  padding-bottom: 2px;
  border-bottom: 0.5px solid transparent;
  transition: all 0.3s var(--ease-enter);
}
.contact-link:hover { opacity: 1; border-bottom-color: var(--foreground); }

/* Author: Birth Year */
.author-birth-year {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  opacity: 0.3;
  margin-bottom: 20px;
}

/* Author: Slogan */
.author-slogan {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 0.5px solid var(--foreground);
}
.slogan-text {
  font-weight: 300;
  font-size: 0.78rem;
  line-height: 1.8;
  opacity: 0.5;
}

/* Author: Contact Card */
.author-contact-card {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 300;
  opacity: 0.5;
  letter-spacing: 0.02em;
}
.contact-card-item a {
  color: inherit;
  text-decoration: none;
  border-bottom: 0.5px solid transparent;
  transition: border-color 0.3s var(--ease-enter);
}
.contact-card-item a:hover {
  border-bottom-color: var(--foreground);
}

/* Author: Slash Tags — replaced by slogan, keep for safety */
.author-slash-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.slash-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border: 0.5px solid var(--foreground);
  border-radius: 2px;
  opacity: 0.4;
}

/* Author: Compact Contact */
.author-contact-compact {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.contact-compact-item {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid var(--foreground);
  border-radius: 2px;
  opacity: 0.4;
  transition: all 0.3s var(--ease-enter);
}
.contact-compact-item:hover {
  opacity: 1;
  border-color: var(--color-nexus);
  color: var(--color-nexus);
}

/* Author: Statement */
.statement-text {
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 2;
  opacity: 0.55;
  max-width: 520px;
  margin-bottom: 16px;
}

/* Author: Formula */
.author-formula {
  margin: 32px 0 48px;
  padding: 24px;
  border: 0.5px dashed var(--foreground);
  border-radius: 2px;
  max-width: 520px;
}
.formula-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-mono);
}
.formula-label {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.formula-equals {
  font-size: 1.2rem;
  opacity: 0.6;
}
.formula-fraction {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.formula-numerator,
.formula-denominator {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  opacity: 0.7;
}
.fraction-line {
  width: 100%;
  height: 0.5px;
  background: var(--foreground);
  opacity: 0.5;
}

/* Author: Tag Canvas */
.tag-canvas {
  width: 100%;
  height: 320px;
  border: 0.5px solid var(--foreground);
  border-radius: 2px;
  cursor: default;
}

/* Author: Tag Voting — legacy styles kept for reference */
.author-tag-voting {
  margin-bottom: 48px;
}
.tag-voting-hint {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  opacity: 0.6;
  margin-bottom: 24px;
  line-height: 1.6;
  padding: 12px 16px;
  border-left: 2px solid var(--color-nexus);
  background: rgba(111, 51, 255, 0.05);
}
.tag-group {
  margin-bottom: 24px;
}
.tag-group-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 12px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vote-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 0.5px solid var(--foreground);
  border-radius: 2px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  opacity: 0.6;
  cursor: pointer;
  transition: all 0.3s var(--ease-enter);
  user-select: none;
  background: none;
  position: relative;
}
.vote-tag:hover {
  opacity: 0.9;
}
.vote-tag.expanded {
  opacity: 1;
}
.vote-tag.voted {
  opacity: 1;
  background: rgba(45, 45, 45, 0.05);
}
/* Core group: solid fill on hover */
.tag-group[data-group="core"] .vote-tag:hover {
  background: rgba(45, 45, 45, 0.08);
  border-color: var(--foreground);
}
/* Unique group: colored left border */
.tag-group[data-group="unique"] .vote-tag {
  border-left-width: 3px;
  border-left-color: var(--color-nexus);
}
/* Bug group: dashed border */
.tag-group[data-group="bug"] .vote-tag {
  border-style: dashed;
}
.tag-group[data-group="bug"] .vote-tag:hover::after {
  content: "⚠ 已确认";
  position: absolute;
  right: -60px;
  font-size: 0.6rem;
  opacity: 0.5;
  white-space: nowrap;
}
.vote-tag.sync-flash {
  animation: tagSyncFlash 0.4s ease-out;
}
@keyframes tagSyncFlash {
  0% { box-shadow: 0 0 0 0 rgba(111, 51, 255, 0.4); }
  50% { box-shadow: 0 0 12px 4px rgba(111, 51, 255, 0.2); }
  100% { box-shadow: 0 0 0 0 rgba(111, 51, 255, 0); }
}
.tag-text { }
.tag-sync-rate {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  opacity: 0.5;
  min-width: 36px;
  text-align: right;
}
.tag-desc {
  display: block;
  font-size: 0.7rem;
  font-weight: 300;
  opacity: 0.5;
  margin-top: 4px;
  padding-top: 4px;
  border-top: 0.5px dashed var(--foreground);
  line-height: 1.6;
}

/* Author: Debug Log */
.author-debug-log {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 0.5px solid var(--foreground);
}
.debug-label { }
.debug-log-content {
  border: 0.5px dashed var(--foreground);
  border-radius: 2px;
  padding: 16px 20px;
  max-width: 520px;
  background: rgba(45, 45, 45, 0.02);
}
.debug-header {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 0.5px dashed var(--foreground);
}
.debug-meta {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.35;
}
.debug-status-indicator {
  color: var(--color-locksmart);
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.debug-entry { margin-bottom: 12px; }
.debug-timestamp {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-garden);
  opacity: 0.7;
  margin-right: 8px;
}
.debug-text {
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 1.9;
  opacity: 0.55;
}
.debug-footer {
  padding-top: 8px;
  border-top: 0.5px dashed var(--foreground);
}
.debug-note {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  opacity: 0.3;
}

/* Author: Specimen Section */
.author-specimen-section {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 48px;
  border-top: 0.5px solid var(--foreground);
}
.specimen-slogan {
  text-align: center;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  opacity: 0.5;
  margin-bottom: 8px;
  margin-top: 8px;
  display: block;
}
.specimen-hint {
  font-size: 0.7rem;
  font-weight: 300;
  opacity: 0.35;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
  animation: hintPulse 3s ease-in-out infinite;
  display: block;
}
@keyframes hintPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.55; }
}
.specimen-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.specimen-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 28px 16px 28px;
  border: 0.5px solid var(--foreground);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-enter);
  position: relative;
  overflow: visible;
}
/* Folder tab effect */
.specimen-card::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 16px;
  width: 32px;
  height: 8px;
  background: var(--foreground);
  opacity: 0.15;
  border-radius: 2px 2px 0 0;
  transition: all 0.3s var(--ease-enter);
}
.specimen-card:hover::before {
  opacity: 0.6;
  top: -16px;
  height: 12px;
  background: var(--color-nexus);
}
/* Folder shadow/depth */
.specimen-card::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 4px;
  right: 4px;
  height: 3px;
  background: var(--foreground);
  opacity: 0.05;
  border-radius: 0 0 1px 1px;
  transition: opacity 0.3s;
}
.specimen-card:hover::after {
  opacity: 0.1;
}
.specimen-card:hover {
  border-color: var(--color-nexus);
  transform: translateY(-2px);
}
.specimen-card:hover .specimen-code {
  opacity: 0.7;
}
.specimen-card:hover .specimen-name {
  letter-spacing: 0.08em;
}
.specimen-code {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  opacity: 0.4;
  transition: all 0.3s;
}
.specimen-name {
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: letter-spacing 0.3s;
}

/* Specimen Modal */
.specimen-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.specimen-modal.active {
  display: flex;
}
.modal-backdrop {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}
.modal-content {
  position: relative;
  width: 90vw;
  max-width: 1200px;
  height: 85vh;
  background: #F8F9FA;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border: none;
  background: transparent;
  font-size: 1.8rem;
  color: #2D2D2D;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.2s;
  z-index: 10;
}
.modal-close:hover {
  opacity: 1;
}
.modal-gallery {
  flex: 2;
  background: #2D2D2D;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  padding: 16px;
  gap: 12px;
  overflow-y: auto;
}
.modal-gallery::-webkit-scrollbar {
  width: 4px;
}
.modal-gallery::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}
.gallery-item {
  width: calc(50% - 6px);
  max-height: 45%;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #252525;
  filter: grayscale(40%) contrast(1.05);
  transition: filter 0.4s, transform 0.4s;
}
.gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
}
.gallery-item.video-item::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  opacity: 0.8;
}
.gallery-item.video-item::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-40%, -50%);
  border: 10px solid transparent;
  border-left: 14px solid #2D2D2D;
  z-index: 1;
  opacity: 0.8;
}
.modal-text {
  flex: 1;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-code {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  opacity: 0.35;
  margin-bottom: 16px;
}
.modal-title {
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.modal-desc {
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.9;
  opacity: 0.7;
}

/* Photography film flicker effect */
.modal-gallery.photography .gallery-item img {
  animation: filmFlicker 4s infinite;
}
@keyframes filmFlicker {
  0%, 100% { opacity: 1; filter: grayscale(40%) contrast(1.05); }
  50% { opacity: 0.95; filter: grayscale(35%) contrast(1.08) brightness(1.02); }
}

/* Tarot vertical layout - 2 cards stacked */
.modal-gallery.tarot {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal-gallery.tarot .gallery-item {
  width: 70%;
  aspect-ratio: 3/4;
}

/* Author: Labs Section */
.author-labs-section {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px;
}
.author-labs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.author-lab-card {
  padding: 24px;
  border: 0.5px solid var(--foreground);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s var(--ease-enter);
  opacity: 0.7;
}
.author-lab-card:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.author-lab-card[data-lab="systemic"]:hover { border-color: var(--color-garden); }
.author-lab-card[data-lab="sensory"]:hover { border-color: var(--color-nexus); }
.author-lab-card[data-lab="touchpoint"]:hover { border-color: var(--color-locksmart); }
.lab-card-icon {
  margin-bottom: 16px;
  opacity: 0.6;
}
.lab-card-title {
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  display: block;
}
.lab-card-desc {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  opacity: 0.45;
  line-height: 1.6;
  display: block;
}

/* Author: Engram Section */
.author-engram-section {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px 48px;
}
.engram-cta {
  padding: 32px;
  border: 0.5px solid var(--foreground);
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-enter);
  opacity: 0.7;
}
.engram-cta:hover {
  opacity: 1;
  border-color: var(--color-creabox);
}
.engram-cta-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 12px;
}
.engram-cta-action {
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

/* Author: Footer Grid */
.author-footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px 48px;
}
.author-resume { }
.resume-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 0.5px solid var(--foreground);
  border-radius: 2px;
  background: none;
  cursor: pointer;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  opacity: 0.6;
  transition: all 0.3s var(--ease-enter);
  position: relative;
  overflow: hidden;
}
.resume-btn:hover {
  opacity: 1;
  border-color: var(--color-mirror);
}
.resume-btn-icon { opacity: 0.6; }
.resume-btn-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--color-mirror);
  transition: width 0.3s linear;
}
.resume-btn.downloading .resume-btn-progress {
  width: 100%;
  transition-duration: 1.5s;
}
.author-social { }
.social-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 12px;
}
.social-links {
  display: flex;
  gap: 24px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  transition: all 0.3s var(--ease-enter);
}
.social-link:hover { opacity: 1; }
.social-icon { font-size: 1.2rem; }
.social-name {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

/* Author: Site Notice */
.author-site-notice {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 48px 64px;
  text-align: center;
}
.notice-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  opacity: 0.25;
}

/* Author: Responsive */
@media (max-width: 1024px) {
  .author-grid {
    gap: 48px;
  }
  .author-labs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .author-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px;
  }
  .author-left {
    text-align: center;
  }
  .author-photo-frame {
    margin: 0 auto 24px;
  }
  .author-slash-tags {
    justify-content: center;
  }
  .author-contact-compact {
    justify-content: center;
  }
  .author-right {
    margin-top: 16px;
  }
  .author-formula {
    padding: 16px;
  }
  .tag-cloud {
    gap: 6px;
  }
  .debug-log-content {
    padding: 12px 16px;
  }
  .author-labs-section,
  .author-engram-section,
  .author-footer-grid,
  .author-site-notice,
  .author-specimen-section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .author-specimen-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .specimen-grid {
    gap: 12px;
  }
  .specimen-card {
    padding: 16px 24px;
  }
  .modal-content {
    flex-direction: column;
    width: 95vw;
    height: 90vh;
  }
  .modal-gallery {
    flex: 1;
    min-height: 200px;
  }
  .modal-text {
    padding: 24px;
  }
  .gallery-item {
    width: calc(50% - 6px);
  }
  .author-labs-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .author-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .social-links {
    justify-content: center;
  }
}

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.divider {
  border: none;
  border-top: 0.5px solid var(--foreground);
  opacity: 0.15;
  position: relative;
  margin: 0;
}
.divider::before, .divider::after {
  content: '+';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8px;
  opacity: 0.5;
}
.divider::before { left: 0; }
.divider::after  { right: 0; }

/* ============================================================
   LOADING SKELETON
   ============================================================ */
@keyframes skeleton-draw {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.skeleton-line {
  height: 0.5px;
  background: var(--foreground);
  opacity: 0;
  animation: skeleton-draw 0.8s var(--ease-enter) forwards;
}

/* --- i18n toggle --- */
.en-only { display: none !important; }
[data-lang="en"] .zh-only { display: none !important; }
[data-lang="en"] svg .zh-only { visibility: hidden !important; }
[data-lang="en"] .en-only { display: inline !important; }
[data-lang="en"] svg .en-only { visibility: visible !important; }
/* 英文模式下需要 block 显示的元素 */
[data-lang="en"] p.en-only,
[data-lang="en"] div.en-only,
[data-lang="en"] h3.en-only,
[data-lang="en"] h2.en-only,
[data-lang="en"] span.en-only.block { display: block !important; }

/* ============================================================
   PAGE: GARDEN (Project Detail)
   ============================================================ */
#page-garden {
  background-color: var(--background);
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 480 480' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23EF6654' fill='none' stroke-width='0.3' opacity='0.6'%3E%3C!-- horizontal connectors --%3E%3Cline x1='0' y1='120' x2='120' y2='120'/%3E%3Cline x1='120' y1='120' x2='240' y2='80'/%3E%3Cline x1='240' y1='80' x2='360' y2='120'/%3E%3Cline x1='360' y1='120' x2='480' y2='100'/%3E%3Cline x1='0' y1='280' x2='100' y2='240'/%3E%3Cline x1='100' y1='240' x2='200' y2='280'/%3E%3Cline x1='200' y1='280' x2='320' y2='260'/%3E%3Cline x1='320' y1='260' x2='480' y2='280'/%3E%3Cline x1='0' y1='400' x2='80' y2='380'/%3E%3Cline x1='80' y1='380' x2='180' y2='420'/%3E%3Cline x1='180' y1='420' x2='300' y2='400'/%3E%3Cline x1='300' y1='400' x2='480' y2='420'/%3E%3C!-- vertical connectors --%3E%3Cline x1='120' y1='0' x2='100' y2='120'/%3E%3Cline x1='100' y1='120' x2='120' y2='240'/%3E%3Cline x1='120' y1='240' x2='100' y2='360'/%3E%3Cline x1='100' y1='360' x2='120' y2='480'/%3E%3Cline x1='280' y1='0' x2='300' y2='120'/%3E%3Cline x1='300' y1='120' x2='280' y2='240'/%3E%3Cline x1='280' y1='240' x2='300' y2='360'/%3E%3Cline x1='300' y1='360' x2='280' y2='480'/%3E%3Cline x1='420' y1='0' x2='400' y2='120'/%3E%3Cline x1='400' y1='120' x2='420' y2='240'/%3E%3Cline x1='420' y1='240' x2='400' y2='360'/%3E%3Cline x1='400' y1='360' x2='420' y2='480'/%3E%3C!-- diagonal cross-links --%3E%3Cline x1='100' y1='120' x2='200' y2='80'/%3E%3Cline x1='300' y1='120' x2='200' y2='80'/%3E%3Cline x1='100' y1='240' x2='200' y2='280'/%3E%3Cline x1='300' y1='240' x2='200' y2='280'/%3E%3Cline x1='100' y1='360' x2='180' y2='420'/%3E%3Cline x1='300' y1='360' x2='180' y2='420'/%3E%3Cline x1='400' y1='120' x2='320' y2='80'/%3E%3Cline x1='400' y1='120' x2='480' y2='100'/%3E%3Cline x1='400' y1='240' x2='320' y2='260'/%3E%3Cline x1='400' y1='360' x2='300' y2='400'/%3E%3C!-- nodes --%3E%3Ccircle cx='120' cy='120' r='2'/%3E%3Ccircle cx='280' cy='120' r='2'/%3E%3Ccircle cx='420' cy='120' r='1.5'/%3E%3Ccircle cx='100' cy='240' r='2'/%3E%3Ccircle cx='300' cy='240' r='2'/%3E%3Ccircle cx='400' cy='240' r='1.5'/%3E%3Ccircle cx='100' cy='360' r='2'/%3E%3Ccircle cx='300' cy='360' r='2'/%3E%3Ccircle cx='400' cy='360' r='1.5'/%3E%3Ccircle cx='200' cy='80' r='1.5'/%3E%3Ccircle cx='200' cy='280' r='1.5'/%3E%3Ccircle cx='180' cy='420' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 480px 480px;
  animation: garden-bg-drift 30s linear infinite;
}
@keyframes garden-bg-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 480px 480px; }
}

/* --- Sticky Meta Bar --- */
.garden-meta-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(248, 249, 250, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--foreground);
}
.garden-exp-id {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  opacity: 0.4;
}
.garden-exp-title {
  font-weight: 100;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.garden-meta-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.garden-lab-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border: none;
  opacity: 0.4;
}
.garden-back-btn {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border: 0.5px solid var(--foreground);
  border-radius: 2px;
  opacity: 0.5;
  transition: all 0.3s var(--ease-enter);
}
.garden-back-btn:hover {
  opacity: 1;
  border-color: var(--color-garden);
}

/* --- Garden Divider --- */
.garden-divider {
  border: none;
  border-top: 0.5px solid var(--color-garden);
  margin: 0;
  opacity: 0.4;
  position: relative;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.garden-divider::before, .garden-divider::after {
  content: '+';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8px;
  color: var(--color-garden);
  opacity: 0.5;
}
.garden-divider::before { left: 0; }
.garden-divider::after  { right: 0; }

/* --- Garden Section Base --- */
.garden-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 48px;
  position: relative;
}

/* --- Section Header --- */
.garden-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.garden-section-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--color-garden);
  opacity: 0.7;
  text-shadow: 0 0 6px rgba(239, 102, 84, 0.15);
  animation: section-num-glow 4s ease-in-out infinite alternate;
}
@keyframes section-num-glow {
  0% { text-shadow: 0 0 4px rgba(239, 102, 84, 0.08); }
  100% { text-shadow: 0 0 8px rgba(239, 102, 84, 0.2); }
}
.garden-section-label {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--color-garden);
}
.garden-crosshair-end {
  margin-left: auto;
  font-size: 8px;
  opacity: 0.5;
}

/* --- Hero --- */
.garden-hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding-bottom: 0;
}
.garden-hero-image-wrap {
  width: 100%;
  margin-bottom: 40px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms var(--ease-enter), transform 600ms var(--ease-enter);
}
.garden-hero-image-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}
.garden-hero-image {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
}
.garden-hero-content {
  max-width: 640px;
  position: relative;
  z-index: 2;
}
.garden-hero-title {
  font-weight: 100;
  font-size: 3.5rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms var(--ease-enter), transform 600ms var(--ease-enter);
}
.garden-hero-title.visible {
  opacity: 1;
  transform: translateY(0);
}
.garden-hero-subtitle {
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms var(--ease-enter) 100ms, transform 600ms var(--ease-enter) 100ms;
}
.garden-hero-subtitle.visible {
  opacity: 0.7;
  transform: translateY(0);
}
.garden-hero-desc {
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms var(--ease-enter) 200ms, transform 600ms var(--ease-enter) 200ms;
}
.garden-hero-desc.visible {
  opacity: 0.7;
  transform: translateY(0);
}
.garden-hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms var(--ease-enter) 300ms, transform 600ms var(--ease-enter) 300ms;
}
.garden-hero-tags.visible {
  opacity: 1;
  transform: translateY(0);
}
.garden-tag {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border: 0.5px solid var(--foreground);
  opacity: 0.5;
  border-radius: 2px;
  transition: all 0.2s var(--ease-bounce);
}
.garden-tag:hover {
  opacity: 1;
  border-color: var(--color-garden);
}
.garden-crosshair {
  position: absolute;
  bottom: 32px;
  right: 48px;
  font-size: 8px;
  opacity: 0.5;
  animation: crosshair-breathe 8s var(--ease-enter) infinite;
}
.garden-crosshair-end {
  margin-left: auto;
  font-size: 8px;
  opacity: 0.5;
  animation: crosshair-breathe 8s var(--ease-enter) infinite;
}
@keyframes crosshair-breathe {
  0%, 100% { opacity: 0.1; transform: translate(0, 0); }
  50% { opacity: 0.4; transform: translate(1px, -1px); }
}

/* --- Background Section --- */
.garden-bg-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
.garden-bg-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.garden-bg-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.garden-data-card {
  padding: 18px 14px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  background: rgba(248, 249, 250, 0.6);
  backdrop-filter: blur(6px);
}
.garden-data-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-garden);
  margin-bottom: 4px;
}
.garden-data-unit {
  font-weight: 300;
  font-size: 0.65rem;
  opacity: 0.6;
  letter-spacing: 0.04em;
}
.garden-bg-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.garden-chart {
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  padding: 10px 8px 4px;
  background: rgba(248, 249, 250, 0.6);
}
.garden-chart-title {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  opacity: 0.5;
  margin-bottom: 6px;
  text-align: center;
}
.garden-chart-svg {
  width: 100%;
  height: auto;
}
.garden-bg-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.garden-bg-text {
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 500ms var(--ease-enter), transform 500ms var(--ease-enter);
}
.garden-bg-text.visible {
  opacity: 0.7;
  transform: translateY(0);
}

/* --- Research Methods --- */
.garden-methods-cards {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.garden-method-card {
  flex: 1;
  min-width: 0;
  padding: 20px 16px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  background: rgba(248, 249, 250, 0.6);
  backdrop-filter: blur(6px);
}
.garden-method-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  opacity: 0.3;
  margin-bottom: 12px;
}
.garden-method-title {
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.garden-method-desc {
  font-weight: 300;
  font-size: 0.7rem;
  line-height: 1.5;
  opacity: 0.6;
}

/* --- Design Insights --- */
.garden-insights-hint { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.04em; color: rgba(45,45,45,0.35); margin-bottom: 12px; }
.garden-insights-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.garden-insight-card {
  position: relative;
  padding: 28px 32px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  background: rgba(248, 249, 250, 0.6);
  backdrop-filter: blur(4px);
  margin-bottom: 2px;
  transition: border-color 0.3s var(--ease-enter);
  cursor: pointer;
}
.garden-insight-card:hover {
  border-color: var(--color-garden);
}
.garden-insight-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.garden-insight-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  opacity: 0.3;
  transition: color 300ms var(--ease-enter);
}
.garden-insight-card:hover .garden-insight-num {
  color: var(--color-garden);
}
.garden-insight-connector {
  width: 1px;
  height: 0;
  background: var(--foreground);
  opacity: 0.2;
  transition: height 800ms var(--ease-primary);
}
.garden-insight-connector.animate {
  height: 24px;
}
.garden-insight-title {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.garden-insight-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 500ms var(--ease-primary), opacity 400ms var(--ease-enter);
}
.garden-insight-card:hover .garden-insight-body,
.garden-insight-card.expanded .garden-insight-body {
  max-height: 300px;
  opacity: 1;
}
.garden-insight-principle {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--color-garden);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.garden-insight-principle::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-garden);
  transition: width 200ms var(--ease-bounce);
}
.garden-insight-card:hover .garden-insight-principle::after {
  width: 100%;
}
.garden-insight-text {
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 1.9;
  opacity: 0.55;
}

/* --- Outcomes Cards (horizontal) --- */
.garden-outcomes-cards {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: #EF6654 transparent;
}
.garden-outcomes-cards::-webkit-scrollbar {
  height: 3px;
}
.garden-outcomes-cards::-webkit-scrollbar-track {
  background: transparent;
}
.garden-outcomes-cards::-webkit-scrollbar-thumb {
  background: #EF6654;
  border-radius: 2px;
}
.garden-outcomes-layout {
  margin-top: 32px;
}
.garden-outcome-card--full {
  width: 100%;
  margin-bottom: 12px;
}
.garden-outcomes-row {
  display: flex;
  gap: 12px;
}
.garden-outcomes-row .garden-outcome-card {
  flex: 1;
  min-width: 0;
}
.garden-outcome-card {
  padding: 20px 16px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  background: rgba(248, 249, 250, 0.6);
  backdrop-filter: blur(6px);
}
.garden-outcome-card--root {
  border-color: var(--color-garden);
  background: var(--color-garden);
  color: #fff;
}
.garden-outcome-card--root .garden-outcome-num {
  display: none;
}
.garden-outcome-card--root .garden-outcome-title {
  color: #fff;
}
.garden-outcome-card--root .garden-outcome-sub {
  color: #fff;
}
.garden-outcome-card--root .garden-outcome-desc {
  color: #fff;
}
.garden-outcome-card--root:hover {
  border-color: rgba(255, 255, 255, 0.4);
}
.garden-outcome-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  opacity: 0.3;
  margin-bottom: 12px;
}
.garden-outcome-card--root .garden-outcome-num {
  color: var(--color-garden);
  opacity: 0.7;
}
.garden-outcome-card .garden-outcome-title {
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  line-height: 1.4;
}
.garden-outcome-card .garden-outcome-sub {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  opacity: 0.3;
  margin-bottom: 10px;
}
.garden-outcome-card .garden-outcome-desc {
  font-weight: 300;
  font-size: 0.7rem;
  line-height: 1.5;
  opacity: 0.6;
}

/* "Power-on" flash effect for outcome nodes */
.garden-outcome-node.power-on {
  animation: garden-power-on 600ms ease-out;
}
@keyframes garden-power-on {
  0%   { border-color: var(--foreground); }
  30%  { border-color: var(--color-garden); box-shadow: 0 0 12px 2px rgba(239,102,84,0.3); }
  100% { border-color: var(--foreground); box-shadow: none; }
}

/* --- Deliverables --- */
.garden-deliverables-grid {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}
.garden-deliverable-card {
  flex: 1;
  padding: 36px 28px;
  border: 0.5px solid var(--color-garden);
  border-radius: 4px;
  background: var(--color-garden);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease-primary), transform 600ms var(--ease-primary), border-color 0.2s var(--ease-bounce);
  color: rgba(248, 249, 250, 0.85);
}
.garden-deliverable-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.garden-deliverable-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
}
.garden-deliverable-card svg {
  stroke: rgba(248, 249, 250, 0.85) !important;
}
.garden-deliverable-card .garden-deliverable-title {
  color: #fff;
}
.garden-deliverable-card .garden-deliverable-desc {
  color: rgba(248, 249, 250, 0.7);
}
.garden-deliverable-card .garden-download-btn {
  color: rgba(248, 249, 250, 0.85);
  border-color: rgba(248, 249, 250, 0.4);
}
.garden-deliverable-card .garden-download-btn:hover {
  color: #fff;
  border-color: #fff;
}
.garden-deliverable-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}
.garden-deliverable-icon svg {
  width: 100%;
  height: 100%;
}
.garden-deliverable-title {
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.garden-deliverable-desc {
  font-weight: 300;
  font-size: 0.78rem;
  line-height: 1.8;
  opacity: 0.55;
}

/* --- Metrics --- */
.garden-metrics-grid {
  display: flex;
  gap: 48px;
  justify-content: center;
}
.garden-metric-item {
  text-align: center;
  padding: 32px 40px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  background: rgba(248, 249, 250, 0.6);
  min-width: 180px;
}
.garden-metric-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-garden);
  transition: color 400ms var(--ease-enter);
  line-height: 1;
}
.garden-metric-number.active {
  color: var(--color-garden);
}
.garden-metric-suffix {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.5;
  margin-left: 2px;
}
.garden-metric-label {
  display: block;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  opacity: 0.5;
  margin-top: 12px;
}

/* --- Back Section --- */
.garden-reflection-scroll {
  max-height: 480px;
  overflow-y: auto;
  padding: 24px 20px;
  border-top: 0.5px solid var(--foreground);
  border-bottom: 0.5px solid var(--foreground);
  scrollbar-width: thin;
  scrollbar-color: #EF6654 transparent;
  background: rgba(239, 102, 84, 0.02);
}
.garden-reflection-scroll::-webkit-scrollbar {
  width: 3px;
}
.garden-reflection-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.garden-reflection-scroll::-webkit-scrollbar-thumb {
  background: #EF6654;
  opacity: 1;
  border-radius: 2px;
}
.garden-reflection-title {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #EF6654 !important;
  margin-top: 24px;
  margin-bottom: 8px;
}
.garden-reflection-title:first-child {
  margin-top: 0;
}
.garden-reflection-text {
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.8;
  color: #2D2D2D !important;
  opacity: 1 !important;
  margin-bottom: 16px;
  text-align: left;
  padding-left: 0;
  position: static;
}
.garden-reflection-text:last-child {
  margin-bottom: 0;
}
.garden-references { padding: 48px 48px 24px; }
.garden-bib-title {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em;
  color: #2d2d2d; margin-top: 32px; margin-bottom: 12px; text-transform: uppercase;
}
.garden-bib-list { margin-top: 0; }
.garden-bib-item {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 300;
  line-height: 1.7; color: #2d2d2d;
  margin-bottom: 8px; padding-left: 16px;
  border-left: 1px solid rgba(239, 102, 84, 0.2);
}
.garden-bib-item em { font-style: italic; color: #2d2d2d; }
.garden-bib-item a { color: var(--color-garden); text-decoration: none; }
.garden-bib-item a:hover { text-decoration: underline; }

.garden-downloads { margin-top: 32px; width: 100%; }
.garden-downloads-title {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em;
  color: #2d2d2d; margin-bottom: 12px; text-transform: uppercase;
}
.garden-downloads-list { display: flex; flex-direction: column; gap: 8px; }
.garden-download-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; border: 0.5px solid rgba(239, 102, 84, 0.25);
  border-radius: 3px; transition: border-color 0.2s;
  background: rgba(239, 102, 84, 0.03);
}
.garden-download-item:hover { border-color: var(--color-garden); }
.garden-download-info { display: flex; align-items: center; gap: 12px; flex: 1; }
.garden-download-name { font-size: 0.75rem; font-weight: 400; color: #2d2d2d; }
.garden-download-sub {
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.06em;
  color: #888; padding: 1px 6px; border: 0.5px solid rgba(200,200,200,0.2); border-radius: 2px;
}
.garden-download-actions { margin-left: auto; }
.garden-download-btn {
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.06em;
  padding: 4px 12px; border: 0.5px solid rgba(239, 102, 84, 0.4); border-radius: 2px;
  color: var(--color-garden); text-decoration: none; transition: all 0.2s;
}
.garden-download-btn:hover { background: rgba(239, 102, 84, 0.08); border-color: var(--color-garden); }
.garden-download-note { font-size: 0.65rem; font-weight: 300; color: #555; margin-top: 10px; }

.garden-back-section {
  display: flex;
  justify-content: center;
  padding: 64px 48px 96px;
}
.garden-back-btn-large {
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 12px 32px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  opacity: 0.5;
  transition: all 0.3s var(--ease-enter);
}
.garden-back-btn-large:hover {
  opacity: 1;
  border-color: var(--color-garden);
}

/* --- Garden Active State (body) --- */
body.garden-active .nav-line {
  border-color: var(--color-garden);
}

/* --- Download Button --- */
.garden-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 16px;
  border: 0.5px solid var(--foreground);
  border-radius: 2px;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--foreground);
  opacity: 0.5;
  text-decoration: none;
  transition: all 0.3s var(--ease-enter);
}
.garden-download-btn:hover {
  opacity: 1;
  border-color: var(--color-garden);
  color: var(--color-garden);
}
.garden-download-btn svg {
  flex-shrink: 0;
}

/* --- Highlight Tag --- */
.garden-tag--highlight {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border: 0.5px solid var(--color-garden);
  color: var(--color-garden);
  opacity: 0;
  border-radius: 2px;
  font-weight: 400;
  transition: opacity 500ms var(--ease-enter);
}
.garden-tag--highlight.visible {
  opacity: 1;
}

/* --- Blueprint Section --- */
.garden-blueprint-section,
.garden-stakeholder-section {
  margin-top: 64px;
}
.garden-blueprint-subtitle {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--color-garden);
  font-weight: 600;
  margin-bottom: 24px;
}

/* --- Blueprint Container --- */
.garden-blueprint-container {
  position: relative;
  height: 520px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  padding: 4px;
  background: rgba(248, 249, 250, 0.6);
  backdrop-filter: blur(6px);
}
.garden-bp-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}
.garden-bp-nodes {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* --- Blueprint Nodes --- */
.garden-bp-node {
  position: absolute;
  padding: 14px 16px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  background: rgba(248, 249, 250, 0.6);
  backdrop-filter: blur(6px);
}
.garden-bp-node-title {
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
.garden-bp-node-sub {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  opacity: 0.3;
  margin-bottom: 6px;
}
.garden-bp-node-desc {
  font-weight: 300;
  font-size: 0.68rem;
  line-height: 1.5;
  opacity: 0.5;
}

/* --- Blueprint Spine Dots --- */
.garden-bp-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--foreground);
  transform: translate(-50%, -50%);
}
.garden-bp-dot--user {
  border: 1.5px solid var(--color-garden);
  background: transparent;
}

/* --- Blueprint Spine Labels --- */
.garden-bp-spine-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  opacity: 0.3;
  white-space: nowrap;
}
.garden-bp-track-label {
  position: absolute;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-garden);
  border-left: 2px solid var(--color-garden);
  padding-left: 6px;
  opacity: 1;
}

/* --- Blueprint Goals --- */
.garden-bp-goal {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
}
.garden-bp-goal-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  opacity: 0.3;
}
.garden-bp-goal-text {
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--color-garden);
}

/* --- Stakeholder Map (3-column: bubbles + center + tiers) --- */
.garden-sm-map {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  align-items: center;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  padding: 24px;
  background: rgba(248, 249, 250, 0.6);
  backdrop-filter: blur(6px);
}

/* Left: Dama's World bubbles */
.garden-sm-left {
  flex: 1.4;
}
.garden-sm-zone-title {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--color-garden);
  opacity: 0.7;
  margin-bottom: 16px;
  padding-bottom: 6px;
  border-bottom: 0.5px solid var(--color-garden);
}
.garden-sm-bubbles {
  position: relative;
  height: 320px;
  border: 0.5px dashed var(--foreground);
  border-radius: 50%;
  margin: 0 10%;
}
.garden-sm-bubble {
  position: absolute;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 0.5px solid var(--foreground);
  background: rgba(248, 249, 250, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translate(-50%, -50%);
  left: var(--x);
  top: var(--y);
  transition: border-color 0.2s var(--ease-bounce);
  padding: 6px;
}
.garden-sm-bubble--opp {
  border-color: var(--color-garden);
  background: rgba(239, 102, 84, 0.06);
}
.garden-sm-bubble-num {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--color-garden);
  opacity: 0.7;
  margin-bottom: 2px;
}
.garden-sm-bubble-label {
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.garden-sm-bubble-attrs {
  font-weight: 300;
  font-size: 0.55rem;
  opacity: 0.5;
  margin-top: 2px;
  line-height: 1.2;
}

/* Center: Migrant Dama */
.garden-sm-center-col {
  flex: 0 0 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}
.garden-sm-center-node {
  text-align: center;
  padding: 20px 16px;
  border: 1px solid var(--color-garden);
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(239, 102, 84, 0.04);
}
.garden-sm-center-name {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--color-garden);
  margin-bottom: 2px;
}
.garden-sm-center-sub {
  font-weight: 300;
  font-size: 0.72rem;
  opacity: 0.6;
  margin-bottom: 8px;
}
.garden-sm-center-attrs {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.04em;
  opacity: 0.4;
  line-height: 1.5;
}

/* Right: Formal System tiers */
.garden-sm-right {
  flex: 1;
}
.garden-sm-tiers {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.garden-sm-tier-block {
  padding: 14px 16px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  background: rgba(248, 249, 250, 0.6);
  margin-bottom: 8px;
  transition: opacity 0.2s;
}
.garden-sm-tier-block--t1 {
  border-color: var(--color-garden);
  background: rgba(239, 102, 84, 0.04);
}
.garden-sm-tier-block--t2 {
  opacity: 0.75;
}
.garden-sm-tier-block--t3 {
  opacity: 0.45;
  border-style: dashed;
}
.garden-sm-tier-block-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.garden-sm-tier-block-num {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--color-garden);
  font-weight: 500;
}
.garden-sm-tier-block-label {
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  opacity: 0.6;
}
.garden-sm-tier-block-node {
  padding: 8px 0;
}
.garden-sm-tier-block-nodes {
  display: flex;
  gap: 8px;
}
.garden-sm-tier-block-nodes .garden-sm-tier-block-node {
  flex: 1;
  padding: 8px;
  border: 0.5px solid var(--foreground);
  border-radius: 3px;
}
.garden-sm-tier-node-label {
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.garden-sm-tier-node-desc {
  font-weight: 300;
  font-size: 0.62rem;
  line-height: 1.4;
  opacity: 0.5;
}
.garden-sm-tier-block-node .garden-tag--highlight {
  display: inline-block;
  margin-top: 6px;
}

/* Accessibility bar */
.garden-sm-accessibility {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 0.5px solid var(--foreground);
}
.garden-sm-access-label {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  opacity: 0.35;
  margin-bottom: 8px;
}
.garden-sm-access-bar {
  display: flex;
  align-items: center;
  gap: 0;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--color-garden) 0%, var(--foreground) 100%);
  opacity: 0.3;
  position: relative;
}
.garden-sm-access-high {
  position: absolute;
  left: 0;
  top: 6px;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  opacity: 0.5;
}
.garden-sm-access-low {
  position: absolute;
  right: 0;
  top: 6px;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  opacity: 0.5;
}

/* --- Research Gallery --- */
.garden-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.garden-gallery-item {
  position: relative;
  overflow: hidden;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  background: rgba(248, 249, 250, 0.6);
  transition: border-color 0.3s var(--ease-enter);
}
.garden-gallery-item:hover {
  border-color: var(--color-garden);
}
.garden-gallery-wide {
  grid-column: 1 / -1;
}
.garden-gallery-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.garden-gallery-wide .garden-gallery-img {
  aspect-ratio: 21 / 9;
}
.garden-gallery-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 249, 250, 0.4);
}
.garden-gallery-wide .garden-gallery-placeholder {
  aspect-ratio: 21 / 9;
}
.garden-gallery-placeholder svg {
  width: 60%;
  height: 60%;
  opacity: 0.4;
}
.garden-gallery-caption {
  display: block;
  padding: 12px 16px;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  opacity: 0.5;
  border-top: 0.5px solid var(--foreground);
}

/* --- Downloadable Resources --- */
.garden-resources {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 0.5px solid var(--foreground);
}
.garden-resources-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  opacity: 0.5;
  margin-bottom: 20px;
}
.garden-resources-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.garden-resource-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  background: rgba(248, 249, 250, 0.6);
}
.garden-resource-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.garden-resource-name {
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.garden-resource-sub {
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  opacity: 0.4;
}
.garden-resource-actions {
  display: flex;
  gap: 12px;
}
.garden-resource-btn {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border: 0.5px solid var(--foreground);
  border-radius: 2px;
  text-decoration: none;
  color: var(--foreground);
  transition: all 0.2s var(--ease-bounce);
  cursor: pointer;
}
.garden-resource-btn:hover {
  border-color: var(--color-garden);
  color: var(--color-garden);
}
.garden-resource-btn--download {
  border-color: var(--color-garden);
  color: var(--color-garden);
}
.garden-resource-btn--download:hover {
  background: var(--color-garden);
  color: #fff;
}
.garden-resource-note {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  opacity: 0.4;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 0.5px solid var(--foreground);
}

/* --- Garden Responsive --- */
@media (max-width: 1024px) {
  .garden-methods-cards {
    flex-wrap: wrap;
  }
  .garden-method-card {
    flex: 1 1 calc(50% - 6px);
    min-width: 160px;
  }
  .garden-outcomes-cards {
    flex-wrap: wrap;
  }
  .garden-outcome-card {
    flex: 1 1 calc(50% - 6px);
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  .garden-section {
    padding: 40px 24px;
  }
  .garden-meta-bar {
    padding: 0 24px;
  }
  .garden-hero-title {
    font-size: 2.4rem;
  }
  .garden-bg-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .garden-bg-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .garden-methods-cards {
    flex-wrap: wrap;
  }
  .garden-method-card {
    flex: 1 1 calc(50% - 6px);
  }
  .garden-outcomes-cards {
    flex-direction: column;
  }
  .garden-outcome-card {
    width: 100%;
  }
  .garden-outcomes-row {
    flex-wrap: wrap;
  }
  .garden-outcomes-row .garden-outcome-card {
    flex: 1 1 calc(50% - 6px);
  }
  .garden-deliverables-grid {
    flex-direction: column;
  }
  .garden-metrics-grid {
    flex-direction: column;
    align-items: center;
  }
  .garden-gallery-grid {
    grid-template-columns: 1fr;
  }
  .garden-gallery-wide {
    grid-column: 1;
  }
  .garden-blueprint-container {
    height: auto;
  }
  .garden-bp-svg {
    display: none;
  }
  .garden-bp-nodes {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .garden-bp-node {
    position: relative;
    width: 100%;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
  }
  .garden-bp-dot,
  .garden-bp-spine-label,
  .garden-bp-track-label {
    display: none;
  }
  .garden-bp-goal {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none !important;
  }
  .garden-sm-map {
    flex-direction: column;
  }
  .garden-sm-center-col {
    flex: none;
    padding-top: 0;
    order: -1;
  }
  .garden-sm-center-node {
    width: 140px;
    height: 140px;
  }
  .garden-sm-bubbles {
    height: 280px;
  }
  .garden-sm-tier-block-nodes {
    flex-direction: column;
  }
}

/* ============================================================
   PAGE: ONEKILBURN (Project Detail)
   ============================================================ */
#page-ok {
  background-color: var(--background);
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 480 480' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23DFAF22' fill='none' stroke-width='0.3' opacity='1'%3E%3C!-- horizontal connectors --%3E%3Cline x1='0' y1='120' x2='120' y2='120'/%3E%3Cline x1='120' y1='120' x2='240' y2='80'/%3E%3Cline x1='240' y1='80' x2='360' y2='120'/%3E%3Cline x1='360' y1='120' x2='480' y2='100'/%3E%3Cline x1='0' y1='280' x2='100' y2='240'/%3E%3Cline x1='100' y1='240' x2='200' y2='280'/%3E%3Cline x1='200' y1='280' x2='320' y2='260'/%3E%3Cline x1='320' y1='260' x2='480' y2='280'/%3E%3Cline x1='0' y1='400' x2='80' y2='380'/%3E%3Cline x1='80' y1='380' x2='180' y2='420'/%3E%3Cline x1='180' y1='420' x2='300' y2='400'/%3E%3Cline x1='300' y1='400' x2='480' y2='420'/%3E%3C!-- vertical connectors --%3E%3Cline x1='120' y1='0' x2='100' y2='120'/%3E%3Cline x1='100' y1='120' x2='120' y2='240'/%3E%3Cline x1='120' y1='240' x2='100' y2='360'/%3E%3Cline x1='100' y1='360' x2='120' y2='480'/%3E%3Cline x1='280' y1='0' x2='300' y2='120'/%3E%3Cline x1='300' y1='120' x2='280' y2='240'/%3E%3Cline x1='280' y1='240' x2='300' y2='360'/%3E%3Cline x1='300' y1='360' x2='280' y2='480'/%3E%3Cline x1='420' y1='0' x2='400' y2='120'/%3E%3Cline x1='400' y1='120' x2='420' y2='240'/%3E%3Cline x1='420' y1='240' x2='400' y2='360'/%3E%3Cline x1='400' y1='360' x2='420' y2='480'/%3E%3C!-- diagonal cross-links --%3E%3Cline x1='100' y1='120' x2='200' y2='80'/%3E%3Cline x1='300' y1='120' x2='200' y2='80'/%3E%3Cline x1='100' y1='240' x2='200' y2='280'/%3E%3Cline x1='300' y1='240' x2='200' y2='280'/%3E%3Cline x1='100' y1='360' x2='180' y2='420'/%3E%3Cline x1='300' y1='360' x2='180' y2='420'/%3E%3Cline x1='400' y1='120' x2='320' y2='80'/%3E%3Cline x1='400' y1='120' x2='480' y2='100'/%3E%3Cline x1='400' y1='240' x2='320' y2='260'/%3E%3Cline x1='400' y1='360' x2='300' y2='400'/%3E%3C!-- nodes --%3E%3Ccircle cx='120' cy='120' r='2'/%3E%3Ccircle cx='280' cy='120' r='2'/%3E%3Ccircle cx='420' cy='120' r='1.5'/%3E%3Ccircle cx='100' cy='240' r='2'/%3E%3Ccircle cx='300' cy='240' r='2'/%3E%3Ccircle cx='200' cy='80' r='1.5'/%3E%3Ccircle cx='320' cy='260' r='1.5'/%3E%3Ccircle cx='100' cy='360' r='1.5'/%3E%3Ccircle cx='300' cy='360' r='1.5'/%3E%3Ccircle cx='180' cy='420' r='1.5'/%3E%3Ccircle cx='400' cy='120' r='1.5'/%3E%3Ccircle cx='200' cy='280' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 480px 480px;
  animation: ok-bg-drift 30s linear infinite;
}
@keyframes ok-bg-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 480px 480px; }
}

/* --- Sticky Meta Bar --- */
.ok-meta-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(248, 249, 250, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--foreground);
}
.ok-exp-id {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  opacity: 0.4;
}
.ok-exp-title {
  font-weight: 100;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.ok-meta-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ok-lab-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border: none;
  opacity: 0.4;
}
.ok-back-btn {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border: 0.5px solid var(--foreground);
  border-radius: 2px;
  opacity: 0.5;
  transition: all 0.3s var(--ease-enter);
}
.ok-back-btn:hover {
  opacity: 1;
  border-color: var(--color-onekilburn);
}

/* --- OK Divider --- */
.ok-divider {
  border: none;
  border-top: 0.5px solid var(--color-onekilburn);
  margin: 0;
  opacity: 0.4;
  position: relative;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.ok-divider::before, .ok-divider::after {
  content: '+';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8px;
  color: var(--color-onekilburn);
  opacity: 0.5;
}
.ok-divider::before { left: 0; }
.ok-divider::after  { right: 0; }

/* --- OK Section Base --- */
.ok-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 48px;
  position: relative;
}
.ok-section.ok-outcomes {
  max-width: var(--max-width);
  padding: 64px 48px;
}

/* --- Section Header --- */
.ok-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.ok-section-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--color-onekilburn);
  opacity: 0.7;
  text-shadow: 0 0 6px rgba(223, 175, 34, 0.15);
  animation: ok-section-num-glow 4s ease-in-out infinite alternate;
}
@keyframes ok-section-num-glow {
  0% { text-shadow: 0 0 4px rgba(223, 175, 34, 0.08); }
  100% { text-shadow: 0 0 8px rgba(223, 175, 34, 0.2); }
}
.ok-section-label {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--color-onekilburn);
}
.ok-crosshair-end {
  margin-left: auto;
  font-size: 8px;
  opacity: 0.5;
  animation: crosshair-breathe 8s var(--ease-enter) infinite;
}

/* --- Hero --- */
.ok-hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding-bottom: 0;
}
.ok-hero-image-wrap {
  width: 100%;
  margin-bottom: 40px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms var(--ease-enter), transform 600ms var(--ease-enter);
}
.ok-hero-image-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}
.ok-hero-content {
  max-width: 640px;
  position: relative;
  z-index: 2;
}
.ok-hero-title {
  font-weight: 100;
  font-size: 3.5rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms var(--ease-enter), transform 600ms var(--ease-enter);
}
.ok-hero-title.visible {
  opacity: 1;
  transform: translateY(0);
}
.ok-hero-subtitle {
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms var(--ease-enter) 100ms, transform 600ms var(--ease-enter) 100ms;
}
.ok-hero-subtitle.visible {
  opacity: 0.7;
  transform: translateY(0);
}
.ok-hero-desc {
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms var(--ease-enter) 200ms, transform 600ms var(--ease-enter) 200ms;
}
.ok-hero-desc.visible {
  opacity: 0.7;
  transform: translateY(0);
}
.ok-hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms var(--ease-enter) 300ms, transform 600ms var(--ease-enter) 300ms;
}
.ok-hero-tags.visible {
  opacity: 1;
  transform: translateY(0);
}
.ok-tag {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border: 0.5px solid var(--foreground);
  opacity: 0.5;
  border-radius: 2px;
  transition: all 0.2s var(--ease-bounce);
}
.ok-tag:hover {
  opacity: 1;
  border-color: var(--color-onekilburn);
}
.ok-crosshair {
  position: absolute;
  bottom: 32px;
  right: 48px;
  font-size: 8px;
  opacity: 0.5;
  animation: crosshair-breathe 8s var(--ease-enter) infinite;
}

/* --- Background Section --- */
.ok-bg-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
.ok-bg-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ok-bg-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ok-data-card {
  padding: 18px 14px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  background: rgba(248, 249, 250, 0.6);
  backdrop-filter: blur(6px);
}
.ok-data-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-onekilburn);
  margin-bottom: 4px;
}
.ok-data-unit {
  font-weight: 300;
  font-size: 0.65rem;
  opacity: 0.6;
  letter-spacing: 0.04em;
}
.ok-bg-charts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 4px;
}
.ok-chart {
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  padding: 10px 8px 4px;
  background: rgba(248, 249, 250, 0.6);
}
.ok-chart-title {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  opacity: 0.5;
  margin-bottom: 6px;
  text-align: center;
}
.ok-chart-svg {
  width: 100%;
  height: auto;
}
.ok-bg-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ok-bg-text {
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 2;
  opacity: 0.7;
  transform: translateY(0);
  transition: opacity 500ms var(--ease-enter), transform 500ms var(--ease-enter);
}
.ok-bg-text.visible {
  opacity: 0.7;
  transform: translateY(0);
}

/* --- Key Metrics --- */
.ok-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ok-metric-item {
  padding: 28px 20px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  background: rgba(248, 249, 250, 0.6);
  backdrop-filter: blur(6px);
  text-align: center;
}
.ok-metric-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-onekilburn);
  margin-bottom: 4px;
}
.ok-metric-suffix {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  opacity: 0.4;
  margin-bottom: 8px;
}
.ok-metric-label {
  display: block;
  font-weight: 300;
  font-size: 0.7rem;
  opacity: 0.6;
  letter-spacing: 0.02em;
}

/* --- Research Methods --- */
.ok-section-hint { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.04em; color: rgba(45,45,45,0.35); margin-bottom: 12px; }
.ok-methods-cards {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.ok-method-card {
  flex: 1;
  min-width: 0;
  padding: 20px 16px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  background: rgba(248, 249, 250, 0.6);
  backdrop-filter: blur(6px);
}
.ok-method-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  opacity: 0.3;
  margin-bottom: 12px;
}
.ok-method-title {
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ok-method-title::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--foreground);
  opacity: 0.3;
  transition: transform 300ms var(--ease-primary), opacity 300ms var(--ease-enter);
}
.ok-method-card:hover .ok-method-title::after {
  transform: rotate(180deg);
  opacity: 0.6;
  border-top-color: var(--color-onekilburn);
}
.ok-method-desc {
  font-weight: 300;
  font-size: 0.7rem;
  line-height: 1.5;
  opacity: 0.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 400ms var(--ease-primary), opacity 300ms var(--ease-enter), margin-top 300ms var(--ease-enter);
  margin-top: 0;
}
.ok-method-card:hover .ok-method-title {
  color: var(--color-onekilburn);
}
.ok-method-card:hover .ok-method-desc {
  max-height: 200px;
  opacity: 0.6;
  margin-top: 8px;
}

/* --- Research Photo Gallery (3D Depth) --- */
.ok-methods-gallery {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 0;
  padding: 24px 0 32px;
  scrollbar-width: thin;
  scrollbar-color: #DFAF22 transparent;
  scroll-snap-type: x mandatory;
  height: 520px;
  perspective: 1200px;
  align-items: center;
}
.ok-methods-gallery::-webkit-scrollbar {
  height: 3px;
}
.ok-methods-gallery::-webkit-scrollbar-track {
  background: transparent;
}
.ok-methods-gallery::-webkit-scrollbar-thumb {
  background: #DFAF22;
  opacity: 1;
  border-radius: 2px;
}
.ok-gallery-hint { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.04em; color: rgba(45,45,45,0.35); text-align: center; margin-top: 10px; }
.ok-gallery-item {
  position: relative;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  overflow: hidden;
  width: 480px;
  min-width: 480px;
  flex-shrink: 0;
  scroll-snap-align: center;
  height: 320px;
  transition: transform 500ms var(--ease-primary), opacity 400ms var(--ease-enter), z-index 0ms, box-shadow 400ms var(--ease-enter);
  opacity: 0.55;
  z-index: 1;
  transform: translateZ(-60px) rotateY(8deg) scale(0.85);
  margin: 0 -30px;
  box-shadow: 0 4px 20px rgba(45,45,45,0.08);
}
.ok-gallery-item:hover {
  transform: translateZ(0px) rotateY(0deg) scale(1);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 16px 48px rgba(45,45,45,0.18);
  margin: 0 10px;
}
.ok-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ok-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(transparent, rgba(45,45,45,0.7));
  opacity: 0;
  transition: opacity 300ms var(--ease-enter);
}
.ok-gallery-item:hover .ok-gallery-caption {
  opacity: 1;
}

/* --- Core Insights --- */
.ok-insight-keyword {
  color: var(--color-onekilburn);
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.ok-insights-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.ok-insights-hint {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--foreground);
  opacity: 0.4;
  text-align: center;
  margin-top: 16px;
  letter-spacing: 0.05em;
}
.ok-insight-card {
  position: relative;
  padding: 28px 32px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  background: rgba(248, 249, 250, 0.6);
  backdrop-filter: blur(4px);
  margin-bottom: 2px;
  transition: border-color 0.3s var(--ease-enter);
  cursor: pointer;
}
.ok-insight-card:hover {
  border-color: var(--color-onekilburn);
}
.ok-insight-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.ok-insight-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  opacity: 0.3;
  transition: color 300ms var(--ease-enter);
}
.ok-insight-card:hover .ok-insight-num {
  color: var(--color-onekilburn);
}
.ok-insight-connector {
  width: 1px;
  height: 0;
  background: var(--foreground);
  opacity: 0.2;
  transition: height 800ms var(--ease-primary);
}
.ok-insight-connector.animate {
  height: 24px;
}
.ok-insight-title {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.ok-insight-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 500ms var(--ease-primary), opacity 400ms var(--ease-enter);
}
.ok-insight-card:hover .ok-insight-body,
.ok-insight-card.expanded .ok-insight-body {
  max-height: 300px;
  opacity: 1;
}
.ok-insight-principle {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--color-onekilburn);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.ok-insight-principle::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-onekilburn);
  transition: width 200ms var(--ease-bounce);
}
.ok-insight-card:hover .ok-insight-principle::after {
  width: 100%;
}
.ok-insight-text {
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 1.9;
  opacity: 0.55;
}

/* --- System Visualization --- */
.ok-viz-block {
  margin-bottom: 48px;
}
.ok-viz-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  opacity: 0.5;
  margin-bottom: 16px;
}
.ok-viz-svg {
  width: 100%;
  height: auto;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  padding: 16px;
  background: rgba(248, 249, 250, 0.4);
}

/* --- Outcomes --- */
.ok-outcomes-layout {
  margin-top: 32px;
}
.ok-outcome-card--full {
  width: 100%;
  margin-bottom: 12px;
}
.ok-outcomes-row {
  display: flex;
  gap: 12px;
}
.ok-outcomes-row .ok-outcome-card {
  flex: 1;
  min-width: 0;
}
.ok-outcome-card {
  padding: 20px 16px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  background: rgba(248, 249, 250, 0.6);
  backdrop-filter: blur(6px);
}
.ok-outcome-card--root {
  border-color: var(--color-onekilburn);
  background: var(--color-onekilburn);
  color: #fff;
}
.ok-outcome-card--root .ok-outcome-num {
  display: none;
}
.ok-outcome-card--root .ok-outcome-title {
  color: #fff;
}
.ok-outcome-card--root .ok-outcome-sub {
  color: #fff;
}
.ok-outcome-card--root .ok-outcome-desc {
  color: #fff;
}
.ok-outcome-card--root:hover {
  border-color: rgba(255, 255, 255, 0.4);
}
.ok-outcome-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  opacity: 0.3;
  margin-bottom: 12px;
}
.ok-outcome-card--root .ok-outcome-num {
  color: var(--color-onekilburn);
  opacity: 0.7;
}
.ok-outcome-card .ok-outcome-title {
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  line-height: 1.4;
}
.ok-outcome-card .ok-outcome-sub {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  opacity: 0.3;
  margin-bottom: 10px;
}
.ok-outcome-card .ok-outcome-desc {
  font-weight: 300;
  font-size: 0.7rem;
  line-height: 1.5;
  opacity: 0.6;
}

/* --- Outcomes Tree Layout --- */
.ok-outcomes-tree {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.ok-outcomes-branch {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.ok-branch-label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--color-onekilburn);
  font-weight: 600;
  padding-left: 0;
  border-left: none;
  opacity: 1;
  margin-bottom: 0;
}
.ok-branch-desc {
  font-weight: 300;
  font-size: 0.78rem;
  line-height: 1.7;
  opacity: 0.5;
  margin-bottom: 16px;
  max-width: 100%;
}
.ok-branch-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ok-outcomes-sub-branch {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ok-sub-branch-label {
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.ok-resource-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  background: rgba(248, 249, 250, 0.6);
  margin-bottom: 12px;
}
.ok-resource-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ok-resource-name {
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.ok-resource-sub {
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  opacity: 0.4;
}
.ok-resource-actions {
  display: flex;
  gap: 12px;
}
.ok-resource-btn {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border: 0.5px solid var(--foreground);
  border-radius: 2px;
  text-decoration: none;
  color: var(--foreground);
  transition: all 0.2s var(--ease-bounce);
  cursor: pointer;
}
.ok-resource-btn:hover {
  border-color: #DFAF22;
  color: #DFAF22;
}
.ok-resources {
  padding: 32px 48px;
}
.ok-resources-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  opacity: 0.5;
  margin-bottom: 20px;
}
.ok-resources-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ok-resource-note {
  font-weight: 300;
  font-size: 0.68rem;
  opacity: 0.35;
  margin-top: 16px;
}
.ok-core-keywords {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.ok-core-keyword {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border: 0.5px solid #2D2D2D;
  border-radius: 2px;
  background: #F5F5F5;
  color: #2D2D2D;
  opacity: 0.85;
  transition: all 0.2s var(--ease-bounce);
}
.ok-core-keyword:hover {
  opacity: 1;
  background: #F5F5F5;
  color: #2D2D2D;
}
.ok-outcomes-sop-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ok-sop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  background: rgba(248, 249, 250, 0.6);
  backdrop-filter: blur(6px);
}
.ok-sop-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-onekilburn);
  opacity: 0.5;
  flex-shrink: 0;
}
.ok-sop-label {
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.ok-sop-tag {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  background: #DFAF22;
  color: #F5F5F5;
  border-radius: 2px;
  opacity: 0.85;
  margin-left: auto;
  white-space: nowrap;
}
.ok-outcome-card--ual {
  padding: 16px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  background: rgba(248, 249, 250, 0.6);
  backdrop-filter: blur(6px);
}

/* --- Chart Containers --- */
.ok-chart-container {
  margin-top: 20px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  padding: 20px;
  background: rgba(248, 249, 250, 0.4);
}
.ok-chart-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  opacity: 0.4;
  margin-bottom: 4px;
}
.ok-chart-desc {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--foreground);
  opacity: 0.5;
  line-height: 1.6;
  margin-bottom: 12px;
}
.ok-chart-svg {
  width: 100%;
  height: auto;
}
.ok-chart-comparison {
  display: flex;
  gap: 0;
  margin: 1rem 0;
  border-radius: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  border: 0.5px solid rgba(45,45,45,0.15);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #DFAF22 transparent;
  max-height: 50vh;
}
.ok-chart-comparison::-webkit-scrollbar {
  height: 3px;
}
.ok-chart-comparison::-webkit-scrollbar-thumb {
  background: #DFAF22;
  border-radius: 2px;
}
.ok-chart-comparison-side {
  flex: 0 0 100%;
  min-width: 100%;
  transition: none;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.ok-chart-comparison-side img,
.ok-chart-comparison-side svg {
  width: 100%;
  height: auto;
  display: block;
  flex: 1;
  object-fit: contain;
  min-height: 0;
  max-height: 45vh;
}
.ok-chart-comparison-label {
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--foreground);
  opacity: 0.6;
  border-bottom: 0.5px solid rgba(45,45,45,0.1);
}
.ok-chart-comparison-desc {
  padding: 6px 12px 10px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--foreground);
  opacity: 0.45;
  line-height: 1.5;
}
.ok-chart-scroll-hint {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--foreground);
  opacity: 0.35;
  text-align: center;
  margin-top: 6px;
  letter-spacing: 0.03em;
}
.ok-chart-comparison-side .zh-only,
.ok-chart-comparison-side .en-only {
  display: none;
}
:lang(zh) .ok-chart-comparison-side .zh-only,
:lang(en) .ok-chart-comparison-side .en-only {
  display: block;
}

/* === Umbrella Interactive === */
.ok-umbrella-interactive {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  flex: 1;
  min-width: 0;
}
.ok-umbrella-container {
  display: flex;
  gap: 20px;
  align-items: center;
}
.ok-umbrella-labels {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  min-width: 100px;
}
.ok-umbrella-label-item {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--foreground);
  opacity: 0.5;
  padding: 4px 10px;
  border-left: 1.5px solid #DFAF22;
  transition: opacity 0.2s ease;
}
.ok-umbrella-label-item:hover {
  opacity: 0.8;
}
.ok-umbrella-label-note {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 300;
  color: var(--foreground);
  opacity: 0.3;
  margin-top: 4px;
  padding-left: 10px;
}
.ok-umbrella-interactive img {
  width: 100%;
  height: auto;
  display: block;
}
.ok-umbrella-zone {
  position: absolute;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s ease;
  z-index: 1;
}
.ok-umbrella-zone[data-type="governance"],
.ok-umbrella-zone[data-type="place"],
.ok-umbrella-zone[data-type="food"],
.ok-umbrella-zone[data-type="youth"] {
  z-index: 2;
}
.ok-umbrella-zone:hover {
  background: rgba(223,175,34,0.1);
}
.ok-umbrella-tooltip {
  position: absolute;
  background: rgba(223,175,34,0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 0.5px solid rgba(223,175,34,0.35);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--foreground);
  line-height: 1.6;
  max-width: 280px;
  z-index: 10;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.ok-umbrella-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ok-chart-divider-v {
  width: 1px;
  background: var(--foreground);
  opacity: 0.2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ok-chart-divider-v span {
  font-size: 8px;
  opacity: 0.4;
  background: var(--background);
  padding: 0 4px;
}
.ok-chart-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  opacity: 0.3;
  margin-bottom: 12px;
}
.ok-chart-label--new {
  color: var(--color-onekilburn);
  opacity: 0.6;
}

/* --- Reflection (EMOTIONAL) --- */
.ok-reflection {
  background-image: none !important;
  animation: none !important;
  background-color: var(--background);
  padding: 32px 48px 64px;
}
.ok-reflection .ok-section-num {
  color: #DFAF22 !important;
  text-shadow: none;
  animation: none;
  opacity: 1 !important;
}
.ok-reflection .ok-section-label {
  color: #DFAF22 !important;
  opacity: 1 !important;
}
.ok-reflection-scroll {
  max-height: 360px;
  overflow-y: auto;
  padding: 24px 0;
  border-top: 0.5px solid var(--foreground);
  border-bottom: 0.5px solid var(--foreground);
  opacity: 1 !important;
  scrollbar-width: thin;
  scrollbar-color: var(--color-onekilburn) transparent;
}
.ok-reflection-scroll::-webkit-scrollbar {
  width: 3px;
}
.ok-reflection-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.ok-reflection-scroll::-webkit-scrollbar-thumb {
  background: var(--color-onekilburn);
  opacity: 0.4;
  border-radius: 2px;
}
.ok-reflection-text {
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.8;
  color: #2D2D2D !important;
  opacity: 1 !important;
  margin-bottom: 16px;
  text-align: left;
  padding-left: 0;
  position: static;
  transform: none;
  transition: none;
}
.ok-reflection-text:last-child {
  margin-bottom: 0;
}
.ok-reflection-text::before {
  display: none;
}
/* Reflection divider uses dashed line */
.ok-reflection + .ok-divider {
  border-top-style: dashed;
  opacity: 0.25;
}

/* --- Back Section --- */
.ok-back-section {
  display: flex;
  justify-content: center;
  padding: 64px 48px 96px;
}
.ok-back-btn-large {
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 12px 32px;
  border: 0.5px solid var(--foreground);
  border-radius: 4px;
  opacity: 0.5;
  transition: all 0.3s var(--ease-enter);
}
.ok-back-btn-large:hover {
  opacity: 1;
  border-color: var(--color-onekilburn);
}

/* --- OK Active State (body) --- */
body.ok-active .nav-line {
  border-color: var(--color-onekilburn);
}

/* --- SVG Chart Containers --- */
.ok-chart-wrap {
  width: 100%;
  max-width: 100%;
  margin: 2rem 0;
  padding: 1.5rem;
  border: 0.5px solid var(--foreground);
  border-radius: 2px;
  background: var(--background);
}
.ok-chart-wrap svg {
  width: 100%;
  height: auto;
}
.ok-chart-wrap .ok-chart-title {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--foreground);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

/* ============================================================
   PAGE: NERVORA (NEXUS) — Project Detail
   Sensory Lab · Aurora Purple · Neural Grid
   ============================================================ */

/* --- Page Background --- */
#page-nexus {
  background-color: #1a1a1a;
  color: #c8c8c8;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%236F33FF' fill='none' stroke-width='0.3' opacity='0.8'%3E%3Ccircle cx='200' cy='200' r='30'/%3E%3Ccircle cx='200' cy='200' r='60'/%3E%3Ccircle cx='200' cy='200' r='90'/%3E%3Ccircle cx='200' cy='200' r='120'/%3E%3Ccircle cx='200' cy='200' r='150'/%3E%3Ccircle cx='200' cy='200' r='180'/%3E%3Ccircle cx='0' cy='0' r='30'/%3E%3Ccircle cx='0' cy='0' r='60'/%3E%3Ccircle cx='0' cy='0' r='90'/%3E%3Ccircle cx='400' cy='0' r='30'/%3E%3Ccircle cx='400' cy='0' r='60'/%3E%3Ccircle cx='400' cy='0' r='90'/%3E%3Ccircle cx='0' cy='400' r='30'/%3E%3Ccircle cx='0' cy='400' r='60'/%3E%3Ccircle cx='0' cy='400' r='90'/%3E%3Ccircle cx='400' cy='400' r='30'/%3E%3Ccircle cx='400' cy='400' r='60'/%3E%3Ccircle cx='400' cy='400' r='90'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 400px 400px;
  animation: nexus-ripple 10s ease-in-out infinite;
}
@keyframes nexus-ripple {
  0%, 100% { background-position: 0 0; }
  50% { background-position: 100px 100px; }
}
#page-nexus { padding-top: 48px; }


/* --- Sticky Meta Bar --- */
.nexus-meta-bar {
  position: fixed; top: var(--nav-height); left: 0; right: 0; z-index: 100; height: 48px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(200, 200, 200, 0.15);
  display: none;
}
body.nexus-active .nexus-meta-bar { display: flex; }
.nexus-exp-id { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em; opacity: 0.6; color: #c8c8c8; }
.nexus-exp-title { font-weight: 100; font-size: 0.85rem; letter-spacing: 0.06em; color: #e0e0e0; position: absolute; left: 50%; transform: translateX(-50%); white-space: nowrap; }
.nexus-meta-right { display: flex; align-items: center; gap: 16px; }
.nexus-lab-tag { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; padding: 3px 10px; border: none; opacity: 0.6; color: #c8c8c8; }
.nexus-back-btn {
  font-family: var(--font-primary); font-weight: 300; font-size: 0.7rem; letter-spacing: 0.08em;
  padding: 4px 14px; border: 0.5px solid rgba(200, 200, 200, 0.3); border-radius: 2px; opacity: 0.5;
  color: #c8c8c8;
  transition: all 0.3s var(--ease-enter);
}
.nexus-back-btn:hover { opacity: 1; border-color: var(--color-nexus); }

/* --- Divider --- */
.nexus-divider {
  border: none; border-top: 0.5px solid rgba(111, 51, 255, 0.3); margin: 0; opacity: 1;
  position: relative; max-width: var(--max-width); margin-left: auto; margin-right: auto;
}
.nexus-divider::before, .nexus-divider::after {
  content: '+'; position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 8px; color: var(--color-nexus); opacity: 0.5;
}
.nexus-divider::before { left: 0; }
.nexus-divider::after  { right: 0; }

/* --- Section Base --- */
.nexus-section { max-width: var(--max-width); margin: 0 auto; padding: 64px 48px; position: relative; }

/* --- Section Header --- */
.nexus-section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
.nexus-section-num {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em;
  color: var(--color-nexus); opacity: 0.7;
  text-shadow: 0 0 6px rgba(111, 51, 255, 0.15);
  animation: nexus-num-glow 4s ease-in-out infinite alternate;
}
@keyframes nexus-num-glow {
  0%   { text-shadow: 0 0 4px rgba(111, 51, 255, 0.08); }
  100% { text-shadow: 0 0 8px rgba(111, 51, 255, 0.2); }
}
.nexus-section-label { font-weight: 600; font-size: 1.05rem; letter-spacing: 0.04em; color: #e0d4ff; }
.nexus-section-sublabel { font-weight: 300; font-size: 0.7rem; letter-spacing: 0.03em; color: rgba(200, 200, 200, 0.4); margin-left: 12px; }
.nexus-crosshair-end { margin-left: auto; font-size: 8px; opacity: 0.5; }

/* --- Hero --- */
.nexus-hero { min-height: auto; display: flex; flex-direction: column; align-items: flex-start; position: relative; padding-bottom: 0; }
.nexus-hero-video-wrap {
  width: 100%; margin-bottom: 40px; border: 0.5px solid rgba(200, 200, 200, 0.15); border-radius: 4px;
  overflow: hidden; position: relative;
  opacity: 0; transform: translateY(12px);
  transition: opacity 600ms var(--ease-enter), transform 600ms var(--ease-enter);
}
.nexus-hero-video-wrap.visible { opacity: 1; transform: translateY(0); }
.nexus-hero-video { width: 100%; aspect-ratio: 21/9; object-fit: cover; display: block; background: #1a1a2e; }
.nexus-video-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: none; border: none; cursor: pointer; padding: 0;
  transition: all 0.3s var(--ease-bounce);
}
.nexus-video-play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }
.nexus-hero-content { max-width: 860px; position: relative; z-index: 2; }
.nexus-hero-title {
  font-weight: 100; font-size: 3.5rem; letter-spacing: 0.04em; line-height: 1.2; margin-bottom: 8px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 600ms var(--ease-enter), transform 600ms var(--ease-enter);
}
.nexus-hero-title.visible { opacity: 1; transform: translateY(0); }
.nexus-hero-subtitle {
  font-weight: 300; font-size: 1.2rem; letter-spacing: 0.08em; margin-bottom: 32px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 600ms var(--ease-enter) 100ms, transform 600ms var(--ease-enter) 100ms;
}
.nexus-hero-subtitle.visible { opacity: 0.85; transform: translateY(0); }
.nexus-hero-role {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.08em;
  padding: 2px 10px; border: 0.5px solid rgba(111, 51, 255, 0.4); border-radius: 2px;
  color: #e0d4ff; margin-left: 8px; vertical-align: middle;
}
.nexus-sub-sep { opacity: 0.3; margin: 0 4px; }
.nexus-hero-desc {
  font-weight: 300; font-size: 0.82rem; line-height: 1.8; max-width: 560px; margin-bottom: 32px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 600ms var(--ease-enter) 200ms, transform 600ms var(--ease-enter) 200ms;
}
.nexus-hero-desc.visible { opacity: 0.85; transform: translateY(0); }
.nexus-hero-tags {
  display: flex; gap: 10px; flex-wrap: wrap;
  opacity: 0; transform: translateY(8px);
  transition: opacity 600ms var(--ease-enter) 300ms, transform 600ms var(--ease-enter) 300ms;
}
.nexus-hero-tags.visible { opacity: 1; transform: translateY(0); }
.nexus-tag {
  font-size: 0.65rem; letter-spacing: 0.06em; padding: 4px 12px;
  border: 0.5px solid rgba(200, 200, 200, 0.3); opacity: 0.5; border-radius: 2px;
  transition: all 0.2s var(--ease-bounce);
}
.nexus-tag:hover { opacity: 1; border-color: var(--color-nexus); }
.nexus-crosshair { position: absolute; bottom: 32px; right: 48px; font-size: 8px; opacity: 0.5; }

/* --- World Section --- */
.nexus-world-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.nexus-world-text { font-weight: 300; font-size: 0.82rem; line-height: 2; }
.nexus-world-p { margin-bottom: 16px; opacity: 0.85; }
.nexus-trend-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.nexus-trend-card {
  padding: 18px 14px; border: 0.5px solid rgba(200, 200, 200, 0.15); border-radius: 4px;
  background: rgba(40, 40, 40, 0.6); backdrop-filter: blur(6px);
  transition: all 0.3s var(--ease-enter);
}
.nexus-trend-card:hover { border-color: var(--color-nexus); }
.nexus-trend-card--critical {
  border-color: #EF4444; background: rgba(239, 68, 68, 0.08);
  animation: pulse-risk 2.5s ease-in-out infinite;
  position: relative;
}
.nexus-trend-card--critical::before {
  content: ''; position: absolute; inset: -1px; border-radius: 4px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  animation: pulse-risk-border 2.5s ease-in-out infinite;
}
.nexus-trend-card--critical .nexus-trend-num { color: #EF4444; }
@keyframes pulse-risk {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
  50% { box-shadow: 0 0 20px 2px rgba(239, 68, 68, 0.15); }
}
@keyframes pulse-risk-border {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}
.nexus-strategic-note {
  margin-top: 20px; padding: 16px 20px;
  border: 0.5px solid rgba(239, 68, 68, 0.3); border-radius: 4px;
  background: rgba(239, 68, 68, 0.04);
  animation: pulse-risk 3.5s ease-in-out infinite;
}
.nexus-strategic-note-label {
  display: block; font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.12em; color: #EF4444; opacity: 0.8;
  text-transform: uppercase; margin-bottom: 8px;
}
.nexus-strategic-note p { font-weight: 300; font-size: 0.75rem; line-height: 1.8; opacity: 0.7; }
.nexus-strategic-note p.zh-only { margin-bottom: 0; }
.nexus-trend-num { display: block; font-family: var(--font-mono); font-size: 1.6rem; font-weight: 700; color: var(--color-nexus); margin-bottom: 4px; }
.nexus-trend-label { display: block; font-weight: 400; font-size: 0.75rem; letter-spacing: 0.02em; margin-bottom: 2px; }
.nexus-trend-sub { display: block; font-weight: 300; font-size: 0.65rem; opacity: 0.5; }
.nexus-horizon-wrap { margin-top: 16px; }
.nexus-horizon-img { width: 100%; border: 0.5px solid rgba(200, 200, 200, 0.15); border-radius: 4px; }
.nexus-horizon-caption { display: block; font-weight: 300; font-size: 0.65rem; opacity: 0.4; margin-top: 8px; }

/* --- Product Section --- */
.nexus-product-intro { margin-bottom: 32px; }
.nexus-product-desc { font-weight: 300; font-size: 0.82rem; line-height: 1.8; max-width: 640px; opacity: 0.85; }
.nexus-device-3d-wrap { margin-bottom: 32px; max-width: 700px; margin-left: auto; margin-right: auto; }
.nexus-3d-canvas {
  width: 100%; aspect-ratio: 16/9; border: none; border-radius: 4px;
  overflow: hidden; position: relative; background: #0a0014;
}
.nexus-3d-canvas canvas { display: block; width: 100% !important; height: 100% !important; }
.nexus-3d-hint {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em;
  opacity: 0.7; margin-bottom: 12px; text-align: center;
  color: #B49EFF;
}
.nexus-device-gallery { margin-bottom: 24px; }
.nexus-device-gallery--above { margin-bottom: 24px; }
.nexus-device-main { width: 100%; border: 0.5px solid rgba(200, 200, 200, 0.15); border-radius: 4px; margin-bottom: 12px; }
.nexus-device-img { width: 100%; display: block; }
.nexus-device-thumbs { display: flex; gap: 10px; }
.nexus-device-thumb {
  width: 100px; height: auto; border: 0.5px solid rgba(200, 200, 200, 0.15); border-radius: 2px;
  opacity: 0.4; cursor: pointer; transition: all 0.3s var(--ease-bounce);
}
.nexus-device-thumb:hover { opacity: 1; border-color: var(--color-nexus); }
.nexus-app-section { margin-bottom: 48px; }
.nexus-app-title { font-weight: 400; font-size: 0.85rem; letter-spacing: 0.04em; margin-bottom: 16px; opacity: 0.6; }
.nexus-app-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.nexus-app-img { width: 100%; border: 0.5px solid rgba(200, 200, 200, 0.15); border-radius: 4px; display: block; }

/* Subscription Plans */
.nexus-plans-section { margin-bottom: 48px; }
.nexus-plans-title { font-weight: 400; font-size: 0.85rem; letter-spacing: 0.04em; margin-bottom: 16px; opacity: 0.6; }
.nexus-plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.nexus-plan-card {
  padding: 28px 24px; border: 0.5px solid rgba(200, 200, 200, 0.15); border-radius: 4px;
  background: rgba(40, 40, 40, 0.6); backdrop-filter: blur(6px);
  transition: all 0.4s var(--ease-enter); position: relative; cursor: pointer;
}
.nexus-plan-card:hover {
  border-color: var(--color-nexus);
  background: rgba(111, 51, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(111, 51, 255, 0.2);
}
.nexus-plan-featured { border-color: var(--color-nexus); background: rgba(111, 51, 255, 0.25); color: #e0d4ff; }
.nexus-plan-featured .nexus-plan-name { color: #fff; }
.nexus-plan-featured .nexus-plan-price { color: #fff; }
.nexus-plan-featured .nexus-plan-features { color: rgba(224, 212, 255, 0.85); }
.nexus-plan-featured .nexus-plan-disabled { color: rgba(224, 212, 255, 0.35); }
.nexus-plan-featured:hover {
  background: rgba(111, 51, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(111, 51, 255, 0.3);
}
.nexus-plan-badge {
  font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.1em;
  padding: 2px 8px; border: 0.5px solid rgba(111, 51, 255, 0.5); border-radius: 2px;
  color: #e0d4ff; display: inline-block; margin-bottom: 16px;
}
.nexus-plan-name { font-weight: 400; font-size: 0.9rem; letter-spacing: 0.02em; margin-bottom: 8px; }
.nexus-plan-price { font-family: var(--font-mono); font-size: 1.8rem; font-weight: 700; color: #e0d4ff; margin-bottom: 16px; }
.nexus-plan-period { font-size: 0.8rem; font-weight: 300; opacity: 0.6; }
.nexus-plan-features { display: flex; flex-direction: column; gap: 8px; font-weight: 300; font-size: 0.72rem; line-height: 1.5; opacity: 0.8; }
.nexus-plan-features::before { content: '+'; font-size: 8px; opacity: 0.5; margin-right: 6px; }
.nexus-plan-disabled { opacity: 0.25; text-decoration: line-through; }

/* User Reviews */
.nexus-reviews-section { margin-top: 32px; margin-bottom: 0; }
.nexus-reviews-title { font-weight: 400; font-size: 0.85rem; letter-spacing: 0.04em; margin-bottom: 16px; opacity: 0.6; }
.nexus-reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.nexus-review-card {
  padding: 24px 20px; border: 0.5px solid rgba(200, 200, 200, 0.15); border-radius: 4px;
  background: rgba(40, 40, 40, 0.6); backdrop-filter: blur(6px);
  position: relative; transition: border-color 0.3s var(--ease-enter);
}
.nexus-review-card:hover { border-color: var(--color-nexus); }
.nexus-review-quote {
  font-size: 2.4rem; font-weight: 100; line-height: 1; color: var(--color-nexus);
  opacity: 0.3; position: absolute; top: 12px; left: 16px;
}
.nexus-review-text { font-weight: 300; font-size: 0.78rem; line-height: 1.8; opacity: 0.85; margin-bottom: 12px; padding-top: 8px; }
.nexus-review-source { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.06em; opacity: 0.35; }

/* --- Process Section (Timeline) --- */
.nexus-process-intro { margin-bottom: 40px; }
.nexus-process-intro p { font-weight: 300; font-size: 0.82rem; line-height: 1.8; opacity: 0.85; }
.nexus-timeline { position: relative; padding-left: 40px; }
.nexus-timeline::before {
  content: ''; position: absolute; top: 0; left: 11px; width: 0.5px; height: 100%;
  background: rgba(200, 200, 200, 0.2); opacity: 1;
}
.nexus-timeline-item { position: relative; margin-bottom: 48px; }
.nexus-timeline-item:last-child { margin-bottom: 0; }
.nexus-timeline-marker { position: absolute; left: -40px; top: 6px; display: flex; flex-direction: column; align-items: center; }
.nexus-timeline-dot {
  width: 8px; height: 8px; border: 1px solid rgba(200, 200, 200, 0.4); border-radius: 50%;
  background: #1a1a1a; transition: all 0.3s var(--ease-bounce); flex-shrink: 0;
}
.nexus-timeline-item:hover .nexus-timeline-dot { border-color: var(--color-nexus); background: var(--color-nexus); }
.nexus-timeline-line { width: 0.5px; height: 40px; background: rgba(200, 200, 200, 0.2); opacity: 1; margin-top: 4px; }
.nexus-timeline-dot--last + .nexus-timeline-line { display: none; }
.nexus-timeline-content { max-width: 100%; }
.nexus-proto-header { margin-bottom: 16px; }
.nexus-proto-num { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; color: var(--color-nexus); opacity: 0.7; display: block; margin-bottom: 4px; }
.nexus-proto-title { font-weight: 400; font-size: 0.9rem; letter-spacing: 0.02em; }
.nexus-proto-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; margin-bottom: 16px; }
.nexus-proto-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 0.5px solid rgba(200, 200, 200, 0.15); border-radius: 2px; display: block; }
.nexus-proto-video-wrap { margin-bottom: 16px; border: 0.5px solid rgba(200, 200, 200, 0.15); border-radius: 4px; overflow: hidden; max-width: 640px; }
.nexus-proto-video { width: 100%; display: block; background: #1a1a2e; }
.nexus-proto-finding {
  padding: 16px 20px; border: 0.5px solid rgba(200, 200, 200, 0.15); border-radius: 4px;
  background: rgba(40, 40, 40, 0.4);
}
.nexus-proto-finding--critical { border-color: #EF4444; background: rgba(239, 68, 68, 0.06); animation: pulse-risk 3s ease-in-out infinite; }
.nexus-finding-label { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; color: var(--color-nexus); opacity: 0.7; display: block; margin-bottom: 8px; }
.nexus-proto-finding p { font-weight: 300; font-size: 0.78rem; line-height: 1.8; opacity: 0.85; }

/* --- Lift Section --- */
.nexus-lift-intro { max-width: 640px; margin: 0 auto 32px; font-weight: 300; font-size: 0.82rem; line-height: 1.8; opacity: 0.85; }
.nexus-lift-video-wrap {
  max-width: 800px; margin: 0 auto 40px; border: 0.5px solid rgba(200, 200, 200, 0.15); border-radius: 4px; overflow: hidden;
}
.nexus-lift-video { width: 100%; display: block; background: #1a1a2e; }
.nexus-lift-context { max-width: 640px; margin: 0 auto; font-weight: 300; font-size: 0.78rem; line-height: 1.9; opacity: 0.85; }

/* --- Insights Section --- */
.nexus-insights-list { display: flex; flex-direction: column; gap: 2px; }
.nexus-insight-card {
  padding: 28px 32px; border: 0.5px solid rgba(200, 200, 200, 0.15); border-radius: 4px;
  background: rgba(40, 40, 40, 0.6); backdrop-filter: blur(4px);
  transition: all 0.3s var(--ease-enter); cursor: pointer;
}
.nexus-insight-card:hover { border-color: var(--color-nexus); }
.nexus-insight-header { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.nexus-insight-num { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.15em; opacity: 0.3; transition: color 300ms var(--ease-enter); }
.nexus-insight-card:hover .nexus-insight-num { color: var(--color-nexus); }
.nexus-insight-connector { width: 1px; height: 0; background: rgba(200, 200, 200, 0.3); opacity: 1; transition: height 800ms var(--ease-primary); }
.nexus-insight-connector.animate { height: 24px; }
.nexus-insight-title { font-weight: 400; font-size: 1rem; letter-spacing: 0.02em; margin-bottom: 16px; }
.nexus-insight-body { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 500ms var(--ease-primary), opacity 400ms var(--ease-enter); }
.nexus-insight-card:hover .nexus-insight-body, .nexus-insight-card.expanded .nexus-insight-body { max-height: 400px; opacity: 1; }
.nexus-insight-principle { font-weight: 700; font-size: 0.82rem; color: var(--color-nexus); margin-bottom: 12px; display: inline-block; position: relative; }
.nexus-insight-principle::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--color-nexus); transition: width 200ms var(--ease-bounce); }
.nexus-insight-card:hover .nexus-insight-principle::after { width: 100%; }
.nexus-insight-text { font-weight: 300; font-size: 0.8rem; line-height: 1.9; opacity: 0.85; }

/* --- Reflection Section --- */
.nexus-reflection-part { margin-bottom: 48px; }
.nexus-reflection-part:last-child { margin-bottom: 0; }
.nexus-reflection-part-label {
  font-family: var(--font-mono); font-weight: 400; font-size: 0.78rem; letter-spacing: 0.04em;
  color: var(--color-nexus); margin-bottom: 24px; padding-bottom: 8px; border-bottom: 0.5px solid var(--color-nexus); opacity: 1;
}
.nexus-reflection-blocks { display: flex; flex-direction: column; gap: 24px; }
.nexus-reflection-scroll {
  max-height: 480px;
  overflow-y: auto;
  padding: 24px;
  border-top: 0.5px solid rgba(200, 200, 200, 0.3);
  border-bottom: 0.5px solid rgba(200, 200, 200, 0.3);
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 200, 200, 0.5) transparent;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}
.nexus-reflection-scroll::-webkit-scrollbar { width: 3px; }
.nexus-reflection-scroll::-webkit-scrollbar-track { background: transparent; }
.nexus-reflection-scroll::-webkit-scrollbar-thumb { background: rgba(200, 200, 200, 0.5); opacity: 1; border-radius: 2px; }
.nexus-reflection-block { padding-left: 16px; border-left: 0.5px solid rgba(200, 200, 200, 0.3); opacity: 1; }
.nexus-reflection-block-title { font-weight: 400; font-size: 0.82rem; letter-spacing: 0.02em; margin-bottom: 8px; }
.nexus-reflection-text { font-weight: 300; font-size: 0.78rem; line-height: 1.9; opacity: 1; color: #c8c8c8; }

/* --- Resources Section --- */
.nexus-resources-preview { margin-bottom: 48px; }
.nexus-resources-title { font-weight: 400; font-size: 0.85rem; letter-spacing: 0.04em; margin-bottom: 16px; opacity: 0.6; }
.nexus-resources-list { display: flex; flex-direction: column; gap: 2px; }
.nexus-resource-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border: 0.5px solid rgba(200, 200, 200, 0.15); border-radius: 4px;
  transition: border-color 0.3s var(--ease-enter);
}
.nexus-resource-item:hover { border-color: var(--color-nexus); }
.nexus-resource-info { flex: 1; }
.nexus-resource-name { font-weight: 400; font-size: 0.78rem; letter-spacing: 0.02em; display: block; margin-bottom: 2px; }
.nexus-resource-sub { font-weight: 300; font-size: 0.65rem; opacity: 0.4; }
.nexus-resource-actions { flex-shrink: 0; margin-left: 16px; }
.nexus-resource-btn {
  font-family: var(--font-primary); font-weight: 300; font-size: 0.7rem; letter-spacing: 0.06em;
  padding: 4px 14px; border: 0.5px solid rgba(200, 200, 200, 0.3); border-radius: 2px;
  text-decoration: none; color: #c8c8c8; opacity: 0.5;
  transition: all 0.3s var(--ease-enter);
}
.nexus-resource-btn:hover { opacity: 1; border-color: var(--color-nexus); color: var(--color-nexus); }
.nexus-resource-note { font-weight: 300; font-size: 0.7rem; opacity: 0.35; margin-top: 16px; text-align: center; }
.nexus-bibliography { margin-bottom: 48px; }
.nexus-bib-title { font-weight: 400; font-size: 0.85rem; letter-spacing: 0.04em; margin-bottom: 16px; opacity: 0.6; }
.nexus-bib-list { display: flex; flex-direction: column; gap: 8px; }
.nexus-bib-item { font-weight: 300; font-size: 0.72rem; line-height: 1.6; opacity: 0.7; }
.nexus-bib-item em { font-style: italic; }
.nexus-team { margin-bottom: 0; }
.nexus-team-title { font-weight: 400; font-size: 0.85rem; letter-spacing: 0.04em; margin-bottom: 16px; opacity: 0.6; }
.nexus-team-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.nexus-team-member { padding: 14px 18px; border: 0.5px solid rgba(200, 200, 200, 0.15); border-radius: 4px; transition: border-color 0.3s var(--ease-enter); }
.nexus-team-member:hover { border-color: var(--color-nexus); }
.nexus-team-name { font-weight: 400; font-size: 0.78rem; letter-spacing: 0.02em; display: block; margin-bottom: 2px; }
.nexus-team-role { font-weight: 300; font-size: 0.65rem; opacity: 0.45; }

/* --- Back Section --- */
.nexus-back-section { display: flex; justify-content: center; padding: 64px 48px 96px; }
.nexus-back-btn-large {
  font-weight: 300; font-size: 0.8rem; letter-spacing: 0.08em;
  padding: 12px 32px; border: 0.5px solid rgba(200, 200, 200, 0.3); border-radius: 4px; opacity: 0.5;
  color: #c8c8c8; background: none;
  transition: all 0.3s var(--ease-enter);
}
.nexus-back-btn-large:hover { opacity: 1; border-color: var(--color-nexus); }

/* --- Floating Audio Control --- */
#nexus-bg-audio { display: none; }
body.nexus-active #nexus-bg-audio { display: block; }
.nexus-audio-float {
  position: fixed; top: 50%; right: 24px; transform: translateY(-50%); z-index: 200;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 12px 10px; border-radius: 20px;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid rgba(111, 51, 255, 0.3);
  cursor: pointer; transition: all 0.3s var(--ease-enter);
  opacity: 0; transform: translateY(-50%) translateX(20px);
  pointer-events: none;
}
.nexus-audio-float.visible {
  opacity: 1; transform: translateY(-50%) translateX(0); pointer-events: auto;
}
.nexus-audio-float:hover {
  border-color: var(--color-nexus);
  box-shadow: 0 4px 20px rgba(111, 51, 255, 0.2);
}
.nexus-audio-float.muted {
  border-color: rgba(200, 200, 200, 0.2);
}
.nexus-audio-float.muted .nexus-audio-wave { opacity: 0 !important; }
.nexus-audio-float-icon {
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  color: var(--color-nexus); flex-shrink: 0;
}
.nexus-audio-float-label {
  font-weight: 400; font-size: 0.65rem; letter-spacing: 0.04em; color: #e0d4ff;
  white-space: nowrap; writing-mode: vertical-rl;
}
.nexus-audio-float-hint {
  font-weight: 300; font-size: 0.55rem; letter-spacing: 0.02em; color: rgba(200, 200, 200, 0.4);
  white-space: nowrap; writing-mode: vertical-rl;
}
.nexus-audio-wave { transition: opacity 0.3s; }
.nexus-audio-wave-1 { opacity: 0.6; }
.nexus-audio-wave-2 { opacity: 0.4; }
.nexus-audio-float.muted .nexus-audio-float-label { color: rgba(200, 200, 200, 0.4); }

/* --- Active State --- */
body.nexus-active .nav-line { border-color: var(--color-nexus); }

/* ============================================================
   MIRROR MIRROR — Page Styles
   ============================================================ */

#page-mirror {
  background-color: var(--background);
  color: #2d2d2d;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23B6C93E' fill='none' stroke-width='0.8' opacity='0.25'%3E%3Ccircle cx='200' cy='200' r='30'/%3E%3Ccircle cx='200' cy='200' r='60'/%3E%3Ccircle cx='200' cy='200' r='90'/%3E%3Ccircle cx='200' cy='200' r='120'/%3E%3Ccircle cx='200' cy='200' r='150'/%3E%3Ccircle cx='200' cy='200' r='180'/%3E%3Ccircle cx='0' cy='0' r='30'/%3E%3Ccircle cx='0' cy='0' r='60'/%3E%3Ccircle cx='0' cy='0' r='90'/%3E%3Ccircle cx='400' cy='0' r='30'/%3E%3Ccircle cx='400' cy='0' r='60'/%3E%3Ccircle cx='400' cy='0' r='90'/%3E%3Ccircle cx='0' cy='400' r='30'/%3E%3Ccircle cx='0' cy='400' r='60'/%3E%3Ccircle cx='0' cy='400' r='90'/%3E%3Ccircle cx='400' cy='400' r='30'/%3E%3Ccircle cx='400' cy='400' r='60'/%3E%3Ccircle cx='400' cy='400' r='90'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 400px 400px;
  background-repeat: repeat;
  animation: mirror-ripple 10s ease-in-out infinite;
}
@keyframes mirror-ripple {
  0%, 100% { background-position: 0 0; }
  50% { background-position: 100px 100px; }
}

/* --- Game Area --- */
.mirror-game-area {
  position: fixed; inset: 0; z-index: 100;
  display: flex; flex-direction: column;
  background: var(--background);
  transition: opacity 1s ease;
}
.mirror-game-area.hidden { opacity: 0; pointer-events: none; }

/* Top bar */
.mirror-game-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px; border-bottom: 0.5px solid rgba(0,0,0,0.06);
  flex-shrink: 0;
}
.mirror-game-intro { display: flex; align-items: center; gap: 12px; }
.mirror-game-intro-title { font-size: 0.9rem; font-weight: 100; letter-spacing: 0.06em; color: #2d2d2d; }
.mirror-game-intro-desc { font-size: 0.65rem; font-weight: 300; color: #aaa; }
.mirror-game-topbar-right { display: flex; align-items: center; gap: 12px; }
.mirror-game-cam-hint { font-size: 0.6rem; font-weight: 300; color: #bbb; }
.mirror-skip-btn {
  padding: 5px 14px; border: 0.5px solid rgba(0,0,0,0.1); border-radius: 3px;
  background: transparent; color: #aaa; font-size: 0.6rem; cursor: pointer;
  font-family: var(--font-mono); letter-spacing: 0.04em; transition: all 0.2s;
}
.mirror-skip-btn:hover { border-color: #B6C93E; color: #B6C93E; }

/* Main layout: sidebar + sector */
.mirror-game-main {
  display: grid; grid-template-columns: 200px 1fr;
  flex: 1; overflow: hidden;
}
@media (max-width: 768px) { .mirror-game-main { grid-template-columns: 140px 1fr; } }

/* Sidebar */
.mirror-game-sidebar {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 24px 16px; border-right: 0.5px solid rgba(0,0,0,0.04);
}
.mirror-sidebar-logo { font-size: 0.85rem; font-weight: 100; letter-spacing: 0.06em; color: #2d2d2d; }
.mirror-sidebar-desc { font-size: 0.65rem; font-weight: 300; color: #aaa; text-align: center; }
.mirror-play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid rgba(182, 201, 62, 0.5); background: rgba(182, 201, 62, 0.06);
  color: #B6C93E; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; margin: 8px 0;
  position: relative;
}
.mirror-play-btn:hover { background: rgba(182, 201, 62, 0.15); transform: scale(1.05); }
.mirror-play-btn.playing { background: rgba(182, 201, 62, 0.2); border-color: #B6C93E; }
.mirror-play-btn.playing::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(182, 201, 62, 0.3);
  animation: mirror-play-pulse 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes mirror-play-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0; }
}
.mirror-play-label { font-size: 0.6rem; font-weight: 300; color: #999; }
.mirror-audio-name { font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.06em; color: #ccc; }

/* Step ring progress */
.mirror-step-ring-wrap { margin: 16px 0; display: flex; justify-content: center; }
.mirror-step-ring { width: 100px; height: 100px; }
.mirror-ring-seg { transition: stroke 0.5s ease, stroke-width 0.3s ease; }
.mirror-ring-seg.active { stroke: #B6C93E; stroke-width: 4; }
.mirror-ring-dot { transition: fill 0.4s ease, r 0.3s ease; }
.mirror-ring-dot.active { fill: #B6C93E; }
.mirror-ring-label { font-family: var(--font-mono); font-size: 14px; fill: #999; letter-spacing: 0.05em; }

/* Next button */
.mirror-next-btn {
  padding: 8px 18px; border: 0.5px solid rgba(182, 201, 62, 0.4); border-radius: 3px;
  background: rgba(182, 201, 62, 0.06); color: #B6C93E;
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.04em;
  cursor: pointer; transition: all 0.3s ease; margin-top: 8px;
  animation: mirror-pulse-btn 2.5s ease-in-out infinite;
}
.mirror-next-btn:hover { background: rgba(182, 201, 62, 0.15); border-color: #B6C93E; }
@keyframes mirror-pulse-btn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(182, 201, 62, 0); }
  50% { box-shadow: 0 0 10px 2px rgba(182, 201, 62, 0.1); }
}

/* Sector display */
.mirror-sector-display {
  display: flex; align-items: center; justify-content: center;
  padding: 32px; overflow: hidden; position: relative;
}
.mirror-sector-view {
  text-align: center; max-width: 100%; width: 100%;
  animation: mirror-fade-in 0.6s ease;
}
@keyframes mirror-fade-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.mirror-sector-icon { font-size: 2.5rem; color: #B6C93E; margin-bottom: 16px; }
.mirror-sector-title { font-size: 1.2rem; font-weight: 100; letter-spacing: 0.04em; color: #2d2d2d; margin-bottom: 16px; }
.mirror-sector-view p { font-size: 0.8rem; font-weight: 300; line-height: 1.7; color: #666; margin-bottom: 8px; }
.mirror-sector-sub { font-size: 0.65rem; color: #aaa; }
.mirror-sector-hint { margin-top: 20px; padding: 10px 16px; border: 0.5px solid rgba(182, 201, 62, 0.2); border-radius: 4px; background: rgba(182, 201, 62, 0.04); font-size: 0.7rem; font-weight: 300; color: #888; display: inline-block; }

/* Chaos: full-screen flying words */
.mirror-chaos-container { position: relative; width: 100%; height: 100%; min-height: 500px; }
.mirror-chaos-lines {
  position: absolute; inset: 0; width: 100%; height: 100%;
  animation: mirror-chaos-draw 8s ease-in-out infinite alternate;
}
@keyframes mirror-chaos-draw {
  0% { opacity: 0.12; transform: scale(0.97) rotate(0deg); }
  50% { opacity: 0.25; transform: scale(1.02) rotate(1.5deg); }
  100% { opacity: 0.18; transform: scale(0.99) rotate(-1deg); }
}
.mirror-chaos-text {
  position: absolute; inset: 0;
}
.chaos-word {
  font-weight: 300; color: #2d2d2d; display: inline-block;
  padding: 8px 16px; border-radius: 4px; white-space: nowrap;
  position: absolute;
  left: var(--x, 50%); top: var(--y, 50%);
  font-size: calc(1.05rem * var(--s, 1));
  opacity: 0; transform: scale(0.3);
  animation: chaos-fly-in 0.8s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes chaos-fly-in {
  0% { opacity: 0; transform: scale(0.3) translateY(20px); }
  60% { opacity: 1; transform: scale(1.1) translateY(-5px); }
  100% { opacity: 0.9; transform: scale(1) translateY(0); }
}
.mirror-sector-view-2.shaking .chaos-word {
  animation: chaos-fly-in 0.8s cubic-bezier(0.2, 0.8, 0.3, 1) forwards, chaos-shake 0.12s ease-in-out infinite alternate;
  animation-delay: var(--d, 0s), 30s;
}
@keyframes chaos-shake {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-3px, 2px) rotate(1deg); }
  50% { transform: translate(2px, -2px) rotate(-1deg); }
  75% { transform: translate(-2px, 3px) rotate(0.5deg); }
  100% { transform: translate(3px, -3px) rotate(-0.5deg); }
}

/* Breathe */
.mirror-breathe-circle {
  width: 120px; height: 120px; border-radius: 50%;
  border: 4px solid rgba(182, 201, 62, 0.3);
  background: rgba(182, 201, 62, 0.06);
  margin: 0 auto 28px;
  animation: mirror-breathe 4s ease-in-out infinite;
}
@keyframes mirror-breathe {
  0%, 100% { transform: scale(0.7); opacity: 0.4; border-width: 3px; }
  50% { transform: scale(1.3); opacity: 0.9; border-width: 5px; }
}
.mirror-breathe-text { font-size: 1rem; font-weight: 300; color: #555; letter-spacing: 0.08em; }

/* Mirror reflection — ink-splattered organic shape using SVG clip-path */
.mirror-reflection-shape {
  width: 550px; height: 400px; margin: 0 auto 20px;
  overflow: hidden; position: relative;
  border: none; border-radius: 0;
  background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  clip-path: url(#mirror-ink-clip);
  animation: mirror-ink-breathe 8s ease-in-out infinite;
}
@keyframes mirror-ink-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}
@media (max-width: 768px) { .mirror-reflection-shape { width: 320px; height: 240px; } }
.mirror-cam-video { width: 100%; height: 100%; object-fit: cover; transform: scaleX(-1); display: block; }
.mirror-cam-fallback { position: absolute; inset: 0; background: linear-gradient(135deg, #e0e0e0, #c8c8c8); display: none; }
.mirror-reflection-hint { font-size: 0.8rem; font-weight: 300; color: #888; max-width: 320px; margin: 0 auto; }

/* Card area */
.mirror-card-area {
  position: fixed; inset: 0; z-index: 100;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--background); gap: 28px;
}
.mirror-card-prompt { font-size: 0.8rem; font-weight: 300; color: #888; letter-spacing: 0.06em; }
.mirror-card-list { display: flex; gap: 16px; perspective: 800px; }
.mirror-card { width: 180px; height: 240px; cursor: pointer; }
.mirror-card-inner { width: 100%; height: 100%; position: relative; transition: transform 0.6s ease; transform-style: preserve-3d; }
.mirror-card.flipped .mirror-card-inner { transform: rotateY(180deg); }
.mirror-card-front, .mirror-card-back {
  position: absolute; inset: 0; border-radius: 6px; backface-visibility: hidden;
  padding: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.mirror-card-front { background: rgba(182, 201, 62, 0.08); border: 0.5px solid rgba(182, 201, 62, 0.25); }
.mirror-card-back { background: #fff; border: 0.5px solid rgba(182, 201, 62, 0.15); transform: rotateY(180deg); text-align: center; gap: 8px; }
.mirror-card-tag { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.1em; color: #B6C93E; text-transform: uppercase; }
.mirror-card-en { font-size: 0.7rem; font-weight: 300; font-style: italic; color: #555; line-height: 1.5; }
.mirror-card-zh { font-size: 0.72rem; font-weight: 300; color: #2d2d2d; line-height: 1.6; }
.mirror-card-actions { display: flex; gap: 16px; margin-top: 8px; }
.mirror-card-action-btn {
  padding: 10px 24px; border: 0.5px solid rgba(0,0,0,0.1); border-radius: 3px;
  background: transparent; color: #666; font-size: 0.7rem; cursor: pointer;
  font-family: var(--font-mono); letter-spacing: 0.04em; transition: all 0.3s;
}
.mirror-card-action-btn:hover { border-color: #B6C93E; color: #B6C93E; }

/* Narrative area */
.mirror-narrative { min-height: 100vh; padding: 0 48px 96px; }

/* Meta bar */
.mirror-meta-bar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 16px;
  padding: 12px 48px; border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
  background: rgba(248, 249, 250, 0.92); backdrop-filter: blur(12px);
}
.mirror-exp-id { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; opacity: 0.4; }
.mirror-exp-title { font-weight: 100; font-size: 0.85rem; letter-spacing: 0.06em; color: #2d2d2d; position: absolute; left: 50%; transform: translateX(-50%); white-space: nowrap; }
.mirror-meta-right { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.mirror-lab-tag { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; padding: 3px 10px; border: none; opacity: 0.4; }
.mirror-back-btn {
  background: none; border: 0.5px solid var(--foreground); color: var(--foreground);
  font-family: var(--font-primary); font-weight: 300; font-size: 0.7rem;
  letter-spacing: 0.08em; padding: 4px 14px; border-radius: 2px;
  opacity: 0.5; cursor: pointer; transition: all 0.3s var(--ease-enter);
}
.mirror-back-btn:hover { opacity: 1; border-color: var(--color-mirror); }

/* Section header */
.mirror-section { padding: 64px 48px; max-width: var(--max-width); margin: 0 auto; position: relative; }
.mirror-section-header { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.mirror-section-num { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; color: #B6C93E; }
.mirror-section-label { font-weight: 400; font-size: 0.85rem; letter-spacing: 0.06em; color: #2d2d2d; }
.mirror-crosshair-end { margin-left: auto; color: rgba(0, 0, 0, 0.12); font-size: 1.2rem; }
.mirror-divider { border: none; height: 0.5px; background: rgba(0, 0, 0, 0.06); margin: 0 auto; max-width: 960px; }

/* Hero — full-width banner */
.mirror-hero { display: flex; flex-direction: column; gap: 32px; }
.mirror-hero-visual { width: 100%; }
.mirror-hero-visual img { width: 100%; border-radius: 4px; opacity: 0.9; display: block; }
.mirror-hero-title { font-size: 2rem; font-weight: 100; letter-spacing: 0.04em; color: #2d2d2d; margin-bottom: 8px; }
.mirror-hero-subtitle { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; color: #B6C93E; margin-bottom: 16px; }
.mirror-hero-desc { font-size: 0.78rem; font-weight: 300; line-height: 1.8; color: #555; margin-bottom: 20px; }
.mirror-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.mirror-tag { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.06em; padding: 3px 10px; border: 0.5px solid rgba(182, 201, 62, 0.25); color: #B6C93E; border-radius: 2px; }

/* Process */
.mirror-process-block { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 768px) { .mirror-process-block { grid-template-columns: 1fr; } }
.mirror-process-step { padding: 20px; border: 0.5px solid rgba(0, 0, 0, 0.06); border-radius: 4px; background: rgba(248, 249, 250, 0.6); backdrop-filter: blur(4px); }
.mirror-process-num { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; color: #B6C93E; }
.mirror-process-title { font-size: 0.9rem; font-weight: 400; color: #2d2d2d; margin: 4px 0 12px; display: block; }
.mirror-process-step p { font-size: 0.75rem; font-weight: 300; line-height: 1.7; color: #555; margin-bottom: 16px; }

/* Process Photo Gallery (OK-style horizontal scroll) */
.mirror-process-gallery {
  display: flex; overflow-x: auto; overflow-y: hidden; gap: 0;
  padding: 24px 0 32px; margin-top: 32px;
  scrollbar-width: thin; scrollbar-color: #B6C93E transparent;
  scroll-snap-type: x mandatory; height: 520px;
  perspective: 1200px; align-items: center;
}
.mirror-process-gallery::-webkit-scrollbar { height: 3px; }
.mirror-process-gallery::-webkit-scrollbar-track { background: transparent; }
.mirror-process-gallery::-webkit-scrollbar-thumb { background: #B6C93E; opacity: 1; border-radius: 2px; }
.mirror-gallery-item {
  position: relative; border: 0.5px solid rgba(0,0,0,0.06); border-radius: 4px;
  overflow: hidden; width: 480px; min-width: 480px; flex-shrink: 0;
  scroll-snap-align: center; height: 320px;
  transition: transform 500ms ease, opacity 400ms ease, z-index 0ms, box-shadow 400ms ease;
  opacity: 0.55; z-index: 1;
  transform: translateZ(-60px) rotateY(8deg) scale(0.85);
  margin: 0 -30px; box-shadow: 0 4px 20px rgba(45,45,45,0.08);
}
.mirror-gallery-item:hover {
  transform: translateZ(0px) rotateY(0deg) scale(1);
  opacity: 1; z-index: 10;
  box-shadow: 0 16px 48px rgba(45,45,45,0.18); margin: 0 10px;
}
.mirror-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mirror-gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 12px; font-family: var(--font-mono);
  font-size: 0.65rem; letter-spacing: 0.06em; color: #fff;
  background: linear-gradient(transparent, rgba(45,45,45,0.7));
  opacity: 0; transition: opacity 300ms ease;
}
.mirror-gallery-item:hover .mirror-gallery-caption { opacity: 1; }
.mirror-gallery-hint { text-align: center; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em; color: #bbb; margin-top: 12px; }

/* Insights */
.mirror-insights-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 768px) { .mirror-insights-list { grid-template-columns: 1fr; } }
.mirror-insights-hint { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em; color: #aaa; text-align: center; padding-bottom: 4px; margin-bottom: 4px; }
.mirror-insight-card { padding: 20px; border: 0.5px solid rgba(182, 201, 62, 0.3); border-radius: 4px; cursor: pointer; transition: border-color 0.3s; background: rgba(182, 201, 62, 0.2); backdrop-filter: blur(4px); }
.mirror-insight-card:hover { border-color: rgba(182, 201, 62, 0.3); }
.mirror-insight-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.mirror-insight-num { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; color: #B6C93E; }
.mirror-insight-connector { width: 1px; height: 0; background: rgba(182, 201, 62, 0.3); transition: height 600ms ease; }
.mirror-insight-card:hover .mirror-insight-connector { height: 20px; }
.mirror-insight-title { font-size: 0.85rem; font-weight: 400; color: #2d2d2d; margin-bottom: 8px; }
.mirror-insight-body { max-height: 0; overflow: hidden; transition: max-height 600ms ease, opacity 400ms ease; opacity: 0; }
.mirror-insight-card:hover .mirror-insight-body { max-height: 300px; opacity: 1; }
.mirror-insight-principle { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em; color: #B6C93E; margin-bottom: 8px; }
.mirror-insight-text { font-size: 0.75rem; font-weight: 300; line-height: 1.7; color: #555; }

/* Role */
.mirror-role-title { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; color: #B6C93E; margin-bottom: 16px; text-transform: uppercase; }
.mirror-role-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 32px; }
@media (max-width: 768px) { .mirror-role-list { grid-template-columns: 1fr; } }
.mirror-role-card { padding: 16px; border: 0.5px solid rgba(182, 201, 62, 0.3); border-radius: 4px; background: rgba(182, 201, 62, 0.2); backdrop-filter: blur(4px); }
.mirror-role-name { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.06em; color: #B6C93E; display: block; margin-bottom: 8px; }
.mirror-role-card p { font-size: 0.7rem; font-weight: 300; line-height: 1.6; color: #888; }

/* Concept Video */
.mirror-concept-video { margin-top: 32px; }
.mirror-concept-video-label { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; color: #2d2d2d; margin-bottom: 12px; text-transform: uppercase; }
.mirror-concept-video video { width: 100%; max-width: 800px; border-radius: 4px; background: #000; display: block; margin: 0 auto; }

/* Reflection */
.mirror-reflection-scroll {
  max-height: 480px;
  overflow-y: auto;
  padding: 24px;
  border-top: 0.5px solid var(--foreground);
  border-bottom: 0.5px solid var(--foreground);
  scrollbar-width: thin;
  scrollbar-color: #B6C93E transparent;
  background: rgba(248, 249, 250, 0.5);
  border-radius: 4px;
}
.mirror-reflection-scroll::-webkit-scrollbar { width: 3px; }
.mirror-reflection-scroll::-webkit-scrollbar-track { background: transparent; }
.mirror-reflection-scroll::-webkit-scrollbar-thumb { background: #B6C93E; opacity: 1; border-radius: 2px; }
.mirror-reflection-title {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #B6C93E !important;
  margin-top: 24px;
  margin-bottom: 8px;
}
.mirror-reflection-title:first-child { margin-top: 0; }
.mirror-reflection-text {
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.8;
  color: #2D2D2D !important;
  opacity: 1 !important;
  margin-bottom: 16px;
  text-align: left;
  padding-left: 0;
  position: static;
  border-left: none;
}
.mirror-reflection-text:last-of-type { margin-bottom: 0; }

/* Resources */
.mirror-resources { padding: 48px 0 24px; max-width: var(--max-width); margin: 0 auto; }
.mirror-downloads { margin-top: 20px; }
.mirror-downloads-title { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; color: #888; margin-bottom: 12px; text-transform: uppercase; }
.mirror-downloads-list { display: flex; flex-direction: column; gap: 8px; }
.mirror-download-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; border: 0.5px solid rgba(182, 201, 62, 0.2); border-radius: 3px; transition: border-color 0.2s; background: rgba(248, 249, 250, 0.6); }
.mirror-download-item:hover { border-color: #B6C93E; }
.mirror-download-info { display: flex; align-items: center; gap: 12px; flex: 1; }
.mirror-download-name { font-size: 0.75rem; font-weight: 400; color: #2d2d2d; }
.mirror-download-sub { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.06em; color: #999; padding: 1px 6px; border: 0.5px solid rgba(0,0,0,0.08); border-radius: 2px; }
.mirror-download-actions { margin-left: auto; }
.mirror-download-btn { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.06em; padding: 4px 12px; border: 0.5px solid rgba(182, 201, 62, 0.4); border-radius: 2px; color: var(--color-mirror); text-decoration: none; transition: all 0.2s; }
.mirror-download-btn:hover { background: rgba(182, 201, 62, 0.08); border-color: var(--color-mirror); }

/* References */
.mirror-bib-title { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; color: #2d2d2d; margin-top: 32px; margin-bottom: 12px; text-transform: uppercase; }
.mirror-bib-list { margin-top: 0; }
.mirror-bib-item { font-family: var(--font-body); font-size: 0.72rem; font-weight: 300; line-height: 1.7; color: #2d2d2d; margin-bottom: 8px; padding-left: 16px; border-left: 1px solid rgba(182, 201, 62, 0.2); }
.mirror-bib-item em { font-style: italic; color: #2d2d2d; }
.mirror-bib-item a { color: var(--color-mirror); text-decoration: none; }
.mirror-bib-item a:hover { text-decoration: underline; }

/* Back */
.mirror-back-section { display: flex; justify-content: center; gap: 16px; padding: 64px 48px 96px; }
.mirror-back-btn-large { padding: 12px 32px; border: 0.5px solid rgba(0, 0, 0, 0.1); border-radius: 3px; background: transparent; color: #999; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em; cursor: pointer; transition: all 0.3s; }
.mirror-back-btn-large:hover { border-color: #B6C93E; color: #B6C93E; }

/* Floating replay button — left side of narrative page */
.mirror-float-replay {
  position: fixed; left: 24px; top: 50%; transform: translateY(-50%);
  z-index: 60; display: none;
  flex-direction: column; align-items: center; gap: 8px;
  padding: 18px 12px; border: none;
  border-radius: 8px; background: rgba(182, 201, 62, 0.35);
  backdrop-filter: blur(8px); box-shadow: 0 4px 24px rgba(182, 201, 62, 0.15);
  cursor: pointer; transition: all 0.3s;
  writing-mode: vertical-lr; text-orientation: mixed;
}
.mirror-float-replay.visible { display: flex; }
.mirror-float-replay:hover { background: #B6C93E; box-shadow: 0 6px 32px rgba(182, 201, 62, 0.3); }
.mirror-float-replay-icon { font-size: 1.3rem; color: rgba(255,255,255,0.85); writing-mode: horizontal-tb; }
.mirror-float-replay-text { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.8); white-space: nowrap; }
.mirror-float-replay:hover .mirror-float-replay-text { color: #fff; }
.mirror-float-replay:hover .mirror-float-replay-icon { color: #fff; }

body.mirror-active .main-nav { display: none !important; }
body.mirror-active .brain-canvas { display: none !important; }

/* ============================================================
   CREABOX — EXP-005 · Touchpoint Lab
   ============================================================ */

body.creabox-active .main-nav { display: none !important; }
body.creabox-active .brain-canvas { display: none !important; }

/* --- Meta Bar --- */
.creabox-meta-bar {
  position: sticky; top: 0; z-index: 10; height: 48px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(248, 249, 250, 0.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--foreground);
}
.creabox-exp-id { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em; opacity: 0.4; }
.creabox-exp-title { font-weight: 100; font-size: 0.85rem; letter-spacing: 0.06em; }
.creabox-meta-right { display: flex; align-items: center; gap: 16px; }
.creabox-lab-tag { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; padding: 3px 10px; border: none; opacity: 0.4; }
.creabox-back-btn {
  font-family: var(--font-primary); font-weight: 300; font-size: 0.7rem; letter-spacing: 0.08em;
  padding: 4px 14px; border: 0.5px solid var(--foreground); border-radius: 2px; opacity: 0.5;
  transition: all 0.3s var(--ease-enter); background: none; cursor: pointer;
}
.creabox-back-btn:hover { opacity: 1; border-color: var(--color-creabox); }
.creabox-back-section { display: flex; justify-content: center; padding: 64px 48px 96px; }
.creabox-back-btn-large {
  font-weight: 300; font-size: 0.8rem; letter-spacing: 0.08em;
  padding: 12px 32px; border: 0.5px solid var(--foreground); border-radius: 4px;
  opacity: 0.5; transition: all 0.3s var(--ease-enter); background: none; cursor: pointer;
}
.creabox-back-btn-large:hover { opacity: 1; border-color: var(--color-creabox); }

/* --- Divider --- */
.creabox-divider {
  border: none; border-top: 0.5px solid var(--color-creabox); margin: 0; opacity: 0.4;
  position: relative; max-width: var(--max-width); margin-left: auto; margin-right: auto;
}
.creabox-divider::before, .creabox-divider::after {
  content: '+'; position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 8px; color: var(--color-creabox); opacity: 0.5;
}
.creabox-divider::before { left: 0; }
.creabox-divider::after  { right: 0; }

/* --- Section Base --- */
.creabox-section { max-width: var(--max-width); margin: 0 auto; padding: 64px 48px; position: relative; z-index: 1; }

/* --- Shrink all non-hero images --- */
.creabox-section img:not(.creabox-hero-image) { max-height: 360px; object-fit: contain; }

/* --- Section Header --- */
.creabox-section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
.creabox-section-num {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em;
  color: var(--color-creabox); opacity: 0.7;
  text-shadow: 0 0 6px rgba(1, 148, 251, 0.15);
  animation: creabox-num-glow 4s ease-in-out infinite alternate;
}
@keyframes creabox-num-glow {
  0% { text-shadow: 0 0 4px rgba(1, 148, 251, 0.08); }
  100% { text-shadow: 0 0 8px rgba(1, 148, 251, 0.2); }
}
.creabox-section-label { font-weight: 600; font-size: 1.05rem; letter-spacing: 0.04em; color: var(--color-creabox); }
.creabox-crosshair-end { margin-left: auto; font-size: 8px; opacity: 0.5; }

/* --- Hero --- */
.creabox-hero { min-height: auto; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; position: relative; padding-bottom: 0; }
.creabox-hero-image-wrap {
  width: 100%; margin-bottom: 40px; border: 0.5px solid var(--foreground); border-radius: 4px; overflow: hidden;
  opacity: 0; transform: translateY(12px);
  transition: opacity 600ms var(--ease-enter), transform 600ms var(--ease-enter);
}
.creabox-hero-image-wrap.visible { opacity: 1; transform: translateY(0); }
.creabox-hero-image { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; display: block; }
.creabox-hero-content { max-width: 640px; position: relative; z-index: 2; }
.creabox-hero-title {
  font-weight: 100; font-size: 3.5rem; letter-spacing: 0.04em; line-height: 1.2; margin-bottom: 8px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 500ms var(--ease-enter), transform 500ms var(--ease-enter);
}
.creabox-hero-title.visible { opacity: 1; transform: translateY(0); }
.creabox-hero-subtitle { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; opacity: 0.4; margin-bottom: 20px; }
.creabox-hero-partners { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.creabox-hero-logo { height: 24px; width: auto; opacity: 0.5; transition: opacity 0.3s var(--ease-enter); }
.creabox-hero-logo:hover { opacity: 0.8; }
.creabox-hero-team { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.06em; opacity: 0.35; }
.creabox-hero-desc {
  font-weight: 300; font-size: 0.9rem; line-height: 1.7; color: #2D2D2D; margin-bottom: 24px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 500ms var(--ease-enter) 100ms, transform 500ms var(--ease-enter) 100ms;
}
.creabox-hero-desc.visible { opacity: 1; transform: translateY(0); }
.creabox-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 500ms var(--ease-enter) 200ms, transform 500ms var(--ease-enter) 200ms;
}
.creabox-hero-tags.visible { opacity: 1; transform: translateY(0); }
.creabox-tag {
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.06em; padding: 3px 10px;
  border: 0.5px solid rgba(1, 148, 251, 0.25); color: var(--color-creabox); border-radius: 2px;
}
.creabox-crosshair { position: absolute; right: 48px; bottom: 24px; font-size: 10px; opacity: 0.3; }

/* ★ Metrics Badges */
.creabox-metrics-badges {
  display: flex; gap: 24px; margin-top: 16px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 500ms var(--ease-enter) 300ms, transform 500ms var(--ease-enter) 300ms;
}
.creabox-metrics-badges.visible { opacity: 1; transform: translateY(0); }
.creabox-metric-badge {
  display: flex; align-items: baseline; gap: 6px;
  padding: 8px 16px; border: 0.5px solid rgba(1, 148, 251, 0.2); border-radius: 2px;
  background: rgba(1, 148, 251, 0.04);
}
.creabox-metric-value { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: var(--color-creabox); }
.creabox-metric-unit { font-size: 0.65rem; letter-spacing: 0.06em; opacity: 0.5; }

/* --- Background --- */
.creabox-bg-grid { display: grid; grid-template-columns: 280px 1fr; gap: 48px; }
.creabox-bg-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.creabox-data-card {
  padding: 20px; border: 0.5px solid rgba(45, 45, 45, 0.15); border-radius: 2px; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(8px);
  transition: opacity 400ms var(--ease-enter), transform 400ms var(--ease-enter);
}
.creabox-data-card.visible { opacity: 1; transform: translateY(0); }
.creabox-data-number { font-family: var(--font-mono); font-size: 2rem; font-weight: 700; display: block; line-height: 1; }
.creabox-data-unit { font-size: 0.7rem; opacity: 0.5; display: block; margin-top: 6px; }
.creabox-bg-text p { font-weight: 300; font-size: 0.9rem; line-height: 1.7; color: #2D2D2D; margin-bottom: 16px; }
.creabox-bg-text strong { font-weight: 600; color: var(--color-creabox); }
.creabox-bg-partners { display: flex; flex-direction: column; gap: 4px; margin-top: 24px; }
.creabox-partner { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.06em; opacity: 0.4; }

/* --- Process Timeline --- */
.creabox-process-timeline { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.creabox-phase {
  display: flex; gap: 16px; padding: 20px; border: 0.5px solid rgba(45, 45, 45, 0.1); border-radius: 2px; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(8px);
  transition: opacity 400ms var(--ease-enter), transform 400ms var(--ease-enter);
}
.creabox-phase.visible { opacity: 1; transform: translateY(0); }
.creabox-phase-num { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: var(--color-creabox); opacity: 0.3; line-height: 1; }
.creabox-phase-title { font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; }
.creabox-phase-content p { font-size: 0.75rem; color: #2D2D2D; line-height: 1.6; }

/* --- Process Gallery (horizontal scroll) --- */
.creabox-process-gallery {
  display: flex; overflow-x: auto; overflow-y: hidden; gap: 16px;
  padding: 24px 0 16px; margin-top: 32px;
  scrollbar-width: thin; scrollbar-color: var(--color-creabox) transparent;
  scroll-snap-type: x mandatory; align-items: center;
}
.creabox-process-gallery::-webkit-scrollbar { height: 3px; }
.creabox-process-gallery::-webkit-scrollbar-track { background: transparent; }
.creabox-process-gallery::-webkit-scrollbar-thumb { background: var(--color-creabox); opacity: 1; border-radius: 2px; }
.creabox-gallery-item {
  position: relative; border: 0.5px solid rgba(0,0,0,0.06); border-radius: 4px;
  overflow: hidden; flex-shrink: 0;
  scroll-snap-align: start; height: 280px;
  transition: opacity 300ms ease, box-shadow 300ms ease;
  opacity: 0.7;
  box-shadow: 0 2px 12px rgba(45,45,45,0.06);
}
.creabox-gallery-item:hover {
  opacity: 1;
  box-shadow: 0 8px 32px rgba(45,45,45,0.12);
}
.creabox-gallery-item img { width: auto; height: 100%; object-fit: cover; display: block; }
.creabox-gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 12px; font-family: var(--font-mono);
  font-size: 0.65rem; letter-spacing: 0.06em; color: #fff;
  background: linear-gradient(transparent, rgba(45,45,45,0.7));
  opacity: 0; transition: opacity 300ms ease;
}
.creabox-gallery-item:hover .creabox-gallery-caption { opacity: 1; }
.creabox-gallery-hint { text-align: center; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em; color: #bbb; margin-top: 12px; }

/* --- The Box --- */
.creabox-box-showcase { display: flex; flex-direction: column; gap: 24px; }
.creabox-box-row1 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.creabox-box-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.creabox-box-image-wrap { border: 0.5px solid rgba(45,45,45,0.15); border-radius: 4px; overflow: hidden; }
.creabox-box-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.creabox-box-image { width: 100%; display: block; }
.creabox-box-activities { border: 0.5px solid rgba(45,45,45,0.1); border-radius: 2px; overflow: hidden; }
.creabox-box-activities img { width: 100%; height: 100%; object-fit: cover; display: block; }
.creabox-box-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.creabox-spec-label-heading { grid-column: 1 / -1; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em; color: var(--color-creabox); opacity: 0.6; margin-bottom: 4px; }
.creabox-spec-card {
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 20px 24px; border: 1px solid rgba(45,45,45,0.08); border-radius: 6px; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(6px);
  transition: opacity 300ms var(--ease-enter), transform 300ms var(--ease-enter);
}
.creabox-spec-card.visible { opacity: 1; transform: translateY(0); }
.creabox-spec-label { font-size: 0.65rem; opacity: 0.5; letter-spacing: 0.04em; }
.creabox-spec-value { font-size: 0.85rem; font-weight: 500; color: #2D2D2D; }

/* --- Persona --- */
.creabox-persona-layout { display: flex; gap: 32px; align-items: flex-start; }
.creabox-persona-wrap { max-width: 480px; min-width: 360px; border: 0.5px solid rgba(45,45,45,0.1); border-radius: 2px; overflow: hidden; flex-shrink: 0; }
.creabox-persona-img { width: 100%; display: block; }
.creabox-persona-desc { font-weight: 300; font-size: 0.82rem; line-height: 1.7; color: #2D2D2D; flex: 1; }
.creabox-persona-desc p { margin-bottom: 12px; }
.creabox-persona-misconception { margin-top: 12px; padding: 12px 16px; border-left: 2px solid var(--color-creabox); opacity: 1; }
.creabox-persona-misconception strong { color: var(--color-creabox); font-weight: 600; }

/* --- Framework Modules (Horizontal) --- */
.creabox-framework-modules { display: flex; flex-direction: row; align-items: stretch; gap: 0; margin: 32px 0; }
.creabox-fw-module { flex: 1; padding: 24px; border: 0.5px solid rgba(1,148,251,0.15); border-radius: 2px; background: rgba(1,148,251,0.02); }
.creabox-fw-arrow { font-size: 1.2rem; color: var(--color-creabox); opacity: 0.4; display: flex; align-items: center; padding: 0 12px; }

/* --- Framework Images Grid --- */
.creabox-fw-images-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.creabox-fw-images-grid .creabox-framework-image-wrap { margin-bottom: 0; }

.creabox-fw-explain-label { font-family: var(--font-mono); font-size: 0.6rem; color: var(--color-creabox); opacity: 0.6; display: block; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.creabox-fw-explain-title { font-weight: 600; font-size: 0.8rem; margin-bottom: 6px; }
.creabox-fw-explain-desc { font-size: 0.7rem; color: #2D2D2D; line-height: 1.6; }

/* --- Framework Modules --- */
.creabox-framework-intro p { font-weight: 300; font-size: 0.9rem; line-height: 1.7; color: #2D2D2D; margin-bottom: 16px; }
.creabox-framework-intro strong { font-weight: 600; color: var(--color-creabox); }
.creabox-framework-image-wrap { margin-bottom: 24px; border: 0.5px solid rgba(45,45,45,0.1); border-radius: 2px; overflow: hidden; }
.creabox-framework-image { width: 100%; display: block; }
.creabox-framework-modules { display: flex; flex-direction: column; align-items: center; gap: 0; margin: 32px 0; }
.creabox-fw-module {
  width: 100%; padding: 24px; border: 0.5px solid rgba(45,45,45,0.12); border-radius: 2px; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(8px);
  transition: opacity 400ms var(--ease-enter), transform 400ms var(--ease-enter);
}
.creabox-fw-module.visible { opacity: 1; transform: translateY(0); }
.creabox-fw-module-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.creabox-fw-module-icon { font-family: var(--font-mono); font-size: 0.65rem; color: var(--color-creabox); opacity: 0.5; }
.creabox-fw-module-title { font-weight: 600; font-size: 0.85rem; }
.creabox-fw-module-body { display: flex; flex-wrap: wrap; gap: 8px; }
.creabox-fw-chip {
  font-size: 0.7rem; padding: 4px 12px; border: 0.5px solid rgba(1, 148, 251, 0.3); border-radius: 2px; color: var(--color-creabox); background: rgba(1, 148, 251, 0.06);
}
.creabox-fw-chip--active { border-color: rgba(1, 148, 251, 0.3); color: var(--color-creabox); background: rgba(1, 148, 251, 0.06); }
.creabox-fw-arrow { font-size: 1.2rem; color: var(--color-creabox); opacity: 0.3; padding: 8px 0; }
.creabox-fw-tier { display: flex; align-items: center; gap: 12px; width: 100%; padding: 8px 0; border-bottom: 0.5px solid rgba(45,45,45,0.06); }
.creabox-fw-tier:last-child { border-bottom: none; }
.creabox-fw-tier-label { font-family: var(--font-mono); font-size: 0.65rem; color: var(--color-creabox); opacity: 0.7; min-width: 50px; }
.creabox-fw-tier-desc { font-size: 0.75rem; opacity: 0.5; }

/* --- Activities Grid --- */
.creabox-activities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.creabox-activity-card { border: 0.5px solid rgba(45,45,45,0.1); border-radius: 2px; overflow: hidden; }
.creabox-activity-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.creabox-activity-info { padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; }
.creabox-activity-month { font-family: var(--font-mono); font-size: 0.65rem; color: var(--color-creabox); opacity: 0.6; }
.creabox-activity-name { font-size: 0.75rem; opacity: 0.6; }

/* --- Activity Generator Terminal --- */
.creabox-terminal {
  margin-top: 40px;
  border: 0.5px solid rgba(1, 148, 251, 0.2);
  border-radius: 6px;
  overflow: hidden;
  background: #F0F4F8;
  font-family: var(--font-mono);
}

/* Terminal Header Bar */
.creabox-terminal-header {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  background: rgba(1, 148, 251, 0.06);
  border-bottom: 0.5px solid rgba(1, 148, 251, 0.12);
}
.creabox-terminal-dots { display: flex; gap: 6px; }
.creabox-terminal-dot { width: 8px; height: 8px; border-radius: 50%; }
.creabox-terminal-dot--red { background: #FF5F57; }
.creabox-terminal-dot--yellow { background: #FEBC2E; }
.creabox-terminal-dot--green { background: #28C840; }
.creabox-terminal-title {
  font-size: 0.82rem; letter-spacing: 0.04em;
  color: rgba(45, 45, 45, 0.75);
  font-weight: 500;
  flex: 1;
}
.creabox-terminal-version {
  font-size: 0.55rem; letter-spacing: 0.08em;
  color: var(--color-creabox); opacity: 0.4;
}

/* Input Area */
.creabox-terminal-input-area {
  display: flex; align-items: center; gap: 10px;
  padding: 16px;
  border-bottom: 0.5px solid rgba(1, 148, 251, 0.1);
}
.creabox-terminal-prompt {
  font-size: 0.8rem; color: var(--color-creabox); opacity: 0.7;
  user-select: none;
}
.creabox-terminal-input {
  flex: 1;
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 400;
  padding: 8px 12px;
  border: 0.5px solid rgba(1, 148, 251, 0.15); border-radius: 4px;
  background: rgba(255, 255, 255, 0.7);
  color: #2D2D2D; outline: none;
  transition: border-color 0.3s var(--ease-enter);
}
.creabox-terminal-input:focus { border-color: rgba(1, 148, 251, 0.5); }
.creabox-terminal-input::placeholder { color: rgba(45, 45, 45, 0.3); }
.creabox-terminal-btn {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em;
  padding: 8px 20px;
  border: 0.5px solid var(--color-creabox); border-radius: 4px;
  background: rgba(1, 148, 251, 0.08); color: var(--color-creabox); cursor: pointer;
  transition: all 0.3s var(--ease-enter);
  white-space: nowrap;
}
.creabox-terminal-btn:hover { background: rgba(1, 148, 251, 0.18); }
.creabox-terminal-btn:disabled {
  opacity: 0.3; cursor: not-allowed;
  background: rgba(1, 148, 251, 0.04);
}

/* Console Log */
.creabox-terminal-console {
  min-height: 80px; max-height: 220px;
  overflow-y: auto;
  padding: 12px 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(1, 148, 251, 0.3) transparent;
}
.creabox-terminal-console::-webkit-scrollbar { width: 3px; }
.creabox-terminal-console::-webkit-scrollbar-track { background: transparent; }
.creabox-terminal-console::-webkit-scrollbar-thumb { background: rgba(1, 148, 251, 0.3); border-radius: 2px; }

.creabox-terminal-console-line {
  font-size: 0.72rem; line-height: 1.8;
  color: rgba(45, 45, 45, 0.65);
  opacity: 0;
  transform: translateY(4px);
  animation: creabox-console-line-in 400ms var(--ease-enter) forwards;
}
.creabox-terminal-console-line--muted { color: rgba(45, 45, 45, 0.35); }
.creabox-terminal-console-line--accent { color: var(--color-creabox); }
.creabox-terminal-console-line--success { color: #28C840; }
.creabox-terminal-console-line--warning { color: #FEBC2E; }

.creabox-terminal-console-prefix {
  color: var(--color-creabox); opacity: 0.6;
  margin-right: 8px;
}

@keyframes creabox-console-line-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Blinking cursor for typewriter effect */
.creabox-terminal-cursor {
  display: inline-block; width: 7px; height: 14px;
  background: var(--color-creabox); opacity: 0.8;
  margin-left: 2px; vertical-align: text-bottom;
  animation: creabox-cursor-blink 0.8s step-end infinite;
}
@keyframes creabox-cursor-blink {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0; }
}

/* Result Card */
.creabox-terminal-result {
  margin: 0 16px 16px;
  padding: 24px;
  border: 0.5px solid rgba(1, 148, 251, 0.15);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 0; transform: translateY(16px);
  transition: opacity 600ms var(--ease-enter), transform 600ms var(--ease-enter);
}
.creabox-terminal-result.visible { opacity: 1; transform: translateY(0); }

.creabox-terminal-result-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 0.5px solid rgba(1, 148, 251, 0.1);
}
.creabox-terminal-result-theme {
  font-size: 0.65rem; letter-spacing: 0.1em;
  color: var(--color-creabox); opacity: 0.8;
}
.creabox-terminal-result-badge {
  font-size: 0.55rem; letter-spacing: 0.08em;
  padding: 2px 8px;
  border: 0.5px solid rgba(40, 200, 64, 0.4);
  border-radius: 2px;
  color: #28C840; opacity: 0.7;
}

.creabox-terminal-result-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 20px;
}
.creabox-terminal-tier-card {
  padding: 16px;
  border: 0.5px solid rgba(1, 148, 251, 0.1);
  border-radius: 4px;
  background: rgba(1, 148, 251, 0.03);
}
.creabox-terminal-tier-label {
  font-size: 0.55rem; letter-spacing: 0.1em;
  color: var(--color-creabox); opacity: 0.6;
  display: block; margin-bottom: 8px;
  text-transform: uppercase;
}
.creabox-terminal-tier-name {
  font-size: 0.8rem; font-weight: 600;
  color: #2D2D2D; margin-bottom: 8px;
}
.creabox-terminal-tier-barrier {
  font-size: 0.6rem; color: rgba(45, 45, 45, 0.35);
  margin-bottom: 8px; font-style: italic;
}
.creabox-terminal-tier-steps {
  font-size: 0.68rem; color: rgba(45, 45, 45, 0.55);
  line-height: 1.7; padding-left: 14px;
}
.creabox-terminal-tier-steps li { margin-bottom: 2px; }

.creabox-terminal-result-principles {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding-top: 12px;
  border-top: 0.5px solid rgba(1, 148, 251, 0.1);
}
.creabox-terminal-principle {
  font-size: 0.58rem; letter-spacing: 0.06em;
  padding: 3px 10px;
  border: 0.5px solid rgba(1, 148, 251, 0.25);
  border-radius: 1px;
  color: var(--color-creabox); opacity: 0.6;
}

.creabox-terminal-result-download {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.06em;
  padding: 6px 16px;
  border: 0.5px solid rgba(1, 148, 251, 0.35);
  border-radius: 2px;
  color: var(--color-creabox);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-enter);
  background: transparent;
}
.creabox-terminal-result-download:hover {
  background: rgba(1, 148, 251, 0.1);
  border-color: var(--color-creabox);
}

/* Terminal responsive */
@media (max-width: 768px) {
  .creabox-terminal-result-tiers { grid-template-columns: 1fr; }
  .creabox-terminal-input-area { flex-wrap: wrap; }
  .creabox-terminal-btn { width: 100%; text-align: center; }
}

/* --- Service Journey --- */
.creabox-journey-map-wrap { margin-bottom: 32px; border: 0.5px solid rgba(45,45,45,0.1); border-radius: 2px; overflow: hidden; max-width: 100%; }
.creabox-journey-map { width: 100%; height: auto; display: block; }
.creabox-actors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.creabox-actor-card {
  padding: 16px; border: 0.5px solid rgba(45,45,45,0.1); border-radius: 2px; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(6px);
  transition: opacity 300ms var(--ease-enter), transform 300ms var(--ease-enter);
}
.creabox-actor-card.visible { opacity: 1; transform: translateY(0); }
.creabox-actor-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 8px; vertical-align: middle; }
.creabox-actor-name { font-size: 0.7rem; font-weight: 500; display: block; margin-bottom: 6px; }
.creabox-actor-flow { font-size: 0.6rem; opacity: 0.4; line-height: 1.5; }

/* --- Video --- */
.creabox-journey-video-header { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; color: var(--color-creabox); opacity: 0.6; margin: 32px 0 16px; }
.creabox-video-wrap { max-width: 600px; margin: 0 auto; border: 0.5px solid rgba(45,45,45,0.1); border-radius: 2px; overflow: hidden; }
.creabox-video-player { width: 100%; display: block; background: #000; }

/* --- Sticker Collection --- */
.creabox-sticker-section { height: 100%; display: flex; flex-direction: column; }
.creabox-sticker-label { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em; color: var(--color-creabox); opacity: 0.6; margin-bottom: 8px; }
.creabox-sticker-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; flex: 1; }
.creabox-sticker-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- Showcase Exhibition --- */
.creabox-showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 24px; }
.creabox-showcase-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 0.5px solid rgba(45,45,45,0.08); border-radius: 2px; }
.creabox-showcase-poster-wrap { max-width: 600px; margin: 0 auto; border: 0.5px solid rgba(45,45,45,0.1); border-radius: 2px; overflow: hidden; }
.creabox-showcase-poster { width: 100%; display: block; }

/* --- Insights --- */
.creabox-insights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.creabox-insight-card {
  padding: 24px; border: 0.5px solid rgba(45,45,45,0.1); border-radius: 2px; cursor: pointer; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(8px);
  transition: opacity 400ms var(--ease-enter), transform 400ms var(--ease-enter), border-color 0.3s var(--ease-enter);
}
.creabox-insight-card.visible { opacity: 1; transform: translateY(0); }
.creabox-insight-card:hover { border-color: rgba(1, 148, 251, 0.3); }
.creabox-insight-header { display: flex; align-items: center; gap: 12px; margin-bottom: 0; }
.creabox-insight-num { font-family: var(--font-mono); font-size: 0.65rem; color: var(--color-creabox); opacity: 0.5; }
.creabox-insight-title { font-weight: 600; font-size: 0.85rem; }
.creabox-insight-body {
  max-height: 500px; overflow: hidden;
  transition: max-height 0.5s var(--ease-primary), margin-top 0.3s var(--ease-primary);
  margin-top: 12px; opacity: 1;
}
.creabox-insight-body p { font-size: 0.78rem; color: #2D2D2D; line-height: 1.7; }

/* --- Client Feedback --- */
.creabox-feedback-content { max-width: 640px; }
.creabox-feedback-quote { margin-bottom: 24px; }
.creabox-quote-mark { font-size: 3rem; font-weight: 100; color: var(--color-creabox); opacity: 0.4; line-height: 1; display: block; margin-bottom: 8px; }
.creabox-feedback-quote p { font-weight: 300; font-size: 1.1rem; line-height: 1.6; opacity: 0.7; font-style: italic; }
.creabox-feedback-meta { display: flex; flex-direction: column; gap: 2px; margin-bottom: 24px; }
.creabox-feedback-author { font-weight: 500; font-size: 0.85rem; }
.creabox-feedback-role { font-size: 0.7rem; opacity: 0.4; }
.creabox-feedback-note { font-family: var(--font-mono); font-size: 0.65rem; color: var(--color-creabox); opacity: 0.6; margin-top: 4px; }
.creabox-feedback-image { width: 100%; border: 0.5px solid rgba(45,45,45,0.1); border-radius: 2px; margin-top: 16px; }
.creabox-feedback-toggle {
  font-family: var(--font-primary); font-weight: 300; font-size: 0.75rem; letter-spacing: 0.04em;
  padding: 8px 20px; border: 0.5px solid rgba(1,148,251,0.3); border-radius: 2px;
  background: transparent; color: var(--color-creabox); cursor: pointer;
  transition: all 0.3s var(--ease-enter); margin-top: 16px;
}
.creabox-feedback-toggle:hover { background: rgba(1,148,251,0.06); border-color: rgba(1,148,251,0.5); }

/* --- Reflection Scroll Canvas (Mirror-style) --- */
.creabox-reflection-scroll {
  max-height: 480px;
  overflow-y: auto;
  padding: 24px;
  border-top: 0.5px solid var(--foreground);
  border-bottom: 0.5px solid var(--foreground);
  scrollbar-width: thin;
  scrollbar-color: var(--color-creabox) transparent;
  background: rgba(248, 249, 250, 0.5);
  border-radius: 4px;
}
.creabox-reflection-scroll::-webkit-scrollbar { width: 3px; }
.creabox-reflection-scroll::-webkit-scrollbar-track { background: transparent; }
.creabox-reflection-scroll::-webkit-scrollbar-thumb { background: var(--color-creabox); opacity: 1; border-radius: 2px; }
.creabox-reflection-title {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--color-creabox) !important;
  margin-top: 24px;
  margin-bottom: 8px;
}
.creabox-reflection-title:first-child { margin-top: 0; }
.creabox-reflection-text {
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.8;
  color: #2D2D2D !important;
  opacity: 1 !important;
  margin-bottom: 16px;
  text-align: left;
  padding-left: 0;
  position: static;
  border-left: none;
}
.creabox-reflection-text:last-of-type { margin-bottom: 0; }

/* --- Downloads (Mirror-style vertical list) --- */
.creabox-downloads { margin-top: 20px; }
.creabox-downloads-title { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; color: #888; margin-bottom: 12px; text-transform: uppercase; }
.creabox-downloads-list { display: flex; flex-direction: column; gap: 8px; }
.creabox-download-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; border: 0.5px solid rgba(1, 148, 251, 0.2); border-radius: 3px; transition: border-color 0.2s; background: rgba(248, 249, 250, 0.6); text-decoration: none; color: var(--foreground); }
.creabox-download-item:hover { border-color: var(--color-creabox); }
.creabox-download-info { display: flex; align-items: center; gap: 12px; flex: 1; }
.creabox-download-name { font-size: 0.75rem; font-weight: 400; color: #2d2d2d; }
.creabox-download-sub { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.06em; color: #999; padding: 1px 6px; border: 0.5px solid rgba(0,0,0,0.08); border-radius: 2px; }
.creabox-download-actions { margin-left: auto; }
.creabox-download-btn { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.06em; padding: 4px 12px; border: 0.5px solid rgba(1, 148, 251, 0.4); border-radius: 2px; color: var(--color-creabox); text-decoration: none; transition: all 0.2s; }
.creabox-download-btn:hover { background: rgba(1, 148, 251, 0.08); border-color: var(--color-creabox); }

/* ================================================================
   LOCKSMART — Project Detail Page
   Theme: #00CE93 (safety green)
   ================================================================ */

/* --- Meta Bar (inherits creabox-meta-bar pattern) --- */
.locksmart-meta-bar {
  position: sticky; top: 0; z-index: 100; height: 48px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--foreground);
}
.locksmart-exp-id { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em; opacity: 0.4; }
.locksmart-exp-title { font-weight: 100; font-size: 0.85rem; letter-spacing: 0.06em; color: var(--foreground); }
.locksmart-meta-right { display: flex; align-items: center; gap: 16px; }
.locksmart-lab-tag { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; padding: 3px 10px; border: none; opacity: 0.4; }
.locksmart-back-btn {
  font-family: var(--font-primary); font-weight: 300; font-size: 0.7rem; letter-spacing: 0.08em;
  padding: 4px 14px; border: 0.5px solid var(--foreground); border-radius: 2px; opacity: 0.5;
  transition: all 0.3s var(--ease-enter); background: none; cursor: pointer; color: var(--foreground);
}
.locksmart-back-btn:hover { opacity: 1; border-color: var(--color-locksmart); color: var(--color-locksmart); }
.locksmart-back-section { display: flex; justify-content: center; padding: 64px 48px 96px; }
.locksmart-back-btn-large {
  font-weight: 300; font-size: 0.8rem; letter-spacing: 0.08em;
  padding: 12px 32px; border: 0.5px solid var(--foreground); border-radius: 4px;
  opacity: 0.5; transition: all 0.3s var(--ease-enter); background: none; cursor: pointer; color: var(--foreground);
}
.locksmart-back-btn-large:hover { opacity: 1; border-color: var(--color-locksmart); color: var(--color-locksmart); }

/* --- Section Base --- */
.locksmart-section { max-width: var(--max-width); margin: 0 auto; padding: 64px 48px; position: relative; z-index: 1; }
.locksmart-section-header { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.locksmart-section-num { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; color: var(--color-locksmart); animation: section-glow 3s ease-in-out infinite; }
.locksmart-section-label { font-size: 0.85rem; font-weight: 600; color: var(--color-locksmart); }
.locksmart-crosshair-end { font-family: var(--font-mono); font-size: 0.7rem; opacity: 0.2; margin-left: auto; }

/* --- Divider --- */
.locksmart-divider { border: none; border-top: 0.5px solid var(--color-locksmart); margin: 0; opacity: 0.4; position: relative; max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.locksmart-divider::before, .locksmart-divider::after { content: '+'; position: absolute; top: 50%; transform: translateY(-50%); font-size: 8px; color: var(--color-locksmart); opacity: 0.5; }
.locksmart-divider::before { left: 0; }
.locksmart-divider::after { right: 0; }

/* --- Hero --- */
.locksmart-hero { min-height: auto; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; position: relative; padding-bottom: 0; }
.locksmart-hero-image-wrap { overflow: hidden; border-radius: 4px; opacity: 0; transform: translateY(12px); transition: opacity 600ms var(--ease-enter), transform 600ms var(--ease-enter); }
.locksmart-hero-image-wrap.visible { opacity: 1; transform: translateY(0); }
.locksmart-hero-image { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; display: block; }
.locksmart-hero-content { max-width: 640px; position: relative; z-index: 2; padding-top: 8px; }
.locksmart-hero-title { font-size: 3rem; font-weight: 100; color: #2D2D2D; letter-spacing: -0.02em; margin-bottom: 4px; opacity: 0; transform: translateY(10px); transition: opacity 500ms var(--ease-enter) 100ms, transform 500ms var(--ease-enter) 100ms; }
.locksmart-hero-subtitle { font-size: 0.85rem; font-weight: 300; color: var(--color-locksmart); letter-spacing: 0.06em; margin-bottom: 16px; opacity: 0; transform: translateY(8px); transition: opacity 500ms var(--ease-enter) 200ms, transform 500ms var(--ease-enter) 200ms; }
.locksmart-hero-subtitle.visible { opacity: 1; transform: translateY(0); }
.locksmart-hero-title.visible { opacity: 1; transform: translateY(0); }
.locksmart-hero-team { font-size: 0.7rem; opacity: 0.4; margin-bottom: 20px; }
.locksmart-hero-desc { font-weight: 300; font-size: 0.9rem; line-height: 1.7; color: #2D2D2D; margin-bottom: 24px; opacity: 0; transform: translateY(10px); transition: opacity 500ms var(--ease-enter) 300ms, transform 500ms var(--ease-enter) 300ms; }
.locksmart-hero-desc.visible { opacity: 1; transform: translateY(0); }
.locksmart-hero-tags { display: flex; gap: 8px; flex-wrap: wrap; opacity: 0; transform: translateY(10px); transition: opacity 500ms var(--ease-enter) 400ms, transform 500ms var(--ease-enter) 400ms; }
.locksmart-hero-tags.visible { opacity: 1; transform: translateY(0); }
.locksmart-tag { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.06em; padding: 4px 12px; border: 0.5px solid rgba(0,206,147,0.3); border-radius: 2px; color: var(--color-locksmart); }
.locksmart-crosshair { position: absolute; top: 48px; right: 48px; font-family: var(--font-mono); font-size: 1.2rem; opacity: 0.08; color: var(--color-locksmart); }

/* --- Background --- */
.locksmart-bg-grid { display: grid; grid-template-columns: 35% 65%; gap: 48px; align-items: start; }
.locksmart-bg-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.locksmart-data-card { padding: 24px; border: 0.5px solid rgba(45,45,45,0.1); border-radius: 4px; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity: 0; transform: translateY(6px); transition: opacity 300ms var(--ease-enter), transform 300ms var(--ease-enter); }
.locksmart-data-card.visible { opacity: 1; transform: translateY(0); }
.locksmart-data-number { font-family: var(--font-mono); font-size: 2.2rem; font-weight: 700; letter-spacing: -0.02em; display: block; }
.locksmart-data-unit-inline { font-size: 0.9rem; font-weight: 400; opacity: 0.6; }
.locksmart-data-unit { font-size: 0.72rem; color: #2D2D2D; display: block; margin-top: 8px; }
.locksmart-bg-text p { font-weight: 300; font-size: 0.9rem; line-height: 1.7; color: #2D2D2D; margin-bottom: 16px; }

/* --- User Research --- */
.locksmart-research-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.locksmart-research-card { padding: 24px; border: 0.5px solid rgba(45,45,45,0.1); border-radius: 4px; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity: 0; transform: translateY(6px); transition: opacity 300ms var(--ease-enter), transform 300ms var(--ease-enter); }
.locksmart-research-card.visible { opacity: 1; transform: translateY(0); }
.locksmart-research-num { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; color: var(--color-locksmart); opacity: 0.6; }
.locksmart-research-title { font-size: 0.85rem; font-weight: 600; color: #2D2D2D; margin: 8px 0 12px; }
.locksmart-research-body p { font-size: 0.82rem; color: #2D2D2D; line-height: 1.7; }

/* --- Design Process: Proto Scroll (KEY) --- */
.locksmart-scroll-indicator {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 20px; margin-bottom: 12px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em;
  color: var(--color-locksmart);
  animation: locksmart-scroll-breathe 2.4s ease-in-out infinite;
}
.locksmart-scroll-indicator span { opacity: 0.5; }
@keyframes locksmart-scroll-breathe {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.locksmart-proto-scroll {
  display: flex; overflow-x: auto; overflow-y: hidden; gap: 20px;
  padding: 24px 0 16px; margin-top: 32px;
  scroll-snap-type: x mandatory; align-items: stretch;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.locksmart-proto-scroll::-webkit-scrollbar { display: none; } /* Chrome/Safari */
.locksmart-proto-card {
  flex-shrink: 0; width: 540px;
  border: 1px solid rgba(45,45,45,0.08); border-radius: 6px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  overflow: hidden; scroll-snap-align: start;
  opacity: 0; transform: translateY(8px);
  transition: opacity 400ms var(--ease-enter), transform 400ms var(--ease-enter), box-shadow 300ms ease;
}
.locksmart-proto-card.visible { opacity: 1; transform: translateY(0); }
.locksmart-proto-card:hover { box-shadow: 0 8px 32px rgba(0,206,147,0.08); }
.locksmart-proto-images {
  display: flex; overflow-x: auto; gap: 4px; padding: 12px 12px 8px;
  scrollbar-width: none;
}
.locksmart-proto-images::-webkit-scrollbar { display: none; }
.locksmart-proto-images img { height: 240px; width: auto; flex-shrink: 0; border-radius: 3px; object-fit: cover; }
.locksmart-proto-info { padding: 16px 20px 20px; }
.locksmart-proto-num { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.1em; color: var(--color-locksmart); opacity: 0.6; }
.locksmart-proto-title { font-size: 0.9rem; font-weight: 600; color: #2D2D2D; margin: 6px 0 8px; }
.locksmart-proto-desc { font-size: 0.75rem; color: #2D2D2D; line-height: 1.6; opacity: 0.7; margin-bottom: 12px; }
.locksmart-proto-learning {
  padding: 12px 14px; border-left: 2px solid var(--color-locksmart);
  background: rgba(0,206,147,0.04); border-radius: 0 3px 3px 0;
}
.locksmart-proto-learning--fail {
  border-left-color: #E74C3C;
  background: rgba(231,76,60,0.04);
}
.locksmart-proto-learning-label { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.08em; color: var(--color-locksmart); display: block; margin-bottom: 6px; }
.locksmart-proto-learning--fail .locksmart-proto-learning-label { color: #E74C3C; }
.locksmart-proto-learning p { font-size: 0.72rem; color: #2D2D2D; line-height: 1.6; }

/* --- Final Deliverable --- */
.locksmart-deliverable-intro { margin-bottom: 32px; }
.locksmart-deliverable-intro p { font-weight: 300; font-size: 0.9rem; line-height: 1.7; color: #2D2D2D; margin-bottom: 12px; }
.locksmart-deliverable-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 48px; }
.locksmart-step-card { padding: 20px 16px; border: 0.5px solid rgba(45,45,45,0.1); border-radius: 4px; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); text-align: center; opacity: 0; transform: translateY(6px); transition: opacity 300ms var(--ease-enter), transform 300ms var(--ease-enter); }
.locksmart-step-card.visible { opacity: 1; transform: translateY(0); }
.locksmart-step-num { font-family: var(--font-mono); font-size: 1.4rem; font-weight: 700; color: var(--color-locksmart); opacity: 0.3; display: block; margin-bottom: 8px; }
.locksmart-step-title { font-size: 0.78rem; font-weight: 600; color: #2D2D2D; margin-bottom: 6px; }
.locksmart-step-desc { font-size: 0.68rem; color: #2D2D2D; line-height: 1.5; opacity: 0.6; }

/* --- Game Container (Light Theme + SVG — 3-step flow) --- */
.locksmart-game-label { font-family: var(--font-primary); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; color: var(--color-locksmart); margin-bottom: 12px; }
.locksmart-game-board {
  border: 1px solid rgba(0,206,147,0.3); border-radius: 8px;
  background: #F8F9FA; position: relative; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.locksmart-game-board::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-locksmart), transparent);
  opacity: 0.5;
}
/* Step Progress */
.game-step-progress {
  display: flex; align-items: center; justify-content: center; gap: 0;
  padding: 14px 24px 0;
}
.game-step-dot {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.06em;
  color: rgba(45,45,45,0.25); padding: 4px 12px; border-radius: 12px;
  border: 1px solid rgba(45,45,45,0.1); transition: all 0.3s ease;
}
.game-step-dot.active { color: var(--color-locksmart); border-color: var(--color-locksmart); background: rgba(0,206,147,0.06); }
.game-step-dot.done { color: rgba(45,45,45,0.4); border-color: rgba(45,45,45,0.15); }
.game-step-line { width: 32px; height: 1px; background: rgba(45,45,45,0.1); margin: 0 4px; }
.game-step-line.done { background: var(--color-locksmart); opacity: 0.4; }
.locksmart-game-header {
  padding: 14px 24px; border-bottom: 1px solid rgba(45,45,45,0.08);
  background: rgba(255,255,255,0.7);
}
.locksmart-game-header .game-instruction {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.04em;
  color: rgba(45,45,45,0.55); text-align: left;
  border: none; padding: 0; margin: 0;
}
.locksmart-game-ui { display: grid; grid-template-columns: 180px 1fr; gap: 0; min-height: 320px; }
.locksmart-toolbox {
  padding: 16px; border-right: 1px solid rgba(45,45,45,0.08);
  display: flex; flex-direction: column; gap: 8px;
  background: rgba(255,255,255,0.5);
}
.lock-tool {
  padding: 12px; border: 1px solid rgba(45,45,45,0.1); border-radius: 6px;
  background: rgba(255,255,255,0.8); cursor: pointer;
  transition: all 0.2s; display: flex; align-items: center; gap: 10px;
}
.lock-tool:hover { border-color: var(--color-locksmart); background: rgba(0,206,147,0.06); }
.lock-tool.selected { border-color: var(--color-locksmart); background: rgba(0,206,147,0.1); box-shadow: 0 0 12px rgba(0,206,147,0.12); }
.tool-icon {
  width: 48px; height: 48px; border-radius: 4px; flex-shrink: 0;
  border: 1px solid rgba(45,45,45,0.08); background: rgba(45,45,45,0.03);
  display: flex; align-items: center; justify-content: center;
  color: rgba(45,45,45,0.5); overflow: hidden;
}
.tool-icon svg { width: 36px; height: 36px; transition: transform 0.3s ease; }
.tool-icon img { width: 100%; height: 100%; object-fit: contain; }
@keyframes lock-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.tool-icon.lock-animate { animation: lock-pulse 0.35s ease; }
.tool-info { display: flex; flex-direction: column; gap: 3px; }
.tool-name { font-size: 0.72rem; font-weight: 500; color: #2D2D2D; }
.tool-tag { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.04em; }
.tool-tag.high { color: var(--color-locksmart); }
.tool-tag.med { color: #E67E22; }
.tool-tag.low { color: #E74C3C; }
.tool-tag.skip { color: rgba(45,45,45,0.3); }
.lock-tool--skip { border-style: dashed; }
.lock-tool--skip:hover { border-color: rgba(45,45,45,0.3); background: rgba(45,45,45,0.04); }
.lock-tool--skip.selected { border-color: rgba(45,45,45,0.3); background: rgba(45,45,45,0.06); box-shadow: none; }
.bike-highlight-zone { transition: opacity 0.4s ease; }
@keyframes zone-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}
.bike-highlight-zone.active { animation: zone-pulse 2s ease-in-out infinite; }
.game-summary { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 4px 0; }
.game-meters { display: flex; gap: 32px; width: 100%; max-width: 400px; }
.meter-group { flex: 1; }
.meter-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.meter-label { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.06em; color: rgba(45,45,45,0.5); }
.meter-value { font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600; color: #2D2D2D; }
.meter-track { height: 6px; background: rgba(45,45,45,0.06); border-radius: 3px; overflow: hidden; }
.meter-fill { height: 100%; width: 0; border-radius: 3px; transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.security-fill { background: linear-gradient(90deg, rgba(0,206,147,0.4), #00CE93); }
.weight-fill { background: linear-gradient(90deg, rgba(231,76,60,0.3), #E74C3C); }
.game-result-row { display: flex; align-items: center; gap: 20px; }
.game-step-feedback { text-align: center; }
.game-restart-btn {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.06em;
  padding: 6px 16px; border: 1px solid var(--color-locksmart); border-radius: 3px;
  background: transparent; color: var(--color-locksmart); cursor: pointer;
  transition: all 0.2s;
}
.game-restart-btn:hover { background: rgba(0,206,147,0.08); }
.game-manual-hint { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.04em; color: rgba(45,45,45,0.35); margin-top: 4px; }
.locksmart-bike-canvas {
  display: flex; align-items: center; justify-content: center;
  padding: 24px; position: relative;
  background: rgba(255,255,255,0.5);
}
.bike-svg { width: 100%; max-width: 360px; height: auto; }
.locksmart-game-feedback {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  padding: 14px 24px; border-top: 1px solid rgba(45,45,45,0.08);
  background: rgba(255,255,255,0.7);
  flex-wrap: wrap;
}
.score-display, .rank-display {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em;
  color: rgba(45,45,45,0.4);
  transition: color 0.3s ease;
}
.score-display span, .rank-display span { color: var(--color-locksmart); font-weight: 600; }
.nudge-text {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.04em;
  color: rgba(45,45,45,0.35); max-width: 260px; text-align: center;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.nudge-text.highlight { color: var(--color-locksmart); opacity: 0.8; }
.badge-display {
  display: flex; align-items: center; justify-content: center;
  width: 96px; height: 96px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: 2px solid rgba(0,206,147,0.2);
  overflow: hidden; flex-shrink: 0; opacity: 0; transform: scale(0.5);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.badge-display.visible { opacity: 1; transform: scale(1); }
.badge-display img { width: 100%; height: 100%; object-fit: contain; }

/* --- Game Mechanics --- */
.locksmart-mechanics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.locksmart-mechanic-card { padding: 24px; border: 0.5px solid rgba(45,45,45,0.1); border-radius: 4px; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity: 0; transform: translateY(6px); transition: opacity 300ms var(--ease-enter), transform 300ms var(--ease-enter); }
.locksmart-mechanic-card.visible { opacity: 1; transform: translateY(0); }
.locksmart-mechanic-num { font-size: 1.4rem; display: block; margin-bottom: 8px; }
.locksmart-mechanic-title { font-size: 0.82rem; font-weight: 600; color: #2D2D2D; margin-bottom: 8px; }
.locksmart-mechanic-desc { font-size: 0.72rem; color: #2D2D2D; line-height: 1.6; }

/* --- Reflection --- */
.locksmart-reflection-scroll {
  max-height: 480px; overflow-y: auto; padding: 24px 0;
  border-top: 0.5px solid var(--foreground); border-bottom: 0.5px solid var(--foreground);
  scrollbar-width: thin; scrollbar-color: var(--color-locksmart) transparent;
}
.locksmart-reflection-scroll::-webkit-scrollbar { width: 3px; }
.locksmart-reflection-scroll::-webkit-scrollbar-track { background: transparent; }
.locksmart-reflection-scroll::-webkit-scrollbar-thumb { background: var(--color-locksmart); opacity: 1; border-radius: 2px; }
.locksmart-reflection-title { font-size: 0.85rem; font-weight: 600; color: var(--color-locksmart); margin: 24px 0 10px; }
.locksmart-reflection-title:first-child { margin-top: 0; }
.locksmart-reflection-text { font-size: 0.82rem; color: #2D2D2D; line-height: 1.8; margin-bottom: 16px; }

/* --- Key Insights --- */
.locksmart-insights-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.locksmart-insight-card { padding: 24px; border: 0.5px solid rgba(45,45,45,0.1); border-radius: 4px; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); cursor: pointer; opacity: 0; transform: translateY(6px); transition: opacity 300ms var(--ease-enter), transform 300ms var(--ease-enter); }
.locksmart-insight-card.visible { opacity: 1; transform: translateY(0); }
.locksmart-insight-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.locksmart-insight-num { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; color: var(--color-locksmart); opacity: 0.6; }
.locksmart-insight-title { font-size: 0.85rem; font-weight: 600; color: #2D2D2D; }
.locksmart-insight-body p { font-size: 0.78rem; color: #2D2D2D; line-height: 1.7; }

/* --- Showcase & Feedback --- */
.locksmart-showcase-hero {
  margin-bottom: 24px; text-align: center;
}
.locksmart-showcase-hero img {
  max-width: 100%; max-height: 400px; width: auto; height: auto;
  border-radius: 6px;
  box-shadow: 0 12px 48px rgba(0,206,147,0.06);
}
.locksmart-showcase-gallery {
  display: flex; overflow-x: auto; gap: 12px; padding: 16px 0; margin-bottom: 32px;
  scrollbar-width: none; align-items: center;
}
.locksmart-showcase-gallery::-webkit-scrollbar { display: none; }
.locksmart-showcase-gallery img { height: 240px; width: auto; flex-shrink: 0; border-radius: 4px; object-fit: cover; border: 0.5px solid rgba(45,45,45,0.06); }
.locksmart-feedback { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.locksmart-feedback-content { padding: 24px; border: 0.5px solid rgba(45,45,45,0.1); border-radius: 4px; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity: 0; transform: translateY(6px); transition: opacity 300ms var(--ease-enter), transform 300ms var(--ease-enter); }
.locksmart-feedback-content.visible { opacity: 1; transform: translateY(0); }
.locksmart-feedback-quote { position: relative; padding-left: 16px; margin-bottom: 12px; }
.locksmart-quote-mark { position: absolute; left: 0; top: -4px; font-size: 1.4rem; color: var(--color-locksmart); opacity: 0.4; font-style: italic; }
.locksmart-feedback-quote p { font-size: 0.82rem; color: #2D2D2D; line-height: 1.7; font-style: italic; }
.locksmart-feedback-meta { display: flex; flex-direction: column; gap: 2px; }
.locksmart-feedback-author { font-size: 0.72rem; font-weight: 600; color: #2D2D2D; }
.locksmart-feedback-role { font-size: 0.6rem; opacity: 0.4; font-family: var(--font-mono); }

/* --- Resources --- */
.locksmart-downloads-title { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.08em; color: var(--color-locksmart); opacity: 0.6; margin-bottom: 12px; }
.locksmart-downloads-list { display: flex; flex-direction: column; gap: 8px; }
.locksmart-download-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; border: 0.5px solid rgba(0,206,147,0.2); border-radius: 3px; transition: border-color 0.2s; background: rgba(248,249,250,0.6); text-decoration: none; color: var(--foreground); }
.locksmart-download-item:hover { border-color: var(--color-locksmart); }
.locksmart-download-info { display: flex; flex-direction: column; gap: 2px; }
.locksmart-download-name { font-size: 0.78rem; font-weight: 500; color: #2D2D2D; }
.locksmart-download-sub { font-size: 0.6rem; opacity: 0.4; font-family: var(--font-mono); }
.locksmart-download-actions { display: flex; gap: 8px; }
.locksmart-download-btn { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.06em; padding: 4px 12px; border: 0.5px solid rgba(0,206,147,0.4); border-radius: 2px; color: var(--color-locksmart); text-decoration: none; transition: all 0.2s; }
.locksmart-download-btn:hover { background: rgba(0,206,147,0.08); border-color: var(--color-locksmart); }
.locksmart-contact-hint { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.04em; color: rgba(45,45,45,0.3); text-align: center; margin-top: 12px; }
.creabox-contact-hint { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.04em; color: rgba(45,45,45,0.3); text-align: center; margin-top: 12px; }

/* --- Custom PDF Viewer Modal --- */
.pdf-modal { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 10000; }
.pdf-modal-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.pdf-modal-container { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 90vw; max-width: 800px; height: 85vh; background: #fff; border-radius: 8px; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.3); }
.pdf-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; border-bottom: 1px solid rgba(0,0,0,0.08); flex-shrink: 0; }
.pdf-modal-title { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; color: #2D2D2D; }
.pdf-modal-controls { display: flex; align-items: center; gap: 12px; }
.pdf-nav-btn { width: 32px; height: 32px; border: 1px solid rgba(0,0,0,0.1); border-radius: 4px; background: transparent; font-size: 1.1rem; cursor: pointer; color: #2D2D2D; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.pdf-nav-btn:hover:not(:disabled) { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.2); }
.pdf-nav-btn:disabled { opacity: 0.3; cursor: default; }
.pdf-page-info { font-family: var(--font-mono); font-size: 0.65rem; color: rgba(45,45,45,0.5); min-width: 60px; text-align: center; }
.pdf-close-btn { width: 32px; height: 32px; border: none; border-radius: 4px; background: transparent; font-size: 0.9rem; cursor: pointer; color: rgba(45,45,45,0.5); transition: all 0.2s; }
.pdf-close-btn:hover { background: rgba(0,0,0,0.06); color: #2D2D2D; }
.pdf-modal-body { flex: 1; overflow: auto; display: flex; justify-content: center; align-items: flex-start; padding: 16px; background: #f5f5f5; }
.pdf-modal-body canvas { max-width: 100%; height: auto; box-shadow: 0 2px 16px rgba(0,0,0,0.1); }

/* --- Anti-download: disable print --- */
@media print { body * { display: none !important; } body::after { content: 'Printing is not allowed.'; display: block !important; font-size: 24px; text-align: center; padding: 100px; } }

/* --- Responsive --- */
@media (max-width: 768px) {
  .creabox-meta-bar { padding: 0 20px; }
  .creabox-section { padding: 40px 20px; }
  .creabox-hero-title { font-size: 2.2rem; }
  .creabox-bg-grid { grid-template-columns: 1fr; gap: 24px; }
  .creabox-bg-cards { grid-template-columns: 1fr 1fr; }
  .creabox-compare-grid { grid-template-columns: 1fr; gap: 12px; }
  .creabox-compare-arrow { transform: rotate(90deg); padding: 8px 0; }
  .creabox-process-timeline { grid-template-columns: 1fr; }
  .creabox-box-showcase { grid-template-columns: 1fr; }
  .creabox-persona-layout { flex-direction: column; }
  .creabox-persona-wrap { max-width: 100%; min-width: auto; }
  .creabox-box-row1, .creabox-box-row2 { grid-template-columns: 1fr; }
  .creabox-framework-modules { gap: 0; }
  .creabox-activities-grid { grid-template-columns: 1fr; }
  .creabox-actors-grid { grid-template-columns: 1fr 1fr; }
  .creabox-insights-grid { grid-template-columns: 1fr; }
  .creabox-metrics-badges { flex-wrap: wrap; gap: 12px; }
  .creabox-gallery-item { height: 200px; }
  .creabox-sticker-grid { grid-template-columns: repeat(2, 1fr); }
  .creabox-showcase-grid { grid-template-columns: 1fr; }
  .creabox-showcase-poster-wrap { max-width: 100%; }
  .creabox-framework-modules { flex-direction: column; }
  .creabox-fw-arrow { transform: rotate(90deg); padding: 8px 0; }
  .creabox-fw-images-grid { grid-template-columns: 1fr; }
  .creabox-hero-partners { gap: 10px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .nav-link { font-size: 0.7rem; }

  .brain-overlay { padding: 0; }
  .brain-entries { flex-direction: column; gap: 16px; }

  .labs-header { padding: 20px 24px 16px; }
  .lab-projects { padding: 40px 24px; gap: 24px; }
  .project-card { min-width: 100%; padding: 28px; }

  .engram-header { padding: 28px 24px 0; }
  .engram-tags { padding: 16px 24px; }

  .author-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 24px;
  }
  .author-photo-frame { width: 160px; height: 192px; }

  #custom-cursor { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
}
