@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700;1,800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  --bg-deep: #050608;
  --bg-surface: #0A0D12;
  --bg-elevated: #11151F;
  --bg-card: rgba(13, 17, 26, 0.75);
  --bg-glass: rgba(20, 26, 38, 0.65);
  --glass-specular: rgba(255, 255, 255, 0.12);
  
  --border-hairline: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.15);
  --border-strong: rgba(255, 255, 255, 0.28);
  
  --text-white: #FFFFFF;
  --text-light: #E2E8F0;
  --text-muted: #8392A5;
  --text-dark: #4B5565;
  
  /* Octagon Heritage Gradient & Accents */
  --grad-1: #FF5E3A;
  --grad-2: #FF2A68;
  --grad-3: #9013FE;
  --grad-hero: linear-gradient(135deg, #FF5E3A 0%, #FF2A68 40%, #00F29D 100%);
  --volt-accent: #00F29D;
  --gold-accent: #E5B842;
  --cyan-accent: #00D2FF;
  
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --card-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] {
  --bg-deep: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-elevated: #F1F5F9;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.75);
  --glass-specular: rgba(255, 255, 255, 0.9);
  
  --border-hairline: rgba(15, 23, 42, 0.08);
  --border-glass: rgba(15, 23, 42, 0.12);
  --border-strong: rgba(15, 23, 42, 0.22);
  
  --text-white: #0F172A;
  --text-light: #1E293B;
  --text-muted: #64748B;
  --text-dark: #94A3B8;
  
  --grad-hero: linear-gradient(135deg, #E11D48 0%, #7C3AED 50%, #059669 100%);
  --volt-accent: #059669;
  --gold-accent: #D97706;
  --cyan-accent: #0284C7;
  --card-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-white);
  font-family: var(--font-main);
  line-height: 1.5;
  overflow-x: hidden;
}

/* ==========================================================================
   1. OCTAGON OPENING / LOADING SCREEN
   ========================================================================== */
.opening-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s ease;
}

.opening-curtain.dismissed {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.opening-bg-gradient {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 42, 104, 0.12) 0%, rgba(0, 242, 157, 0.08) 35%, transparent 70%);
  animation: rotateGrad 25s linear infinite;
  pointer-events: none;
}

@keyframes rotateGrad {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.opening-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.opening-brand-mark {
  font-size: 80px;
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--text-white);
}

.opening-statement {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text-light);
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.opening-statement em {
  font-style: italic;
  font-weight: 700;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-open-boutique {
  background: var(--text-white);
  color: var(--bg-deep);
  border: 1px solid var(--border-strong);
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-open-boutique:hover {
  transform: scale(1.04);
  opacity: 0.92;
}

/* ==========================================================================
   2. FULL-SCREEN OCTAGON OVERLAY MENU (FS-MENU)
   ========================================================================== */
.fs-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5000;
  background: rgba(5, 6, 8, 0.98);
  backdrop-filter: blur(30px);
  padding: 40px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.fs-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.fs-menu-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-hairline);
}

.fs-menu-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin: auto 0;
  padding: 40px 0;
}

.fs-col-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-white);
}

