/* ==============================================
   SOLANA ENERGY CONCEPTS — Premium Landing Page
   Brand Colors: #0c0c22 (Navy), #c9a961 (Gold), #8b7355 (Bronze)
   Fonts: Montserrat (headings) + Lato (body) + Playfair (display) + IBM Plex Mono (data)
   ============================================== */

:root {
  --navy:          #0c0c22;
  --navy-mid:      #1a2332;
  --navy-light:    #1e3a8a;
  --gold:          #c9a961;
  --gold-light:    #d4b876;
  --gold-dark:     #a8893e;
  --bronze:        #8b7355;
  --bronze-light:  #b8956a;
  --gray-dark:     #374151;
  --gray-mid:      #6b7280;
  --gray-light:    #f3f4f6;
  --warm-white:    #f5f2ed;
  --white:         #ffffff;
  --green:         #16a34a;
  --font-heading:  'Montserrat', sans-serif;
  --font-display:  'Playfair Display', serif;
  --font-body:     'Lato', sans-serif;
  --font-mono:     'IBM Plex Mono', monospace;
  --max-w:         1200px;
  --pad:           clamp(1.5rem, 5vw, 5rem);
  --rad:           4px;
  --transition:    0.4s ease-out;
  --gold-gradient: linear-gradient(135deg, #c9a961 0%, #d4b876 40%, #a8893e 100%);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITY ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }

.section-dark  { background: var(--navy); color: var(--white); }
.section-light { background: var(--warm-white); color: var(--navy); }

.gold-text  { color: var(--gold); }
.mono       { font-family: var(--font-mono); }
.mono-sm    { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; }
.mono-val   { font-family: var(--font-mono); font-size: 0.85rem; color: var(--white); }
.mono-val.positive { color: var(--green); }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 1.5rem 0;
  border-radius: 2px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 1px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold-gradient);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201, 169, 97, 0.25);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #d4b876 0%, #e0c882 40%, #c9a961 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 97, 0.08);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 0.82rem; }
.btn-full { width: 100%; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: all 0.5s ease;
}
.navbar.scrolled {
  background: rgba(12, 12, 34, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 0 6px rgba(201,169,97,0.5)); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 800; color: var(--gold); letter-spacing: 0.15em; }
.logo-sub  { font-family: var(--font-mono); font-size: 0.5rem; color: rgba(255,255,255,0.5); letter-spacing: 0.2em; }
.nav-links { display: flex; list-style: none; gap: 2.5rem; margin: 0 auto; }
.nav-link { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('hero-bg.jpg') center/cover no-repeat;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,12,34,0.88) 0%,
    rgba(12,12,34,0.72) 50%,
    rgba(26,35,50,0.80) 100%
  );
}
.hero-particles {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-20vh) translateX(var(--drift,30px)); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 var(--pad);
  padding-top: 8rem;
  padding-bottom: 8rem;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: rgba(201,169,97,0.08);
  border: 1px solid rgba(201,169,97,0.25);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stat-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,97,0.15);
  border-radius: 2px;
  padding: 1.5rem 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-wrap: wrap;
  gap: 0;
}
.hero-stat { text-align: center; padding: 0 2.5rem; }
.stat-top { display: flex; align-items: baseline; justify-content: center; gap: 0.25rem; }
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-unit { font-family: var(--font-mono); font-size: 0.75rem; color: var(--gold); opacity: 0.7; letter-spacing: 0.05em; }
.stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.35rem; display: block; }
.stat-divider { width: 1px; height: 40px; background: rgba(201,169,97,0.2); flex-shrink: 0; }

.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fade-bob 2.5s ease-in-out infinite;
}
.hero-scroll-cue span { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.3); text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(201,169,97,0.5), transparent); }
@keyframes fade-bob { 0%,100% { opacity: 0.7; transform: translateX(-50%) translateY(0); } 50% { opacity: 1; transform: translateX(-50%) translateY(5px); } }

/* ── SECTIONS ── */
section { padding: clamp(5rem, 10vw, 9rem) 0; scroll-margin-top: 80px; }

