/* ===== Fonts (local) ===== */
@font-face {
  font-family: "Bebas Neue";
  src: url("font/title/BebasNeue Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("font/text/NotoSansKR-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("font/text/NotoSansKR-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("font/text/NotoSansKR-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("font/point/PlayfairDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("font/point/PlayfairDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== Tokens ===== */
:root {
  --bg-deep: #060208;
  --bg-panel: #0c0612;
  --gold: #d4af37;
  --gold-bright: #f4d03f;
  --red: #e63946;
  --red-hot: #ff2d55;
  --purple: #9d4edd;
  --purple-deep: #6b21a8;
  --text: #f5f0ff;
  --text-muted: rgba(245, 240, 255, 0.72);
  --border-glow: rgba(212, 175, 55, 0.35);
  --font-title: "Bebas Neue", Impact, sans-serif;
  --font-body: "Noto Sans KR", system-ui, sans-serif;
  --font-point: "Playfair Display", Georgia, serif;
  --space-section: clamp(4rem, 10vw, 7rem);
  --radius: 12px;
  --radius-lg: 20px;
  /* 플랫 CTA (참고: 시안 솔리드 + 흰 텍스트) */
  --btn-flat-cyan: #00d4f0;
  --brand-kakao: #fee500;
  --brand-kakao-text: #191919;
  --brand-telegram: #00d4f0;
  --brand-zalo: #0068ff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 0.9rem + 0.35vw, 1.05rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
  text-align: center;
}

/* 모바일: 한글 단어 단위 줄바꿈 · 가독성 */
@media (max-width: 1023px) {
  html {
    -webkit-text-size-adjust: 100%;
  }

  body {
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.72;
  }

  p,
  .lead,
  .body-text,
  .section-sub,
  .hero__lead,
  .hero__tagline,
  .checklist li,
  .review-card__quote,
  .contact-summary,
  .feature__hook,
  .site-drawer .nav--mobile > a {
    line-height: 1.78;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(157, 78, 221, 0.22), transparent 50%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(230, 57, 70, 0.12), transparent 45%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(212, 175, 55, 0.1), transparent 40%);
  z-index: -2;
}

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

.font-title {
  font-family: var(--font-title);
  letter-spacing: 0.06em;
}

.font-point {
  font-family: var(--font-point);
}

.body-text {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.lead {
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 1.25rem;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.container.narrow {
  max-width: 720px;
}

.center {
  text-align: center;
}

.section {
  padding-block: var(--space-section);
  position: relative;
}

.section--tight {
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.section-title {
  font-size: clamp(2.2rem, 1.5rem + 3.5vw, 3.75rem);
  line-height:1.05;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 0 2.5rem;
}

/* Neon utilities */
.neon-gold {
  color: var(--gold-bright);
  text-shadow:
    0 0 20px rgba(244, 208, 63, 0.55),
    0 0 48px rgba(212, 175, 55, 0.35);
}

.neon-red {
  color: #ff6b7a;
  text-shadow:
    0 0 18px rgba(255, 45, 85, 0.6),
    0 0 40px rgba(230, 57, 70, 0.35);
}

.neon-purple {
  color: #c77dff;
  text-shadow:
    0 0 20px rgba(157, 78, 221, 0.55),
    0 0 44px rgba(107, 33, 168, 0.35);
}

.accent-line {
  background: linear-gradient(90deg, var(--gold), var(--red-hot), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.accent-strong {
  color: var(--text);
  font-weight: 600;
  text-shadow: 0 0 24px rgba(157, 78, 221, 0.4);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: clamp(0.65rem, 1.8vw, 1rem) clamp(1rem, 4vw, 2rem);
  background: linear-gradient(180deg, rgba(6, 2, 8, 0.96), rgba(6, 2, 8, 0.85));
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  row-gap: 0.75rem;
  width: min(1120px, 92vw);
}

@media (min-width: 1024px) {
  .site-header__inner {
    justify-content: flex-start;
  }

  .site-header__inner .nav--desktop {
    margin-left: auto;
  }
}

@media (max-width: 1023px) {
  .site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: none;
    gap: 0.75rem;
    flex-wrap: nowrap;
  }
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

/* 헤더 로고: 원본 비율(가로형) 유지, 투명 PNG는 그림자만 형태 따라감 */
.site-header .brand__logo {
  display: block;
  height: clamp(2.75rem, 8vw, 4.25rem);
  width: auto;
  max-width: min(100%, 280px);
  object-fit: contain;
  border-radius: 0;
  background: none;
  box-shadow: none;
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.4))
    drop-shadow(0 0 28px rgba(157, 78, 221, 0.2));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1.5vw, 1.1rem);
  row-gap: 0.5rem;
  font-size: clamp(0.78rem, 0.72rem + 0.35vw, 0.88rem);
  font-weight: 500;
  max-width: min(100%, 52rem);
}

/* PC: 네비 더 선명하게 */
@media (min-width: 1024px) {
  .nav--desktop {
    flex-wrap: nowrap;
    gap: clamp(0.75rem, 1.6vw, 1.5rem);
    font-size: clamp(0.94rem, 0.88rem + 0.25vw, 1.08rem);
    font-weight: 600;
    max-width: min(100%, 58rem);
  }

  .nav--desktop > a {
    color: rgba(248, 244, 255, 0.92);
    text-shadow:
      0 0 1px rgba(0, 0, 0, 0.8),
      0 1px 8px rgba(0, 0, 0, 0.65);
    letter-spacing: 0.02em;
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
    transition:
      color 0.2s,
      text-shadow 0.2s,
      border-color 0.2s;
  }

  .nav--desktop > a:hover {
    color: var(--gold-bright);
    text-shadow:
      0 0 12px rgba(244, 208, 63, 0.65),
      0 0 24px rgba(212, 175, 55, 0.35);
    border-bottom-color: rgba(244, 208, 63, 0.45);
  }
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

/* Audi KTV 소개 — 브랜드 컬러 */
.nav a.nav__link--brand {
  font-weight: 600;
}

.nav__audi {
  color: #ff3b4a;
  text-shadow: 0 0 14px rgba(255, 59, 74, 0.55);
}

.nav__ktv {
  color: #ff7eb3;
  text-shadow: 0 0 14px rgba(255, 126, 179, 0.45);
}

.nav__suffix {
  color: var(--text-muted);
  font-weight: 500;
}

.nav a.nav__link--brand:hover .nav__audi {
  color: #ff6b78;
  text-shadow: 0 0 18px rgba(255, 59, 74, 0.65);
}

.nav a.nav__link--brand:hover .nav__ktv {
  color: #ffb3d9;
  text-shadow: 0 0 18px rgba(255, 126, 179, 0.55);
}

.nav a.nav__link--brand:hover .nav__suffix {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
}

.nav a[aria-current="page"] {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.45);
  pointer-events: none;
}

.nav a.nav__link--brand[aria-current="page"] .nav__suffix {
  color: var(--gold);
}

@media (min-width: 1024px) {
  .nav--desktop > a[aria-current="page"] {
    color: var(--gold-bright);
    text-shadow:
      0 0 14px rgba(244, 208, 63, 0.55),
      0 0 28px rgba(212, 175, 55, 0.3);
    border-bottom-color: rgba(244, 208, 63, 0.55);
    pointer-events: none;
  }
}

/* 모바일·태블릿: 햄버거 버튼 */
.nav-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(30, 14, 40, 0.95), rgba(8, 4, 14, 0.98));
  color: var(--gold-bright);
  cursor: pointer;
  box-shadow:
    0 0 16px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(244, 208, 63, 0.85);
  box-shadow: 0 0 22px rgba(244, 208, 63, 0.35);
  outline: none;
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(199, 125, 255, 0.75);
  outline-offset: 2px;
}

.nav-toggle__bars {
  position: relative;
  display: block;
  width: 1.35rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: background 0.25s ease;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-toggle__bars::before {
  top: -7px;
}

.nav-toggle__bars::after {
  top: 7px;
}

body.drawer-open .nav-toggle__bars {
  background: transparent;
}

body.drawer-open .nav-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

body.drawer-open .nav-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 1023px) {
  .nav-toggle {
    display: flex;
  }

  .nav--desktop {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none !important;
  }

  .site-drawer {
    display: none !important;
  }
}

/* 오른쪽 슬라이드 메뉴 */
.site-drawer {
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
  visibility: hidden;
}

.site-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.site-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 0, 6, 0.72);
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(4px);
}

.site-drawer.is-open .site-drawer__backdrop {
  opacity: 1;
}

.site-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: min(90vw, 20.5rem);
  max-width: 100%;
  background: linear-gradient(200deg, rgba(18, 8, 28, 0.98) 0%, rgba(6, 2, 10, 0.99) 55%);
  border-left: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow:
    -12px 0 48px rgba(0, 0, 0, 0.55),
    -4px 0 32px rgba(157, 78, 221, 0.12);
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  padding: env(safe-area-inset-top, 0) 0 env(safe-area-inset-bottom, 0) 0;
}

.site-drawer.is-open .site-drawer__panel {
  transform: translateX(0);
}

.site-drawer__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.65rem 1rem 0.85rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.site-drawer__title {
  margin: 0;
  width: 100%;
  font-size: 1.35rem;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  text-shadow: 0 0 18px rgba(244, 208, 63, 0.4);
  text-align: center;
}

.site-drawer__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.site-drawer__close:hover,
.site-drawer__close:focus-visible {
  background: rgba(255, 45, 85, 0.25);
  color: #ffb3c6;
  outline: none;
}

.site-drawer .nav--mobile {
  flex: 1;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  max-width: none;
  padding: 1rem 1.25rem 1.5rem;
  overflow-y: auto;
  font-size: 1rem;
  font-weight: 600;
  -webkit-overflow-scrolling: touch;
}

.site-drawer .nav--mobile > a {
  display: block;
  padding: 0.95rem 1rem;
  margin: 0 -0.25rem;
  color: rgba(245, 240, 255, 0.92);
  white-space: normal;
  border-radius: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s, color 0.2s;
  text-align: center;
}

.site-drawer .nav--mobile > a:last-child {
  border-bottom: none;
}

.site-drawer .nav--mobile > a:hover,
.site-drawer .nav--mobile > a:focus-visible {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-bright);
  outline: none;
}

