/* ==========================================================================
   LUMORA AMOR - DESIGN SYSTEM & STYLESHEET
   Aesthetics: Luxury Dark Mode, Cinematic Spacing, Glassmorphism, Glow Accents
   ========================================================================== */

/* --- Google Fonts Import --- */
/* --- Custom Properties (Variables) --- */
:root {
  /* Theme Colors (Light Mode) */
  --nav-bg: rgba(255, 255, 255, 0.8);
  --nav-shadow: rgba(0, 0, 0, 0.05);
  --menu-bg: rgba(255, 255, 255, 0.98);
  --glass-card-bg: rgba(255, 255, 255, 0.6);
  --glass-card-hover-bg: rgba(255, 255, 255, 0.9);
  --glass-card-shadow: 0 15px 40px rgba(0, 0, 0, 0.05), 0 0 30px rgba(0, 200, 255, 0.03);

  --card: #fcfcfc;
  --ring: #644a40;
  --input: #d8d8d8;
  --muted: #efefef;
  --accent: #e8e8e8;
  --border: #d8d8d8;
  --radius: 0.5rem;
  --chart-1: #644a40;
  --chart-2: #ffdfb5;
  --chart-3: #e8e8e8;
  --chart-4: #ffe6c4;
  --chart-5: #66493e;
  --popover: #fcfcfc;
  --primary: #644a40;
  --sidebar: #fbfbfb;
  --secondary: #ffdfb5;
  --background: #f9f9f9;
  --foreground: #202020;
  --destructive: #e54d2e;
  --sidebar-ring: #b5b5b5;
  --sidebar-accent: #f7f7f7;
  --sidebar-border: #ebebeb;
  --card-foreground: #202020;
  --sidebar-primary: #343434;
  --muted-foreground: #646464;
  --accent-foreground: #202020;
  --popover-foreground: #202020;
  --primary-foreground: #ffffff;
  --sidebar-foreground: #252525;
  --secondary-foreground: #582d1d;
  --destructive-foreground: #ffffff;
  --sidebar-accent-foreground: #343434;
  --sidebar-primary-foreground: #fbfbfb;

  /* Semantic Mappings for Lumora Amor */
  --bg-obsidian: var(--background);
  --bg-deep: var(--muted);
  --bg-card: var(--card);
  --border-glass: var(--border);
  
  --accent-violet: var(--primary);
  --accent-violet-glow: color-mix(in srgb, var(--primary) 25%, transparent);
  --accent-indigo: var(--ring);
  --accent-indigo-glow: color-mix(in srgb, var(--ring) 20%, transparent);
  --accent-amber: var(--secondary);
  --accent-amber-glow: color-mix(in srgb, var(--secondary) 25%, transparent);
  
  --text-pure: var(--foreground);
  --text-bright: var(--foreground);
  --text-muted: var(--muted-foreground);
  --text-dim: var(--muted-foreground);
  
  /* Fonts */
  --font-display: 'Syne', sans-serif;
  --font-sans: 'DM Sans', sans-serif;
  
  /* Spacing & Transitions */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  --max-width: 1200px;

  /* Hero Contrast Enhancements */
  --hero-canvas-opacity: 0.35;
  --hero-overlay-bg: radial-gradient(circle at center, rgba(249, 249, 249, 0.85) 0%, rgba(249, 249, 249, 0.45) 50%, transparent 100%);
  --text-shadow-subtle: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.dark {
  /* Theme Colors (Dark Mode) */
  --nav-bg: rgba(6, 6, 10, 0.75);
  --nav-shadow: rgba(0, 0, 0, 0.5);
  --menu-bg: rgba(10, 10, 16, 0.98);
  --glass-card-bg: rgba(255, 255, 255, 0.04);
  --glass-card-hover-bg: rgba(15, 28, 53, 0.55);
  --glass-card-shadow: 0 15px 40px rgba(0, 0, 0, 0.45), 0 0 30px rgba(0, 200, 255, 0.08);

  --card: #191919;
  --ring: #ffe0c2;
  --input: #484848;
  --muted: #222222;
  --accent: #2a2a2a;
  --border: #201e18;
  --radius: 0.5rem;
  --chart-1: #ffe0c2;
  --chart-2: #393028;
  --chart-3: #2a2a2a;
  --chart-4: #42382e;
  --chart-5: #ffe0c1;
  --popover: #191919;
  --primary: #ffe0c2;
  --sidebar: #18181b;
  --secondary: #393028;
  --background: #111111;
  --foreground: #eeeeee;
  --destructive: #e54d2e;
  --sidebar-ring: #d4d4d8;
  --sidebar-accent: #27272a;
  --sidebar-border: #27272a;
  --card-foreground: #eeeeee;
  --sidebar-primary: #1d4ed8;
  --muted-foreground: #b4b4b4;
  --accent-foreground: #eeeeee;
  --popover-foreground: #eeeeee;
  --primary-foreground: #081a1b;
  --sidebar-foreground: #f4f4f5;
  --secondary-foreground: #ffe0c2;
  --destructive-foreground: #ffffff;
  --sidebar-accent-foreground: #f4f4f5;
  --sidebar-primary-foreground: #ffffff;
  
  /* Semantic Mappings for Lumora Amor */
  --bg-obsidian: var(--background);
  --bg-deep: var(--muted);
  --bg-card: var(--card);
  --border-glass: var(--border);
  
  --accent-violet: var(--primary);
  --accent-violet-glow: color-mix(in srgb, var(--primary) 25%, transparent);
  --accent-indigo: var(--ring);
  --accent-indigo-glow: color-mix(in srgb, var(--ring) 20%, transparent);
  --accent-amber: var(--secondary);
  --accent-amber-glow: color-mix(in srgb, var(--secondary) 25%, transparent);
  
  --text-pure: var(--foreground);
  --text-bright: var(--foreground);
  --text-muted: var(--muted-foreground);
  --text-dim: var(--muted-foreground);

  /* Hero Contrast Enhancements */
  --hero-canvas-opacity: 0.45;
  --hero-overlay-bg: radial-gradient(circle at center, rgba(17, 17, 17, 0.85) 0%, rgba(17, 17, 17, 0.45) 50%, transparent 100%);
  --text-shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* --- Base & Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

canvas {
  display: block !important;
}

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

body {
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--text-pure);
  color: var(--bg-obsidian);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--accent-amber);
  outline-offset: 3px;
}

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