/* ── LEGACY ── */
.legacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.legacy-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.legacy-body { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.heritage-line {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(201,169,97,0.6);
  text-transform: uppercase;
}
.legacy-stats { display: flex; flex-direction: column; gap: 1rem; }
.proof-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.8rem 2rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.proof-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold-gradient); }
.proof-card:hover { border-color: rgba(201,169,97,0.25); transform: translateX(4px); }
.proof-highlight { background: rgba(201,169,97,0.07); border-color: rgba(201,169,97,0.2); }
.proof-dark { background: rgba(201,169,97,0.04); }
.proof-num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.proof-num span { font-size: 1.2rem; font-weight: 600; }
.proof-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 0.4rem; line-height: 1.5; }

/* ── PHILOSOPHY ── */
.section-light .section-label { color: var(--bronze); }
.section-light .gold-line { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }

.philosophy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.philosophy-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0;
}
.philosophy-text h2 em { font-style: italic; color: var(--gold-dark); }
.brand-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--navy-mid);
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  line-height: 1.6;
}
.brand-quote strong { color: var(--navy); font-style: normal; }
.philosophy-text p { font-size: 0.95rem; color: var(--gray-dark); line-height: 1.85; margin-bottom: 1rem; }

.philosophy-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pillar-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 1.5rem;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: all var(--transition);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); border-color: rgba(201,169,97,0.3); }
.pillar-icon { width: 40px; height: 40px; margin-bottom: 0.8rem; }
.pillar-card h4 { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.5rem; }
.pillar-card p { font-size: 0.82rem; color: var(--gray-mid); line-height: 1.65; }

/* ── ARCHITECTURE ── */
.arch-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; padding-bottom: 0.5rem; }
.arch-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.arch-header h2 em { font-style: italic; color: var(--gold); }
.arch-intro { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; }

.arch-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-top: 3rem;
}

.bento-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.bento-card:hover { 
  border-color: rgba(201,169,97,0.3); 
  background: rgba(255,255,255,0.05); 
  transform: translateY(-5px); 
}

.bento-large { 
  grid-column: 1; 
  grid-row: 1; 
}

.bento-wide { 
  grid-column: 1 / 4; 
  grid-row: 2; 
}

.bento-num { 
  font-family: var(--font-mono); 
  font-size: 0.75rem; 
  color: var(--gold); 
  opacity: 0.6; 
  margin-bottom: 2rem; 
}

.bento-card h3 { 
  font-family: var(--font-display); 
  font-size: 1.5rem; 
  margin-bottom: 1rem; 
  color: #fff; 
}

.bento-card p { 
  color: rgba(255,255,255,0.6); 
  line-height: 1.7; 
  font-size: 0.95rem; 
}

.bento-tag {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,97,0.1);
  padding: 4px 12px;
  border-radius: 2px;
}

.ai-experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ai-pills {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.ai-pill {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  width: fit-content;
}

.ai-pill:hover {
  background: rgba(201,169,97,0.05);
  border-color: rgba(201,169,97,0.2);
  color: #fff;
  transform: translateX(8px);
}

.pill-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
}

.ai-viz-container {
  position: relative;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 1rem;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.viz-blueprint {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(201,169,97,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,97,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.6;
  pointer-events: none;
}

.energy-flow-svg {
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: visible;
}

.node {
  fill: #0a0e14;
  stroke: rgba(201,169,97,0.6);
  stroke-width: 1.5;
}

.node-home {
  fill: var(--gold);
  stroke: var(--gold);
  filter: drop-shadow(0 0 12px rgba(201,169,97,0.4));
}

.flow-path {
  fill: none;
  stroke: rgba(201,169,97,0.08);
  stroke-width: 1.5;
  stroke-dasharray: 2 4;
}

.pulse-dot {
  fill: var(--gold);
  filter: drop-shadow(0 0 4px var(--gold));
}

.viz-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.viz-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.lab-solar   { top: 12%; left: 50%; transform: translateX(-50%); }
.lab-home    { top: 44%; left: 56%; color: #fff; font-weight: 600; }
.lab-battery { top: 78%; left: 16%; }
.lab-grid    { top: 78%; left: 78%; }

.ai-copy { flex: 1; min-width: 200px; }

@media (max-width: 900px) {
  .ai-experience {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ai-viz-container {
    aspect-ratio: 16/10;
  }
}


@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stat-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,97,0.15);
  border-radius: 2px;
  padding: 1.5rem 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-wrap: wrap;
  gap: 0;
}
.hero-stat { text-align: center; padding: 0 2.5rem; }
.stat-top { display: flex; align-items: baseline; justify-content: center; gap: 0.25rem; }
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-unit { font-family: var(--font-mono); font-size: 0.75rem; color: var(--gold); opacity: 0.7; letter-spacing: 0.05em; }
.stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.35rem; display: block; }
.stat-divider { width: 1px; height: 40px; background: rgba(201,169,97,0.2); flex-shrink: 0; }

.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fade-bob 2.5s ease-in-out infinite;
}
.hero-scroll-cue span { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.3); text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(201,169,97,0.5), transparent); }
@keyframes fade-bob { 0%,100% { opacity: 0.7; transform: translateX(-50%) translateY(0); } 50% { opacity: 1; transform: translateX(-50%) translateY(5px); } }

