/* =============================================
   O‘zYYE — O‘zbekiston Yetakchi Yoshlari Ensiklopediyasi
   Premium Dark Edition (Senior Frontend)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;900&family=Space+Grotesk:wght@500;700&display=swap');

@view-transition {
  navigation: auto;
}

/* ===== CSS VARIABLES ===== */
:root {
  /* Ultra-Premium Dark Theme (Linear/Stripe style) */
  --bg-body: #060913; /* Deep navy-black */
  --bg-surface: rgba(13, 19, 36, 0.85);
  --bg-surface-hover: rgba(20, 29, 54, 0.95);
  --bg-surface-active: rgba(30, 42, 75, 0.95);
  
  /* Text */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-tertiary: #64748b;

  /* Accent Colors (From Logo) */
  --accent-primary: #00A6EB; /* Bright Cyan/Blue */
  --accent-primary-hover: #008cc7;
  --accent-secondary: #0D2C54; /* Deep Navy */
  --accent-gold: #C9A050; /* Premium Gold */
  --accent-green: #009B4D; /* Green accent */

  /* Borders & Glows */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-highlight: rgba(255, 255, 255, 0.12);
  
  --glow-primary: 0 0 40px rgba(0, 166, 235, 0.15);
  --glow-gold: 0 0 40px rgba(201, 160, 80, 0.15);
  
  /* Soft Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4);

  /* Fonts */
  --font-main: 'Outfit', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;

  /* Spacing & Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --header-h: 80px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-body);
}

body {
  font-family: var(--font-main);
  color: var(--text-primary);
  background-color: var(--bg-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Ambient Background Glows */
body::before, body::after {
  content: '';
  position: fixed;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.15;
  animation: float 20s infinite alternate ease-in-out;
}

body::before {
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, var(--accent-primary), transparent 60%);
}

body::after {
  bottom: -20%;
  right: -10%;
  background: radial-gradient(circle, #0055FF, transparent 60%);
  animation-delay: -10s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5%, 10%) scale(1.1); }
}

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

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

ul, ol {
  list-style: none;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 32px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, .section-title, .hero-title {
  text-wrap: balance;
  font-family: var(--font-heading);
}

p, .section-desc {
  text-wrap: pretty;
}

.section-label {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 48px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 1px;
  background: var(--accent-gold);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 600px;
}

.section-header {
  margin-bottom: 80px;
  max-width: 720px;
}

.section-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 56px;
  padding-top: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: var(--radius-md); /* Solid professional rounded */
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  transition: opacity var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, #00A6EB 0%, #0066FF 100%);
  color: #ffffff !important;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 166, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 166, 235, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-highlight);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: #00A6EB;
  color: #ffffff;
  box-shadow: 0 0 25px rgba(0, 166, 235, 0.25);
  background: rgba(0, 166, 235, 0.1);
  transform: translateY(-3px);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 24px; /* Floating from top */
  inset-inline: 0;
  z-index: 1000;
  height: auto;
  display: flex;
  justify-content: center;
  pointer-events: none; /* Let clicks pass through empty areas */
}

/* Modern Shrink Header */
@supports (animation-timeline: scroll()) {
  @keyframes shrink-header {
    to {
      transform: scale(0.96) translateY(-10px);
      opacity: 0.95;
    }
  }
  
  .site-header {
    animation: shrink-header auto linear both;
    animation-timeline: scroll(block root);
    animation-range: 0px 150px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: max-content; /* Floating island style */
  max-width: calc(100% - 32px); /* keep some margin on mobile */
  height: 76px;
  background: rgba(10, 14, 26, 0.94); /* Dark opaque background */
  padding: 0 20px 0 28px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  pointer-events: auto; /* Re-enable clicks inside the pill */
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 166, 235, 0.15);
  gap: 32px;
}

.logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 166, 235, 0.3));
  transition: transform var(--transition), opacity var(--transition);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.logo-link:hover .logo-img {
  opacity: 0.9;
  transform: scale(1.05);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  background: transparent;
  padding: 0;
  border: none;
  backdrop-filter: none;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00A6EB;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
}

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

.nav-link.active {
  color: var(--text-primary);
}

.nav-cta {
  background: linear-gradient(135deg, #00A6EB 0%, #0066FF 100%);
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 700;
  border: none;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 166, 235, 0.3);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #00B5FF 0%, #1A75FF 100%);
  box-shadow: 0 6px 20px rgba(0, 166, 235, 0.5);
  transform: scale(1.03);
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 40px);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: var(--bg-surface-hover);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  color: var(--accent-primary);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  white-space: normal;
  height: auto;
  line-height: 1.4;
  max-width: 100%;
  text-align: center;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.main-hero-logo {
  width: 100%;
  max-width: 550px;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 32px;
  letter-spacing: -0.04em;
}

.hero-title span {
  display: block;
}

