@charset "utf-8";

.sw-page {
  /* background: #0a0a0a; */
  color: #f4f4f4;
  /* font-family: 'Pretendard Variable', Pretendard, sans-serif; */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.sw-page * {
  box-sizing: border-box;
}

.sw-page ::selection {
  background: #ffda00;
  color: #000;
}

.u-scroll {
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}
.u-scroll::-webkit-scrollbar {
  height: 8px;
}
.u-scroll::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 4px;
}

@keyframes sw-pulse {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}
@keyframes sw-scan {
  0% { top: -2%; opacity: 0; }
  12% { opacity: .85; }
  88% { opacity: .85; }
  100% { top: 101%; opacity: 0; }
}

.sw-frame-texture {
  background-color: #0e0e0e;
  background-image: repeating-linear-gradient(125deg, rgba(255,255,255,.028) 0 2px, transparent 2px 13px);
}

/* ============ HERO ============ */
.sw-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  /* background: #0a0a0a; */
}

.sw-hero__gradient-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 40%, rgba(10,10,10,.9) 54%, rgba(10,10,10,.4) 76%, rgba(10,10,10,.6) 100%);
  z-index: 5;
  display: none;
}

.sw-hero__gradient-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.15) 0%, transparent 24%, rgba(10,10,10,.35) 66%, rgba(10,10,10,.97) 100%);
  z-index: 5;
  display: none;
}

.sw-hero__inner {
  position: relative;
  z-index: 6;
  padding: 96px 56px 54px;
  max-width: 900px;
}

.sw-hero__eyebrow {
  /* font-family: 'Space Mono', monospace; */
  font-size: 13px;
  letter-spacing: .34em;
  color: #ffda00;
  margin-bottom: 26px;
}

.sw-hero__title {
  margin: 0;
  font-weight: 800;
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: -.02em;
  word-break: keep-all;
  max-width: 800px;
}

.sw-hero__title-accent {
  color: #ffda00;
}

.sw-hero__desc {
  margin: 30px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: #9a9a9a;
  word-break: keep-all;
}

.sw-hero__cta-row {position: relative; z-index: 100; margin: 100px auto ; height: 6rem;}
.sw-hero__cta-row ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; height: 6rem;}
.sw-hero__cta-row ul.top-fixed {position: fixed; width: var(--area-wide-width); max-width: 100%; top: 40px; z-index: 100;}
.sw-hero__cta-row ul li {height: 100%;width: 18rem;}
.sw-hero__cta {
  font-size: 1.8rem;
  padding: 0 22px;
  height: 100%;
	display: flex; align-items: center; justify-content: center; text-align: center;
  border-radius: 4rem;
  text-decoration: none;
  background: transparent;
  background-color : rgba(255,255,255,0.05);
  color: #e6e6e6;
  border: 1px solid rgba(255,255,255,.15);
  transition: border-color .15s ease, color .15s ease;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  backdrop-filter: blur(2rem);
}

.sw-hero__cta:hover {
  border-color: #ffda00;
  color: #ffda00;
}

.sw-hero__cta-row ul li.selected .sw-hero__cta {
  background: #ffda00;
  color: #000;
  font-weight: 700;
 /*  border: none; */
}

.sw-hero__cta--primary:hover {
  border-color: transparent;
  color: #000;
}

/* ============ ZONE 공통 ============ */
.sw-zone {
  scroll-margin-top: 20px;
}

.sw-zone-hero {
  position: relative;
  /* height: 660px; */
  overflow: hidden;
}

.sw-zone-hero--fixed-height {
  height: 640px;
}

.sw-zone-hero--fixed-height-sm {
  height: 640px;
}

.sw-zone-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sw-zone-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,.35) 62%, rgba(10,10,10,.96) 100%);
}

.sw-zone-hero__gradient--soft {
  background: linear-gradient(180deg, rgba(10,10,10,.35) 0%, rgba(10,10,10,0) 34%, rgba(10,10,10,.9) 100%);
}

.sw-zone-hero__index {
  position: absolute;
  top: 40px;
  left: 56px;
  /* font-family: 'Space Mono', monospace; */
  font-size: 13px;
  letter-spacing: .2em;
  color: #ffda00;
  z-index: 2;
}

