:root {
  /* DARK THEME */
  --color-bg: #0c0c0c;
  --color-bg-elevated: #141414;
  --color-bg-card: #1a1a1a;
  
  --color-text: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.70);
  --color-text-muted: rgba(255, 255, 255, 0.50);
  
  --color-accent: #c9a962;
  --color-accent-hover: #d4b87a;
  
  --color-border: rgba(255, 255, 255, 0.10);
  --color-border-accent: rgba(201, 169, 98, 0.30);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 6rem;

  --max-width: 1200px;
  --header-height: 80px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Animation Variables */
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Loading state prevents scrolling */
body.loading { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }

/* Container & Layout */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* -------------------------------------------
   BOUTIQUE LOADER WITH MORPHING ANIMATION
   ------------------------------------------- */
.page-loader { 
  position: fixed; inset: 0; z-index: 9999; 
  display: flex; align-items: center; justify-content: center; 
  background: #080808; 
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s, transform 0.8s var(--ease-out-expo);
}

.page-loader::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: loaderPulseRing 2s ease-in-out infinite;
}

@keyframes loaderPulseRing {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.2; }
}

.page-loader.hidden { 
  opacity: 0; 
  visibility: hidden; 
  transform: scale(1.05);
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.loader-logo {
  width: 100px;
  height: auto;
  opacity: 0;
  margin-bottom: 1rem;
  animation: loaderLogoReveal 0.8s var(--ease-out-expo) 0.2s forwards,
             loaderLogoPulse 2s ease-in-out 1s infinite,
             loaderLogoGlow 3s ease-in-out infinite;
}

@keyframes loaderLogoReveal {
  0% { opacity: 0; transform: scale(0.8) translateY(20px); filter: blur(10px); }
  100% { opacity: 0.9; transform: scale(1) translateY(0); filter: blur(0); }
}

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

@keyframes loaderLogoGlow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(201, 169, 98, 0)); }
  50% { filter: drop-shadow(0 0 20px rgba(201, 169, 98, 0.5)); }
}

.loader-bar-bg {
  width: 150px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loader-bar-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-hover));
  animation: loadProgress 1s var(--ease-out-expo) forwards;
  box-shadow: 0 0 20px var(--color-accent);
}

@keyframes loadProgress { 
  0% { width: 0%; } 
  100% { width: 100%; } 
}

/* -------------------------------------------
   LIGHTBOX WITH CINEMATIC REVEAL
   ------------------------------------------- */
#lightbox { 
  position: fixed; z-index: 10000; top: 0; left: 0; width: 100%; height: 100%; 
  background: rgba(0,0,0,0); 
  display: flex; justify-content: center; align-items: center; 
  opacity: 0; pointer-events: none; 
  transition: opacity 0.5s var(--ease-out-expo), background 0.5s var(--ease-out-expo);
  backdrop-filter: blur(0px);
}

#lightbox.visible { 
  opacity: 1; 
  pointer-events: auto; 
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
}

#lightbox img { 
  max-width: 90%; max-height: 90vh; 
  box-shadow: 0 0 100px rgba(0,0,0,0.8); 
  border: 1px solid var(--color-border);
  transform: scale(0.9) translateY(30px);
  opacity: 0;
  transition: transform 0.6s var(--ease-out-expo), opacity 0.6s var(--ease-out-expo);
}

#lightbox.visible img {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.lightbox-close { 
  position: absolute; top: 2rem; right: 2rem; color: white; 
  font-size: 2rem; cursor: pointer; opacity: 0; 
  transform: rotate(-90deg);
  transition: opacity 0.3s var(--ease-out-expo) 0.2s, transform 0.3s var(--ease-out-expo);
}

#lightbox.visible .lightbox-close {
  opacity: 0.7;
  transform: rotate(0deg);
}

.lightbox-close:hover { 
  opacity: 1; 
  transform: rotate(90deg) scale(1.1);
}

/* Zoom Trigger with Magnetic Effect */
.zoom-trigger { 
  cursor: zoom-in; 
  position: relative; 
  overflow: hidden;
  transform-style: preserve-3d;
}

