/* ============================================================
   SCW — South Central Wrestling
   style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --bg:          #080808;
  --surface:     #101010;
  --surface-2:   #161616;
  --red:         #C41E2E;
  --red-muted:   rgba(196, 30, 46, 0.12);
  --red-glow:    rgba(196, 30, 46, 0.07);
  --white:       #F2F2F2;
  --gray:        #6b6b6b;
  --gray-light:  #999;
  --gold:        #C9A84C;
  --border:      rgba(255, 255, 255, 0.06);
  --border-2:    rgba(255, 255, 255, 0.03);

  --font-display: 'Anton', sans-serif;
  --font-ui:      'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-h:  64px;
  --max-w:  1440px;
  --pad:    clamp(20px, 5vw, 80px);
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   Reset
   ============================================================ */
*, *::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-ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a   { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul  { list-style: none; }

/* ============================================================
   Utilities
   ============================================================ */
.label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.label--red  { color: var(--red); }
.label--gold { color: var(--gold); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}


/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.logo__img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.logo:hover .logo__img { opacity: 0.85; }
.logo__img--lg {
  height: 72px;
}

.logo__sub {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-light);
  white-space: nowrap;
}

/* Footer logo - stacked centered */
.site-footer .logo {
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

/* Desktop links — centered absolutely in the bar */
.nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
}
.nav__links a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  position: relative;
  padding: 8px 0 6px;
  transition: color 0.2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.25s var(--ease);
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
  transform-origin: center;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Nav social icons */
.nav__socials {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  transition: color 0.2s, opacity 0.2s;
  opacity: 0.7;
}
.nav__socials a:hover { opacity: 1; }
.nav__socials svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* Mobile menu social icons */
.nav__mobile-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s var(--ease) 0.35s, transform 0.35s var(--ease) 0.35s;
}
.nav__mobile.is-open .nav__mobile-socials {
  opacity: 1;
  transform: translateY(0);
}
.nav__mobile-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nav__mobile-socials a:hover {
  border-color: rgba(196, 30, 46, 0.5);
  background: var(--red-muted);
}
.nav__mobile-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Mobile overlay */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 199;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav__mobile.is-open {
  opacity: 1;
  pointer-events: all;
}
.nav__mobile ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.nav__mobile ul a {
  font-family: var(--font-display);
  font-size: clamp(48px, 11vw, 72px);
  color: var(--white);
  display: block;
  padding: 4px 16px;
  opacity: 0;
  transform: translateY(24px);
  transition: color 0.2s, opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.nav__mobile.is-open ul a { opacity: 1; transform: translateY(0); }
.nav__mobile.is-open li:nth-child(1) a { transition-delay: 0.05s; }
.nav__mobile.is-open li:nth-child(2) a { transition-delay: 0.10s; }
.nav__mobile.is-open li:nth-child(3) a { transition-delay: 0.15s; }
.nav__mobile.is-open li:nth-child(4) a { transition-delay: 0.20s; }
.nav__mobile.is-open li:nth-child(5) a { transition-delay: 0.25s; }
.nav__mobile.is-open li:nth-child(6) a { transition-delay: 0.30s; }
.nav__mobile.is-open li:nth-child(7) a { transition-delay: 0.35s; }
.nav__mobile ul a:hover { color: var(--red); }
.nav__mobile .active { color: var(--red) !important; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 2px solid var(--red);
  padding: clamp(40px, 6vw, 64px) var(--pad);
  text-align: center;
}


.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 28px;
  margin-bottom: 32px;
}
.footer__nav a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.2s;
  padding: 6px 0;
  display: inline-block;
}
.footer__nav a:hover { color: var(--red); }
.footer__copy {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.08em;
}

/* Footer social row */
.footer__social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  color: var(--gray-light);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer__social-link:hover {
  color: var(--white);
  border-color: rgba(196, 30, 46, 0.5);
  background: var(--red-muted);
}
.footer__social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* ============================================================
   Shared Page Hero
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(60px, 8vw, 100px));
  padding-bottom: clamp(48px, 6vw, 80px);
  padding-left: var(--pad);
  padding-right: var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero__eyebrow { margin-bottom: 12px; }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 160px);
  line-height: 0.85;
}
.page-hero__rule {
  display: block;
  width: 64px;
  height: 2px;
  background: var(--red);
  margin-top: 24px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid currentColor;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
}
.btn--outline { color: var(--gray-light); }
.btn--outline:hover { color: var(--white); }
.btn--ghost { color: var(--red); }
.btn--ghost:hover { background: var(--red); color: var(--white); }
.btn--red { background: var(--red); border-color: var(--red); color: var(--white); }
.btn--red:hover { background: #a01825; border-color: #a01825; }

/* ============================================================
   HOME — Hero Slideshow
   ============================================================ */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  animation: hero-background-in 1.6s ease 1.25s forwards;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  overflow: hidden;
}