.fs-col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fs-col-link {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.fs-col-link:hover {
  color: var(--text-white);
}

.fs-close-btn {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-hairline);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

/* ==========================================================================
   3. SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header-fixed {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  background: var(--bg-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-hairline);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text-white);
}

.logo-symbol {
  width: 44px;
  height: 44px;
  background: var(--text-white);
  color: var(--bg-deep);
  font-weight: 900;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  letter-spacing: -0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-text {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

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

.header-nav-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: color 0.15s;
}

.header-nav-link:hover {
  color: var(--text-white);
}

.btn-header-cta {
  background: var(--text-white);
  color: var(--bg-deep);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-header-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ==========================================================================
   4. EDITORIAL HERO & SHOWCASE
   ========================================================================== */
.container-editorial {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-editorial {
  padding: 100px 0 80px;
  text-align: center;
}

.hero-editorial .container-editorial {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-kicker {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--volt-accent);
  margin-bottom: 24px;
  font-family: var(--font-mono);
  text-align: center;
}

.hero-main-title {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  max-width: 1100px;
  margin: 0 auto 28px auto;
  text-align: center;
}

.hero-main-title em {
  font-style: italic;
  font-weight: 800;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-deck {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 860px;
  margin: 0 auto 48px auto;
  text-align: center;
}

.hero-action-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-pill-primary {
  background: var(--text-white);
  color: var(--bg-deep);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-pill-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-pill-secondary {
  background: var(--bg-card);
  color: var(--text-white);
  border: 1px solid var(--border-strong);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-pill-secondary:hover {
  border-color: var(--text-white);
  background: var(--bg-elevated);
  transform: translateY(-2px);
}

/* 3D Formatted Bullets */
.bullet-3d-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06), inset 0 1px 0 var(--glass-specular);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s, border-color 0.25s;
}

.bullet-3d-item:hover {
  transform: translateX(4px) translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12), inset 0 1px 0 var(--glass-specular);
}

.bullet-3d-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--volt-accent);
  box-shadow: 0 0 10px var(--volt-accent);
  flex-shrink: 0;
}

.bullet-3d-text {
  font-size: 13.5px;
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.4;
}

.btn-pill-secondary:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
}

/* Big Image Showcase Banner */
.visual-showcase-band {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  margin-bottom: 100px;
}

.visual-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-hairline);
  background: var(--bg-surface);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.visual-frame:hover img {
  transform: scale(1.03);
}

.visual-overlay-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(0deg, rgba(5,6,8,0.95) 0%, transparent 100%);
}

.visual-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--volt-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-mono);
  margin-bottom: 6px;
}

.visual-heading {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
}

/* ==========================================================================
   5. HOW OUR SYSTEM IS SET UP (ARCHITECTURAL DEEP DIVE)
   ========================================================================== */
.section-full {
  padding: 100px 0;
  border-top: 1px solid var(--border-hairline);
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 800;
  color: var(--volt-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-mono);
  margin-bottom: 16px;
  text-align: center;
}

.section-headline {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  max-width: 960px;
  margin: 0 auto 20px auto;
  text-align: center;
}

.section-subtext {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 820px;
  line-height: 1.6;
  margin: 0 auto 56px auto;
  text-align: center;
}

.architecture-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.arch-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  border-radius: 8px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s;
}

.arch-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  background: var(--bg-elevated);
}

.arch-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--volt-accent);
  font-family: var(--font-mono);
  margin-bottom: 24px;
}

.arch-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.arch-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.arch-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-hairline);
  padding-top: 20px;
}

.arch-bullet {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.arch-bullet::before {
  content: '▸';
  color: var(--volt-accent);
}

/* ==========================================================================
   6. CANONICAL GENESIS TERMINAL (PROOF OF ANCHORAGE)
   ========================================================================== */
.proof-box {
  background: #020305;
  border: 1px solid var(--border-hairline);
  border-radius: 8px;
  padding: 40px;
  font-family: var(--font-mono);
  font-size: 13px;
}

.proof-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.proof-lbl {
  color: var(--text-dark);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
}

.proof-val {
  color: var(--text-white);
  word-break: break-all;
}

.proof-val.green {
  color: var(--volt-accent);
}

/* ==========================================================================
   7. BOUTIQUE INTAKE & DIRECT OFFERINGS
   ========================================================================== */
.offerings-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.offering-box {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  border-radius: 8px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offering-box.featured {
  border-color: var(--volt-accent);
}

.offering-cat {
  font-size: 11px;
  font-weight: 800;
  color: var(--volt-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-mono);
  margin-bottom: 8px;
}

.offering-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.offering-fee {
  font-size: 36px;
  font-weight: 900;
  font-family: var(--font-mono);
  margin-bottom: 16px;
}

.offering-p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.intake-container {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  border-radius: 8px;
  padding: 56px;
}

.intake-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.field-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.field-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.field-control {
  background: #050608;
  border: 1px solid var(--border-hairline);
  border-radius: 4px;
  padding: 14px 18px;
  font-size: 14px;
  color: #FFFFFF;
  font-family: var(--font-main);
  transition: border-color 0.2s;
}

.field-control:focus {
  outline: none;
  border-color: #FFFFFF;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-hairline);
  padding: 56px 0 72px;
  font-size: 12px;
  color: var(--text-dark);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-hairline);
}

/* ==========================================================================
   LIQUID GLASSMORPHISM & 3D PERSPECTIVE
   ========================================================================== */
.liquid-glass {
  background: var(--bg-card);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--card-shadow), inset 0 1px 0 var(--glass-specular);
  border-radius: 12px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s;
}