.zoom-trigger::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
              rgba(201, 169, 98, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.zoom-trigger:hover::before {
  opacity: 1;
}

.zoom-trigger::after {
  content: "Click to Zoom";
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.8);
  background: rgba(0,0,0,0.85); color: white;
  padding: 0.75rem 1.5rem; border-radius: 30px;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em;
  opacity: 0; 
  transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
  pointer-events: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.zoom-trigger:hover::after { 
  opacity: 1; 
  transform: translate(-50%, -50%) scale(1);
}

/* -------------------------------------------
   HEADER WITH GLASS MORPHISM & MICRO-INTERACTIONS
   ------------------------------------------- */
.site-header { 
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; 
  height: var(--header-height); 
  background: rgba(12, 12, 12, 0.6); 
  backdrop-filter: blur(20px); 
  border-bottom: 1px solid transparent;
  transition: all 0.5s var(--ease-out-expo);
}

.site-header.scrolled {
  background: rgba(12, 12, 12, 0.95);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

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

.logo { 
  display: flex; 
  align-items: center; 
  height: 100%; 
  text-decoration: none;
  padding-right: 1.5rem;
  position: relative;
}

.logo-img { 
  max-height: 45px; width: auto; display: block;
  transition: transform 0.4s var(--ease-spring), filter 0.4s ease;
}

.logo:hover .logo-img {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.nav-toggle { 
  display: none; width: 32px; height: 32px; background: none; border: none; 
  flex-direction: column; gap: 5px; cursor: pointer;
  position: relative;
}

.nav-toggle span { 
  display: block; width: 100%; height: 2px; background: var(--color-text);
  transition: transform 0.3s var(--ease-out-expo), opacity 0.3s ease;
}

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

.nav-links a { 
  font-size: 0.8rem; font-weight: 500; text-transform: uppercase; 
  letter-spacing: 0.05em; color: rgba(255,255,255,0.7);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}

.nav-links a:hover { color: white; }

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Discord Button FIX: increased specificity to override default nav link padding and prevent squish */
.nav-links .btn-discord { 
  background: #5865F2; 
  color: white !important; 
  padding: 0.6rem 1.2rem !important; 
  display: inline-flex; 
  align-items: center; 
  gap: 0.5rem; 
  font-size: 0.75rem; 
  font-weight: 600; 
  text-transform: uppercase; 
  letter-spacing: 0.05em;
  border-radius: 4px; 
  transition: background 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  margin-left: 1rem;
  flex-shrink: 0; /* Prevents button from squishing */
  opacity: 1 !important;
}

/* Remove underline effect from Discord button */
.nav-links .btn-discord::after {
  display: none !important;
}

.btn-discord svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-discord:hover { 
  background: #4752c4; 
  color: white !important;
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

/* -------------------------------------------
   PARALLAX HERO WITH REVEAL ANIMATIONS
   ------------------------------------------- */
.parallax-wrapper {
  position: relative;
  z-index: 1;
}

.hero { 
  position: sticky; 
  top: 0;
  height: 100vh;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  overflow: hidden;
  z-index: 0; 
}

/* Floating Particles Background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(201, 169, 98, 0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 40%, rgba(201, 169, 98, 0.2) 0%, transparent 100%),
    radial-gradient(2px 2px at 60% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 90%, rgba(201, 169, 98, 0.25) 0%, transparent 100%),
    radial-gradient(2px 2px at 70% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 60%, rgba(201, 169, 98, 0.18) 0%, transparent 100%);
  background-size: 100% 100%;
  animation: particleFloat 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
  25% { transform: translateY(-20px) translateX(10px); opacity: 0.8; }
  50% { transform: translateY(-10px) translateX(-15px); opacity: 0.5; }
  75% { transform: translateY(-30px) translateX(5px); opacity: 0.7; }
}

/* Vignette Effect */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 2;
}

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

.hero-bg img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  opacity: 0.75;
  animation: heroImageReveal 1.5s var(--ease-out-expo) forwards,
             heroImageFloat 20s ease-in-out infinite;
  transform-origin: center;
}

@keyframes heroImageReveal {
  0% { transform: scale(1.2); filter: blur(20px) saturate(0); opacity: 0; }
  50% { filter: blur(10px) saturate(0.5); }
  100% { transform: scale(1); filter: blur(0) saturate(1); opacity: 0.75; }
}

@keyframes heroImageFloat {
  0%, 100% { transform: scale(1) translate(0, 0); }
  25% { transform: scale(1.02) translate(-0.5%, 0.5%); }
  50% { transform: scale(1.01) translate(0.5%, -0.5%); }
  75% { transform: scale(1.02) translate(0.5%, 0.5%); }
}

.hero-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(to bottom, rgba(12,12,12,0.3), rgba(12,12,12,1));
  animation: overlayReveal 2s var(--ease-out-expo) forwards;
}

@keyframes overlayReveal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

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

/* Text reveal animation for hero elements */
@keyframes heroTextReveal {
  0% { 
    opacity: 0; 
    transform: translateY(30px);
  }
  100% { 
    opacity: 1; 
    transform: translateY(0);
  }
}

.hero h1 { 
  font-family: var(--font-display); 
  font-size: clamp(3rem, 5vw, 6rem); 
  font-weight: 400; 
  line-height: 1.1; 
  margin-bottom: 0.5rem; 
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  opacity: 0;
  animation: heroTitleReveal 1.2s var(--ease-out-expo) 0.3s forwards;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes heroTitleReveal {
  0% { 
    opacity: 0; 
    transform: translateY(60px) rotateX(15deg);
    filter: blur(15px);
    letter-spacing: 0.3em;
  }
  100% { 
    opacity: 1; 
    transform: translateY(0) rotateX(0deg);
    filter: blur(0);
    letter-spacing: normal;
  }
}

.hero-tagline { 
  font-family: var(--font-display); 
  font-size: clamp(1.2rem, 2vw, 2rem); 
  font-style: italic; 
  color: var(--color-accent); 
  margin-bottom: 1.5rem; 
  text-shadow: 0 5px 20px rgba(0,0,0,0.5);
  opacity: 0;
  animation: heroTaglineReveal 1s var(--ease-out-expo) 0.6s forwards;
  position: relative;
}

.hero-tagline::before,
.hero-tagline::after {
  content: '—';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent);
  opacity: 0;
  animation: taglineDashReveal 0.8s var(--ease-out-expo) 1s forwards;
}

.hero-tagline::before { left: -40px; }
.hero-tagline::after { right: -40px; }

@keyframes heroTaglineReveal {
  0% { 
    opacity: 0; 
    transform: translateY(30px) scale(0.9);
    filter: blur(10px);
  }
  100% { 
    opacity: 1; 
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes taglineDashReveal {
  0% { opacity: 0; transform: translateY(-50%) translateX(0); }
  100% { opacity: 0.5; transform: translateY(-50%) translateX(0); }
}

.hero-sub { 
  font-size: 1.1rem; 
  color: #e0e0e0; 
  max-width: 600px; 
  margin: 0 auto 2.5rem; 
  font-weight: 300; 
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  opacity: 0;
  animation: heroSubReveal 1s var(--ease-out-expo) 0.8s forwards;
}

@keyframes heroSubReveal {
  0% { 
    opacity: 0; 
    transform: translateY(40px);
    filter: blur(8px);
  }
  100% { 
    opacity: 1; 
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-actions { 
  display: flex; gap: 1rem; justify-content: center;
  opacity: 0;
  animation: heroActionsReveal 1s var(--ease-out-expo) 1s forwards;
}

@keyframes heroActionsReveal {
  0% { 
    opacity: 0; 
    transform: translateY(30px) scale(0.95);
  }
  100% { 
    opacity: 1; 
    transform: translateY(0) scale(1);
  }
}

/* HERO DISCORD BUTTON - SLIDE ANIMATION (Matches Ghost Button Style) */
.hero-actions .btn-discord {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s var(--ease-out-expo);
  background: #5865F2 !important; 
  color: white !important;
  border: 1px solid #5865F2 !important;
}

.hero-actions .btn-discord::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #4752c4; /* Darker Discord Blue Fill */
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
  z-index: -1;
}

.hero-actions .btn-discord:hover {
  /* No translateY here to match ghost button static feel */
  box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
  background: #5865F2 !important; /* Keep base, overlay handles color change */
}

.hero-actions .btn-discord:hover::before {
  transform: translateY(0); /* Slide in fill */
}

.btn-lg { padding: 1rem 2rem; font-size: 0.9rem; }

.btn-ghost { 
  border: 1px solid var(--color-border); 
  color: white; 
  padding: 0.6rem 1.2rem; 
  font-size: 0.8rem; 
  text-transform: uppercase; 
  letter-spacing: 0.1em; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
  z-index: -1;
}

.btn-ghost:hover { 
  color: var(--color-bg);
  border-color: white;
}

.btn-ghost:hover::before {
  transform: translateY(0);
}

/* Hero Scroll Indicator */
.hero-scroll { 
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); 
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0;
  animation: heroTextReveal 1s var(--ease-out-expo) 1.2s forwards;
}

.hero-scroll span { 
  font-size: 0.7rem; text-transform: uppercase; 
  letter-spacing: 0.2em; color: var(--color-text-muted);
  animation: scrollTextPulse 2s ease-in-out infinite;
}

@keyframes scrollTextPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.scroll-line { 
  width: 1px; height: 50px; 
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--color-accent);
  animation: scrollLineDrop 1.5s var(--ease-out-expo) infinite;
}

@keyframes scrollLineDrop {
  0% { transform: translateY(-20px); opacity: 1; }
  70% { opacity: 1; }
  100% { transform: translateY(50px); opacity: 0; }
}

/* CONTENT LAYER */
.content-layer {
  position: relative;
  z-index: 2;
  background: var(--color-bg); 
  box-shadow: 0 -50px 120px rgba(0,0,0,1);
  padding-top: 0; 
}

/* Sections */
.section { padding: var(--space-xl) 0; position: relative; }
.section-header { margin-bottom: 4rem; }
.section-header-center { text-align: center; }

.section-tag { 
  display: inline-block; 
  color: var(--color-accent); 
  font-size: 0.7rem; 
  text-transform: uppercase; 
  letter-spacing: 0.2em; 
  margin-bottom: 0.5rem; 
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.section-tag::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  transform: translateX(-100%);
  animation: tagLineReveal 0.6s var(--ease-out-expo) 0.3s forwards;
}

@keyframes tagLineReveal {
  to { transform: translateX(0); }
}

.section-title { 
  font-family: var(--font-display); 
  font-size: 2.5rem; 
  font-weight: 400; 
  margin-bottom: 1rem; 
  color: white;
}

.section-intro { 
  max-width: 700px; 
  margin: 0 auto; 
  color: var(--color-text-secondary); 
  font-size: 1.1rem;
}

/* -------------------------------------------
   INTRO SECTION WITH TEXT REVEAL
   ------------------------------------------- */
.intro-section { padding: 5rem 0; text-align: center; }

.intro-statement { 
  font-family: var(--font-display); 
  font-size: clamp(1.8rem, 3vw, 2.5rem); 
  line-height: 1.4; 
  max-width: 800px; 
  margin: 0 auto 2rem auto; 
  color: #e0e0e0;
}

.intro-statement span { 
  color: var(--color-accent); 
  font-style: italic;
  position: relative;
  display: inline-block;
}

/* Single animation (scale 0 -> 1) instead of infinite pulse */
.intro-statement span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  transform: scaleX(0); /* Start hidden */
  transition: transform 1.5s var(--ease-out-expo) 0.5s; /* Smooth expansion */
}

/* Class added by app.js upon scroll */
.intro-statement.text-revealed span::after {
  transform: scaleX(1);
}

/* Gold Link Button with Arrow Animation */
.btn-link-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: all 0.4s var(--ease-out-expo);
}