.hero__slide.is-active { opacity: 1; }

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 15%;
  filter: brightness(0.32) contrast(1.1) saturate(1.1);
  transform: scale(1.0);
  transition: transform 8s ease-out;
}

.hero__slide.is-active img {
  transform: scale(1.08);
}

/* Dark vignette overlay on top of slides */
.hero__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,8,8,0.85) 0%, transparent 22%, transparent 78%, rgba(8,8,8,0.85) 100%),
    radial-gradient(ellipse 78% 78% at 50% 48%, transparent 28%, rgba(8,8,8,0.54) 100%),
    linear-gradient(to top, rgba(8,8,8,0.72) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(8,8,8,0.42) 0%, transparent 30%);
}

/* ============================================================
   HOME — Hero
   ============================================================ */
.hero {
  position: relative;
  height: min(88svh, 860px);
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: #020202;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 130% 60% at 50% 115%, rgba(196, 30, 46, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 10%,  rgba(196, 30, 46, 0.04) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  animation: hero-background-in 1.6s ease 1.35s forwards;
}

.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.1'/%3E%3C/svg%3E");
  animation: grain-anim 0.6s steps(1) infinite, hero-grain-in 1.2s ease 1.45s forwards;
}
@keyframes grain-anim {
  0%  { background-position: 0 0; }
  20% { background-position: -52px -78px; }
  40% { background-position: 76px -24px; }
  60% { background-position: -24px 102px; }
  80% { background-position: 104px 52px; }
}

/* Diagonal accent line — removed */
.hero__slash { display: none; }

.hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  transform: translateY(18px);
}

.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  opacity: 0;
  animation: rise 0.8s var(--ease) 1.85s forwards;
}

.hero__pretitle {
  font-family: var(--font-body);
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.3s forwards;
}

.hero__logo {
  width: clamp(300px, 44vw, 600px);
  height: auto;
  display: block;
  margin: 0 auto 6px;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 48px rgba(196, 30, 46, 0.7)) drop-shadow(0 0 100px rgba(196, 30, 46, 0.3));
  opacity: 0;
  animation: logo-entrance 1.35s var(--ease) 0.15s forwards;
}

@keyframes logo-entrance {
  0%   { opacity: 0; transform: scale(0.88); filter: drop-shadow(0 0 0px rgba(196,30,46,0)) drop-shadow(0 0 0px rgba(196,30,46,0)); }
  60%  { opacity: 1; transform: scale(1.03); }
  100% { opacity: 1; transform: scale(1);    filter: drop-shadow(0 0 48px rgba(196,30,46,0.7)) drop-shadow(0 0 100px rgba(196,30,46,0.3)); }
}

.hero__wordmark {
  font-family: var(--font-ui);
  font-size: clamp(11px, 1.4vw, 15px);
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  opacity: 0;
  animation: rise 0.8s var(--ease) 2s forwards;
}

.hero__line {
  font-family: var(--font-display);
  line-height: 0.85;
  display: block;
  letter-spacing: -0.01em;
  opacity: 0;
  white-space: nowrap;
}
.hero__line--white {
  font-size: clamp(36px, 10.8vw, 168px);
  color: var(--white);
  animation: rise 0.9s var(--ease) 0.4s forwards;
}
.hero__line--red {
  font-size: clamp(48px, 15vw, 235px);
  color: var(--red);
  animation: rise 0.9s var(--ease) 0.6s forwards;
}

.hero__tagline {
  font-family: var(--font-ui);
  font-size: clamp(10px, 1.3vw, 12px);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 20px;
  opacity: 0;
  animation: rise 0.8s var(--ease) 2.15s forwards;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  opacity: 0;
  animation: rise 0.8s var(--ease) 2.3s forwards;
}

