/* ════════════════════════════════════════════════════════
     Design tokens — HeroUI (light theme)
  ════════════════════════════════════════════════════════ */
:root {
  /* neutral (zinc) */
  --bg: #ffffff;
  --bg-2: #fafafa; /* default-50  */
  --content2: #f4f4f5; /* default-100 */
  --content3: #e4e4e7; /* default-200 */
  --fg: #11181c; /* foreground  */
  --fg-2: #3f3f46; /* default-700 */
  --fg-3: #71717a; /* default-500 muted */
  --border: #e4e4e7; /* default-200 */
  --border-2: #d4d4d8; /* default-300 */

  /* primary = HeroUI primary blue */
  --p: #006fee;
  --p-400: #338ef7;
  --p-600: #005bc4;
  --p-700: #004493;
  --p-50: #e6f1fe;
  --p-100: #cce3fd;
  --p-fg: #ffffff;

  /* accents */
  --success: #17c964;
  --success-50: #e8faf0;
  --danger: #f31260;
  --danger-50: #fee7ef;
  --warning: #f5a524;
  --warning-50: #fef4e4;

  /* dark surfaces (HeroUI dark) */
  --dark: #0b0b0f;
  --dark-2: #18181b;
  --dark-3: #27272a;
  --on-dark: #ecedee;
  --on-dark-2: #a1a1aa;

  /* radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 14px;
  --r-xl: 18px;
  --r-2xl: 24px;

  /* shadows (HeroUI soft) */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg:
    0 12px 34px rgba(17, 24, 28, 0.1), 0 4px 10px rgba(17, 24, 28, 0.04);
  --shadow-p: 0 10px 30px -8px rgba(0, 111, 238, 0.45);

  /* type */
  --sans:
    "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --t-eyebrow: 0.8rem;
  --t-body: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  --t-lead: clamp(1.08rem, 1rem + 0.4vw, 1.28rem);
  --t-h3: clamp(1.2rem, 1.08rem + 0.6vw, 1.5rem);
  --t-h2: clamp(1.7rem, 1.25rem + 2vw, 2.85rem);
  --t-hero: clamp(2.4rem, 1.5rem + 4vw, 4.4rem);

  --gutter: clamp(20px, 5vw, 40px);
  --section: clamp(60px, 4rem + 5vw, 124px);
  --maxw: 1120px;

  --dur: 0.6s;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  font-size: var(--t-body);
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection {
  background: var(--p);
  color: #fff;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.wrap-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
main > section {
  padding-block: var(--section);
}
section[id] {
  scroll-margin-top: 80px;
}

h1,
h2,
h3 {
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  word-break: keep-all;
}
h2 {
  font-size: var(--t-h2);
}
h3 {
  font-size: var(--t-h3);
  letter-spacing: -0.02em;
}
p {
  word-break: keep-all;
}

/* ── shared bits ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-eyebrow);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--p);
  background: var(--p-50);
  padding: 6px 14px;
  border-radius: 999px;
}
.eyebrow.center {
  margin-inline: auto;
}
.lead {
  font-size: var(--t-lead);
  color: var(--fg-2);
  line-height: 1.6;
}
.center {
  text-align: center;
}
.sec-head {
  max-width: 680px;
  margin-bottom: clamp(30px, 3.5vw, 52px);
}
.sec-head.center {
  margin-inline: auto;
  text-align: center;
}
.sec-head h2 {
  margin-top: 18px;
}
.sec-head p {
  margin-top: 16px;
  color: var(--fg-3);
  font-size: var(--t-lead);
}
.grad {
  background: linear-gradient(120deg, var(--p-400), var(--p) 55%, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── chips ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--content2);
  color: var(--fg-2);
}
.chip.flat-p {
  background: var(--p-50);
  color: var(--p-700);
}

/* ── buttons (HeroUI) ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 13px 24px;
  border-radius: var(--r-md);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.2s,
    opacity 0.2s;
}
.btn .arr {
  transition: transform 0.3s var(--ease);
}
.btn:hover .arr {
  transform: translateX(3px);
}
.btn-lg {
  padding: 16px 30px;
  font-size: 1.06rem;
  border-radius: var(--r-lg);
}
.btn-solid {
  background: var(--p);
  color: var(--p-fg);
  box-shadow: var(--shadow-p);
}
.btn-solid:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}
.btn-flat {
  background: var(--p-50);
  color: var(--p-700);
}
.btn-flat:hover {
  background: var(--p-100);
}
.btn-bordered {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-2);
}
.btn-bordered:hover {
  border-color: var(--p);
  color: var(--p);
}
.btn-dark {
  background: var(--fg);
  color: #fff;
}
.btn-dark:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.btn-sub {
  display: block;
  font-size: 0.85rem;
  color: var(--fg-3);
  margin-top: 12px;
  font-weight: 500;
}

/* ── topbar ── */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--gutter);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transform: translateY(-100%);
  transition:
    transform 0.4s var(--ease),
    border-color 0.3s;
}
.topbar.show {
  transform: translateY(0);
  border-color: var(--border);
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.brand .mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--p-400), var(--p));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.topbar .btn {
  padding: 10px 20px;
  font-size: 0.92rem;
}
.seat-live {
  margin-left: auto;
  margin-right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--danger);
  white-space: nowrap;
  background: var(--danger-50);
  padding: 7px 13px;
  border-radius: 999px;
  animation: seatBlink 1s steps(1, end) infinite;
}
.seat-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--danger);
  flex-shrink: 0;
}
.seat-live b {
  font-weight: 800;
  min-width: 1.1em;
  text-align: center;
}
@keyframes seatBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
@media (min-width: 880px) {
  .seat-live {
    margin-right: 18px;
  }
}
@media (max-width: 560px) {
  .topbar .brand .b-name {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .seat-live {
    animation: none;
  }
}

/* ── placeholder media (swap with <img>) ── */
.ph {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--content2), var(--content3));
  display: grid;
  place-items: center;
  color: var(--fg-3);
}
.ph::after {
  content: attr(data-label);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 8px 14px;
  border: 1px dashed var(--border-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}
.ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.browser {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.browser .bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.browser .bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--border-2);
  display: block;
}
.browser .bar .url {
  margin-left: 10px;
  font-size: 0.74rem;
  color: var(--fg-3);
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 14px;
  flex: 1;
  max-width: 280px;
}
.browser .shot {
  aspect-ratio: 16/10;
}