.liquid-glass:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.card-3d-wrap {
  perspective: 1200px;
}

.card-3d {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-style: preserve-3d;
}

.card-3d:hover {
  transform: rotateX(2deg) rotateY(-2deg) translateY(-5px);
}

/* Theme Toggle Button */
.theme-toggle-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  color: var(--text-white);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  transition: all 0.2s ease;
}

.theme-toggle-btn:hover {
  border-color: var(--border-strong);
  background: var(--bg-elevated);
}

.inhouse-grid {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 48px;
  margin-bottom: 48px;
  box-shadow: var(--card-shadow), inset 0 1px 0 var(--glass-specular);
}

.criteria-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  border-radius: 12px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s;
}

.criteria-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-elevated);
}

/* ==========================================================================
   EXECUTIVE AUDIO BRIEFING & VOICE SYNTHESIZER HUD
   ========================================================================== */
.audio-briefing-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 24px 32px;
  margin-bottom: 48px;
  backdrop-filter: blur(28px);
  box-shadow: var(--card-shadow), inset 0 1px 0 var(--glass-specular);
}

.audio-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.audio-kicker-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.audio-pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--volt-accent);
  box-shadow: 0 0 12px var(--volt-accent);
  animation: pulseDot 1.8s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.2); }
}

.audio-visualizer-canvas {
  width: 100%;
  height: 48px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  margin-bottom: 20px;
  display: block;
}

.audio-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.audio-playback-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-audio-play {
  background: #FFFFFF;
  color: #000000;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s;
}

.btn-audio-play:hover {
  transform: scale(1.08);
  background: #E2E8F0;
}

.audio-chapter-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.chapter-chip {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-hairline);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.chapter-chip:hover {
  color: var(--text-white);
  border-color: var(--border-strong);
}

.chapter-chip.active {
  background: var(--text-white);
  color: #000000;
  border-color: var(--text-white);
  font-weight: 800;
}

/* ==========================================================================
   PERSISTENT FLOATING AUDIO PLAYER (XXXIII VOICE ENGINE INTEGRATION)
   ========================================================================== */
#lps-player {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  width: min(390px, calc(100vw - 32px));
  background: var(--bg-card);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  color: var(--text-white);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 var(--glass-specular);
  font: 400 13.5px/1.5 var(--font-sans);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#lps-player.min {
  width: auto;
}

#lps-player.min .lp-body {
  display: none;
}

#lps-player .lp-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  cursor: pointer;
  user-select: none;
}

#lps-player .lp-head b {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-accent);
}

#lps-player .lp-head span {
  color: var(--text-muted);
  font-size: 11.5px;
  margin-left: auto;
}

#lps-player .lp-body {
  padding: 0 18px 18px;
}

#lps-player select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  background: var(--bg-surface);
  color: var(--text-white);
  border: 1px solid var(--border-hairline);
  border-radius: 8px;
  padding: 8px 10px;
  margin: 4px 0 10px;
  outline: none;
}

#lps-player .lp-title {
  font-weight: 800;
  font-size: 15px;
  line-height: 1.3;
  margin: 4px 0 2px;
  color: var(--text-white);
}

#lps-player .lp-sub {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 12px;
}

#lps-player .lp-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

#lps-player button {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  background: var(--bg-surface);
  color: var(--text-white);
  border: 1px solid var(--border-hairline);
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s;
}

