/* ============================================================
   DESIGN TOKENS — v3.1 final
============================================================ */
:root{
  --bg:           #0A0A0A;
  --surface:      #141414;
  --surface-2:    #1A1A1A;
  --primary:      #00E5C7;
  --primary-soft: rgba(0,229,199,.12);
  --primary-bg:   rgba(0,229,199,.06);
  --primary-glow: 0 0 40px rgba(0,229,199,.45);
  --warn:         #FF4D6D;
  --warn-soft:    rgba(255,77,109,.12);

  /* v3.2 — Electric Lime accent for high-impact moments */
  --accent:       #D4FF3D;
  --accent-soft:  rgba(212,255,61,.15);
  --accent-bg:    rgba(212,255,61,.06);
  --accent-glow:  0 0 40px rgba(212,255,61,.55);
  --accent-deep:  #A8D900;

  --t1: #FFFFFF;
  --t2: rgba(255,255,255,.70);
  --t3: rgba(255,255,255,.40);
  --divider: rgba(255,255,255,.08);

  --pad-x: 24px;
  --pad-y: 120px;

  --h1: 64px;
  --h2: 46px;
  --h3: 32px;
  --body: 23px;
  --cap:  20px;
  --btn:  20px;
  --num:  120px;

  --ease-out: cubic-bezier(.22,.61,.36,1);
  --ease-back: cubic-bezier(.34,1.56,.64,1);
  --ease-in-out: cubic-bezier(.65,.05,.36,1);
  --ease-out-expo: cubic-bezier(.16,1,.3,1);
}
@media (min-width: 960px){
  :root{
    --pad-x: 96px;
    --pad-y: 200px;
    --h1: 104px;
    --h2: 68px;
    --h3: 40px;
    --body: 25px;
    --cap: 18px;
    --btn: 22px;
    --num: 180px;
  }
}

/* ============================================================
   v3.2 — CUSTOM CURSOR (desktop)
============================================================ */
.cursor-dot, .cursor-ring{
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  will-change: transform;
  mix-blend-mode: difference;
  transition: width .25s var(--ease-out), height .25s var(--ease-out), background .2s ease, border-color .2s ease;
  display: none;
}
@media (min-width: 960px) and (hover: hover){
  .cursor-dot, .cursor-ring{ display: block; }
  body, button, a{ cursor: none; }
  input, select, textarea{ cursor: text; }
}
.cursor-dot{
  width: 8px; height: 8px;
  background: #FFFFFF;
  transform: translate(-50%, -50%);
}
.cursor-ring{
  width: 36px; height: 36px;
  border: 1.5px solid #FFFFFF;
  transform: translate(-50%, -50%);
}
.cursor-ring.hover{
  width: 72px; height: 72px;
  background: rgba(255,255,255,.06);
  border-color: var(--primary);
}
.cursor-ring.cta-hover{
  width: 92px; height: 92px;
  border-color: var(--accent);
  background: rgba(212,255,61,.1);
}
.cursor-dot.hover{ background: var(--accent); width: 12px; height: 12px; }

/* ============================================================
   v3.2 — NOISE/GRAIN OVERLAY
============================================================ */
.grain{
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 70;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/></svg>");
  background-size: 240px 240px;
  animation: grainShift 8s steps(8) infinite;
}
@keyframes grainShift{
  0%   { transform: translate(0,0); }
  10%  { transform: translate(-5%,-10%); }
  20%  { transform: translate(-15%,5%); }
  30%  { transform: translate(7%,-25%); }
  40%  { transform: translate(-5%,25%); }
  50%  { transform: translate(-15%,10%); }
  60%  { transform: translate(15%,0%); }
  70%  { transform: translate(0%,15%); }
  80%  { transform: translate(3%,35%); }
  90%  { transform: translate(-10%,10%); }
  100% { transform: translate(0,0); }
}

/* ============================================================
   v3.2 — SCROLL PROGRESS BAR (left edge)
============================================================ */
.scroll-progress{
  position: fixed; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.04);
  z-index: 65;
  pointer-events: none;
  display: none;
}
@media (min-width: 960px){ .scroll-progress{ display: block; } }
.scroll-progress .fill{
  position: absolute; left: 0; top: 0; right: 0;
  height: 0%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transition: height .1s linear;
  box-shadow: 0 0 12px rgba(0,229,199,.5);
}
.scroll-progress .stage{
  position: absolute; left: 6px;
  font-size: 10px; font-weight: 700;
  color: var(--t3); letter-spacing: .12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transition: color .3s ease;
  opacity: .5;
}
.scroll-progress .stage.active{ color: var(--primary); opacity: 1; }