button, input, select, textarea {
  font-family: inherit;
}

/* --- Scrollbar Styling --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
  background: #1e1e2d;
  border-radius: 4px;
  border: 1px solid var(--border-glass);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-violet);
}

/* --- Layout Utility Classes --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 8rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }
}

/* --- Typography & Headings --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #00C8FF 0%, #00DFA2 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-subtitle {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--accent-violet);
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  display: block;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}

/* --- Buttons & UI Elements (Liquid Glass Design) --- */
.btn {
  position: relative;
  isolate: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 9999px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease-out;
  border: none;
  background: transparent;
  color: var(--foreground);
  overflow: visible;
  text-shadow: 0 1px 2px color-mix(in srgb, var(--background) 30%, transparent);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

/* The Lens layer underneath the text */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  background-color: var(--glass-bg, color-mix(in srgb, var(--foreground) 5%, transparent));
  
  /* Safari fallback / Chrome liquid glass refraction */
  backdrop-filter: blur(8px) url(#liquid-glass-filter) saturate(150%);
  -webkit-backdrop-filter: blur(8px) saturate(150%);
  
  --glass-reflex-light: 1;
  --glass-reflex-dark: 1;
  
  box-shadow: 
    inset 0 0 0 1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 10%), transparent),
    inset 1.8px 3px 0px -2px color-mix(in srgb, white calc(var(--glass-reflex-light) * 90%), transparent), 
    inset -2px -2px 0px -2px color-mix(in srgb, white calc(var(--glass-reflex-light) * 80%), transparent), 
    inset -3px -8px 1px -6px color-mix(in srgb, white calc(var(--glass-reflex-light) * 60%), transparent), 
    inset -0.3px -1px 4px 0px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 12%), transparent), 
    inset -1.5px 2.5px 0px -2px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 20%), transparent), 
    inset 0px 3px 4px -2px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 20%), transparent), 
    inset 2px -6.5px 1px -4px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 10%), transparent), 
    0px 1px 5px 0px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 10%), transparent), 
    0px 6px 16px 0px color-mix(in srgb, black calc(var(--glass-reflex-dark) * 8%), transparent);
    
  transition: background-color 400ms cubic-bezier(1, 0, 0.4, 1), box-shadow 400ms cubic-bezier(1, 0, 0.4, 1), border-color 400ms ease;
}

@media (hover: hover) {
  .btn:not(:disabled):hover {
    transform: scale(1.03);
  }
}
.btn:not(:disabled):active {
  transform: scale(0.96);
}

.btn-primary {
  --glass-bg: color-mix(in srgb, var(--primary) 85%, transparent);
  color: var(--primary-foreground);
  --glass-reflex-light: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary::before {
  box-shadow: 
    inset 0 0 0 1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 15%), transparent),
    inset 1.8px 3px 0px -2px color-mix(in srgb, white calc(var(--glass-reflex-light) * 90%), transparent), 
    inset -2px -2px 0px -2px color-mix(in srgb, white calc(var(--glass-reflex-light) * 80%), transparent), 
    0px 4px 15px color-mix(in srgb, var(--primary) 20%, transparent);
}

.btn-secondary {
  --glass-bg: color-mix(in srgb, var(--foreground) 6%, transparent);
  color: var(--foreground);
}

.btn-secondary::before {
  border: 1px solid color-mix(in srgb, var(--foreground) 15%, transparent);
}

.btn-accent {
  --glass-bg: color-mix(in srgb, var(--secondary) 85%, transparent);
  color: var(--secondary-foreground);
  --glass-reflex-light: 1.3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-accent::before {
  box-shadow: 
    inset 0 0 0 1px color-mix(in srgb, white calc(var(--glass-reflex-light) * 12%), transparent),
    inset 1.8px 3px 0px -2px color-mix(in srgb, white calc(var(--glass-reflex-light) * 80%), transparent), 
    0px 4px 15px color-mix(in srgb, var(--secondary) 15%, transparent);
}

/* --- Glassmorphism Panels --- */
.glass-card {
  background: var(--glass-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 200, 255, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(0, 200, 255, 0.35);
  background: var(--glass-card-hover-bg);
  box-shadow: var(--glass-card-shadow);
}

/* --- Ambient CSS Glow Elements --- */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
  mix-blend-mode: screen;
}

.orb-violet {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-violet) 0%, rgba(0,0,0,0) 70%);
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-amber {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--accent-amber) 0%, rgba(0,0,0,0) 70%);
  animation: floatOrb 22s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -50px) scale(1.15); }
  100% { transform: translate(-40px, 40px) scale(0.9); }
}

/* ==========================================================================
   SPLASH PRELOADER SCREEN
   ========================================================================== */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1.2s cubic-bezier(0.77, 0, 0.175, 1), transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}

#splash-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.splash-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 600px;
  padding: 2rem;
}

.splash-logo-container {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: splashFadeInUp 1s ease forwards 0.3s;
}

.splash-logo {
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0, 200, 255, 0.25));
}

@media (max-width: 500px) {
  .splash-logo {
    max-width: 240px;
  }
}

.splash-tagline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: splashFadeInUp 1s ease forwards 0.5s;
}

.splash-enter-btn {
  opacity: 0;
  transform: translateY(20px);
  animation: splashFadeInUp 1s ease forwards 0.7s;
  padding: 1rem 3rem;
  background: rgba(18, 18, 26, 0.6);
  border: 1px solid var(--accent-violet);
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.15);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-pure);
  text-transform: uppercase;
}

.splash-enter-btn:hover {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-indigo));
  border-color: transparent;
  box-shadow: 0 0 35px var(--accent-violet-glow);
  transform: translateY(-3px) scale(1.02);
}

@keyframes splashFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.splash-hidden {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-fast);
  padding: 1.5rem 0;
}

.header-nav.scrolled {
  padding: 0.8rem 0;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 10px 30px var(--nav-shadow);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  height: 40px;
  width: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-pure);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-amber));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
}

