:root {
  --bg: #0a0a0f;
  --bg2: #0f0f18;
  --fg: #e9e9ef;
  --muted: #b9b9c9;
  --gold: #f5c551;
  --violet: #8a7dff;
  --card: #121220;
  --card2: #17172a;
  --border: rgba(255, 255, 255, .08);
  --glow: 0 0 24px rgba(245, 197, 81, .35), 0 0 48px rgba(138, 125, 255, .25);
}

* { box-sizing: border-box; }
html, body { height: 100%; }

img {
  pointer-events: none; 
  user-drag: none;
  -webkit-user-drag: none;
}

body {
  margin: 0;
  color: var(--fg);
  background:
    radial-gradient(1200px 800px at 80% 20%, rgba(245, 197, 81, .06), transparent 60%),
    radial-gradient(1000px 600px at 20% 80%, rgba(138, 125, 255, .08), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  font-family: "Pretendard", system-ui, -apple-system, Segoe UI, Roboto, Noto Sans, "Apple SD Gothic Neo", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-touch-callout: none; 
  -webkit-user-select: none; 
  user-select: none;
}

a { text-decoration: none; color: inherit; }
.wrap { width: min(1200px, 92vw); margin: 0 auto; }

/* ===== Header ===== */
header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(15, 15, 24, .45);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .5px;
}

.brand .mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--gold), #b88b2d 60%, transparent 61%),
    conic-gradient(from 0deg, rgba(245, 197, 81, .8), rgba(138, 125, 255, .6), rgba(230, 183, 255, .8), rgba(245, 197, 81, .8));
  box-shadow: var(--glow);
}

nav a {
  opacity: .85;
  padding: 10px 14px;
  border-radius: 999px;
}
nav a:hover { background: rgba(255, 255, 255, .06); opacity: 1; }

