/* ============================================================
   MESHOKSTAGE — LANDING CSS
   ============================================================ */

:root {
  --bg:       #080810;
  --bg2:      #0d0d1a;
  --surface:  #111122;
  --border:   rgba(138, 43, 226, 0.3);

  --purple:   #8a2be2;
  --purple-l: #b044ff;
  --cyan:     #00e5ff;
  --orange:   #ff6b00;
  --gold:     #ffb800;
  --white:    #f0f0ff;
  --muted:    #7070a0;

  --font-pixel: 'Press Start 2P', monospace;
  --font-head:  'Unbounded', sans-serif;
  --font-body:  'Inter', sans-serif;

  --radius: 4px;
  --max-w:  1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: min(var(--max-w), 100% - 3rem); margin-inline: auto; }
.pixel-text { font-family: var(--font-pixel); }

.section-label {
  font-size: .5rem;
  color: var(--purple-l);
  letter-spacing: .15em;
  margin-bottom: .75rem;
  font-family: var(--font-pixel);
}
.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 2.5rem;
  background: rgba(8, 8, 16, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  font-family: var(--font-pixel);
  font-size: .65rem;
  letter-spacing: .1em;
}
.nav__logo-accent { color: var(--purple-l); }
.nav__links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}
.nav__links a {
  font-size: .55rem;
  font-family: var(--font-pixel);
  color: var(--muted);
  letter-spacing: .05em;
  transition: color .2s;
}
.nav__links a:hover { color: var(--cyan); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #080810;
}

/* Video background */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(26,10,61,.6) 0%, rgba(8,8,16,.5) 70%),
    linear-gradient(to bottom, rgba(8,8,16,.4) 0%, rgba(8,8,16,.2) 50%, rgba(8,8,16,.8) 100%);
}

.hero__grid {
  z-index: 2;
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(138,43,226,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138,43,226,.08) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: grid-drift 20s linear infinite;
}
@keyframes grid-drift {
  0%   { transform: translateY(0); }
  100% { transform: translateY(40px); }
}
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero__content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 2rem;
}
.hero__badge {
  display: inline-block;
  font-size: .45rem;
  letter-spacing: .2em;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: .35rem .7rem;
  margin-bottom: 1.5rem;
  animation: pulse-border 2s ease-in-out infinite;
}
@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,.4); }
  50%       { box-shadow: 0 0 0 8px rgba(255,107,0,0); }
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: .1em;
}
.hero__title-line1 { font-size: clamp(2.5rem, 6vw, 6.5rem); color: var(--white); }
.hero__title-line2 {
  font-size: clamp(2.5rem, 6vw, 6.5rem);
  color: var(--purple-l);
  text-shadow: 0 0 40px var(--purple), 0 0 80px var(--purple);
}
.hero__title-line3 {
  font-size: clamp(1.4rem, 3.5vw, 4rem);
  color: var(--cyan);
  text-shadow: 0 0 30px var(--cyan);
  letter-spacing: .05em;
}
.hero__sub {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
}
.hero__scroll-hint {
  position: absolute;
  z-index: 4;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-pixel);
  font-size: .4rem;
  color: var(--muted);
  letter-spacing: .15em;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple-l), transparent);
  animation: scroll-pulse 1.5s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.15); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  position: relative;
  margin-top: 2.5rem;
  font-family: var(--font-pixel);
  font-size: .6rem;
  letter-spacing: .1em;
  cursor: pointer;
  overflow: hidden;
  transition: transform .2s;
}
.btn:hover { transform: translateY(-3px); }

/* Primary — тёмная с неон-бордером и блеском */
.btn--primary .btn__inner {
  position: relative;
  z-index: 1;
  display: block;
  padding: .9rem 2.25rem;
  background: linear-gradient(135deg, rgba(138,43,226,.25) 0%, rgba(0,229,255,.08) 100%);
  color: var(--white);
  border: 1.5px solid var(--purple-l);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background .25s, border-color .25s, color .25s;
}
.btn--primary:hover .btn__inner {
  background: linear-gradient(135deg, rgba(138,43,226,.6) 0%, rgba(80,0,180,.5) 100%);
  border-color: var(--cyan);
  color: var(--cyan);
}

/* Shine sweep */
.btn--primary .btn__shine {
  position: absolute;
  top: 0; left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.12), transparent);
  z-index: 2;
  transition: left .45s ease;
}
.btn--primary:hover .btn__shine { left: 130%; }

/* Glow halo */
.btn--primary .btn__glow {
  position: absolute;
  inset: -6px;
  background: radial-gradient(ellipse at center, var(--purple) 0%, transparent 70%);
  filter: blur(14px);
  opacity: .4;
  z-index: 0;
  transition: opacity .25s;
}
.btn--primary:hover .btn__glow {
  opacity: .75;
  background: radial-gradient(ellipse at center, var(--cyan) 0%, var(--purple) 50%, transparent 70%);
}