/* --- Header Social Links & Theme Toggle --- */
.nav-social-item {
  display: inline-flex;
  align-items: center;
}

.nav-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--text-muted);
  background: color-mix(in srgb, var(--foreground) 4%, transparent);
  border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.nav-social-link:hover {
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  border-color: color-mix(in srgb, var(--primary) 30%, transparent);
  box-shadow: 0 0 15px color-mix(in srgb, var(--primary) 15%, transparent);
}

.nav-social-link:hover svg {
  transform: scale(1.1);
}

.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--foreground) 10%, transparent);
  background: color-mix(in srgb, var(--foreground) 4%, transparent);
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-toggle-btn svg {
  position: absolute;
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.theme-toggle-btn .sun-icon {
  opacity: 0;
  transform: translateY(20px) rotate(45deg);
}

.theme-toggle-btn .moon-icon {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.dark .theme-toggle-btn .sun-icon {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.dark .theme-toggle-btn .moon-icon {
  opacity: 0;
  transform: translateY(-20px) rotate(-45deg);
}

.theme-toggle-btn:hover {
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  border-color: color-mix(in srgb, var(--primary) 30%, transparent);
  box-shadow: 0 0 15px color-mix(in srgb, var(--primary) 15%, transparent);
}

/* Hamburger Menu button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-bright);
  transition: var(--transition-fast);
  transform-origin: left center;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--menu-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid var(--border-glass);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem;
    gap: 2rem;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1005;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-sec {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 6rem;
  overflow: hidden;
}

#hero-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
  opacity: var(--hero-canvas-opacity);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: var(--hero-overlay-bg);
}

.hero-sec .orb-violet {
  top: 10%;
  right: -5%;
  z-index: 0;
}

.hero-sec .orb-amber {
  bottom: -10%;
  left: -5%;
  z-index: 0;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
  pointer-events: none; /* Let pointer events pass to the canvas for 3D parallax displacement */
}

.hero-title {
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  background: linear-gradient(135deg, var(--text-pure) 30%, var(--accent-violet) 70%, var(--accent-amber) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroWordFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards, gradientShift 6s ease infinite;
}

@keyframes heroWordFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-bright);
  line-height: 1.4;
  margin-bottom: 2rem;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-shadow: var(--text-shadow-subtle);
}

.hero-subword {
  display: block;
  opacity: 0;
  transform: translateY(15px);
  animation: heroSubwordFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroSubwordFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 3.5rem;
  font-weight: 300;
  pointer-events: auto; /* Enable hover/select */
  text-shadow: var(--text-shadow-subtle);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  pointer-events: auto; /* Enable button clicks */
}

/* Explore scroll button at bottom center */
.explore-btn {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: none;
  border: none;
  color: var(--text-bright);
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  pointer-events: auto;
  animation: exploreBtnFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.explore-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: arrowBounce 2s infinite ease-in-out;
}

.arrow-svg path {
  stroke: var(--text-bright);
  transition: var(--transition-fast);
}

.explore-btn:hover {
  opacity: 1 !important;
}

.explore-btn:hover .arrow-svg path {
  stroke: var(--accent-violet);
}

@keyframes exploreBtnFadeIn {
  to {
    opacity: 0.65;
  }
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
    gap: 0.8rem;
  }
  .hero-tagline {
    font-size: 1.25rem;
  }
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 1rem;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .explore-btn {
    bottom: 1.5rem;
    font-size: 0.7rem;
  }
}

/* ==========================================================================
   MISSION SECTION
   ========================================================================== */
.mission-sec {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-obsidian) 0%, var(--bg-deep) 100%);
}

.mission-sec .orb-violet {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  opacity: 0.15;
}

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

.mission-statement {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--text-pure);
}

.mission-statement strong {
  font-weight: 700;
}

.mission-details {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Soulful Orb Graphic */
.soulful-orb-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 300px;
}

.soul-logo-container {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.soul-logo-container::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 1px dashed color-mix(in srgb, var(--primary) 20%, transparent);
  animation: spin 30s linear infinite;
}

.soul-breathing-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-glass);
  box-shadow: 0 0 20px color-mix(in srgb, var(--primary) 30%, transparent);
  animation: logoBreath 6s ease-in-out infinite alternate;
}

@keyframes logoBreath {
  0% {
    transform: scale(0.96);
    box-shadow: 0 0 20px color-mix(in srgb, var(--primary) 20%, transparent);
    filter: brightness(0.95);
  }
  100% {
    transform: scale(1.04);
    box-shadow: 0 0 40px color-mix(in srgb, var(--primary) 50%, transparent);
    filter: brightness(1.05);
  }
}

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

@media (max-width: 850px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .mission-statement {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-sec {
  position: relative;
}

.services-sec .orb-amber {
  top: 20%;
  right: -10%;
}

.services-header {
  max-width: 650px;
  margin-bottom: 5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

@media (max-width: 500px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-indigo));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 200, 255, 0.1);
  border: 1px solid rgba(0, 200, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-violet);
  margin-bottom: 2rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: var(--accent-violet);
  color: var(--text-pure);
  box-shadow: 0 0 20px var(--accent-violet-glow);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-pure);
  font-family: var(--font-display);
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
  font-weight: 300;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-violet);
}

.service-link svg {
  transition: transform 0.3s ease;
}

.service-card:hover .service-link svg {
  transform: translateX(5px);
}

/* ==========================================================================
   ELYVIA FEATURE SECTION
   ========================================================================== */
.elyvia-sec {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-obsidian) 100%);
  position: relative;
  overflow: hidden;
}

.elyvia-sec .orb-violet {
  bottom: -15%;
  right: -5%;
  width: 500px;
  height: 500px;
}

.elyvia-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.elyvia-tagline {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-pure);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.elyvia-tagline::before {
  content: '“';
  font-size: 4rem;
  color: rgba(0, 200, 255, 0.2);
  position: absolute;
  left: -1.5rem;
  top: -1.5rem;
  font-family: var(--font-display);
}