.site-drawer .nav--mobile .nav__link--brand {
  font-size: 1.05rem;
}

.site-drawer .nav--mobile a[aria-current="page"] {
  background: rgba(157, 78, 221, 0.18);
  color: var(--gold-bright);
  pointer-events: auto;
}

.site-drawer__footer {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 1.5rem calc(1.25rem + env(safe-area-inset-bottom, 0));
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent);
}

.site-drawer__logo {
  height: clamp(2.25rem, 10vw, 3rem);
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.25));
}

body.drawer-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .site-drawer__panel,
  .site-drawer__backdrop,
  .nav-toggle__bars::before,
  .nav-toggle__bars::after {
    transition-duration: 0.01ms;
  }
}

.page-sub {
  min-height: min(70vh, 900px);
  padding-bottom: var(--space-section);
}

/* 오른쪽 하단: 연락 아이콘 + TOP */
.site-fixed-corner {
  position: fixed;
  right: clamp(1rem, 2.5vw, 1.5rem);
  bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
  z-index: 96;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}

.site-fixed-corner > * {
  pointer-events: auto;
}

.contact-dock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.contact-dock__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  padding: 0.4rem;
  border: none;
  border-radius: 14px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.contact-dock__btn--kakao {
  background: var(--brand-kakao);
}

