/* ==========================================================================
   Studio-Grade Editorial & Architectural Stylesheet
   High-End Bespoke Aesthetic: Film Grain, Fine Borders, Syne Display Font
   ========================================================================== */

:root {
  /* Color Architecture */
  --void-bg: #070709;
  --void-surface: #0E0E12;
  --void-surface-hover: #15151B;
  --void-border: rgba(255, 255, 255, 0.08);
  --void-border-bright: rgba(255, 255, 255, 0.18);

  --text-pure: #F4F4F6;
  --text-dim: #8E8E98;
  --text-muted: #565660;

  --accent-lime: #D4FF00;
  --accent-cyan: #56CCF2;
  --accent-purple: #9D4EDD;

  /* Typography Stacks */
  --font-hero: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --max-width: 1200px;
  --header-height: 56px;
}

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

html {
  background-color: var(--void-bg);
  color: var(--text-pure);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--void-bg);
  color: var(--text-pure);
  overflow-x: hidden;
  position: relative;
  cursor: default;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   Filmic Grain Overlay & 3D Spatial Canvas
   ========================================================================== */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

#stage3d {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

#content {
  position: relative;
  z-index: 5;
}

/* ==========================================================================
   Custom Magnetic Cursor
   ========================================================================== */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--accent-lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor-ring.active-hover {
  width: 68px;
  height: 68px;
  background: rgba(212, 255, 0, 0.1);
  border-color: var(--accent-lime);
}

.cursor-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--accent-lime);
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cursor-ring.active-hover .cursor-label {
  opacity: 1;
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.studio-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 100;
  background: rgba(7, 7, 9, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--void-border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

.brand-mark {
  color: var(--accent-lime);
  font-size: 10px;
}

.sys-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  border-left: 1px solid var(--void-border);
  padding-left: 12px;
}

.header-center {
  display: flex;
  align-items: center;
}

.telemetry-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--void-border);
  padding: 4px 12px;
  border-radius: 980px;
  font-family: var(--font-mono);
  font-size: 10px;
}

.pulse-beacon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-lime);
  box-shadow: 0 0 8px var(--accent-lime);
  animation: beaconGlow 2s infinite;
}