.btn--outline {
  padding: .9rem 2.25rem;
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  font-family: var(--font-pixel);
  font-size: .6rem;
  letter-spacing: .1em;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn--outline:hover {
  background: rgba(0,229,255,.1);
  box-shadow: 0 0 20px rgba(0,229,255,.3);
  transform: translateY(-3px);
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  overflow: hidden;
  background: var(--purple);
  padding: .75rem 0;
  border-top: 1px solid var(--purple-l);
  border-bottom: 1px solid var(--purple-l);
}
.ticker__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker-scroll 20s linear infinite;
  font-family: var(--font-pixel);
  font-size: .55rem;
  letter-spacing: .1em;
  color: var(--white);
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 5rem 0 4rem;
  background: var(--bg2);
}
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.about__desc {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.8;
  max-width: 50ch;
}
.about__visuals { position: relative; }
.about__img-stack { position: relative; height: 400px; }
.about__img {
  position: absolute;
  width: 85%;
  border-radius: var(--radius);
  object-fit: cover;
  border: 2px solid var(--border);
}
.about__img--back {
  top: 0; left: 0;
  height: 72%;
  filter: brightness(.7);
}
.about__img--front {
  bottom: 0; right: 0;
  height: 68%;
  border-color: var(--purple-l);
  box-shadow: 0 0 40px rgba(138,43,226,.4);
}

/* ============================================================
   FEATURE CARDS — redesigned
   ============================================================ */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem 1.75rem;
  background: var(--surface);
  border-right: 1px solid var(--border);
  overflow: hidden;
  transition: background .25s;
}
.feature-card:last-child { border-right: none; }
.feature-card:hover { background: #161630; }

/* Top accent stripe per color */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.feature-card[data-accent="orange"]::before { background: var(--orange); box-shadow: 0 0 12px var(--orange); }
.feature-card[data-accent="cyan"]::before   { background: var(--cyan);   box-shadow: 0 0 12px var(--cyan); }
.feature-card[data-accent="purple"]::before { background: var(--purple-l); box-shadow: 0 0 12px var(--purple); }
.feature-card[data-accent="gold"]::before   { background: var(--gold);   box-shadow: 0 0 12px var(--gold); }

/* Corner number */
.feature-card__num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: .45rem;
  color: rgba(112,112,160,.4);
  letter-spacing: .05em;
}
.feature-card:hover .feature-card__num { color: rgba(112,112,160,.7); }

/* Big icon */
.feature-card__icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 1rem;
  margin-top: .25rem;
  transition: transform .3s;
}
.feature-card:hover .feature-card__icon { transform: scale(1.15) rotate(-4deg); }

/* Title */
.feature-card__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .9rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: .6rem;
  color: var(--white);
}
.feature-card[data-accent="orange"]:hover .feature-card__title { color: var(--orange); }
.feature-card[data-accent="cyan"]:hover   .feature-card__title { color: var(--cyan); }
.feature-card[data-accent="purple"]:hover .feature-card__title { color: var(--purple-l); }
.feature-card[data-accent="gold"]:hover   .feature-card__title { color: var(--gold); }

/* Desc */
.feature-card__desc {
  font-size: .75rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--bg);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stats__num {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan);
  margin-bottom: .4rem;
}
.stats__label {
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============================================================
   ARTISTS & TEAM CARDS
   ============================================================ */
.artists {
  padding: 5rem 0;
  background: var(--bg2);
}
.team {
  padding: 5rem 0;
  background: var(--bg);
}
.artists__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100% - 1.5rem, 360px), 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.artist-card__link-wrap {
  display: contents;
}
.artist-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.artist-card--linked { cursor: pointer; }
.artist-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--purple-l);
  box-shadow: 0 12px 40px rgba(138,43,226,.4);
}
.artist-card--team:hover {
  border-color: var(--cyan);
  box-shadow: 0 12px 40px rgba(0,229,255,.25);
}
.artist-card__frame {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.artist-card__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.artist-card:hover .artist-card__photo { transform: scale(1.08); }
.artist-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,16,.9) 0%, transparent 50%);
}
.artist-card__info { padding: 1rem; }
.artist-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}
.artist-card__role {
  font-size: .45rem;
  color: var(--purple-l);
  letter-spacing: .1em;
  margin-top: .3rem;
}
.artist-card--team .artist-card__role { color: var(--cyan); }

/* Placeholder */
.artist-card--placeholder .artist-card__placeholder-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.artist-card--placeholder .artist-card__placeholder-img span {
  font-size: 2rem;
  color: rgba(138,43,226,.2);
}
.artist-card--placeholder { opacity: .6; }

/* Empty state */
.grid-empty, .gallery-empty {
  font-size: .5rem;
  color: var(--muted);
  opacity: .5;
  padding: 2rem 0;
  letter-spacing: .1em;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 7rem 0 0;
  background: var(--bg);
  overflow: hidden;
}
.gallery .container { margin-bottom: 3rem; }
.gallery__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 2rem 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--purple) transparent;
}
.gallery__track::-webkit-scrollbar { height: 4px; }
.gallery__track::-webkit-scrollbar-track { background: transparent; }
.gallery__track::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 2px; }
.gallery__item {
  flex-shrink: 0;
  position: relative;
  width: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color .2s;
}
.gallery__item--wide { width: 520px; }
.gallery__item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item:hover { border-color: var(--purple-l); }
.gallery__item-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .75rem 1rem;
  background: linear-gradient(to top, rgba(8,8,16,.95), transparent);
  font-size: .45rem;
  color: var(--purple-l);
  letter-spacing: .15em;
}

