/* ============================================================
   AUREON - Main Stylesheet
   ============================================================ */

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Colors */
  --charcoal: #0a0a14;
  --gold: #C9A96E;
  --deep-gold: #A07D3F;
  --ivory: #F5F1EB;
  --stone: #2A2A3A;
  --warm-grey: #E8E2D9;
  --white: #FFFFFF;
  --soft-grey: #B0ADA7;
  --card-dark: rgba(20, 20, 40, 0.6);
  --footer-dark: #050510;
  
  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.15);
  
  /* Accent Colors */
  --blue-glow: #4a9eff;
  --purple-glow: #8b5cf6;
  --teal-glow: #2dd4bf;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0a0a14 0%, #0f1129 50%, #0a0a14 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  --gradient-gold: linear-gradient(135deg, var(--gold), var(--deep-gold));
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--charcoal);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==================== TYPOGRAPHY ==================== */
h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--ivory);
}

h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.section-light h2 {
  color: var(--charcoal);
}

.accent-label {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold), var(--blue-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.section-light .accent-label {
  background: linear-gradient(90deg, var(--deep-gold), #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sub-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--soft-grey);
  max-width: 680px;
}

.section-light .sub-text {
  color: #6B6760;
}

.body-text {
  font-size: 17px;
  line-height: 1.8;
  color: #6B6760;
  max-width: 700px;
  margin: 24px auto 0;
}

/* ==================== GLASS UTILITIES ==================== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: 
    0 8px 32px rgba(0,0,0,0.3),
    inset 0 1px 0 var(--glass-highlight),
    inset 0 -1px 0 rgba(255,255,255,0.02);
}

.glass-light {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 8px 32px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8),
    inset 0 -1px 0 rgba(255,255,255,0.3);
}

/* ==================== SECTIONS ==================== */
section {
  position: relative;
  overflow: hidden;
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-light {
  background: linear-gradient(135deg, #f0ede8 0%, #e8e2d9 50%, #f5f1eb 100%);
  color: var(--charcoal);
  position: relative;
}

.section-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(201,169,110,0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(74,158,255,0.05), transparent 50%);
  pointer-events: none;
}

.section-deeper {
  background: linear-gradient(180deg, #050510 0%, #0a0a1a 50%, #050510 100%);
  color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

/* ==================== BUTTONS ==================== */
.btn-demo {
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  color: var(--charcoal);
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-demo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-demo:hover::before {
  left: 100%;
}

.btn-demo:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(201,169,110,0.35), 0 0 60px rgba(201,169,110,0.1);
}

.btn-demo.glow {
  animation: glowPulse 3s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(201,169,110,0.2);
}

.btn-outline {
  border: 1.5px solid rgba(201,169,110,0.4);
  color: var(--gold);
  background: rgba(201,169,110,0.05);
  padding: 12px 28px;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(201,169,110,0.15);
  border-color: var(--gold);
  box-shadow: 0 4px 30px rgba(201,169,110,0.15);
  transform: translateY(-2px);
}

/* ==================== ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 
    opacity 1s cubic-bezier(0.25,0.1,0.25,1),
    transform 1s cubic-bezier(0.25,0.1,0.25,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }
.reveal-d7 { transition-delay: 0.7s; }

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(201,169,110,0.15); }
  50% { box-shadow: 0 0 40px rgba(201,169,110,0.35), 0 0 80px rgba(201,169,110,0.1); }
}

@keyframes shimmer {
  0%, 80% { left: -100%; }
  100% { left: 200%; }
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, -40px) scale(1.1); }
  50% { transform: translate(-30px, 50px) scale(0.95); }
  75% { transform: translate(40px, 20px) scale(1.05); }
}

@keyframes liquidSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(100vw + 100%)); }
}

@keyframes glassRotate {
  100% { transform: rotate(360deg); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 20px) scale(0.95); }
}

/* ==================== BACKGROUND EFFECTS ==================== */
.bg-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: blobFloat 20s ease-in-out infinite;
}

.bg-blob:nth-child(1) {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.3), transparent 70%);
  top: -200px;
  left: -100px;
  animation-duration: 25s;
}

.bg-blob:nth-child(2) {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74,158,255,0.2), transparent 70%);
  top: 40%;
  right: -150px;
  animation-delay: -5s;
  animation-duration: 22s;
}

.bg-blob:nth-child(3) {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.2), transparent 70%);
  bottom: -100px;
  left: 30%;
  animation-delay: -10s;
  animation-duration: 28s;
}

.liquid-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  opacity: 0.08;
}

.liquid-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--blue-glow), transparent);
  animation: liquidSlide 8s linear infinite;
}

.liquid-line:nth-child(1) { top: 20%; width: 60%; left: -60%; animation-duration: 12s; }
.liquid-line:nth-child(2) { top: 45%; width: 40%; left: -40%; animation-duration: 9s; animation-delay: -3s; }
.liquid-line:nth-child(3) { top: 70%; width: 50%; left: -50%; animation-duration: 15s; animation-delay: -7s; }
.liquid-line:nth-child(4) { top: 85%; width: 35%; left: -35%; animation-duration: 11s; animation-delay: -2s; }

.gold-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.08), transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
  pointer-events: none;
}