@keyframes hero-background-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes hero-grain-in {
  from { opacity: 0; }
  to   { opacity: 0.3; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: rise 0.9s var(--ease) 2.45s forwards;
}
.hero__scroll-label {
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}
.hero__scroll-bar {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, var(--gray), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(0.5); transform-origin: top; }
}

/* ============================================================
   HOME — Event Strip
   ============================================================ */
.event-strip {
  display: none;
}
.event-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.event-strip__left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.event-strip__tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-muted);
  border: 1px solid rgba(196, 30, 46, 0.3);
  padding: 6px 14px;
  white-space: nowrap;
}
.event-strip__date {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  line-height: 1;
}
.event-strip__divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}
.event-strip__venue {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--gray-light);
}
.event-strip__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  gap: 4px;
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
}
.countdown__num {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color 0.15s;
}
.countdown__label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 2px;
}
.countdown__sep {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.7;
}

@media (max-width: 600px) {
  .countdown__num  { font-size: 22px; }
  .countdown__unit { min-width: 34px; }
}

/* ============================================================
   HOME - Event Poster
   ============================================================ */
.event-poster {
  padding: clamp(56px, 8vw, 100px) var(--pad);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.event-poster::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(196,30,46,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.event-poster__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.event-poster__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.event-poster__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.event-poster__text {
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 44ch;
}
.event-poster__frame {
  position: relative;
  display: flex;
  justify-content: center;
}
.event-poster__glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(196,30,46,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.event-poster__img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  border-radius: 4px;
  transform: rotate(1.5deg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.4s var(--ease);
}
.event-poster__frame:hover .event-poster__img {
  transform: rotate(0deg) scale(1.02);
}
@media (max-width: 768px) {
  .event-poster__inner {
    grid-template-columns: 1fr;
  }
  .event-poster__img {
    max-width: 340px;
    margin: 0 auto;
  }
}

/* ============================================================
   HOME - May Mania Promo Video
   ============================================================ */
.promo-vid {
  padding: clamp(40px, 6vw, 72px) var(--pad);
  background: var(--surface);
  overflow: hidden;
}
.promo-vid__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.promo-vid__player {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding-bottom: min(640px, 177.78%);
  height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06);
}
.promo-vid__player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   HOME - Featured Video
   ============================================================ */
.feature-video {
  padding: clamp(56px, 8vw, 110px) var(--pad);
  position: relative;
  overflow: hidden;
}
.feature-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 15% 25%, rgba(196, 30, 46, 0.12) 0%, transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, transparent 100%);
  pointer-events: none;
}
.feature-video__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  position: relative;
}
.feature-video__copy {
  max-width: 420px;
}
.feature-video__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.92;
  margin-top: 12px;
}
.feature-video__text {
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-light);
}
.feature-video__switcher {
  display: inline-flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.feature-video__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--gray-light);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.feature-video__toggle:hover {
  border-color: rgba(196, 30, 46, 0.4);
  color: var(--white);
}
.feature-video__toggle.is-active {
  border-color: rgba(196, 30, 46, 0.55);
  background: var(--red-muted);
  color: var(--white);
}
.feature-video__frame {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(10px, 1.8vw, 16px);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.feature-video__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red) 0%, rgba(196, 30, 46, 0.15) 100%);
}
.feature-video__player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}

/* ============================================================
   HOME — Roster Teaser
   ============================================================ */
.teaser {
  padding: clamp(60px, 8vw, 120px) 0;
}
.teaser__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 var(--pad);
  margin-bottom: 40px;
  gap: 16px;
}
.teaser__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.9;
}
.teaser__strip {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 0 var(--pad) 4px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.teaser__strip::-webkit-scrollbar { display: none; }

/* ============================================================
   Wrestler Card (home teaser)
   ============================================================ */
.w-card {
  flex: 0 0 240px;
  height: 340px;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.2s var(--ease);
  isolation: isolate;
  box-shadow:
    inset 18px 0 24px -8px rgba(8,8,8,0.92),
    inset -18px 0 24px -8px rgba(8,8,8,0.92);
  display: block;
  text-decoration: none;
  color: inherit;
}
.w-card:hover { border-color: rgba(196, 30, 46, 0.55); transform: translateY(-3px); }

.w-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s var(--ease), filter 0.3s;
  filter: brightness(0.82) contrast(1.05);
}
.w-card:hover .w-card__img { transform: scale(1.06); filter: brightness(1) contrast(1.05); }

.w-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.35) 40%, transparent 65%);
  pointer-events: none;
}