.btn-link-gold::after {
  content: '→';
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.4s var(--ease-out-expo);
}

.btn-link-gold:hover {
  color: var(--color-accent-hover);
  border-bottom-color: var(--color-accent-hover);
}

.btn-link-gold:hover::after {
  transform: translateX(5px);
}

/* -------------------------------------------
   FEATURE CARDS WITH CLEAN HOVER EFFECTS
   ------------------------------------------- */
.features-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 3rem; 
  padding: 4rem 0;
}

.feature-card { 
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  padding: 2.5rem 2rem; 
  justify-content: flex-start; 
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

/* Simple top accent line */
.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card:hover { 
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrapper { 
  margin-bottom: 1.5rem; 
  color: var(--color-accent);
  transition: transform 0.4s var(--ease-out-expo);
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1);
}

.feature-card h3 { 
  font-family: var(--font-display); 
  font-size: 1.5rem; 
  margin-bottom: 1rem; 
  color: white;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: var(--color-accent);
}

.feature-card p { 
  color: var(--color-text-secondary); 
  font-size: 0.95rem; 
  line-height: 1.6;
}

/* -------------------------------------------
   FLEET SECTION WITH STAGGERED REVEALS
   ------------------------------------------- */
.section-fleet { 
  overflow: hidden; 
  background: #080808;
  position: relative;
}

/* Animated background pattern */
.section-fleet::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, transparent 49.5%, rgba(201, 169, 98, 0.03) 49.5%, rgba(201, 169, 98, 0.03) 50.5%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(201, 169, 98, 0.03) 49.5%, rgba(201, 169, 98, 0.03) 50.5%, transparent 50.5%);
  background-size: 100px 100px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

