/* ==========================================================================
   MANGOZTEEN - LUXURY BLACK & GOLD DEEP TECH BRAND IDENTITY SYSTEM
   ========================================================================== */

/* Design Tokens & Custom Variables */
:root {
  --bg-obsidian: #040406;
  --bg-charcoal: #0B0B0F;
  --bg-card: rgba(12, 12, 16, 0.65);
  --bg-card-hover: rgba(22, 22, 30, 0.8);
  
  /* Luxury Golds */
  --gold-primary: #D4AF37;       /* Polished Metallic Gold */
  --gold-amber: #E2A63B;         /* Warm Gold Accent */
  --gold-light: #F9E8A2;         /* Brilliant Champagne Gold */
  --gold-dark: #8E6D1C;          /* Deep Bronze Gold */
  --gold-muted: rgba(212, 175, 55, 0.15);
  --gold-border: rgba(212, 175, 55, 0.22);
  --gold-border-focus: rgba(254, 223, 0, 0.6);
  
  /* Text System */
  --text-ivory: #F5F5ED;         /* Clean high-contrast body */
  --text-muted: #A3A39C;         /* Muted technical content */
  --text-dark: #66665E;          /* Deep subtle descriptions */
  
  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Grotesk', monospace, sans-serif;

  /* Grid & Spacing */
  --section-padding: 8rem 2rem;
  --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-in-out;
  --glow-gold: 0 0 25px rgba(212, 175, 55, 0.35);
  --glow-gold-subtle: 0 0 15px rgba(212, 175, 55, 0.12);
  
  /* Card Spotlight Coordinate Defaults */
  --mouse-x: 50%;
  --mouse-y: 50%;
}

/* ==========================================================================
   CSS RESET & CORE STYLING
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-obsidian);
  color: var(--text-ivory);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Selection */
::selection {
  background-color: var(--gold-primary);
  color: var(--bg-obsidian);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

strong {
  color: var(--text-ivory);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* ==========================================================================
   BACKGROUNDS & DECORATIVE GRADIENTS
   ========================================================================== */
.mesh-gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -3;
  background: 
    radial-gradient(circle at 10% 20%, rgba(20, 20, 25, 0.95) 0%, rgba(5, 5, 8, 1) 90%);
  overflow: hidden;
}

.gold-shimmer-orb {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(160px);
  z-index: -2;
  opacity: 0.08;
  pointer-events: none;
}

.gold-shimmer-orb.top-right {
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
}

.gold-shimmer-orb.bottom-left {
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, var(--gold-dark) 0%, transparent 70%);
}

/* Gold Gradient Text Utility */
.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   HEADER & NAVIGATION PILL
   ========================================================================== */
.header {
  position: fixed;
  top: 1.5rem;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 2rem;
  pointer-events: none; /* Let elements pass through */
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 0.6rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), var(--glow-gold-subtle);
  pointer-events: auto; /* Re-enable pointer events for the bar */
  transition: var(--transition-smooth);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-svg {
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-area:hover .logo-svg {
  transform: rotate(45deg);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #FFF 20%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.8rem;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-ivory);
  cursor: pointer;
}

/* ==========================================================================
   BUTTONS SYSTEM
   ========================================================================== */
.btn-primary-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 60%, var(--gold-dark) 100%);
  color: var(--bg-obsidian);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
  transition: var(--transition-smooth);
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-gold), 0 8px 25px rgba(212, 175, 55, 0.4);
  color: #000;
}

.btn-primary-gold:active {
  transform: translateY(0);
}

.btn-secondary-outline {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary-outline:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  box-shadow: var(--glow-gold-subtle);
  transform: translateY(-2px);
}

