:root {
  --bg: #0b0c0f;
  --bg-soft: #0f1117;
  --text: #e6e8ef;
  --muted: #aeb4c2;
  --brand: #9a7bff;
  --brand-2: #17c9ff;
  --accent: #ffb4b4;
  --card: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.1);
  --radius: 16px;
  --shadow: 0 8px 30px rgba(0,0,0,0.35);
  --ease: cubic-bezier(.2,.7,0,.98);
  --speed-1: 180ms;
  --speed-2: 360ms;
  --speed-3: 800ms;
  --header-h: 72px;
}

.light {
  --bg: #f6f7fb;
  --bg-soft: #ffffff;
  --text: #0b0c0f;
  --muted: #505664;
  --card: rgba(255,255,255,0.9);
  --border: rgba(13,14,19,0.12);
  --shadow: 0 8px 30px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 99px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.3);
}

html, body { height: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 10% 10%, rgba(154,123,255,0.18), transparent 60%),
    radial-gradient(1200px 800px at 90% 10%, rgba(23,201,255,0.14), transparent 60%),
    linear-gradient(180deg, #0b0c0f 0%, #0b0c0f 100%);
  background-color: var(--bg);
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"160\" height=\"160\" viewBox=\"0 0 160 160\"><filter id=\"n\"><feTurbulence type=\"fractalNoise\" baseFrequency=\"0.85\" numOctaves=\"2\" stitchTiles=\"stitch\"/></filter><rect width=\"100%\" height=\"100%\" filter=\"url(%23n)\" opacity=\"0.04\"/></svg>');
  mix-blend-mode: overlay;
  z-index: 0;
}

.aurora{
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 60vh;
  background:
    radial-gradient(60% 80% at 15% 30%, rgba(154,123,255,0.25), transparent 60%),
    radial-gradient(60% 80% at 85% 20%, rgba(23,201,255,0.22), transparent 60%),
    conic-gradient(from 180deg at 50% 50%, rgba(154,123,255,0.15), rgba(23,201,255,0.1), transparent 70%);
  filter: blur(60px) saturate(140%);
  transform: translateY(-15%);
  animation: auroraMove 14s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}
@keyframes auroraMove{
  from { transform: translateY(-15%) scale(1); opacity: .9; }
  to   { transform: translateY(-5%) scale(1.06); opacity: 1; }
}

.grid3d{
  position: fixed;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0/60px 60px,
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0/60px 60px;
  transform: perspective(800px) rotateX(60deg) translateY(-30%);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent, black 30%, transparent 100%);
  animation: gridDrift 30s linear infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes gridDrift{
  from { background-position: 0 0, 0 0; }
  to   { background-position: 0 600px, 0 600px; }
}

.container {
  width: 100%;
  max-width: 1200px;
  padding-inline: 16px;
  margin: 0 auto;
}

/* Neue Hero Styles */
.hero-center {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,12,15,0.4) 0%, rgba(11,12,15,0.6) 100%),
              radial-gradient(circle at center, transparent 0%, rgba(11,12,15,0.8) 100%);
  z-index: 1;
}