.fleet-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr 1fr; 
  gap: 2rem; 
  max-width: 1300px; 
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fleet-card-large {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  transition: all 0.7s var(--ease-out-expo);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Holographic shine effect */
.fleet-card-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    transparent 0%,
    rgba(255, 255, 255, 0.03) 25%,
    rgba(201, 169, 98, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 75%,
    transparent 100%
  );
  transition: left 0.8s var(--ease-out-expo);
  pointer-events: none;
  z-index: 2;
}

.fleet-card-large:hover::before {
  left: 150%;
}

/* Corner accents */
.fleet-card-large::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 50%, rgba(201, 169, 98, 0.1) 50%);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.fleet-card-large:hover::after {
  opacity: 1;
}

.fleet-card-large:hover { 
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(201, 169, 98, 0.1);
  transform: translateY(-15px) scale(1.02);
  border-color: var(--color-accent);
}

.fleet-images { 
  display: grid; 
  grid-template-rows: 1fr 1fr; 
  height: 350px; 
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.fleet-img-wrapper { 
  position: relative; 
  overflow: hidden; 
  height: 100%; 
  background: #000;
}

.fleet-img-wrapper img { 
  width: 100%; height: 100%; object-fit: cover; 
  transition: transform 1s var(--ease-out-expo), filter 0.8s var(--ease-out-expo);
}

.fleet-img-wrapper:hover img { 
  transform: scale(1.15);
  filter: brightness(1.15) contrast(1.05);
}

/* Image overlay gradient on hover */
.fleet-img-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(201, 169, 98, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.fleet-img-wrapper:hover::before {
  opacity: 1;
}

.img-label { 
  position: absolute; bottom: 10px; left: 10px; 
  background: rgba(0,0,0,0.85); color: var(--color-accent); 
  font-size: 0.6rem; text-transform: uppercase; 
  padding: 6px 12px; border: 1px solid var(--color-border); 
  pointer-events: none;
  transform: translateY(15px);
  opacity: 0;
  transition: all 0.5s var(--ease-out-expo);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.fleet-img-wrapper:hover .img-label {
  transform: translateY(0);
  opacity: 1;
}

.fleet-details { 
  padding: 1.5rem; flex-grow: 1; 
  display: flex; flex-direction: column;
  position: relative;
}

.fleet-title-row { margin-bottom: 0.5rem; }

.fleet-title-row h3 { 
  font-family: var(--font-display); 
  font-size: 1.5rem; 
  color: white; 
  margin: 0;
  transition: all 0.4s var(--ease-out-expo);
  display: inline-block;
}

.fleet-card-large:hover .fleet-title-row h3 {
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

.base-text { 
  font-size: 0.75rem; text-transform: uppercase; 
  letter-spacing: 0.1em; color: var(--color-text-muted); 
  display: block; margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.fleet-card-large:hover .base-text {
  color: var(--color-text-secondary);
}

.fleet-details p { 
  color: var(--color-text-secondary); 
  font-size: 0.9rem; 
  line-height: 1.5; 
  margin-bottom: 1.5rem;
}

/* -------------------------------------------
   IMMERSIVE JOIN CTA - CLEAN VERSION
   ------------------------------------------- */
.immersive-join { 
  position: relative; 
  padding: 10rem 0; 
  text-align: center; 
  background: url('images/careercta.png') no-repeat center center/cover; 
  overflow: hidden;
}

.immersive-overlay { 
  position: absolute; inset: 0; 
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(3px);
}

.immersive-content { 
  position: relative; z-index: 2; 
  max-width: 700px; margin: 0 auto;
}

.immersive-content h2 { 
  font-family: var(--font-display); 
  font-size: 3rem; 
  margin-bottom: 1.5rem; 
  color: white;
  text-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.immersive-content p { 
  font-size: 1.2rem; 
  color: rgba(255,255,255,0.8); 
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Gold Solid Button */
.btn-gold-solid {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.4s var(--ease-out-expo);
  border: 2px solid var(--color-accent);
  text-align: center;
}

.btn-gold-solid:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(201, 169, 98, 0.3);
}

/* -------------------------------------------
   ABOUT PAGE: FULLSCREEN HERO LAYOUT
   ------------------------------------------- */
.hero-fullscreen {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-fullscreen .hero-bg img {
  opacity: 0.5;
  animation: heroImageReveal 1.8s var(--ease-out-expo) forwards,
             heroImageFloat 25s ease-in-out infinite;
}

/* About Intro CTA (Centered in Hero) */
.about-intro-cta {
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.about-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.2;
  color: white;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroTextReveal 1s var(--ease-out-expo) 0.3s forwards;
}

.about-cta-title span {
  color: var(--color-accent);
  font-style: italic;
  position: relative;
}

.about-cta-title span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  animation: spanUnderline 1s var(--ease-out-expo) 1s forwards;
}

@keyframes spanUnderline {
  to { transform: scaleX(1); }
}

.about-cta-sub {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: heroTextReveal 1s var(--ease-out-expo) 0.6s forwards;
}

/* SCROLL INDICATOR WITH BOUNCE */
.scroll-down-trigger {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  animation: heroTextReveal 1s var(--ease-out-expo) 0.9s forwards;
}

.scroll-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  font-weight: 700;
  transition: all 0.4s var(--ease-out-expo);
}

.scroll-down-trigger:hover .scroll-label {
  color: white;
  letter-spacing: 0.3em;
}

.scroll-arrow-circle {
  width: 55px;
  height: 55px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-out-expo);
  background: rgba(255,255,255,0.02);
  position: relative;
  overflow: hidden;
}

.scroll-arrow-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.4s var(--ease-out-expo);
  z-index: -1;
}

.scroll-down-trigger:hover .scroll-arrow-circle {
  border-color: var(--color-accent);
  transform: translateY(5px);
}

.scroll-down-trigger:hover .scroll-arrow-circle::before {
  transform: scale(1);
}

.scroll-arrow-icon {
  width: 14px;
  height: 14px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  margin-top: -4px;
  animation: bounceArrow 2s infinite;
  transition: border-color 0.3s ease;
}

.scroll-down-trigger:hover .scroll-arrow-icon {
  border-color: var(--color-bg);
  animation: none;
}

@keyframes bounceArrow {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
  40% { transform: translateY(-8px) rotate(45deg); }
  60% { transform: translateY(-4px) rotate(45deg); }
}

/* -------------------------------------------
   SPLIT SECTIONS WITH REVEAL ANIMATIONS
   ------------------------------------------- */
.split-section { 
  display: flex; 
  align-items: center; 
  gap: 5rem; 
  margin-bottom: 8rem;
  position: relative;
}

.split-section:nth-child(even) { 
  flex-direction: row-reverse; 
}

.split-content { 
  flex: 1;
}

/* Image Wrapper with Frame Effect */
.split-image-wrapper { 
  flex: 1.3; 
  position: relative;
  background: var(--color-bg-elevated); 
  padding: 12px; 
  border: 1px solid var(--color-border);
  border-radius: 4px; 
  box-shadow: 0 25px 60px rgba(0,0,0,0.6); 
  transition: all 0.5s var(--ease-out-expo);
  cursor: pointer;
}

.split-image-wrapper:hover {
  transform: translateY(-10px); 
  border-color: var(--color-accent); 
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
}

.split-image-wrapper img { 
  width: 100%; 
  height: auto; 
  display: block;
  border-radius: 2px;
  filter: brightness(0.95) contrast(1.05); 
  transition: all 0.5s var(--ease-out-expo);
  pointer-events: auto;
}

.split-image-wrapper:hover img {
  filter: brightness(1.05) contrast(1.08);
}

.split-tag { 
  color: var(--color-accent); 
  font-size: 0.75rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.15em; 
  margin-bottom: 1rem; 
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.split-tag::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.4s var(--ease-out-expo);
}

.split-content:hover .split-tag::after {
  width: 60px;
}

.split-content h3 { 
  font-family: var(--font-display); 
  font-size: 2.25rem; 
  color: white; 
  margin-bottom: 1.5rem; 
  line-height: 1.2;
  transition: color 0.4s ease;
}

.split-content:hover h3 {
  color: var(--color-accent);
}

.split-content p { 
  color: var(--color-text-secondary); 
  margin-bottom: 1.5rem; 
  font-size: 1.05rem; 
  line-height: 1.7;
}

/* -------------------------------------------
   CAREERS "ONE PAGE" LAYOUT
   ------------------------------------------- */
.careers-page-wrapper {
  min-height: 100vh;
  padding-top: var(--header-height); 
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.careers-bg-fixed {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.careers-bg-fixed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: careersBgReveal 2s var(--ease-out-expo) forwards;
}

@keyframes careersBgReveal {
  0% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0.3; transform: scale(1); }
}

.careers-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem; 
}

.careers-title-row {
  text-align: center;
}

.careers-main-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: white;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: heroTextReveal 1s var(--ease-out-expo) 0.3s forwards;
}

.careers-subtitle {
  color: var(--color-accent);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  opacity: 0;
  animation: heroTextReveal 1s var(--ease-out-expo) 0.1s forwards;
}

/* -------------------------------------------
   CAREER CARDS WITH STAGGER & GLOW
   ------------------------------------------- */
.roles-grid-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.career-card-compact {
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid var(--color-border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s var(--ease-out-expo);
  height: 100%;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.career-card-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

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

.career-card-compact::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 169, 98, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.career-card-compact:hover::after {
  opacity: 1;
}

.career-card-compact:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  background: rgba(30, 30, 30, 0.95);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.career-card-compact h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.career-card-compact:hover h2 {
  color: var(--color-accent);
}

.career-card-compact .role-descriptor {
  color: var(--color-accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  display: block;
}

.career-card-compact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

/* Role Select Button with Fill Animation */
.btn-role-select {
  display: block;
  width: 100%;
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  padding: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  transition: all 0.4s var(--ease-out-expo);
  text-align: center;
  margin-top: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-role-select::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
  z-index: -1;
}

.btn-role-select:hover::before {
  transform: translateY(0);
}

.btn-role-select:hover {
  color: var(--color-bg);
}

/* -------------------------------------------
   HIRING STRIP WITH NUMBER ANIMATIONS
   ------------------------------------------- */
.hiring-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--color-border);
  padding-top: 3rem;
}

.step-item-compact {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.4;
  transition: all 0.4s var(--ease-out-expo);
}

.step-item-compact:hover .step-num {
  opacity: 1;
  transform: scale(1.1);
}

.step-text h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.step-item-compact:hover .step-text h4 {
  color: var(--color-accent);
}

.step-text p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.discord-highlight { 
  background-color: rgba(88, 101, 242, 0.2); 
  color: #5865F2; 
  padding: 2px 8px; 
  border-radius: 4px; 
  font-family: monospace; 
  font-size: 0.85rem; 
  font-weight: 600;
  transition: all 0.3s ease;
}

.discord-highlight:hover {
  background-color: rgba(88, 101, 242, 0.4);
}

/* -------------------------------------------
   ROLE MODAL WITH CINEMATIC REVEAL
   ------------------------------------------- */
.role-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s var(--ease-out-expo);
}

.role-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);
}