/* ── SECTIONS ── */
section { padding: clamp(5rem, 10vw, 9rem) 0; scroll-margin-top: 80px; }

/* ── LEGACY ── */
.legacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.legacy-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.legacy-body { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.heritage-line {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(201,169,97,0.6);
  text-transform: uppercase;
}
.legacy-stats { display: flex; flex-direction: column; gap: 1rem; }
.proof-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.8rem 2rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.proof-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold-gradient); }
.proof-card:hover { border-color: rgba(201,169,97,0.25); transform: translateX(4px); }
.proof-highlight { background: rgba(201,169,97,0.07); border-color: rgba(201,169,97,0.2); }
.proof-dark { background: rgba(201,169,97,0.04); }
.proof-num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.proof-num span { font-size: 1.2rem; font-weight: 600; }
.proof-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 0.4rem; line-height: 1.5; }

/* ── PHILOSOPHY ── */
.section-light .section-label { color: var(--bronze); }
.section-light .gold-line { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }

.philosophy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.philosophy-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0;
}
.philosophy-text h2 em { font-style: italic; color: var(--gold-dark); }
.brand-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--navy-mid);
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  line-height: 1.6;
}
.brand-quote strong { color: var(--navy); font-style: normal; }
.philosophy-text p { font-size: 0.95rem; color: var(--gray-dark); line-height: 1.85; margin-bottom: 1rem; }

.philosophy-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pillar-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 1.5rem;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: all var(--transition);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); border-color: rgba(201,169,97,0.3); }
.pillar-icon { width: 40px; height: 40px; margin-bottom: 0.8rem; }
.pillar-card h4 { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.5rem; }
.pillar-card p { font-size: 0.82rem; color: var(--gray-mid); line-height: 1.65; }

/* ── ARCHITECTURE ── */
.arch-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; padding-bottom: 0.5rem; }
.arch-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.arch-header h2 em { font-style: italic; color: var(--gold); }
.arch-intro { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; }

.arch-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-top: 3rem;
}

.bento-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.bento-card:hover { 
  border-color: rgba(201,169,97,0.3); 
  background: rgba(255,255,255,0.05); 
  transform: translateY(-5px); 
}

.bento-large { 
  grid-column: 1; 
  grid-row: 1; 
}

.bento-wide { 
  grid-column: 1 / 4; 
  grid-row: 2; 
}

.bento-num { 
  font-family: var(--font-mono); 
  font-size: 0.75rem; 
  color: var(--gold); 
  opacity: 0.6; 
  margin-bottom: 2rem; 
}

.bento-card h3 { 
  font-family: var(--font-display); 
  font-size: 1.5rem; 
  margin-bottom: 1rem; 
  color: #fff; 
}

.bento-card p { 
  color: rgba(255,255,255,0.6); 
  line-height: 1.7; 
  font-size: 0.95rem; 
}

.bento-tag {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,97,0.1);
  padding: 4px 12px;
  border-radius: 2px;
}

.ai-copy { flex: 1; min-width: 200px; }

.ai-readout {
  flex: 0 0 auto;
  background: rgba(201, 169, 97, 0.03);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 4px;
  padding: 2rem;
  min-width: 250px;
  position: relative;
  box-shadow: inset 0 0 20px rgba(201, 169, 97, 0.05);
  overflow: hidden;
}

.ai-readout::after {
  content: "SYSTEM DIAGNOSTICS: ACTIVE";
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.5rem;
  font-family: var(--font-mono);
  color: var(--gold);
  padding: 4px 8px;
  background: rgba(201, 169, 97, 0.1);
  opacity: 0.7;
  letter-spacing: 1px;
}

.readout-row {
  margin-bottom: 1.25rem;
}

.readout-row:last-child { margin-bottom: 0; }

.readout-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  opacity: 0.8;
}