.sw-zone-hero__center {
  position: relative;
  inset: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iframe-wrapper{position: relative; width: 100%;}
.iframe-wrapper .iframe-inner{overflow:hidden; position:relative; width:100%; }
.iframe-wrapper .iframe-inner iframe{position:absolute; top:50%; left:50%; width:100%; height:calc(100% + 350px); transform:translate(-50%,-50%)}

.sw-zone-hero .iframe-wrapper .iframe-inner {padding-top: 38.37%;}

.sw-zone-hero__center--stacked {
  flex-direction: column;
  gap: 16px;
}

.sw-zone-hero__center-label {
  /* font-family: 'Space Mono', monospace; */
  font-size: 12px;
  letter-spacing: .14em;
  color: #7c7c7c;
  text-transform: uppercase;
}

.sw-zone-hero__play {
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform:translate(-50%,-50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255,218,0,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0,0,0,.4);
  border: none;
  cursor: pointer;
  color: #000;
  font-size: 30px;
  padding-left: 5px; /* 재생 아이콘 시각 중심 보정 */ 
}

.sw-zone-hero__wordmark {
  position: absolute;
  left: 52px;
  bottom: 38px;
}

.sw-zone-hero__wordmark--no-link {
  bottom: 38px;
}

.sw-zone-hero__wordmark-title {
  /* font-family: 'Archivo', sans-serif; */
  font-weight: 900;
  font-size: 118px;
  line-height: .9;
  letter-spacing: -.02em;
  color: #fff;
}

.sw-zone-hero__wordmark-title--md {
  font-size: 100px;
}

.sw-zone-hero__wordmark-title--lg {
  font-size: 108px;
  letter-spacing: -.01em;
}

.sw-zone-hero__wordmark-link {
  display: inline-block;
  /* font-family: 'Space Mono', monospace; */
  font-size: 13px;
  color: #cfcfcf;
  margin-top: 14px;
  text-decoration: none;
}

.sw-zone-hero__wordmark-link:hover {
  color: #ffda00;
}

/* ============ HUD 오버레이 (기본 숨김) ============ */
.sw-hud {
  display: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sw-zone-hero--hud .sw-hud {
  display: block;
}

.sw-hud__scan {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,218,0,.9), transparent);
  animation: sw-scan 4.5s linear infinite;
}

.sw-hud__corner {
  position: absolute;
  width: 22px;
  height: 22px;
}

.sw-hud__corner--tl { top: 24px; left: 24px; border-top: 2px solid rgba(255,218,0,.7); border-left: 2px solid rgba(255,218,0,.7); }
.sw-hud__corner--tr { top: 24px; right: 24px; border-top: 2px solid rgba(255,218,0,.7); border-right: 2px solid rgba(255,218,0,.7); }
.sw-hud__corner--bl { bottom: 24px; left: 24px; border-bottom: 2px solid rgba(255,218,0,.7); border-left: 2px solid rgba(255,218,0,.7); }
.sw-hud__corner--br { bottom: 24px; right: 24px; border-bottom: 2px solid rgba(255,218,0,.7); border-right: 2px solid rgba(255,218,0,.7); }

.sw-hud__rec {
  position: absolute;
  top: 28px;
  right: 56px;
  display: flex;
  align-items: center;
  gap: 6px;
  /* font-family: 'Space Mono', monospace; */
  font-size: 11px;
  color: #ffda00;
  letter-spacing: .1em;
}

.sw-hud__rec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4444;
  animation: sw-pulse 1.2s infinite;
}

/* ============ ZONE 인트로 (라벨 + 설명) ============ */
.sw-zone-intro {
  padding: 56px 56px 8px;
}

.sw-zone-intro__eyebrow {
	display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .18em;
    color: #ffda00;
	font-weight: 500;
    text-transform: uppercase;
}
.sw-eyebrow-line {
	width: 24px;
    height: 1px;
    background: #ffda00;
    display: inline-block;
}

.sw-zone-intro__title {
  /* font-family: 'Archivo', sans-serif; */
  font-weight: 900;
  font-size: 42px;
  margin-top: 20px;
  line-height: 1.25;
}

.sw-zone-intro__desc {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: #9a9a9a;
  max-width: 820px;
}

/* ============ 2단 구성: 미디어 프레임 + 주요 기능 리스트 ============ */
.sw-feature {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 100px;
  padding: 40px 56px 56px;
  align-items: center;
}