/* ==================== CONSTELLATION CANVAS ==================== */
.constellation-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ==================== AI LINE ART ==================== */
.ai-line-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

.ai-line-art svg,
.ai-line-art-visible svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.ai-line-art-visible {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

/* Pulse Node Animation */
.pulse-node {
  animation: pulseNode 3s ease-in-out infinite;
}

@keyframes pulseNode {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}

/* Flow Line Animation */
.flow-line {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: flowLine 4s ease-in-out infinite;
}

@keyframes flowLine {
  0% { stroke-dashoffset: 100; opacity: 0.3; }
  50% { stroke-dashoffset: 0; opacity: 0.8; }
  100% { stroke-dashoffset: -100; opacity: 0.3; }
}

/* Hexagon Rotation */
.hex-rotate {
  transform-origin: 700px 180px;
  animation: hexRotate 20s linear infinite;
}

@keyframes hexRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Pulse Ring */
.pulse-ring {
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2); opacity: 0; }
}

/* Wave Path Animation */
.wave-path {
  animation: wavePath 6s ease-in-out infinite;
}

@keyframes wavePath {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-10px); opacity: 0.8; }
}

/* ==================== PRELOADER ==================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#preloader .logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--gold);
  opacity: 0;
  transform: scale(1.1);
  animation: preloaderIn 1.5s ease forwards;
}

#preloader .loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(201,169,110,0.15);
  border-radius: 2px;
  margin-top: 24px;
  overflow: hidden;
}

#preloader .loader-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--blue-glow));
  border-radius: 2px;
  animation: loaderGrow 2s ease forwards;
}

@keyframes loaderGrow {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes preloaderIn {
  0% { opacity: 0; transform: scale(1.1); }
  50%, 100% { opacity: 1; transform: scale(1); }
}

/* ==================== NAVIGATION - STICKY ==================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

nav.sticky-nav {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

nav.scrolled {
  padding: 12px 5%;
  background: rgba(10, 10, 20, 0.95);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--gold);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.nav-logo::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.4), transparent);
  animation: shimmer 6s infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--soft-grey);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--blue-glow));
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,10,20,0.95);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--ivory);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ==================== BACK TO TOP BUTTON ==================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5), 0 0 40px rgba(201, 169, 110, 0.2);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: var(--charcoal);
  transition: transform 0.3s ease;
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

/* ==================== HERO SECTION ==================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 140px 5% 80px;
  background: var(--gradient-primary);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero .sub-text {
  margin: 24px auto 0;
}

.hero-glass-wrapper {
  display: inline-block;
  padding: 60px 80px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.hero-glass-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(201,169,110,0.03), transparent, rgba(74,158,255,0.02), transparent);
  animation: glassRotate 20s linear infinite;
}

.hero-ctas {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--blue-glow), transparent);
  margin: 60px auto 0;
  transition: width 2s ease;
  border-radius: 1px;
}

.hero-line.drawn {
  width: 160px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 11px;
  color: var(--soft-grey);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-indicator .arrow {
  width: 1px;
  height: 24px;
  background: var(--gold);
  position: relative;
}

.scroll-indicator .arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4px;
  border-left: 4.5px solid transparent;
  border-right: 4.5px solid transparent;
  border-top: 6px solid var(--gold);
}

/* ==================== PROBLEM SECTION ==================== */
#problem {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.stat-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat-card {
  border-radius: 24px;
  padding: 40px 32px;
  min-width: 220px;
  flex: 1;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 
    0 8px 40px rgba(0,0,0,0.06),
    inset 0 2px 0 rgba(255,255,255,0.9),
    inset 0 -2px 4px rgba(0,0,0,0.02);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue-glow), var(--purple-glow));
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 40px rgba(201,169,110,0.05);
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 15px;
  color: #6B6760;
  line-height: 1.5;
}

/* ==================== SOLUTION SECTION ==================== */
#solution {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

#solution .sub-text {
  margin: 20px auto 60px;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.pillar-card {
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue-glow));
  transition: width 0.8s ease;
}

.pillar-card.visible::before {
  width: 100%;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 40px rgba(201,169,110,0.05);
  border-color: rgba(201,169,110,0.15);
}

.pillar-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(201,169,110,0.1);
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: 0 0 20px rgba(201,169,110,0.1);
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
  background: rgba(201,169,110,0.15);
  box-shadow: 0 0 30px rgba(201,169,110,0.2);
  transform: scale(1.1);
}

.pillar-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--soft-grey);
}

/* ==================== HOW IT WORKS SECTION ==================== */
#how-it-works {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.steps-wrapper {
  margin-top: 80px;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.step-connector {
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 2px;
  z-index: 0;
}

.step-connector-line {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--blue-glow), var(--purple-glow));
  border-radius: 1px;
  transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 20px rgba(201,169,110,0.3);
}

.step-connector-line.drawn {
  width: 100%;
}

.step {
  flex: 1;
  max-width: 340px;
  min-width: 280px;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 28px 40px;
  border-radius: 28px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(30px);
  opacity: 0;
}

.step.visible {
  transform: translateY(0);
  opacity: 1;
}

.step:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 64px rgba(0,0,0,0.15), 0 0 40px rgba(201,169,110,0.08);
}

