/* =============================================
   QUANTUM FIELD MEDITATION — Design System
   ============================================= */

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

/* --- CSS Variables --- */
:root {
  /* Deep tones */
  --black: #050510;
  --midnight: #0a0a2e;
  --deep-purple: #1a0a2e;
  --void: #08081a;

  /* Accent glows */
  --glow-white: rgba(255, 255, 255, 0.85);
  --glow-blue: rgba(120, 160, 255, 0.7);
  --glow-violet: rgba(160, 100, 255, 0.6);
  --glow-soft: rgba(180, 200, 255, 0.15);

  /* Gradients */
  --gradient-hero: linear-gradient(160deg, #050510 0%, #0a0a2e 40%, #1a0a2e 100%);
  --gradient-card: linear-gradient(135deg, rgba(20, 15, 50, 0.6), rgba(10, 10, 46, 0.4));
  --gradient-accent: linear-gradient(135deg, rgba(120, 160, 255, 0.15), rgba(160, 100, 255, 0.1));
  --gradient-btn: linear-gradient(135deg, rgba(120, 160, 255, 0.25), rgba(160, 100, 255, 0.3));

  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: 100px 0;
  --container-width: 1100px;

  /* Transitions */
  --ease-calm: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s var(--ease-calm);
  --transition-med: 0.5s var(--ease-calm);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  background: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--glow-blue);
  text-decoration: none;
  transition: color var(--transition-med);
}

a:hover {
  color: var(--glow-white);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 300;
  color: var(--glow-white);
  line-height: 1.3;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); letter-spacing: 0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p {
  max-width: 680px;
  margin-bottom: 1.2rem;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 30px;
}

/* --- Animations --- */
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 1; }
}

@keyframes breatheSlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(120, 160, 255, 0.15); }
  50% { box-shadow: 0 0 40px rgba(120, 160, 255, 0.3), 0 0 80px rgba(160, 100, 255, 0.1); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-calm), transform 1s var(--ease-calm);
}

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

/* --- Page Transition --- */
.page-wrapper {
  opacity: 0;
  animation: fadeIn 1.2s var(--ease-calm) forwards;
  animation-delay: 0.1s;
}

/* =============================================
   PASSWORD GATE (index.html)
   ============================================= */
.gate-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.gate-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(20, 15, 60, 0.4) 0%, transparent 70%);
  animation: breatheSlow 8s ease-in-out infinite;
}

.gate-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite;
}

.gate-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100, 120, 255, 0.08), transparent);
  top: 20%;
  left: 30%;
}

.gate-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(160, 100, 255, 0.06), transparent);
  bottom: 20%;
  right: 25%;
  animation-delay: -4s;
}

.gate-content {
  text-align: center;
  z-index: 2;
  animation: fadeIn 2s var(--ease-calm);
}

.gate-content h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 50px;
  color: rgba(200, 210, 255, 0.6);
  text-transform: uppercase;
}

.gate-input-wrap {
  position: relative;
  margin-bottom: 30px;
}

