/* =====================================================
   QUANTUM FIELD MEDITATION — GLOBAL DESIGN SYSTEM
   "Cosmic Consciousness Meets Digital Minimalism"
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --deep-space: #05070D;
  --cosmic-purple: #6A0DAD;
  --cosmic-purple-50: rgba(106, 13, 173, 0.5);
  --cosmic-purple-20: rgba(106, 13, 173, 0.2);
  --neon-blue: #00E5FF;
  --neon-blue-50: rgba(0, 229, 255, 0.5);
  --neon-blue-20: rgba(0, 229, 255, 0.2);
  --soft-white: #F5F7FA;
  --soft-white-80: rgba(245, 247, 250, 0.8);
  --soft-white-60: rgba(245, 247, 250, 0.6);
  --soft-white-40: rgba(245, 247, 250, 0.4);
  --soft-white-20: rgba(245, 247, 250, 0.2);
  --soft-white-10: rgba(245, 247, 250, 0.1);
  --gradient-cosmic: linear-gradient(135deg, #6A0DAD 0%, #00E5FF 100%);
  --gradient-dark: linear-gradient(180deg, #05070D 0%, #0a0f1a 50%, #05070D 100%);
  --gradient-radial: radial-gradient(ellipse at center, rgba(106, 13, 173, 0.15) 0%, transparent 70%);
  --gradient-hero: linear-gradient(135deg, rgba(5,7,13,0.95) 0%, rgba(10,15,26,0.9) 50%, rgba(5,7,13,0.95) 100%);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.12);
  --shadow-glow-purple: 0 0 30px rgba(106, 13, 173, 0.3);
  --shadow-glow-blue: 0 0 30px rgba(0, 229, 255, 0.3);
  --shadow-depth: 0 20px 60px rgba(0, 0, 0, 0.5);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.27, 1.55);
  --ease-power: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--soft-white);
  background: var(--deep-space);
  line-height: 1.8;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── Selection ── */
::selection {
  background: var(--cosmic-purple);
  color: var(--soft-white);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--deep-space);
}
::-webkit-scrollbar-thumb {
  background: var(--cosmic-purple);
  border-radius: 3px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--soft-white);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
}

p {
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.9;
  color: var(--soft-white-80);
  margin-bottom: 1.5rem;
}

a {
  color: var(--neon-blue);
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
}

a:hover {
  color: var(--soft-white);
  text-shadow: 0 0 10px var(--neon-blue-50);
}

/* ── Layout Containers ── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.section {
  padding: clamp(4rem, 10vh, 8rem) 0;
  position: relative;
}

.section-dark {
  background: var(--gradient-dark);
}

.section-glow {
  background: var(--gradient-radial), var(--deep-space);
}

/* ── Particle Canvas ── */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  background: rgba(5, 7, 13, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(5, 7, 13, 0.92);
  height: 64px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--soft-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--neon-blue);
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--soft-white-60);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-cosmic);
  transition: width 0.4s var(--ease-power);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--soft-white);
  text-shadow: none;
}

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

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--soft-white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 7, 13, 0.98);
  backdrop-filter: blur(30px);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav-mobile-overlay.active {
  display: flex;
}

.nav-mobile-overlay a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--soft-white-60);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.nav-mobile-overlay a:hover {
  color: var(--neon-blue);
  text-shadow: 0 0 20px var(--neon-blue-50);
}

/* ── Hero Sections ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon-blue);
  border: 1px solid var(--neon-blue-20);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  background: rgba(0, 229, 255, 0.05);
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 .gradient-text {
  background: var(--gradient-cosmic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--soft-white-60);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-cosmic);
  color: var(--soft-white);
  box-shadow: 0 4px 20px rgba(106, 13, 173, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(106, 13, 173, 0.6);
  color: var(--soft-white);
}

.btn-outline {
  background: transparent;
  color: var(--soft-white);
  border: 1px solid var(--soft-white-20);
}

.btn-outline:hover {
  border-color: var(--neon-blue);
  background: rgba(0, 229, 255, 0.05);
  color: var(--neon-blue);
}

.btn-glow {
  background: transparent;
  color: var(--neon-blue);
  border: 1px solid var(--neon-blue);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2), inset 0 0 15px rgba(0, 229, 255, 0.05);
}

.btn-glow:hover {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.4), inset 0 0 30px rgba(0, 229, 255, 0.1);
  transform: translateY(-2px);
  color: var(--soft-white);
}

/* ── Glassmorphism Cards ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-highlight), transparent);
}

.glass-card:hover {
  border-color: var(--cosmic-purple-20);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow-purple);
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header .divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-cosmic);
  margin: 1.5rem auto;
  border-radius: 2px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--soft-white-40);
}

/* ── Grid Layouts ── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

/* ── Split Layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

/* ── Image Handling ── */
.img-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.img-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.img-glow {
  box-shadow: var(--shadow-glow-purple);
}