.step-number {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(201,169,110,0.3);
  transition: all 0.3s ease;
}

.step:hover .step-number {
  transform: translateX(-50%) scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 30px rgba(201,169,110,0.4);
}

.step-icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step:hover .step-icon {
  transform: scale(1.15) translateY(-4px);
}

.step h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 12px 0 10px;
}

.step p {
  font-size: 14px;
  line-height: 1.7;
  color: #6B6760;
}

/* ==================== INDUSTRIES SECTION ==================== */
#industries {
  padding: 120px 0;
  position: relative;
}

#industries .container {
  max-width: 100%;
  padding: 0;
}

#industries .header-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  text-align: center;
}

.carousel-wrapper {
  margin-top: 60px;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 24px;
  padding: 0 5%;
  cursor: grab;
  user-select: none;
  transition: transform 0.1s ease;
}

.carousel-track:active {
  cursor: grabbing;
}

.industry-card {
  min-width: 300px;
  height: 420px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255,255,255,0.06);
}

.industry-card:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(201,169,110,0.2);
}

.industry-card.featured {
  border: 1.5px solid rgba(201,169,110,0.3);
  min-width: 340px;
}

.industry-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f1129, #1a1a3e);
  transition: transform 0.6s ease;
}

.industry-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.industry-card:hover .industry-bg {
  transform: scale(1.05);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
}

.industry-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}

.industry-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.industry-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--soft-grey);
}

.carousel-progress {
  max-width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.06);
  margin: 32px auto 0;
  border-radius: 2px;
  overflow: hidden;
}

.carousel-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--blue-glow));
  width: 30%;
  border-radius: 2px;
  transition: width 0.1s ease;
}

/* ==================== HEALTHCARE SECTION ==================== */
#healthcare {
  padding: 120px 0;
  position: relative;
}

.healthcare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.healthcare-text .body-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--soft-grey);
  margin: 24px 0 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--soft-grey);
  transition: all 0.3s ease;
}

.feature-item:hover {
  color: var(--white);
  transform: translateX(4px);
}

.feature-item .diamond {
  color: var(--gold);
  font-size: 8px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(201,169,110,0.4));
}

.healthcare-cta {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  transition: all 0.3s ease;
}

.healthcare-cta:hover {
  gap: 14px;
  text-shadow: 0 0 20px rgba(201,169,110,0.3);
}

/* Mockup Card */
.mockup-card {
  border-radius: 28px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  background: rgba(20,20,40,0.5);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.mockup-header {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.mockup-dot:first-child {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,169,110,0.4);
}

.mockup-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s ease;
}

.mockup-row:hover {
  background: rgba(255,255,255,0.06);
  transform: translateX(4px);
}

.mockup-avatar {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(201,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.mockup-info {
  flex: 1;
}

.mockup-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.mockup-detail {
  font-size: 12px;
  color: var(--soft-grey);
  margin-top: 2px;
}

.mockup-status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.status-confirmed {
  background: rgba(201,169,110,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.2);
}

.status-pending {
  background: rgba(255,255,255,0.04);
  color: var(--soft-grey);
  border: 1px solid rgba(255,255,255,0.06);
}

.mockup-stat-row {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.mockup-stat {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s ease;
}

.mockup-stat:hover {
  background: rgba(255,255,255,0.06);
}

.mockup-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mockup-stat-label {
  font-size: 11px;
  color: var(--soft-grey);
  margin-top: 4px;
}

/* ==================== RESULTS SECTION ==================== */
#results {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.results-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
}

.result-block {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
}

.result-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5vw, 56px);
  color: var(--charcoal);
}

.result-line {
  width: 0;
  height: 3px;
  margin: 12px auto;
  background: linear-gradient(90deg, var(--gold), var(--blue-glow));
  transition: width 1s ease 0.3s;
  border-radius: 2px;
}

.result-block.visible .result-line {
  width: 60px;
}

.result-desc {
  font-size: 15px;
  color: #6B6760;
  line-height: 1.5;
}

.testimonial-area {
  margin-top: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--charcoal);
  line-height: 1.5;
  font-style: italic;
  position: relative;
  padding-top: 40px;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Serif Display', serif;
  font-size: 80px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  line-height: 1;
}

/* ==================== PRICING SECTION ==================== */
#pricing {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

#pricing .sub-text {
  margin: 16px auto 60px;
}

.pricing-tiers {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.tier-card {
  border-radius: 28px;
  padding: 48px 40px;
  flex: 1;
  min-width: 300px;
  max-width: 480px;
  text-align: left;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(201,169,110,0.05);
  border-color: rgba(201,169,110,0.15);
}

.tier-card.featured {
  border: 2px solid rgba(201,169,110,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), 0 0 40px rgba(201,169,110,0.08);
}

.tier-card.featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue-glow), var(--gold));
  border-radius: 28px 28px 0 0;
}

.tier-badge {
  display: inline-block;
  background: rgba(201,169,110,0.1);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid rgba(201,169,110,0.2);
}

.tier-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.tier-card .tier-subtitle {
  font-size: 14px;
  color: var(--soft-grey);
  margin-bottom: 0;
}

.tier-price {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 16px 0 4px;
}

.tier-label {
  font-size: 14px;
  color: var(--soft-grey);
  margin-bottom: 24px;
}