/* ===== Hero ===== */
.hero {
  padding-top: 128px;
  padding-bottom: 96px;
  min-height: 88vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero .title {
  font-size: clamp(40px, 8vw, 80px);
  line-height: 1.08;
  font-weight: 800;
}

.hero .grad {
  background: linear-gradient(90deg, var(--gold), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.sub {
  margin-top: 12px;
  font-size: clamp(16px, 2.4vw, 20px);
  color: var(--muted);
}

.cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #1c1c30, #121224);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  transition: .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover { transform: translateY(-1px); box-shadow: var(--glow); }
.btn.primary {
  background: linear-gradient(90deg, rgba(245, 197, 81, .15), rgba(138, 125, 255, .15));
  border-color: rgba(245, 197, 81, .35);
}

/* ===== Sections ===== */
section { padding: 64px 0; }
.section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  margin: 0 0 18px;
}
.section-desc { margin: 0 0 28px; color: var(--muted); }
.divider { height: 1px; background: var(--border); margin: 28px 0; }

/* ===== Grid / Cards ===== */
.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }

.card {
  grid-column: span 6;
  background: linear-gradient(180deg, var(--card), var(--card2));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.card:before {
  content: "";
  position: absolute;
  inset: auto -30% -30% auto;
  width: 180px;
  height: 180px;
  filter: blur(32px);
  background: radial-gradient(circle at 50% 50%, rgba(245, 197, 81, .18), transparent 60%);
  transform: rotate(25deg);
}
.card h3 { margin: 6px 0 6px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); }
.icon { font-size: 24px; width: 32px; line-height: 1; margin-top: 2px; }
.copy { flex: 1; }
@media (max-width: 860px) { .card { grid-column: span 12; } }

/* ===== Teaser ===== */
.teaser {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  height: 320px;
  background:
    radial-gradient(1000px 400px at -10% 120%, rgba(245, 197, 81, .18), transparent 60%),
    radial-gradient(800px 300px at 110% -30%, rgba(138, 125, 255, .22), transparent 60%),
    linear-gradient(180deg, #0a0a12, #121225);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}
.teaser .line { font-weight: 800; font-size: clamp(20px, 3vw, 28px); }
.teaser .hint { color: var(--muted); margin-top: 6px; }

/* 티저 점 전용 펄스 */
.teaser .pulse-dot {
  position: absolute;
  inset: auto auto 20px 20px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(245, 197, 81, .6);
  animation: pulse 2s infinite;
}

/* ===== Countdown ===== */
.countdown {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.timebox {
  width: 110px;
  padding: 16px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--card), var(--card2));
  text-align: center;
}
.timebox .num { font-weight: 800; font-size: 28px; display: block; }
.timebox .lbl { color: var(--muted); font-size: 12px; }

/* ===== Subscribe ===== */
.subscribe {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.subscribe input {
  background: #0f0f18;
  color: var(--fg);
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: 12px;
  min-width: 260px;
}
#subscribe input {
  background: #0f0f18;
  color: var(--fg);
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: 12px;
  min-width: 260px;
  font-style: italic;
  font-weight: 500;
}
#subscribe input::placeholder { color: var(--muted); opacity: .7; }

.note { color: var(--muted); font-size: 13px; margin-top: 10px; text-align: center; }
footer { padding: 48px 0 72px; color: var(--muted); text-align: center; }

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  filter: blur(3px);
  transition:
    opacity 1.4s cubic-bezier(.22, .61, .36, 1),
    transform 1.4s cubic-bezier(.22, .61, .36, 1),
    filter 1s ease;
}
.reveal.show { opacity: 1; transform: none; filter: blur(0); }
.reveal.left  { transform: translateX(-64px); }
.reveal.right { transform: translateX(64px); }

@media (max-width: 860px) {
  #awaits .card.left,
  #awaits .card.right {
    transform: translateY(42px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.show {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ===== AWAITS 카드 레이아웃 수정 ===== */
#awaits .card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
#awaits .card .icon-img {
  width: 110px;
  height: 110px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  flex-shrink: 0;
  display: block;
}
@media (min-width: 861px) {
  #awaits .card .icon-img { width: 128px; height: 128px; }
}
@media (max-width: 640px) {
  #awaits .card { flex-direction: column; align-items: flex-start; gap: 12px; }
  #awaits .card .icon-img {
    width: 100%;
    height: auto;
    max-width: 320px;
  }
}

/* ===== Count section spacing ===== */
#count { padding-bottom: 140px; }
#count .spacer { height: 40px; }
#count .subscribe { margin-top: 40px; }

/* ===== Insta strip ===== */
.insta-handle {
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  margin: 16px 0 8px;
  padding-top: 10px;
}
.insta-handle { font-size: 20px; font-weight: 700; color: var(--fg); }
.insta-handle-box {
  display: flex;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--card), var(--card2));
  box-shadow: var(--glow);
  overflow: hidden;
}
.insta-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 0;
}
.insta-item {
  flex: 0 0 auto;
  width: 220px;
  text-align: center;
  scroll-snap-align: start;
}
.insta-post {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}
.insta-caption {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}
.insta-handle-box .section-title { margin-top: 28px; }

/* ===== Cover Story Slider ===== */
.cs-viewport {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin: 32px auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--card), var(--card2));
  box-shadow: var(--glow);
}
.cs-track {
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
}
.cs-slide {
  flex: 0 0 100%;
  max-width: 100%;
  height: 100%;
  position: relative;
}
.cs-figure { position: relative; width: 100%; height: 100%; margin: 0; display: block; }
.cs-figure > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.cs-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 20px 18px 18px;
  color: var(--fg);
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.55) 35%, rgba(0,0,0,.8) 100%);
}
.cs-title { margin: 0 0 6px; font-size: clamp(16px, 2.6vw, 20px); font-weight: 800; }
.cs-meta { margin: 0 0 6px; font-size: 12px; color: var(--muted); }
.cs-desc { margin: 0; font-size: 14px; line-height: 1.5; color: var(--fg); }

