/* ============================================
   SUPERMODELME — MAKE IT OR BREAK IT
   Landing Page Styles v2

   Design DNA: Shattered glass. Metallic silver.
   Hot pink. Fashion editorial meets vertical-first.
   ============================================ */

/* --- 1. CUSTOM PROPERTIES --- */
:root {
  --black:          #050505;
  --off-black:      #0A0A0A;
  --charcoal:       #111111;
  --dark-gray:      #1A1A1A;
  --mid-gray:       #555555;
  --silver:         #9A9A9A;
  --light-gray:     #C0C0C0;
  --off-white:      #E8E8E8;
  --white:          #FFFFFF;

  --pink:           #E91E8C;
  --pink-bright:    #FF2DA0;
  --pink-dim:       #A31463;
  --pink-glow:      rgba(233, 30, 140, 0.25);

  --chrome:         #B8B8C0;
  --chrome-bright:  #D4D4DC;

  --shopee:         #EE4D2D;

  --font-display:   'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-editorial: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:      'Outfit', 'Helvetica Neue', sans-serif;

  --section-pad:    clamp(4rem, 10vw, 8rem);
  --grid-gap:       clamp(1.5rem, 3vw, 3rem);
  --container-max:  1200px;

  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--off-white);
  background-color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: var(--pink);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--pink-bright);
}

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


/* --- 3. SHARED --- */

/* Section label */
.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--pink);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--pink);
}

/* Animations */
.anim-fade-up {
  opacity: 0;
  transform: translateY(35px);
  animation: fadeUp 0.9s var(--ease-out-expo) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-element {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
  transition-delay: calc(var(--stagger, 0) * 0.15s);
}

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


/* ============================================
   4. NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.site-nav.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav__brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-nav__brand:hover {
  color: var(--pink);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.site-nav__links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.site-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--pink);
  transition: width 0.3s var(--ease-out-expo);
}

.site-nav__links a:hover {
  color: var(--white);
}

.site-nav__links a:hover::after {
  width: 100%;
}

/* Burger */
.site-nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 101;
}

.site-nav__burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.site-nav__burger span:nth-child(1) { top: 0; }
.site-nav__burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.site-nav__burger span:nth-child(3) { bottom: 0; }

.site-nav__burger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.site-nav__burger.active span:nth-child(2) {
  opacity: 0;
}
.site-nav__burger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}


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

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/smm-poster-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  animation: heroBgReveal 1.8s var(--ease-out-expo) forwards;
  transform: scale(1.08);
}

@keyframes heroBgReveal {
  0% { opacity: 0; transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1.0); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg,
      rgba(5, 5, 5, 0.95) 0%,
      rgba(5, 5, 5, 0.5) 25%,
      rgba(5, 5, 5, 0.1) 45%,
      rgba(5, 5, 5, 0.1) 60%,
      rgba(5, 5, 5, 0.5) 80%,
      rgba(5, 5, 5, 0.8) 100%
    ),
    linear-gradient(90deg,
      rgba(5, 5, 5, 0.3) 0%,
      transparent 20%,
      transparent 80%,
      rgba(5, 5, 5, 0.3) 100%
    );
  z-index: 1;
}

/* Film grain overlay */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: clamp(2.5rem, 6vh, 5rem) 1.5rem;
  padding-top: 0;
  margin-top: auto;
  margin-bottom: clamp(4rem, 10vh, 7rem);
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero__logo {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 3;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.5rem, 9vw, 7.8rem);
  line-height: 1;
  letter-spacing: 0.069em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
  padding-left: clamp(1.5rem, 3vw, 2rem);
  text-shadow:
    0 0 60px rgba(255, 255, 255, 0.1),
    0 0 120px rgba(233, 30, 140, 0.06);
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 3.8rem);
  letter-spacing: 0.18em;
  color: var(--pink);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.65rem, 1.4vw, 0.85rem);
  letter-spacing: 0.45em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* CTA Button */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--pink);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
  z-index: -1;
}

.hero__cta:hover {
  color: var(--white);
  border-color: var(--pink-bright);
}

.hero__cta:hover::before {
  transform: scaleX(1);
}

.hero__cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.hero__cta:hover svg {
  transform: translateX(4px);
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hero__scroll-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  color: var(--silver);
}

.hero__scroll-line {
  width: 1px;
  height: 45px;
  background: linear-gradient(to bottom, var(--chrome), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50%      { opacity: 0.8; transform: scaleY(1); }
}


/* ============================================
   6. ABOUT SECTION
   ============================================ */
.about {
  background: var(--off-black);
  padding: var(--section-pad) 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.about__container {
  max-width: 800px;
  margin: 0 auto;
}

.about__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.05;
  margin: 1.5rem 0 1.5rem;
}

.about__headline em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--chrome-bright);
}

.about__date {
  color: var(--pink);
}

.about__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* Stats row */
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat__label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--mid-gray);
  text-transform: uppercase;
}