/* ════════════════════════════════════════════════════════
     HERO
  ════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding-top: clamp(110px, 14vh, 168px);
  padding-bottom: var(--section);
  background:
    radial-gradient(60% 60% at 50% 0%, var(--p-50), transparent 70%), var(--bg);
}
.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--fg-2);
  background: #fff;
  border: 1px solid var(--border);
  padding: 7px 8px 7px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.hero .badge .pill {
  font-size: 0.74rem;
  font-weight: 700;
  color: #fff;
  background: var(--p);
  padding: 3px 10px;
  border-radius: 999px;
}
.hero h1 {
  font-size: var(--t-hero);
  margin: 26px auto 22px;
  max-width: 16ch;
  letter-spacing: -0.04em;
}
.hero .sub {
  font-size: var(--t-lead);
  color: var(--fg-2);
  max-width: 42ch;
  margin-inline: auto;
}
.hero .sub strong {
  color: var(--fg);
  font-weight: 700;
}
.hero-cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-cta > a:first-child {
  margin-bottom: 14px;
}
.hero-chips {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* hero preview card */
.hero-preview {
  margin-top: clamp(52px, 6vw, 88px);
  position: relative;
}
.hero-preview .glow {
  position: absolute;
  inset: -12% 6% auto;
  height: 78%;
  z-index: 0;
  background: radial-gradient(50% 60% at 50% 0%, var(--p-100), transparent 70%);
  filter: blur(26px);
  will-change: transform;
}
.stage {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  perspective: 1100px;
  perspective-origin: 50% 24%;
}
/* phone mockup */
.phone {
  position: relative;
  width: min(300px, 74vw);
  aspect-ratio: 300/620;
  background: linear-gradient(155deg, #202028, #0b0b0f);
  border-radius: 46px;
  padding: 11px;
  box-shadow:
    var(--shadow-lg),
    0 50px 90px -34px rgba(0, 111, 238, 0.4),
    inset 0 0 0 2px rgba(255, 255, 255, 0.06);
  transform-style: preserve-3d;
  will-change: transform;
}
.phone::before,
.phone::after {
  content: "";
  position: absolute;
  border-radius: 3px;
  background: #1a1a20;
}
.phone::before {
  top: 120px;
  left: -3px;
  width: 3px;
  height: 34px;
}
.phone::after {
  top: 170px;
  left: -3px;
  width: 3px;
  height: 54px;
}
.phone-island {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 24px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(180deg, #e8f1ff, #fff 32%);
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app {
  position: absolute;
  inset: 0;
  padding: 50px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--fg-3);
}
.app-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}
.app-hero {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.16;
  color: var(--fg);
}
.app-card {
  height: 88px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--p), var(--p-400));
  box-shadow: var(--shadow-p);
}
.app-card.sm {
  height: 50px;
  background: var(--content2);
  box-shadow: none;
}
.app-row {
  display: flex;
  gap: 10px;
}
.app-row span {
  flex: 1;
  height: 48px;
  border-radius: 13px;
  background: var(--content2);
}
.app-cta {
  margin-top: auto;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: var(--p);
  padding: 12px;
  border-radius: 14px;
  box-shadow: var(--shadow-p);
}
/* floating quote */
.stage .float {
  position: absolute;
  z-index: 4;
  right: max(0px, calc(50% - 215px));
  bottom: 8%;
  width: min(216px, 54vw);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 14px 16px;
  text-align: left;
  will-change: transform;
}
.stage .float .av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-bottom: 9px;
  background: linear-gradient(135deg, var(--p-400), var(--p));
}
.stage .float .q {
  font-size: 0.82rem;
  font-weight: 700;
}
.stage .float .n {
  font-size: 0.74rem;
  color: var(--fg-3);
  margin-top: 2px;
}
@media (max-width: 520px) {
  .stage .float {
    right: -6px;
    bottom: -12px;
    width: min(190px, 58vw);
    padding: 12px 14px;
  }
}