@keyframes beaconGlow {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.pill-text {
  font-weight: 600;
  color: #FFFFFF;
}

.pill-loc {
  color: var(--text-muted);
}

.pill-clock {
  color: var(--accent-cyan);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-item {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-num {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
}

.nav-item:hover {
  color: #FFFFFF;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  background: var(--text-pure);
  color: #000000;
  padding: 4px 12px;
  border-radius: 980px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-action:hover {
  background: var(--accent-lime);
  transform: translateY(-1px);
}

.btn-action svg {
  width: 12px;
  height: 12px;
}

/* ==========================================================================
   HERO SECTION: Monumental Typography
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 28px;
}

.hero-meta-top {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.meta-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.hero-title-group {
  margin-bottom: 48px;
}

.hero-huge-title {
  font-family: var(--font-hero);
  font-size: clamp(48px, 9vw, 114px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.title-row {
  display: block;
}

.title-accent {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.7);
  transition: -webkit-text-stroke-color 0.3s ease;
}

.title-accent:hover {
  -webkit-text-stroke-color: var(--accent-lime);
}

.hero-bottom-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: flex-end;
}

.hero-bio {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 620px;
  margin-bottom: 32px;
}

.hero-bio strong {
  color: #FFFFFF;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
}

.studio-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 980px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}

.studio-btn svg {
  width: 15px;
  height: 15px;
}

.primary-btn {
  background: var(--text-pure);
  color: #000000;
}

.primary-btn:hover {
  background: var(--accent-lime);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 255, 0, 0.25);
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--void-border);
  color: #FFFFFF;
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--void-border-bright);
  transform: translateY(-2px);
}

/* Telemetry Card */
.telemetry-card {
  background: rgba(14, 14, 18, 0.7);
  border: 1px solid var(--void-border);
  border-radius: 14px;
  padding: 20px 24px;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.t-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.t-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.t-key {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
}

.t-val {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: #FFFFFF;
}

.highlight-val {
  color: var(--accent-cyan);
  font-weight: 700;
}

.highlight-green {
  color: var(--accent-lime);
  font-weight: 700;
}

/* Marquee Ticker */
.kinetic-ticker {
  margin-top: 60px;
  border-top: 1px solid var(--void-border);
  border-bottom: 1px solid var(--void-border);
  background: rgba(255, 255, 255, 0.015);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.ticker-track {
  display: inline-block;
  animation: marqueeRoll 28s linear infinite;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.ticker-track span {
  margin-right: 36px;
}

@keyframes marqueeRoll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Editorial Common Section
   ========================================================================== */
.editorial-section {
  padding-top: 120px;
  padding-bottom: 120px;
  border-bottom: 1px solid var(--void-border);
  position: relative;
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.section-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.sec-index {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-lime);
}

.sec-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ==========================================================================
   SECTION 1: PHILOSOPHY GRID
   ========================================================================== */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.editorial-headline {
  font-family: var(--font-hero);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.editorial-para {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dim);
  margin-bottom: 40px;
}

.editorial-para strong {
  color: #FFFFFF;
}

.key-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--void-border);
  padding-top: 32px;
}

.k-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.k-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-lime);
}

.k-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}

.k-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   SECTION 2: WORKS STACK (Bespoke Work Blocks)
   ========================================================================== */
.works-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.work-block {
  background: var(--void-surface);
  border: 1px solid var(--void-border);
  border-radius: 18px;
  padding: 36px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.25s ease;
}

.work-block:hover {
  border-color: var(--void-border-bright);
  background: var(--void-surface-hover);
}

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--void-border);
}

.work-idx {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-lime);
  display: block;
  margin-bottom: 4px;
}

.work-name {
  font-family: var(--font-hero);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

.work-period {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.w-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--void-border);
  color: var(--text-dim);
}

.work-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
}

.work-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 24px;
}

.work-metrics-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  border-radius: 10px;
  border: 1px solid var(--void-border);
}

.wm-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
}

.wm-label {
  color: var(--text-muted);
}

.wm-value {
  color: #FFFFFF;
  font-weight: 500;
}

.text-accent {
  color: var(--accent-lime);
  font-weight: 700;
}

/* Interactive Canvas Panel for Vector Field */
.canvas-panel {
  background: #000000;
  border: 1px solid var(--void-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.panel-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--void-border);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.05em;
}

.panel-title { color: var(--text-dim); }
.panel-hint { color: var(--accent-cyan); }

#vector-canvas {
  width: 100%;
  height: auto;
  display: block;
}

/* Interactive Steganography Decoder */
.decoder-box {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.decoder-visual {
  height: 110px;
  background: #000000;
  border: 1px solid var(--void-border);
  border-radius: 8px;
  padding: 14px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.decoder-layer {
  font-family: var(--font-mono);
  font-size: 11px;
}

.layer-tag {
  font-size: 9px;
  display: block;
  margin-bottom: 3px;
}

.layer-public .layer-tag { color: var(--text-muted); }
.layer-public .layer-code { color: var(--accent-cyan); }

.layer-covert {
  transition: opacity 0.2s ease, filter 0.2s ease;
  opacity: 0.1;
  filter: blur(4px);
}

.layer-covert .layer-tag { color: var(--accent-lime); }
.layer-covert .layer-code { color: #FFFFFF; font-weight: 600; }

.decoder-controls {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.decoder-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
}

.studio-range {
  width: 100%;
  accent-color: var(--accent-lime);
  cursor: pointer;
}

.range-marks {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
}

/* Metric Visual Card */
.metric-visual-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--void-border);
  border-radius: 12px;
  padding: 20px;
}

.metric-graph-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.bench-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bench-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.b-lbl {
  font-size: 11px;
  color: var(--text-dim);
}

.active-bench .b-lbl {
  color: #FFFFFF;
  font-weight: 600;
}

.bar-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.b-fill {
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  transition: width 0.6s ease;
}

.fill-accent {
  background: var(--accent-lime);
}

.b-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
}