/* ============================================
   7. FORMAT SECTION
   ============================================ */
.format {
  background: var(--black);
  padding: var(--section-pad) 1.5rem;
}

.format__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.format__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
  margin-top: 3rem;
}

.format__card {
  background: linear-gradient(165deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.005) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.format__card:hover {
  border-color: rgba(233, 30, 140, 0.2);
  transform: translateY(-4px);
}

.format__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.format__card:hover::before {
  opacity: 0.6;
}

.format__card-icon {
  width: 40px;
  height: 40px;
  color: var(--pink);
  margin-bottom: 1.5rem;
  transition: transform 0.4s var(--ease-out-expo);
}

.format__card:hover .format__card-icon {
  transform: scale(1.1);
}

.format__card-icon svg {
  width: 100%;
  height: 100%;
}

.format__card-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.format__card-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--silver);
  line-height: 1.7;
}


/* ============================================
   8. PANEL (JUDGES) SECTION
   ============================================ */
.panel {
  background: var(--off-black);
  padding: var(--section-pad) 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.panel__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.panel__headline-link {
  text-decoration: none;
  color: inherit;
}

.panel__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.05;
  margin: 1.5rem 0 3rem;
}

.panel__judges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42.75px;
}

a.judge {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.judge {
  text-align: center;
}

.judge__image-wrap {
  position: relative;
  overflow: hidden;
  width: 117.75px;
  height: 157px;
  margin: 0 auto 1.5rem;
  background: var(--charcoal);
  border-radius: 2px;
}

.judge__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s var(--ease-out-expo), filter 0.6s ease;
}

.judge:hover .judge__image {
  transform: scale(1.05);
}

.judge__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(5, 5, 5, 0.7) 0%,
    transparent 40%,
    transparent 100%
  );
  pointer-events: none;
}

.judge__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.3rem;
  transition: color 0.3s ease;
}

.judge:hover .judge__name {
  color: var(--pink);
}

.judge__role {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--silver);
}


/* ============================================
   9. CONTESTANTS TEASER
   ============================================ */
.contestants {
  background: var(--black);
  padding: var(--section-pad) 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Decorative border */
.contestants::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--pink), transparent);
}

.contestants__container {
  max-width: 600px;
  margin: 0 auto;
}

.contestants__inner {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(165deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}

.contestants__inner .section-label {
  justify-content: center;
}

.contestants__inner .section-label::before {
  display: none;
}

.contestants__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.06em;
  color: var(--white);
  margin: 1.5rem 0 1rem;
}

.contestants__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--silver);
  margin-bottom: 2rem;
}

.contestants__follow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contestants__follow svg {
  width: 18px;
  height: 18px;
}

.contestants__follow:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(233, 30, 140, 0.05);
}


/* ============================================
   10. WATCH SECTION
   ============================================ */
.watch {
  background: var(--off-black);
  padding: var(--section-pad) 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.watch__container {
  max-width: 700px;
  margin: 0 auto;
}

.watch__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.05;
  margin: 1.5rem 0 3rem;
}

.watch__platform {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  margin-bottom: 2rem;
}

.watch__platform-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.watch__platform-header svg {
  width: 24px;
  height: 24px;
  color: var(--pink);
}

.watch__platform-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

.watch__platform-badge {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--pink);
  border: 1px solid var(--pink);
  padding: 0.2rem 0.6rem;
  margin-left: auto;
}

.watch__platform-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--silver);
  margin-bottom: 1.5rem;
}

.watch__downloads {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.download-btn:hover {
  border-color: var(--pink);
  background: rgba(233, 30, 140, 0.08);
  color: var(--white);
}

/* Also available on */
.watch__also {
  text-align: center;
  padding-top: 1rem;
}

.watch__also-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--mid-gray);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.watch__also-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.watch__also-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--chrome);
  transition: color 0.3s ease;
}

.watch__also-name:hover {
  color: var(--white);
}

.watch__also-divider {
  width: 4px;
  height: 4px;
  background: var(--mid-gray);
  border-radius: 50%;
}


/* ============================================
   11. FOOTER
   ============================================ */
.site-footer {
  background: var(--dark-gray);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem clamp(1.5rem, 3vw, 2.5rem);
}

.footer__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.footer__logo {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer__logo:hover {
  opacity: 1;
}

.footer__logo--refinery img {
  width: clamp(120px, 18vw, 200px);
  height: auto;
  filter: brightness(1);
  transition: filter 0.3s ease;
}

.footer__logo--refinery:hover img {
  filter: brightness(1.2);
}

.footer__logo--shopee svg {
  width: clamp(120px, 18vw, 200px);
  height: auto;
}

/* Social links */
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s var(--ease-out-expo);
}

.social-link:hover {
  color: var(--pink);
  transform: translateY(-3px);
}

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