.contact-dock__btn--telegram {
  background: var(--brand-telegram);
}

.contact-dock__btn--zalo {
  background: var(--brand-zalo);
}

.contact-dock__btn:hover,
.contact-dock__btn:focus-visible {
  filter: brightness(1.08);
  transform: scale(1.04);
  outline: none;
}

.contact-dock__btn:focus-visible {
  outline: 2px solid rgba(199, 125, 255, 0.85);
  outline-offset: 2px;
}

.contact-dock__btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.to-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  width: 3.5rem;
  min-height: 3.75rem;
  padding: 0.45rem 0.35rem 0.35rem;
  text-decoration: none;
  color: var(--gold-bright);
  background: radial-gradient(
    ellipse 100% 100% at 50% 30%,
    rgba(22, 12, 32, 0.96) 0%,
    rgba(6, 2, 10, 0.94) 100%
  );
  border: 2px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.25),
    0 0 40px rgba(157, 78, 221, 0.12),
    inset 0 0 24px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top:hover,
.to-top:focus-visible {
  color: #fff6d0;
  border-color: rgba(244, 208, 63, 0.95);
  box-shadow:
    0 0 28px rgba(244, 208, 63, 0.55),
    0 0 52px rgba(255, 45, 85, 0.2),
    inset 0 0 20px rgba(212, 175, 55, 0.08);
  outline: none;
}

.to-top:focus-visible {
  outline: 2px solid rgba(199, 125, 255, 0.8);
  outline-offset: 3px;
}

.to-top__arrow {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  margin-top: -0.1rem;
}

.to-top__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  line-height: 1;
  text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .to-top {
    transition: none;
  }

  .contact-dock__btn {
    transition: none;
  }
}