.w-card__slash {
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s var(--ease);
  z-index: 2;
}
.w-card:hover .w-card__slash { transform: scaleY(1); }

.w-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 14px;
  z-index: 2;
}
.w-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  color: var(--white);
}
.w-card__nick {
  display: block;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 4px;
}
.w-card__badge {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 3;
  background: var(--gold);
  color: #080808;
  font-family: var(--font-ui);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 8px;
}

/* Thematic fallback backgrounds (show when image missing) */
.w-card--red    { background: linear-gradient(160deg, #1a0508 0%, #2d0a0f 100%); }
.w-card--purple { background: linear-gradient(160deg, #0e0814 0%, #1d1030 100%); }
.w-card--gold   { background: linear-gradient(160deg, #120d02 0%, #241a05 100%); }
.w-card--green  { background: linear-gradient(160deg, #050e05 0%, #0a1a0a 100%); }
.w-card--blue   { background: linear-gradient(160deg, #030d1a 0%, #051830 100%); }
.w-card--dark   { background: linear-gradient(160deg, #0d0d0d 0%, #181818 100%); }

/* ============================================================
   HOME — Social CTA
   ============================================================ */
.social-cta {
  padding: clamp(60px, 8vw, 100px) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.social-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(196,30,46,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.social-cta__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 112px);
  line-height: 0.9;
  position: relative;
}
.social-cta__sub {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--gray-light);
  letter-spacing: 0.06em;
  margin-top: 16px;
  margin-bottom: 48px;
  position: relative;
}
.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--gray-light);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
}
.social-link:hover {
  background: var(--red-muted);
  border-color: rgba(196, 30, 46, 0.4);
  color: var(--white);
}
.social-link svg {
  width: 16px; height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ============================================================
   ROSTER PAGE
   ============================================================ */
.division-block { margin-bottom: clamp(48px, 6vw, 80px); }

.division-head {
  padding: clamp(32px, 4vw, 52px) var(--pad);
  margin-bottom: 3px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.division-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(196,30,46,0.14) 0%, transparent 55%);
}
.division-head__ghost {
  position: absolute;
  right: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 220px);
  color: rgba(255,255,255,0.022);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}
.division-head__eyebrow { position: relative; margin-bottom: 6px; }
.division-head__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9;
  position: relative;
}
.division-head__rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--red);
  margin-top: 16px;
  position: relative;
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 0 var(--pad);
}

.r-card {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  border-radius: 3px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.6);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.r-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.8);
}
.r-card--red    { background: linear-gradient(160deg, #1a0508, #2d0a0f); }
.r-card--purple { background: linear-gradient(160deg, #0e0814, #1d1030); }
.r-card--gold   { background: linear-gradient(160deg, #120d02, #241a05); }
.r-card--green  { background: linear-gradient(160deg, #050e05, #0a1a0a); }
.r-card--blue   { background: linear-gradient(160deg, #030d1a, #051830); }
.r-card--dark   { background: linear-gradient(160deg, #0d0d0d, #181818); }

.r-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s var(--ease), filter 0.3s;
  filter: brightness(0.92) contrast(1.05);
}
.r-card:hover .r-card__img { transform: scale(1.06); filter: brightness(1) contrast(1.05); }

.r-card::after { display: none; }

.r-card__slash {
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s var(--ease);
  z-index: 3;
}
.r-card:hover .r-card__slash { transform: scaleY(1); }

.r-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
  z-index: 2;
}
.r-card__name {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.8vw, 20px);
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: 0.03em;
}
.r-card__nick {
  display: block;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.r-card__role {
  display: block;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}
.r-card__badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  background: var(--gold);
  color: #080808;
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

/* ============================================================
   RESULTS PAGE
   ============================================================ */
.results-feed {
  padding: 0 var(--pad) clamp(60px, 8vw, 100px);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.result-card {
  background: var(--surface);
  border-left: 3px solid var(--red);
  padding: 28px 32px;
  transition: background 0.2s;
}
.result-card:hover { background: var(--surface-2); }

.result-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.result-card__show {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}
.result-card__matches {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
}
.match {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-2);
  font-family: var(--font-ui);
  font-size: 15px;
  flex-wrap: wrap;
}
.match:last-child { border-bottom: none; }
.match__winner { color: var(--white); font-weight: 600; }
.match__def {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  flex-shrink: 0;
}
.match__loser { color: var(--gray-light); }
.match__stip {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-left: auto;
  font-style: italic;
  background: var(--surface-2);
  padding: 2px 8px;
  border: 1px solid var(--border);
}

/* ============================================================
   SPOTLIGHT PAGE
   ============================================================ */
.spotlight-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3px;
  padding: 0 var(--pad) clamp(60px, 8vw, 100px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.s-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-2);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.s-card--featured {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  min-height: 520px;
}
.s-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.1);
  transition: transform 0.55s var(--ease), filter 0.3s;
}
.s-card:hover .s-card__img { transform: scale(1.04); filter: brightness(0.65) contrast(1.1); }
.s-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.98) 0%, rgba(8,8,8,0.2) 60%, transparent 100%);
}
.s-card__content {
  position: relative;
  z-index: 1;
  padding: 24px;
}
.s-card__cat {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  display: block;
}
.s-card__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 10px;
}
.s-card__excerpt {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.5;
}

/* Placeholder bg gradients for story cards */
.s-card--story1 { background: linear-gradient(135deg, #1a0508 0%, #300a10 100%); }
.s-card--story2 { background: linear-gradient(135deg, #0a0a14 0%, #141428 100%); }
.s-card--story3 { background: linear-gradient(135deg, #0a0e06 0%, #141e0a 100%); }

/* ============================================================
   TRAINING PAGE
   ============================================================ */
.training-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--pad) clamp(60px, 8vw, 100px);
}
.training-wrap p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-light);
  margin-bottom: 28px;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin: 48px 0;
}
.pillar {
  background: var(--surface);
  padding: 28px 24px;
  border-top: 2px solid var(--red);
}
.pillar__num {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: rgba(196, 30, 46, 0.18);
  margin-bottom: 8px;
}
.pillar__title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}
.pillar__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.65;
}
.training-contact {
  text-align: center;
  padding: 48px 0 0;
  border-top: 1px solid var(--border);
}
.training-contact h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 12px;
}
.training-contact p {
  font-size: 15px;
  margin-bottom: 28px;
}

/* ============================================================
   MERCH PAGE
   ============================================================ */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  padding: 0 var(--pad) clamp(60px, 8vw, 100px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.merch-card {
  background: var(--surface);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.merch-card:hover { border-color: rgba(196, 30, 46, 0.35); }

.merch-card__img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 56px;
  color: rgba(255,255,255,0.05);
  overflow: hidden;
}
.merch-card__img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.merch-card__body {
  padding: 16px;
  border-top: 1px solid var(--border);
}
.merch-card__name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
}
.merch-card__price {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--red);
  margin-top: 6px;
}
.merch-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 12px;
  transition: color 0.2s;
  padding: 8px 0;
}
.merch-card:hover .merch-link { color: var(--red); }

/* ============================================================
   SPONSORS PAGE
   ============================================================ */
.sponsors-intro {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
  padding: 0 var(--pad);
}
.sponsors-intro p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-light);
  line-height: 1.7;
}
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  padding: 0 var(--pad) clamp(60px, 8vw, 100px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.sponsor-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 140px;
  filter: grayscale(0.6) opacity(0.65);
  transition: filter 0.3s, border-color 0.3s, background 0.3s;
  cursor: pointer;
}
.sponsor-tile:hover { filter: grayscale(0) opacity(1); border-color: rgba(196,30,46,0.3); background: var(--surface-2); }
.sponsor-tile img { max-height: 64px; width: auto; object-fit: contain; }
.sponsor-tile__name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.02em;
}
.sponsors-cta {
  text-align: center;
  padding: 48px var(--pad);
  border-top: 1px solid var(--border);
  max-width: var(--max-w);
  margin: 0 auto;
}
.sponsors-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 12px;
}
.sponsors-cta p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-light);
  margin-bottom: 28px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1199px) {
  .nav__links { gap: 22px; }
  .nav__links a { font-size: 10px; letter-spacing: 0.1em; }
  .roster-grid      { grid-template-columns: repeat(3, 1fr); }
  .merch-grid       { grid-template-columns: repeat(3, 1fr); }
  .sponsors-grid    { grid-template-columns: repeat(3, 1fr); }
  .pillars          { grid-template-columns: 1fr 1fr; }
  .spotlight-grid   { grid-template-columns: 1fr 1fr; }
  .s-card--featured { grid-column: 1 / -1; grid-row: auto; }
  .feature-video__inner { grid-template-columns: 1fr; }
  .feature-video__copy  { max-width: 100%; }
}