/* Slider arrows */
.cs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.32);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background .2s ease;
  z-index: 5;
}
.cs-nav:hover { background: rgba(0,0,0,.5); }
.cs-prev { left: 10px; }
.cs-next { right: 10px; }
.cs-nav:focus-visible {
  outline: 3px solid rgba(245,197,81,.6);
  outline-offset: 2px;
}
@media (max-width: 520px) {
  .cs-caption { padding: 14px 12px 12px; }
  .cs-desc { font-size: 13px; }
}

/* ===== Branding Intro ===== */
#brand .brand-intro{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(16px, 4vw, 40px);
  align-items:center;
  margin-top: 28px;
}
#brand .brand-visual{
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio:1/1;
  border-radius:1.5rem;
  background: radial-gradient(60% 60% at 50% 40%, rgba(255,255,255,.06), rgba(255,255,255,0));
  outline:1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
#brand .brand-visual img{
  max-width: min(80%, 280px);
  height:auto;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.25));
  transition: transform .35s ease;
}
#brand .brand-visual:hover img{ transform: scale(1.03); }
#brand .brand-copy .line{
  font-weight:700;
  font-size: clamp(18px, 2vw, 22px);
  line-height:1.5;
  margin-bottom:.5rem;
}
#brand .brand-copy .hint{
  opacity:.8;
  font-size: clamp(14px, 1.6vw, 16px);
  margin-bottom: 1rem;
}
#brand .brand-points{
  display:grid;
  gap:.35rem;
  margin: 0 0 1.25rem 0;
  padding:0;
  list-style:none;
  font-size: 14px;
  opacity:.9;
}
#brand .brand-cta{
  display:inline-block;
  padding:.7rem 1.1rem;
  border-radius: 999px;
  text-decoration:none;
  font-weight:600;
  outline:1px solid rgba(255,255,255,.14);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  transition: transform .2s ease, background .2s ease;
}
#brand .brand-cta:hover{ transform: translateY(-1px); }

/* 반응형 */
@media (max-width: 860px){
  #brand .brand-intro{ grid-template-columns: 1fr; }
  #brand .brand-visual{ order: -1; }
}

/* 모션 최소화 배려 */
@media (prefers-reduced-motion: reduce){
  #brand .brand-visual img,
  #brand .brand-cta{ transition: none; }
}

/* ===== Animations ===== */
/* 기본 등장 */
.fade-in-up { opacity: 0; transform: translateY(40px); animation: fadeInUp 1s ease forwards; }
.fade-in-delay { opacity: 0; transform: translateY(20px); animation: fadeInUp 1s ease .4s forwards; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* 타이틀 슬라이드 인 */
.slide-in { opacity: 0; transform: translateX(-40px); animation: slideIn 1s ease forwards; }
@keyframes slideIn { to { opacity: 1; transform: translateX(0); } }

/* 타이핑 */
.typing { animation: none !important; border-right: 0 !important; }



/* 로고 떠오르기 */
.float { animation: float 4s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-10px) } }

/* 버튼 펄스 (브랜드 CTA 전용) */
.pulse-cta { animation: pulse 2.2s infinite; }

/* 공용 펄스 키프레임 — 한 번만 선언 */
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245, 197, 81, .6); }
  70%  { box-shadow: 0 0 0 16px rgba(245, 197, 81, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 197, 81, 0); }
}
.brand-points p {
  font-size: 14px;
  line-height: 1.7;
  opacity: .9;
  margin: 0 0 1.25rem;
}
.brand-points strong {
  font-weight: 700;
  color: var(--fg);
}

.review-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
}

.review-slider .slide {
  flex: 0 0 80%;
  scroll-snap-align: center;
}

.review-slider img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.brand-visual.slow {
  animation-duration: 2.5s !important;
  transition-duration: 2.5s !important;
}