/* trust strip */
.trust {
  max-width: 920px;
  margin: clamp(44px, 6vw, 72px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 720px) {
  .trust {
    grid-template-columns: repeat(4, 1fr);
  }
}
.trust .cell {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 16px;
  box-shadow: var(--shadow-sm);
}
.trust .num {
  font-size: clamp(1.7rem, 1.2rem+1.6vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.trust .num .u {
  font-size: 1em;
  color: var(--p);
}
.trust .lbl {
  font-size: 0.84rem;
  color: var(--fg-3);
  font-weight: 600;
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════
     QUESTIONS
  ════════════════════════════════════════════════════════ */
.q-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 760px) {
  .q-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--content3);
}
.q-card {
  padding: clamp(24px, 3vw, 32px);
}
.q-card .qn {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--p-50);
  color: var(--p-700);
  font-weight: 800;
  font-size: 0.92rem;
}
.q-card .qq {
  font-weight: 800;
  font-size: 1.18rem;
  margin: 16px 0 12px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.q-card .qa {
  font-size: 0.98rem;
  color: var(--fg-2);
  line-height: 1.7;
}
.q-card .qa b {
  color: var(--fg);
  font-weight: 700;
}

/* ════════════════════════════════════════════════════════
     PROBLEM
  ════════════════════════════════════════════════════════ */
.problem {
  background: var(--bg-2);
}
.problem .body p {
  font-size: var(--t-lead);
  color: var(--fg-2);
  margin-bottom: 16px;
  max-width: 60ch;
}
.problem .punch {
  font-weight: 800;
  color: var(--fg);
  font-size: clamp(1.35rem, 1rem+1.6vw, 2rem);
  line-height: 1.45;
  margin-top: 32px;
  letter-spacing: -0.03em;
  max-width: 24ch;
}
.problem .punch .hl {
  color: var(--p);
}

/* ════════════════════════════════════════════════════════
     PROMISE (dark)
  ════════════════════════════════════════════════════════ */
.promise {
  background: var(--dark);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    50% 60% at 85% 0%,
    rgba(0, 111, 238, 0.35),
    transparent 60%
  );
  pointer-events: none;
}
.promise .wrap {
  position: relative;
}
.promise .eyebrow {
  background: rgba(51, 142, 247, 0.16);
  color: #8fc4ff;
}
.promise h2 {
  color: #fff;
}
.ba {
  display: grid;
  gap: 18px;
  margin-top: clamp(28px, 4vw, 46px);
  perspective: 1200px;
}
.ba-card {
  transform-style: preserve-3d;
}
@media (min-width: 820px) {
  .ba {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.ba-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 34px);
}
.ba-card.after {
  background: linear-gradient(160deg, #0f2747, #0b1c33);
  border-color: rgba(51, 142, 247, 0.45);
}
.ba-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.ba-card.before .ba-tag {
  color: var(--on-dark-2);
  background: rgba(255, 255, 255, 0.06);
}
.ba-card.after .ba-tag {
  color: #fff;
  background: var(--p);
}
.ba-card ul {
  list-style: none;
}
.ba-card li {
  font-size: 1.02rem;
  color: var(--on-dark-2);
  padding: 9px 0 9px 28px;
  position: relative;
  line-height: 1.55;
}
.ba-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}
.ba-card.after li {
  color: var(--on-dark);
}
.ba-card.after li::before {
  background: var(--success);
}
.ba-card.after li b {
  color: #fff;
}
.ba-shot {
  margin-top: 22px;
  border-radius: var(--r-lg);
  width: 100%;
  height: auto;
  display: block;
  background: #000;
  box-shadow: var(--shadow-md);
}
.ba-shot-cap {
  margin-top: 10px;
  font-size: 0.78rem;
  color: #fff;
  opacity: 0.7;
  text-align: center;
}
.note-dark {
  margin-top: 30px;
  font-size: var(--t-lead);
  color: var(--on-dark);
  line-height: 1.6;
  max-width: 62ch;
}
.note-dark b {
  color: #fff;
}

/* ════════════════════════════════════════════════════════
     TIMELINE
  ════════════════════════════════════════════════════════ */
.tl {
  margin-top: clamp(28px, 4vw, 46px);
  border-left: 2px solid var(--p-100);
  padding-left: clamp(24px, 3vw, 30px);
  display: block;
}
.tl-item {
  position: relative;
  display: block;
  padding: 0 0 30px;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.tl-item:last-child {
  padding-bottom: 0;
}
.tl-item::before {
  content: "";
  position: absolute;
  top: 4px;
  left: calc(-1 * clamp(24px, 3vw, 30px) - 8px);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--p);
  box-shadow: 0 0 0 4px var(--bg);
}
.tl-item.star::before {
  background: var(--p);
  border-color: var(--p);
}
.tl-time {
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--p);
  letter-spacing: -0.02em;
}
.tl-item.star .tl-time {
  color: var(--p-700);
}
.tl-dur {
  display: inline-block;
  font-size: 0.74rem;
  color: var(--fg-3);
  font-weight: 600;
  background: var(--content2);
  padding: 2px 9px;
  border-radius: 999px;
  margin-left: 6px;
}
.tl-title {
  font-weight: 800;
  font-size: 1.12rem;
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: -0.02em;
  margin-top: 5px;
}
.tl-title .pin {
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  background: var(--p);
  padding: 3px 9px;
  border-radius: 999px;
}
.tl-desc {
  font-size: 0.96rem;
  color: var(--fg-2);
  margin-top: 5px;
  max-width: 60ch;
}
.tl-note {
  margin-top: 26px;
  font-size: 0.95rem;
  color: var(--fg-3);
  text-align: center;
}