.social-link span {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Legal */
.footer__legal {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer__legal p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.72rem;
  color: var(--mid-gray);
  letter-spacing: 0.08em;
}

.footer__credit {
  font-family: var(--font-editorial);
  font-style: italic;
  margin-top: 0.3rem;
  font-size: 0.78rem !important;
  color: var(--silver) !important;
}


/* ============================================
   12. RESPONSIVE
   ============================================ */

/* Mobile nav */
/* ---- Tablet (769px – 1024px) ---- */
@media (max-width: 1024px) {
  .hero__logo {
    font-size: clamp(3rem, 7vw, 5rem);
  }

  .hero__content {
    margin-bottom: clamp(3rem, 8vh, 5rem);
  }

  .panel__judges {
    gap: 24px;
  }

  .judge__image-wrap {
    width: 100px;
    height: 133px;
  }
}

/* ---- Mobile (≤768px) ---- */
@media (max-width: 768px) {
  /* Nav */
  .site-nav {
    padding: 1rem 1.2rem;
  }

  .site-nav.scrolled {
    padding: 0.6rem 1.2rem;
  }

  .site-nav__burger {
    display: block;
  }

  .site-nav__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 100;
  }

  .site-nav__links.open {
    opacity: 1;
    pointer-events: all;
  }

  .site-nav__links a {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
  }

  /* Hero — vertical poster, full bleed */
  .hero {
    min-height: 100svh;
  }

  .hero__bg {
    background-image: url('../assets/images/smm-poster-mobile.jpg');
    background-position: center 20%;
  }

  .hero__logo {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    letter-spacing: 0.03em;
    padding-left: 1.2rem;
    top: 14px;
  }

  .hero__content {
    margin-bottom: clamp(2.5rem, 6vh, 4rem);
    padding: 0 1.2rem;
  }

  .hero__tagline {
    font-size: clamp(1.4rem, 7vw, 2.2rem);
    letter-spacing: 0.12em;
  }

  .hero__subtitle {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
  }

  .hero__cta {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 0.85rem 1.8rem;
  }

  .hero__scroll-indicator {
    bottom: 1.2rem;
  }

  /* About */
  .about {
    padding: clamp(3rem, 8vw, 5rem) 1.2rem;
  }

  .about__headline {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin: 1rem 0 1rem;
  }

  .about__body {
    font-size: 0.9rem;
    line-height: 1.7;
  }

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

  .stat__number {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .stat__label {
    font-size: 0.6rem;
  }

  /* Panel — horizontal scroll on mobile */
  .panel {
    padding: clamp(3rem, 8vw, 5rem) 1.2rem;
  }

  .panel__headline {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin: 1rem 0 2rem;
  }

  .panel__judges {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .judge__image-wrap {
    width: 90px;
    height: 120px;
  }

  .judge__name {
    font-size: clamp(0.75rem, 3vw, 1rem);
    letter-spacing: 0.06em;
    margin-bottom: 0.15rem;
  }

  .judge__role {
    font-size: 0.65rem;
  }

  /* Contestants */
  .contestants {
    padding: clamp(3rem, 8vw, 5rem) 1.2rem;
  }

  .contestants__inner {
    padding: 2rem 1.2rem;
  }

  .contestants__headline {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .contestants__sub {
    font-size: 0.85rem;
  }

  /* Watch */
  .watch {
    padding: clamp(3rem, 8vw, 5rem) 1.2rem;
  }

  .watch__headline {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin: 1rem 0 2rem;
  }

  .watch__platform {
    padding: 1.5rem;
  }

  .watch__platform-header h3 {
    font-size: 1.4rem;
  }

  .watch__downloads {
    flex-direction: column;
  }

  .download-btn {
    justify-content: center;
  }

  /* Footer */
  .footer__logos {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .footer__social {
    gap: clamp(1rem, 4vw, 2rem);
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .footer__logo--shopee svg {
    width: 140px;
  }
}

/* ---- Small mobile (≤480px) ---- */
@media (max-width: 480px) {
  .hero__logo {
    font-size: clamp(1.8rem, 8.5vw, 2.6rem);
  }

  .hero__tagline {
    font-size: clamp(1.2rem, 6.5vw, 1.8rem);
  }

  .hero__content {
    margin-bottom: 2rem;
  }

  /* Panel stays 3-col but tighter */
  .panel__judges {
    gap: 8px;
  }

  .judge__image-wrap {
    width: 80px;
    height: 107px;
  }

  .judge__name {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }

  .judge__role {
    font-size: 0.55rem;
  }

  .section-label {
    font-size: 0.6rem;
    gap: 0.5rem;
  }

  .section-label::before {
    width: 20px;
  }

  .about__stats {
    gap: 0.5rem;
  }
}

/* ---- Large desktop (≥1440px) ---- */
@media (min-width: 1440px) {
  .hero__content {
    max-width: 1000px;
  }
}


/* ============================================
   13. SELECTION & SCROLLBAR
   ============================================ */
::selection {
  background: var(--pink);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--dark-gray);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--mid-gray);
}