.mini-spec-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
}

.mini-spec-list span { color: var(--text-muted); }
.mini-spec-list strong { color: #FFFFFF; }

/* ==========================================================================
   SECTION 3: CHRONOLOGICAL LEDGER (Interactive Table)
   ========================================================================== */
.ledger-table {
  display: flex;
  flex-direction: column;
}

.ledger-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  padding: 32px 0;
  border-bottom: 1px solid var(--void-border);
  transition: background 0.2s ease, padding 0.2s ease;
}

.ledger-row:hover {
  background: rgba(255, 255, 255, 0.015);
  padding-left: 12px;
  padding-right: 12px;
}

.ledger-time {
  display: flex;
  flex-direction: column;
}

.l-years {
  font-family: var(--font-hero);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-lime);
  line-height: 1;
}

.l-months {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
}

.ledger-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.l-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.l-role {
  font-family: var(--font-hero);
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
}

.l-org {
  font-size: 13px;
  color: var(--accent-cyan);
}

.l-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 800px;
}

.l-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.l-tags span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--void-border);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ==========================================================================
   SECTION 4: TECHNICAL MATRIX & ACADEMICS
   ========================================================================== */
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.matrix-cell {
  background: var(--void-surface);
  border: 1px solid var(--void-border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cell-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-lime);
}

.cell-title {
  font-family: var(--font-hero);
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
}

.cell-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
}

.cell-items strong {
  color: #FFFFFF;
}

.academic-strip {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  padding: 24px 32px;
  background: rgba(14, 14, 18, 0.6);
  border: 1px solid var(--void-border);
  border-radius: 14px;
}

.acad-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-lime);
  display: block;
  margin-bottom: 4px;
}

.acad-val {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
}

.acad-period {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.acad-course {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ==========================================================================
   SECTION 5: CONTACT DOSSIER
   ========================================================================== */
.dossier-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.dossier-huge-title {
  font-family: var(--font-hero);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.dossier-prompt {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 480px;
}

.dossier-actions-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.transmission-card {
  background: var(--void-surface);
  border: 1px solid var(--void-border);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.transmission-card:hover {
  background: var(--void-surface-hover);
  border-color: var(--accent-lime);
  transform: translateY(-2px);
}

.tc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tc-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
}

.tc-top svg {
  width: 14px;
  height: 14px;
  color: var(--text-dim);
}

.tc-value {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
}

.tc-hint {
  font-size: 11px;
  color: var(--text-muted);
}

.transmission-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.link-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--void-border);
  padding: 8px 16px;
  border-radius: 980px;
  color: #FFFFFF;
  transition: all 0.2s ease;
}

.link-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--void-border-bright);
}

.link-chip svg {
  width: 13px;
  height: 13px;
}

.chip-accent {
  background: var(--accent-lime);
  color: #000000;
  border-color: var(--accent-lime);
  font-weight: 700;
}

.chip-accent:hover {
  background: #E5FF4D;
  transform: translateY(-1px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.studio-footer {
  padding: 40px 0;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.f-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.f-top-link:hover {
  color: #FFFFFF;
}

/* Toast */
.studio-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #000000;
  border: 1px solid var(--accent-lime);
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 500;
}

.studio-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1068px) {
  .hero-bottom-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .work-body {
    grid-template-columns: 1fr;
  }
  .matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dossier-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-center { display: none; }
  .key-points-grid { grid-template-columns: 1fr; }
  .ledger-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .matrix-grid { grid-template-columns: 1fr; }
  .academic-strip { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
}