/* ════════════════════════════════════════════════════════
     RESULTS
  ════════════════════════════════════════════════════════ */
.results {
  background: var(--bg-2);
}
.res-layout {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
@media (min-width: 900px) {
  .res-layout {
    grid-template-columns: 0.92fr 1.08fr;
  }
}
.res-list {
  display: grid;
  gap: 12px;
}
.res-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.res-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.res-ico {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--p-50);
  font-size: 1.2rem;
}
.res-item .t {
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.res-item .d {
  font-size: 0.9rem;
  color: var(--fg-3);
  margin-top: 3px;
}
.res-visual {
  perspective: 1200px;
}
.res-visual .browser {
  will-change: transform;
}
.res-visual .browser .shot {
  aspect-ratio: 16/11;
}
.res-cap {
  margin-top: 14px;
  font-size: 0.86rem;
  color: var(--fg-3);
  text-align: center;
}

/* ════════════════════════════════════════════════════════
     WHY
  ════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  gap: 18px;
  margin-top: clamp(24px, 3vw, 40px);
}
@media (min-width: 880px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.why-card {
  padding: clamp(26px, 3vw, 34px);
}
.why-n {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--p-400), var(--p));
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: var(--shadow-p);
}
.why-card .t {
  font-weight: 800;
  font-size: 1.22rem;
  margin: 18px 0 10px;
  letter-spacing: -0.02em;
}
.why-card .d {
  font-size: 0.98rem;
  color: var(--fg-2);
  line-height: 1.65;
}
.why-card .d a {
  color: var(--p);
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════
     INSTRUCTOR
  ════════════════════════════════════════════════════════ */
.inst-grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (min-width: 860px) {
  .inst-grid {
    grid-template-columns: 0.82fr 1.18fr;
  }
}
.inst-photo {
  position: relative;
}
.inst-photo .ph,
.inst-photo .portrait {
  aspect-ratio: 4/5;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-lg);
}
/* 실제 이미지(프로필 스크린샷 등)는 본연 비율로 잘림 없이 표시 */
.inst-photo img.portrait {
  aspect-ratio: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--border);
  background: var(--bg-2);
}
.inst-photo .tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.inst .handle {
  color: var(--p);
  font-weight: 700;
  margin: 8px 0 22px;
}
.inst h2 {
  margin-top: 14px;
}
.inst ul {
  list-style: none;
  margin: 22px 0;
  display: grid;
  gap: 12px;
}
.inst li {
  position: relative;
  padding-left: 30px;
  font-size: 1.02rem;
  color: var(--fg-2);
  line-height: 1.6;
}
.inst li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--p);
  font-weight: 800;
  background: var(--p-50);
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}
.inst .quote {
  font-size: clamp(1.2rem, 0.95rem+1.1vw, 1.55rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--fg);
  letter-spacing: -0.02em;
  padding: 22px 0 0 22px;
  border-left: 3px solid var(--p);
  max-width: 40ch;
}