.btn-icon {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn-secondary-outline:hover .btn-icon {
  transform: translateX(3px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-full-width {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   SECTIONS GENERAL DESIGN
   ========================================================================== */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.section-subtitle {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gold-primary);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Luxury Divider Element */
.luxury-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
  opacity: 0.3;
}

.divider-line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.divider-diamond {
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold-primary);
  transform: rotate(45deg);
  background: var(--bg-obsidian);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 10rem;
  overflow: hidden;
}

.hero-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

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

.hero-badge {
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid var(--gold-border);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-primary);
  animation: pulse-glow 2s infinite ease-in-out;
}

.badge-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 4.6rem);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  max-width: 1000px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 780px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 6rem;
}

/* Metrics Dashboard Grid */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: 100%;
  max-width: 900px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 3.5rem;
}

.metric-card {
  text-align: center;
}

.metric-num {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.metric-suffix {
  font-size: 1.5rem;
  color: var(--gold-light);
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ==========================================================================
   ORIGINS & TIMELINE SECTION
   ========================================================================== */
.origin-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.origin-block-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.origin-paragraph {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.quote-card {
  background: linear-gradient(135deg, rgba(20, 20, 25, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 16px 16px 0;
  padding: 2.2rem;
  margin-top: 2.5rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.quote-icon {
  color: var(--gold-primary);
  margin-bottom: 1.2rem;
  opacity: 0.6;
}

.quote-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-ivory);
  margin-bottom: 1.2rem;
}

.quote-author {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

/* Interactive Glass Timeline */
.glass-timeline-container {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  padding: 3rem 2.2rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), var(--glow-gold-subtle);
}

.timeline-title {
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.timeline-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.timeline-step {
  display: flex;
  gap: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.marker-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-obsidian);
  border: 2px solid var(--text-dark);
  transition: var(--transition-smooth);
  z-index: 2;
}

.marker-line {
  width: 2px;
  background: var(--text-dark);
  flex-grow: 1;
  position: absolute;
  top: 14px;
  bottom: -2.5rem;
  opacity: 0.3;
  transition: var(--transition-smooth);
}

.timeline-content {
  padding-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.3rem;
  transition: var(--transition-smooth);
}

.timeline-content h4 {
  font-size: 1.15rem;
  font-family: var(--font-serif);
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.5;
  transition: var(--transition-smooth);
}

/* Timeline Active / Hover States */
.timeline-step.active .marker-dot,
.timeline-step:hover .marker-dot {
  border-color: var(--gold-primary);
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
}

.timeline-step.active .marker-line {
  background: var(--gold-primary);
  opacity: 0.8;
}

.timeline-step.active .timeline-date {
  color: var(--gold-primary);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.timeline-step.active .timeline-content h4 {
  color: var(--text-ivory);
}

.timeline-step.active .timeline-content p {
  color: var(--text-muted);
}

/* ==========================================================================
   CORE OPERATIONAL PILLARS
   ========================================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
}

/* Luxury Card spotlight container */
.pillar-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  padding: 3.5rem;
  transition: var(--transition-smooth);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

/* Card hover glow radial spotlight script coordinate anchor */
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(212, 175, 55, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 25px 50px rgba(0,0,0,0.55), var(--glow-gold-subtle);
}

.pillar-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon-wrapper {
  background: var(--gold-primary);
  color: var(--bg-obsidian);
  box-shadow: 0 0 15px var(--gold-primary);
}

.pillar-icon {
  width: 28px;
  height: 28px;
}

.pillar-card-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.pillar-card-text {
  margin-bottom: 2.2rem;
  font-size: 1rem;
  line-height: 1.65;
}

.pillar-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pillar-features li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.95rem;
}

.check-icon {
  color: var(--gold-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Expanded Technical Drawer Details */
.pillar-interactive-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  transition: var(--transition-fast);
  margin-top: 1rem;
}

.pillar-interactive-trigger:hover {
  color: var(--gold-light);
}

.trigger-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.pillar-interactive-trigger.active .trigger-chevron {
  transform: rotate(180deg);
}

.pillar-details-drawer {
  height: 0;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-inner {
  padding-top: 1.8rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metric-data-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
}

.metric-data-row span {
  color: var(--text-muted);
}

.gold-text {
  color: var(--gold-primary);
  font-family: var(--font-mono);
}

/* ==========================================================================
   FINTECH LEDGER FLOW VISUALIZER
   ========================================================================== */
.ledger-visualizer-container {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.ledger-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
}

.ledger-title-icon {
  color: var(--gold-primary);
  animation: pulse-glow 2s infinite ease-in-out;
}

.ledger-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

.ledger-toggle-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.ledger-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--gold-border);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.ledger-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.ledger-btn.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--bg-obsidian);
  font-weight: 600;
  box-shadow: var(--glow-gold);
}

.ledger-display-area {
  background: rgba(0,0,0,0.3);
  border: 1px dashed rgba(212, 175, 55, 0.12);
  border-radius: 16px;
  padding: 3rem 2rem;
}

.ledger-flow-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.6fr 1fr 1.2fr;
  align-items: center;
  justify-content: center;
}

.ledger-node {
  background: rgba(10, 10, 12, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 16px;
  padding: 1.6rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.ledger-node.active {
  border-color: var(--gold-primary);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.node-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.ledger-node.active .node-icon {
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.node-label {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
}

.ledger-node.active .node-label {
  color: var(--text-ivory);
}

.node-status {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-dark);
}

.node-status.active {
  color: #00E676;
}

.node-value {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 600;
}

.ledger-connector {
  display: flex;
  align-items: center;
}

/* Pulse Glow Keyframes */
@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 0.8; filter: drop-shadow(0 0 2px var(--gold-primary)); }
  50% { transform: scale(1.08); opacity: 1; filter: drop-shadow(0 0 8px var(--gold-primary)); }
  100% { transform: scale(1); opacity: 0.8; filter: drop-shadow(0 0 2px var(--gold-primary)); }
}

.pulse-gold {
  animation: pulse-glow 2s infinite ease-in-out;
}

/* Connector Path Pulse Flow */
@keyframes dash-flow {
  to {
    stroke-dashoffset: -110;
  }
}

#flow-pulse-1, #flow-pulse-2 {
  animation: dash-flow 4s linear infinite;
}

/* ==========================================================================
   PRODUCT ECOSYSTEM & INTERACTIVE ROUTER
   ========================================================================== */
.fresqu-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.fresqu-details-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.fresqu-text {
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.fresqu-benefits {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.benefit-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.benefit-item h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--text-ivory);
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* PATHFINDER SIMULATOR DASHBOARD */
.fresqu-simulator {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  gap: 1rem;
}

.sim-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold-primary);
  border: 1px solid var(--gold-border);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.sim-title h3 {
  font-size: 1.35rem;
}

.sim-controls {
  display: flex;
  gap: 0.8rem;
}

.sim-description {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* High Tech Map Arena */
.sim-map-area {
  height: 280px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.sim-node {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-smooth);
}

.node-icon-inner {
  width: 18px;
  height: 18px;
  z-index: 12;
}

.sim-node::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse-ring 2.2s infinite cubic-bezier(0.215, 0.610, 0.355, 1);
  z-index: 8;
}

.node-merchant {
  background: var(--gold-primary);
  color: var(--bg-obsidian);
  box-shadow: 0 0 15px var(--gold-primary);
}
.node-merchant::before {
  border: 1px solid var(--gold-primary);
}

.node-customer {
  background: #FFF;
  color: var(--bg-obsidian);
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
}
.node-customer::before {
  border: 1px solid #FFF;
}

.node-text-tag {
  position: absolute;
  bottom: -24px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* Congestion Barriers */
.sim-barrier {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(244, 67, 54, 0.15);
  border: 1px solid #f44336;
  color: #f44336;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  transition: var(--transition-smooth);
}

.barrier-icon-inner {
  width: 16px;
  height: 16px;
}

.barrier-text-tag {
  position: absolute;
  top: -20px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: #f44336;
  opacity: 0.7;
}

.barrier-active {
  box-shadow: 0 0 12px rgba(244, 67, 54, 0.3);
  animation: jitter-bar 1.5s infinite ease-in-out;
}

/* Vector Path Draw Layer */
.sim-path-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

/* Simulator State Banner */
.sim-info-panel {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(10, 10, 12, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  display: flex;
  gap: 0.5rem;
  font-size: 0.72rem;
  z-index: 12;
}

.info-label {
  color: var(--text-dark);
  font-family: var(--font-mono);
}

.info-value {
  color: var(--gold-primary);
  font-family: var(--font-mono);
  font-weight: 600;
}

/* Simulator Statistics row */
.sim-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 1.5rem;
}

.sim-stat {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.3rem;
}

.sim-stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sim-stat-val {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 600;
}

/* Keyframes for Node Ring & Jitters */
@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 0; }
  50% { opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}

@keyframes jitter-bar {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ==========================================================================
   VISION & SCALING ROADMAP
   ========================================================================== */
.roadmap-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5rem;
  align-items: center;
}

.roadmap-stages {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.roadmap-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 2.2rem;
  transition: var(--transition-smooth);
}

.roadmap-card:hover {
  transform: translateX(5px);
  border-color: var(--gold-primary);
}

.roadmap-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--text-muted);
}