/* 인라인 연락처 버튼 — 세로 배치 · 큰 사이즈 */
.contact-chips {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: min(22rem, 100%);
  margin-inline: auto;
  gap: 0.85rem;
}

.contact-chips__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.25rem;
  min-height: 3.75rem;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  box-shadow: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.contact-chips__btn--kakao {
  background: var(--brand-kakao);
  color: var(--brand-kakao-text);
}

.contact-chips__btn--telegram {
  background: var(--brand-telegram);
  color: #fff;
}

.contact-chips__btn--zalo {
  background: var(--brand-zalo);
  color: #fff;
}

.contact-chips__btn:hover,
.contact-chips__btn:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-1px);
  outline: none;
}

.contact-chips__btn img {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.contact-chips__btn--kakao img {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.contact-chips__label {
  font-size: clamp(0.95rem, 3.5vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: inherit;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 360px) {
  .contact-chips__label {
    white-space: normal;
    font-size: 0.92rem;
  }
}

/* 문의(#contact) SNS: 항상 세로(카카오→텔레그램→잘로) */
.contact-chips--cta {
  margin-top: 1.5rem;
  max-width: min(24rem, 100%);
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

/* 히어로: 모바일 세로 · PC 가로 */
.contact-chips--hero {
  margin-top: 1.35rem;
  max-width: min(42rem, 100%);
}

@media (min-width: 1024px) {
  .contact-chips--hero {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
  }

  .contact-chips--hero .contact-chips__btn {
    flex: 1 1 0;
    min-width: 10rem;
    max-width: 13.5rem;
  }
}

.contact-chips--block {
  margin-top: 1.15rem;
}

.contact-summary {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-muted);
  text-align: center;
}

.contact-summary strong {
  color: rgba(245, 240, 255, 0.92);
  font-weight: 600;
}

.site-footer__contact {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.feature__contact {
  margin-top: 1.25rem;
}

.section-contact-hint {
  margin-top: 1.5rem;
  text-align: center;
}

/* Buttons — 플랫 · 고대비 (그라데이션/네온 글로우 없음) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 14px;
  border: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn--primary {
  color: #fff;
  background: var(--btn-flat-cyan);
  box-shadow: none;
}

.btn--primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
  filter: brightness(0.96);
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(248, 245, 255, 0.95);
  background: rgba(18, 12, 28, 0.55);
  margin-top: 1rem;
  box-shadow: none;
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.45);
  filter: brightness(1.06);
  box-shadow: none;
}

/* Media placeholders */
.media-slot {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(212, 175, 55, 0.35);
  background:
    linear-gradient(145deg, rgba(157, 78, 221, 0.12), rgba(6, 2, 8, 0.9)),
    linear-gradient(90deg, rgba(230, 57, 70, 0.08) 0%, transparent 40%, rgba(212, 175, 55, 0.1) 100%);
  min-height: 200px;
  overflow: hidden;
  box-shadow:
    inset 0 0 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(157, 78, 221, 0.15);
}

.media-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(212, 175, 55, 0.04) 8px,
    rgba(212, 175, 55, 0.04) 9px
  );
  pointer-events: none;
}

.media-slot__cap {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(245, 240, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 1;
  text-align: center;
}

.media-slot--wide {
  width: min(1000px, 92vw);
  margin: 0 auto 2.5rem;
  min-height: clamp(160px, 28vw, 240px);
  border-radius: var(--radius-lg);
}

.media-slot--bleed-up {
  margin-top: -1rem;
}

.media-slot--tall {
  min-height: clamp(260px, 40vw, 400px);
}

.media-slot--panorama {
  min-height: clamp(200px, 32vw, 320px);
  width: min(900px, 100%);
}

.media-slot--pull-left {
  margin-left: clamp(0px, 5vw, 4rem);
}

.media-slot--banner {
  min-height: clamp(220px, 38vw, 360px);
  width: 100%;
  border-radius: var(--radius-lg);
}

.media-slot--strip {
  min-height: 220px;
}

.media-slot--cta {
  min-height: clamp(240px, 36vw, 360px);
}

/* Hero — 배경 사진 없음, 그라데이션 + 오버레이만 */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: min(88vh, 920px);
  padding: clamp(2.5rem, 8vh, 5rem) clamp(1rem, 4vw, 2rem);
  background-color: var(--bg-deep);
  background-image: linear-gradient(
    165deg,
    rgba(6, 2, 8, 0.95) 0%,
    rgba(18, 10, 32, 0.85) 42%,
    rgba(6, 2, 8, 0.92) 100%
  );
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 20% 30%, rgba(157, 78, 221, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(230, 57, 70, 0.14), transparent 50%),
    linear-gradient(180deg, rgba(6, 2, 8, 0.35) 0%, rgba(6, 2, 8, 0.65) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 92vw);
  margin-inline: auto;
  display: flex;
  justify-content: center;
}

.hero__copy {
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero__copy .contact-chips--hero {
  align-self: center;
}

.hero__eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 0.75rem;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.85;
    text-shadow: 0 0 12px rgba(157, 78, 221, 0.5);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 22px rgba(255, 45, 85, 0.45);
  }
}

.hero__title {
  font-size: clamp(2.75rem, 1.5rem + 5vw, 4.75rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.hero__lead {
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem);
  margin-bottom: 1.25rem;
}

.hero__tagline {
  font-weight: 600;
  color: rgba(255, 200, 210, 0.9);
  margin-bottom: 1.75rem;
  text-shadow: 0 0 20px rgba(255, 45, 85, 0.35);
}

/* Brand intro */
.brand-intro {
  border-block: 1px solid rgba(212, 175, 55, 0.12);
  background: linear-gradient(180deg, transparent, rgba(12, 6, 18, 0.5), transparent);
}

/* Features */
.features .section-title {
  margin-bottom: 0.35rem;
}

.feature {
  width: min(1120px, 92vw);
  margin-inline: auto;
  margin-bottom: clamp(3rem, 8vw, 5rem);
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: stretch;
}

.feature:last-child {
  margin-bottom: 0;
}

@media (min-width: 800px) {
  .feature--img-left {
    grid-template-columns: minmax(240px, 42%) 1fr;
  }

  .feature--img-right {
    grid-template-columns: 1fr minmax(240px, 42%);
  }

  .feature--img-right .feature__body {
    order: -1;
  }
}

.feature__num {
  display: block;
  font-size: clamp(3rem, 8vw, 4.5rem);
  line-height: 1;
  color: rgba(212, 175, 55, 0.2);
  margin-bottom: 0.35rem;
  text-shadow: 0 0 30px rgba(157, 78, 221, 0.25);
}

.feature__title {
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2rem);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.feature__hook {
  font-size: 1.02rem;
  color: rgba(255, 182, 193, 0.95);
  margin: 0 0 1rem;
  font-style: italic;
}

.feature__body {
  padding: clamp(0.5rem, 2vw, 1rem) 0;
  text-align: center;
}

.feature__body--full {
  width: min(720px, 100%);
  margin-inline: auto;
  text-align: center;
}

.feature__body--center {
  text-align: center;
  padding-inline: 1rem;
}

.feature--stack-offset .feature__offset-wrap {
  display: flex;
  justify-content: flex-end;
  padding-right: 0;
}

@media (min-width: 800px) {
  .feature--stack-offset .feature__offset-wrap {
    padding-right: 8%;
  }
}

.feature--banner {
  position: relative;
  padding: 0;
}

.feature--banner .media-slot--banner {
  margin: 0;
}

.feature__overlay-card {
  position: relative;
  margin: -4rem clamp(1rem, 5vw, 3rem) 0;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: linear-gradient(160deg, rgba(12, 6, 18, 0.95), rgba(30, 10, 40, 0.92));
  border: 1px solid rgba(230, 57, 70, 0.35);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 40px rgba(230, 57, 70, 0.2),
    0 24px 48px rgba(0, 0, 0, 0.45);
  text-align: center;
}

@media (min-width: 800px) {
  .feature__overlay-card {
    max-width: 520px;
    margin-top: -5rem;
    margin-left: clamp(1rem, 8vw, 5rem);
  }
}

.feature--triptych {
  align-items: stretch;
}

@media (min-width: 900px) {
  .feature--triptych {
    grid-template-columns: minmax(140px, 18%) 1fr minmax(140px, 18%);
    align-items: center;
  }
}

@media (max-width: 899px) {
  .feature--triptych {
    grid-template-columns: 1fr;
  }

  .feature--triptych .media-slot--strip {
    min-height: 140px;
  }
}

/* Recommend */
.recommend__grid {
  width: min(1120px, 92vw);
  margin-inline: auto;
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: stretch;
  text-align: center;
}

@media (min-width: 800px) {
  .recommend__grid {
    grid-template-columns: minmax(200px, 28%) 1fr;
  }
}

.recommend__aside {
  min-height: 280px;
}

@media (min-width: 800px) {
  .recommend__aside {
    min-height: 100%;
    min-height: 360px;
  }
}

/* Recommend: 추천 대상 — 다크 글래스 카드 + 넘버링 */
.audience-list {
  list-style: none;
  padding: 0;
  margin: 1.85rem auto 0;
  max-width: min(34rem, 100%);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  text-align: left;
}

.audience-list__item {
  display: grid;
  grid-template-columns: minmax(2.85rem, 3.4rem) 1fr;
  align-items: stretch;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(152deg, rgba(24, 14, 38, 0.92) 0%, rgba(8, 5, 14, 0.97) 100%);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.42),
    0 6px 28px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.22s ease;
}

.audience-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-bright), var(--purple) 55%, rgba(230, 57, 70, 0.85));
  box-shadow: 0 0 18px rgba(157, 78, 221, 0.45);
  pointer-events: none;
}