/* ════════════════════════════════════════════════════════
     TESTIMONIALS
  ════════════════════════════════════════════════════════ */
.tst-grid {
  column-gap: 18px;
  columns: 1;
}
@media (min-width: 680px) {
  .tst-grid {
    columns: 2;
  }
}
@media (min-width: 1000px) {
  .tst-grid {
    columns: 3;
  }
}
.tst {
  break-inside: avoid;
  margin-bottom: 18px;
  padding: 24px 22px;
}
.tst .stars {
  color: var(--warning);
  font-size: 0.92rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.tst .t {
  font-weight: 800;
  font-size: 1.08rem;
  margin-bottom: 11px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
.tst .b {
  font-size: 0.94rem;
  color: var(--fg-2);
  line-height: 1.7;
}
.tst .who {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 18px;
  border-top: 1px solid var(--border);
  padding-top: 15px;
}
.tst .who .av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--p-50);
  color: var(--p-700);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.82rem;
}
.tst .who .nm {
  font-weight: 700;
  font-size: 0.9rem;
}
.tst .who .br {
  font-size: 0.78rem;
  color: var(--fg-3);
}
.tst-note {
  text-align: center;
  font-size: 0.86rem;
  color: var(--fg-3);
  margin-top: 22px;
}

/* ════════════════════════════════════════════════════════
     FIT
  ════════════════════════════════════════════════════════ */