.elyvia-tagline::after {
  content: '”';
  font-size: 4rem;
  color: rgba(0, 200, 255, 0.2);
  position: absolute;
  right: -1rem;
  bottom: -3.5rem;
  font-family: var(--font-display);
}

.elyvia-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.elyvia-desc strong {
  color: var(--text-bright);
}

.elyvia-subheadline {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent-amber);
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.elyvia-signup-container {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.signup-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-violet);
  margin-bottom: 0.75rem;
  font-weight: 600;
  display: block;
}

.elyvia-buttons-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.elyvia-launch-form {
  display: flex;
  flex-direction: column;
}

.launch-form-group {
  display: flex;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 0.35rem;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}

.launch-form-group:focus-within {
  border-color: var(--accent-violet);
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.15);
}

.launch-input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  padding: 0.5rem 1.5rem !important;
  font-size: 0.95rem !important;
  color: var(--text-pure) !important;
  outline: none !important;
}

.launch-input::placeholder {
  color: var(--text-dim);
}

.launch-btn {
  padding: 0.6rem 1.8rem !important;
  font-size: 0.8rem !important;
  flex-shrink: 0;
}

.elyvia-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

@media (max-width: 500px) {
  .launch-form-group {
    flex-direction: column;
    border-radius: 16px;
    padding: 0.75rem;
  }
  
  .launch-input {
    padding: 0.75rem 0.5rem !important;
    border-bottom: 1px solid var(--border-glass) !important;
    border-radius: 0 !important;
    margin-bottom: 0.5rem;
  }
  
  .launch-btn {
    width: 100%;
  }
}

/* Elyvia UI Mockup Phone */
.elyvia-phone-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.elyvia-phone-glow {
  position: absolute;
  width: 280px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-violet-glow) 0%, rgba(0,0,0,0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.elyvia-phone {
  width: 300px;
  height: 540px;
  border-radius: 40px;
  background: #08080c;
  border: 4px solid #1a1a26;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 40px rgba(0, 200, 255, 0.15);
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Phone Notch/Header */
.phone-header {
  height: 55px;
  padding: 1.5rem 1.5rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  flex-shrink: 0;
}

.phone-speaker {
  width: 60px;
  height: 5px;
  background: #1a1a26;
  border-radius: 10px;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.phone-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phone-logo {
  width: 22px;
  height: 22px;
  border-radius: 4px;
}

.phone-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: #eeeeee;
}

.phone-signal {
  display: flex;
  gap: 4px;
}

.phone-signal span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-dim);
}

.phone-signal span.active {
  background: #4ade80;
}

/* Phone Screen/Chat */
.phone-body {
  flex-grow: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.2rem;
  background: radial-gradient(circle at top right, rgba(0, 200, 255, 0.05), transparent 60%);
}

/* Chat bubble styling */
.chat-bubble {
  max-width: 85%;
  padding: 0.85rem 1.1rem;
  border-radius: 18px;
  font-size: 0.82rem;
  line-height: 1.4;
  animation: chatBubblePop 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(10px);
}

.chat-elyvia {
  background: rgba(0, 200, 255, 0.08);
  border: 1px solid rgba(0, 200, 255, 0.15);
  color: #eeeeee;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-user {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #b4b4b4;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  animation-delay: 1.2s !important;
}

.chat-elyvia-2 {
  background: rgba(0, 200, 255, 0.12);
  border: 1px solid rgba(0, 200, 255, 0.2);
  color: #eeeeee;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  animation-delay: 2.8s !important;
  box-shadow: 0 5px 15px rgba(0, 200, 255, 0.05);
}

.chat-indicator {
  display: flex;
  gap: 4px;
  padding: 0.4rem 0.8rem;
  background: rgba(0, 200, 255, 0.05);
  border-radius: 12px;
  align-self: flex-start;
  margin-top: -0.5rem;
  opacity: 0;
  animation: typingShow 3.5s linear infinite;
}

.chat-indicator span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #00c8ff;
  animation: typingBounce 1.4s infinite ease-in-out;
}

.chat-indicator span:nth-child(2) { animation-delay: 0.2s; }
.chat-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes chatBubblePop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes typingBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes typingShow {
  0%, 15% { opacity: 0; }
  25%, 75% { opacity: 1; }
  85%, 100% { opacity: 0; }
}

/* Phone input area */
.phone-footer {
  padding: 1rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.phone-input {
  flex-grow: 1;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  color: #b4b4b4;
}

.phone-send-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #00c8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08080c; /* High contrast dark charcoal color for the send arrow */
}

@media (max-width: 850px) {
  .elyvia-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .elyvia-phone-wrapper {
    order: 2;
  }
}

/* ==========================================================================
   ABOUT / FOUNDER SECTION
   ========================================================================== */
.about-sec {
  position: relative;
}

.about-sec .orb-amber {
  top: 50%;
  left: -10%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-story {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-story p {
  font-weight: 300;
}

.about-story p strong {
  color: var(--text-bright);
  font-weight: 600;
}

.about-credentials-box {
  margin-top: 1.5rem;
}

/* Abstract Founder Art Mockup */
.founder-art-wrapper {
  display: flex;
  justify-content: center;
}

.founder-art-container {
  width: 380px;
  height: 480px;
  border-radius: 24px;
  border: 1px solid var(--border-glass);
  background: linear-gradient(135deg, #10101a, #07070a);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.founder-art-glow {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at center, rgba(0, 200, 255, 0.12) 0%, rgba(247, 168, 27, 0.05) 50%, rgba(0,0,0,0) 80%);
  animation: artShift 12s ease-in-out infinite alternate;
}

.founder-vector-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.08;
  background-image: radial-gradient(var(--text-pure) 1px, transparent 0), radial-gradient(var(--text-pure) 1px, transparent 0);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}

.founder-badge {
  position: relative;
  z-index: 5;
  background: rgba(18, 18, 26, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--accent-amber);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.founder-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-pure);
  margin-bottom: 0.2rem;
}

.founder-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--accent-amber);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.founder-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 300;
}

@keyframes artShift {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.1) rotate(5deg); }
}

@media (max-width: 850px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .founder-art-container {
    width: 100%;
    max-width: 380px;
    height: 400px;
  }
}