.audience-list__item:hover {
  transform: translateY(-2px);
  border-color: rgba(157, 78, 221, 0.42);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(130, 75, 210, 0.22),
    0 10px 36px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.audience-list__index {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.75rem 0.35rem;
  font-size: clamp(1.2rem, 3.2vw, 1.55rem);
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(244, 208, 63, 0.5);
  text-shadow:
    0 0 22px rgba(244, 208, 63, 0.35),
    0 0 2px rgba(0, 0, 0, 0.9);
  border-right: 1px solid rgba(212, 175, 55, 0.12);
  background: linear-gradient(180deg, rgba(157, 78, 221, 0.08), transparent 70%);
}

.audience-list__text {
  display: flex;
  align-items: center;
  padding: 0.95rem 1.1rem 0.95rem 1rem;
  font-size: clamp(0.9rem, 2.6vw, 1.03rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.55;
  color: rgba(250, 246, 255, 0.97);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

@media (max-width: 380px) {
  .audience-list__item {
    grid-template-columns: 2.6rem 1fr;
  }

  .audience-list__text {
    padding-inline: 0.85rem;
    font-size: 0.88rem;
  }
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  text-align: center;
}

.checklist li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
  gap: 0.4rem;
}

.checklist li::before {
  content: "";
  position: static;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--gold), var(--red-hot));
  box-shadow: 0 0 12px rgba(255, 45, 85, 0.55);
  flex-shrink: 0;
}