.fit {
  background: var(--bg-2);
}
.fit-grid {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}
@media (min-width: 780px) {
  .fit-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.fit-card {
  padding: clamp(26px, 3vw, 34px);
}
.fit-card.yes {
  border-color: var(--success);
  background: linear-gradient(180deg, var(--success-50), #fff);
}
.fit-card.no {
  background: #fff;
}
.fit-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.28rem;
  margin-bottom: 20px;
}
.fit-card h3 .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 800;
}
.fit-card.yes h3 .ic {
  background: var(--success);
}
.fit-card.no h3 .ic {
  background: var(--fg-3);
}
.fit-card ul {
  list-style: none;
  display: grid;
  gap: 13px;
}
.fit-card li {
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  color: var(--fg-2);
  line-height: 1.55;
}
.fit-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  font-size: 1.05rem;
}
.fit-card.yes li::before {
  content: "✓";
  color: var(--success);
}
.fit-card.no li::before {
  content: "✕";
  color: var(--fg-3);
}

/* ════════════════════════════════════════════════════════
     PRICING
  ════════════════════════════════════════════════════════ */
.pricing .wrap {
  max-width: 880px;
}
.price-card {
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.price-head {
  padding: clamp(30px, 4vw, 46px);
  text-align: center;
  background: radial-gradient(
    80% 120% at 50% -10%,
    var(--p-50),
    transparent 65%
  );
}
.price-head .ph-t {
  font-size: clamp(1.3rem, 1rem+1.4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.4;
  max-width: 24ch;
  margin-inline: auto;
  letter-spacing: -0.03em;
}
.price-head .ph-d {
  color: var(--fg-2);
  margin-top: 12px;
}
.price-amount {
  margin-top: 24px;
}
.price-amount .old {
  color: var(--fg-3);
  text-decoration: line-through;
  font-size: 1.05rem;
}
.price-amount .now {
  font-size: clamp(2.6rem, 1.6rem+3vw, 3.7rem);
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin: 6px 0 6px;
  letter-spacing: -0.04em;
}
.price-amount .now .u {
  font-size: 0.36em;
  color: var(--fg-2);
  font-weight: 700;
}
.price-amount .vat {
  font-size: 0.84rem;
  color: var(--fg-3);
}

.price-body {
  padding: clamp(26px, 3vw, 42px);
  border-top: 1px solid var(--border);
}
.picker-h {
  font-weight: 800;
  font-size: 1.08rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}
.picker-h .live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  color: var(--danger);
  font-weight: 700;
  background: var(--danger-50);
  padding: 4px 10px;
  border-radius: 999px;
}
.picker-h .live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--danger);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.picker-sub {
  font-size: 0.86rem;
  color: var(--fg-3);
  margin-bottom: 18px;
}
.dates {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.date {
  position: relative;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 16px;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s var(--ease),
    box-shadow 0.2s;
}
.date:hover:not([disabled]) {
  border-color: var(--p-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.date[aria-pressed="true"] {
  border-color: var(--p);
  background: var(--p-50);
  box-shadow: 0 0 0 3px var(--p-50);
}
.date[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}
.date .d {
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}
.date .wd {
  font-size: 0.8rem;
  color: var(--fg-3);
  font-weight: 600;
}
.date .seats {
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--p);
}
.date .seats.low {
  color: var(--danger);
}
.date[disabled] .seats {
  color: var(--fg-3);
}
.date .check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--p);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  opacity: 0;
  transform: scale(0.6);
  transition: 0.2s var(--ease);
}
.date[aria-pressed="true"] .check {
  opacity: 1;
  transform: scale(1);
}