.sw-feature__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  /* aspect-ratio: 16 / 10; */
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sw-feature__media.img-media {aspect-ratio: 16 / 10;}
.sw-feature__media .iframe-wrapper .iframe-inner {padding-top: 56.25%;}

.sw-feature__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sw-feature__media-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.55));
}

.sw-feature__media-play {
  position: absolute;
  top: 50%;
  left: 50%; 
  transform:translate(-50%,-50%);
  z-index: 1;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255,218,0,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: #000;
  font-size: 24px;
  padding-left: 4px;
}

.sw-feature__media-tag {
  position: absolute;
  top: 18px;
  left: 20px;
  /* font-family: 'Space Mono', monospace; */
  font-size: 12px;
  color: #ffda00;
}

.sw-feature__media-link {
  position: absolute;
  z-index: 1;
  bottom: 18px;
  left: 20px;
  /* font-family: 'Space Mono', monospace; */
  font-size: 12px;
  color: #e6e6e6;
  text-decoration: none;
}

.sw-feature__media-link:hover {
  color: #ffda00;
}

.sw-feature__media-center-text {
  /* font-family: 'Space Mono', monospace; */
  font-size: 12px;
  color: #5f5f5f;
}

.sw-feature__gauge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: rgba(12,12,12,.88);
  border: 1px solid rgba(255,218,0,.35);
  border-radius: 16px;
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(4px);
  box-shadow: 0 12px 34px rgba(0,0,0,.45);
  z-index: 1;
}

.sw-feature__gauge-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(#ffda00 0% 0%, #242424 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sw-feature__gauge-inner {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #0f0f0f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sw-feature__gauge-score {
  /* font-family: 'Archivo', sans-serif; */
  font-weight: 900;
  font-size: 44px;
  color: #ffda00;
  line-height: 1;
}

.sw-feature__gauge-unit {
  /* font-family: 'Space Mono', monospace; */
  font-size: 10px;
  color: #7c7c7c;
  margin-top: 5px;
  letter-spacing: .08em;
}

.sw-feature__gauge-caption {
  font-size: 13px;
  color: #c8c8c8;
  text-align: center;
  line-height: 1.45;
}

.sw-feature__list-label {
  /* font-family: 'Space Mono', monospace; */
  font-size: 13px;
  letter-spacing: .12em;
  color: #8a8a8a;
  font-weight: 800;
  padding-bottom: 20px;
}

.sw-feature__row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  transition: background .15s ease, transform .15s ease, padding-left .15s ease, border-left-color .15s ease;
}

.sw-feature__row--last {
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.sw-feature__row:hover {
  background: rgba(255,218,0,.03);
}

.sw-feature__row-index {
  /* font-family: 'Space Mono', monospace; */
  font-size: 14px;
  color: #ffda00;
  width: 30px;
  flex: 0 0 auto;
}

.sw-feature__row-index--wide {
  width: 96px;
}

.sw-feature__row-text {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

/* ============ 태그라인 ============ */
.sw-tagline {
  padding: 8px 56px 30px;
}

.sw-tagline__title {
  margin: 0;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: -.01em;
}

/* ============ 갤러리 (가로 스크롤) ============ */
.sw-gallery {
  padding: 10px 56px 84px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.sw-gallery__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}

.sw-gallery__label {
  /* font-family: 'Space Mono', monospace; */
  font-size: 12px;
  letter-spacing: .14em;
  color: #8a8a8a;
}

.sw-gallery__hint {
  /* font-family: 'Space Mono', monospace; */
  font-size: 12px;
  color: #6a6a6a;
}

.sw-gallery__track {
  /* display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px; */
}

.sw-gallery__item {
  
}
.sw-gallery__item .inner {
	position: relative;
	display: block;
  flex: 0 0 360px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  aspect-ratio: 16 / 10;
}

.sw-gallery__item-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sw-gallery__item-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.75));
}

.sw-gallery__item-caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  /* font-family: 'Space Mono', monospace; */
  font-size: 12px;
 /*  background-color: #000; */
  color: var(--main-color);
}

.sw-gallery__item--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sw-gallery__item-placeholder-text {
  /* font-family: 'Space Mono', monospace; */
  font-size: 12px;
  color: #5f5f5f;
}

/* ============ FEATURE DETAIL 카드 그리드 (VIEW) ============ */
.sw-detail {
  padding: 10px 56px 84px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.sw-detail__label {
  /* font-family: 'Space Mono', monospace; */
  font-size: 12px;
  letter-spacing: .14em;
  color: #8a8a8a;
  margin-bottom: 18px;
}

.sw-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sw-detail-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .15s ease;
}

