/* ========================================
   eeMe V2 - Correct Design
   ======================================== */

/* CSS Variables */
:root {
  --eeme-dark: #1a1a1a;
  --eeme-darker: #141414;
  --eeme-card: #242424;
  --eeme-teal: #36b8b8;
  --eeme-teal-hover: #2a9a9a;
  --eeme-text: #ffffff;
  --eeme-text-secondary: #b0b0b0;
  --eeme-text-muted: #808080;
  --ease-expo-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--eeme-dark);
  color: var(--eeme-text);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.font-display {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
}

/* Container */
.max-w-7xl {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .max-w-7xl {
    padding: 0 2rem;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--eeme-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--eeme-teal);
  border-radius: 4px;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 4s ease-in-out infinite;
}

/* Utility Classes */
.text-white { color: #fff; }
.text-eeme-teal { color: var(--eeme-teal); }
.text-eeme-text-secondary { color: var(--eeme-text-secondary); }
.text-eeme-text-muted { color: var(--eeme-text-muted); }
.bg-eeme-dark { background: var(--eeme-dark); }
.bg-eeme-darker { background: var(--eeme-darker); }
.bg-eeme-card { background: var(--eeme-card); }

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--eeme-dark);
  overflow: hidden;
}

/* Grid Background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    linear-gradient(rgba(54, 184, 184, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 184, 184, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Animated Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.orb-1 {
  top: 25%;
  left: 25%;
  width: 384px;
  height: 384px;
  background: rgba(54, 184, 184, 0.2);
  animation: pulse-glow 4s ease-in-out infinite;
}

.orb-2 {
  bottom: 25%;
  right: 25%;
  width: 320px;
  height: 320px;
  background: rgba(54, 184, 184, 0.15);
  animation: pulse-glow 4s ease-in-out infinite;
  animation-delay: 2s;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 8rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(54, 184, 184, 0.1);
  border: 1px solid rgba(54, 184, 184, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--eeme-teal);
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

/* Hero Title */
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: white;
}

.hero-title span {
  color: var(--eeme-teal);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

/* Hero Description */
.hero-desc {
  font-size: 1.125rem;
  color: var(--eeme-text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--eeme-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  color: white;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s var(--ease-expo-out);
}

.newsletter-input::placeholder {
  color: var(--eeme-text-muted);
}

.newsletter-input:focus {
  border-color: rgba(54, 184, 184, 0.5);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--eeme-teal);
  color: var(--eeme-dark);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s var(--ease-expo-out);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--eeme-teal-hover);
  transform: translateY(-2px);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.form-note {
  font-size: 0.875rem;
  color: var(--eeme-text-muted);
}

/* Floating Cards */
.floating-cards {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: none;
}

@media (min-width: 1024px) {
  .floating-cards {
    display: block;
  }
}

/* Ensure cards are visible */
.floating-cards:empty::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(54, 184, 184, 0.1), rgba(54, 184, 184, 0.05));
  border-radius: 1rem;
  border: 2px dashed rgba(54, 184, 184, 0.2);
}

.floating-card {
  position: absolute;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--eeme-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 1;
}

.floating-card:hover {
  transform: translateY(-5px) scale(1.02) !important;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6), 0 0 30px rgba(54, 184, 184, 0.2);
  border-color: rgba(54, 184, 184, 0.3);
}

/* Static positions for fallback */
.floating-card-1 {
  top: 0;
  right: 0;
  width: 192px;
  height: 256px;
}

.floating-card-2 {
  top: 5rem;
  left: 0;
  width: 176px;
  height: 224px;
  animation-delay: 1s;
}

.floating-card-3 {
  bottom: 2.5rem;
  right: 5rem;
  width: 160px;
  height: 208px;
  animation-delay: 2s;
}

.floating-card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.floating-card:hover .floating-card-image {
  transform: scale(1.1);
}