.price-select {
  margin-top: 22px;
  padding: 15px 18px;
  border-radius: var(--r-md);
  background: var(--bg-2);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}
.price-select b {
  color: var(--p);
}
.incl {
  margin-top: 24px;
  display: grid;
  gap: 11px;
}
.incl li {
  list-style: none;
  position: relative;
  padding-left: 30px;
  font-size: 0.98rem;
  color: var(--fg-2);
}
.incl li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--p);
  font-weight: 800;
  background: var(--p-50);
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.74rem;
}
.incl li .val {
  color: var(--fg-3);
  font-size: 0.85rem;
  margin-left: 6px;
}
.urgent {
  margin-top: 22px;
  background: var(--warning-50);
  border: 1px solid color-mix(in srgb, var(--warning) 35%, transparent);
  border-radius: var(--r-md);
  padding: 15px 18px;
  font-size: 0.9rem;
  color: #8a5a12;
  font-weight: 600;
  line-height: 1.55;
}
.price-cta {
  margin-top: 24px;
  text-align: center;
}
.price-cta .btn {
  width: 100%;
}

/* ════════════════════════════════════════════════════════
     GUARANTEE
  ════════════════════════════════════════════════════════ */
.guar {
  text-align: center;
  padding: clamp(34px, 4vw, 54px);
  max-width: 760px;
  margin-inline: auto;
}
.guar .seal {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  background: var(--success-50);
  font-size: 1.8rem;
  border: 1px solid color-mix(in srgb, var(--success) 30%, transparent);
}
.guar h3 {
  font-size: clamp(1.3rem, 1rem+1.4vw, 1.75rem);
  margin: 20px 0 14px;
}
.guar p {
  color: var(--fg-2);
  max-width: 52ch;
  margin-inline: auto;
}

/* ════════════════════════════════════════════════════════
     FAQ
  ════════════════════════════════════════════════════════ */
.faq-list {
  margin-top: clamp(20px, 3vw, 34px);
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.faq-item.open {
  border-color: var(--p-100);
  box-shadow: var(--shadow-md);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(1.02rem, 0.95rem+0.3vw, 1.15rem);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  padding: 20px 52px 20px 22px;
  position: relative;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--p);
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-q::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a p {
  font-size: 0.98rem;
  color: var(--fg-2);
  padding: 0 22px 22px;
  max-width: 64ch;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════
     FINAL
  ════════════════════════════════════════════════════════ */
.final {
  background: var(--dark);
  color: var(--on-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 80% at 50% 120%,
    rgba(0, 111, 238, 0.4),
    transparent 60%
  );
}
.final .wrap {
  position: relative;
}
.final .eyebrow {
  background: rgba(51, 142, 247, 0.16);
  color: #8fc4ff;
}
.final h2 {
  color: #fff;
  font-size: var(--t-h2);
  margin: 18px auto 22px;
  max-width: 18ch;
}
.final p {
  color: var(--on-dark-2);
  font-size: var(--t-lead);
  margin-bottom: 12px;
  max-width: 54ch;
  margin-inline: auto;
}
.final .accent {
  color: #fff;
  font-weight: 800;
}
.final .btn {
  margin-top: 18px;
}

.foot {
  background: var(--dark);
  color: var(--on-dark-2);
  border-top: 1px solid var(--dark-3);
  padding: 34px var(--gutter);
  text-align: center;
  font-size: 0.84rem;
}
.foot .brand {
  justify-content: center;
  color: #fff;
  margin-bottom: 10px;
}

/* sticky mobile CTA */
.sticky {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 55;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px var(--gutter);
  transform: translateY(120%);
  transition: transform 0.4s var(--ease);
}
.sticky.show {
  transform: translateY(0);
}
.sticky .btn {
  width: 100%;
}
@media (max-width: 879px) {
  .foot {
    padding-bottom: calc(34px + 84px);
  }
}
@media (min-width: 880px) {
  .sticky {
    display: none;
  }
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-d="1"] {
  transition-delay: 0.07s;
}
.reveal[data-d="2"] {
  transition-delay: 0.14s;
}
.reveal[data-d="3"] {
  transition-delay: 0.21s;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .btn,
  .card,
  .tst,
  .res-item,
  .date,
  .tl-item {
    transition: none !important;
  }
  .picker-h .live i {
    animation: none !important;
  }
}
:where(a, button, [tabindex]):focus-visible {
  outline: 2.5px solid var(--p);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ════════════════════════════════════════════════════════
   실제 후기 캡처 — 캐러셀 / 트러스트바 / 라이트박스
════════════════════════════════════════════════════════ */
.review-shots {
  margin-top: clamp(28px, 4vw, 44px);
}
.review-shots-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.rs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--p-700);
  background: var(--p-50);
  padding: 8px 14px;
  border-radius: 999px;
}
.rs-hint {
  font-size: 0.82rem;
  color: var(--fg-3);
}
.review-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 16px;
  scrollbar-width: thin;
}
.review-carousel::-webkit-scrollbar {
  height: 8px;
}
.review-carousel::-webkit-scrollbar-thumb {
  background: var(--border-2);
  border-radius: 999px;
}
.review-thumb {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: min(300px, 78vw);
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg);
  cursor: zoom-in;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.review-thumb:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.review-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* 가격 앞 트러스트 바 */