.sw-detail-card:hover {
  border-color: rgba(255,218,0,.4);
}

.sw-detail-card__media {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sw-detail-card__body {
  padding: 22px 24px;
}

.sw-detail-card__title {
  /* font-family: 'Space Mono', monospace; */
  font-size: 13px;
  color: #ffda00;
}

.sw-detail-card__desc {
  font-size: 15px;
  color: #c8c8c8;
  margin-top: 10px;
  line-height: 1.6;
}

/* ============ PLAY MODES 카드 그리드 (Refine+) ============ */
.sw-modes {
  padding: 10px 56px 90px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.sw-modes__label {
  /* font-family: 'Space Mono', monospace; */
  font-size: 12px;
  letter-spacing: .14em;
  color: #8a8a8a;
  margin-bottom: 18px;
}

.sw-modes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.sw-mode-card {
	display: block;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .15s ease;
}

.sw-mode-card:hover {
  border-color: rgba(255,218,0,.4);
}

.sw-mode-card__media {
  aspect-ratio: 3 / 1.7;
  position: relative;
}

.sw-mode-card__body {
  padding: 16px 18px;
}

.sw-mode-card__title {
  /* font-family: 'Space Mono', monospace; */
  font-size: 2.2rem;
  font-weight: 500;
line-height: 1.2;
  color: #ffda00;
}

.sw-mode-card__desc {
  font-size: 1.6rem;
  color: #c8c8c8;
  line-height: 1.3;
  margin-top: 1rem;
}

/* ============ 클로징 CTA ============ */
.sw-outro {
  text-align: center;
  padding: 110px 56px 120px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: radial-gradient(120% 100% at 50% 0%, rgba(255,218,0,.06), transparent 60%);
}

.sw-outro__eyebrow {
  /* font-family: 'Space Mono', monospace; */
  font-size: 13px;
  letter-spacing: .3em;
  color: #ffda00;
}

.sw-outro__title {
  margin: 22px auto 0;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.2;
  max-width: 800px;
}

.sw-outro__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 38px;
}

.sw-outro__btn {
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 25px;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}

.sw-outro__btn--primary {
  background: #ffda00;
  color: #000;
  font-weight: 700;
  border: none;
}

.sw-outro__btn--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}

.sw-outro__btn--secondary:hover {
  border-color: #ffda00;
  color: #ffda00;
}


@media all and ( max-width: 1279px ){
	.sw-feature {display: block;}
	.sw-feature__media {margin-bottom: 3rem;}
	.sw-hero__cta-row ul.top-fixed {top: var(--header-height);}
}
@media all and ( max-width: 800px ){
	.sw-zone-hero {height: auto;}
	.sw-zone-hero__center {position: relative;}
	.sw-zone-hero__wordmark-title  {font-size: 4.8rem; }
	.sw-zone-hero__wordmark {left: var(--area-padding); bottom: 2.5rem;}
	.sw-zone-hero__index {left: var(--area-padding); top: 2.5rem;}
	.sw-zone-hero__play {width: 6rem; height: 6rem; font-size: 2.4rem;}
	.sw-feature__media {display: block; aspect-ratio: auto;}
	.sw-feature__gauge {position: relative; left: auto; right: auto; top: auto; bottom: auto; margin-top: 1rem;}
	.sw-feature__media-play {width: 6rem; height: 6rem; font-size: 2.4rem;}
	.sw-zone-intro {padding: 56px var(--area-padding) 8px;}
	.sw-feature { padding: 40px var(--area-padding) 56px;}
	.sw-tagline {padding: 8px var(--area-padding) 30px;}
	
	.sw-gallery {padding: 10px var(--area-padding) 84px;}
	.sw-detail {padding: 10px var(--area-padding) 84px;}
	.sw-modes {padding: 10px var(--area-padding) 90px;}
	.sw-modes__grid {    grid-template-columns: repeat(2, 1fr);}
	.sw-outro {padding: 110px var(--area-padding) 120px;}
	.sw-outro__title {font-size: 3.8rem;}
	
}
@media all and ( max-width: 480px ) {
	.sw-detail__grid { grid-template-columns: repeat(1, 1fr);}
	.sw-modes__grid { }
}