.tier-includes {
  list-style: none;
  padding: 0;
}

.tier-includes li {
  font-size: 14px;
  color: var(--soft-grey);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.tier-includes li:hover {
  color: var(--white);
}

.tier-includes li::before {
  content: '◆';
  color: var(--gold);
  font-size: 6px;
  filter: drop-shadow(0 0 3px rgba(201,169,110,0.4));
}

.tier-addon {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: var(--soft-grey);
}

.tier-addon strong {
  color: var(--gold);
}

/* Monthly Section */
.monthly-section {
  margin-top: 0;
}

.monthly-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.monthly-card {
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.monthly-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue-glow));
  transition: width 0.4s ease;
  border-radius: 2px;
}

.monthly-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,169,110,0.15);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.monthly-card:hover::after {
  width: 60%;
}

.monthly-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.monthly-volume {
  font-size: 13px;
  color: var(--soft-grey);
  margin-bottom: 16px;
}

.monthly-price {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.monthly-price span {
  font-size: 14px;
  color: var(--soft-grey);
  font-family: 'Manrope', sans-serif;
  -webkit-text-fill-color: var(--soft-grey);
}

.custom-note {
  margin-top: 32px;
  font-size: 15px;
  color: var(--soft-grey);
  font-style: italic;
}

/* ============================================================
   ABOUT SECTION - BENTO GRID LAYOUT
   ============================================================ */

#about {
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* ==================== FOUNDER SECTION ==================== */
.about-founder-section {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, #050510 0%, #0a0a1a 50%, #050510 100%);
}

.founder-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

/* ==================== CO-FOUNDER SECTION ==================== */
.about-cofounder-section {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, #0a0a1a 0%, #050510 50%, #0a0a1a 100%);
}

.cofounder-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

/* ==================== SHARED BENTO CARD STYLES ==================== */
.bento-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue-glow));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(201, 169, 110, 0.05);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 8px;
}

.bento-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--soft-grey);
}

.bento-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Icon pop-out effect on hover */
.bento-card:hover .bento-icon {
  transform: scale(1.2) translateY(-4px) rotate(-5deg);
}

/* ==================== FOUNDER PHOTO (No Frame) ==================== */
.founder-photo-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 16px;
  z-index: 2;
}

.founder-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid rgba(201, 169, 110, 0.4);
  box-shadow: 
    0 0 20px rgba(201, 169, 110, 0.3),
    0 0 40px rgba(201, 169, 110, 0.1);
  transition: all 0.5s ease;
}

.bento-profile:hover .founder-photo {
  border-color: rgba(201, 169, 110, 0.7);
  box-shadow: 
    0 0 30px rgba(201, 169, 110, 0.5),
    0 0 60px rgba(201, 169, 110, 0.2);
  transform: scale(1.05);
}

/* Hide old frame styles */
.profile-frame-mini,
.mini-frame,
.mini-photo {
  display: none;
}

/* ==================== HOBBY CARDS (with text) ==================== */
.bento-hobby {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 22px 20px;
}

.bento-hobby .bento-emoji {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Emoji pop-out effect on hover */
.bento-hobby:hover .bento-emoji {
  transform: scale(1.3) translateY(-4px) rotate(-8deg);
}

.bento-hobby h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 6px;
}

.bento-hobby p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--soft-grey);
}

/* ==================== PROFILE CARDS ==================== */
.bento-profile {
  grid-row: 1 / -1;
  grid-column: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.bento-profile::before {
  height: 3px;
  opacity: 1;
}

/* Founder Accent */
.founder-accent {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(74, 158, 255, 0.05));
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.founder-accent::before {
  background: linear-gradient(90deg, var(--gold), var(--blue-glow), var(--gold));
}

/* Co-founder Accent */
.cofounder-accent {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(74, 158, 255, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.cofounder-accent::before {
  background: linear-gradient(90deg, var(--purple-glow), var(--blue-glow), var(--purple-glow));
}

/* Glow Rings */
.founder-glow-ring {
  position: absolute;
  width: 160px;
  height: 160px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(201, 169, 110, 0.2), rgba(74, 158, 255, 0.15), rgba(201, 169, 110, 0.2));
  filter: blur(30px);
  animation: glowRotate 15s linear infinite;
  z-index: 0;
}

.cofounder-glow-ring {
  position: absolute;
  width: 140px;
  height: 140px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(139, 92, 246, 0.2), rgba(45, 212, 191, 0.15), rgba(139, 92, 246, 0.2));
  filter: blur(30px);
  animation: glowRotate 15s linear infinite reverse;
  z-index: 0;
}

@keyframes glowRotate {
  100% { transform: translateX(-50%) rotate(360deg); }
}

/* Co-founder Avatar */
.cofounder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(74, 158, 255, 0.3));
  border: 3px solid rgba(139, 92, 246, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--ivory);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
  margin-bottom: 16px;
  animation: floatAvatar 5s ease-in-out infinite;
}

@keyframes floatAvatar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Badges */
.founder-badge,
.cf-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 14px;
  margin-bottom: 8px;
}

.founder-badge {
  color: var(--gold);
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.3);
}

.cf-badge {
  color: var(--purple-glow);
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Names & Roles */
.founder-name,
.cofounder-name {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--ivory);
  margin-bottom: 4px;
}