/* ==========================================================================
   CREDENTIALS SECTION
   ========================================================================== */
.credentials-sec {
  background: linear-gradient(180deg, var(--bg-obsidian) 0%, var(--bg-deep) 100%);
  position: relative;
  overflow: hidden;
}

.credentials-sec .orb-violet {
  bottom: -10%;
  right: -10%;
}

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

.credentials-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.cred-category {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cred-cat-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--text-pure);
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
}

.cred-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-glass);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  transition: var(--transition-fast);
}

.cred-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(0, 200, 255, 0.25);
  transform: translateX(5px);
}

.cred-icon {
  color: var(--accent-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cred-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-bright);
}

.credentials-footer-note {
  text-align: center;
  margin-top: 5rem;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

@media (max-width: 768px) {
  .credentials-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-sec {
  position: relative;
  overflow: hidden;
}

.contact-sec .orb-violet {
  top: -10%;
  right: -10%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: flex-start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-cta-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-pure);
}

.contact-cta-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.contact-email-direct {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
}

.email-link {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: var(--transition-fast);
}

.email-link:hover {
  color: var(--secondary);
  text-shadow: 0 0 10px var(--accent-violet-glow);
}

.contact-categories {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
}

.contact-cat-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-bright);
  font-size: 0.95rem;
}

.contact-cat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-violet);
  box-shadow: 0 0 10px var(--accent-violet);
}

/* Form Styles */
.contact-form-card {
  padding: 3rem;
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-input {
  background: rgba(255,255,255,0.02);
  border: none;
  border-bottom: 1px solid var(--border-glass);
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text-pure);
  outline: none;
  transition: var(--transition-fast);
}

.form-label {
  position: absolute;
  left: 0;
  top: 0.75rem;
  color: var(--text-dim);
  pointer-events: none;
  transition: var(--transition-fast);
  font-size: 1rem;
}

/* Floating label effect */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -1.2rem;
  font-size: 0.8rem;
  color: var(--accent-violet);
}

.form-input:focus {
  border-bottom-color: var(--accent-violet);
}

.form-select-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-select-label {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.form-select {
  background: rgba(18, 18, 26, 0.8);
  border: 1px solid var(--border-glass);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: var(--text-pure);
  outline: none;
  font-size: 0.95rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: var(--transition-fast);
}

.form-select:focus {
  border-color: var(--accent-violet);
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.1);
}

.form-input-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  border: none;
  padding: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Custom Success State Alert */
.form-success-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0;
  gap: 1.5rem;
  animation: splashFadeInUp 0.6s ease forwards;
}

.success-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  font-size: 2rem;
  box-shadow: 0 0 25px rgba(74, 222, 128, 0.15);
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-pure);
}

.success-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.6;
}

@media (max-width: 850px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contact-cta-title {
    font-size: 2.4rem;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-sec {
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 2rem;
  background: #040407;
  position: relative;
  z-index: 2;
}

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

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

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

.footer-logo-img {
  height: 35px;
  width: 35px;
  border-radius: 6px;
  object-fit: cover;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-pure);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 300;
}

.footer-columns-wrapper {
  display: flex;
  gap: 4rem;
}

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

.footer-column-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-pure);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-column-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-column-link:hover {
  color: var(--text-pure);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.02);
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-legal-links a:hover {
  color: var(--text-muted);
}

@media (max-width: 650px) {
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-columns-wrapper {
    gap: 2rem;
    width: 100%;
    justify-content: space-between;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Delayed reveals for child grids or list items */
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }
.reveal-delay-5 { transition-delay: 0.75s; }
.reveal-delay-6 { transition-delay: 0.9s; }

/* ==========================================================================
   ENHANCEMENTS - BUILT FOR PURPOSE & WAYS TO WORK
   ========================================================================== */

/* Built For Purpose Section */
.purpose-sec {
  position: relative;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-obsidian) 100%);
}

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

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.purpose-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.2rem;
  border-radius: 18px;
  position: relative;
}

.purpose-card:hover {
  border-color: rgba(67, 97, 238, 0.3); /* Indigo glow accent */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(67, 97, 238, 0.05);
}

.purpose-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(67, 97, 238, 0.1);
  border: 1px solid rgba(67, 97, 238, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-indigo);
  margin-bottom: 1.75rem;
  transition: var(--transition-fast);
}

.purpose-card:hover .purpose-badge-icon {
  background: var(--accent-indigo);
  color: var(--text-pure);
  box-shadow: 0 0 15px var(--accent-indigo-glow);
}

.purpose-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: var(--text-pure);
}

.purpose-card-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 300;
}

.purpose-cta {
  display: flex;
  justify-content: center;
}

/* Service Card Outcomes Styling */
.service-outcome {
  margin: 1.25rem 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid var(--accent-amber);
  border-radius: 4px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-bright);
}

.service-outcome strong {
  color: var(--accent-amber);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.service-card .service-desc {
  margin-bottom: 0.5rem; /* Reduce bottom margin to account for outcome box */
}

/* Ways to Work Section */
.ways-to-work-sec {
  position: relative;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-obsidian) 100%);
  overflow: hidden;
}

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

.ways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.pathway-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2.2rem;
  border-radius: 20px;
  position: relative;
}

.pathway-card:hover {
  border-color: rgba(247, 168, 27, 0.3); /* Gold glow accent */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(247, 168, 27, 0.05);
}

.pathway-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-amber);
  opacity: 0.65;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.pathway-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-pure);
}

.pathway-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pathway-card .btn {
  width: 100%;
}

@media (max-width: 600px) {
  .purpose-grid, .ways-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SUBPAGES BASE STYLING (About Founder & Walk With Me)
   ========================================================================== */
.subpage-body {
  background-color: var(--bg-obsidian);
  color: var(--text-bright);
}

.subpage-hero {
  padding: 10rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-obsidian) 0%, var(--bg-deep) 100%);
  border-bottom: 1px solid var(--border-glass);
}

.subpage-hero .orb-violet {
  top: -10%;
  right: 15%;
  width: 500px;
  height: 500px;
  opacity: 0.25;
}

.subpage-hero .orb-amber {
  bottom: -20%;
  left: 10%;
  width: 400px;
  height: 400px;
  opacity: 0.15;
}