.gate-input {
  width: 320px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(120, 160, 255, 0.15);
  border-radius: 50px;
  color: var(--glow-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  text-align: center;
  outline: none;
  transition: var(--transition-slow);
  animation: glowPulse 4s ease-in-out infinite;
}

.gate-input::placeholder {
  color: rgba(180, 190, 220, 0.3);
  letter-spacing: 0.15em;
}

.gate-input:focus {
  border-color: rgba(120, 160, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 40px rgba(120, 160, 255, 0.2), 0 0 80px rgba(160, 100, 255, 0.08);
}

.gate-btn {
  display: inline-block;
  padding: 14px 50px;
  background: var(--gradient-btn);
  border: 1px solid rgba(120, 160, 255, 0.2);
  border-radius: 50px;
  color: rgba(200, 210, 255, 0.8);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-med);
}

.gate-btn:hover {
  background: linear-gradient(135deg, rgba(120, 160, 255, 0.35), rgba(160, 100, 255, 0.4));
  border-color: rgba(120, 160, 255, 0.4);
  box-shadow: 0 0 30px rgba(120, 160, 255, 0.2);
  color: var(--glow-white);
}

.gate-error {
  margin-top: 24px;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(200, 170, 255, 0.6);
  letter-spacing: 0.05em;
  min-height: 24px;
  transition: opacity var(--transition-med);
}

/* Gate fade-out */
.gate-wrapper.fade-out {
  animation: fadeOut 1.5s var(--ease-calm) forwards;
}

@keyframes fadeOut {
  to { opacity: 0; }
}

/* =============================================
   TOP NAVIGATION
   ============================================= */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(5, 5, 16, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(120, 160, 255, 0.06);
  transition: var(--transition-med);
}

.top-nav.scrolled {
  padding: 14px 0;
  background: rgba(5, 5, 16, 0.9);
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(200, 210, 255, 0.8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-med);
}

.nav-logo:hover {
  color: var(--glow-white);
}

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition-med);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--glow-blue);
  transition: width var(--transition-med);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--glow-white);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.85);
  transition: var(--transition-med);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  animation: breatheSlow 10s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(10, 10, 46, 0.3) 0%, var(--black) 75%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.5s var(--ease-calm);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(160, 190, 255, 0.85);
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 24px;
  max-width: 750px;
}

.hero-subtitle {
  font-weight: 200;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-glow {
  display: inline-block;
  padding: 15px 42px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition-med);
  cursor: pointer;
}

.btn-glow.primary {
  background: var(--gradient-btn);
  border: 1px solid rgba(120, 160, 255, 0.25);
  color: rgba(220, 225, 255, 0.9);
}

.btn-glow.primary:hover {
  background: linear-gradient(135deg, rgba(120, 160, 255, 0.4), rgba(160, 100, 255, 0.45));
  box-shadow: 0 0 35px rgba(120, 160, 255, 0.2), 0 0 70px rgba(160, 100, 255, 0.08);
  color: var(--glow-white);
  transform: translateY(-2px);
}

.btn-glow.secondary {
  background: transparent;
  border: 1px solid rgba(120, 160, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

.btn-glow.secondary:hover {
  border-color: rgba(120, 160, 255, 0.35);
  color: var(--glow-white);
  box-shadow: 0 0 25px rgba(120, 160, 255, 0.1);
  transform: translateY(-2px);
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(160, 190, 255, 0.8);
  margin-bottom: 16px;
  display: block;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 200;
  font-size: 1rem;
}

/* Divider */
.section-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(120, 160, 255, 0.3), transparent);
  margin: 0 auto 24px;
}

/* =============================================
   CARDS
   ============================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: var(--gradient-card);
  border: 1px solid rgba(120, 160, 255, 0.06);
  border-radius: 16px;
  padding: 40px 30px;
  transition: var(--transition-med);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(120, 160, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition-med);
}

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

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

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--gradient-accent);
  border: 1px solid rgba(120, 160, 255, 0.08);
  font-size: 1.3rem;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 200;
  line-height: 1.7;
}

/* =============================================
   IMAGE SECTION
   ============================================= */
.img-section {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin: 40px 0;
}

.img-section img {
  width: 100%;
  border-radius: 16px;
  opacity: 0.6;
  transition: opacity var(--transition-slow);
}

.img-section:hover img {
  opacity: 0.8;
}

/* =============================================
   CONTENT BLOCKS
   ============================================= */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-split.reverse {
  direction: rtl;
}

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

.content-text h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.content-text p {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 200;
  font-size: 0.95rem;
}

.content-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.content-image img {
  border-radius: 16px;
  opacity: 0.5;
  transition: opacity var(--transition-slow);
}

.content-image:hover img {
  opacity: 0.7;
}

/* =============================================
   SESSIONS / LEVELS
   ============================================= */