.founder-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold), var(--blue-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.cofounder-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--purple-glow), var(--blue-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

/* Stats Row */
.founder-stats,
.cofounder-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
  width: 100%;
}

.founder-stat,
.cf-stat {
  text-align: center;
}

.stat-val {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  background: linear-gradient(135deg, var(--gold), var(--blue-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cf-stat .stat-val {
  background: linear-gradient(135deg, var(--purple-glow), var(--blue-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-lbl {
  font-size: 8px;
  color: var(--soft-grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Tags */
.founder-tags,
.cofounder-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.f-tag {
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 500;
  border: 1px solid rgba(201, 169, 110, 0.25);
  color: rgba(201, 169, 110, 0.9);
  background: rgba(201, 169, 110, 0.1);
  transition: all 0.3s ease;
}

.f-tag:hover {
  border-color: rgba(201, 169, 110, 0.5);
  background: rgba(201, 169, 110, 0.2);
}

.cf-tag {
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 500;
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: rgba(139, 92, 246, 0.9);
  background: rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
}

.cf-tag:hover {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.2);
}

/* ==================== BENTO GRID LAYOUTS ==================== */

/* Founder grid: profile left, 2 columns right */
.founder-bento {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 16px;
}

.founder-bento .bento-profile {
  grid-row: 1 / -1;
  grid-column: 1;
}

.founder-bento .bento-about {
  grid-column: 2;
  grid-row: 1;
}

.founder-bento .bento-hobby:nth-of-type(1) {
  grid-column: 3;
  grid-row: 1;
}

.founder-bento .bento-thinking {
  grid-column: 2;
  grid-row: 2;
}

.founder-bento .bento-hobby:nth-of-type(2) {
  grid-column: 3;
  grid-row: 2;
}

.founder-bento .bugatti-card {
  grid-column: 2;
  grid-row: 3;
}

.founder-bento .bento-learner {
  grid-column: 3;
  grid-row: 3;
}

/* Co-founder grid */
.cofounder-bento {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 16px;
}

.cofounder-bento .bento-profile {
  grid-row: 1 / -1;
  grid-column: 1;
}

.cofounder-bento .bento-why {
  grid-column: 2;
  grid-row: 1;
}

.cofounder-bento .bento-hobby:nth-of-type(1) {
  grid-column: 3;
  grid-row: 1;
}

.cofounder-bento .bento-vision {
  grid-column: 2;
  grid-row: 2;
}

.cofounder-bento .bento-hobby:nth-of-type(2) {
  grid-column: 3;
  grid-row: 2;
}

.cofounder-bento .bento-values {
  grid-column: 2 / 4;
  grid-row: 3;
}

/* Bugatti Card Special */
.bugatti-card {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(0, 0, 0, 0.2));
  border-color: rgba(201, 169, 110, 0.15);
}

/* ==================== VALUES PILLS ==================== */
.values-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.pill-yes {
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 500;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.25);
  color: var(--teal-glow);
  transition: all 0.3s ease;
}

.pill-yes:hover {
  background: rgba(45, 212, 191, 0.2);
  transform: scale(1.05);
}

.pill-no {
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 500;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #f87171;
  transition: all 0.3s ease;
}

.pill-no:hover {
  background: rgba(239, 68, 68, 0.2);
  transform: scale(1.05);
}

/* ==================== STORY SECTION ==================== */
.about-story-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(135deg, #f0ede8 0%, #e8e2d9 50%, #f5f1eb 100%);
}

.about-story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(201,169,110,0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(74,158,255,0.05), transparent 50%);
  pointer-events: none;
}

.about-story-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

.story-section-label {
  text-align: center;
  margin-bottom: 40px;
}

/* Story Timeline */
.story-timeline-wrapper {
  position: relative;
  display: flex;
  gap: 0;
  margin-top: 50px;
}

.airplane-track {
  position: absolute;
  top: 0;
  left: 30px;
  width: 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.track-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: rgba(160, 125, 63, 0.12);
  border-radius: 3px;
  overflow: hidden;
}

.track-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--gold), var(--deep-gold));
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.5);
}

.airplane-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  z-index: 15;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.5);
}

.airplane-icon svg {
  width: 20px;
  height: 20px;
  transform: rotate(180deg);
}

.airplane-icon::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(201, 169, 110, 0.4);
  animation: airplanePulse 2s ease-in-out infinite;
}

@keyframes airplanePulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 0; }
}

.milestone-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(1);
  width: 14px;
  height: 14px;
  background: #fff;
  border: 3px solid rgba(160, 125, 63, 0.25);
  border-radius: 50%;
  z-index: 5;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0.7;
}

.milestone-dot.passed {
  background: var(--gold);
  border-color: var(--deep-gold);
  opacity: 1;
}

.milestone-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateX(-50%) scale(1.5);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.7);
  opacity: 1;
}