.checklist--compact li {
  margin-bottom: 0.5rem;
}

/* Reviews */
.reviews {
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(157, 78, 221, 0.18), transparent 55%);
}

.review-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  margin: 0;
  padding: 1.5rem 1.35rem;
  background: rgba(12, 6, 18, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.35);
  transition: border-color 0.25s, box-shadow 0.25s;
  text-align: center;
}

.review-card:hover {
  border-color: rgba(255, 45, 85, 0.45);
  box-shadow: 0 0 32px rgba(255, 45, 85, 0.15);
}

.review-card__quote {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 235, 245, 0.92);
  font-style: italic;
  text-align: center;
}

/* CTA */
.cta-section {
  padding-bottom: clamp(4rem, 12vw, 6rem);
}

.cta__layout {
  width: min(1120px, 92vw);
  margin-inline: auto;
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: linear-gradient(135deg, rgba(20, 8, 28, 0.9), rgba(6, 2, 8, 0.95));
  box-shadow:
    0 0 60px rgba(157, 78, 221, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cta__layout--stack {
  grid-template-columns: 1fr;
  max-width: min(44rem, 94vw);
}

.contact-summary--spaced {
  margin-top: 1.25rem !important;
}

@media (min-width: 850px) {
  .cta__layout:not(.cta__layout--stack) {
    grid-template-columns: 1fr minmax(260px, 38%);
  }
}

.cta__copy {
  text-align: center;
}

.cta__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 1.1rem;
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.cta__title-line {
  display: block;
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-weight: 600;
  color: rgba(252, 248, 255, 0.96);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.cta__title-line--emph {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta__lead {
  margin: 0 auto 1.35rem;
  max-width: 26rem;
  font-size: clamp(1.05rem, 2.8vw, 1.22rem);
  font-weight: 500;
  line-height: 1.75;
  color: rgba(255, 252, 255, 0.98);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.cta-info-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.75rem;
  max-width: 22rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-align: left;
}

.cta-info-list__item {
  margin: 0;
  padding: 0.7rem 1rem 0.7rem 1.15rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-size: clamp(0.92rem, 2.4vw, 1.02rem);
  font-weight: 500;
  color: rgba(248, 245, 255, 0.98);
  line-height: 1.45;
}

.cta-info-list__item strong {
  color: #fff;
  font-weight: 700;
}

.cta__channels {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  justify-items: center;
  width: 100%;
}

@media (min-width: 600px) {
  .cta__channels {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-items: stretch;
  }

  .cta__channels .contact-chips--cta {
    margin-inline: 0;
  }
}

.cta__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cta__qr-caption {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(0, 104, 255, 0.95);
}

.cta__qr-frame {
  display: block;
  padding: 0.65rem;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(0, 0, 0, 0.06);
  line-height: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta__qr-frame:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(0, 104, 255, 0.25),
    0 0 0 1px rgba(0, 104, 255, 0.2);
}

.cta__qr-img {
  display: block;
  width: min(176px, 46vw);
  height: auto;
  border-radius: 8px;
}

main {
  text-align: center;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 2.5rem 1rem 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.site-footer__logo {
  height: 2.25rem;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  border-radius: 0;
  opacity: 0.9;
}

.site-footer__name {
  font-size: 1.1rem;
  color: var(--gold);
  margin: 0.75rem 0 0.25rem;
  letter-spacing: 0.08em;
}

.site-footer__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== 오른쪽 중앙 네온 타원 배지 (PC·태블릿 가로만, 모바일 숨김) ===== */
.neon-mount {
  display: block;
  position: fixed;
  right: clamp(1rem, 2.8vw, 2.75rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  width: min(280px, 52vw);
  min-height: 1px;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .neon-mount {
    width: min(300px, 24vw);
  }
}

.neon-mount .section-badge {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scale(0.94);
  width: 100%;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  filter: brightness(0.35) saturate(0.5);
  transition:
    opacity 0.55s ease,
    filter 0.65s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.neon-mount .section-badge.is-lit {
  opacity: 1;
  filter: brightness(1) saturate(1.15);
  transform: translateY(-50%) scale(1);
  z-index: 2;
}

@media (max-width: 1023px) {
  .neon-mount {
    display: none !important;
  }
}

.section-badge__ellipse {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-width: min(280px, 100%);
    min-height: 168px;
    padding: 1.35rem 1.75rem;
    border-radius: 50%;
    text-align: center;
    background: radial-gradient(
      ellipse 100% 100% at 50% 40%,
      rgba(18, 10, 28, 0.92) 0%,
      rgba(6, 2, 10, 0.88) 70%
    );
    border: 2px solid rgba(80, 70, 90, 0.45);
    box-shadow:
      inset 0 0 40px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(255, 255, 255, 0.04);
  }

  .section-badge__line {
    display: block;
    font-size: clamp(1.65rem, 2.2vw, 2.15rem);
    line-height: 1;
    letter-spacing: 0.12em;
    color: rgba(200, 195, 210, 0.35);
    text-shadow: none;
    transition: color 0.4s ease, text-shadow 0.4s ease;
  }

  .section-badge__line--sm {
    font-size: clamp(1.05rem, 1.35vw, 1.35rem);
    letter-spacing: 0.18em;
  }

  .section-badge__line--sub {
    font-family: var(--font-point);
    font-size: clamp(0.82rem, 1vw, 0.95rem);
    font-style: italic;
    letter-spacing: 0.04em;
    margin-top: 0.15rem;
    line-height: 1.35;
    color: rgba(200, 195, 210, 0.3);
  }

  .section-badge__num {
    font-size: clamp(2.5rem, 3.5vw, 3.25rem);
    line-height: 1;
    color: rgba(180, 175, 190, 0.25);
    margin-bottom: 0.15rem;
    transition: color 0.4s ease, text-shadow 0.4s ease;
  }

  /* 켜졌을 때 테마별 네온 */
  .section-badge--theme-gold.is-lit .section-badge__ellipse {
    border-color: rgba(244, 208, 63, 0.85);
    box-shadow:
      inset 0 0 50px rgba(212, 175, 55, 0.12),
      0 0 28px rgba(244, 208, 63, 0.45),
      0 0 56px rgba(212, 175, 55, 0.28),
      0 0 100px rgba(157, 78, 221, 0.12);
  }

  .section-badge--theme-gold.is-lit .section-badge__line,
  .section-badge--theme-gold.is-lit .section-badge__num {
    color: var(--gold-bright);
    text-shadow:
      0 0 12px rgba(244, 208, 63, 0.9),
      0 0 28px rgba(212, 175, 55, 0.55);
  }

  .section-badge--theme-gold.is-lit .section-badge__line--sub {
    color: rgba(255, 245, 220, 0.92);
    text-shadow: 0 0 14px rgba(244, 208, 63, 0.35);
  }

  .section-badge--theme-red.is-lit .section-badge__ellipse {
    border-color: rgba(255, 107, 122, 0.9);
    box-shadow:
      inset 0 0 50px rgba(230, 57, 70, 0.15),
      0 0 28px rgba(255, 45, 85, 0.5),
      0 0 60px rgba(230, 57, 70, 0.3);
  }

  .section-badge--theme-red.is-lit .section-badge__line,
  .section-badge--theme-red.is-lit .section-badge__num {
    color: #ffb3bc;
    text-shadow:
      0 0 14px rgba(255, 45, 85, 0.85),
      0 0 32px rgba(230, 57, 70, 0.45);
  }

  .section-badge--theme-red.is-lit .section-badge__line--sub {
    color: rgba(255, 230, 235, 0.95);
    text-shadow: 0 0 12px rgba(255, 45, 85, 0.35);
  }

  .section-badge--theme-purple.is-lit .section-badge__ellipse {
    border-color: rgba(199, 125, 255, 0.9);
    box-shadow:
      inset 0 0 50px rgba(157, 78, 221, 0.18),
      0 0 28px rgba(157, 78, 221, 0.5),
      0 0 64px rgba(107, 33, 168, 0.35);
  }

  .section-badge--theme-purple.is-lit .section-badge__line,
  .section-badge--theme-purple.is-lit .section-badge__num {
    color: #e0b0ff;
    text-shadow:
      0 0 14px rgba(199, 125, 255, 0.85),
      0 0 36px rgba(157, 78, 221, 0.4);
  }

  .section-badge--theme-purple.is-lit .section-badge__line--sub {
    color: rgba(245, 235, 255, 0.95);
    text-shadow: 0 0 12px rgba(157, 78, 221, 0.35);
  }

  .neon-mount .section-badge--theme-gold.is-lit .section-badge__ellipse {
    animation: neon-flicker-on 0.85s ease forwards, neon-pulse 2.8s ease-in-out 0.85s infinite;
  }

  .neon-mount .section-badge--theme-red.is-lit .section-badge__ellipse {
    animation: neon-flicker-on 0.85s ease forwards, neon-pulse-red 2.8s ease-in-out 0.85s infinite;
  }

  .neon-mount .section-badge--theme-purple.is-lit .section-badge__ellipse {
    animation: neon-flicker-on 0.85s ease forwards, neon-pulse-purple 2.8s ease-in-out 0.85s infinite;
  }

@keyframes neon-flicker-on {
  0% {
    filter: brightness(0.6);
  }
  8% {
    filter: brightness(1.25);
  }
  12% {
    filter: brightness(0.85);
  }
  18% {
    filter: brightness(1.15);
  }
  28% {
    filter: brightness(0.95);
  }
  100% {
    filter: brightness(1);
  }
}

@keyframes neon-pulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 50px rgba(212, 175, 55, 0.08),
      0 0 24px rgba(244, 208, 63, 0.4),
      0 0 48px rgba(212, 175, 55, 0.22);
  }
  50% {
    box-shadow:
      inset 0 0 55px rgba(212, 175, 55, 0.14),
      0 0 36px rgba(244, 208, 63, 0.55),
      0 0 72px rgba(157, 78, 221, 0.2);
  }
}

@keyframes neon-pulse-red {
  0%,
  100% {
    box-shadow:
      inset 0 0 50px rgba(230, 57, 70, 0.12),
      0 0 26px rgba(255, 45, 85, 0.45),
      0 0 52px rgba(230, 57, 70, 0.25);
  }
  50% {
    box-shadow:
      inset 0 0 55px rgba(230, 57, 70, 0.18),
      0 0 40px rgba(255, 45, 85, 0.6),
      0 0 78px rgba(255, 45, 85, 0.2);
  }
}

@keyframes neon-pulse-purple {
  0%,
  100% {
    box-shadow:
      inset 0 0 50px rgba(157, 78, 221, 0.15),
      0 0 26px rgba(199, 125, 255, 0.45),
      0 0 56px rgba(107, 33, 168, 0.28);
  }
  50% {
    box-shadow:
      inset 0 0 55px rgba(157, 78, 221, 0.22),
      0 0 42px rgba(199, 125, 255, 0.58),
      0 0 84px rgba(157, 78, 221, 0.22);
  }
}