/* ============================================================
   v3.2 — MARQUEE BANDS (between sections)
============================================================ */
.marquee{
  position: relative;
  padding: 28px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  background: var(--bg);
  overflow: hidden;
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
}
.marquee.lime{ background: var(--accent); color: #0A0A0A; border-color: var(--accent); }
.marquee .row{
  display: flex; gap: 48px; align-items: center;
  width: max-content;
  animation: marqueeFlow 32s linear infinite;
  white-space: nowrap;
}
.marquee.reverse .row{ animation-direction: reverse; animation-duration: 38s; }
.marquee .word{ display: inline-flex; align-items: center; }
.marquee .sep{
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  color: inherit;
  opacity: .6;
}
.marquee .sep svg{ width: 100%; height: 100%; }
.marquee .stroke{
  color: transparent;
  -webkit-text-stroke: 1.5px currentColor;
}
@keyframes marqueeFlow{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   v3.2 — GRADIENT MESH BLOBS
============================================================ */
.blob-mesh{
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  mix-blend-mode: screen;
  animation: blobFloat 20s ease-in-out infinite;
}
.blob.mint{ background: var(--primary); width: 420px; height: 420px; top: -10%; right: -10%; animation-delay: -3s; }
.blob.warn{ background: var(--warn); width: 320px; height: 320px; bottom: -10%; left: -8%; animation-delay: -8s; }
.blob.acc { background: var(--accent); width: 280px; height: 280px; top: 40%; left: 30%; opacity: .22; animation-delay: -12s; }
@keyframes blobFloat{
  0%, 100%{ transform: translate(0,0) scale(1); }
  33%    { transform: translate(40px,-30px) scale(1.1); }
  66%    { transform: translate(-30px,40px) scale(0.95); }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body{
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--t1);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

.mobile-only { display: inline; }
@media (min-width: 768px) { .mobile-only { display: none; } }
.desktop-only { display: none; }
@media (min-width: 768px) { .desktop-only { display: inline; } }

/* ============================================================
   TYPE
============================================================ */
.eyebrow{
  display: inline-block;
  font-size: var(--cap);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.h1 { font-size: var(--h1); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
.h2 { font-size: var(--h2); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.h3 { font-size: var(--h3); font-weight: 700; line-height: 1.3; letter-spacing: -0.02em; }
.body{ font-size: var(--body); font-weight: 400; line-height: 1.55; color: var(--t2); }
.cap { font-size: var(--cap); color: var(--t3); }
.mint { color: var(--primary); }
.strong { color: var(--t1); font-weight: 700; }
.glow { text-shadow: var(--primary-glow); }

/* ============================================================
   LAYOUT
============================================================ */
section{ position: relative; padding: var(--pad-y) var(--pad-x); overflow: hidden; }
.container { max-width: 1320px; margin: 0 auto; }

/* ============================================================
   REVEAL
============================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }
.reveal.d5 { transition-delay: .55s; }
.reveal.d6 { transition-delay: .7s; }

.mask-reveal{ display: inline-block; overflow: hidden; position: relative; }
.mask-reveal > span{
  display: inline-block;
  transform: translateY(110%);
  transition: transform .7s var(--ease-out);
}
.mask-reveal.in > span{ transform: translateY(0); }

/* ============================================================
   01 — HERO
============================================================ */
.hero{
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 100px;
  background:
    radial-gradient(1100px 600px at 100% 30%, rgba(0,229,199,.06), transparent 60%),
    var(--bg);
}
.hero-bg-x{
  position: absolute; right: -14%; bottom: -16%;
  font-size: 68vw; font-weight: 900;
  color: rgba(255,255,255,.04);
  line-height: .8; letter-spacing: -.08em;
  pointer-events: none;
  animation: slowSpin 60s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes slowSpin{ to { transform: rotate(360deg); } }
@media (min-width: 960px){ .hero-bg-x{ font-size: 42vw; right: -6%; bottom: -22%; } }

.hero-content{ position: relative; z-index: 2; max-width: 1100px; }

.hero-status{
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--divider);
  border-radius: 999px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-wrap: wrap;
}
.hero-status .live-dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(212,255,61,.7);
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse{
  0%, 100%{ box-shadow: 0 0 0 0 rgba(212,255,61,.6); }
  50%    { box-shadow: 0 0 0 8px rgba(212,255,61,0); }
}
.hero-status .live-txt{
  font-size: 12px; font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-status .live-divider{ width: 1px; height: 12px; background: var(--divider); }
.hero-status .eyebrow{ font-size: 12px; }

.hero h1{
  font-size: var(--h1);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero-headline{
  position: relative;
}
.hero-headline::before{
  content: 'WHY';
  position: absolute;
  top: -32px; right: 0;
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0,229,199,.12);
  letter-spacing: -.04em;
  line-height: 1;
  pointer-events: none;
  z-index: -1;
  font-family: 'Pretendard Variable', sans-serif;
}
@media (max-width: 759px){ .hero-headline::before{ display: none; } }
.hero .sub-h1{
  font-size: var(--h2);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.hero .sub-h1 .different{
  position: relative;
  display: inline-block;
  font-weight: 400;
  transition: font-weight 1.0s var(--ease-out) 1.0s, color .6s ease 1.0s, text-shadow .6s ease 1.0s;
}
.hero.loaded .sub-h1 .different{
  font-weight: 800;
  color: var(--primary);
  text-shadow: var(--primary-glow);
}
.hero h1 .qmark{
  display: inline-block;
  color: var(--t1);
  transition: color .4s ease 1.5s;
  animation: pulseBeat 1.6s ease-in-out infinite 1.8s;
}
.hero.loaded h1 .qmark{ color: var(--primary); }
@keyframes pulseBeat{
  0%, 100%{ text-shadow: 0 0 0 transparent; transform: scale(1); }
  50%    { text-shadow: var(--primary-glow); transform: scale(1.06); }
}

.cursor-blink{
  display: inline-block;
  width: 3px; height: .8em;
  background: var(--primary);
  margin-left: 4px;
  transform: translateY(4px);
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero .sub-copy{
  font-size: var(--body);
  color: var(--t2);
  line-height: 1.55;
  margin-bottom: 48px;
  max-width: 620px;
}
.hero .sub-copy .strong{ color: var(--t1); }

.btn-ghost{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--btn);
  transition: background .25s ease, color .25s ease;
}
.btn-ghost:hover{ background: var(--primary); color: #000; }
.btn-ghost .arr{ display: inline-block; transition: transform .3s var(--ease-out); }
.btn-ghost:hover .arr{ transform: translateY(3px); }
.btn-ghost.bounce .arr{ animation: arrowBounce 1.6s ease-in-out infinite; }
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}

.sec-idx{
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; letter-spacing: .2em; color: var(--t3);
  margin-bottom: 28px;
  text-transform: uppercase; font-weight: 600;
}
.sec-idx::before{ content: ''; width: 28px; height: 1px; background: var(--primary); }

/* ============================================================
   SWIPE CARDS
============================================================ */
.swipe-track{
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 28px;
  margin: 0 calc(var(--pad-x) * -1);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  scrollbar-width: none;
}
.swipe-track::-webkit-scrollbar{ display: none; }
.swipe-card{
  flex: 0 0 85%;
  scroll-snap-align: start;
}
@media (min-width: 960px){ .swipe-card{ flex: 0 0 calc(33.333% - 16px); } }

.swipe-hint{
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 15px; color: var(--primary); margin-top: 16px;
  letter-spacing: .04em; font-weight: 600;
}
.swipe-hint .arr{ animation: slideRight 1.4s ease-in-out infinite; }
@keyframes slideRight{
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(6px); }
}

.dots{ display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.dots .dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--t3); transition: width .3s ease, background .3s ease;
}
.dots .dot.active{ width: 24px; background: var(--primary); border-radius: 4px; }

.shake-hint{ animation: shakeCard 0.9s var(--ease-out); }
@keyframes shakeCard{
  0% { transform: translateX(0); }
  20%{ transform: translateX(40px); }
  60%{ transform: translateX(-10px); }
  100%{ transform: translateX(0); }
}

/* ============================================================
   02 — PROBLEM
============================================================ */
.problem .h2 { margin-bottom: 56px; }
.q-card{
  position: relative;
  padding: 36px 28px;
  border: 1px solid var(--divider);
  border-radius: 20px;
  background: var(--surface);
  min-height: 420px;
  transition: border-color .3s ease, transform .35s var(--ease-out);
}
.q-card:hover{ border-color: var(--primary); transform: translateY(-4px); }
.q-num{
  font-size: 96px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary);
  letter-spacing: -.04em;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
@media (min-width: 960px){ .q-num{ font-size: 140px; } }
.q-q{
  font-size: 28px;
  font-weight: 800;
  color: var(--t1);
  line-height: 1.35;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.q-a{ font-size: 18px; color: var(--t2); line-height: 1.65; }
.q-a .strike{ color: var(--t1); font-weight: 600; position: relative; display: inline-block; }
.q-a .strike::after{
  content: '';
  position: absolute;
  left: -2px; right: -2px; top: 52%;
  height: 2px;
  background: var(--warn);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease-out) .8s;
}
.q-card.in .q-a .strike::after{ transform: scaleX(1); }

/* ============================================================
   03 — BRIDGE
============================================================ */
.bridge{
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 80px var(--pad-x);
  background:
    radial-gradient(800px 500px at 0% 50%, rgba(255,77,109,.08), transparent 60%),
    radial-gradient(800px 500px at 100% 50%, rgba(0,229,199,.08), transparent 60%),
    var(--bg);
}
.bridge-x{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 80vw; font-weight: 900;
  color: rgba(255,255,255,.03);
  line-height: 1; pointer-events: none;
}
@media (min-width: 960px){ .bridge-x{ font-size: 46vw; } }
.bridge .inner{ position: relative; z-index: 2; max-width: 1000px; }
.bridge h1{
  font-size: clamp(46px, 10vw, 110px);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.15; margin-bottom: 64px;
}
.type-line{ display: block; min-height: 1.15em; }
.deny{ position: relative; display: inline-block; }
.bridge .next{
  font-size: var(--body); color: var(--primary); font-weight: 700;
  opacity: 0;
  transition: opacity .6s var(--ease-out) 2.2s;
}
.bridge.in .next{ opacity: 1; }
.bridge .next .arr{ display: inline-block; animation: arrowBounce 1.4s ease-in-out infinite; margin-left: 6px; }

/* ============================================================
   04 — INSIGHT (LOOP)
============================================================ */
.insight{ background: var(--surface); }
.insight .head-wrap{ text-align: center; margin-bottom: 64px; }
.insight .h2{ max-width: 880px; margin: 0 auto; }

.loop-wrap{
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
@media (min-width: 960px){ .loop-wrap{ max-width: 520px; } }

.loop-svg{ width: 100%; height: 100%; display: block; overflow: visible; }
.loop-track{
  fill: none;
  stroke: rgba(0,229,199,.25);
  stroke-width: 1.5;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  transition: stroke-dashoffset 1.5s var(--ease-out);
}
.loop-wrap.in .loop-track{ stroke-dashoffset: 0; }

.loop-flow{
  fill: none;
  stroke: var(--primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 30 1500;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 6px rgba(0,229,199,.6));
  animation: loopFlow 3s linear infinite;
  opacity: 0;
  transition: opacity .4s ease 1.6s;
}
.loop-wrap.in .loop-flow{ opacity: 1; }
@keyframes loopFlow{
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -1500; }
}

.loop-node{
  position: absolute;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--divider);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  transform: translate(-50%, -50%) scale(0);
  transition: transform .5s var(--ease-back), border-color .35s ease, box-shadow .4s ease, opacity .4s ease;
  opacity: .55;
}
@media (min-width: 960px){ .loop-node{ width: 130px; height: 130px; } }
.loop-wrap.in .loop-node{ transform: translate(-50%, -50%) scale(1); }
.loop-wrap.in .loop-node.n1{ transition-delay: 1.55s; }
.loop-wrap.in .loop-node.n2{ transition-delay: 1.7s; }
.loop-wrap.in .loop-node.n3{ transition-delay: 1.85s; }
.loop-wrap.in .loop-node.n4{ transition-delay: 2.0s; }

.loop-node .nm{ font-size: 22px; font-weight: 800; color: var(--t1); letter-spacing: -.02em; }
.loop-node .who{ font-size: 12px; color: var(--t3); margin-top: 4px; letter-spacing: .04em; }

.loop-node.n1{
  top: 0; left: 50%;
  border-color: var(--primary);
  background: radial-gradient(circle, rgba(0,229,199,.18), var(--bg) 70%);
  opacity: 1;
}
.loop-node.n1 .nm{ color: var(--primary); text-shadow: var(--primary-glow); }
.loop-node.n1 .who{ color: var(--primary); font-weight: 700; }
.loop-wrap.in .loop-node.n1{ animation: nodePulse 2.4s ease-in-out infinite 2.2s; }
@keyframes nodePulse{
  0%, 100%{ transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 0 rgba(0,229,199,.4); }
  50%    { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 0 32px 6px rgba(0,229,199,.25); }
}
.loop-node.n2{ top: 50%; left: 100%; }
.loop-node.n3{ top: 100%; left: 50%; }
.loop-node.n4{ top: 50%; left: 0%; }

.insight-body{
  max-width: 800px; margin: 80px auto 0;
  text-align: center;
  font-size: var(--body);
  line-height: 1.7;
  color: var(--t2);
}
.insight-body p{ margin-bottom: 8px; }

.insight-closer{
  max-width: 900px; margin: 64px auto 0;
  text-align: center;
}
.insight-closer .big{
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.insight-closer .big .key{
  display: inline-block;
  color: var(--primary);
  font-weight: 900;
  text-shadow: var(--primary-glow);
  animation: keyPulse 2.4s ease-in-out infinite 0.8s;
}
@keyframes keyPulse{
  0%, 100%{ transform: scale(1); }
  50%    { transform: scale(1.08); }
}

.cliff{
  margin-top: 64px;
  text-align: center;
  font-size: var(--body);
  color: var(--t2);
  line-height: 1.5;
}
.cliff .next-arr{
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  margin-left: 6px;
  animation: arrowBounce 1.6s ease-in-out infinite;
}
.cliff .dotted{ letter-spacing: .3em; color: var(--t1); font-weight: 700; }

/* ============================================================
   05 — WHO
============================================================ */
.who{ background: var(--bg); }
.who .equation{
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -.025em;
  margin-bottom: 32px;
}
.who .equation .plus, .who .equation .eq{ color: var(--primary); margin: 0 8px; }
.who .equation .alt{ color: var(--primary); }

.who .lead-body{
  font-size: var(--body);
  line-height: 1.55;
  color: var(--t2);
}
.who .lead-body .brand{
  color: var(--primary);
  font-weight: 800;
  font-size: 1.15em;
  text-shadow: var(--primary-glow);
}

.industry-grid{
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (min-width: 760px){ .industry-grid{ gap: 16px; } }
@media (min-width: 1100px){ .industry-grid{ max-width: 880px; margin-left: auto; margin-right: auto; } }

.ind-card{
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 16px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px;
  transition: transform .35s var(--ease-out), border-color .3s ease, box-shadow .35s ease;
  cursor: default;
  opacity: 0;
  transform: scale(0.85);
}
.industry-grid.in .ind-card{ opacity: 1; transform: scale(1); transition: opacity .5s var(--ease-out), transform .5s var(--ease-back), border-color .3s ease, box-shadow .35s ease; }
.industry-grid.in .ind-card:nth-child(1){ transition-delay: .0s; }
.industry-grid.in .ind-card:nth-child(2){ transition-delay: .08s; }
.industry-grid.in .ind-card:nth-child(3){ transition-delay: .16s; }
.industry-grid.in .ind-card:nth-child(4){ transition-delay: .24s; }
.industry-grid.in .ind-card:nth-child(5){ transition-delay: .32s; }
.industry-grid.in .ind-card:nth-child(6){ transition-delay: .40s; }
.industry-grid.in .ind-card:nth-child(7){ transition-delay: .48s; }
.industry-grid.in .ind-card:nth-child(8){ transition-delay: .56s; }
.industry-grid.in .ind-card:nth-child(9){ transition-delay: .64s; }

.ind-card:hover{
  transform: translateY(-4px) !important;
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(0,229,199,.15);
}
.ind-card .ico{ width: 36px; height: 36px; color: var(--primary); }
@media (min-width: 760px){ .ind-card .ico{ width: 48px; height: 48px; } }
.ind-card .ico svg{ width: 100%; height: 100%; }
.ind-card .ico svg path, .ind-card .ico svg circle, .ind-card .ico svg rect, .ind-card .ico svg polyline, .ind-card .ico svg line, .ind-card .ico svg polygon{
  stroke-dasharray: 200; stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.7s var(--ease-out) .2s;
}
.industry-grid.in .ind-card .ico svg path,
.industry-grid.in .ind-card .ico svg circle,
.industry-grid.in .ind-card .ico svg rect,
.industry-grid.in .ind-card .ico svg polyline,
.industry-grid.in .ind-card .ico svg line,
.industry-grid.in .ind-card .ico svg polygon{ stroke-dashoffset: 0; }

.ind-card .lbl{
  font-size: 16px; font-weight: 700; color: var(--t1);
  letter-spacing: -.01em;
  text-align: center;
}
@media (min-width: 760px){ .ind-card .lbl{ font-size: 22px; } }

.ind-card .tt{
  position: absolute;
  top: -8px; left: 50%;
  transform: translate(-50%, -100%);
  background: var(--primary);
  color: #0A0A0A;
  font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.ind-card:hover .tt{ opacity: 1; }

.scale-wrap{
  margin-top: 80px;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid rgba(0,229,199,.2);
  border-radius: 24px;
}
@media (min-width: 960px){ .scale-wrap{ padding: 48px; } }
.scale-title{
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.25;
  margin-bottom: 40px;
}
.scale-title .key{ color: var(--primary); }

.scale-row{ display: grid; gap: 32px; }
@media (min-width: 760px){ .scale-row{ grid-template-columns: 1fr auto 1.6fr; align-items: center; gap: 32px; } }

.scale-side{ text-align: center; }
.scale-side .label{
  font-size: 16px; color: var(--primary); font-weight: 700;
  margin-bottom: 12px; letter-spacing: .05em;
}
.scale-side .dot-canvas{
  width: 100%;
  min-height: 80px;
  display: flex; flex-wrap: wrap; align-content: center; justify-content: center;
  gap: 4px;
  margin-bottom: 14px;
}
.scale-side .big-dot{
  width: 64px; height: 64px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: var(--primary-glow);
  opacity: 0;
  transform: scale(0);
  transition: opacity .5s ease, transform .6s var(--ease-back);
  animation: bigDotPulse 2s ease-in-out infinite 1s;
}
@keyframes bigDotPulse{
  0%, 100%{ box-shadow: 0 0 20px rgba(0,229,199,.5); }
  50%    { box-shadow: 0 0 40px rgba(0,229,199,.9); }
}
.scale-wrap.in .big-dot{ opacity: 1; transform: scale(1); }
.scale-side .small-dot{
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 760px){
  .scale-side .small-dot{ width: 8px; height: 8px; }
}

.scale-side .num-label{
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.04em;
  line-height: 1;
  text-shadow: var(--primary-glow);
}
.scale-side .num-label .unit{ font-size: .35em; color: var(--t1); font-weight: 700; margin-left: 6px; text-shadow: none; }
.scale-side .sub{ font-size: 16px; color: var(--t2); margin-top: 8px; }

.scale-arrow{
  display: none;
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(0,229,199,.2));
  position: relative;
}
@media (min-width: 760px){ .scale-arrow{ display: block; } }
.scale-arrow::after{
  content: ''; position: absolute; right: 0; top: 50%;
  width: 0; height: 0;
  border-left: 8px solid var(--primary);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: translateY(-50%);
}

.who-quote{
  position: relative;
  margin-top: 56px;
  padding: 32px 28px;
  border: 1.5px solid var(--primary);
  border-radius: 20px;
  background: rgba(0,229,199,.04);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--t1);
}
.who-quote .key{ color: var(--primary); font-weight: 800; }

/* ============================================================
   06 — TEAM
============================================================ */
.team{ background: var(--surface); }
.team .h2{ margin-bottom: 56px; }

.team-card{
  background: #FFFFFF;
  color: #0A0A0A;
  border-radius: 24px;
  padding: 24px 20px 28px;
  min-height: 580px;
  display: flex; flex-direction: column;
}
.avatar-wrap{
  position: relative;
  width: 240px; height: 240px;
  margin: 0 auto 16px;
}
@media (min-width: 960px){ .avatar-wrap{ width: 280px; height: 280px; } }

.avatar-bg{
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(0,229,199,.35), rgba(0,229,199,0) 70%);
  transform: scale(0);
  transition: transform .5s var(--ease-back);
}
.team-card.in .avatar-bg{ transform: scale(1); }

.avatar-svg{
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  transform: translateY(-20px) scale(0.9);
  opacity: 0;
  transition: transform .7s var(--ease-back) .2s, opacity .5s ease .2s;
}
.team-card.in .avatar-svg{ transform: translateY(0) scale(1); opacity: 1; }
.team-card:hover .avatar-svg{ animation: avatarWiggle 0.6s ease; }
@keyframes avatarWiggle{
  0%, 100%{ transform: translateX(0); }
  25%    { transform: translateX(-4px); }
  75%    { transform: translateX(4px); }
}

.team-card .name{ text-align: center; font-size: 34px; font-weight: 800; letter-spacing: -.02em; }
@media (min-width: 960px){ .team-card .name{ font-size: 40px; } }
.team-card .role{ text-align: center; font-size: 22px; color: #00b59d; font-weight: 700; margin-top: 4px; }
.team-card .duty{ text-align: center; font-size: 24px; color: #0A0A0A; margin-top: 16px; font-weight: 700; letter-spacing: -.01em; }
.team-card .history{
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.08);
  font-size: 20px; color: #444;
  line-height: 1.6;
}
.team-card .history div{ padding-left: 16px; position: relative; }
.team-card .history div::before{
  content: ''; position: absolute; left: 0; top: 14px;
  width: 8px; height: 1px; background: #999;
}

/* ============================================================
   07 — PROOF
============================================================ */
.proof{ background: var(--bg); }
.proof .h2 .accent{ color: var(--primary); }
.proof .h2{ margin-bottom: 28px; }
.proof .body{ margin-bottom: 56px; max-width: 800px; }

.proof-card{
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex; flex-direction: column;
  min-height: 420px;
}
.pc-top{
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 18px;
}
.pc-ico{
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--primary-soft);
  border: 1px solid rgba(0,229,199,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
@media (min-width: 960px){ .pc-ico{ width: 64px; height: 64px; } }
.pc-ico svg{ width: 28px; height: 28px; }
.pc-ico svg path, .pc-ico svg circle, .pc-ico svg rect, .pc-ico svg line, .pc-ico svg polyline, .pc-ico svg polygon{
  stroke-dasharray: 200; stroke-dashoffset: 200;
  transition: stroke-dashoffset .7s var(--ease-out) .2s;
}
.proof-card.in .pc-ico svg path,
.proof-card.in .pc-ico svg circle,
.proof-card.in .pc-ico svg rect,
.proof-card.in .pc-ico svg line,
.proof-card.in .pc-ico svg polyline,
.proof-card.in .pc-ico svg polygon{ stroke-dashoffset: 0; }
.pc-num{
  font-size: 56px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--primary);
  letter-spacing: -.04em;
  line-height: 1;
}
.proof-card .pc-head{
  font-size: 13px;
  color: var(--primary);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}
.proof-card .pc-name{
  font-size: 18px;
  color: var(--t2);
  margin-bottom: 24px;
  line-height: 1.45;
}
.proof-card .pc-stat{
  font-size: clamp(42px, 7vw, 64px);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.04em;
  line-height: 1;
  text-shadow: var(--primary-glow);
}
.proof-card .pc-stat .unit{ font-size: .5em; color: var(--t1); font-weight: 700; margin-left: 6px; text-shadow: none; }
.proof-card .pc-stat .arrow{ color: var(--t3); font-weight: 700; margin: 0 6px; }
.proof-card .pc-desc{
  margin-top: 16px;
  font-size: 18px; color: var(--t2);
  line-height: 1.55;
}
.proof-card .pc-tags{
  margin-top: auto;
  padding-top: 18px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.proof-card .pc-tag{
  padding: 5px 12px;
  font-size: 13px;
  color: var(--t3);
  border: 1px solid var(--divider);
  border-radius: 999px;
}

.proof-closer{
  text-align: center;
  margin-top: 72px;
  max-width: 880px;
  margin-left: auto; margin-right: auto;
}
.proof-closer .small{ color: var(--t2); font-size: var(--body); margin-bottom: 28px; line-height: 1.55; }
.proof-closer .big{
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 800; letter-spacing: -.025em; line-height: 1.25;
}
.proof-closer .big .key{ color: var(--primary); }

/* ============================================================
   08 — HOW
============================================================ */
.how{ background: var(--surface); }
.how .h2{ margin-bottom: 56px; max-width: 880px; }
.how .h2 .key{ color: var(--primary); }
.how-card{
  background: var(--bg);
  border: 1px solid var(--divider);
  border-radius: 20px;
  padding: 36px 28px;
  min-height: 440px;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease-out), border-color .3s ease;
}
.how-card:hover{ border-color: var(--primary); transform: translateY(-4px); }
.how-card .icon{
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(0,229,199,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
}
.how-card .icon svg{ width: 32px; height: 32px; }
.how-card .icon svg path, .how-card .icon svg circle, .how-card .icon svg polygon, .how-card .icon svg rect{
  stroke-dasharray: 100; stroke-dashoffset: 100;
  transition: stroke-dashoffset 1s var(--ease-out) .2s;
}
.how-card.in .icon svg path, .how-card.in .icon svg circle, .how-card.in .icon svg polygon, .how-card.in .icon svg rect{ stroke-dashoffset: 0; }
.how-card h3{ font-size: 24px; font-weight: 800; line-height: 1.3; margin-bottom: 16px; letter-spacing: -.02em; }
.how-card p{ font-size: 19px; color: var(--t2); line-height: 1.6; }

/* ============================================================
   08.5 — SERVICES (7 cards)
============================================================ */
.services{ background: var(--bg); }
.services .h2{ margin-bottom: 28px; max-width: 880px; }
.services .h2 .key{ color: var(--primary); }
.services .body{ margin-bottom: 56px; max-width: 720px; }
.services .body .hl{ color: var(--primary); font-weight: 700; }

.svc-grid{ display: grid; gap: 16px; }
@media (min-width: 760px){ .svc-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px){ .svc-grid{ grid-template-columns: repeat(3, 1fr); } }

.svc-card{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform .35s var(--ease-out), border-color .3s ease, box-shadow .35s ease;
  display: flex; flex-direction: column;
  min-height: 260px;
}
.svc-card:hover{ transform: translateY(-4px); border-color: var(--primary); }
.svc-card.featured{
  border-color: var(--accent);
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(212,255,61,.10), transparent 60%),
    linear-gradient(180deg, rgba(212,255,61,.04), var(--surface) 80%);
  box-shadow: 0 0 80px rgba(212,255,61,.15), inset 0 0 60px rgba(212,255,61,.04);
  position: relative;
}
@media (min-width: 1080px){
  .svc-card.featured{ grid-column: span 2; min-height: 320px; }
  .svc-card.featured .svc-ko{ font-size: 40px; }
  .svc-card.featured .svc-def{ font-size: 22px; max-width: 640px; }
}
.svc-card.featured::after{
  content: 'FEATURED';
  position: absolute;
  top: 24px; left: 28px;
  font-size: 10px;
  font-weight: 800;
  color: #0A0A0A;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .15em;
  box-shadow: 0 0 16px rgba(212,255,61,.4);
}
.svc-card.featured .svc-num{ color: var(--accent); text-shadow: 0 0 20px rgba(212,255,61,.4); margin-top: 28px; }
.svc-card.featured .svc-en{ color: var(--accent); }
.svc-card.featured .star{
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  filter: drop-shadow(0 0 12px rgba(212,255,61,.6));
  animation: starSpin 8s linear infinite;
}
@keyframes starSpin { to { transform: rotate(360deg); } }
.svc-num{
  font-size: 28px; font-weight: 800; color: var(--primary);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.svc-en{
  font-size: 14px; font-weight: 700; color: var(--primary);
  letter-spacing: .1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.svc-ko{
  font-size: 26px; font-weight: 800; color: var(--t1);
  letter-spacing: -.02em; line-height: 1.25;
  margin-bottom: 16px;
}
.svc-def{
  font-size: 19px; color: rgba(255,255,255,.75);
  line-height: 1.55;
}

.svc-closer{
  margin-top: 56px;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.025em;
  text-align: center;
}
.svc-closer .key{ color: var(--primary); }

/* ============================================================
   09 — PHILOSOPHY
============================================================ */
.philo{ background: var(--surface); }
.philo .h2{ margin-bottom: 28px; max-width: 800px; }
.philo .h2 .key{ color: var(--primary); }
.philo .body p{ margin-bottom: 16px; max-width: 760px; }
.philo .h3-hi{
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.4;
  margin: 48px 0;
  max-width: 800px;
}
.philo .h3-hi .key{ color: var(--primary); }

.bowls-v31{
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 64px 0;
}
@media (min-width: 760px){ .bowls-v31{ gap: 32px; } }
.bowl-v31{
  position: relative;
  text-align: center;
  padding: 32px 16px 24px;
  border: 1px solid var(--divider);
  border-radius: 20px;
  background: var(--bg);
}
.bowl-v31.ok{ border-color: var(--primary); box-shadow: 0 0 60px rgba(0,229,199,.1); }
.bowl-v31 svg{ width: 100%; height: 200px; }
@media (min-width: 760px){ .bowl-v31 svg{ height: 240px; } }
.bowl-v31 .label{ margin-top: 14px; font-size: 18px; color: var(--t3); font-weight: 600; }
.bowl-v31.ok .label{ color: var(--primary); font-weight: 700; }

.philo-closer{
  margin-top: 64px;
  padding: 32px;
  border: 1.5px solid var(--primary);
  border-radius: 20px;
  background: rgba(0,229,199,.04);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.02em;
  text-align: left;
}
.philo-closer .key{
  color: var(--primary);
  font-weight: 800;
}

/* ============================================================
   10 — PROMISE
============================================================ */
.promise{ background: var(--bg); }
.promise .h2{ margin-bottom: 28px; max-width: 880px; }
.promise .h2 .key{ color: var(--warn); }
.promise .body{ max-width: 760px; margin-bottom: 56px; }

.graph-wrap{
  position: relative;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 24px;
  padding: 32px 24px;
}
.graph-wrap svg{ width: 100%; height: auto; display: block; }
.graph-wrap .legend{
  display: flex; justify-content: center; gap: 32px;
  margin-top: 24px;
  font-size: 16px;
}
.graph-wrap .legend .item{ display: inline-flex; align-items: center; gap: 10px; color: var(--t3); transition: color .35s ease; font-weight: 600; }
.graph-wrap .legend .item .swatch{ width: 22px; height: 3px; border-radius: 2px; }
.graph-wrap .legend .item .swatch.warn{ background: var(--warn); }
.graph-wrap .legend .item .swatch.mint{ background: var(--primary); }
.graph-wrap.in .legend .mint-item{ color: var(--primary); text-shadow: 0 0 12px rgba(0,229,199,.4); }
.graph-wrap.in .legend .warn-item{ color: var(--warn); }

#fantasy-path-v31, #real-path-v31{ fill: none; stroke-linecap: round; stroke-linejoin: round; }
#fantasy-path-v31{ stroke: var(--warn); stroke-width: 3; stroke-dasharray: 8 6; }
#real-path-v31{ stroke: var(--primary); stroke-width: 3.5; filter: drop-shadow(0 0 8px rgba(0,229,199,.5)); }

.anim-path{
  pathLength: 100;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}
.graph-wrap.in #fantasy-path-v31{ animation: dashDraw 1.8s var(--ease-out) forwards; }
.graph-wrap.in #real-path-v31{ animation: dashDraw 2.4s var(--ease-out-expo) forwards 2.0s; }

@keyframes dashDraw{ to { stroke-dashoffset: 0; } }

.real-dot{
  opacity: 0; transform-origin: center;
  transition: opacity .4s ease 4.4s;
}
.graph-wrap.in .real-dot{ opacity: 1; animation: dotPulse 1.4s ease-in-out infinite 4.4s; }
@keyframes dotPulse{
  0%, 100% { r: 7; filter: drop-shadow(0 0 0 transparent); }
  50%      { r: 11; filter: drop-shadow(0 0 12px rgba(0,229,199,.8)); }
}

.cross-x{ opacity: 0; transition: opacity .4s ease 4.6s; }
.graph-wrap.in .cross-x{ opacity: 1; }

.promise-h3{
  margin-top: 56px;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.25;
  text-align: center;
}
.promise-h3 .magic-strike{
  position: relative;
  display: inline-block;
  color: var(--t1);
}
.promise-h3 .magic-strike::after{
  content: '';
  position: absolute;
  left: -4px; right: -4px; top: 52%;
  height: 4px;
  background: var(--warn);
  transform: scaleX(0); transform-origin: left;
  transition: transform .7s var(--ease-out) .8s;
  border-radius: 2px;
}
.promise-h3.in .magic-strike::after{ transform: scaleX(1); }

.promise-closer{
  margin-top: 48px;
  padding: 28px;
  border: 1.5px solid var(--primary);
  border-radius: 20px;
  background: rgba(0,229,199,.04);
  text-align: center;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.3;
}
.promise-closer .alt{ color: var(--t1); font-weight: 700; display: block; margin-bottom: 6px; }
.promise-closer .key{ color: var(--primary); }

/* ============================================================
   10.5 — PROCESS
============================================================ */
.process{ background: var(--surface); text-align: center; }
.process .eyebrow{ display: block; }
.process .h1{ margin: 0 auto 56px; max-width: 1000px; }
.process .h1 .strike-mage{ position: relative; display: inline-block; color: var(--t2); }
.process .h1 .strike-mage::after{
  content: ''; position: absolute;
  left: -4px; right: -4px; top: 54%;
  height: 4px;
  background: var(--warn);
  transform: scaleX(0); transform-origin: left;
  transition: transform .7s var(--ease-out) .6s;
  border-radius: 2px;
}
.process .h1.in .strike-mage::after{ transform: scaleX(1); }
.process .h1 .key{
  position: relative;
  display: inline-block;
  color: var(--accent);
  font-weight: 900;
  text-shadow: var(--accent-glow);
  animation: limeBeat 2.4s ease-in-out infinite;
}
@keyframes limeBeat{
  0%, 100%{ transform: scale(1); text-shadow: 0 0 24px rgba(212,255,61,.4); }
  50%    { transform: scale(1.05); text-shadow: 0 0 48px rgba(212,255,61,.7); }
}
.process .h1 .key::after{
  content: '';
  position: absolute; left: -8px; right: -8px; bottom: -8px;
  height: 6px;
  background: var(--accent);
  border-radius: 999px;
  opacity: .25;
  filter: blur(8px);
}

.orbit{
  position: relative;
  width: 320px; height: 320px;
  margin: 0 auto 56px;
}
@media (min-width: 760px){ .orbit{ width: 480px; height: 480px; } }

.orbit-x{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 220px;
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: 1;
  text-shadow: 0 0 40px rgba(0,229,199,.4);
  animation: slowSpin 60s linear infinite;
  -webkit-text-stroke: 2px var(--primary);
  color: transparent;
}
@media (min-width: 760px){ .orbit-x{ font-size: 340px; -webkit-text-stroke: 3px var(--primary); } }

.orbit-ring{
  position: absolute; inset: 0;
  border: 1px dashed rgba(0,229,199,.2);
  border-radius: 50%;
}
.orbit-ring.r1{ inset: 30%; animation: spin 12s linear infinite; }
.orbit-ring.r2{ inset: 15%; animation: spin 24s linear infinite reverse; }
.orbit-ring.r3{ inset: 0; animation: spin 36s linear infinite; }
@keyframes spin{ to { transform: rotate(360deg); } }

.orbit-icon{
  position: absolute;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  transform: translate(-50%, -50%);
}
.orbit-icon svg{ width: 16px; height: 16px; }
@media (min-width: 760px){
  .orbit-icon{ width: 44px; height: 44px; }
  .orbit-icon svg{ width: 22px; height: 22px; }
}

.process-body{
  max-width: 780px; margin: 0 auto;
  text-align: center;
}
.process-block{
  margin-bottom: 32px;
  font-size: var(--body);
  line-height: 1.55;
  color: var(--t2);
}
.process-block .lead{ color: var(--t1); font-weight: 700; }

.process-box{
  margin-top: 48px;
  padding: 32px;
  border: 1.5px solid var(--primary);
  border-radius: 20px;
  background: rgba(0,229,199,.04);
  text-align: center;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.02em;
}
.process-box .key{ color: var(--primary); font-weight: 800; }

/* ============================================================
   11 — CONSTRAINT
============================================================ */
.constraint{
  background: var(--bg);
  text-align: center;
  position: relative;
}
.constraint .h1{
  font-weight: 400;
  transition: font-weight 1.0s var(--ease-out);
  max-width: 1000px;
  margin: 0 auto;
}
.constraint .h1.in{ font-weight: 800; }
.constraint .h1 .deny-large{ position: relative; display: inline-block; }
.constraint .h1 .deny-large::after{
  content: '';
  position: absolute;
  left: -4px; right: -4px; top: 54%;
  height: 4px;
  background: var(--warn);
  transform: scaleX(0); transform-origin: left;
  transition: transform .7s var(--ease-out) 1.0s;
  border-radius: 2px;
}
.constraint .h1.in .deny-large::after{ transform: scaleX(1); }

.constraint .body{ margin: 36px auto 0; max-width: 780px; }
.constraint .body p{ margin-bottom: 16px; }

.cs-box{
  position: relative;
  margin: 56px auto 0;
  max-width: 600px;
  padding: 36px 32px;
  border-radius: 20px;
  background: var(--surface);
}
.cs-box::before, .cs-box::after, .cs-box .l, .cs-box .r{
  content: ''; position: absolute; background: var(--primary);
}
.cs-box::before{ top: 0; left: 0; width: 0; height: 2px; }
.cs-box.in::before{ width: 100%; transition: width 1.2s var(--ease-out); }
.cs-box .r{ top: 0; right: 0; width: 2px; height: 0; }
.cs-box.in .r{ height: 100%; transition: height 1.2s var(--ease-out) .3s; }
.cs-box::after{ bottom: 0; right: 0; width: 0; height: 2px; }
.cs-box.in::after{ width: 100%; transition: width 1.2s var(--ease-out) .6s; }
.cs-box .l{ bottom: 0; left: 0; width: 2px; height: 0; }
.cs-box.in .l{ height: 100%; transition: height 1.2s var(--ease-out) .9s; }

.cs-label{ font-size: 14px; color: var(--t3); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; font-weight: 600; }
.cs-num{
  position: relative;
  display: inline-block;
  font-size: clamp(60px, 9vw, 100px);
  font-weight: 900; color: var(--primary);
  letter-spacing: -.04em; line-height: 1;
  text-shadow: var(--primary-glow);
  animation: keyPulse 2.4s ease-in-out infinite 1.5s;
}
.cs-num::before{
  content: '';
  position: absolute;
  left: 50%; bottom: -16px;
  transform: translateX(-50%);
  width: 60%; height: 4px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(212,255,61,.6);
}
.cs-num .unit{ font-size: .35em; color: var(--t1); font-weight: 700; margin-left: 8px; text-shadow: none; }
.cs-sub{ color: var(--t2); margin-top: 20px; line-height: 1.6; font-size: 17px; }

/* ============================================================
   12 — CTA
============================================================ */
.cta-sec{
  background: var(--bg);
  position: relative;
  text-align: left;
}
.cta-sec .cta-x{
  position: absolute; right: -16%; top: 0; bottom: 0;
  display: flex; align-items: center;
  font-size: 70vw; font-weight: 900;
  color: rgba(0,229,199,.04);
  line-height: 1;
  pointer-events: none;
}
@media (min-width: 960px){ .cta-sec .cta-x{ font-size: 42vw; right: -6%; } }

.cta-sec .h1{ margin-bottom: 40px; max-width: 980px; }
.cta-sec .h1 .key{ color: var(--primary); }

.proof-box{
  margin-bottom: 48px;
  padding: 32px 28px;
  background: rgba(0,229,199,.06);
  border: 2px solid var(--primary);
  border-radius: 20px;
  position: relative;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.02em;
  max-width: 880px;
  box-shadow: 0 0 60px rgba(0,229,199,.1);
}
@media (min-width: 960px){ .proof-box{ padding: 48px; } }
.proof-box .skill{
  font-weight: 900;
  color: var(--primary);
  font-size: 1.1em;
  text-shadow: var(--primary-glow);
  animation: keyPulse 2.4s ease-in-out infinite 1s;
  display: inline-block;
}
.proof-box .ul-key{
  position: relative;
  display: inline-block;
}
.proof-box .ul-key svg{
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 8px;
}
.proof-box .ul-key svg path{
  stroke: var(--primary); stroke-width: 3; fill: none; stroke-linecap: round;
  stroke-dasharray: 200; stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.2s var(--ease-out) .5s;
}
.proof-box.in svg path{ stroke-dashoffset: 0; }

.cta-sec .body{ max-width: 780px; margin-bottom: 56px; }

.form-card{
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 24px;
  padding: 32px 24px;
  max-width: 780px;
}
@media (min-width: 960px){ .form-card{ padding: 48px 40px; } }

.form-row{ display: grid; gap: 18px; margin-bottom: 18px; }
@media (min-width: 720px){ .form-row.cols-2{ grid-template-columns: 1fr 1fr; } }

.field label{
  display: block;
  font-size: 15px;
  color: var(--t2);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: .02em;
}
.field label .req{ color: var(--primary); margin-left: 4px; }
.field input, .field select, .field textarea{
  width: 100%;
  background: #0A0A0A;
  color: var(--t1);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 17px;
  font-family: inherit;
  min-height: 56px;
  transition: border-color .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,229,199,.15);
}
.field textarea{ min-height: 100px; resize: vertical; }
.field select{
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--t2) 50%), linear-gradient(135deg, var(--t2) 50%, transparent 50%);
  background-position: calc(100% - 22px) center, calc(100% - 16px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat; padding-right: 40px;
}

.agree{
  display: flex; gap: 12px; align-items: flex-start;
  margin: 20px 0 28px;
  font-size: 16px; color: var(--t2);
  min-height: 48px;
}
.agree input{ accent-color: var(--primary); margin-top: 4px; width: 20px; height: 20px; flex-shrink: 0; }
.agree a{ color: var(--primary); text-decoration: underline; }

.form-error{
  color: #ff6b6b;
  font-size: 15px;
  margin: 0 0 16px;
  text-align: center;
}
.form-error[hidden]{ display: none; }
.form-ok{
  display: none;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 24px;
}
.form-ok.show{ display: block; }
.form-ok .ic{
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent); color: #0A0A0A;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-ok h3{ font-size: 28px; margin-bottom: 12px; }
.form-ok p{ color: var(--t2); font-size: 18px; line-height: 1.6; }

.btn-primary{
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  height: 64px;
  background: var(--accent);
  color: #0A0A0A;
  border-radius: 12px;
  font-weight: 800;
  font-size: var(--btn);
  letter-spacing: -.01em;
  transition: transform .25s var(--ease-out), box-shadow .35s ease, background .3s ease;
  box-shadow: 0 0 0 0 rgba(212,255,61,0), inset 0 0 0 0 transparent;
  z-index: 1;
}
.btn-primary::before{
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease-out);
  z-index: -1;
}
.btn-primary:hover::before{ transform: translateX(100%); }
.btn-primary:hover{ box-shadow: 0 18px 50px rgba(212,255,61,.4), 0 0 0 4px rgba(212,255,61,.15); }
.btn-primary .arr{ transition: transform .25s var(--ease-out); }
.btn-primary:hover .arr{ transform: translateX(5px); }

.cta-foot{ margin-top: 18px; font-size: 20px; color: var(--t3); text-align: center; }

.sticky-cta{
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 40;
  padding: 18px;
  background: var(--accent);
  color: #0A0A0A;
  text-align: center;
  border-radius: 14px;
  font-weight: 800;
  font-size: 17px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 16px 36px rgba(0,0,0,.55), 0 0 30px rgba(212,255,61,.3);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
  min-height: 56px;
}
.sticky-cta.show{ opacity: 1; transform: translateY(0); pointer-events: auto; }
@media (min-width: 960px){ .sticky-cta{ display: none; } }

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation: none !important; transition: none !important; }
  .reveal{ opacity: 1 !important; transform: none !important; }
  .mask-reveal > span{ transform: translateY(0) !important; }
}
/* ============ 수정요청 260527 오버라이드 ============ */
/* 좌측 세로 띠(스크롤 progress) + 마퀴 띠(2개) 삭제 */
.scroll-progress, .marquee{ display:none !important; }
/* 히어로 기존 배경(WHY 텍스트·블롭·대형 X) 삭제 */
.hero-headline::before{ display:none !important; }
.hero-bg-x, .blob-mesh{ display:none !important; }
/* 사이트 전반 타이틀·설명글 중앙정렬 */
.hero-content{ max-width:920px; margin-left:auto; margin-right:auto; text-align:center; }
.hero-status{ justify-content:center; }
.hero .sub-h1, .hero .sub-copy{ text-align:center; margin-left:auto; margin-right:auto; }
.sec-idx{ display:none !important; }            /* 섹션 소제목(인덱스 라벨) 전부 삭제 */
/* 전체 중앙정렬 — 타이틀 + 설명글까지 (폼 입력만 좌측 유지) */
section{ text-align:center; }
section p, section .h2, section .h3, section li{ margin-left:auto; margin-right:auto; }
.field, .field input, .field textarea, .field label,
form input, form textarea, form select, form label{ text-align:left; }

/* ============ 수정요청 260527 — v2 반영 오버라이드 ============ */
/* [전역] 섹션 간 여백 30% 축소 (동일 비율 일괄 적용) */
:root{ --pad-y: 84px; }
@media (min-width: 960px){ :root{ --pad-y: 140px; } }

/* 공통 인라인 영상 헬퍼 */
.x-video{ width:100%; display:block; }
.x-video-wrap{ position:relative; width:100%; border-radius:20px; overflow:hidden; border:1px solid var(--divider); background:#000; }

/* ---------- [p1] HERO ---------- */
.hero{ min-height:auto; padding-top:140px; padding-bottom:140px; }   /* 상·하 동일 여백 */
.hero-video{ width:100%; max-width:1080px; margin:0 auto 40px; border-radius:24px; overflow:hidden;
  border:1px solid var(--divider); box-shadow:0 0 90px rgba(0,229,199,.14); background:#000; }
.hero-video video{ width:100%; height:auto; display:block; }

/* ---------- [p2] PROBLEM : 넘버링→이미지, PC 1페이지 / 모바일 1+20% ---------- */
.problem .q-num{ display:none !important; }
.q-img{ width:100%; aspect-ratio:3/2; border-radius:14px; overflow:hidden; margin-bottom:20px; border:1px solid var(--divider); }
.q-img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease-out); }
.q-card:hover .q-img img{ transform:scale(1.05); }
.q-card{ min-height:0; }
@media (min-width: 960px){
  #problemTrack{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
    overflow:visible; margin:0; padding:0 0 8px; }
  #problemTrack .swipe-card{ flex:none; width:auto; }
}
@media (max-width: 959px){ #problemTrack .swipe-card{ flex:0 0 80%; } }

/* ---------- [p3] BRIDGE : 영상2 백그라운드 + 문구 ---------- */
.bridge{ min-height:92vh; }
.bridge-x{ display:none !important; }
.bridge-video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; opacity:.45; }
.bridge-overlay{ position:absolute; inset:0; z-index:1;
  background:radial-gradient(circle at center, rgba(10,10,10,.45), rgba(10,10,10,.86) 80%); }
.bridge .inner{ position:relative; z-index:2; }
.bridge-head .neq{ color:var(--warn); font-weight:900; text-shadow:0 0 26px rgba(255,77,109,.55); }
.bridge-statement{ font-size:calc(var(--body) * 2); font-weight:800; line-height:1.3;
  letter-spacing:-.02em; margin-top:12px; }
.bridge-statement .mint{ color:var(--primary); text-shadow:var(--primary-glow); }
.bridge-sub-line{ display:inline-block; font-size:.55em; font-weight:700; letter-spacing:-.02em; margin-top:14px; white-space:nowrap; }
@media (max-width: 480px){ .bridge-sub-line{ font-size:.5em; } }

/* ---------- [p4] WHO : 아이콘 30%↑ + 호버 시 민트 풀 오버레이 ---------- */
.ind-card{ overflow:hidden; }
.ind-card .ico{ width:47px; height:47px; transition:opacity .25s ease; }
@media (min-width: 760px){ .ind-card .ico{ width:62px; height:62px; } }
.ind-card .tt{
  position:absolute; inset:0; top:0; left:0; transform:none;
  width:100%; height:100%; border-radius:16px;
  background:var(--primary); color:#0A0A0A;
  display:flex; align-items:center; justify-content:center; text-align:center;
  white-space:normal; padding:14px;
  font-size:18px; font-weight:800; line-height:1.3; letter-spacing:-.01em;
  opacity:0; transition:opacity .28s ease;
}
@media (min-width: 760px){ .ind-card .tt{ font-size:24px; } }
.ind-card:hover{ background:var(--primary); border-color:var(--primary); box-shadow:0 0 50px rgba(0,229,199,.35); }
.ind-card:hover .tt{ opacity:1; }

/* ---------- [p6] TEAM : 팀원 이미지 카드 ---------- */
.team-img-card{ border-radius:20px; overflow:hidden; border:1px solid var(--divider);
  background:var(--surface); min-height:0; transition:transform .35s var(--ease-out), box-shadow .35s ease; }
.team-img-card img{ width:100%; height:auto; display:block; }
.team-img-card:hover{ transform:translateY(-4px); box-shadow:0 0 50px rgba(0,229,199,.18); }
@media (max-width: 959px){ #teamTrack .swipe-card{ flex:0 0 80%; } }

/* ---------- [p7] PROOF : 해시태그 중앙하단 / 좌우 여백 10%↓ / 모바일 1+20% ---------- */
.proof{ padding-left:calc(var(--pad-x) * .9); padding-right:calc(var(--pad-x) * .9); }
.proof-card .pc-tags{ justify-content:center; }
@media (max-width: 959px){ #proofTrack .swipe-card{ flex:0 0 80%; } }
.proof-quote{ margin:36px auto 0; max-width:760px; padding:24px 28px;
  border-left:3px solid var(--primary); background:rgba(0,229,199,.04); border-radius:0 14px 14px 0;
  font-size:clamp(18px,2.4vw,24px); font-weight:600; line-height:1.6; color:var(--t1); text-align:left; }

/* ---------- [p8] HOW : 아이콘 중앙+30%↑ / 하단 여백 좁게 ---------- */
.how-card{ text-align:center; align-items:center; }
.how-card .icon{ width:83px; height:83px; margin-left:auto; margin-right:auto; }
.how-card .icon svg{ width:42px; height:42px; }
.how-card h3, .how-card p{ text-align:center; }
.how{ padding-bottom:64px; }

/* ---------- [p9·10] PHILO : 영상3 + 중앙정렬 + 애니메이션 강조 ---------- */
.philo-video{ max-width:920px; margin:48px auto; border-radius:20px; overflow:hidden;
  border:1px solid var(--divider); box-shadow:0 0 70px rgba(0,229,199,.12); background:#000; }
.philo-video video{ width:100%; display:block; }
.philo-divider{
  display:inline-flex; align-items:center; gap:14px;
  margin:32px auto; padding:10px 22px;
  border:1.5px solid var(--primary); border-radius:999px;
  color:var(--primary); font-weight:800; letter-spacing:.16em; font-size:15px;
  background:rgba(0,229,199,.06);
  box-shadow:0 0 28px rgba(0,229,199,.2), inset 0 0 18px rgba(0,229,199,.06);
  position:relative; overflow:hidden;
  animation: philoDivPulse 2.6s ease-in-out infinite;
}
.philo-divider .dash{ width:24px; height:1.5px; background:var(--primary); box-shadow:0 0 8px rgba(0,229,199,.7); display:inline-block; }
.philo-divider .txt{ position:relative; z-index:2; }
.philo-divider::after{
  content:''; position:absolute; top:0; left:-40%; width:40%; height:100%;
  background:linear-gradient(90deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  transform: skewX(-15deg);
  animation: philoDivShine 3.8s ease-in-out infinite;
}
@keyframes philoDivPulse{
  0%,100%{ box-shadow:0 0 22px rgba(0,229,199,.18), inset 0 0 18px rgba(0,229,199,.06); border-color:var(--primary); }
  50%   { box-shadow:0 0 42px rgba(0,229,199,.5), inset 0 0 26px rgba(0,229,199,.14); border-color:#7AFFE4; }
}
@keyframes philoDivShine{
  0%   { left:-40%; }
  60%  { left:120%; }
  100% { left:120%; }
}
.philo .body p{ margin-bottom:14px; }
.philo-closer{ text-align:center; }
.philo-closer p{ margin:0 0 14px; }
.philo-closer.anim-emph{ animation: philoEmph 3s ease-in-out infinite; }
@keyframes philoEmph{
  0%,100%{ box-shadow:0 0 0 0 rgba(0,229,199,.0); border-color:var(--primary); }
  50%    { box-shadow:0 0 50px 0 rgba(0,229,199,.28); border-color:#39ffe0; }
}

/* ---------- [p11·12] MAGIC 키워드 (마법 / 마법사) ---------- */
.magic-word{ position:relative; color:var(--accent) !important; font-weight:900;
  text-shadow:0 0 18px rgba(212,255,61,.6); animation: magicGlow 2.2s ease-in-out infinite; }
@keyframes magicGlow{
  0%,100%{ text-shadow:0 0 14px rgba(212,255,61,.5); }
  50%    { text-shadow:0 0 32px rgba(212,255,61,.95), 0 0 56px rgba(0,229,199,.45); }
}
.magic-word::before{ content:'✦'; position:absolute; top:-.55em; right:-.55em; font-size:.5em;
  color:var(--accent); animation: sparkleA 1.8s ease-in-out infinite; }
.magic-word::after{ content:'✦'; position:absolute; bottom:-.35em; left:-.5em; font-size:.36em;
  color:var(--primary); animation: sparkleB 2.3s ease-in-out infinite .4s; }
@keyframes sparkleA{ 0%,100%{ opacity:0; transform:scale(.4) rotate(0); } 50%{ opacity:1; transform:scale(1) rotate(120deg); } }
@keyframes sparkleB{ 0%,100%{ opacity:0; transform:scale(.3) rotate(0); } 50%{ opacity:1; transform:scale(1) rotate(-100deg); } }

/* [p11] PROMISE 그래프 애니메이션 무한 반복 */
.graph-wrap.in #fantasy-path-v31{ animation: dashLoop 5.2s linear infinite !important; }
.graph-wrap.in #real-path-v31{ animation: dashLoop 5.2s linear infinite .7s !important; }
@keyframes dashLoop{
  0%   { stroke-dashoffset:100; }
  38%  { stroke-dashoffset:0; }
  78%  { stroke-dashoffset:0; }
  100% { stroke-dashoffset:-100; }
}

/* [p12] PROCESS 하단 문구영역 강조 + 사이즈 UP */
.process .cliff.emph-box{
  font-size:calc(var(--body) * 1.4); font-weight:800; color:var(--t1);
  max-width:780px; margin:48px auto 0; padding:26px 28px;
  border:1.5px solid var(--primary); border-radius:18px; background:rgba(0,229,199,.06);
  box-shadow:0 0 50px rgba(0,229,199,.12);
}

/* ---------- [p13] CONSTRAINT : 경고 박스 디자인 ---------- */
.cs-box.warn-box{ background:linear-gradient(180deg, rgba(255,77,109,.07), var(--surface) 70%);
  border:1px solid rgba(255,196,0,.3); }
.cs-box.warn-box .cs-warnicon{ width:56px; height:56px; margin:0 auto 14px; color:#FFC400;
  filter:drop-shadow(0 0 18px rgba(255,196,0,.55)); animation: keyPulse 2.2s ease-in-out infinite; }
.cs-box.warn-box .cs-warnicon svg{ width:100%; height:100%; }
.cs-box.warn-box .cs-warntitle{ font-size:34px; font-weight:900; color:#FFC400; letter-spacing:-.01em;
  margin-bottom:24px; text-shadow:0 0 26px rgba(255,196,0,.45); }
.cs-box.warn-box .cs-label{ font-size:28px; }            /* 작은 폰트 2배 */
.cs-box.warn-box .cs-sub{ font-size:30px; line-height:1.45; }   /* 작은 폰트 2배 */
.cs-box.warn-box .cs-num{ font-size:clamp(72px, 11vw, 120px); } /* 최대 8 → 20% UP */
@media (max-width:600px){
  .cs-box.warn-box .cs-warntitle{ font-size:26px; }
  .cs-box.warn-box .cs-label{ font-size:22px; }
  .cs-box.warn-box .cs-sub{ font-size:22px; }
}

/* [260529 p9] CONSTRAINT '없습니다' 강조 — 글로우 펄스 + 빨간 밑줄 그어지기 + 살짝 흔들림 */
.deny-final{ position:relative; display:inline-block; color:var(--warn); font-weight:900;
  text-shadow:0 0 22px rgba(255,77,109,.45);
  animation: denyGlow 2.4s ease-in-out infinite;
}
.deny-final::after{
  content:''; position:absolute; left:-6px; right:-6px; bottom:-6px;
  height:5px; background:var(--warn); border-radius:3px;
  box-shadow:0 0 14px rgba(255,77,109,.7);
  transform:scaleX(0); transform-origin:left;
  animation: denyUnderline 2.4s ease-in-out infinite;
}
.deny-final-inner{ display:inline-block; animation: denyShake 2.4s ease-in-out infinite; }
@keyframes denyGlow{
  0%,100%{ text-shadow:0 0 18px rgba(255,77,109,.4); }
  50%   { text-shadow:0 0 38px rgba(255,77,109,.95), 0 0 60px rgba(255,77,109,.5); }
}
@keyframes denyUnderline{
  0%   { transform:scaleX(0); }
  40%  { transform:scaleX(1); }
  80%  { transform:scaleX(1); }
  100% { transform:scaleX(0); transform-origin:right; }
}
@keyframes denyShake{
  0%,40%,60%,100%{ transform:translateX(0); }
  46%  { transform:translateX(-2px); }
  52%  { transform:translateX(2px); }
}

/* [260529 p8] SERVICES 8-card v2 디자인 (넘버링 없음, 순서 표시 없음) */
.svc-grid-v2{ display:grid; gap:18px; grid-template-columns:1fr; }
@media (min-width: 640px){ .svc-grid-v2{ grid-template-columns:repeat(2,1fr); gap:20px; } }
@media (min-width: 1080px){ .svc-grid-v2{ grid-template-columns:repeat(4,1fr); } }
.svc-card-v2{
  position:relative;
  padding:30px 24px 32px;
  border-radius:22px;
  background:
    radial-gradient(120% 60% at 0% 0%, rgba(0,229,199,.08), transparent 60%),
    linear-gradient(170deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  border:1px solid rgba(255,255,255,.08);
  transition: transform .35s var(--ease-out), border-color .3s ease, box-shadow .35s ease, background .35s ease;
  display:flex; flex-direction:column;
  min-height:260px;
  overflow:hidden; text-align:left;
}
.svc-card-v2::after{
  content:''; position:absolute; right:-30%; top:-30%; width:200px; height:200px;
  background:radial-gradient(circle, rgba(0,229,199,.12), transparent 70%);
  filter:blur(20px); pointer-events:none; opacity:.0; transition:opacity .4s ease;
}
.svc-card-v2:hover{ transform:translateY(-6px); border-color:var(--primary); box-shadow:0 18px 60px rgba(0,229,199,.2); }
.svc-card-v2:hover::after{ opacity:.85; }
.svc-card-v2 .svc-glyph{
  width:54px; height:54px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(0,229,199,.1); color:var(--primary);
  margin-bottom:20px;
  transition:transform .35s var(--ease-back), background .3s ease, box-shadow .3s ease;
}
.svc-card-v2:hover .svc-glyph{ transform:translateY(-2px) scale(1.06); background:rgba(0,229,199,.22); box-shadow:0 0 26px rgba(0,229,199,.5); }
.svc-card-v2 .svc-glyph svg{ width:26px; height:26px; }
.svc-card-v2 .svc-en{ font-size:12px; font-weight:800; letter-spacing:.16em; color:var(--primary); margin-bottom:8px; text-transform:uppercase; }
.svc-card-v2 .svc-ko{ font-size:22px; font-weight:800; color:var(--t1); letter-spacing:-.02em; margin-bottom:14px; line-height:1.3; }
.svc-card-v2 .svc-def{ font-size:16px; color:var(--t2); line-height:1.65; margin-top:auto; }
/* 라임 강조 — 짝수 카드(2,4,6,8) 시각적 리듬 */
.svc-grid-v2 .svc-card-v2:nth-child(2n) .svc-glyph{ background:rgba(212,255,61,.12); color:var(--accent); }
.svc-grid-v2 .svc-card-v2:nth-child(2n) .svc-en{ color:var(--accent); }
.svc-grid-v2 .svc-card-v2:nth-child(2n):hover .svc-glyph{ box-shadow:0 0 26px rgba(212,255,61,.5); background:rgba(212,255,61,.22); }
.svc-grid-v2 .svc-card-v2:nth-child(2n):hover{ border-color:var(--accent); box-shadow:0 18px 60px rgba(212,255,61,.18); }

/* [260529 p6] HOW 카드 : 텍스트 20%↑, 소제목·본문 간격 20%↑, 상·하 여백 동일 */
.how-card{ min-height:auto; padding:38px 30px; }
.how-card h3{ font-size:29px; margin-bottom:20px; }
.how-card p{ font-size:23px; line-height:1.55; }
@media (max-width: 760px){
  .how-card{ padding:32px 24px; }
  .how-card h3{ font-size:25px; }
  .how-card p{ font-size:19px; }
}
/* [260529 p4·5] swipe-track 데스크톱 드래그 스와이프 시각 피드백 */
@media (min-width: 760px){
  .swipe-track{ cursor: grab; user-select: none; -webkit-user-select: none; }
  .swipe-track.dragging{ cursor: grabbing; }
  .swipe-track.dragging *{ pointer-events: none; }
}
/* [260529 p5] PROOF 상단 여백 (밑 여백과 동일) */
#proofTrack{ margin-top: 64px; }
/* ---------- [260529 p3] SCALE 박스 대칭 재배치 ---------- */
.scale-row.scale-row-v2{
  display:grid; grid-template-columns: repeat(5, 1fr);
  align-items:start; gap:14px;
}
.scale-row-v2 .sc-col{ display:flex; flex-direction:column; align-items:center; justify-content:flex-start; text-align:center; gap:10px; }
.scale-row-v2 .label{ font-size:16px; color:var(--primary); font-weight:700; letter-spacing:.05em; margin-bottom:8px; min-height:1.2em; }
.scale-row-v2 .dot-canvas{ width:100%; min-height:80px; display:flex; flex-wrap:wrap; align-content:center; justify-content:center; gap:4px; }
.scale-row-v2 .num-label{ font-size:clamp(40px, 6vw, 68px); font-weight:900; color:var(--primary); letter-spacing:-.04em; line-height:1; text-shadow:var(--primary-glow); }
.scale-row-v2 .num-label .unit{ font-size:.35em; color:var(--t1); font-weight:700; margin-left:6px; text-shadow:none; }
.scale-row-v2 .sub{ font-size:16px; color:var(--t2); margin-top:6px; }
.scale-row-v2 .sc-txt-l, .scale-row-v2 .sc-txt-r{ padding-top:28px; }
.scale-row-v2 .sc-amp{
  align-self:center;
  font-family: Georgia, 'Times New Roman', serif;
  font-size:clamp(64px, 10vw, 120px); font-weight:700;
  color:var(--primary); font-style:italic;
  text-shadow:0 0 28px rgba(0,229,199,.5);
  line-height:1;
  padding-top:8px;
  animation: ampPulse 2.6s ease-in-out infinite;
}
@keyframes ampPulse{
  0%,100%{ transform:scale(1); text-shadow:0 0 22px rgba(0,229,199,.45); }
  50%   { transform:scale(1.08); text-shadow:0 0 44px rgba(0,229,199,.85); }
}
/* 모바일에서는 세로 스택 */
@media (max-width: 760px){
  .scale-row.scale-row-v2{ grid-template-columns: 1fr; gap:18px; }
  .scale-row-v2 .sc-txt-l, .scale-row-v2 .sc-txt-r{ padding-top:0; }
  .scale-row-v2 .sc-amp{ font-size:64px; }
}
/* 기존 scale-arrow 스타일 무효화 */
.scale-arrow{ display:none !important; }

/* ---------- [p14] CTA : 우측 X 삭제 + 중앙 정렬·중앙 배치 ---------- */
.cta-sec .cta-x{ display:none !important; }
.cta-sec{ text-align:center; }
.cta-sec .container{ max-width:900px; margin-left:auto; margin-right:auto; }
.cta-sec .form-card, .cta-sec .proof-box{ margin-left:auto; margin-right:auto; }