.proof-bar {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  max-width: 620px;
  margin: 0 auto clamp(24px, 3vw, 36px);
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}
.proof-thumbs {
  display: flex;
  flex-shrink: 0;
}
.proof-thumb {
  width: 58px;
  height: 58px;
  padding: 0;
  border: 2px solid var(--bg);
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  background: var(--content2);
  transition: transform 0.2s var(--ease);
}
.proof-thumb:nth-child(2) {
  margin-left: -16px;
}
.proof-thumb:hover {
  transform: translateY(-2px) scale(1.04);
  z-index: 1;
}
.proof-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.proof-text {
  line-height: 1.45;
}
.proof-stars {
  color: var(--warning);
  letter-spacing: 2px;
  font-size: 0.95rem;
}
.proof-text p {
  font-size: 0.95rem;
  color: var(--fg-2);
  margin-top: 3px;
}
.proof-text a {
  color: var(--p);
  font-weight: 700;
}
@media (max-width: 480px) {
  .proof-bar {
    flex-direction: column;
    text-align: center;
  }
  .proof-text {
    text-align: center;
  }
}

/* 라이트박스 */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(10, 10, 14, 0.86);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.lightbox[hidden] {
  display: none;
}
.lightbox.show {
  opacity: 1;
}
.lightbox-img {
  max-width: min(92vw, 560px);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: clamp(12px, 3vw, 22px);
  right: clamp(12px, 3vw, 22px);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.24);
}
.lightbox-nav {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.24);
}
@media (max-width: 560px) {
  .lightbox-nav {
    position: absolute;
    bottom: 18px;
  }
  .lightbox-nav.prev {
    left: 30%;
  }
  .lightbox-nav.next {
    right: 30%;
  }
}

/* ════════════════════════════════════════════════════════
   입장 토스트 — "현재 N명이 함께 보고 있어요"
════════════════════════════════════════════════════════ */
.viewing-toast {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100vw - 28px);
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: var(--shadow-lg);
  transform: translateX(-50%) translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.viewing-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.viewing-toast b {
  color: var(--p);
}
.vt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  animation: vtPulse 1.6s ease-out infinite;
}
@keyframes vtPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(23, 201, 100, 0.45);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(23, 201, 100, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(23, 201, 100, 0);
  }
}
@media (max-width: 360px) {
  .viewing-toast {
    font-size: 0.8rem;
    padding: 9px 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vt-dot {
    animation: none;
  }
}