#lps-player button:hover {
  border-color: var(--border-strong);
}

#lps-player button.play {
  background: var(--gold-accent);
  color: #000000;
  border-color: transparent;
  padding: 8px 18px;
  font-weight: 900;
}

#lps-player button.play:hover {
  transform: scale(1.04);
}

#lps-player .lp-bar {
  height: 5px;
  background: rgba(128, 128, 128, 0.2);
  border-radius: 3px;
  margin: 12px 0 6px;
  overflow: hidden;
}

#lps-player .lp-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold-accent);
  transition: width 0.15s ease-out;
}

#lps-player .lp-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

#lps-player .lp-tx {
  max-height: 180px;
  overflow-y: auto;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-hairline);
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.6;
  display: none;
}

#lps-player.tx .lp-tx {
  display: block;
}

#lps-player .lp-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  font-family: var(--font-mono);
}

@media print {
  #lps-player { display: none !important; }
}

/* ==========================================================================
   INSTITUTIONAL DOCUMENTATION LIBRARY & PDF BUTTONS
   ========================================================================== */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.doc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  border-radius: 10px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s;
}

.doc-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-elevated);
}

.doc-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--cyan-accent);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: var(--font-mono);
  margin-bottom: 12px;
}

.doc-title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--text-white);
}

.doc-blurb {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.doc-action-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-hairline);
  color: var(--text-white);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.doc-action-btn:hover {
  background: var(--text-white);
  color: #000000;
  border-color: var(--text-white);
}

/* ==========================================================================
   STRATEGIC ANCHOR: DIGNITY GOLD SHOWCASE
   ========================================================================== */
.gold-feature-box {
  background: linear-gradient(135deg, rgba(229, 184, 66, 0.08) 0%, rgba(13, 17, 26, 0.95) 100%);
  border: 1px solid rgba(229, 184, 66, 0.35);
  border-radius: 12px;
  padding: 48px;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.gold-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-accent);
  border: 1px solid rgba(229, 184, 66, 0.3);
  background: rgba(229, 184, 66, 0.1);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.gold-quote {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.gold-metrics-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(5, 6, 8, 0.6);
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--border-hairline);
}

.gold-metric-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

.gold-metric-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* ==========================================================================
   RWA COMMUNITY, FAMILY & LEADERSHIP SYNDICATE
   ========================================================================== */
.syndicate-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
}

.leader-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  gap: 28px;
  align-items: center;
}

.leader-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2A364F 0%, #151D2A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: var(--volt-accent);
  border: 2px solid var(--volt-accent);
  flex-shrink: 0;
}

.leader-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.btn-profile-link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-white);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-hairline);
  transition: all 0.2s;
}

.btn-profile-link:hover {
  background: var(--text-white);
  color: #000000;
}

.directory-cluster {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  border-radius: 12px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.directory-badge-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.dir-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-hairline);
  color: var(--text-light);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-family: var(--font-mono);
  text-decoration: none;
  transition: all 0.2s;
}

.dir-badge:hover {
  border-color: var(--volt-accent);
  color: var(--volt-accent);
}

/* ==========================================================================
   DOCUMENT PREVIEW MODAL
   ========================================================================== */
.doc-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: rgba(5, 6, 8, 0.85);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.doc-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.doc-modal-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 30px 90px rgba(0,0,0,0.8);
}

.doc-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: 1px solid var(--border-hairline);
  color: var(--text-white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

/* ==========================================================================
   OCTAGON-INSPIRED VALUES & GOVERNANCE ARCHITECTURE
   ========================================================================== */
.values-container {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 48px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.value-block {
  border-top: 1px solid var(--border-hairline);
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.value-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 24px;
}

.value-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  color: var(--volt-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text-white);
  line-height: 1.15;
}

.value-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.value-big-text {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-white);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  text-align: center;
}

.value-big-text strong {
  font-weight: 900;
}

.value-big-text em {
  font-style: italic;
  color: var(--gold-accent);
}

.value-big-text u {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--volt-accent);
}