.floating-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.floating-card-name {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.floating-card-category {
  color: var(--eeme-teal);
  font-size: 0.8rem;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Legacy support */
.floating-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.floating-card-info p:first-child {
  color: white;
  font-weight: 600;
  margin: 0;
}

.floating-card-info p:last-child {
  color: var(--eeme-teal);
  font-size: 0.875rem;
  margin: 0.25rem 0 0;
}

/* ========================================
   TALENT GRID SECTION
   ======================================== */
.talent-section {
  padding: 6rem 0;
  background: var(--eeme-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.section-title span {
  color: var(--eeme-teal);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  color: var(--eeme-text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Masonry Grid */
.talent-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .talent-masonry {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .talent-masonry {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Talent Card */
.talent-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--eeme-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s var(--ease-expo-out);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.talent-card:hover {
  border-color: rgba(54, 184, 184, 0.3);
  transform: translateY(-4px);
}

.talent-card.featured {
  grid-row: span 2;
}

.talent-card-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.talent-card.featured .talent-card-image {
  height: 100%;
  min-height: 25rem;
}

.talent-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-expo-out);
}

.talent-card:hover .talent-card-image img {
  transform: scale(1.1);
}

.talent-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  opacity: 0.8;
  transition: opacity 0.3s;
}

.talent-card:hover .talent-card-overlay {
  opacity: 1;
}

.talent-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.talent-card-category {
  color: var(--eeme-teal);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.talent-card-name {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.talent-card-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0);
  font-size: 0.875rem;
  transform: translateY(1rem);
  transition: all 0.3s var(--ease-expo-out);
}

.talent-card:hover .talent-card-link {
  color: rgba(255, 255, 255, 1);
  transform: translateY(0);
}

/* View All Button */
.view-all-container {
  text-align: center;
  margin-top: 3rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 1px solid var(--eeme-teal);
  color: var(--eeme-teal);
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s var(--ease-expo-out);
}

.btn-outline:hover {
  background: var(--eeme-teal);
  color: var(--eeme-dark);
}

.btn-outline svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   MISSION SECTION
   ======================================== */
.mission-section {
  padding: 6rem 0;
  background: var(--eeme-darker);
  position: relative;
  overflow: hidden;
}

.mission-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: rgba(54, 184, 184, 0.05);
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
}

.mission-content {
  position: relative;
  z-index: 1;
}

.mission-statement {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 5rem;
}

.mission-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: white;
}

.mission-title span {
  color: var(--eeme-teal);
}

@media (min-width: 768px) {
  .mission-title {
    font-size: 3.5rem;
  }
}

.mission-desc {
  font-size: 1.25rem;
  color: var(--eeme-text-secondary);
  line-height: 1.7;
}

/* Values Grid */
.values-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  padding: 2rem;
  background: rgba(36, 36, 36, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  transition: all 0.3s var(--ease-expo-out);
}

.value-card:hover {
  border-color: rgba(54, 184, 184, 0.3);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(54, 184, 184, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--eeme-teal);
  transition: background 0.3s;
}

.value-card:hover .value-icon {
  background: rgba(54, 184, 184, 0.2);
}

.value-icon svg {
  width: 28px;
  height: 28px;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.value-desc {
  color: var(--eeme-text-secondary);
  line-height: 1.6;
}

/* ========================================
   SPOTLIGHT PROFILES SECTION
   ======================================== */
.spotlight-section {
  padding: 6rem 0;
  background: var(--eeme-dark);
}

.spotlight-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .spotlight-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.spotlight-nav {
  display: none;
}

@media (min-width: 768px) {
  .spotlight-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

.spotlight-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.spotlight-nav-btn:hover {
  background: var(--eeme-teal);
  border-color: var(--eeme-teal);
  color: var(--eeme-dark);
}

.spotlight-nav-btn svg {
  width: 20px;
  height: 20px;
}

/* Horizontal Scroll Container */
.spotlight-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin: 0 -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.spotlight-card {
  flex-shrink: 0;
  width: 288px;
  text-decoration: none;
}

.spotlight-card-inner {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--eeme-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s var(--ease-expo-out);
}

.spotlight-card-inner:hover {
  border-color: rgba(54, 184, 184, 0.3);
}

.spotlight-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-expo-out);
}

.spotlight-card-inner:hover .spotlight-image img {
  transform: scale(1.1);
}

.spotlight-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
}

.spotlight-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.spotlight-role {
  color: var(--eeme-teal);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.spotlight-name {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.spotlight-company {
  color: var(--eeme-text-muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.spotlight-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0);
  font-size: 0.875rem;
  font-weight: 500;
  transform: translateY(0.5rem);
  transition: all 0.3s var(--ease-expo-out);
}

.spotlight-card-inner:hover .spotlight-link {
  color: rgba(255, 255, 255, 1);
  transform: translateY(0);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 6rem 0;
  background: var(--eeme-dark);
  position: relative;
  overflow: hidden;
}

.cta-glow-1 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 384px;
  height: 384px;
  background: rgba(54, 184, 184, 0.1);
  border-radius: 50%;
  filter: blur(150px);
}

.cta-glow-2 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 320px;
  height: 320px;
  background: rgba(54, 184, 184, 0.05);
  border-radius: 50%;
  filter: blur(120px);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(54, 184, 184, 0.1);
  border: 1px solid rgba(54, 184, 184, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--eeme-teal);
  font-weight: 500;
  margin-bottom: 2rem;
}

.cta-badge svg {
  width: 16px;
  height: 16px;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-title span {
  color: var(--eeme-teal);
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3.5rem;
  }
}

.cta-desc {
  font-size: 1.25rem;
  color: var(--eeme-text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s var(--ease-expo-out);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* CTA Stats */
.cta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--eeme-teal);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .cta-stat-value {
    font-size: 2.5rem;
  }
}

.cta-stat-label {
  color: var(--eeme-text-muted);
  font-size: 0.875rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--eeme-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.footer-logo span {
  color: var(--eeme-teal);
}

.footer-desc {
  color: var(--eeme-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--eeme-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eeme-text-secondary);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social-link:hover {
  color: var(--eeme-teal);
  border-color: rgba(54, 184, 184, 0.3);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-title {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--eeme-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--eeme-teal);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  color: var(--eeme-text-muted);
  font-size: 0.875rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--eeme-text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--eeme-teal);
}

/* ========================================
   UTILITIES & HIDING OLD ELEMENTS
   ======================================== */
.space-y-8 > * + * {
  margin-top: 2rem;
}

/* Hide old design elements - only when new design is active */
.old-design .articles-section,
.old-design .talents-section,
.old-design .quote-section,
.old-design .cta-section:not(.cta-section) {
  display: none !important;
}

/* Ensure only one footer shows */
footer.footer {
  display: block !important;
}

/* Hide other footers */
body > footer:not(.footer),
#main ~ footer:not(.footer) {
  display: none !important;
}