.hero-accent {
  background: linear-gradient(135deg, #ffffff 0%, #00A6EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-accent.gold {
  background: linear-gradient(135deg, #00A6EB 0%, #0066FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 540px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  perspective: 1000px;
}

/* Glass panel behind hero image */
.hero-image::after {
  content: '';
  position: absolute;
  inset: -12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  z-index: -1;
  transition: all var(--transition-slow);
}

.hero-image:hover::after {
  border-color: var(--border-highlight);
  transform: translate(8px, 8px);
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-slow);
}

.hero-image:hover .hero-img {
  transform: scale(1.02);
}

/* ===== ABOUT (STATS) SECTION ===== */
.about-section {
  padding: 160px 0;
  position: relative;
  border-top: 1px solid var(--border-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  background: var(--bg-surface-hover);
  border-color: rgba(0, 166, 235, 0.35);
  box-shadow: 0 10px 35px rgba(0, 166, 235, 0.15);
  transform: translateY(-6px);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 30%, #00A6EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ===== LEADERS CARDS ===== */
.content-section {
  padding: 120px 0;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.leader-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.leader-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  pointer-events: none;
  transition: all var(--transition);
}

.leader-card:hover {
  transform: translateY(-8px);
  background: var(--bg-surface-hover);
  border-color: rgba(0, 166, 235, 0.4);
  box-shadow: 0 15px 35px rgba(0, 166, 235, 0.15);
}

.leader-photo-wrap {
  width: 100%;
  padding-top: 125%;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
}

.leader-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-slow);
}

.leader-card:hover .leader-photo {
  transform: scale(1.05);
}

.leader-info {
  padding: 28px 24px;
}

.leader-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.leader-sphere {
  font-size: 0.8rem;
  color: #00A6EB;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== JOURNAL SECTION ===== */
.journal-section {
  padding: 160px 0;
  background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.03));
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.journal-cover-wrap {
  perspective: 1200px;
}

.journal-cover-img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  transition: all var(--transition-slow);
}

.journal-cover-wrap:hover .journal-cover-img {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 0 1px #00A6EB;
}

.journal-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
}

.journal-feature {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.journal-feature:hover {
  background: var(--bg-surface-hover);
  border-color: var(--accent-primary-hover);
  transform: translateX(10px);
}

/* ===== QUOTES / TOP 100 SECTION ===== */
.quotes-section {
  padding: 120px 0;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.quote-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.quote-card:hover {
  border-color: rgba(0, 166, 235, 0.4);
  background: rgba(0, 166, 235, 0.03);
  transform: translateY(-6px);
}

.quote-mark {
  font-size: 4rem;
  font-family: Georgia, serif;
  color: #00A6EB;
  opacity: 0.6;
  line-height: 0;
  margin-bottom: 32px;
}

.quote-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-weight: 300;
  margin-bottom: 40px;
  flex-grow: 1;
}

.quote-author strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.quote-author span {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Form Styles */
.apply-form {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.form-group label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border-subtle);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #00A6EB;
  background: rgba(0, 166, 235, 0.05);
  box-shadow: 0 0 15px rgba(0, 166, 235, 0.15);
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 80px;
  background: #020203;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-logo {
  height: 64px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.social-link:hover {
  color: #fff;
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-nav-title {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-nav-list a {
  color: var(--text-secondary);
  display: block;
  padding: 8px 0;
}

.footer-nav-list a:hover {
  color: #00A6EB;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 32px 0;
  text-align: center;
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

/* Native CSS Scroll-driven animations */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes fade-slide-up {
      from { opacity: 0; transform: translateY(60px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }

    .stat-card, .leader-card, .quote-card, .journal-feature, .about-text {
      animation: fade-slide-up linear both;
      animation-timeline: view(block);
      animation-range: entry 5% cover 25%;
    }
  }
}

/* ===== JOURNAL ISSUE CARDS ===== */
.journal-issue-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.journal-issue-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-6px);
  box-shadow: var(--glow-gold);
}

.journal-issue-cover {
  height: 340px;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.journal-issue-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
}

.journal-issue-card:hover .journal-issue-cover img {
  transform: scale(1.05);
}

.journal-issue-body {
  padding: 24px;
}

.journal-issue-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.journal-issue-badge {
  background: var(--accent-gold);
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

.journal-issue-badge.upcoming {
  background: rgba(255,255,255,0.1);
  color: var(--text-secondary);
}

.journal-issue-date {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

.journal-issue-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.journal-issue-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ===== MOBILE MENU & BURGER ===== */
.burger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  position: absolute;
  left: 8px;
  transition: all var(--transition);
}

.burger-btn span:nth-child(1) { top: 12px; }
.burger-btn span:nth-child(2) { top: 19px; }
.burger-btn span:nth-child(3) { top: 26px; }

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 19px;
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 19px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 7, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 120px;
  padding-bottom: 40px;
  overflow-y: auto;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-nav-cta {
  display: inline-block;
  margin-top: 16px;
  background: var(--accent-gold);
  color: #000;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
}

/* Mobile */
@media (max-width: 1200px) {
  .nav-list { display: none; }
  .burger-btn { display: block; }
}

@media (min-width: 1201px) {
  .mobile-menu { display: none !important; }
}

@media (max-width: 1024px) {
  .hero-main, .about-grid, .journal-grid, .footer-inner {
    grid-template-columns: 1fr;
    gap: 64px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}


/* ===== MOBILE RESPONSIVE TWEAKS ===== */
@media (max-width: 768px) {
  .container {
    padding-inline: 16px;
  }
  
  /* Layout Gaps & Padding */
  .hero-main, .about-grid, .journal-grid, .footer-inner, .quotes-grid, .leaders-grid {
    gap: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .about-section, .journal-section, .quotes-section {
    padding: 80px 0;
  }
  
  .content-section {
    padding: 60px 0;
  }
  
  .site-footer {
    padding-top: 40px;
  }
  
  .footer-inner {
    margin-bottom: 40px;
  }

  /* Typography */
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  /* Buttons */
  .hero-buttons {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  /* Cards */
  .stat-card {
    padding: 24px 16px;
  }
  
  .quote-card {
    padding: 32px 24px;
  }
  
  .apply-form {
    padding: 32px 20px;
  }
  
  /* Header Inner */
  .header-inner {
    padding: 0 16px 0 20px;
    height: 64px;
  }
  
  .logo-img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .leaders-grid, .quotes-grid {
    grid-template-columns: 1fr;
  }
  
  .journal-feature {
    padding: 16px;
    gap: 12px;
  }
}