.readout-bar-bg {
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
  position: relative;
}

.readout-bar-fill {
  height: 100%;
  background: var(--gold);
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
  transition: width 1s ease-out;
}

.readout-val {
  color: #fff;
}

.status-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 10px #00ff88;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

/* ── COMPARE ── */
.compare-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.compare-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
}
.compare-header h2 em { font-style: italic; color: var(--gold); }

.compare-grid {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 3rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.compare-col {
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease;
}
.compare-col:hover {
  transform: translateY(-5px);
}
.compare-them { 
  background: rgba(255,255,255,0.02); 
  border: 1px solid rgba(255,255,255,0.05); 
}
.compare-us { 
  background: linear-gradient(145deg, var(--navy-light) 0%, var(--navy-dark) 100%); 
  border: 1px solid rgba(201,169,97,0.3); 
  box-shadow: 0 0 20px rgba(201,169,97,0.1) inset;
}
.compare-us::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.compare-header-col {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.25rem 1.5rem;
  background: rgba(0,0,0,0.3);
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.compare-us .compare-header-col { 
  background: rgba(201,169,97,0.08); 
  color: var(--gold); 
  border-bottom-color: rgba(201,169,97,0.2);
}
.compare-item { 
  display: flex; align-items: center; gap: 1rem; 
  padding: 1rem 1.5rem; font-size: 0.9rem; 
  border-bottom: 1px solid rgba(255,255,255,0.02); 
}
.compare-item:last-child {
  border-bottom: none;
}
.compare-us .compare-item { 
  border-bottom-color: rgba(255,255,255,0.05); 
  color: rgba(255,255,255,0.9); 
  font-weight: 500;
}
.compare-them .compare-item { color: rgba(255,255,255,0.4); }
.compare-item span { font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.compare-item.neg span { color: rgba(239, 68, 68, 0.7); }
.compare-item.pos span { color: var(--gold); text-shadow: 0 0 8px rgba(201,169,97,0.4); }
.compare-vs {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: rgba(255,255,255,0.1);
  flex-shrink: 0;
  padding: 0 0.5rem;
  text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.luxury-parallels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.parallel-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.parallel-card:hover {
  background: rgba(255,255,255,0.04);
  transform: translateY(-4px);
}
.parallel-us { 
  background: linear-gradient(180deg, rgba(201,169,97,0.05) 0%, transparent 100%); 
  border-color: rgba(201,169,97,0.3); 
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.parallel-us:hover {
  background: linear-gradient(180deg, rgba(201,169,97,0.1) 0%, rgba(0,0,0,0.4) 100%);
  border-color: rgba(201,169,97,0.5);
  box-shadow: 0 10px 40px rgba(201,169,97,0.15);
}
.parallel-brand { 
  font-family: var(--font-heading); 
  font-size: 0.9rem; 
  font-weight: 700; 
  letter-spacing: 0.1em; 
  color: rgba(255,255,255,0.7); 
  margin-bottom: 0.75rem; 
  text-transform: uppercase;
}
.parallel-us .parallel-brand { color: var(--gold); text-shadow: 0 0 10px rgba(201,169,97,0.3); }
.parallel-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.parallel-us .parallel-desc { color: rgba(255,255,255,0.8); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0;
}
.contact-copy h2 em { font-style: italic; color: var(--gold); }
.contact-copy p { color: rgba(255,255,255,0.65); line-height: 1.8; margin-top: 1.5rem; font-size: 0.95rem; }
.contact-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.badge-item {
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,97,0.08);
  border: 1px solid rgba(201,169,97,0.2);
  padding: 0.45rem 1rem;
  border-radius: 100px;
}

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,97,0.12);
  border-radius: 2px;
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 0.7rem 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
.footer {
  background: #070714;
  border-top: 1px solid rgba(201,169,97,0.1);
  padding: 4rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; }
.footer-logo-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo-icon { width: 40px; height: 40px; }
.footer-logo-text { display: flex; flex-direction: column; }
.footer-logo-text span:first-child { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 800; color: var(--gold); letter-spacing: 0.15em; }
.footer-logo-text span:last-child  { font-family: var(--font-mono); font-size: 0.5rem; color: rgba(255,255,255,0.4); letter-spacing: 0.2em; }
.footer-tagline { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); margin-bottom: 0.5rem; text-transform: uppercase; }
.footer-est { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; color: rgba(201,169,97,0.4); text-transform: uppercase; }
.footer-links-col h5 { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-links-col ul { list-style: none; }
.footer-links-col li { margin-bottom: 0.7rem; }
.footer-links-col a { font-size: 0.85rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.footer-links-col a:hover { color: var(--gold); }
.footer-links-col li:not(:has(a)) { font-size: 0.85rem; color: rgba(255,255,255,0.3); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.25); font-family: var(--font-mono); letter-spacing: 0.08em; }
.footer-soul { font-family: var(--font-display) !important; font-style: italic; color: rgba(201,169,97,0.35) !important; font-size: 0.85rem !important; letter-spacing: 0 !important; }

/* ── REVEAL ANIMATIONS ── */
.reveal, .reveal-right {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right { transform: translateX(32px); }
.reveal.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */

/* ── TABLET LANDSCAPE: 1024px ── */
@media (max-width: 1024px) {
  :root { --pad: clamp(1.25rem, 4vw, 3rem); }
  .legacy-grid { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .arch-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bento-large { grid-column: 1; grid-row: auto; }
  .bento-wide  { grid-column: 1 / 3; }
  .luxury-parallels { grid-template-columns: repeat(3, 1fr); }
  .philosophy-text h2 { font-size: clamp(2rem, 5vw, 3rem); }
  .brand-quote { font-size: 1.1rem; }
  .hero-stat { padding: 0 1.5rem; }
}

/* ── TABLET PORTRAIT: 768px ── */
@media (max-width: 768px) {
  :root { --pad: 1.25rem; }
  section { padding: clamp(3.5rem, 8vw, 6rem) 0; }

  /* Navbar */
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(12,12,34,0.98); backdrop-filter: blur(20px);
    justify-content: center; align-items: center; gap: 2.5rem; z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.1rem; letter-spacing: 0.12em; }
  .nav-toggle { display: flex; z-index: 101; }
  #nav-cta { display: none; }

  /* Hero */
  .hero-badge { font-size: 0.55rem; letter-spacing: 0.12em; padding: 0.45rem 0.9rem; white-space: normal; line-height: 1.5; }
  .hero-content { padding-top: 7rem; padding-bottom: 6rem; }
  .hero-stat-strip { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1rem; padding: 1.25rem; }
  .hero-stat { padding: 0.5rem 1rem; min-width: 110px; }
  .stat-divider { display: none; }
  .hero-actions { gap: 0.75rem; }

  /* Legacy */
  .legacy-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .legacy-stats { gap: 0.75rem; }

  /* Philosophy */
  .philosophy-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .philosophy-pillars { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .pillar-card { padding: 1.25rem; }

  /* Architecture Bento — single column */
  .arch-bento { grid-template-columns: 1fr; gap: 0.75rem; }
  .bento-large { grid-column: auto; grid-row: auto; }
  .bento-wide  { grid-column: auto; }
  .bento-card  { padding: 1.75rem; }
  .ai-layout   { grid-template-columns: 1fr; gap: 2rem; }
  .ai-readout  { width: 100%; min-width: unset; }

  /* Compare */
  .compare-grid { flex-direction: column; gap: 0.5rem; }
  .compare-vs { justify-content: center; padding: 0.5rem 0; }
  .luxury-parallels { grid-template-columns: 1fr; gap: 0.75rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form { padding: 2rem 1.5rem; }
  .contact-badges { gap: 0.5rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-bottom { flex-direction: column; justify-content: center; text-align: center; gap: 0.5rem; }
}

/* ── MOBILE: 480px ── */
@media (max-width: 480px) {
  :root { --pad: 1rem; }
  section { padding: 3rem 0; }

  /* Hero */
  .hero-badge { font-size: 0.5rem; padding: 0.4rem 0.8rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stat-strip { flex-direction: column; align-items: center; gap: 1rem; }
  .hero-stat { width: 100%; padding: 0.5rem; }

  /* Bento */
  .bento-card { padding: 1.4rem; }
  .bento-card h3 { font-size: 1rem; }

  /* Compare */
  .compare-item { font-size: 0.8rem; padding: 0.7rem 1rem; gap: 0.5rem; }
  .compare-header-col { padding: 0.8rem 1rem; font-size: 0.7rem; }

  /* Philosophy */
  .philosophy-pillars { grid-template-columns: 1fr; }

  /* Contact */
  .contact-form { padding: 1.5rem 1rem; }
  .badge-item { font-size: 0.6rem; padding: 0.4rem 0.75rem; }

  /* Footer */
  .footer { padding: 3rem 0 0; }
  .footer-grid { gap: 1.5rem; }

  /* Buttons */
  .btn-lg { padding: 0.9rem 1.75rem; font-size: 0.78rem; }
}

/* ── SMALL MOBILE: 360px ── */
@media (max-width: 360px) {
  .hero-title { font-size: 2.5rem; }
  .legacy-headline { font-size: 1.8rem; }
  .proof-num { font-size: 2rem; }
  .contact-form { padding: 1.25rem 0.9rem; }
  .nav-link { font-size: 1rem; }
}

/* ── FORM SUCCESS ── */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
  gap: 1rem;
}
.form-success .success-icon { font-size: 2.5rem; color: var(--green); }
.form-success h4 { font-family: var(--font-heading); color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.9rem; }
.form-success p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 5px; }

/* ── SELECTION ── */
::selection { background: rgba(201,169,97,0.25); color: var(--white); }

/* --- Language Switcher --- */
.lang-switcher {
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 169, 97, 0.3);
  color: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.lang-btn:hover {
  background: rgba(201, 169, 97, 0.1);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(201, 169, 97, 0.2);
}

.lang-icon {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .lang-switcher {
    margin-right: 1rem;
    order: -1;
  }
}

/* --- Industry Truths --- */
.truths {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.truths::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(201, 169, 97, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.truths-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 3rem;
  color: #fff;
}

.truths-header h2 em {
  color: var(--gold);
  font-style: italic;
}

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

.truth-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 77, 77, 0.2);
  padding: 3rem;
  border-radius: 4px;
  position: relative;
  transition: all 0.4s ease;
}

.truth-card:hover {
  background: rgba(255, 77, 77, 0.05);
  border-color: rgba(255, 77, 77, 0.4);
  transform: translateY(-5px);
}

.truth-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
}

.truth-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: 1px;
}

.truth-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* --- Smart Bundle --- */
.bundle {
  padding: 100px 0;
  background: #fff;
  color: var(--navy);
}

.bundle-header {
  max-width: 800px;
  margin-bottom: 4rem;
}

.bundle-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.bundle-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.bundle-intro {
  font-size: 1.2rem;
  color: rgba(2, 8, 23, 0.7);
  line-height: 1.6;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.bundle-card {
  padding: 2.5rem;
  background: #f8f9fa;
  border-radius: 4px;
  border-top: 4px solid var(--gold);
  transition: all 0.3s ease;
}

.bundle-card:hover {
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  transform: translateY(-10px);
}

.bundle-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
}

.bundle-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.bundle-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(2, 8, 23, 0.8);
}

.bundle-action {
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .bundle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .truths-grid, .bundle-grid {
    grid-template-columns: 1fr;
  }
  .truth-card, .bundle-card {
    padding: 2rem;
  }
}

/* ── NEW VISUAL ASSETS ── */
.philosophy-visual, .truths-visual, .bundle-hero {
  width: 100%;
  margin-bottom: 2.5rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.philosophy-visual img, .truths-visual img, .bundle-hero img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
 /* Left blank to remove the block */

.philosophy-visual:hover img, .truths-visual:hover img, .bundle-hero:hover img {
  transform: scale(1.03);
}

.ai-viz-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201,169,97,0.2);
  background: #000;
}

.ai-main-viz {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
}

.viz-overlay-data {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  border: 1px solid rgba(201,169,97,0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.data-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.data-pulse {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
  animation: pulse 2s infinite;
}

@media (max-width: 768px) {
  .philosophy-visual img, .truths-visual img, .bundle-hero img {
    height: 250px;
  }
}

/* ── DROPDOWN NAVIGATION ── */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(201, 169, 97, 0.2);
  list-style: none;
  padding: 0.75rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  background: rgba(201, 169, 97, 0.1);
  color: var(--gold);
  padding-left: 1.8rem;
}

/* ── FOUNDERS SECTION ── */
.founders-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.founders-visual {
  height: 500px;
  background: var(--navy);
  border: 1px solid rgba(201,169,97,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.photo-placeholder {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ── IMAGE FIXES ── */
.technician-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    padding-left: 1.5rem;
    box-shadow: none;
  }
  .founders-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .founders-visual {
    height: 300px;
  }
}