.img-frame {
  border: 1px solid var(--glass-border);
  padding: 8px;
  background: var(--glass-bg);
}

/* ── Floating Elements ── */
.float-element {
  animation: float 6s ease-in-out infinite;
}

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

/* ── Breathing Animation ── */
.breathe {
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* ── Energy Pulse ── */
.pulse-ring {
  position: absolute;
  border: 1px solid var(--neon-blue-20);
  border-radius: 50%;
  animation: pulse-expand 3s ease-out infinite;
}

@keyframes pulse-expand {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}

/* ── Fade In Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ── Gradient Text ── */
.gradient-text {
  background: var(--gradient-cosmic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-text {
  text-shadow: 0 0 20px var(--neon-blue-50), 0 0 40px var(--cosmic-purple-20);
}

/* ── Dividers ── */
.cosmic-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cosmic-purple-50), var(--neon-blue-50), transparent);
  margin: 2rem 0;
  border: none;
}

/* ── Stats / Counters ── */
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  background: var(--gradient-cosmic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft-white-40);
  margin-top: 0.5rem;
}

/* ── Blockquote ── */
blockquote {
  border-left: 2px solid var(--cosmic-purple);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--soft-white-60);
  background: var(--glass-bg);
  border-radius: 0 12px 12px 0;
}

blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--neon-blue);
  letter-spacing: 0.1em;
}

/* ── Horizontal Scroll Section ── */
.hscroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--cosmic-purple) transparent;
  padding-bottom: 1rem;
}

.hscroll-track {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  width: max-content;
}

.hscroll-track .glass-card {
  min-width: 350px;
  max-width: 400px;
  flex-shrink: 0;
}

/* ── Accordion ── */
.accordion-item {
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--glass-bg);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--soft-white);
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.03);
}

.accordion-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--neon-blue);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth);
  padding: 0 1.5rem;
}

.accordion-item.active .accordion-body {
  max-height: 1000px;
  padding: 0 1.5rem 1.5rem;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--cosmic-purple), var(--neon-blue), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient-cosmic);
  box-shadow: 0 0 15px var(--cosmic-purple-50);
}

.timeline-item h4 {
  margin-bottom: 0.5rem;
}

/* ── Footer ── */
.site-footer {
  position: relative;
  padding: clamp(3rem, 6vh, 5rem) 0 2rem;
  background: linear-gradient(180deg, var(--deep-space) 0%, #020308 100%);
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.footer-brand h3 span {
  color: var(--neon-blue);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--soft-white-40);
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-family: var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-white-60);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--soft-white-40);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--neon-blue);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  color: var(--soft-white-40);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  box-shadow: 0 0 15px var(--neon-blue-20);
}

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

.footer-credit {
  font-size: 0.85rem;
  color: var(--soft-white-40);
}

.footer-credit a {
  color: var(--neon-blue);
}

.footer-contact-info {
  font-size: 0.85rem;
  color: var(--soft-white-40);
  text-align: right;
}

.footer-contact-info a {
  color: var(--soft-white-40);
}

.footer-contact-info a:hover {
  color: var(--neon-blue);
}

/* ── Form Elements ── */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft-white-60);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--soft-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--cosmic-purple);
  box-shadow: 0 0 20px var(--cosmic-purple-20);
}

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

/* ── Misc Utilities ── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.pt-nav { padding-top: var(--nav-height); }
.relative { position: relative; }
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }

/* ── Numbered List Style ── */
.numbered-list {
  counter-reset: item;
  list-style: none;
  padding: 0;
}

.numbered-list li {
  counter-increment: item;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
}

.numbered-list li::before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -2px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  background: var(--gradient-cosmic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Orb / Energy decoration ── */
.energy-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cosmic-purple-50) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.energy-orb.blue {
  background: radial-gradient(circle, var(--neon-blue-20) 0%, transparent 70%);
}

/* ── Parallax Image Section ── */
.parallax-section {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.15;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--deep-space), rgba(5,7,13,0.5), var(--deep-space));
  z-index: 1;
}

/* ── Page Intro Banner ── */
.page-banner {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 3rem) 2rem 3rem;
  position: relative;
  overflow: hidden;
}

.page-banner .energy-orb {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
}

.page-banner h1 {
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
}

.page-banner p {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  color: var(--soft-white-40);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .split.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-contact-info {
    text-align: center;
  }
  .hero-content {
    padding: 1.5rem;
  }
  h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .page-banner {
    min-height: 40vh;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.8rem;
  }
  .hscroll-track .glass-card {
    min-width: 280px;
  }
}

/* ── Print ── */
@media print {
  .navbar, #particles-canvas, .nav-mobile-overlay, .energy-orb {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
}
