/* ZVZO Ads — Landing */
/* Responsive copy swap: .dt for desktop, .mo for mobile */
.mo { display: none; }
.dt { display: inline; }
@media (max-width: 720px) {
  .dt { display: none; }
  .mo { display: inline; }
}

@font-face {
  font-family: 'Pretendard Variable';
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
  src: url('fonts/PretendardVariable.ttf') format('truetype-variations');
}

:root {
  --bg: #000000;
  --bg-2: #0a0a0b;
  --bg-3: #141418;
  --fg: #ffffff;
  --fg-2: rgba(255,255,255,0.72);
  --fg-3: rgba(255,255,255,0.48);
  --fg-4: rgba(255,255,255,0.24);
  --line: rgba(255,255,255,0.10);
  --line-2: rgba(255,255,255,0.18);
  --accent: #4a5deb;      /* ZVZO purple/blue brand */
  --accent-2: #7b8bff;
  --sale: #ff4800;        /* ZVZO sale orange — used for "waste" */
  --yellow: #facc15;
  --green: #22c55e;

  --font: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont,
          'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --maxw: 1200px;
  --pad-x: clamp(20px, 4vw, 64px);
}

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

html { scroll-behavior: smooth; }
html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-feature-settings: "ss06", "ss07";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ====================== NAV ====================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad-x);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(0,0,0,0.72); }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo svg { width: 58px; height: auto; color: #fff; }
.nav__logo-tag {
  padding: 3px 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  background: var(--accent); color: #fff;
  border-radius: 4px;
}
.nav__links { display: flex; gap: 28px; font-size: 14px; color: var(--fg-2); }
.nav__links a:hover { color: var(--fg); }
.nav__cta {
  padding: 10px 18px;
  background: var(--fg); color: var(--bg);
  border-radius: 999px; font-size: 13px; font-weight: 700;
  transition: transform .2s var(--ease-out), background .2s;
}
.nav__cta:hover { transform: scale(1.04); background: var(--accent); color: #fff; }
@media (max-width: 768px) { .nav__links { display: none; } }

/* ====================== SHARED ====================== */
.section {
  position: relative;
  padding: clamp(100px, 14vh, 180px) var(--pad-x);
}
.wrap { max-width: var(--maxw); margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  color: var(--fg-2);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { opacity: 0.3; } }

.h-display {
  font-size: clamp(48px, 7.5vw, 112px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.h-xl {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.h-l {
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.h-m {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.body-l {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--fg-2);
  line-height: 1.6;
}
.body-m {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.6;
}
.muted { color: var(--fg-3); }
.accent { color: var(--accent-2); }
.sale { color: var(--sale); }

/* Word-by-word reveal */
.reveal-words .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal-words.in .w { opacity: 1; transform: translateY(0); }

.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ====================== HERO ====================== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 120px;
  overflow: hidden;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 70%);
  pointer-events: none;
  opacity: 0.6;
}
.hero__glow {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(74,93,235,0.25) 0%, transparent 60%);
  filter: blur(20px);
  pointer-events: none;
  animation: drift 14s ease-in-out infinite;
}
@keyframes drift {
  0%,100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-45%, -55%) scale(1.1); }
}
.hero__inner { position: relative; z-index: 2; width: 100%; text-align: center; }
.hero__tag {
  margin: 0 auto 32px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(74,93,235,0.12);
  border: 1px solid rgba(74,93,235,0.35);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--accent-2);
}
.hero__tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2); animation: pulse 2s infinite; }
.hero__h {
  margin-bottom: 20px;
}
.hero__h .outline {
  -webkit-text-stroke: 2px var(--fg);
  color: transparent;
}
.hero__sub {
  max-width: 640px; margin: 0 auto 36px;
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--fg-2);
  line-height: 1.6;
}
.hero__ctas { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px; font-weight: 700;
  transition: transform .2s var(--ease-out), background .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--fg); color: var(--bg); }