/* ============================================================
   CTA — с фоном фото сцены
   ============================================================ */
.cta {
  position: relative;
  padding: 9rem 0;
  background-image: var(--cta-bg);
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}
.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,16,.85) 0%,
    rgba(20,5,50,.75) 50%,
    rgba(8,8,16,.9) 100%
  );
}
.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta__title {
  font-size: clamp(3rem, 10vw, 9rem);
  color: var(--white);
  text-shadow: 0 0 60px var(--purple), 0 0 120px var(--purple);
  margin: 1rem 0 1.5rem;
  line-height: 1;
}
.cta__sub {
  color: rgba(240,240,255,.7);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.cta__actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__logo { font-size: .65rem; letter-spacing: .1em; }
.footer__logo span { color: var(--purple-l); }
.footer__tg {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--cyan);
  transition: opacity .2s;
}
.footer__tg:hover { opacity: .75; }
.footer__copy { font-size: .75rem; color: var(--muted); }

/* ============================================================
   HAMBURGER + MOBILE MENU
   ============================================================ */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(8, 8, 16, .97);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.nav__mobile.is-open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav__mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color .2s;
}
.nav__mobile-close:hover { color: var(--white); }
.nav__mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  width: 100%;
  padding: 0 2rem;
}
.nav__mobile-links li { width: 100%; text-align: center; }
.nav__mobile-links a {
  display: block;
  padding: 1rem;
  font-family: var(--font-pixel);
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color .2s;
  border-bottom: 1px solid rgba(138,43,226,.1);
}
.nav__mobile-links a:hover,
.nav__mobile-links a:active { color: var(--white); }
.nav__mobile-links li:last-child a { border-bottom: none; }
.nav__mobile-tg { color: var(--cyan) !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablets landscape */
@media (max-width: 1100px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .feature-card { border-bottom: 1px solid var(--border); }
  .feature-card:nth-child(2) { border-right: none; }
  .feature-card:nth-child(3) { border-right: 1px solid var(--border); border-bottom: none; }
  .feature-card:nth-child(4) { border-right: none; border-bottom: none; }
}

/* Tablets portrait */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav { padding: 1rem 1.5rem; }

  .about__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about__img-stack { height: 280px; }
  .about { padding: 5rem 0 4rem; }
  .about__layout { margin-bottom: 3.5rem; }

  .stats__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .stats { padding: 4rem 0; }

  .artists { padding: 5rem 0; }
  .team    { padding: 5rem 0; }
  .gallery { padding: 5rem 0 0; }
  .cta     { padding: 6rem 0; }
}

/* Large phones */
@media (max-width: 640px) {
  .container { width: min(var(--max-w), 100% - 2rem); }

  .section-title { font-size: clamp(2rem, 8vw, 3rem); margin-bottom: 1.5rem; }

  /* Hero */
  .hero__badge { font-size: .4rem; margin-bottom: 1.5rem; }
  .hero__title-line1,
  .hero__title-line2 { font-size: clamp(2.5rem, 10vw, 5rem); }
  .hero__title-line3 { font-size: clamp(1.4rem, 6vw, 2.5rem); }
  .hero__sub { font-size: .9rem; }
  .btn { margin-top: 1.75rem; }

  /* Features */
  .features {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
  }
  .feature-card { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 1.5rem; }
  .feature-card:last-child { border-bottom: none; }
  .feature-card:nth-child(3) { border-right: none; border-bottom: 1px solid var(--border); }

  /* Stats */
  .stats__grid { grid-template-columns: repeat(3, 1fr); gap: .75rem; }
  .stats__num { font-size: clamp(1.4rem, 5vw, 2.5rem); }
  .stats__label { font-size: .65rem; }

  /* Artists */
  .artists__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Gallery */
  .gallery__item { width: 260px; }
  .gallery__item--wide { width: 300px; }
  .gallery__item img { height: 200px; }

  /* CTA */
  .cta { padding: 5rem 0; background-attachment: scroll; }
  .cta__title { font-size: clamp(2.5rem, 12vw, 6rem); }
  .cta__sub { font-size: .9rem; }
  .cta__actions { flex-direction: column; align-items: center; }
  .btn--outline { width: 100%; max-width: 300px; justify-content: center; }

  /* Footer */
  .footer__inner { flex-direction: column; align-items: center; text-align: center; gap: .75rem; }

  /* Sections padding */
  .about, .artists, .team, .gallery { padding-top: 4rem; }
}

/* Small phones */
@media (max-width: 400px) {
  .hero__title-line1,
  .hero__title-line2 { font-size: 2.2rem; }
  .hero__title-line3 { font-size: 1.3rem; }

  .stats__grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .stats__num { font-size: 2.5rem; }

  .artists__grid { grid-template-columns: repeat(2, 1fr); }

  .about__img-stack { height: 200px; }
  .about__img--back  { width: 80%; }
  .about__img--front { width: 80%; }

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