.subpage-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.back-home-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.back-home-link svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-home-link:hover {
  color: var(--accent-violet);
}

.back-home-link:hover svg {
  transform: translateX(-4px);
}

.subpage-title {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.subpage-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.subpage-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.subpage-section {
  padding: 6rem 0;
  position: relative;
}

/* Founder Story Page Styling */
.about-founder-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: flex-start;
}

.founder-portrait-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  background: var(--bg-card);
}

.founder-portrait-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.9;
  transition: var(--transition-smooth);
}

.founder-portrait-frame:hover img {
  opacity: 1;
  transform: scale(1.02);
}

.founder-portrait-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 70%, rgba(6, 6, 10, 0.85) 100%);
  pointer-events: none;
}

.founder-story-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.founder-story-text h2 {
  font-size: 1.8rem;
  color: var(--text-pure);
  margin-top: 1rem;
  font-weight: 600;
}

.founder-story-text p strong {
  color: var(--text-bright);
  font-weight: 500;
}

.founder-quote-panel {
  position: relative;
  padding: 2.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.05) 0%, rgba(255, 144, 48, 0.03) 100%);
  border: 1px dashed rgba(0, 200, 255, 0.2);
  margin: 1rem 0;
  text-align: center;
}

.founder-quote-panel p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text-pure);
  line-height: 1.5;
  font-weight: 400;
  font-style: italic;
}

.founder-quote-panel::before {
  content: '“';
  font-size: 5rem;
  color: rgba(0, 200, 255, 0.15);
  position: absolute;
  top: -1.5rem;
  left: 1rem;
  font-family: var(--font-display);
}

/* Credentials Supportive Layout */
.credentials-subpage-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-obsidian) 100%);
  border-top: 1px solid var(--border-glass);
}

.credentials-subpage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 3rem;
  justify-content: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.credentials-badge-card {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.25rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 200, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.credentials-badge-card:hover {
  border-color: rgba(0, 200, 255, 0.4);
  background: rgba(0, 200, 255, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 200, 255, 0.1);
}

.credentials-badge-card .badge-icon {
  width: auto;
  height: auto;
  background: none;
  border: none;
  color: var(--accent-indigo); /* Mint green */
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.credentials-badge-card .badge-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.2;
}

/* Walk With Me Subpage Reflections */
.reflection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.reflection-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
}

.reflection-card:hover {
  border-color: rgba(0, 200, 255, 0.35);
  box-shadow: 0 15px 45px rgba(0,0,0,0.4), 0 0 30px rgba(0, 200, 255, 0.05);
}

.reflection-card .card-meta {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-violet);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.reflection-card h3 {
  font-size: 1.4rem;
  color: var(--text-pure);
  margin-bottom: 1rem;
  line-height: 1.35;
  font-weight: 600;
}

.reflection-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
  flex-grow: 1;
}

/* Reflection Theme Tags */
.theme-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 720px;
  margin: 2rem auto 0;
}

.theme-pill {
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  font-family: var(--font-display);
  font-weight: 500;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.theme-pill:hover {
  color: var(--text-pure);
  border-color: rgba(0, 200, 255, 0.3);
  background: rgba(0, 200, 255, 0.05);
}

/* Video Grid and Mockups */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.video-placeholder-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 45px rgba(0,0,0,0.5);
  background: #08080c;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.video-placeholder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(6,6,10,0.2) 0%, rgba(6,6,10,0.85) 100%);
  z-index: 2;
  transition: var(--transition-fast);
}

.video-thumbnail-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,200,255,0.15) 0%, rgba(0,200,255,0.08) 50%, rgba(247,168,27,0.05) 100%);
  z-index: 1;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(18, 18, 26, 0.85);
  border: 1.5px solid var(--accent-violet);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-pure);
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-play-btn svg {
  fill: var(--text-pure);
  transform: translateX(2px);
  transition: var(--transition-fast);
}

.video-placeholder-card:hover {
  border-color: rgba(0, 200, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 25px 55px rgba(0, 200, 255, 0.15);
}

.video-placeholder-card:hover::before {
  background: linear-gradient(180deg, rgba(6,6,10,0.1) 0%, rgba(6,6,10,0.7) 100%);
}

.video-placeholder-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--accent-violet);
  border-color: transparent;
  color: var(--text-pure);
  box-shadow: 0 0 40px rgba(0, 200, 255, 0.6);
}

.video-card-info {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  right: 1.75rem;
  z-index: 4;
}

.video-card-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-violet);
  font-weight: 600;
  margin-bottom: 0.35rem;
  display: block;
}

.video-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-pure);
  line-height: 1.3;
}

/* Shorts Vertical Grid and Cards */
.shorts-section {
  border-top: 1px solid var(--border-glass);
}

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.shorts-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: #08080c;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.shorts-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 50%, rgba(6,6,10,0.85) 100%);
  z-index: 2;
}

.shorts-thumbnail-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,200,255,0.12) 0%, rgba(0,200,255,0.08) 50%, rgba(247,168,27,0.04) 100%);
  z-index: 1;
}

.shorts-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(18, 18, 26, 0.8);
  border: 1px solid var(--accent-violet);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-pure);
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.shorts-play-btn svg {
  fill: var(--text-pure);
  transform: translateX(1.5px);
}

.shorts-card:hover {
  border-color: rgba(0, 200, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 200, 255, 0.12);
}

.shorts-card:hover .shorts-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--accent-violet);
  border-color: transparent;
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.5);
}

.shorts-info {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 4;
}