.roadmap-badge.gold-glow {
  color: var(--gold-primary);
  border-color: var(--gold-border);
  background: rgba(212, 175, 55, 0.05);
}

.roadmap-stage-title {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.roadmap-stage-text {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.roadmap-completion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.comp-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-dark);
  text-transform: uppercase;
}

.comp-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  overflow: hidden;
}

.comp-fill {
  height: 100%;
  background: rgba(212,175,55,0.3);
  border-radius: 10px;
}

.comp-fill.gold-gradient-bg {
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  box-shadow: 0 0 8px var(--gold-primary);
}

/* Dynamic Geographic Expansion Panel */
.roadmap-map-panel {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.map-panel-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.map-panel-desc {
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.map-svg-wrapper {
  position: relative;
  background: rgba(0,0,0,0.2);
  border-radius: 16px;
  padding: 1rem;
}

/* Map pulse orbs styles */
.map-node-trigger {
  cursor: pointer;
  transition: var(--transition-fast);
}

.map-node-trigger:hover {
  fill: var(--gold-light);
  r: 7;
}

/* HQ pulsing dot effects */
@keyframes radar-pulse {
  0% { r: 5; opacity: 1; }
  100% { r: 18; opacity: 0; }
}

.hq-pulse-dot {
  animation: radar-pulse 2s infinite ease-out;
}

/* Scaling rings style */
@keyframes ring-expand {
  0% { transform: scale(0.9); opacity: 0; }
  50% { opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 0; }
}

.scale-ring-1, .scale-ring-2 {
  transform-origin: 130px 330px;
  animation: ring-expand 6s infinite linear;
}

.scale-ring-2 {
  animation-delay: 3s;
}

/* Status Overlays */
.map-status-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: var(--transition-smooth);
}

.map-status-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
}