.level-card {
  background: var(--gradient-card);
  border: 1px solid rgba(120, 160, 255, 0.06);
  border-radius: 16px;
  padding: 50px 40px;
  margin-bottom: 30px;
  transition: var(--transition-med);
}

.level-card:hover {
  border-color: rgba(120, 160, 255, 0.12);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.level-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.level-badge.beginner {
  background: rgba(100, 200, 180, 0.1);
  border: 1px solid rgba(100, 200, 180, 0.2);
  color: rgba(100, 200, 180, 0.8);
}

.level-badge.advanced {
  background: rgba(160, 100, 255, 0.1);
  border: 1px solid rgba(160, 100, 255, 0.2);
  color: rgba(180, 140, 255, 0.8);
}

.level-card h3 {
  margin-bottom: 12px;
}

.level-card p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 200;
}

.session-list {
  list-style: none;
  margin-top: 20px;
}

.session-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(120, 160, 255, 0.04);
  font-weight: 200;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}

.session-list li::before {
  content: '◯';
  font-size: 0.6rem;
  color: rgba(120, 160, 255, 0.35);
}

/* =============================================
   MEDIA GRID
   ============================================= */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.media-card {
  background: var(--gradient-card);
  border: 1px solid rgba(120, 160, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-med);
}

.media-card:hover {
  border-color: rgba(120, 160, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.media-card-img {
  height: 200px;
  overflow: hidden;
}

.media-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity var(--transition-slow);
}

.media-card:hover .media-card-img img {
  opacity: 0.7;
}

.media-card-body {
  padding: 28px;
}

.media-tag {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(160, 190, 255, 0.85);
  margin-bottom: 10px;
  display: block;
}

.media-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.media-card-body p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 200;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(120, 160, 255, 0.1);
  border-radius: 10px;
  color: var(--glow-white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 200;
  outline: none;
  transition: var(--transition-med);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(120, 160, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(120, 160, 255, 0.08);
}

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

.contact-info h3 {
  margin-bottom: 24px;
  font-size: 1.4rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--gradient-card);
  border: 1px solid rgba(120, 160, 255, 0.06);
  border-radius: 12px;
  transition: var(--transition-med);
}

.contact-detail:hover {
  border-color: rgba(120, 160, 255, 0.12);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gradient-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 200;
}

.contact-detail-text strong {
  display: block;
  font-weight: 400;
  color: rgba(220, 225, 255, 0.8);
  margin-bottom: 2px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gradient-card);
  border: 1px solid rgba(120, 160, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: var(--transition-med);
  text-decoration: none;
}

.social-link:hover {
  border-color: rgba(120, 160, 255, 0.2);
  color: var(--glow-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(120, 160, 255, 0.04);
  background: rgba(5, 5, 16, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 200;
  margin-top: 12px;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 200;
  transition: color var(--transition-med);
}

.footer-links a:hover {
  color: var(--glow-white);
}

.footer-contact-item {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 200;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(120, 160, 255, 0.04);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 200;
}

.footer-bottom a {
  color: rgba(120, 160, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--glow-white);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(120, 160, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: var(--transition-med);
}

.footer-socials a:hover {
  border-color: rgba(120, 160, 255, 0.2);
  color: var(--glow-white);
}

/* =============================================
   PAGE HERO (Inner Pages)
   ============================================= */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 140px 30px 80px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--black), rgba(10, 10, 46, 0.2) 50%, var(--black));
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  margin-bottom: 16px;
}

.page-hero-content p {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 200;
  font-size: 1rem;
  max-width: 540px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(8, 8, 26, 0.97);
    backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right var(--transition-med);
    border-left: 1px solid rgba(120, 160, 255, 0.06);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .content-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-split.reverse {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .gate-input {
    width: 280px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 70px 0;
  }

  .hero {
    min-height: 90vh;
    padding-top: 70px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .page-hero {
    min-height: 40vh;
    padding: 120px 20px 60px;
  }

  .level-card {
    padding: 30px 24px;
  }
}