.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 32px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.hero-nav .brand-name {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 800;
  color: white;
  position: absolute;
  left: 48px;
}
.hero-nav nav {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  padding: 6px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.hero-nav nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.hero-nav nav a:hover {
  color: white;
  background: rgba(255,255,255,0.1);
}

.hero-content-center {
  position: relative;
  z-index: 5;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-content-center h1 {
  font-size: clamp(64px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: -2px;
  margin: 0;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-content-center .overline {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  margin: 0;
  padding: 8px 16px;
  backdrop-filter: blur(10px);
}

.hero-content-center .lede {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin-bottom: 16px;
}

.cta-row.centered {
  justify-content: center;
  margin-bottom: 24px;
}
.cta-row.centered .btn {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 999px;
}
.cta-row.centered .btn-ghost {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  backdrop-filter: blur(10px);
}
.cta-row.centered .btn-ghost:hover {
  background: rgba(255,255,255,0.2);
}

.social-row {
  display: flex;
  gap: 24px;
  margin-top: 12px;
}
.social-row a {
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}
.social-row a:hover {
  color: white;
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 5;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
  40% {transform: translateX(-50%) translateY(-10px);}
  60% {transform: translateX(-50%) translateY(-5px);}
}

/* Entferne alte Header Styles */
.site-header, .scroll-progress { display: none !important; }

/* Anpassung für Mobile */
@media (max-width: 768px) {
  .hero-nav { padding: 24px; justify-content: center; }
  .hero-nav nav { display: none; }
  .hero-content-center h1 { font-size: clamp(48px, 15vw, 80px); }
  .cta-row.centered { flex-direction: column; width: 100%; max-width: 300px; }
  .cta-row.centered .btn { width: 100%; }
}
.overline {
  display: inline-block;
  padding: 6px 10px;
  margin-right: 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(154,123,255,.3), rgba(23,201,255,.3));
}
.lede {
  color: var(--muted);
  font-size: 18px;
  max-width: 50ch;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.stats div {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: center;
  transition: transform var(--speed-2) var(--ease), box-shadow var(--speed-2) var(--ease);
}
.stats strong { font-size: 20px; display: block; }
.stats span { color: var(--muted); font-size: 12px; }
.stats div:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(23,201,255,0.12); }
.cta-row {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  transition: transform var(--speed-1) var(--ease), box-shadow var(--speed-1) var(--ease), background var(--speed-1) var(--ease);
  will-change: transform;
  transform: translate(var(--mx,0), var(--my,0));
  position: relative;
  overflow: hidden;
}
.btn.small { padding: 8px 12px; font-size: 14px; }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #0b0c0f;
  border-color: transparent;
}
.btn-primary:hover { box-shadow: 0 12px 30px rgba(154,123,255,0.35); transform: translate(var(--mx,0), calc(var(--my,0) - 2px)); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); }

.ripple {
  position: absolute;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.6), transparent 60%);
  animation: ripple 600ms ease-out forwards;
  pointer-events: none;
}
@keyframes ripple {
  from { transform: scale(0); opacity: .6; }
  to   { transform: scale(8); opacity: 0; }
}

.section {
  padding: 48px 0;
}
h2 {
  margin: 0 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3.5vw, 40px);
}
/* Social Cards - Spotify Style */
.dark-section {
  background: #121212; /* Spotify Dark Background */
  position: relative;
  z-index: 2;
  color: white;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.04em;
  color: white;
  font-family: Inter, sans-serif; /* Spotify Font Look */
}

.section-head .see-all {
  font-size: 14px;
  font-weight: 700;
  color: #b3b3b3;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.section-head .see-all:hover {
  color: white;
  text-decoration: underline;
}

.social-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1000px; /* Optional: limits width to keep them grouped */
  margin: 0 auto; /* Center the grid container itself if it has max-width */
}

.social-card {
  background: #181818;
  border-radius: 8px;
  padding: 16px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  width: 200px; /* Fixed width for consistent look */
  flex-shrink: 0;
}

.social-card:hover {
  background: #282828;
}

.card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 16px;
  border-radius: 6px; /* Slightly rounded corners for artwork */
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.platform-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  color: white;
  padding: 0; /* Reset padding to use flex centering */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.platform-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.social-card:hover .platform-icon {
  transform: scale(1.1);
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease;
}

