@charset "UTF-8";
/* ==========================================================
   LUVID COMPANY — Mobile Homepage
   Color System : Play Teal #0E93A3 / Discovery Blue #1E7076
                  Reality Navy #163C4A / Canvas Ivory #FFFAEE
                  Creative Ember #E55403 / Spark Orange #FFA300
   Typography   : Paperlogy (Headline) / Pretendard (Body)
   ========================================================== */

@font-face {
  font-family: 'Paperlogy';
  font-weight: 400;
  font-display: swap;
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-4Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Paperlogy';
  font-weight: 600;
  font-display: swap;
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Paperlogy';
  font-weight: 700;
  font-display: swap;
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Paperlogy';
  font-weight: 800;
  font-display: swap;
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2') format('woff2');
}
/* POINT 서체 — 강조 문구에 제한적 사용 (브랜드 타이포그래피 규정) */
@font-face {
  font-family: 'Cafe24Ssurround';
  font-weight: 700;
  font-display: swap;
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2105_2@1.0/Cafe24Ssurround.woff') format('woff');
}

:root {
  --teal: #0E93A3;
  --blue: #1E7076;
  --navy: #163C4A;
  --ivory: #FFFAEE;
  --ember: #E55403;
  --orange: #FFA300;
  --white: #FFFFFF;
  --gray: rgba(22, 60, 74, 0.55); /* Reality Navy 55% 틴트 */
  --line: rgba(22, 60, 74, 0.10);
  --font-head: 'Paperlogy', 'Pretendard Variable', Pretendard, sans-serif;
  --font-point: 'Cafe24Ssurround', 'Paperlogy', 'Pretendard Variable', sans-serif;
  --font-body: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, 'Apple SD Gothic Neo', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: #E8E7DE; /* Canvas Ivory + Reality Navy 10% — 모바일 프레임 밖 배경 */
  color: var(--navy);
  line-height: 1.6;
  word-break: keep-all;
}

/* 모바일 전용 레이아웃 — 데스크톱에서도 모바일 화면 그대로 중앙 정렬 */
.app {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--ivory);
  box-shadow: 0 0 40px rgba(22, 60, 74, 0.08);
  overflow-x: hidden;   /* 구형 브라우저 폴백 */
  overflow-x: clip;     /* sticky가 동작하도록 스크롤 컨테이너 생성 방지 */
  position: relative;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(255, 250, 238, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.logo { display: block; line-height: 0; }
.logo img { height: 32px; width: auto; display: block; }

.header .tagline {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--gray);
  text-transform: uppercase;
}

/* ---------- Scroll Reveal ---------- */
.reveal,
.reveal-late {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible, .reveal-late.visible { opacity: 1; transform: none; }
.reveal.d1, .reveal-late.d1 { transition-delay: 0.18s; }
.reveal.d2, .reveal-late.d2 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-late { opacity: 1; transform: none; transition: none; }
  .scroll-cue .chevron { animation: none; }
}

/* ---------- 3 Beats (풀스크린 인트로) ---------- */
.beat {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
}

/* Beat 1 — 슬로건 (스티키 헤더 높이만큼 보정해 스크롤 큐까지 첫 화면에 노출) */
.beat-1 {
  min-height: calc(100vh - 69px);
  min-height: calc(100svh - 69px);
  background: linear-gradient(160deg, var(--teal) 0%, var(--blue) 58%, var(--navy) 100%);
  color: var(--white);
}
.beat-1 .shapes {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 34px;
}
.beat-1 .shapes img {
  display: block;
  height: 44px;
  width: auto;
  opacity: 0.95;
}
.beat-1 h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 42px;
  line-height: 1.16;
  letter-spacing: 0.01em;
}
.beat-1 h1 .accent { color: var(--orange); }

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255, 250, 238, 0.6);
}
.scroll-cue .chevron {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto 10px;
  border-right: 2px solid rgba(255, 250, 238, 0.7);
  border-bottom: 2px solid rgba(255, 250, 238, 0.7);
  transform: rotate(45deg);
  animation: cue-bounce 1.8s ease-in-out infinite;
}
@keyframes cue-bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.7; }
  50%      { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
}

/* Beat 2 — 핀 스크롤: 질문이 화면에 고정된 채 스크롤하면
   질문 바로 아래로 답이 페이드인되어 한 화면의 조판으로 완성 */
.beat-2 {
  position: relative;
  height: 165vh; /* 스크롤 러닝웨이 */
  height: 165svh;
  background: var(--navy);
  color: var(--white);
}
.beat-stage {
  position: sticky;
  top: 69px; /* 스티키 헤더 아래에 고정 */
  min-height: calc(100vh - 69px);
  min-height: calc(100svh - 69px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
}
.beat-sentinel {
  /* 이 지점이 화면에 들어오면 답이 나타남 (질문 화면에서 한 번 더 스크롤한 시점) */
  position: absolute;
  top: 122vh;
  top: 122svh;
  height: 1px;
  width: 1px;
}
.beat-2 .beat-lead {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 250, 238, 0.66);
  margin-bottom: 24px;
}
.beat-2 .beat-question {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5;
}
.beat-2 .beat-question .accent { color: var(--orange); }