.role-modal-content {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-accent);
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem;
  position: relative;
  transform: translateY(50px) scale(0.95);
  opacity: 0;
  transition: all 0.5s var(--ease-out-expo);
  box-shadow: 0 0 100px rgba(201, 169, 98, 0.2);
}

.role-modal-overlay.visible .role-modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close-abs {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s var(--ease-out-expo);
}

.modal-close-abs:hover { 
  color: white;
  background: rgba(255,255,255,0.1);
  transform: rotate(90deg);
}

.details-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.5rem;
}

.details-header-row h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: white;
}

.btn-apply-header {
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 0.6rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.4s var(--ease-out-expo);
  text-decoration: none;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.btn-apply-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-apply-header:hover::before {
  left: 100%;
}

.btn-apply-header:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

/* NEW DISCLAIMER STYLING */
.modal-disclaimer {
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid var(--color-accent);
  color: #ffffff;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  line-height: 1.5;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.disclaimer-icon {
  font-size: 1.2rem;
  line-height: 1;
  filter: drop-shadow(0 0 5px rgba(201, 169, 98, 0.5));
}

.details-main-desc {
  font-size: 1.1rem;
  color: #e0e0e0;
  max-width: 800px;
  margin-bottom: 2rem; /* Reduced slightly to account for disclaimer */
  line-height: 1.6;
}

.details-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.detail-heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.detail-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--color-accent);
}