.milestone-end {
  width: 30px;
  height: 30px;
  background: #fff;
  border: 3px solid rgba(160, 125, 63, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

.milestone-end svg {
  width: 16px;
  height: 16px;
  color: rgba(160, 125, 63, 0.35);
  transition: all 0.4s ease;
}

.milestone-end.passed,
.milestone-end.active {
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201, 169, 110, 0.6);
  opacity: 1;
}

.milestone-end.passed svg,
.milestone-end.active svg {
  color: var(--charcoal);
}

/* Story Chapters */
.story-chapters {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-left: 90px;
}

.story-chapter {
  position: relative;
  padding: 30px 0;
  opacity: 0.25;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  filter: blur(1px);
}

.story-chapter.active {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.story-chapter:first-child {
  padding-top: 0;
}

.story-chapter-marker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.story-chapter-number {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(160, 125, 63, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(160, 125, 63, 0.5);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
}

.story-chapter.active .story-chapter-number {
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  border-color: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
  transform: scale(1.1);
}

.story-chapter-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: rgba(10, 10, 20, 0.4);
  transition: color 0.5s ease;
}

.story-chapter.active .story-chapter-title {
  color: var(--charcoal);
}

.story-text {
  font-size: 14px;
  line-height: 1.8;
  color: #6B6760;
}

.story-text p {
  margin-bottom: 16px;
}

.story-text .highlight {
  color: var(--charcoal);
  font-weight: 500;
}

.story-text .gold-highlight {
  color: var(--deep-gold);
  font-weight: 600;
}

.story-callout {
  margin: 20px 0;
  padding: 20px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-left: 4px solid var(--gold);
  backdrop-filter: blur(10px);
}

.story-callout-text {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.5;
}

.journey-complete {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 30px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.08));
  border-radius: 16px;
  border: 2px solid rgba(201, 169, 110, 0.25);
  margin-top: 40px;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.journey-complete.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.journey-complete-icon {
  font-size: 26px;
}

.journey-complete.visible .journey-complete-icon {
  animation: celebrateIcon 0.8s ease-out;
}

@keyframes celebrateIcon {
  0% { transform: scale(0) rotate(-180deg); }
  50% { transform: scale(1.3) rotate(10deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.journey-complete-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-gold);
  letter-spacing: 0.05em;
}

/* ==================== PHILOSOPHY SECTION ==================== */
.about-philosophy-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, #050510 0%, #0a0a1a 50%, #050510 100%);
}

.philosophy-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.philosophy-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.4s ease;
}

.philosophy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.phil-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.philosophy-card:hover .phil-icon {
  transform: scale(1.25) translateY(-4px) rotate(-5deg);
}

.philosophy-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 10px;
}

.philosophy-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--soft-grey);
}

.philosophy-quote {
  text-align: center;
  padding: 30px;
  background: rgba(201, 169, 110, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 20px;
}

.philosophy-quote p {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--ivory);
  font-style: italic;
  margin-bottom: 12px;
}

.philosophy-quote span {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==================== CTA SECTION ==================== */
.about-cta-area {
  text-align: center;
  padding: 100px 5%;
  background: linear-gradient(135deg, #f0ede8 0%, #e8e2d9 50%, #f5f1eb 100%);
  position: relative;
  overflow: hidden;
}

.about-cta-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,169,110,0.08), transparent 70%);
  pointer-events: none;
}

.cta-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.cta-icon-ring {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(160,125,63,0.2);
  animation: iconRingPulse 3s ease-in-out infinite;
}

@keyframes iconRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0; }
}

.cta-icon {
  font-size: 48px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(160,125,63,0.15);
  transition: transform 0.3s ease;
}

.cta-icon-wrapper:hover .cta-icon {
  transform: scale(1.1) rotate(-5deg);
}

.cta-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--charcoal);
  margin-bottom: 16px;
}

.cta-subtext {
  font-size: 16px;
  color: #6B6760;
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #6B6760;
  padding: 8px 16px;
  background: rgba(255,255,255,0.6);
  border-radius: 24px;
  border: 1px solid rgba(160,125,63,0.1);
  transition: all 0.3s ease;
}

.cta-feature:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(160,125,63,0.3);
  transform: translateY(-2px);
}

.cta-feature-icon {
  font-size: 16px;
}

.cta-button {
  padding: 14px 36px;
  font-size: 15px;
}

.cta-note {
  font-size: 13px;
  color: #8B8680;
  margin-top: 16px;
}

/* ==================== FOOTER ==================== */
footer {
  background: linear-gradient(180deg, var(--footer-dark), #020208);
  padding: 80px 5% 40px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.2), rgba(74,158,255,0.15), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--soft-grey);
  line-height: 1.6;
}

.footer-copy {
  font-size: 12px;
  color: #444;
  margin-top: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--soft-grey);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact a {
  display: block;
  color: var(--soft-grey);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-grey);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  border-color: rgba(201,169,110,0.3);
  color: var(--gold);
  background: rgba(201,169,110,0.05);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-bottom a {
  color: #444;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ==================== STICKY MOBILE CTA ==================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,10,20,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 12px 20px;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  text-align: center;
}

.sticky-cta.show {
  transform: translateY(0);
}

.sticky-cta .btn-demo {
  width: 100%;
  padding: 14px;
  font-size: 15px;
}