@media (max-width: 979px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; width: 44px; height: 44px; }
  .nav__socials { display: none; }
}

@media (max-width: 767px) {
  .hero { height: 82svh; min-height: 520px; }
  .hero__content { transform: translateY(10px); }
  .hero__logo { width: clamp(210px, 62vw, 300px); }
  .hero__tagline { letter-spacing: 0.18em; }

  /* Zoom in on mobile to match desktop crop — focus on face, hide lower text graphics */
  .hero__slide img {
    object-position: 35% 5%;
    transform: scale(1.15);
  }
  .hero__slide.is-active img {
    transform: scale(1.25);
  }

  .roster-grid   { grid-template-columns: repeat(2, 1fr); }
  .merch-grid    { grid-template-columns: repeat(2, 1fr); }
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars       { grid-template-columns: 1fr; }
  .spotlight-grid { grid-template-columns: 1fr; }
  .s-card--featured { grid-column: 1 / -1; }

  .teaser__head { flex-direction: column; align-items: flex-start; gap: 12px; }

  .event-strip__inner { justify-content: center; text-align: center; }
  .event-strip__left  { justify-content: center; }
  .event-strip__divider { display: none; }

  .result-card { padding: 20px 16px; }
  .match { font-size: 13px; flex-wrap: wrap; }
  .match__stip { margin-left: 0; font-size: 8px; flex-basis: 100%; margin-top: 2px; }

  .social-links { flex-direction: column; align-items: center; }
  .social-link  { width: 100%; max-width: 280px; justify-content: center; }

  .footer__nav { gap: 14px 20px; }
}