.btn--primary:hover { background: var(--accent); color: #fff; }
.btn--ghost { border: 1px solid var(--line-2); color: var(--fg); }
.btn--ghost:hover { border-color: var(--fg); }
.btn__arrow { transition: transform .2s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-size: 11px; color: var(--fg-3); letter-spacing: 0.2em;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--fg-4), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ====================== SHOCK / 19억 ====================== */
.shock { background: var(--bg); position: relative; overflow: hidden; }
.shock__inner { text-align: center; position: relative; z-index: 2; }
.shock__label {
  font-size: clamp(14px, 1.1vw, 16px); font-weight: 600;
  color: var(--fg-3); letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.shock__number {
  font-size: clamp(140px, 26vw, 380px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--sale);
  position: relative;
  display: inline-block;
  text-shadow: 0 0 80px rgba(255,72,0,0.35);
}
.shock__number .won {
  font-size: 0.35em;
  vertical-align: 0.35em;
  margin-left: -0.05em;
  color: var(--fg);
}
.shock__caption {
  margin-top: 32px;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.4;
}
.shock__caption .em { color: var(--sale); }
.shock__footnote {
  margin-top: 48px;
  font-size: 13px; color: var(--fg-3);
  border-top: 1px solid var(--line);
  padding-top: 24px;
  max-width: 640px; margin-left: auto; margin-right: auto;
}

/* Floating bills / cash — fly away */
.shock__bills { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.bill {
  position: absolute;
  width: 52px; height: 26px;
  background: linear-gradient(135deg, #2d4d2d, #1a3a1a);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  font-size: 8px; font-weight: 800; color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  animation: flyaway linear infinite;
  will-change: transform, opacity;
}
@keyframes flyaway {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0; }
  8%   { opacity: 0.8; }
  100% { transform: translate(var(--fx, 120vw), var(--fy, -60vh)) rotate(var(--fr, 540deg)) scale(0.4); opacity: 0; }
}

/* ====================== PIVOT (COMMERCE → ADS) ====================== */
.pivot { background: var(--bg-2); border-top: 1px solid var(--line); }

/* Playbook (4 pillars) */
.playbook {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
}
.playbook__item {
  display: flex;
  gap: 24px;
  padding: 32px 28px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.playbook__item:hover { border-color: rgba(74,93,235,0.5); transform: translateY(-3px); }
.playbook__num {
  font-size: 28px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--accent-2);
  min-width: 48px;
  line-height: 1;
  padding-top: 4px;
}
.playbook__title { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; color: var(--fg); margin-bottom: 8px; line-height: 1.25; }
.playbook__desc { font-size: 14px; color: var(--fg-2); line-height: 1.6; }
@media (max-width: 800px) { .playbook { grid-template-columns: 1fr; } }
.pivot__head { max-width: 860px; margin: 0 auto 80px; text-align: center; }
.pivot__chips {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 24px;
}
.chip {
  padding: 6px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--fg-2);
}
.chip--active { background: var(--accent); border-color: var(--accent); color: #fff; }
.chip__arrow { color: var(--fg-3); display: inline-flex; align-items: center; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.stat {
  background: var(--bg-2);
  padding: 40px 28px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background .3s;
  position: relative;
}
.stat:hover { background: var(--bg-3); }
.stat__num {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--fg);
}
.stat__num .unit {
  font-size: 0.5em; color: var(--fg-2); margin-left: 4px; font-weight: 700;
}
.stat__num .plus { color: var(--accent-2); }
.stat__label {
  font-size: 14px; color: var(--fg-3);
  margin-top: 14px;
}
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* The arrow-reveal block */
.pivot__arrow {
  margin: 100px auto 0;
  text-align: center;
  max-width: 780px;
}
.pivot__arrow-line {
  width: 1px; height: 80px;
  margin: 0 auto 32px;
  background: linear-gradient(180deg, transparent, var(--accent));
}
.pivot__arrow-label {
  font-size: 12px; color: var(--accent-2); letter-spacing: 0.3em; font-weight: 700;
  margin-bottom: 20px;
}
.pivot__arrow-title {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.15;
}
.pivot__arrow-title .flip {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ====================== CREATOR MOAT ====================== */
.moat { background: var(--bg); position: relative; overflow: hidden; }
.moat__head { max-width: 760px; margin: 0 auto 80px; text-align: center; }
.moat__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.moat__card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.moat__card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.moat__card-label {
  font-size: 12px; color: var(--fg-3); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 14px;
}
.moat__card-num {
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 14px;
}
.moat__card-num .u { font-size: 0.5em; color: var(--fg-2); font-weight: 700; margin-left: 4px; }
.moat__card-desc { font-size: 14px; color: var(--fg-2); line-height: 1.5; }

.moat__card--hero {
  grid-column: span 6;
  min-height: 320px;
  background: linear-gradient(135deg, #1a1f3d 0%, #0f1220 100%);
  border-color: rgba(74,93,235,0.3);
}
.moat__card--hero .moat__card-num {
  color: var(--accent-2);
  font-size: clamp(60px, 6vw, 92px);
}
.moat__card--half { grid-column: span 3; }
.moat__card--full { grid-column: span 12; }

/* Creator showroom visual */
.moat__showroom {
  grid-column: span 12;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.showroom__title { font-size: clamp(24px, 2.4vw, 36px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 16px; }
.showroom__desc { color: var(--fg-2); font-size: 15px; line-height: 1.6; }
.showroom__viz {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 30% 40%, rgba(74,93,235,0.15), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.05), transparent 40%),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.showroom__avatar {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #9d7bff);
  border: 3px solid var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  color: #fff;
  animation: bob 4s ease-in-out infinite;
}
.showroom__avatar::after {
  content: ""; position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(74,93,235,0.4);
  animation: ring 2.4s ease-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes ring {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.showroom__center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  padding: 10px 18px;
  background: var(--fg); color: var(--bg);
  border-radius: 8px;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 0 40px rgba(255,255,255,0.15);
}
.showroom__path {
  position: absolute; inset: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .moat__card--hero,
  .moat__card--half,
  .moat__card--full,
  .moat__showroom { grid-column: span 12; }
  .moat__showroom { grid-template-columns: 1fr; }
}

/* ====================== RISING CREATOR ====================== */
.rising { background: var(--bg-2); border-top: 1px solid var(--line); overflow: hidden; }
.rising__head { margin-bottom: 72px; text-align: center; }
.rising__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ricard {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex; flex-direction: column;
}
.ricard__tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(74,93,235,0.15);
  border: 1px solid rgba(74,93,235,0.4);
  border-radius: 999px;
  font-size: 12px; color: var(--accent-2); font-weight: 700;
  align-self: flex-start;
}
.ricard__title {
  margin-top: 24px;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.25;
}
.ricard__body { margin-top: 16px; font-size: 15px; color: var(--fg-2); line-height: 1.6; }
.ricard__chart {
  margin-top: auto;
  padding-top: 28px;
  position: relative;
  height: 110px;
}
.ricard__chart svg { width: 100%; height: 100%; overflow: visible; }
.ricard__chart-end {
  position: absolute;
  top: 28px;
  right: 0;
  display: flex; flex-direction: column; align-items: flex-end;
  font-size: 11px; color: var(--fg-3);
}
.ricard__chart-end b { color: var(--fg); font-size: 18px; font-weight: 800; }
@media (max-width: 900px) { .rising__grid { grid-template-columns: 1fr; } }

/* Rising — compare bars (left card) */
.ricard__compare {
  margin-top: auto;
  padding-top: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.ricard__compare-row {
  display: grid;
  grid-template-columns: 110px 1fr 52px;
  align-items: center;
  gap: 14px;
}
.ricard__compare-label {
  font-size: 13px; font-weight: 600; color: var(--fg-3);
}
.ricard__compare-row.is-hero .ricard__compare-label { color: var(--fg); font-weight: 700; }
.ricard__compare-track {
  height: 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.ricard__compare-bar {
  height: 100%;
  width: 0;
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(.16,1,.3,1);
}
.ricard__compare-row.is-hero .ricard__compare-bar {
  box-shadow: 0 0 20px rgba(74,93,235,0.5);
}
.ricard__compare-val {
  font-size: 15px; font-weight: 800; font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  text-align: right;
  color: var(--fg-3);
}
.ricard__compare-row.is-hero .ricard__compare-val { color: var(--accent-2); font-size: 18px; }
.ricard__compare-caption {
  margin-top: 6px;
  font-size: 11px; color: var(--fg-3);
  text-align: right;
  letter-spacing: 0.02em;
}

.marquee {
  margin-top: 100px;
  overflow: hidden;
  position: relative;
  --gap: 48px;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-2), transparent); }
.marquee__track {
  display: flex; gap: var(--gap);
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee__item {
  flex: none;
  padding: 14px 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-3);
  font-size: 14px; font-weight: 600; color: var(--fg-2);
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(calc(-50% - var(--gap) / 2)); } }

.marquee__label {
  text-align: center;
  font-size: 12px; color: var(--fg-3); letter-spacing: 0.2em; margin-bottom: 24px; font-weight: 600;
}

/* ====================== PROCESS (horizontal sticky) ====================== */
.process {
  background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
}
.process__head { text-align: center; margin-bottom: 60px; }
.process__wrap {
  height: 360vh; /* drives horizontal scroll */
  position: relative;
}
.process__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  padding: 40px 0 40px;
}
.process__rail {
  display: flex;
  gap: 24px;
  padding: 0 calc(50vw - 200px);
  will-change: transform;
  align-items: stretch;
}
.pstep {
  flex: none;
  width: 360px;
  min-height: 460px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}
.pstep__num {
  font-size: 64px; font-weight: 900; letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--fg-4);
  line-height: 0.9;
  margin-bottom: 8px;
}
.pstep__who {
  display: inline-flex;
  padding: 4px 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  border-radius: 999px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.pstep__who--brand { background: rgba(255,255,255,0.1); color: var(--fg); }
.pstep__who--zvzo { background: rgba(74,93,235,0.2); color: var(--accent-2); }
.pstep__title { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.25; }
.pstep__desc { font-size: 14px; color: var(--fg-2); line-height: 1.55; }
.pstep__icon {
  position: absolute; top: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.pstep--zvzo {
  background: linear-gradient(135deg, rgba(74,93,235,0.14), rgba(74,93,235,0.02));
  border-color: rgba(74,93,235,0.35);
}
.process__progress {
  position: absolute;
  top: 50%; transform: translateY(calc(230px + 20px));
  left: 0; right: 0;
  height: 2px;
  background: var(--line);
  margin: 0 calc(50vw - 200px);
}
.process__progress-fill {
  height: 100%;
  background: var(--accent);
  width: 0;
  transition: width 0.1s linear;
}
.process__counter {
  position: absolute;
  top: 40px;
  left: 50%; transform: translateX(-50%);
  font-size: 12px; color: var(--fg-3); letter-spacing: 0.2em;
  font-variant-numeric: tabular-nums;
}
.process__counter b { color: var(--fg); }

.process__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 700px;
  margin: 48px auto 0;
  text-align: center;
}
.process__split-col {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.process__split-col b { font-size: 24px; font-weight: 800; display: block; margin-bottom: 4px; }
.process__split-col span { font-size: 12px; color: var(--fg-3); }
.process__split-col--zvzo { background: rgba(74,93,235,0.1); border-color: rgba(74,93,235,0.3); }

@media (max-width: 900px) {
  .process__wrap { height: auto; }
  .process__sticky { position: static; height: auto; padding: 0; }
  .process__rail {
    flex-direction: column; padding: 0 var(--pad-x);
    transform: none !important;
    gap: 16px;
  }
  .pstep { width: 100%; min-height: auto; }
  .process__progress, .process__counter { display: none; }
}

/* ====================== PA / AI LIVE TIMELINE ====================== */
.live {
  background: linear-gradient(180deg, var(--bg), #050510 60%, var(--bg));
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.live__head { text-align: center; max-width: 780px; margin: 0 auto 80px; }
.live__tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  color: var(--green);
  margin-bottom: 24px;
}
.live__tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 1.2s infinite; }

.live__board {
  max-width: 1040px; margin: 0 auto;
  background: rgba(10,10,15,0.6);
  border: 1px solid var(--line-2);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(10px);
  position: relative;
}
.live__clock {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.live__clock-time {
  font-size: 42px; font-weight: 800; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--fg);
}
.live__clock-meta { text-align: right; font-size: 12px; color: var(--fg-3); }
.live__clock-meta b { color: var(--green); }

.live__events {
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.levent {
  display: grid;
  grid-template-columns: 80px 44px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  opacity: 0.3;
  transform: translateX(-12px);
  transition: opacity .4s, transform .4s, border-color .4s;
}
.levent.active { opacity: 1; transform: translateX(0); border-color: var(--line-2); }
.levent.passed { opacity: 0.55; }
.levent__time {
  font-size: 13px; font-weight: 700; font-variant-numeric: tabular-nums;
  color: var(--fg-3);
}
.levent.active .levent__time { color: var(--green); }
.levent__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--bg-2); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.levent.active .levent__icon { background: rgba(74,93,235,0.2); border-color: var(--accent); }
.levent__body { min-width: 0; }
.levent__title { font-size: 15px; font-weight: 700; color: var(--fg); margin-bottom: 3px; }
.levent__desc { font-size: 13px; color: var(--fg-3); }
.levent__metric {
  font-size: 14px; font-weight: 700; font-variant-numeric: tabular-nums;
  padding: 5px 10px; border-radius: 8px;
  background: var(--bg-2); color: var(--fg-2);
}
.levent.active .levent__metric { background: rgba(34,197,94,0.15); color: var(--green); }
.levent--warn.active .levent__metric { background: rgba(250,204,21,0.15); color: var(--yellow); }

.live__playbar {
  margin-top: 20px;
  height: 6px; border-radius: 999px;
  background: var(--line);
  overflow: hidden;
  position: relative;
}
.live__playbar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--green));
  border-radius: 999px;
  transition: width .1s linear;
}
.live__playbar-label {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-size: 11px; color: var(--fg-3); letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
}

/* ====================== PRICING ====================== */
.pricing { background: var(--bg-2); border-top: 1px solid var(--line); }
.pricing__head { text-align: center; margin-bottom: 60px; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.ptier {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .3s var(--ease-out), border-color .3s;
}
.ptier:hover { transform: translateY(-4px); border-color: var(--line-2); }
.ptier--feature {
  background: linear-gradient(180deg, rgba(74,93,235,0.1), var(--bg-3));
  border-color: var(--accent);
}
.ptier--feature::before {
  content: "추천 상품";
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 10px;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  border-radius: 999px;
}
.ptier__name { font-size: 13px; color: var(--fg-3); font-weight: 700; letter-spacing: 0.1em; margin-bottom: 12px; }
.ptier__price { font-size: 34px; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 4px; line-height: 1.1; }
.ptier__price-note { font-size: 11px; color: var(--fg-3); margin-bottom: 28px; }
.ptier__fee {
  padding: 12px; margin-bottom: 24px;
  background: var(--bg-2); border-radius: 10px;
  font-size: 12px; color: var(--fg-3);
  display: flex; justify-content: space-between; align-items: baseline;
}
.ptier__fee b { color: var(--fg); font-size: 16px; font-weight: 800; }
.ptier__feats { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 13px; color: var(--fg-2); flex: 1; }
.ptier__feats li { display: flex; gap: 8px; align-items: flex-start; }
.ptier__feats li::before {
  content: ""; width: 14px; height: 14px; margin-top: 3px;
  background: var(--accent); border-radius: 50%;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7l3 3 5-6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/10px no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7l3 3 5-6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/10px no-repeat;
  flex: none;
}
.ptier__cta {
  margin-top: 24px;
  padding: 12px; text-align: center;
  border-radius: 10px;
  background: var(--fg); color: var(--bg);
  font-size: 13px; font-weight: 700;
  transition: background .2s, color .2s;
}
.ptier--feature .ptier__cta { background: var(--accent); color: #fff; }
.ptier__cta:hover { background: var(--accent); color: #fff; }
@media (max-width: 1100px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing__grid { grid-template-columns: 1fr; } }

/* Promo banner */
.promo {
  margin-top: 60px;
  background: linear-gradient(100deg, #1a1040, var(--accent) 50%, #6a3dff);
  border-radius: 24px;
  padding: 40px clamp(28px, 4vw, 56px);
  position: relative; overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.promo__glow {
  position: absolute; width: 600px; height: 600px; top: -30%; right: -10%;
  background: radial-gradient(circle, rgba(255,255,255,0.3), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}
.promo__label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.2em;
  padding: 5px 10px;
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
}
.promo__title {
  font-size: clamp(24px, 2.8vw, 36px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.25; color: #fff;
}
.promo__title b { font-size: 1.4em; display: inline-block; }
.promo__sub { font-size: 14px; color: rgba(255,255,255,0.85); margin-top: 10px; }
.promo__cta {
  padding: 18px 32px;
  background: #fff; color: var(--accent);
  border-radius: 999px; font-size: 15px; font-weight: 800;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
@media (max-width: 700px) { .promo { grid-template-columns: 1fr; } }

/* ====================== CTA + FOOTER ====================== */
.finalcta {
  background: var(--bg);
  border-top: 1px solid var(--line);
  text-align: center;
}
.finalcta__h { margin-bottom: 24px; }
.finalcta__sub { max-width: 560px; margin: 0 auto 40px; color: var(--fg-2); }

.footer {
  padding: 48px var(--pad-x) 40px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer__logo svg { width: 70px; height: auto; color: var(--fg); }
.footer__meta { font-size: 13px; color: var(--fg-3); }
.footer__meta a { color: var(--fg-2); }
.footer__meta a:hover { color: var(--fg); text-decoration: underline; }

/* ====================== TWEAKS PANEL ====================== */
.tweaks {
  position: fixed; bottom: 20px; right: 20px; z-index: 100;
  width: 280px;
  background: rgba(15,15,18,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 20px;
  font-size: 13px;
  display: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.tweaks.open { display: block; }
.tweaks__title { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; color: var(--fg-3); margin-bottom: 14px; }
.tweaks__row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; gap: 12px; }
.tweaks__row label { color: var(--fg-2); }
.tweaks__swatches { display: flex; gap: 6px; }
.tweaks__sw { width: 22px; height: 22px; border-radius: 6px; border: 2px solid transparent; cursor: pointer; transition: transform .15s; }
.tweaks__sw.active { border-color: var(--fg); }
.tweaks__sw:hover { transform: scale(1.1); }
.tweaks select {
  background: var(--bg-3); color: var(--fg);
  border: 1px solid var(--line-2); border-radius: 6px;
  padding: 5px 8px; font-size: 12px;
}

/* Small utility */
.arrow-icon {
  width: 16px; height: 16px;
  stroke: currentColor; stroke-width: 2; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ====================== PLAYBOOK 2×2 ====================== */
.playbook--2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
.pbcard {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
  transition: border-color .2s, transform .2s;
}
.pbcard:hover { border-color: var(--line-2); transform: translateY(-2px); }
.pbcard__head {
  display: flex; align-items: center; justify-content: space-between;
}
.pbcard__num {
  font-size: 28px; font-weight: 800; letter-spacing: -0.03em;
  color: rgba(255,255,255,0.18); line-height: 1;
}
.pbcard__tag {
  font-size: 20px; font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--fg);
  background: none;
  padding: 0;
  flex: 1;
  text-align: left;
  margin-left: 12px;
}
.pbcard__viz {
  min-height: 80px;
  max-height: 110px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
  overflow: hidden;
  margin-top: auto;
}
.pbcard__viz svg { width: 100%; height: 100%; max-height: 90px; }
.pbcard__head { align-items: flex-start; }
.pbcard__num { font-size: 22px; }
.pbcard__title {
  font-size: 20px; font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.35; color: var(--fg);
}
.pbcard__metric {
  font-size: 13px; color: var(--fg-3);
  padding-top: 10px; border-top: 1px solid var(--line);
}
.pbcard__metric b { color: var(--fg); font-weight: 800; }

/* Match viz */
.pbmatch {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.pbmatch__side {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  text-align: center;
}
.pbmatch__side span {
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em;
  color: var(--fg);
}
.pbmatch__side em {
  font-style: normal;
  font-size: 10px; color: var(--fg-3);
}
.pbmatch__side--brand { background: rgba(255,255,255,0.04); }
.pbmatch__side--creator { background: rgba(74,93,235,0.1); border-color: rgba(74,93,235,0.3); }
.pbmatch__side--creator span { color: var(--accent-2); }
.pbmatch__link { height: 40px; }

/* Formula bars */
.pbbars {
  display: flex; align-items: flex-end;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 8px 12px;
}
.pbbar {
  flex: 1;
  height: var(--h, 40%);
  background: rgba(255,255,255,0.12);
  border-radius: 6px 6px 0 0;
  position: relative;
  transition: height .6s var(--ease-out);
}
.pbbar--peak {
  background: linear-gradient(180deg, var(--sale), #cc3700);
  box-shadow: 0 0 20px rgba(255,72,0,0.4);
}
.pbbar--peak span {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  font-size: 12px; font-weight: 800; color: var(--sale);
  white-space: nowrap;
}

@media (max-width: 520px) {
  .playbook--2x2 { grid-template-columns: 1fr; }
  .pbcard { min-height: 240px; }
  .pbcard__tag { font-size: 17px; }
}

/* Recommended tier badge */
.ptier { position: relative; }
.ptier__badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 5px 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(74,93,235,0.45);
  z-index: 2;
}

/* ====================== WHY ZVZO (Toss-style blocks) ====================== */
.whyz { background: var(--bg); }
.whyz__intro {
  padding: 120px 0 60px;
  text-align: center;
}
.whyz__intro .eyebrow { margin-bottom: 20px; }
.whyz__intro-h {
  font-size: clamp(36px, 5.2vw, 72px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.whyz__block {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.whyz__block--a { background: #0a0a0b; }
.whyz__block--b { background: #141418; }
.whyz__block--c { background: #0a0a0b; }
.whyz__block--d { background: linear-gradient(180deg, #141830, #0a0a0b); }

.whyz__block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.whyz__block-inner--rev .whyz__copy { order: 2; }
.whyz__block-inner--rev .whyz__viz { order: 1; }

.whyz__step {
  font-size: 14px; font-weight: 800; letter-spacing: 0.2em;
  color: var(--fg-3);
  margin-bottom: 24px;
}
.whyz__title {
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 28px;
}
.whyz__hl { color: var(--accent-2); }
.whyz__hl--orange { color: var(--sale); }
.whyz__desc {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.65;
  margin-bottom: 40px;
}
.whyz__kpi {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 28px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}
.whyz__kpi-v {
  font-size: 44px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1;
  color: var(--fg);
}
.whyz__kpi-v span { font-size: 0.6em; color: var(--fg-3); margin-left: 2px; }
.whyz__kpi-l { font-size: 13px; color: var(--fg-3); }

.whyz__viz {
  position: relative;
  min-height: 360px;
  display: flex; align-items: center; justify-content: center;
}

/* List viz (01) */
.whyz-list {
  width: 100%; max-width: 420px;
  display: flex; flex-direction: column; gap: 10px;
}
.whyz-list__row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 15px;
  color: var(--fg-2);
}
.whyz-list__row.is-match {
  background: rgba(74,93,235,0.12);
  border-color: rgba(74,93,235,0.4);
  color: var(--fg);
  box-shadow: 0 0 0 4px rgba(74,93,235,0.1);
}
.whyz-list__av {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #888, #444);
}
.whyz-list__av.av-1 { background: linear-gradient(135deg, #ffb199, #ff6b6b); }
.whyz-list__av.av-2 { background: linear-gradient(135deg, #a8e6cf, #3bbd9d); }
.whyz-list__av.av-3 { background: linear-gradient(135deg, #ffd89b, #f2994a); }
.whyz-list__av.av-4 { background: linear-gradient(135deg, #7b8bff, #4a5deb); }
.whyz-list__x { color: var(--fg-4); font-size: 18px; }
.whyz-list__ok { color: var(--accent-2); font-weight: 700; font-size: 13px; }
.whyz-list__dots {
  text-align: center; color: var(--fg-3); font-size: 13px;
  padding: 8px; letter-spacing: 0.2em;
}

/* Guide viz (02) */
.whyz-guide {
  width: 100%; max-width: 440px;
  display: grid;
  grid-template-columns: 1fr 36px 140px;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(255,72,0,0.06);
  border: 1px solid rgba(255,72,0,0.2);
  border-radius: 20px;
}
.whyz-guide__top {
  grid-column: 1;
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 12px;
}
.whyz-guide__chip {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  padding: 4px 8px; border-radius: 4px;
  background: rgba(255,72,0,0.2); color: var(--sale);
}
.whyz-guide__lines {
  grid-column: 1; grid-row: 2;
  display: flex; flex-direction: column; gap: 6px;
}
.whyz-guide__line {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  width: 100%;
}
.whyz-guide__arrow {
  grid-column: 2; grid-row: 1 / span 2;
  font-size: 28px; color: var(--sale); text-align: center;
  align-self: center;
}
.whyz-guide__out {
  grid-column: 3; grid-row: 1 / span 2;
  text-align: center;
  padding: 20px 12px;
  background: linear-gradient(180deg, rgba(255,72,0,0.2), rgba(255,72,0,0.08));
  border: 1px solid rgba(255,72,0,0.4);
  border-radius: 14px;
}
.whyz-guide__out-k {
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
  color: var(--fg-2); margin-bottom: 6px;
}
.whyz-guide__out-v {
  font-size: 30px; font-weight: 800;
  letter-spacing: -0.03em; color: var(--sale);
}

/* Bars viz (03) */
.whyz-bars {
  display: flex; gap: 40px; align-items: flex-end;
  height: 320px;
}
.whyz-bars__col {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  width: 120px; height: 100%;
}
.whyz-bars__label {
  font-size: 13px; font-weight: 700; color: var(--fg-2);
  order: 2;
}
.whyz-bars__bar {
  width: 100%; flex: 1;
  display: flex; flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  order: 1;
}
.whyz-bars__seg {
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: var(--fg-2);
}

/* AI viz (04) */
.whyz-ai {
  position: relative;
  width: 360px; height: 360px;
}
.whyz-ai__core {
  position: absolute; inset: 30%;
  display: flex; align-items: center; justify-content: center;
}
.whyz-ai__label {
  position: relative; z-index: 2;
  font-size: 18px; font-weight: 800;
  text-align: center; line-height: 1.1;
  color: var(--fg);
  letter-spacing: 0.02em;
}
.whyz-ai__ring, .whyz-ai__ring--2 {
  position: absolute; inset: -40%;
  border-radius: 50%;
  border: 1px solid rgba(74,93,235,0.4);
  animation: whyz-pulse 2.8s var(--ease-out) infinite;
}
.whyz-ai__ring--2 { inset: -80%; animation-delay: -1.4s; }
@keyframes whyz-pulse {
  0% { transform: scale(0.8); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}
.whyz-ai__node {
  position: absolute;
  font-size: 13px; font-weight: 700;
  padding: 10px 16px;
  background: rgba(74,93,235,0.14);
  border: 1px solid rgba(74,93,235,0.35);
  border-radius: 999px;
  color: var(--fg);
}
.whyz-ai__node--1 { top: 4%; left: 50%; transform: translateX(-50%); }
.whyz-ai__node--2 { top: 50%; right: 0; transform: translateY(-50%); }
.whyz-ai__node--3 { bottom: 4%; left: 50%; transform: translateX(-50%); }
.whyz-ai__node--4 { top: 50%; left: 0; transform: translateY(-50%); }

@media (max-width: 900px) {
  .whyz__block { padding: 80px 0; }
  .whyz__block-inner { grid-template-columns: 1fr; gap: 48px; }
  .whyz__block-inner--rev .whyz__copy { order: 1; }
  .whyz__block-inner--rev .whyz__viz { order: 2; }
  .whyz__viz { min-height: 280px; }
  .whyz-ai { width: 280px; height: 280px; }
  .whyz-bars { height: 240px; }
}

/* ====================== PROCESS GRID ====================== */
.process { background: var(--bg); padding: 100px 0 120px; }
.process__head { text-align: center; margin-bottom: 56px; }
.process__head .eyebrow { margin-bottom: 20px; }
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.pstep {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, transform .2s;
}
.pstep:hover { border-color: var(--line-2); transform: translateY(-2px); }
.pstep--zvzo { background: rgba(74,93,235,0.08); border-color: rgba(74,93,235,0.28); }
.pstep--zvzo:hover { border-color: rgba(74,93,235,0.55); }
.pstep__num {
  font-size: 40px; font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.14);
  line-height: 1;
  margin-bottom: 4px;
}
.pstep__who {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  padding: 4px 8px; border-radius: 4px;
}
.pstep__who--zvzo { background: rgba(74,93,235,0.2); color: var(--accent-2); }
.pstep__who--brand { background: rgba(255,255,255,0.08); color: var(--fg-2); }
.pstep__title { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--fg); margin-top: 2px; }
.pstep__desc { font-size: 13px; color: var(--fg-3); line-height: 1.55; }
.pstep__icon {
  position: absolute; top: 22px; right: 22px;
  font-size: 22px; opacity: 0.9;
}
@media (max-width: 900px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process__grid { grid-template-columns: 1fr; }
  .pstep { min-height: 0; }
}


/* ====================== MOBILE OPTIMIZATION ====================== */
/* Consolidated breakpoints for phone viewports (≤ 720px / ≤ 480px) */

/* Dual-copy: .dt shows on desktop, .mo shows on mobile.
   Lets us edit mobile wording without touching PC copy. */
.mo { display: none; }
@media (max-width: 720px) {
  .dt { display: none !important; }
  .mo { display: initial; }
  /* Hero "노출" solid fill on mobile for readability */
  .hero__h .outline {
    -webkit-text-stroke: 0;
    color: var(--fg);
  }
}

@media (max-width: 720px) {
  :root {
    --pad-x: 20px;
  }

  /* — NAV — */
  .nav { padding: 14px 20px; }
  .nav__logo svg { width: 48px; }
  .nav__logo-tag { font-size: 10px; padding: 2px 6px; }
  .nav__cta { padding: 8px 14px; font-size: 12px; }

  /* — SECTION — */
  .section { padding: 80px 20px; }

  /* — HERO — */
  .hero__inner { padding: 120px 0 80px; }
  .hero__h { margin-bottom: 14px; }
  .h-display { font-size: clamp(28px, 8vw, 44px); line-height: 1.12; letter-spacing: -0.03em; }
  .hero__sub { font-size: 13px; margin-bottom: 24px; padding: 0 12px; line-height: 1.55; }
  .hero__ctas { gap: 10px; }
  .hero__ctas .btn { padding: 12px 20px; font-size: 13px; }
  .hero__scroll { display: none; }
  .hero__tag { font-size: 10px; padding: 4px 10px; }

  /* — SHOCK — */
  .shock__number {
    font-size: clamp(80px, 28vw, 130px);
    letter-spacing: -0.05em;
  }
  .shock__label { font-size: 10px; }
  .shock__caption { font-size: 15px; margin-top: 20px; padding: 0 12px; line-height: 1.5; }
  .shock__footnote { font-size: 11px; }

  /* — PIVOT — */
  .pivot__head .h-xl { font-size: clamp(20px, 5.2vw, 28px) !important; line-height: 1.2; }
  .pivot__head .h-xl div { font-size: clamp(24px, 6vw, 34px) !important; }
  .pivot__arrow-title { font-size: 18px; line-height: 1.35; font-weight: 800; }

  /* — PLAYBOOK (2x2 -> 1col on small phones) — */
  .playbook, .playbook--2x2 {
    grid-template-columns: 1fr !important;
    gap: 12px;
    margin-top: 40px;
  }
  .pbcard {
    padding: 22px 18px;
    min-height: 0;
    gap: 12px;
    font-size: 13px;
  }
  .pbcard__title { font-size: 15px; line-height: 1.4; }
  .pbcard__head { flex-wrap: wrap; gap: 10px; }
  .pbcard__tag { font-size: 13px; font-weight: 700; }

  /* — MOAT (12col grid -> single) — */
  .moat__grid { grid-template-columns: 1fr !important; gap: 12px; }
  .moat__card, .moat__card--hero, .moat__card--wide, .moat__card--tall {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    min-height: 0 !important;
    padding: 24px 20px;
  }

  /* — RISING — */
  .rising__grid { grid-template-columns: 1fr !important; gap: 12px; }
  .ricard { padding: 22px 18px; min-height: 0; font-size: 13px; }
  .ricard__title { font-size: 17px !important; line-height: 1.3; }

  /* — STATS (4col -> 2col) — */
  .stats { grid-template-columns: repeat(2, 1fr) !important; }

  /* — PROMO banner — */
  .promo {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 32px 24px;
    margin-top: 40px;
    text-align: left;
  }

  /* — LIVE board — */
  .live__board { padding: 18px 14px; border-radius: 18px; }
  .live__clock { flex-direction: column; align-items: flex-start; gap: 6px; }
  .live__clock-time { font-size: 24px; }
  .live__clock-meta { font-size: 10px; }
  .live__events { gap: 8px; }
  .levent {
    padding: 12px 14px !important;
    gap: 12px !important;
    font-size: 12px;
    align-items: center !important;
  }
  .levent__icon { font-size: 18px !important; width: 34px !important; height: 34px !important; flex-shrink: 0; }
  .levent__time { font-size: 11px !important; min-width: 40px !important; }
  .levent__title { font-size: 13px !important; line-height: 1.3; font-weight: 700; }
  .levent__desc { display: none !important; }
  .levent__metric { font-size: 11px !important; padding: 4px 8px !important; white-space: nowrap; }
  .live__playbar-label { font-size: 9px; }

  /* — PRICING (4col -> 1col) — */
  .pricing__grid { grid-template-columns: 1fr !important; gap: 12px; }
  .ptier {
    padding: 24px 20px;
  }
  .ptier__name { font-size: 11px; }
  .ptier__price { font-size: 26px; }
  .ptier__price-note { font-size: 11px; }
  .ptier__fee { font-size: 11px; }
  .ptier__feats { font-size: 12px; }
  .ptier__cta { font-size: 12px; padding: 10px 16px; }
  .ptier__badge { font-size: 9px; }

  /* — FINAL CTA — */
  .h-xl { font-size: clamp(24px, 6.5vw, 34px); line-height: 1.15; }
  .finalcta__h { margin-bottom: 16px; }
  .finalcta__sub { font-size: 12px; margin-bottom: 24px; padding: 0 12px; line-height: 1.55; }

  /* — PROCESS — */
  .process { padding: 60px 0 80px; }
  .process__head { margin-bottom: 32px; padding: 0 20px; }
  .pstep { padding: 20px 18px; min-height: 0; }
  .pstep__num { font-size: 26px; }
  .pstep__title { font-size: 14px; }
  .pstep__desc { font-size: 11px; }
  .pstep__who { font-size: 9px; }
  .pstep__icon { top: 16px; right: 16px; font-size: 16px; }

  /* — WHY Z — */
  .whyz__block { padding: 60px 0 !important; }
  .whyz__viz { min-height: 220px !important; }
  .whyz-ai { width: 240px !important; height: 240px !important; }
  .whyz-bars { height: 200px !important; }

  /* — EYEBROW / HEADS — */
  .eyebrow { font-size: 10px; padding: 4px 10px; margin-bottom: 16px; }
  .moat__head, .rising__head, .live__head, .pricing__head { margin-bottom: 28px; padding: 0 20px; }
  .moat__head .h-xl, .rising__head .h-xl, .live__head .h-xl, .pricing__head .h-xl { font-size: clamp(22px, 6vw, 30px); }
  .showroom__title { font-size: 18px !important; }

  /* — FOOTER — */
  .footer { padding: 28px 20px 24px; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer__meta { font-size: 11px; }
  .footer__logo svg { width: 48px; }

  /* — TWEAKS panel: hide on mobile (too small) — */
  .tweaks { display: none !important; }

  /* Images/SVGs never break layout */
  * { min-width: 0; }
}

@media (max-width: 420px) {
  .h-display { font-size: 28px; }
  .h-xl { font-size: 22px; }
  .shock__number { font-size: 26vw; }
  .nav__logo svg { width: 40px; }
  .nav__cta { padding: 6px 11px; font-size: 10px; }
  .hero__sub { font-size: 12px; }
  .hero__ctas { flex-direction: column; align-items: stretch; width: 100%; padding: 0 24px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .pivot__head { font-size: 19px; }
  .ricard__title { font-size: 16px !important; }
  .pbcard__title { font-size: 14px; }
  .ptier__price { font-size: 24px; }
  .live__clock-time { font-size: 22px; }
}
