/* ============================================================
   tourly landing — dark · minimal · premium
   brand: matte black (#0a0a0a) + vibrant yellow (#FFD400)
   mobile-first, content-centered column (max 480px),
   desktop = same column centered (mirrors phone feel)
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-elev: #131313;
  --surface: #181818;
  --surface-2: #1f1f1f;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #f4f4f4;
  --text-2: #b8b8b8;
  --text-muted: #7a7a7a;

  --y: #FFD400;
  --y-soft: rgba(255, 212, 0, 0.14);
  --y-deep: #d9b400;

  --bad: #ff5b5b;

  --max-w: 480px;
  --max-w-wide: 720px;
  --radius: 18px;
  --radius-sm: 12px;
  --gap: 16px;

  --font: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo',
          'Segoe UI', Roboto, 'Noto Sans KR', sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--y); }

/* ===== Layout containers ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container--center { text-align: center; }

.section {
  padding: 96px 0;
  position: relative;
}
.section--alt { background: var(--bg-elev); }
.section--feature { padding: 88px 0; }

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--y);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--y-soft);
  border-radius: 999px;
  background: rgba(255, 212, 0, 0.04);
  margin-bottom: 18px;
}

.section__title {
  font-size: clamp(28px, 7vw, 38px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}
.section__lead {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 380px;
}

.muted { color: var(--text-muted); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 60%, rgba(0,0,0,0.92) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.2) 35%, rgba(10,10,10,0.95) 100%);
}

/* nav */
.nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--y);
  box-shadow: 0 0 12px rgba(255, 212, 0, 0.55);
}
.brand-word { color: #fff; }
.nav__cta {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  background: var(--y);
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: -0.01em;
}

/* hero copy */
.hero__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(40px, 11vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.hero__sub {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 360px;
}
.hero__ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  letter-spacing: -0.01em;
  transition: transform 0.12s ease, background 0.12s ease;
  border: 1px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--y);
  color: #000;
  box-shadow: 0 6px 24px rgba(255, 212, 0, 0.22);
}
.btn--primary:hover { background: #ffe04d; }
.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: var(--line-strong);
  backdrop-filter: blur(6px);
}

/* hero chips */
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.chip {
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--text-2);
  backdrop-filter: blur(4px);
}

/* ============================================================
   WHY (problem / solution)
   ============================================================ */
.section--why { padding-top: 88px; padding-bottom: 88px; }

.why-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.why-card {
  border-radius: var(--radius);
  padding: 22px 22px 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.why-card--bad {
  background: linear-gradient(180deg, rgba(255, 91, 91, 0.05), transparent);
}
.why-card--good {
  background: linear-gradient(180deg, rgba(255, 212, 0, 0.07), transparent);
  border-color: rgba(255, 212, 0, 0.25);
}
.why-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.why-card--bad .why-card__tag {
  background: rgba(255, 91, 91, 0.15);
  color: #ff8585;
}
.why-card--good .why-card__tag {
  background: var(--y);
  color: #000;
}
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.why-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.55;
}
.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.why-card--bad .why-list li::before { background: var(--bad); }
.why-card--good .why-list li::before { background: var(--y); }
.why-card--good .why-list li { color: var(--text); }

/* ============================================================
   FEATURE — phone-frame + bullets
   ============================================================ */
.feature-stage {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.phone-frame {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 19.5;
  border-radius: 36px;
  background: #000;
  padding: 8px;
  border: 1px solid var(--line-strong);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255, 212, 0, 0.08),
    0 0 80px rgba(255, 212, 0, 0.06);
  overflow: hidden;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}
.phone-video {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  object-fit: cover;
  background: #000;
}

.bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-2);
}
.bullets li strong {
  color: #fff;
  font-weight: 700;
}
.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 2px;
  background: var(--y);
  border-radius: 2px;
}
.bullets--inline {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* phone-row — side-by-side static screenshots */
.phone-row {
  display: flex;
  gap: 12px;
  margin: 28px -8px 0;
  padding: 0 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.phone-row::-webkit-scrollbar { display: none; }
.phone {
  flex: 0 0 auto;
  width: 56%;
  max-width: 240px;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  background: #000;
  scroll-snap-align: center;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

/* ============================================================
   SUB-BLOCK (feature sub-sections within one section)
   ============================================================ */
.sub-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 36px 0 16px;
}
.sub-title:first-child { margin-top: 0; }
.sub-lead {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 18px 0 0;
}
.sub-lead strong { color: #fff; font-weight: 700; }

.phone-row--center {
  justify-content: center;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 48px 0 8px;
}

/* ============================================================
   CALLOUT (premium lock callout)
   ============================================================ */
.callout {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--y-soft);
  border: 1px solid rgba(255, 212, 0, 0.25);
  font-size: 14px;
  line-height: 1.55;
}
.callout__lock {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.callout strong { color: var(--y); font-weight: 700; }

/* ============================================================
   PRICING
   ============================================================ */
.section--pricing {
  padding: 96px 0 104px;
  background: linear-gradient(180deg, var(--bg) 0%, #050505 100%);
}
.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0 16px;
}
.price-card {
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  position: relative;
}
.price-card--pro {
  background: linear-gradient(180deg, rgba(255, 212, 0, 0.10), rgba(255, 212, 0, 0.02));
  border-color: var(--y);
  box-shadow: 0 0 0 1px rgba(255, 212, 0, 0.18), 0 18px 60px rgba(255, 212, 0, 0.08);
}
.price-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.08);
  color: var(--text-2);
}
.price-card__tag--pro {
  background: var(--y);
  color: #000;
}
.price-card__price {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: #fff;
}
.price-card__period {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}
.price-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.price-card__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.55;
}
.price-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--y);
  font-weight: 700;
}
.price-card__list li strong { color: #fff; font-weight: 700; }
.price-card--free .price-card__list li::before { color: var(--text-muted); }
.badge-soon {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 20px;
  border: 1px solid #f59e0b;
  color: #f59e0b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  vertical-align: middle;
  line-height: 1.4;
}

/* ── Pass / Premium grid ── */
.pass-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 36px 0 28px;
}
@media (min-width: 640px) {
  .pass-grid { grid-template-columns: repeat(3, 1fr); }
}
.pass-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 212, 0, 0.05);
  border: 1px solid rgba(255, 212, 0, 0.18);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}