/* ==================== MODALS ==================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 15, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  border-radius: 32px;
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  background: linear-gradient(135deg, rgba(30, 30, 60, 0.6), rgba(20, 20, 45, 0.8));
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 
    0 32px 80px rgba(0,0,0,0.5),
    0 0 80px rgba(201,169,110,0.05),
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -1px 0 rgba(255,255,255,0.02);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.modal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue-glow), var(--purple-glow), var(--gold));
  background-size: 200% 100%;
  animation: gradientFlow 4s linear infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.modal-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: conic-gradient(from 0deg, transparent, rgba(201,169,110,0.03), transparent, rgba(74,158,255,0.02), transparent);
  animation: glassRotate 30s linear infinite;
  pointer-events: none;
}

.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--soft-grey);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-close:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,169,110,0.2);
  transform: rotate(90deg);
}

.modal-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--ivory);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.modal-card .sub {
  font-size: 15px;
  color: var(--soft-grey);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 18px;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(176, 173, 167, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,169,110,0.5);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.08), 0 0 30px rgba(201,169,110,0.08);
  background: rgba(255,255,255,0.06);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A96E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: #1a1a2e;
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.form-success {
  text-align: center;
  padding: 48px 20px;
  display: none;
  position: relative;
  z-index: 1;
}

.form-success .check {
  font-size: 36px;
  margin-bottom: 20px;
  display: inline-flex;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(201,169,110,0.05));
  border: 2px solid rgba(201,169,110,0.3);
  align-items: center;
  justify-content: center;
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.form-success h3 {
  color: var(--gold) !important;
  margin-bottom: 12px !important;
}

.form-success p {
  color: var(--soft-grey);
  font-size: 15px;
}

.modal-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  pointer-events: none;
}

.modal-glow.gold {
  background: rgba(201,169,110,0.4);
  top: -50px;
  right: -50px;
}

.modal-glow.blue {
  background: rgba(74,158,255,0.3);
  bottom: -50px;
  left: -50px;
}

/* ==================== CUSTOM SCROLLBAR ==================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
  background: rgba(201,169,110,0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(201,169,110,0.5);
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1024px) {
  .pillars {
    grid-template-columns: 1fr 1fr;
  }
  
  .healthcare-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .monthly-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .steps-wrapper {
    gap: 28px;
  }
  
  .step-connector {
    left: 10%;
    right: 10%;
  }
  
  .hero-glass-wrapper {
    padding: 40px 40px;
  }
  
  /* Bento Grids - Tablet */
  .founder-bento,
  .cofounder-bento {
    grid-template-columns: 260px 1fr 1fr;
  }
  
  .founder-bento .bento-profile,
  .cofounder-bento .bento-profile {
    grid-row: 1 / 4;
    grid-column: 1;
  }
  
  .founder-bento .bento-about,
  .founder-bento .bento-hobby,
  .founder-bento .bento-thinking,
  .founder-bento .bugatti-card,
  .founder-bento .bento-learner,
  .cofounder-bento .bento-why,
  .cofounder-bento .bento-hobby,
  .cofounder-bento .bento-vision {
    grid-column: auto;
    grid-row: auto;
  }
  
  .cofounder-bento .bento-values {
    grid-column: 2 / 4;
  }
  
  /* Philosophy Grid - Tablet */
  .philosophy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .philosophy-card:last-child {
    grid-column: span 2;
  }
  
  /* Story Timeline */
  .airplane-track {
    left: 20px;
  }
  
  .story-chapters {
    padding-left: 70px;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .pillars {
    grid-template-columns: 1fr;
  }
  
  .hero-glass-wrapper {
    padding: 32px 24px;
    border-radius: 24px;
  }
  
  .steps-wrapper {
    flex-direction: column;
    gap: 48px;
    align-items: center;
    margin-top: 60px;
  }
  
  .step-connector {
    display: none;
  }
  
  .step {
    max-width: 100%;
    width: 300px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .monthly-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .pricing-tiers {
    flex-direction: column;
    align-items: center;
  }
  
  .tier-card {
    min-width: unset;
    width: 100%;
    max-width: 480px;
  }
  
  .stat-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-card {
    max-width: 100%;
    min-width: unset;
    width: 100%;
  }
  
  .sticky-cta {
    display: block;
  }
  
  .hero-ctas .btn-demo,
  .hero-ctas .btn-outline {
    width: 100%;
    text-align: center;
  }
  
  .results-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .result-block {
    max-width: 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .modal-card {
    padding: 32px 24px;
    border-radius: 24px;
  }
  
  .industry-card {
    min-width: 260px;
    height: 360px;
  }
  
  .industry-card.featured {
    min-width: 280px;
  }
  
  /* Bento Grids - Mobile */
  .founder-bento,
  .cofounder-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  
  .founder-bento .bento-profile,
  .cofounder-bento .bento-profile {
    grid-column: 1 / -1;
    grid-row: auto;
    padding: 28px 20px;
  }
  
  .founder-bento .bento-about,
  .founder-bento .bento-thinking,
  .founder-bento .bento-learner,
  .cofounder-bento .bento-why,
  .cofounder-bento .bento-vision {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  
  .founder-bento .bento-hobby,
  .cofounder-bento .bento-hobby {
    grid-column: auto;
    grid-row: auto;
  }
  
  .founder-bento .bugatti-card {
    grid-column: auto;
    grid-row: auto;
  }
  
  .cofounder-bento .bento-values {
    grid-column: 1 / -1;
  }
  
  .founder-photo-wrapper {
    width: 90px;
    height: 90px;
  }
  
  /* Philosophy Grid - Mobile */
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .philosophy-card:last-child {
    grid-column: auto;
  }
  
  .about-founder-section,
  .about-cofounder-section,
  .about-philosophy-section {
    padding: 80px 0;
  }
  
  .about-story-section {
    padding: 80px 0;
  }
  
  .back-to-top {
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .cta-features {
    gap: 16px;
  }
  
  .cta-feature {
    padding: 6px 12px;
    font-size: 13px;
  }
  
  .cta-icon {
    width: 64px;
    height: 64px;
    font-size: 36px;
  }
  
  .cta-icon-ring {
    width: 64px;
    height: 64px;
  }
  
  /* Story Timeline Mobile */
  .story-timeline-wrapper {
    flex-direction: column;
    gap: 0;
  }
  
  .airplane-track {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    flex-direction: row;
    margin-bottom: 40px;
  }
  
  .track-line {
    top: 50%;
    left: 5%;
    right: 5%;
    transform: translateY(-50%);
    width: 90%;
    height: 3px;
  }
  
  .track-line-fill {
    width: 0%;
    height: 100%;
    transition: width 0.1s ease-out;
  }
  
  .airplane-icon {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
  }
  
  .airplane-icon svg {
    transform: rotate(90deg);
  }
  
  .airplane-icon::after {
    bottom: auto;
    top: 50%;
    right: 100%;
    left: auto;
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.5));
  }
  
  .milestone-dot {
    top: 50% !important;
    transform: translateY(-50%);
  }
  
  .milestone-dot[data-chapter="1"] { left: 5% !important; }
  .milestone-dot[data-chapter="2"] { left: 30% !important; }
  .milestone-dot[data-chapter="3"] { left: 55% !important; }
  .milestone-dot[data-chapter="4"] { left: 80% !important; }
  
  .milestone-dot.active {
    transform: translateY(-50%) scale(1.4);
  }
  
  .milestone-end {
    width: 28px;
    height: 28px;
    left: 95% !important;
  }
  
  .story-chapters {
    padding-left: 0;
    margin-left: 0;
    gap: 40px;
  }
  
  .story-chapter {
    padding: 20px 0;
    transform: translateY(20px);
  }
  
  .story-chapter.active {
    transform: translateY(0);
  }
  
  .story-chapter::before {
    display: none;
  }
  
  .story-chapter-title {
    font-size: 20px;
  }
  
  .story-callout-text {
    font-size: 16px;
  }
  
  .story-chapter-number {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
  
  .journey-complete {
    padding: 20px 24px;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  /* Bento Grids - Extra Small */
  .founder-bento,
  .cofounder-bento {
    grid-template-columns: 1fr;
  }
  
  .founder-bento .bento-profile,
  .founder-bento .bento-about,
  .founder-bento .bento-hobby,
  .founder-bento .bento-thinking,
  .founder-bento .bugatti-card,
  .founder-bento .bento-learner,
  .cofounder-bento .bento-profile,
  .cofounder-bento .bento-why,
  .cofounder-bento .bento-hobby,
  .cofounder-bento .bento-vision,
  .cofounder-bento .bento-values {
    grid-column: 1;
    grid-row: auto;
  }
  
  .founder-photo-wrapper {
    width: 80px;
    height: 80px;
  }
  
  .cofounder-avatar {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
  
  .bento-card {
    padding: 20px;
  }
  
  .founder-stats,
  .cofounder-stats {
    gap: 10px;
  }
  
  .stat-val {
    font-size: 16px;
  }
  
  .stat-lbl {
    font-size: 7px;
  }
  
  .founder-name,
  .cofounder-name {
    font-size: 22px;
  }
  
  .values-pills {
    gap: 6px;
  }
  
  .pill-yes,
  .pill-no {
    padding: 4px 10px;
    font-size: 10px;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .cta-feature {
    width: 100%;
    justify-content: center;
  }
  
  .philosophy-card {
    padding: 24px 20px;
  }
  
  .phil-icon {
    font-size: 30px;
    margin-bottom: 12px;
  }
  
  .philosophy-quote {
    padding: 24px 20px;
  }
  
  .philosophy-quote p {
    font-size: 16px;
  }
  
  .story-chapter-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
    border-radius: 10px;
  }
  
  .story-chapter-title {
    font-size: 18px;
  }
  
  .story-text {
    font-size: 13px;
  }
  
  .story-callout {
    padding: 16px 18px;
  }
  
  .story-callout-text {
    font-size: 15px;
  }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
  }
  
  .constellation-canvas,
  .bg-blobs,
  .liquid-lines {
    display: none;
  }
}

/* ==================== PERFORMANCE OPTIMIZATIONS ==================== */
.reveal,
.pillar-card,
.stat-card,
.step,
.industry-card,
.tier-card,
.monthly-card,
.bento-card,
.bento-hobby,
.philosophy-card {
  will-change: transform, opacity;
}

section {
  contain: layout style;
}

.industry-card,
.pillar-card,
.stat-card,
.tier-card,
.bento-card,
.bento-hobby {
  contain: layout style paint;
}

img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([src=""]) {
  opacity: 1;
}