.shorts-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-pure);
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.shorts-meta {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Overrides for Subpages */
@media (max-width: 900px) {
  .about-founder-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .founder-portrait-frame {
    max-width: 400px;
    margin: 0 auto;
  }
  .subpage-title {
    font-size: 2.8rem;
  }
  .video-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 500px) {
  .subpage-hero {
    padding: 8rem 0 3rem;
  }
  .subpage-title {
    font-size: 2.2rem;
  }
  .subpage-subtitle {
    font-size: 1.05rem;
  }
  .subpage-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  .subpage-actions .btn {
    width: 100%;
    max-width: 300px;
  }
  .reflection-grid {
    grid-template-columns: 1fr;
  }
  .reflection-card {
    padding: 1.75rem;
  }
}

/* About Page Reorganization Styles */
.about-offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.offering-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.offering-card h3 {
  font-size: 1.35rem;
  color: var(--text-pure);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.offering-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.offering-card li {
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 300;
  line-height: 1.4;
}

.offering-card li::before {
  content: '→';
  color: var(--accent-violet); /* Electric cyan */
  font-weight: bold;
}

@media (max-width: 900px) {
  .about-offerings-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}

/* ==========================================================================
   MOBILE ACCESSIBILITY & SCROLLING POLISH (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  /* Container Padding Refinement */
  .container {
    padding: 0 1.25rem;
  }

  /* Section Padding reduction to make scrolling feel more cohesive */
  .section-padding {
    padding: 4.5rem 0;
  }

  /* Title sizing to avoid awkward word wraps */
  .hero-title {
    font-size: 2.8rem;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .hero-tagline {
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 1.5rem;
    gap: 0.25rem;
  }
  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  /* Reduced card padding so text isn't in a tiny narrow column */
  .glass-card {
    padding: 1.5rem;
    border-radius: 16px;
  }
  .purpose-card {
    padding: 1.5rem;
  }
  .pathway-card {
    padding: 1.75rem 1.5rem;
  }
  .contact-form-card {
    padding: 1.5rem;
  }

  /* Grids spacing */
  .purpose-grid, 
  .services-grid, 
  .ways-grid, 
  .reflection-grid, 
  .about-offerings-grid {
    gap: 1.25rem;
  }

  /* Elyvia phone mockup responsive scaling */
  .elyvia-phone {
    width: 100%;
    max-width: 280px;
    height: 480px;
    border-radius: 30px;
  }
  .phone-body {
    padding: 1rem;
    gap: 0.85rem;
  }
  .chat-bubble {
    padding: 0.75rem 0.95rem;
    font-size: 0.8rem;
  }

  /* Touch target accessibility for CTA buttons */
  .btn {
    padding: 0.95rem 2rem;
    width: 100%;
    font-size: 0.85rem;
  }
  
  .hero-buttons {
    width: 100%;
    max-width: 100%;
    gap: 0.75rem;
  }

  .purpose-cta .btn,
  .about-story .btn,
  .ways-grid .btn,
  .subpage-actions .btn {
    width: 100%;
  }

  /* Form spacing accessibility */
  .contact-form {
    gap: 1.25rem;
  }

  /* Footer responsiveness */
  .footer-sec {
    padding: 3rem 0 1.5rem;
  }
  .footer-columns-wrapper {
    gap: 1.5rem;
  }
  .footer-column {
    gap: 0.75rem;
  }
}

/* Extra small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }
  
  .section-title {
    font-size: 1.85rem;
    margin-bottom: 1rem;
  }
  
  .contact-cta-title {
    font-size: 2rem;
  }
}

/* --- Interactive 3D Product Card Component --- */
.interactive-product-card {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 12;
  border-radius: 1.5rem; /* 24px */
  background-color: var(--bg-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform-style: preserve-3d;
  display: block;
  text-decoration: none;
  cursor: pointer;
  margin: 0 auto;
  overflow: visible; /* Allows Z translation to pop out cleanly */
  outline: none;
}

/* Subtle gold outline glow effect on hover */
.interactive-product-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.interactive-product-card:hover::before,
.interactive-product-card:focus-visible::before {
  background: linear-gradient(135deg, rgba(247, 168, 27, 0.3) 0%, rgba(247, 168, 27, 0.05) 100%);
  box-shadow: 0 0 20px rgba(247, 168, 27, 0.08);
}

.interactive-product-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(247, 168, 27, 0.5), 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Background image of the card */
.card-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  transform: translateZ(-20px) scale(1.1); /* Recess in Z space and scale to mask edges */
  transition: transform 0.3s ease;
  pointer-events: none;
}

/* Gradient overlay */
.card-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 60%, transparent 100%);
  border-radius: 1.5rem;
  pointer-events: none;
  z-index: 1;
}

/* Content wrapper that pops forward in Z space */
.card-content {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateZ(40px);
  transform-style: preserve-3d;
  z-index: 2;
}

/* Glassmorphism Header */
.card-header-glass {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem; /* Prevents text crowding the logo icon */
  border-radius: 0.85rem; /* 14px */
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.card-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.15rem; /* Balanced to avoid cramping within card limits */
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.8rem; /* Highly readable body copy */
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
  font-weight: 300;
}

.card-logo {
  height: 18px;
  width: auto;
  border-radius: 3px;
  object-fit: contain;
  margin-top: 0.15rem;
}

/* Price Tag Badge placed cleanly at the bottom */
.card-price-tag {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 3;
}

.card-price-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  border-radius: 9999px;
  background-color: rgba(6, 6, 10, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.45rem 1.15rem;
  font-size: 0.85rem;
  color: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.card-price-badge .price-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5); /* Subtle white/gray */
  font-weight: 500;
}

.card-price-badge .price-value {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-amber); /* Prominent gold/amber price numbers */
}