.map-status-overlay p {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

.map-info-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #00E676;
  border: 1px solid rgba(0, 230, 118, 0.3);
  background: rgba(0, 230, 118, 0.05);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* ==========================================================================
   LEADERSHIP & GOVERNANCE PORTAL
   ========================================================================== */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.leader-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  padding: 3.5rem;
  display: flex;
  gap: 2.5rem;
  transition: var(--transition-smooth);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.leader-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), var(--glow-gold-subtle);
}

.leader-avatar-container {
  position: relative;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}

.leader-avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.leader-placeholder-icon {
  width: 42px;
  height: 42px;
}

.leader-avatar-border {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.3);
  transition: var(--transition-smooth);
}

.leader-card:hover .leader-avatar-border {
  transform: rotate(90deg);
  border-color: var(--gold-primary);
}

.leader-info {
  display: flex;
  flex-direction: column;
}

.leader-name {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.leader-role {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.leader-bio-line {
  width: 40px;
  height: 1px;
  background: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.leader-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.leader-socials {
  display: flex;
  gap: 1.2rem;
  color: var(--text-muted);
}

.leader-socials a:hover {
  color: var(--gold-primary);
}

/* ==========================================================================
   CONTACT / STRATEGIC INQUIRY DESK
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
}

.contact-info-panel {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}

.panel-headline {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.panel-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.method-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.method-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212,175,55,0.06);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.method-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-ivory);
  margin-bottom: 0.3rem;
}

.method-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Local clock visual card */
.kerala-clock-card {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(212,175,55,0.08);
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.clock-icon {
  color: var(--gold-primary);
}

.clock-text {
  display: flex;
  flex-direction: column;
}

.clock-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dark);
  text-transform: uppercase;
}

.clock-time {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--gold-primary);
  font-weight: 600;
}

/* INPUT FORM WRAPPER & ELEMENTS */
.contact-form-wrapper {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.form-title {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.form-subtitle {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.inquiry-form-element {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1.2rem;
  width: 18px;
  height: 18px;
  color: var(--text-dark);
  transition: var(--transition-fast);
  pointer-events: none;
}

.textarea-icon {
  top: 1.2rem;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 1rem 1rem 1rem 3rem;
  color: var(--text-ivory);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.input-wrapper select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.input-wrapper textarea {
  resize: vertical;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.input-wrapper input:focus + .input-icon,
.input-wrapper select:focus + .input-icon,
.input-wrapper textarea:focus + .input-icon {
  color: var(--gold-primary);
}

/* Professional Form Result alert box styles */
.form-result-box {
  border-radius: 12px;
  padding: 1.2rem;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.form-result-box.hidden {
  display: none;
}

.form-result-box.success {
  background: rgba(0, 230, 118, 0.06);
  border: 1px solid rgba(0, 230, 118, 0.4);
  color: #00E676;
}

.form-result-box.error {
  background: rgba(244, 67, 54, 0.06);
  border: 1px solid rgba(244, 67, 54, 0.4);
  color: #F44336;
}

/* Disabled Submit button loading styles */
button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ==========================================================================
   LUXURY FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding: 6rem 2rem 3rem 2rem;
  background: #020203;
  position: relative;
  z-index: 10;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-slogan {
  font-size: 0.9rem;
  color: var(--text-dark);
  max-width: 320px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  border-top: 1px solid rgba(212, 175, 55, 0.04);
  border-bottom: 1px solid rgba(212, 175, 55, 0.04);
  padding: 3rem 0;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-col ul a:hover {
  color: var(--gold-primary);
}

.footer-meta-detail {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.copyright-text {
  font-size: 0.8rem;
  color: var(--text-dark);
}

.footer-security-stamp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dark);
}

.security-icon {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (INTERSECTION OBSERVER)
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframes & Classes for Hero fade ins */
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fade-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in-up {
  opacity: 0;
  animation: fade-in-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.animate-fade-in-up-delayed {
  opacity: 0;
  animation: fade-in-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .origin-grid, .pillars-grid, .fresqu-grid, .roadmap-grid, .leadership-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .leadership-grid {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 5rem 1.5rem;
  }
  
  .header {
    top: 1rem;
    padding: 0 1rem;
  }
  
  .header-container {
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--gold-border);
    border-radius: 20px;
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
  }
  
  .nav-menu.open {
    transform: translateY(10px);
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-cta-btn {
    display: none; /* Hide on mobile to avoid overcrowding */
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }

  .ledger-flow-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .ledger-connector {
    transform: rotate(90deg);
    width: 40px;
    margin: 0.5rem auto;
  }
  
  .leader-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem;
  }
  
  .leader-bio-line {
    margin: 0 auto 1.5rem auto;
  }
}

/* Clickable FormDock footer stamp details */
.formdock-footer-link {
  color: var(--gold-primary);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.formdock-footer-link:hover {
  color: var(--gold-light);
  text-decoration-style: solid;
  text-shadow: var(--glow-gold-subtle);
}