.pass-icon {
  font-size: 20px;
  line-height: 1.3;
  flex-shrink: 0;
}

.pricing__note {
  margin: 18px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   CTA + Footer
   ============================================================ */
.section--cta {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 212, 0, 0.14) 0%, transparent 60%),
    #050505;
  padding: 100px 0 104px;
}
.cta__title {
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}
.cta__sub {
  color: var(--text-2);
  font-size: 14px;
  margin: 0 0 32px;
}
.cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.store-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 260px;
  padding: 13px 18px;
  border-radius: 14px;
  background: #fff;
  color: #000;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  transition: transform 0.12s ease, background 0.12s ease;
}
.store-btn:hover { background: #f0f0f0; }
.store-btn:active { transform: translateY(1px); }
.store-btn__small {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 2px;
}
.store-btn__big {
  font-size: 17px;
  font-weight: 800;
}

.footer {
  background: #050505;
  padding: 32px 0 56px;
  border-top: 1px solid var(--line);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 12px;
}
.footer__copy {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 6px;
}
.footer__links {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}
.footer__links a:hover { color: var(--y); }

/* ============================================================
   Desktop — center the mobile column, soften vignette
   ============================================================ */
@media (min-width: 720px) {
  body {
    background:
      radial-gradient(ellipse at center top, #1a1a1a 0%, var(--bg) 50%);
  }
  .hero { min-height: 100vh; }
  .phone-row { justify-content: center; flex-wrap: nowrap; }
  .phone { width: 220px; }
  .phone--hide-sm { display: block; }

  /* widen feature stage to two columns */
  .feature-stage {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    max-width: var(--max-w-wide);
    margin-left: auto;
    margin-right: auto;
  }
  .feature-stage .phone-frame { flex: 0 0 300px; }
  .feature-stage .bullets { flex: 1; }
  .container { max-width: var(--max-w-wide); }

  .pricing {
    flex-direction: row;
    align-items: stretch;
    gap: 18px;
  }
  .price-card { flex: 1; }

  .cta__buttons { flex-direction: row; justify-content: center; }
}

@media (max-width: 480px) {
  .phone--hide-sm { display: none; }
}

/* ============================================================
   Reduce motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .btn, .store-btn { transition: none; }
  video { display: none; }
  .hero__bg { display: none; }
  .hero { background: linear-gradient(180deg, #181818 0%, #0a0a0a 100%); }
}

/* ============================================================
   Beta additions (2026-06-06) — toned down
   ============================================================ */
.brand-tag {
  margin-left: 8px;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-2);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  vertical-align: middle;
}

.pass-section-title {
  margin: 36px 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.4px;
}

.pass-section-title:first-of-type {
  margin-top: 24px;
}

.pass-item--highlight {
  border: 1px solid var(--line-strong) !important;
}

.pass-intro {
  text-align: center;
  margin: 8px 0 24px;
}
.pass-intro__kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--y);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.pass-intro__lead {
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}

.cta__note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.cta__note .muted {
  font-size: 12px;
  opacity: 0.7;
}

/* ── 이탈 알림 하이라이트 ───────────────────────────── */
.deviation-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 40px 0 8px;
  padding: 28px 20px;
  background: rgba(255, 91, 91, 0.05);
  border: 1px solid rgba(255, 91, 91, 0.25);
  border-radius: var(--radius);
}
.deviation-shot {
  width: 200px;
  max-width: 56%;
  border-radius: 20px;
  border: 1px solid var(--line);
}
.deviation-copy { width: 100%; }
.deviation-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--bad);
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border: 1px solid rgba(255, 91, 91, 0.4);
  border-radius: 999px;
  margin-bottom: 14px;
}
.deviation-title {
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.deviation-desc {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.deviation-points {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.deviation-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}
.deviation-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--y);
  font-weight: 700;
}
.deviation-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* 데스크탑 — 스크린샷 좌, 카피 우 */
@media (min-width: 640px) {
  .deviation-stage {
    flex-direction: row;
    align-items: center;
    gap: 36px;
    padding: 36px;
  }
  .deviation-shot { flex-shrink: 0; max-width: 220px; }
}

/* ============================================================
   Print / screenshot — clean vertical layout for flyer use
   ============================================================ */
@media print {
  body { background: #0a0a0a !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  video { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  .nav__cta { display: none; }
}