.card-price-badge .price-period {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

/* Subtle view details cue */
.card-view-details {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.interactive-product-card:hover .card-view-details,
.interactive-product-card:focus-visible .card-view-details {
  color: var(--accent-amber);
  transform: translateX(3px);
}

/* Scale background image slightly on card hover */
.interactive-product-card:hover .card-bg-image {
  transform: translateZ(-20px) scale(1.15);
}

/* Extra Section Supporting Styles */
.ways-intro-note {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 1.5rem;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ways-cta {
  text-align: center;
  margin-top: 4rem;
}

.ways-cta .btn {
  display: inline-block;
  width: auto;
  min-width: 250px;
}

.ways-future-note {
  text-align: center;
  max-width: 650px;
  margin: 3.5rem auto 0;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.65;
  font-weight: 300;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}

.ways-future-note strong {
  color: var(--accent-amber);
  font-weight: 600;
}

/* Pricing Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 6, 10, 0.85); /* Deep dark background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay[hidden] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .glow-orb,
  .soul-breathing-logo,
  .chevron-down-icon {
    animation: none !important;
  }
}

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

.modal-container {
  position: relative;
  width: 90%;
  max-width: 580px;
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.9) 0%, rgba(10, 10, 16, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(247, 168, 27, 0.03); /* Subtle gold ambient glow */
  border-radius: 20px;
  padding: 2.5rem;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

/* Close Button styling */
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  font-size: 1.5rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 1010;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.modal-body {
  overflow-y: auto;
  flex-grow: 1;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

/* Scrollbar styling for Webkit */
.modal-body::-webkit-scrollbar {
  width: 5px;
}
.modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* Header style inside modal */
.modal-pricing-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.5rem;
}

.modal-pricing-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.modal-pricing-badge {
  display: inline-block;
  border-radius: 9999px;
  background-color: rgba(247, 168, 27, 0.1);
  border: 1px solid rgba(247, 168, 27, 0.25);
  padding: 0.45rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-amber);
}

/* Content blocks styling */
.modal-pricing-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.modal-pricing-section h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.modal-pricing-section p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  font-weight: 300;
}

/* Bullet list inside modal */
.modal-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.modal-bullets li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.45;
  font-weight: 300;
}

.modal-bullets li::before {
  content: '•';
  color: var(--accent-amber);
  font-weight: bold;
  flex-shrink: 0;
}

.modal-pricing-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-end;
}

.modal-pricing-footer .btn {
  width: 100%;
  max-width: 280px;
  text-align: center;
}

@media (max-width: 768px) {
  .interactive-product-card {
    max-width: 300px;
  }
  .ways-cta {
    margin-top: 2.5rem;
  }
  
  /* Responsive bottom sheet for Mobile */
  .modal-overlay {
    align-items: flex-end; /* Align to bottom */
  }

  .modal-container {
    width: 100%;
    max-width: 100%;
    border-radius: 24px 24px 0 0;
    max-height: 90vh;
    padding: 2rem 1.5rem 2.5rem;
    transform: translateY(100%);
    border-left: none;
    border-right: none;
    border-bottom: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .modal-overlay.active .modal-container {
    transform: translateY(0);
  }

  .modal-pricing-title {
    font-size: 1.5rem;
  }

  .modal-pricing-footer {
    justify-content: center;
  }

  .modal-pricing-footer .btn {
    max-width: 100%; /* Full width CTA button on mobile */
  }
}

/* ==========================================================================
   DEDICATED FOUNDER PAGE LAYOUT
   ========================================================================== */
.founder-story-sec {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.founder-chapters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
  margin-top: 4rem;
}

.chapter-card {
  background: rgba(18, 18, 26, 0.45);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
}

.chapter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(247, 168, 27, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.chapter-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 168, 27, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.chapter-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chapter-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-bright);
}

.chapter-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.founder-vision-block {
  margin-top: 6rem;
}

.vision-card {
  background: linear-gradient(135deg, rgba(22, 22, 33, 0.6) 0%, rgba(10, 10, 15, 0.8) 100%);
  border: 1px solid var(--border-glass);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

@media (max-width: 991px) {
  .founder-chapters-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .chapter-card {
    padding: 3rem 2.5rem;
  }
}

/* ==========================================================================
   FOUNDER HERO SECTION (HEROSECTION04 ADAPTATION)
   ========================================================================== */
.about-hero-sec {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--border-glass);
}

.about-hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: center top;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 50%, transparent 100%);
  pointer-events: none;
}

.about-hero-back-link-wrapper {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  z-index: 50;
}

.about-hero-center-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  z-index: 10;
}

.about-hero-names-bg {
  text-align: center;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-hero-names-bg .name-line {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11vw;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--accent-amber);
  opacity: 0.85;
  line-height: 0.75;
  text-shadow: 0 0 40px rgba(247, 168, 27, 0.2);
}

@media (min-width: 1200px) {
  .about-hero-names-bg .name-line {
    font-size: 11.5rem;
  }
}

.about-hero-capsule-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}

.about-hero-capsule {
  width: 90px;
  height: 152px;
  border-radius: 9999px; /* Capsule shape */
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(247, 168, 27, 0.15);
  transition: var(--transition-smooth);
  cursor: pointer;
  background: var(--bg-card);
}

@media (min-width: 768px) {
  .about-hero-capsule {
    width: 120px;
    height: 202px;
  }
}

@media (min-width: 1200px) {
  .about-hero-capsule {
    width: 140px;
    height: 236px;
  }
}

.about-hero-capsule:hover {
  transform: scale(1.08);
  border-color: var(--accent-amber);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 40px rgba(247, 168, 27, 0.3);
}

.capsule-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-hero-tagline-area {
  margin-top: 4rem;
  text-align: center;
  z-index: 20;
  max-width: 720px;
  width: 100%;
}

.about-hero-tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.about-hero-tagline:hover {
  color: var(--text-bright);
}

.about-hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.about-hero-scroll-btn {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  transition: var(--transition-smooth);
  z-index: 20;
}

.about-hero-scroll-btn:hover {
  color: var(--text-bright);
  transform: translateX(-50%) translateY(4px);
}

/* ==========================================================================
   HERO QUOTE SECTION
   ========================================================================== */
.about-hero-quote-sec {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-obsidian) 100%);
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  overflow: hidden;
}

.about-large-quote-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 1.5rem 0;
}

.about-large-quote-box blockquote {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--text-pure);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  letter-spacing: -0.01em;
  max-width: 700px;
}

@media (min-width: 768px) {
  .about-large-quote-box blockquote {
    font-size: 2.4rem;
  }
}

.about-large-quote-box .quote-mark {
  font-size: 10rem;
  font-family: var(--font-display);
  color: var(--accent-amber);
  opacity: 0.05;
  position: absolute;
  top: -4rem;
  left: 0;
  z-index: 1;
  line-height: 1;
}

.about-large-quote-box .quote-mark-close {
  font-size: 10rem;
  font-family: var(--font-display);
  color: var(--accent-amber);
  opacity: 0.05;
  position: absolute;
  bottom: -6rem;
  right: 0;
  z-index: 1;
  line-height: 1;
}