.detail-list {
  list-style: none;
}

.detail-list li {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.detail-list li:hover {
  color: white;
  transform: translateX(5px);
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.detail-list li:hover::before {
  transform: scale(1.5);
}

/* -------------------------------------------
   FOOTER WITH SUBTLE ANIMATIONS
   ------------------------------------------- */
.site-footer { 
  padding: 3rem 0; 
  border-top: 1px solid var(--color-border); 
  background: var(--color-bg); 
  position: relative; 
  z-index: 2;
}

.footer-bottom { 
  display: flex; flex-direction: column; align-items: center; 
  text-align: center; gap: 0.5rem; 
  font-size: 0.8rem; color: var(--color-text-muted);
}

.footer-disclaimer {
  transition: color 0.3s ease;
}

.footer-disclaimer:hover {
  color: var(--color-text-secondary);
}

/* -------------------------------------------
   SCROLL REVEAL ANIMATION CLASSES
   ------------------------------------------- */
.reveal-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-fade.revealed {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

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

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

/* Stagger delays for grid items */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* -------------------------------------------
   RESPONSIVE BREAKPOINTS
   ------------------------------------------- */
@media (max-width: 1024px) {
  .roles-grid-compact { grid-template-columns: 1fr 1fr; }
  .details-columns { grid-template-columns: 1fr; gap: 2rem; }
  .careers-container { overflow-y: auto; }
}

@media (max-width: 900px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .split-section, .split-section:nth-child(even) { flex-direction: column; gap: 3rem; margin-bottom: 6rem; }
  .split-image-wrapper { width: 100%; }
  .split-content h3 { font-size: 1.75rem; }
}

@media (max-width: 600px) {
  .roles-grid-compact { grid-template-columns: 1fr; }
  .hiring-strip { grid-template-columns: 1fr; }
  .careers-main-title { font-size: 2rem; }
  .role-modal-content { padding: 1.5rem; }
  .details-header-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .details-header-row h2 { font-size: 2rem; }
  .hero h1 { font-size: 2.5rem; }
  .immersive-content h2 { font-size: 2rem; }
}

/* -------------------------------------------
   CUSTOM SCROLLBAR
   ------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* Selection Color */
::selection {
  background: var(--color-accent);
  color: var(--color-bg);
}