.beat-a { margin-top: 42px; }
.beat-a .beat-answer {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 23px;
  line-height: 1.5;
  margin-bottom: 18px;
}
.beat-a .beat-answer .teal { color: #6EBEC8; }   /* Play Teal 60% 틴트 */
.beat-a .beat-answer .orange { color: var(--orange); }
.beat-a .beat-desc {
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(255, 250, 238, 0.72);
}

/* ---------- Section 공통 ----------
   모든 섹션은 스티키 헤더(69px)를 제외한 한 화면 높이에 맞춤 (812px 기기 기준 743px) */
.section {
  padding: 40px 24px;
  min-height: calc(100vh - 69px);
  min-height: calc(100svh - 69px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 18px;
}

.section-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(22, 60, 74, 0.78);
}

/* ---------- About (Our Values) ---------- */
.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

.value-card {
  background: var(--white);
  border-radius: 18px;
  padding: 18px 16px;
  border: 1px solid var(--line);
}
/* CI 가이드 원본 도형 (CORE VALUES) */
.value-card .dot {
  display: block;
  height: 34px;
  width: auto;
  margin-bottom: 14px;
}

.value-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.value-card .ko {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 12px;
  line-height: 1.65;
  color: rgba(22, 60, 74, 0.7);
}

/* ---------- Brands ----------
   미션 섹션 삭제 후 컬러 리듬 유지:
   티얼 그라데이션(Beat1) → 네이비(Beat2) → 아이보리(Values) → 티얼(Brands) → 네이비(Footer) */
.brands {
  background: linear-gradient(165deg, var(--teal) 0%, var(--blue) 100%);
  padding-top: 36px;
  padding-bottom: 32px;
}
.brands .section-title { margin-bottom: 10px; }
.brands .section-label { color: rgba(255, 250, 238, 0.8); }
.brands .section-title { color: var(--white); }
.brands .section-desc { color: rgba(255, 250, 238, 0.82); }

.brand-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.brand-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px 20px;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.brand-card:active { transform: scale(0.98); }

.brand-card .brand-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--teal);
  border-radius: 999px;
  padding: 3px 11px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.brand-card.nail .brand-tag { background: var(--ember); }
.brand-card.lazy .brand-tag { background: var(--gray); }

.brand-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 4px;
}
.brand-card .en {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gray);
  text-transform: uppercase;
  margin-left: 6px;
}
.brand-card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(22, 60, 74, 0.75);
}

.brand-card .go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-weight: 700;
  font-size: 13px;
  color: var(--teal);
}
.brand-card.nail .go { color: var(--ember); }
.brand-card .go::after { content: '\2192'; font-size: 15px; }

/* 레이지걸 — 준비중(비활성) */
.brand-card.lazy {
  background: repeating-linear-gradient(
      -45deg,
      rgba(22, 60, 74, 0.028) 0 10px,
      transparent 10px 20px
    ),
    linear-gradient(rgba(255, 163, 0, 0.06), rgba(255, 163, 0, 0.06)),
    var(--ivory); /* Spark Orange 6% 틴트 on Canvas Ivory */
  cursor: default;
  pointer-events: none;
}
.brand-card.lazy h3, .brand-card.lazy .en, .brand-card.lazy p { opacity: 0.55; }
.brand-card.lazy .coming {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-family: var(--font-point);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--orange);
}
.brand-card.lazy .coming::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255, 250, 238, 0.75);
  padding: 38px 24px 30px;
  font-size: 12px;
  line-height: 1.55;
}
.footer .f-logo { line-height: 0; }
.footer .f-logo img { height: 16px; width: auto; display: block; }
.footer .f-corp {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 250, 238, 0.92);
}
.footer dl {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 12px;
  row-gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 238, 0.12);
}
.footer dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--teal);
  text-transform: uppercase;
  padding-top: 2px;
}
.footer dd { margin: 0; }
.footer a { color: inherit; text-decoration: none; }
.footer .copy {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 250, 238, 0.12);
  font-size: 10.5px;
  letter-spacing: 0.02em;
  color: rgba(255, 250, 238, 0.42);
}

/* ---------- Brand Detail Page ---------- */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.back-btn::before { content: '\2190'; }

.brand-hero {
  padding: 56px 24px 60px;
  color: var(--white);
}
.brand-hero.teal { background: linear-gradient(165deg, var(--teal) 0%, var(--blue) 100%); }
.brand-hero.ember { background: linear-gradient(165deg, var(--ember) 0%, var(--ember) 55%, var(--orange) 160%); }

.brand-hero .brand-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 12px;
}
.brand-hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.2;
}
.brand-hero .slogan {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

.detail-section { padding: 52px 24px; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.feature {
  display: flex;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 16px;
}
.feature .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  color: var(--teal);
  min-width: 26px;
}
.feature.ember-theme .num { color: var(--ember); }
.feature h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.feature p { font-size: 12.5px; line-height: 1.65; color: rgba(22, 60, 74, 0.7); }

.cta-wrap {
  padding: 8px 24px 64px;
  text-align: center;
}
.cta-btn {
  display: block;
  width: 100%;
  padding: 18px 0;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 8px 20px rgba(14, 147, 163, 0.32);
  transition: transform 0.15s ease;
}
.cta-btn:active { transform: scale(0.97); }
.cta-btn.ember {
  background: var(--ember);
  box-shadow: 0 8px 20px rgba(229, 84, 3, 0.3);
}
.cta-note {
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--gray);
}