.value-p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

/* Board & Governance Architecture */
.board-section-intro {
  margin-top: 96px;
  margin-bottom: 40px;
  border-top: 1px solid var(--border-hairline);
  padding-top: 56px;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.board-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.board-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-elevated);
}

.board-seat-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  color: var(--volt-accent);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.board-person-name {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 4px;
}

.board-person-role {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.board-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 20px;
}

.board-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(0, 242, 157, 0.08);
  border: 1px solid rgba(0, 242, 157, 0.25);
  color: var(--volt-accent);
}

/* ==========================================================================
   BACKEND WORKSTATION ORCHESTRATION, RWA INTAKE & SECONDARY LP STYLES
   ========================================================================== */
.underwriting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.underwrite-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s;
}

.underwrite-card:hover {
  border-color: var(--volt-accent);
  transform: translateY(-3px);
  background: var(--bg-elevated);
}

.underwrite-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--volt-accent);
  margin-bottom: 8px;
}

.underwrite-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text-white);
  margin-bottom: 12px;
}

.underwrite-meta-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0;
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
  padding: 16px 0;
}

.underwrite-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.underwrite-meta-row span {
  color: var(--text-muted);
}

.underwrite-meta-row strong {
  color: var(--text-white);
  font-family: var(--font-mono);
  font-size: 12px;
}

.syndicate-funding-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 40px;
  margin-top: 48px;
  backdrop-filter: blur(20px);
}

.syndicate-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.syndicate-alloc-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-hairline);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.syndicate-ticket {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 900;
  color: var(--volt-accent);
  margin: 8px 0;
}

/* x402 Autonomous Machine Gateway & Secondary LP */
.x402-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.x402-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.x402-code-snippet {
  background: #000000;
  border: 1px solid var(--border-hairline);
  border-radius: 8px;
  padding: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
  color: var(--volt-accent);
  overflow-x: auto;
  margin-top: 16px;
}

/* Connectors Matrix */
.connectors-grid-10 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.connector-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  border-radius: 8px;
  padding: 16px 14px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.2s ease;
}

.connector-chip:hover {
  border-color: var(--volt-accent);
  transform: translateY(-2px);
  background: var(--bg-elevated);
}

.connector-chip-name {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-white);
}

.connector-chip-type {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.connector-chip-arrow {
  font-size: 11px;
  color: var(--volt-accent);
  margin-top: 4px;
  font-weight: 800;
}

/* 4 Mandatory Client Compliance Pillars */
.compliance-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.compliance-pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.25s;
}

.compliance-pillar-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  background: var(--bg-elevated);
}

.pillar-number {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  color: var(--volt-accent);
  margin-bottom: 12px;
}

.pillar-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.pillar-desc {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 960px) {
  .hero-main-title { font-size: 44px; }
  .visual-showcase-band { grid-template-columns: 1fr; }
  .architecture-blocks { grid-template-columns: 1fr; }
  .offerings-row { grid-template-columns: 1fr; }
  .fs-menu-columns { grid-template-columns: 1fr 1fr; }
  .intake-grid-2 { grid-template-columns: 1fr; }
  .proof-row { grid-template-columns: 1fr; }
  .doc-grid { grid-template-columns: 1fr; }
  .gold-feature-box { grid-template-columns: 1fr; padding: 32px 24px; }
  .syndicate-grid { grid-template-columns: 1fr; }
  .leader-card { flex-direction: column; text-align: center; }
  .leader-links { justify-content: center; }
  .audio-controls-row { flex-direction: column; align-items: flex-start; }
  .value-block { grid-template-columns: 1fr; gap: 20px; }
  .board-grid { grid-template-columns: 1fr; }
  .underwriting-grid { grid-template-columns: 1fr; }
  .syndicate-grid-4 { grid-template-columns: 1fr; }
  .x402-container { grid-template-columns: 1fr; }
  .connectors-grid-10 { grid-template-columns: 1fr 1fr; }
  .compliance-pillars-grid { grid-template-columns: 1fr; }
}