@media (max-width: 479px) {
  .roster-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .merch-grid  { grid-template-columns: 1fr 1fr; }
  .r-card__name { font-size: 14px; }
  .w-card { flex: 0 0 200px; height: 290px; }
}

/* ============================================================
   Hidden Owner Tool: SCW AI Launcher
   ============================================================ */
.scw-ai-launcher {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 9998;
  width: 72px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 4px;
  background: rgba(8, 8, 8, 0.84);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  opacity: 0.88;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}
.scw-ai-launcher:hover,
.scw-ai-launcher:focus-visible {
  opacity: 1;
  border-color: var(--gold);
  transform: translateY(-1px);
  outline: none;
}

.scw-ai-panel {
  position: fixed;
  right: 16px;
  bottom: 60px;
  z-index: 9999;
  width: min(1040px, calc(100vw - 32px));
  height: min(760px, calc(100svh - 88px));
  display: none;
  flex-direction: column;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(201, 168, 76, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.72);
}
.scw-ai-panel.is-open {
  display: flex;
}
.scw-ai-panel__bar {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px 8px 14px;
  background: #0c0c0c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-ui);
}
.scw-ai-panel__bar strong {
  display: block;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.scw-ai-panel__bar span {
  display: block;
  color: var(--gray);
  font-size: 10px;
  margin-top: 2px;
}
.scw-ai-panel__actions {
  display: flex;
  gap: 6px;
}
.scw-ai-panel__actions button {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: var(--gray-light);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 10px;
  text-transform: uppercase;
}
.scw-ai-panel__actions button:hover {
  border-color: var(--red);
  color: var(--white);
}
.scw-ai-panel iframe {
  flex: 1;
  width: 100%;
  min-height: 0;
  border: 0;
  background: #080808;
}
.scw-ai-panel__fallback {
  position: absolute;
  inset: 45px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  background: #050505;
  color: var(--gray-light);
  font-family: var(--font-ui);
  text-align: center;
  pointer-events: none;
}
.scw-ai-panel.has-loaded .scw-ai-panel__fallback {
  display: none;
}
.scw-ai-panel__fallback strong {
  color: var(--white);
  font-size: 14px;
}
.scw-ai-panel__fallback p {
  max-width: 560px;
  color: var(--gray);
  font-size: 12px;
  line-height: 1.6;
}
.scw-ai-panel__hint {
  padding: 7px 10px;
  background: #0c0c0c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray);
  font-family: var(--font-ui);
  font-size: 10px;
}

@media (max-width: 767px) {
  .scw-ai-panel {
    inset: 10px;
    width: auto;
    height: auto;
  }
}