/* Platform Colors */
.spotify-bg { background: linear-gradient(135deg, #1DB954 0%, #191414 100%); }
.instagram-bg { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.youtube-bg { background: linear-gradient(135deg, #FF0000 0%, #282828 100%); }
.tiktok-bg { background: linear-gradient(135deg, #000000 0%, #25F4EE 100%); }

.img-placeholder svg {
  color: white;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.play-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 48px;
  height: 48px;
  background-color: #1db954;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 8px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  z-index: 10;
}

.play-btn svg {
  width: 24px;
  height: 24px;
  fill: black; /* Spotify Play Icon is black */
  margin-left: 2px; /* Optical centering */
}

/* Hover Effects */
.social-card:hover .play-btn {
  opacity: 1;
  transform: translateY(0);
}

.social-card:hover .img-placeholder {
  /* Optional: subtle zoom on artwork */
  /* transform: scale(1.05); */
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 62px; /* Ensure alignment */
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-subtitle {
  font-size: 14px;
  color: #a7a7a7; /* Spotify Subtitle Gray */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
}

/* Card Specific Colors Override if needed, but handled by img-placeholder classes */
.social-card.spotify .social-bg { background: #1DB954; }
.social-card.instagram .social-bg { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-card.youtube .social-bg { background: #FF0000; }
.social-card.tiktok .social-bg { background: #000; border: 1px solid #333; }

/* Bento Grid Highlights */
.bento-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr; /* Main feature gets more space */
  gap: 24px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 40px;
}

.bento-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  min-width: 0;
}

.bento-card {
  background: #181818;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  width: 100%;
}

.bento-card:hover {
  background: #282828;
}

.bento-card.main-feature {
  height: 100%; /* Fill the column height */
}

.card-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1DB954; /* Spotify Green Accent */
  margin-bottom: -8px; /* Pull it closer to content */
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}

.video-wrapper.small {
  aspect-ratio: 16/9;
  height: 300px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: rgba(0,0,0,0.28);
  pointer-events: none;
}

.embed-fallback .btn { pointer-events: auto; }
.embed-fallback .btn {
  width: 100%;
  max-width: 260px;
  white-space: normal;
  text-align: center;
}

.embed-box {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.embed-box.spotify-embed { height: 152px; }

.embed-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.bento-info h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.bento-info p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #b3b3b3;
}

/* Adjustments for the smaller video card */
.bento-info.small h3 { font-size: 16px; }

/* Spotify Embed Card Specifics */
.bento-card.spotify-card {
  justify-content: center;
}

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

@media (max-width: 640px) {
  .video-wrapper.small { height: 220px; }
  .bento-card { padding: 16px; }
}

/* Spotify About Section - Redesigned */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%; /* Artist Profile Picture Look */
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats-row {
  display: flex;
  gap: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: white;
  line-height: 1.1;
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b3b3b3;
  margin-top: 4px;
}

.bio-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #b3b3b3;
  margin: 0 0 16px;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 12px;
  border: 1px solid #333;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: white;
  background: rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  
  .about-image {
    width: 200px;
    margin: 0 auto;
  }

  .stats-row {
    justify-content: center;
  }
  
  .tags {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .social-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}

.feature-cards {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  transform: rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg));
  transition: transform var(--speed-1) var(--ease), box-shadow var(--speed-1) var(--ease);
}
.feature .chip {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(154,123,255,.35), rgba(23,201,255,.35));
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.feature h3 { margin: 10px 0 4px; }
.feature p { color: var(--muted); }

.photo-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  height: 360px;
  scroll-snap-align: start;
  transform: rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg));
  transition: transform var(--speed-1) var(--ease), box-shadow var(--speed-1) var(--ease);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reveal { opacity: 0; transform: translateY(10px); transition: opacity var(--speed-3) var(--ease), transform var(--speed-3) var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

.marquee{
  padding: 6px 0;
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  overflow: hidden;
}
.marquee-track{
  display:flex;
  width: max-content;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--muted);
}
@keyframes marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.narrow { width: min(840px, 92vw); }

/* Modern Footer */
.site-footer {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, #000 0%, #0b0c0f 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.footer-brand .brand-name.large {
  font-size: 40px;
  letter-spacing: -1px;
  display: block;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-brand p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

.legal-links {
  display: flex;
  gap: 24px;
}
.legal-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.legal-links a:hover {
  color: white;
}

@media (max-width: 640px) {
  .footer-grid {
    flex-direction: column;
    gap: 40px;
  }
  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .link-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-cards { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
  .link-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-track { grid-auto-columns: 85%; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
