/* =========================================================
   LUEN — Korea × Japan Creator Marketing
   Single-file corporate website · evidence-first V2
   ========================================================= */

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

:root{
  --bg:#0d0805;
  --bg-2:#130c08;
  --surface:#1a100b;
  --surface-2:#21140e;
  --surface-3:#2b1a11;
  --line:rgba(248,229,207,.12);
  --line-strong:rgba(248,229,207,.22);
  --orange:#f47d35;
  --orange-2:#ff9b5d;
  --orange-soft:rgba(244,125,53,.14);
  --cream:#f8e5cf;
  --cream-2:#efe0d0;
  --ink:#18100b;
  --text:#f7eadc;
  --muted:#b3a295;
  --muted-2:#8f7d71;
  --white:#fffaf4;
  --shadow:0 28px 90px rgba(0,0,0,.28);
  --radius:24px;
  --max:1240px;
}

html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--text);
  font-family:"Pretendard","Noto Sans JP",sans-serif;
  font-weight:400;
  line-height:1.65;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:999;
  pointer-events:none;
  opacity:.025;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
::selection{background:var(--orange);color:var(--bg)}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
button{border:0}
img{max-width:100%;display:block}
[id]{scroll-margin-top:84px}
.container{width:min(var(--max),calc(100% - 96px));margin:0 auto}

.eyebrow{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--orange-2);
  font:600 11px/1 "Inter","Pretendard",sans-serif;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin-bottom:22px;
}
.eyebrow::before{content:"";width:28px;height:1px;background:var(--orange)}
.section-title{
  font-size:clamp(34px,4.5vw,64px);
  line-height:1.08;
  letter-spacing:-.045em;
  font-weight:700;
}
.section-title em{font-style:normal;color:var(--orange)}
.section-copy{
  margin-top:24px;
  max-width:650px;
  color:var(--muted);
  font-size:15px;
  line-height:1.95;
}

.sr{opacity:0;transform:translateY(24px);transition:opacity .75s ease,transform .75s ease}
.sr.in{opacity:1;transform:none}
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}

.btn{
  min-height:50px;
  padding:0 28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.01em;
  transition:transform .2s ease,background .2s ease,border-color .2s ease,color .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--orange);color:#1a0c04}
.btn-primary:hover{background:var(--orange-2)}
.btn-secondary{border:1px solid var(--line-strong);color:var(--cream);background:rgba(255,255,255,.015)}
.btn-secondary:hover{border-color:var(--orange);color:var(--orange-2)}




/* TOP STRIP */
.top-strip{
  position:relative;
  z-index:80;
  border-bottom:1px solid var(--line);
  background:#090503;
}
.top-strip .container{
  min-height:36px;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:var(--muted);
  font:600 10px/1.4 "Inter","Pretendard",sans-serif;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.top-strip b{color:var(--orange-2);font-weight:700}

/* NAV */
nav{
  position:sticky;top:0;z-index:90;
  height:76px;
  border-bottom:1px solid transparent;
  transition:.25s ease;
}
nav.scrolled{
  background:rgba(13,8,5,.9);
  border-color:var(--line);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
}
.nav-inner{
  width:min(var(--max),calc(100% - 96px));
  height:100%;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;gap:28px;
}
.logo{
  display:inline-flex;align-items:center;gap:10px;
  font:800 22px/1 "Inter",sans-serif;
  letter-spacing:.18em;
}

.nav-links{display:flex;align-items:center;gap:30px;list-style:none}
.nav-links a{
  color:var(--muted);
  font-size:12px;font-weight:600;
  transition:color .2s ease;
}
.nav-links a:hover{color:var(--cream)}
.nav-actions{display:flex;align-items:center;gap:10px}
.nav-contact{
  min-height:40px;padding:0 18px;border:1px solid var(--line-strong);
  border-radius:999px;display:inline-flex;align-items:center;
  font-size:11px;font-weight:700;color:var(--cream);
}
.nav-contact:hover{border-color:var(--orange);color:var(--orange-2)}
.hamburger{display:none;width:42px;height:42px;border:1px solid var(--line);border-radius:50%;background:transparent;cursor:pointer}
.hamburger span{display:block;width:17px;height:1px;background:var(--cream);margin:5px auto}
.mobile-menu{
  position:fixed;inset:0;z-index:120;background:rgba(13,8,5,.98);
  display:none;flex-direction:column;justify-content:center;align-items:center;gap:26px;
}
.mobile-menu.open{display:flex}
.mobile-menu a{font-size:28px;font-weight:700}
.mobile-close{
  position:absolute;right:26px;top:22px;width:46px;height:46px;
  border-radius:50%;background:transparent;border:1px solid var(--line);
  color:var(--cream);font-size:24px;cursor:pointer;
}

/* HERO */
.hero{
  min-height:calc(100vh - 112px);
  padding:88px 0 80px;
  display:flex;align-items:center;
  position:relative;overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;inset:-10%;
  background:
    radial-gradient(circle at 73% 38%,rgba(244,125,53,.18),transparent 23%),
    radial-gradient(circle at 20% 75%,rgba(255,155,93,.08),transparent 24%);
  pointer-events:none;
}
.hero-grid{
  position:absolute;inset:0;opacity:.18;
  background-image:
    linear-gradient(var(--line) 1px,transparent 1px),
    linear-gradient(90deg,var(--line) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(to bottom,transparent 0,#000 20%,#000 75%,transparent 100%);
}
.hero-layout{
  position:relative;z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1.14fr) minmax(380px,.86fr);
  gap:70px;align-items:center;
}
.hero-kicker{
  color:var(--orange-2);
  font:600 11px/1.4 "Inter","Pretendard",sans-serif;
  letter-spacing:.18em;text-transform:uppercase;
  margin-bottom:30px;
}
.hero h1{
  font-size:clamp(46px,6.2vw,88px);
  line-height:.99;
  letter-spacing:-.06em;
  font-weight:700;
}
.hero h1 span{display:block}
.hero h1 .line-2{color:var(--orange)}
.hero-desc{
  margin-top:32px;
  max-width:630px;
  font-size:16px;
  line-height:1.95;
  color:var(--muted);
}
.hero-desc strong{color:var(--cream);font-weight:600}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:34px}
.hero-meta{
  margin-top:42px;
  display:flex;gap:22px;flex-wrap:wrap;
  font:600 10px/1 "Inter","Pretendard",sans-serif;
  letter-spacing:.14em;text-transform:uppercase;color:var(--muted-2);
}
.hero-meta span{display:flex;align-items:center;gap:9px}
.hero-meta i{width:5px;height:5px;border-radius:50%;background:var(--orange);display:block}




.market-node{
  position:absolute;
  width:180px;
  padding:18px;
  background:rgba(13,8,5,.82);
  border:1px solid var(--line-strong);
  border-radius:18px;
  backdrop-filter:blur(10px);
}
.market-node h3{font:700 14px/1.2 "Inter","Pretendard",sans-serif;margin-bottom:10px}
.market-node p{font-size:11px;color:var(--muted);line-height:1.6}









/* MARQUEE */
.marquee{border-block:1px solid var(--line);background:var(--bg-2);overflow:hidden}
.marquee-track{display:flex;width:max-content;animation:marquee 30s linear infinite;padding:13px 0}
.marquee-track span{
  padding:0 26px;
  color:var(--muted);
  font:600 10px/1 "Inter","Pretendard",sans-serif;
  letter-spacing:.16em;text-transform:uppercase;
}
.marquee-track b{color:var(--orange);font-weight:700}
@keyframes marquee{to{transform:translateX(-50%)}}

/* IDENTITY */
.identity{padding:132px 0;background:var(--bg)}

.identity-statement{
  font-size:clamp(32px,4vw,56px);
  line-height:1.18;letter-spacing:-.04em;font-weight:600;
}
.identity-statement em{font-style:normal;color:var(--orange)}









/* MARKET PLATFORM */
.market-section{
  padding:132px 0;
  background:var(--cream);
  color:var(--ink);
}
.market-section .eyebrow{color:#a74610}
.market-section .eyebrow::before{background:#bd4f13}
.market-section .section-copy{color:#6c5c50}












/* YOUTUBE */
.youtube-section{padding:132px 0;background:var(--bg-2)}




















/* SERVICES */
.services{padding:132px 0;background:var(--bg)}








/* CASE STUDIES */
.work{padding:132px 0;background:var(--surface)}
.work-head{display:flex;align-items:end;justify-content:space-between;gap:30px}
.work-head .section-copy{margin-top:0;max-width:390px}
.case-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px;margin-top:58px}
.case-card{
  border-radius:24px;overflow:hidden;background:var(--bg);
  border:1px solid var(--line);
  transition:transform .25s ease,border-color .25s ease;
}
.case-card:hover{transform:translateY(-5px);border-color:rgba(244,125,53,.44)}




.case-body{padding:28px 30px 30px}


.case-desc{font-size:13px;color:var(--muted);line-height:1.85;margin-top:12px}



/* PROCESS */
.process{padding:132px 0;background:var(--bg)}







/* FAQ */
.faq{padding:132px 0;background:var(--bg-2)}
.faq-layout{display:grid;grid-template-columns:.66fr 1.34fr;gap:80px}
.faq-list{border-top:1px solid var(--line)}
.faq-item{border-bottom:1px solid var(--line)}
.faq-q{
  width:100%;min-height:82px;padding:0 4px;
  background:transparent;color:var(--cream);
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  text-align:left;cursor:pointer;font-size:15px;font-weight:600;
}
.faq-icon{font-size:24px;color:var(--orange);font-weight:400;transition:transform .25s ease}
.faq-item.open .faq-icon{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease}
.faq-a p{padding:0 54px 26px 0;color:var(--muted);font-size:13px;line-height:1.9}

/* CONTACT */
.contact{
  padding:132px 0;
  background:var(--cream);
  color:var(--ink);
}
.contact .eyebrow{color:#a74610}.contact .eyebrow::before{background:#bd4f13}
.contact-layout{display:grid;grid-template-columns:.8fr 1.2fr;gap:90px;align-items:start}
.contact-copy{margin-top:24px;color:#6e5d50;font-size:14px;line-height:1.9}



.contact-form{
  background:#fff9f2;border:1px solid rgba(24,16,11,.12);
  border-radius:28px;padding:34px;
}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field{display:flex;flex-direction:column;gap:8px}
.field.full{grid-column:1/-1}
.field label{font-size:11px;font-weight:700;color:#6d5b4e}
.field input,.field select,.field textarea{
  width:100%;border:1px solid rgba(24,16,11,.15);background:#fff;
  border-radius:12px;padding:13px 14px;color:#1a100b;outline:none;
  transition:border-color .2s ease,box-shadow .2s ease;
}
.field textarea{min-height:130px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{
  border-color:var(--orange);box-shadow:0 0 0 3px rgba(244,125,53,.12);
}

.form-submit{margin-top:20px;width:100%;cursor:pointer}
.copy-status{font-size:11px;color:#a74610;min-height:20px;margin-top:10px}

/* FOOTER */
footer{padding:40px 0 36px;background:#090503;border-top:1px solid var(--line)}
.footer-top{display:flex;justify-content:space-between;align-items:flex-start;gap:40px}
.footer-brand .logo{font-size:18px}
.footer-brand p{font-size:11px;color:var(--muted-2);margin-top:12px;line-height:1.7}
.footer-links{display:flex;gap:24px;flex-wrap:wrap}
.footer-links a{font-size:11px;color:var(--muted)}
.footer-links a:hover{color:var(--orange-2)}
.footer-bottom{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;margin-top:34px;padding-top:20px;border-top:1px solid var(--line)}
.footer-bottom p{font:500 10px/1.5 "Inter","Pretendard",sans-serif;color:#695b52;letter-spacing:.04em}

/* FLOAT CTA */
.float-cta{
  position:fixed;right:24px;bottom:24px;z-index:75;
  width:58px;height:58px;border-radius:50%;
  background:var(--orange);color:#211009;
  display:grid;place-items:center;
  font-size:21px;font-weight:700;
  box-shadow:0 14px 40px rgba(0,0,0,.3);
  opacity:0;transform:translateY(12px);pointer-events:none;
  transition:.25s ease;
}
.float-cta.show{opacity:1;transform:none;pointer-events:auto}
.float-cta:hover{background:var(--orange-2);transform:translateY(-2px)}


/* =========================================================
   V1 REFINEMENT — Premium Tech Motion System
   V1의 구조와 컬러는 유지하고, 미세한 모션·빛·깊이만 강화
   ========================================================= */

/* scroll progress: 눈에 띄지 않게 현재 위치를 보여주는 2px 시스템 라인 */
.scroll-progress{
  position:fixed;left:0;top:0;z-index:150;width:100%;height:2px;
  transform:scaleX(0);transform-origin:left center;
  background:linear-gradient(90deg,var(--orange),var(--orange-2),var(--cream));
  box-shadow:0 0 14px rgba(244,125,53,.35);
  pointer-events:none;
}

/* global buttons: 과도한 네온 대신 얇은 반사광 */
.btn{position:relative;overflow:hidden;isolation:isolate}
.btn::after{
  content:"";position:absolute;inset:-60% auto -60% -35%;width:28%;
  transform:skewX(-18deg) translateX(-260%);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.34),transparent);
  transition:transform .65s cubic-bezier(.22,.61,.36,1);z-index:-1;
}
.btn:hover::after{transform:skewX(-18deg) translateX(620%)}
.btn-primary{box-shadow:0 10px 34px rgba(244,125,53,.12)}

/* HERO 강조 문구 — 브라우저별 background-clip 이슈 없이 항상 표시
   주의: animation을 끄지 않는다. 공통 heroLineReveal 애니메이션이 opacity:0을 해제해야 함. */
.hero h1 .line-2{
  color:#F47D35 !important;
  background:none !important;
  -webkit-background-clip:initial !important;
  background-clip:initial !important;
  -webkit-text-fill-color:#F47D35 !important;
  letter-spacing:-0.02em !important;
}


.hero-kicker{display:flex;align-items:center;gap:10px}
.hero-kicker::before{
  content:"";width:6px;height:6px;border-radius:50%;background:var(--orange);
  box-shadow:0 0 0 5px rgba(244,125,53,.09),0 0 18px rgba(244,125,53,.38);
  animation:statusPulse 2.4s ease-in-out infinite;
}
@keyframes statusPulse{50%{opacity:.45;transform:scale(.78)}}

/* network visual: 움직임보다 구조와 깊이감에 집중한 정적인 프리미엄 표현 */










.market-node{z-index:4;box-shadow:0 18px 50px rgba(0,0,0,.22);transition:transform .26s ease,border-color .26s ease,background .26s ease}









/* premium card language: 모든 주요 카드에 같은 인터랙션 문법을 적용 */
.case-card{isolation:isolate}








/* light market cards: 흰 면에서도 테크 무드가 이어지도록 얇은 좌표망 추가 */








/* case cards: 영상 콘텐츠가 핵심 자산이라는 인상을 강화 */
.case-card{box-shadow:0 18px 55px rgba(0,0,0,.12)}

.case-card:hover{box-shadow:0 30px 86px rgba(0,0,0,.24),0 0 0 1px rgba(244,125,53,.04) inset}



/* process: 마우스가 올라간 단계만 시스템 경로처럼 점등 */





/* nav / top strip: LIVE 상태감을 아주 약하게 추가 */
.top-strip .container::before{
  content:"";width:5px;height:5px;border-radius:50%;background:var(--orange);margin-right:12px;
  box-shadow:0 0 10px rgba(244,125,53,.55);animation:statusPulse 2.5s ease-in-out infinite;
}
nav.scrolled{box-shadow:0 18px 45px rgba(0,0,0,.14)}

/* mobile에서는 3D tilt/스캔 효과를 억제해 안정성과 가독성 우선 */
@media(max-width:820px){
  
  .case-card:hover{transform:none}
}

/* Editorial headline grouping: keep each requested phrase on one line when space allows. */
.title-two-line > span{
  display:inline-block;
  white-space:nowrap;
  max-width:100%;
}

@media(max-width:640px){
  .section-title{font-size:clamp(30px,9vw,42px);line-height:1.12}
  .identity-statement{font-size:clamp(30px,9vw,42px);line-height:1.2}
  .title-two-line > span{white-space:normal}
}

/* FOCUS & REDUCED MOTION */
:focus-visible{outline:2px solid var(--orange-2);outline-offset:3px}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation:none!important;transition:none!important}
  .sr{opacity:1;transform:none}
}

/* RESPONSIVE */
@media(max-width:1100px){
  .container,.nav-inner{width:min(100% - 56px,var(--max))}
  .hero-layout{grid-template-columns:1fr;gap:50px}
  
  .faq-layout,.contact-layout{grid-template-columns:1fr;gap:48px}
  
  
  
  
}
@media(max-width:820px){
  .nav-links,.nav-contact{display:none}
  .hamburger{display:block}
  .case-grid{grid-template-columns:1fr}
  
  
  .work-head{align-items:flex-start;flex-direction:column}
  .work-head .section-copy{max-width:650px}
}
@media(max-width:640px){
  .container,.nav-inner{width:calc(100% - 36px)}
  nav{height:68px}
  .hero{padding:64px 0 56px;min-height:auto}
  .hero h1{font-size:clamp(40px,12.5vw,58px)}
  .hero-desc{font-size:14px}
  
  .market-node{width:150px;padding:14px}
  
  
  
  .identity,.market-section,.youtube-section,.services,.work,.process,.faq,.contact{padding:92px 0}
  
  
  
  .case-body{padding:24px}
  
  
  .form-grid{grid-template-columns:1fr}
  .field.full{grid-column:auto}
  .contact-form{padding:24px}
  .footer-top{flex-direction:column}
  .float-cta{right:16px;bottom:16px}
}


/* ── TYPOGRAPHY FLOW REFINEMENT ─────────────────────────────── */
/* Korean/Japanese copy reads more naturally when phrases are kept together. */
body{
  word-break:keep-all;
  overflow-wrap:break-word;
}

h1,h2,h3,h4,.section-title,.identity-statement{
  word-break:keep-all;
  overflow-wrap:normal;
  text-wrap:balance;
}

p,.hero-desc,.section-copy,.case-desc,.faq-a p,.contact-copy{
  word-break:keep-all;
  overflow-wrap:break-word;
  text-wrap:pretty;
}

/* Keep intentional editorial line breaks in major section headings. */
.section-title br,
.identity-statement br{
  display:block;
}

.hero-desc{
  max-width:620px;
  line-height:1.92;
}

.section-copy{
  max-width:670px;
  line-height:1.9;
}











.case-desc{
  line-height:1.9;
}

.field label{
  word-break:keep-all;
  text-wrap:pretty;
}

@media(max-width:768px){
  .section-title br,
  .identity-statement br{
    display:block;
  }
  
  
  
}


/* =========================================================
   VISUAL IMPACT PREVIEW — CREATIP에서 참고한 '반복 타이포 / 프로젝트 인덱스 / 섹션 스케일'을
   LUEN의 기존 브라운·오렌지 톤과 콘텐츠에 맞게 재해석한 데모.
   ========================================================= */

/* 1) HERO — 같은 문구, 등장 방식만 에디토리얼하게 */
.hero h1{overflow:visible}
.hero h1 > span{
  opacity:0;
  transform:translateY(42px);
  animation:heroLineReveal .9s cubic-bezier(.16,1,.3,1) forwards;
  will-change:transform,opacity;
}
.hero h1 > span:nth-child(1){animation-delay:.08s}
.hero h1 > span:nth-child(2){animation-delay:.18s}
.hero h1 > span:nth-child(3){animation-delay:.28s}
.hero-desc,.hero-cta,.hero-meta{
  opacity:0;transform:translateY(20px);
  animation:heroSubReveal .8s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-desc{animation-delay:.40s}.hero-cta{animation-delay:.50s}.hero-meta{animation-delay:.60s}
@keyframes heroLineReveal{to{opacity:1;transform:translateY(0)}}
@keyframes heroSubReveal{to{opacity:1;transform:translateY(0)}}

/* 2) FULL-WIDTH IMPACT RAIL — 서비스 키워드를 큰 비주얼 자산처럼 사용 */












@keyframes impactLeft{to{transform:translateX(-50%)}}
@keyframes impactRight{from{transform:translateX(-50%)}to{transform:translateX(0)}}

/* 3) 섹션마다 큰 워터마크 타이포 — 화면 전환 감각 강화 */
.identity,.market-section,.youtube-section,.work{position:relative;overflow:hidden}
.identity::before,.market-section::before,.youtube-section::before,.work::before{
  position:absolute;right:-.03em;top:54px;
  font:800 clamp(76px,13vw,190px)/.8 "Inter","Pretendard",sans-serif;
  letter-spacing:-.065em;pointer-events:none;user-select:none;z-index:0;
}
.identity::before{content:"IDENTITY";color:rgba(248,229,207,.025)}
.market-section::before{content:"PLATFORM";color:rgba(24,16,11,.035)}
.youtube-section::before{content:"YOUTUBE";color:rgba(248,229,207,.025)}
.work::before{content:"WORK";color:rgba(248,229,207,.035)}
.identity>.container,.market-section>.container,.youtube-section>.container,.work>.container{position:relative;z-index:1}

/* 4) MARKET — 정보는 그대로, 큰 타이포 인덱스를 뒤에 배치 */






/* 5) SELECTED WORK — 같은 4개 사례를 전형적인 2x2 카드 대신 에디토리얼 모자이크로 */
@media(min-width:821px){
  .case-grid{grid-template-columns:repeat(12,1fr);gap:24px;align-items:start}
  .case-card:nth-child(1){grid-column:span 7}
  .case-card:nth-child(2){grid-column:span 5;margin-top:86px}
  .case-card:nth-child(3){grid-column:span 5}
  .case-card:nth-child(4){grid-column:span 7;margin-top:-34px}
  
  
}
.case-card{position:relative}
.case-card::after{
  position:absolute;right:18px;top:14px;z-index:4;
  font:800 11px/1 "Inter",sans-serif;letter-spacing:.16em;color:rgba(255,250,244,.72);
  background:rgba(13,8,5,.62);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  border:1px solid rgba(248,229,207,.12);border-radius:999px;padding:8px 10px;
}
.case-card:nth-child(1)::after{content:"PROJECT 01"}
.case-card:nth-child(2)::after{content:"PROJECT 02"}
.case-card:nth-child(3)::after{content:"PROJECT 03"}
.case-card:nth-child(4)::after{content:"PROJECT 04"}

/* 6) 프로젝트 이미지 위에 아주 약한 스캔라인 — hover 때만 보임 */


@keyframes caseScan{to{top:110%}}

/* 7) 헤드라인 아래 짧은 시스템 라인 — 섹션들이 하나의 디자인 언어로 이어짐 */
.work-head::after{
  content:"";position:absolute;left:0;bottom:-32px;width:72px;height:2px;
  background:linear-gradient(90deg,var(--orange),transparent);
}
.work-head{position:relative}

@media(max-width:820px){
  
  
  .identity::before,.market-section::before,.youtube-section::before,.work::before{top:34px;font-size:27vw}
  
}

@media (prefers-reduced-motion:reduce){
  .hero h1 > span,.hero-desc,.hero-cta,.hero-meta{opacity:1;transform:none;animation:none}
  
}


/* ── SELECTED WORK / DUAL CAMPAIGN MARQUEE ────────────────── */
/* Korea one row + Japan one row. Temporary thumbnails are intentionally duplicated
   and can later be replaced one-by-one without changing the layout. */
.work{padding-bottom:138px}




.work-lane-code{
  display:block;margin-bottom:10px;
  font:700 9px/1 "Inter","Pretendard",sans-serif;
  letter-spacing:.18em;color:var(--orange);text-transform:uppercase;
}








@keyframes workMarqueeLeft{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(calc(-50% - 9px),0,0)}
}








@keyframes workSheen{to{transform:skewX(-16deg) translateX(620%)}}







/* The previous 2x2/mosaic work-card rules stay in the stylesheet for backwards
   compatibility, but the new Selected Work markup no longer uses .case-grid/.case-card. */
@media(max-width:820px){
  .work{padding-bottom:104px}
  
  
  
  
  
  
  
  
  
  
  
  @keyframes workMarqueeLeft{
    from{transform:translate3d(0,0,0)}
    to{transform:translate3d(calc(-50% - 6px),0,0)}
  }
  
}




/* ============================================================
   LUEN V2 — Strategic redesign
   Evidence-first structure / premium editorial rhythm
   ============================================================ */
.hero h1 .line-2{
  color:var(--orange)!important;
  -webkit-text-fill-color:var(--orange)!important;
  background:none!important;
  letter-spacing:-.055em!important;
}
.hero-desc{max-width:620px}

.proof-strip{
  background:#0b0604;
  border-block:1px solid var(--line);
}
.proof-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  padding-block:0;
}
.proof-item{
  min-height:190px;padding:34px 28px 30px;
  border-right:1px solid var(--line);position:relative;
  display:flex;flex-direction:column;justify-content:flex-end;
}
.proof-item:first-child{border-left:1px solid var(--line)}
.proof-item::before{
  content:"";position:absolute;left:28px;top:30px;width:7px;height:7px;
  border-radius:50%;background:var(--orange);box-shadow:0 0 18px rgba(244,125,53,.35);
}
.proof-kicker{
  position:absolute;top:29px;left:48px;
  font:700 9px/1 "Inter",sans-serif;letter-spacing:.18em;color:var(--muted-2);
}
.proof-item strong{font:750 clamp(18px,2vw,27px)/1.05 "Inter","Pretendard",sans-serif;letter-spacing:-.035em;color:var(--cream)}
.proof-item p{margin-top:11px;font-size:12px;line-height:1.75;color:var(--muted-2);max-width:250px}

/* Move work forward and make it feel like evidence, not another information section */
.work{background:#120906;padding-top:116px}
.work::before{content:"ARCHIVE";color:rgba(248,229,207,.025)}
.work-head{padding-bottom:2px}
.work-head .section-title{max-width:760px}
.work-lane-code{color:var(--orange)!important}


/* Identity: one memorable signature diagram instead of repeated cards */
.identity{padding-top:146px}
.identity-top{max-width:820px}
.identity-signature{
  display:grid;grid-template-columns:1fr minmax(220px,.72fr) 1fr;
  align-items:center;margin-top:78px;min-height:330px;
  border-block:1px solid var(--line);
}
.identity-side{padding:48px 42px}
.identity-side strong{display:block;margin-top:18px;font-size:clamp(29px,3.4vw,48px);line-height:1.06;letter-spacing:-.05em}
.identity-side p{margin-top:20px;color:var(--muted-2);font-size:13px;line-height:1.8}
.signature-label{font:700 9px/1 "Inter",sans-serif;letter-spacing:.19em;color:var(--orange)}
.identity-audience{text-align:right}
.identity-center{position:relative;height:100%;display:flex;align-items:center;justify-content:center}
.identity-line{position:absolute;top:50%;height:1px;background:linear-gradient(90deg,transparent,var(--orange),transparent);opacity:.55;width:48%}
.identity-line.left{right:62%}.identity-line.right{left:62%}
.identity-core{
  width:154px;height:154px;border:1px solid rgba(244,125,53,.55);border-radius:50%;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  background:radial-gradient(circle at 50% 45%,rgba(244,125,53,.14),transparent 65%),var(--bg);
  box-shadow:0 0 55px rgba(244,125,53,.05);position:relative;z-index:2;
}
.identity-core span{font:800 24px/1 "Inter",sans-serif;letter-spacing:.12em;color:var(--orange)}
.identity-core small{margin-top:12px;font:700 8px/1 "Inter",sans-serif;letter-spacing:.19em;color:var(--muted-2)}









/* Platform section: keep the strong light transition but improve hierarchy */




/* End-to-end system replaces generic six-card grid */












/* Contact should feel finished, not like a prototype */
.contact-form{box-shadow:0 34px 90px rgba(0,0,0,.15)}

@media(max-width:1100px){
  .proof-grid{grid-template-columns:repeat(2,1fr)}
  .proof-item:nth-child(2){border-right:1px solid var(--line)}
  .proof-item:nth-child(n/**/+3){border-top:1px solid var(--line)}
  
  
  
  .identity-signature{grid-template-columns:1fr 210px 1fr}
}
@media(max-width:768px){
  .proof-grid{grid-template-columns:1fr}
  .proof-item{min-height:145px;border-left:1px solid var(--line);border-right:1px solid var(--line);border-top:1px solid var(--line)}
  .proof-item:first-child{border-top:0}
  .identity-signature{grid-template-columns:1fr;margin-top:54px}
  .identity-side{padding:38px 24px;text-align:left}
  .identity-audience{text-align:left;border-top:1px solid var(--line)}
  .identity-center{height:190px;border-top:1px solid var(--line)}
  .identity-line{display:none}
  .identity-core{width:126px;height:126px}
  
  
  
  
  
  
  
  
  
  
  
}



/* ============================================================
   LUEN V2.1 — real thumbnail proof + short-form preview
   ============================================================ */
.logo{gap:8px;position:relative}
.logo-word{font:850 22px/1 "Inter",sans-serif;letter-spacing:.20em;color:var(--cream)}
.logo-signal{width:7px;height:7px;border-radius:50%;background:var(--orange);box-shadow:0 0 0 5px rgba(244,125,53,.08);transform:translateY(-5px)}
.footer-brand .logo-word{font-size:19px}
.footer-brand .logo-signal{width:6px;height:6px}

.proof-grid-numbers .proof-item strong{font-size:clamp(34px,4vw,58px);color:var(--orange-2);letter-spacing:-.065em}












































.brand-wall{padding:74px 0 80px;background:#090503;border-block:1px solid var(--line);overflow:hidden}
.brand-wall-head{display:grid;grid-template-columns:1fr 1fr;align-items:end;gap:60px;margin-bottom:34px}
.brand-wall-head h3{font:750 clamp(24px,3vw,38px)/1.1 "Pretendard","Inter",sans-serif;color:var(--cream);letter-spacing:-.04em}
.brand-wall-head p{font-size:10px;line-height:1.7;color:#735f52;max-width:470px}
.brand-viewport{overflow:hidden;-webkit-mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent)}
.brand-track{display:flex;width:max-content;gap:14px;animation:brandLoop 34s linear infinite}
.brand-set{display:flex;gap:14px;flex:0 0 auto}
@keyframes brandLoop{to{transform:translateX(calc(-50% - 7px))}}











@media(max-width:1020px){
  .brand-wall-head{grid-template-columns:1fr;gap:22px}
  
}
@media(max-width:820px){
  
  
  
  .brand-wall{padding:60px 0 66px}
}

@media(prefers-reduced-motion:reduce){.brand-track{animation:none}.brand-viewport{overflow-x:auto;-webkit-mask-image:none;mask-image:none}}


/* ============================================================
   LUEN V2.2 VERIFIED SAFE PATCH
   original PROOF / IDENTITY CSS preserved intact
   ============================================================ */
.marquee{overflow:hidden}
.marquee-track{animation:none!important;display:flex;width:max-content;padding:13px 0;will-change:transform}
.marquee-set{display:flex;flex:0 0 auto;white-space:nowrap}
.portfolio{margin-top:76px;display:grid;gap:70px}
.portfolio-lane{position:relative}
.portfolio-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:22px;border-top:1px solid var(--line);padding-top:18px}
.portfolio-head span{display:block;margin-bottom:10px;font:700 9px/1 "Inter","Pretendard",sans-serif;letter-spacing:.18em;color:var(--orange);text-transform:uppercase}
.portfolio-head h3{font:700 clamp(24px,2.2vw,34px)/1 "Inter","Pretendard",sans-serif;letter-spacing:-.035em;color:var(--cream)}
.portfolio-head small{font:600 9px/1 "Inter","Pretendard",sans-serif;letter-spacing:.12em;color:var(--muted-2);text-transform:uppercase}
.portfolio-viewport{position:relative;overflow:hidden;width:100%;padding:2px 0 8px}
.portfolio-viewport::before,.portfolio-viewport::after{content:"";position:absolute;top:0;bottom:0;width:min(7vw,110px);z-index:4;pointer-events:none}
.portfolio-viewport::before{left:0;background:linear-gradient(90deg,#120906 0,rgba(18,9,6,0) 100%)}
.portfolio-viewport::after{right:0;background:linear-gradient(270deg,#120906 0,rgba(18,9,6,0) 100%)}
.portfolio-track{display:flex;width:max-content;will-change:transform}
.portfolio-set{display:flex;flex:0 0 auto;gap:18px;padding-right:18px}
.portfolio-card{position:relative;flex:0 0 clamp(300px,29vw,430px);aspect-ratio:16/9;border-radius:18px;overflow:hidden;border:1px solid rgba(248,229,207,.11);background:#1d100a;box-shadow:0 14px 42px rgba(0,0,0,.12);transform:translateZ(0);transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease}
.portfolio-card.portrait{flex-basis:clamp(185px,15.2vw,240px);aspect-ratio:9/16;border-radius:20px}
.portfolio-card img{width:100%;height:100%;object-fit:cover;display:block;filter:saturate(.82) contrast(.96) brightness(.9);transition:transform .5s cubic-bezier(.2,.7,.2,1),filter .4s ease}
.portfolio-card::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(10,5,2,.02) 25%,rgba(10,5,2,.68) 100%);pointer-events:none}
.portfolio-card:hover{transform:translateY(-4px);border-color:rgba(244,125,53,.34);box-shadow:0 22px 58px rgba(0,0,0,.2)}
.portfolio-card:hover img{transform:scale(1.03);filter:saturate(.95) contrast(.98) brightness(.96)}
.portfolio-country{position:absolute;top:14px;left:14px;z-index:3;display:inline-flex;align-items:center;justify-content:center;min-width:46px;height:24px;padding:0 10px;border-radius:999px;background:rgba(10,5,2,.68);border:1px solid rgba(248,229,207,.18);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);font:800 9px/1 "Inter",sans-serif;letter-spacing:.14em;color:var(--cream)}
.portfolio-meta{position:absolute;left:14px;right:14px;bottom:13px;z-index:3;display:flex;justify-content:space-between;align-items:flex-end;gap:12px}
.portfolio-meta span{font:700 9px/1 "Inter",sans-serif;letter-spacing:.11em;color:var(--orange-2);text-transform:uppercase}
.portfolio-meta b{font:700 9px/1 "Inter",sans-serif;letter-spacing:.05em;color:var(--cream);text-align:right}
@media(max-width:820px){
  .portfolio{margin-top:58px;gap:52px}.portfolio-head{align-items:flex-start;margin-bottom:18px}.portfolio-head small{display:none}
  .portfolio-set{gap:12px;padding-right:12px}.portfolio-card{flex-basis:260px;border-radius:14px}.portfolio-card.portrait{flex-basis:164px;border-radius:16px}
  .portfolio-viewport::before,.portfolio-viewport::after{width:34px}
}
@media(max-width:480px){.portfolio-card{flex-basis:224px}.portfolio-card.portrait{flex-basis:148px}.portfolio-head h3{font-size:23px}}
@media(prefers-reduced-motion:reduce){.portfolio-viewport,.marquee{overflow-x:auto;scrollbar-width:none}.portfolio-viewport::-webkit-scrollbar,.marquee::-webkit-scrollbar{display:none}}



/* ============================================================
   LUEN V5.1 — hero / proof / identity refinement patch
   ============================================================ */
.hero h1 .line-2{
  letter-spacing:.015em !important;
  padding-right:.04em;
}

/* HERO network visual impact */












@keyframes heroOrbitOuter{
  0%{transform:translate(-50%,-50%) rotate(0deg)}
  100%{transform:translate(-50%,-50%) rotate(360deg)}
}
@keyframes heroOrbitInner{
  0%{transform:translate(-50%,-50%) rotate(0deg)}
  100%{transform:translate(-50%,-50%) rotate(-360deg)}
}
@keyframes linkFlow{
  0%{stroke-dashoffset:0}
  100%{stroke-dashoffset:-12}
}
@keyframes centerPulse{
  0%,100%{transform:scale(.98);opacity:.35}
  50%{transform:scale(1.02);opacity:.8}
}
@keyframes nodeFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}

/* PROOF uniform rhythm */
.proof-grid{
  align-items:stretch;
}
.proof-item{
  min-height:214px;
  padding:74px 28px 32px;
  justify-content:flex-start;
}
.proof-item strong{
  display:block;
  min-height:72px;
  margin:0;
  line-height:.92;
}
.proof-grid-numbers .proof-item strong{
  font-size:clamp(56px,5.4vw,86px);
}
.proof-item p{
  margin-top:10px;
  min-height:44px;
  max-width:290px;
}


/* IDENTITY impact */
.identity-signature{
  position:relative;
  overflow:hidden;
}
.identity-signature::before{
  content:"";
  position:absolute;
  inset:-20% auto -20% -18%;
  width:36%;
  background:linear-gradient(90deg,transparent,rgba(244,125,53,.08),transparent);
  transform:skewX(-18deg) translateX(-180%);
  animation:identitySweep 9s ease-in-out infinite;
  pointer-events:none;
}
.identity-side strong{
  position:relative;
}
.identity-side strong::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-14px;
  width:58px;
  height:2px;
  background:linear-gradient(90deg,var(--orange),transparent);
  opacity:.9;
}
.identity-audience strong::after{
  left:auto;
  right:0;
  background:linear-gradient(270deg,var(--orange),transparent);
}
.identity-core{
  overflow:visible;
  box-shadow:0 0 0 1px rgba(244,125,53,.06) inset,0 0 38px rgba(244,125,53,.08);
}
.identity-core::before,
.identity-core::after{
  content:"";
  position:absolute;
  inset:-16px;
  border-radius:50%;
  border:1px solid rgba(244,125,53,.16);
  opacity:.55;
}
.identity-core::before{animation:identityPulse 4.8s ease-in-out infinite}
.identity-core::after{
  inset:-34px;
  border-color:rgba(244,125,53,.08);
  opacity:.35;
  animation:identityPulse 4.8s ease-in-out infinite 1.8s;
}
.identity-line{
  overflow:hidden;
}
.identity-line::after{
  content:"";
  position:absolute;
  top:0;
  left:-18%;
  width:18%;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(244,125,53,.95),transparent);
  filter:blur(.2px);
  animation:lineSignal 5.5s linear infinite;
}


@keyframes identitySweep{
  0%,18%{transform:skewX(-18deg) translateX(-200%);opacity:0}
  26%,56%{transform:skewX(-18deg) translateX(290%);opacity:1}
  100%{transform:skewX(-18deg) translateX(290%);opacity:0}
}
@keyframes identityPulse{
  0%,100%{transform:scale(.97);opacity:.16}
  50%{transform:scale(1.04);opacity:.6}
}
@keyframes lineSignal{
  0%{left:-18%}
  100%{left:100%}
}

@media(max-width:1100px){
  .proof-item{
    min-height:198px;
  }
}
@media(max-width:767px){
  .hero h1 .line-2{
    letter-spacing:.035em !important;
  }
  .proof-item{
    min-height:unset;
    padding:72px 22px 28px;
  }
  .proof-item strong,
  .proof-item p{
    min-height:unset;
  }
  .identity-signature::before,.identity-core::after{
    display:none;
  }
}



/* ============================================================
   LUEN V6 — focus-driven visual system
   ============================================================ */
.identity{padding-bottom:132px}
.identity-signature{margin-bottom:0}

.market-network-v2{padding:138px 0;background:#0e0805;overflow:hidden}
.market-v2-head,.youtube-v2-head,.case-head,.campaign-v2-head,.process-v2-head{display:grid;grid-template-columns:1.15fr .85fr;gap:72px;align-items:end}
.market-v2-head .section-copy,.youtube-v2-head .section-copy,.case-head .section-copy,.campaign-v2-head .section-copy,.process-v2-head .section-copy{margin:0 0 6px}
.market-map{position:relative;min-height:620px;margin-top:72px;border:1px solid var(--line);border-radius:32px;background:radial-gradient(circle at 50% 50%,rgba(244,125,53,.09),transparent 34%),#0a0604;overflow:hidden}
.market-map-grid{position:absolute;inset:0;opacity:.18;background-image:linear-gradient(rgba(248,229,207,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(248,229,207,.06) 1px,transparent 1px);background-size:52px 52px;mask-image:linear-gradient(to bottom,rgba(0,0,0,.85),rgba(0,0,0,.25))}
.market-map-lines{position:absolute;inset:0;width:100%;height:100%}.market-map-lines path{fill:none;stroke:rgba(244,125,53,.28);stroke-width:1.15;stroke-dasharray:8 10;animation:marketRoute 12s linear infinite}
.market-hub{position:absolute;left:50%;top:50%;width:170px;height:170px;border-radius:50%;transform:translate(-50%,-50%);display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid rgba(244,125,53,.62);background:radial-gradient(circle,rgba(244,125,53,.16),rgba(13,8,5,.96) 66%);box-shadow:0 0 0 18px rgba(244,125,53,.025),0 0 0 38px rgba(244,125,53,.015);z-index:4}
.market-hub::before,.market-hub::after{content:"";position:absolute;inset:-20px;border-radius:50%;border:1px solid rgba(244,125,53,.12);animation:hubPulse 4.6s ease-in-out infinite}.market-hub::after{inset:-42px;animation-delay:1.4s;opacity:.4}
.market-hub span{font:800 27px/1 "Inter",sans-serif;letter-spacing:.14em;color:var(--orange-2)}.market-hub small{margin-top:12px;text-align:center;font:700 7px/1.55 "Inter",sans-serif;letter-spacing:.17em;color:var(--muted-2)}.market-hub i{width:5px;height:5px;border-radius:50%;background:var(--orange);margin-top:12px;box-shadow:0 0 14px var(--orange)}

.platform-node{position:absolute;min-width:126px;padding:13px 15px;border-radius:15px;border:1px solid rgba(248,229,207,.12);background:rgba(13,8,5,.82);color:var(--cream);text-align:left;box-shadow:0 18px 48px rgba(0,0,0,.22);backdrop-filter:blur(9px);transition:.3s ease;animation:nodeBreath 5s ease-in-out infinite}.platform-node b{display:block;font:700 11px/1 "Inter",sans-serif}.platform-node span{display:block;margin-top:7px;font-size:9px;color:var(--muted-2)}.platform-node:hover{transform:translateY(-4px);border-color:rgba(244,125,53,.45);background:rgba(244,125,53,.07)}


.market-map-caption{position:absolute;left:50%;bottom:28px;transform:translateX(-50%);display:flex;gap:9px;font:700 8px/1 "Inter",sans-serif;letter-spacing:.14em;color:var(--muted-2)}.market-map-caption b{color:var(--orange)}
@keyframes marketRoute{to{stroke-dashoffset:-90}}@keyframes hubPulse{50%{transform:scale(1.05);opacity:.72}}@keyframes nodeBreath{50%{box-shadow:0 18px 48px rgba(0,0,0,.22),0 0 0 1px rgba(244,125,53,.06) inset}}

.youtube-v2{padding:144px 0;background:#130b07;overflow:hidden}.yt-action-flow{position:relative;border:1px solid var(--line);border-radius:26px;padding:28px 28px 26px;background:rgba(13,8,5,.52);display:grid;grid-template-columns:1fr;gap:0}.yt-action-flow article{position:relative;padding:20px 18px 20px 54px;border-bottom:1px solid var(--line);z-index:2}.yt-action-flow article:last-child{border-bottom:0}.yt-action-flow article span{position:absolute;left:13px;top:22px;font:700 9px/1 "Inter",sans-serif;color:var(--orange)}.yt-action-flow article b{font:750 14px/1 "Inter",sans-serif;letter-spacing:.1em;color:var(--cream)}.yt-action-flow article p{margin-top:8px;font-size:11px;color:var(--muted-2)}.yt-flow-line{position:absolute;left:47px;top:49px;bottom:49px;width:1px;background:rgba(244,125,53,.15)}.yt-flow-line i{position:absolute;left:-2px;top:0;width:5px;height:34px;border-radius:999px;background:linear-gradient(var(--orange),transparent);animation:flowSignal 4.2s linear infinite}.yt-thesis{display:flex;align-items:center;justify-content:center;gap:22px;margin-top:54px;padding:22px;border-block:1px solid var(--line);font:700 10px/1 "Inter",sans-serif;letter-spacing:.16em;color:var(--muted-2)}.yt-thesis strong{color:var(--orange-2)}.yt-thesis i{color:rgba(244,125,53,.45);font-style:normal}
@keyframes playPulse{50%{transform:scale(1.06);box-shadow:0 0 0 10px rgba(244,125,53,.035)}}@keyframes videoProgress{0%,100%{width:58%}50%{width:78%}}@keyframes flowSignal{to{top:calc(100% - 34px)}}

.guide-proof{padding:144px 0;background:#0d0805;overflow:hidden}.guide-layout{display:grid;grid-template-columns:.82fr 1.18fr;gap:80px;align-items:center}.guide-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:34px}.guide-tags span{padding:9px 11px;border:1px solid var(--line);border-radius:999px;font:700 8px/1 "Inter",sans-serif;letter-spacing:.11em;color:var(--muted-2)}.guide-proof-note{margin-top:44px;padding:20px 22px;border-left:2px solid var(--orange);background:rgba(244,125,53,.035)}.guide-proof-note b{font:700 9px/1 "Inter",sans-serif;letter-spacing:.14em;color:var(--orange)}.guide-proof-note p{margin-top:9px;font-size:12px;color:var(--muted)}.guide-docs{position:relative;min-height:630px;perspective:1200px}.guide-page{position:absolute;width:min(54%,440px);margin:0;padding:11px 11px 36px;background:#f4f0ea;border-radius:8px;box-shadow:0 38px 90px rgba(0,0,0,.38);transition:transform .6s cubic-bezier(.22,.61,.36,1),box-shadow .6s}.guide-page img{display:block;width:100%;height:auto;border-radius:3px}.guide-page figcaption{position:absolute;left:14px;bottom:13px;font:700 8px/1 "Inter",sans-serif;letter-spacing:.11em;color:#6d5547}.page-back{right:7%;top:4%;transform:rotate(5deg) translateZ(-30px)}.page-front{left:7%;top:13%;transform:rotate(-5deg) translateZ(30px)}.guide-docs:hover .page-back{transform:rotate(2deg) translate(24px,6px)}.guide-docs:hover .page-front{transform:rotate(-2deg) translate(-18px,-8px)}.guide-signal{position:absolute;right:4%;bottom:9%;display:flex;gap:6px}.guide-signal span{width:6px;height:6px;border-radius:50%;background:var(--orange);opacity:.22;animation:signalBlink 1.8s ease-in-out infinite}.guide-signal span:nth-child(2){animation-delay:.3s}.guide-signal span:nth-child(3){animation-delay:.6s}@keyframes signalBlink{50%{opacity:1;box-shadow:0 0 14px rgba(244,125,53,.65)}}

.performance-lab{padding:144px 0;background:#120a06;border-block:1px solid var(--line)}.performance-layout{display:grid;grid-template-columns:.72fr 1.28fr;gap:74px;align-items:start}.sample-badge{display:inline-flex;margin-top:30px;padding:8px 10px;border:1px solid rgba(244,125,53,.22);border-radius:999px;font:700 7px/1 "Inter",sans-serif;letter-spacing:.13em;color:rgba(244,125,53,.75)}.performance-dashboard{border:1px solid var(--line);border-radius:26px;overflow:hidden;background:#0b0705}.metric-row{display:grid;grid-template-columns:repeat(4,1fr);border-bottom:1px solid var(--line)}.metric-row article{min-height:146px;padding:24px 20px;border-right:1px solid var(--line)}.metric-row article:last-child{border-right:0}.metric-row span{font:700 7px/1 "Inter",sans-serif;letter-spacing:.13em;color:var(--muted-2)}.metric-row strong{display:block;margin-top:22px;font:800 clamp(26px,3vw,46px)/.95 "Inter",sans-serif;letter-spacing:-.05em;color:var(--orange-2)}.metric-row small{display:block;margin-top:12px;font:600 7px/1 "Inter",sans-serif;letter-spacing:.08em;color:rgba(248,229,207,.38)}.chart-shell{padding:28px 30px 25px}.chart-head{display:flex;justify-content:space-between;gap:16px;font:700 8px/1 "Inter",sans-serif;letter-spacing:.11em;color:var(--muted-2)}.chart-head b{color:rgba(244,125,53,.72)}.signal-chart{width:100%;height:270px;margin-top:18px;overflow:visible}.chart-gridline{fill:none;stroke:rgba(248,229,207,.07);stroke-width:1}.chart-area{fill:url(#chartFill)}.chart-line{fill:none;stroke:var(--orange);stroke-width:3;stroke-linecap:round;stroke-dasharray:1100;stroke-dashoffset:1100;animation:chartDraw 3.8s ease forwards infinite alternate}.signal-chart circle{fill:var(--orange-2);stroke:#120a06;stroke-width:3;filter:drop-shadow(0 0 6px rgba(244,125,53,.5))}.chart-labels{display:flex;justify-content:space-between;font:700 7px/1 "Inter",sans-serif;letter-spacing:.12em;color:var(--muted-2)}@keyframes chartDraw{to{stroke-dashoffset:0}}

.case-studies{padding:148px 0;background:#0d0805}.case-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:18px;margin-top:76px}.case-card{grid-column:span 6;border:1px solid var(--line);border-radius:24px;overflow:hidden;background:#120b07;display:grid;grid-template-columns:44% 56%;min-height:330px;transition:transform .3s ease,border-color .3s ease}.case-card:hover{transform:translateY(-5px);border-color:rgba(244,125,53,.26)}.case-05,.case-06{grid-column:span 6;min-height:290px}.case-image{position:relative;overflow:hidden}.case-image img{width:100%;height:100%;object-fit:cover;filter:saturate(.72) brightness(.74);transition:transform .6s ease}.case-card:hover .case-image img{transform:scale(1.04)}.case-image::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,transparent,rgba(18,11,7,.42))}.case-image>span{position:absolute;left:18px;top:18px;z-index:2;width:34px;height:34px;border-radius:50%;display:grid;place-items:center;border:1px solid rgba(248,229,207,.2);background:rgba(13,8,5,.55);font:700 8px/1 "Inter",sans-serif;color:var(--orange-2)}.case-body{padding:28px 26px 26px;display:flex;flex-direction:column}.case-body>small{font:700 8px/1 "Inter",sans-serif;letter-spacing:.12em;color:var(--orange)}.case-body h3{margin-top:14px;font-size:22px;line-height:1.15;letter-spacing:-.04em}.case-cat{margin-top:8px;font:600 8px/1.4 "Inter",sans-serif;letter-spacing:.08em;color:var(--muted-2)}.case-metric{margin-top:28px;padding-top:20px;border-top:1px solid var(--line)}.case-metric span{display:block;font:700 8px/1 "Inter",sans-serif;letter-spacing:.11em;color:var(--muted-2)}.case-metric strong{display:block;margin-top:8px;font:800 clamp(26px,3vw,43px)/1 "Inter",sans-serif;letter-spacing:-.045em;color:var(--orange-2)}.case-desc{margin-top:auto;padding-top:18px;font-size:11.5px;line-height:1.8;color:var(--muted)}

.campaign-system-v2{padding:145px 0;background:#130b07}.campaign-control{position:relative;display:grid;grid-template-columns:repeat(6,1fr);margin-top:80px;border:1px solid var(--line);border-radius:24px;overflow:hidden;background:#0d0805}.campaign-control article{position:relative;min-height:300px;padding:30px 22px 26px;border-right:1px solid var(--line);z-index:2;transition:background .25s}.campaign-control article:last-child{border-right:0}.campaign-control article:hover{background:rgba(244,125,53,.04)}.campaign-control article i{font:700 9px/1 "Inter",sans-serif;color:var(--orange);font-style:normal}.campaign-control article b{display:block;margin-top:60px;font:750 13px/1 "Inter",sans-serif;letter-spacing:.09em}.campaign-control article p{margin-top:14px;font-size:11px;line-height:1.65;color:var(--muted-2)}.campaign-control article small{position:absolute;left:22px;bottom:24px;font:600 7px/1.45 "Inter",sans-serif;letter-spacing:.09em;color:rgba(244,125,53,.62)}.campaign-rail{position:absolute;left:8.3%;right:8.3%;top:70px;height:1px;background:rgba(244,125,53,.12)}.campaign-rail span{position:absolute;left:0;top:-1px;height:2px;width:28%;background:linear-gradient(90deg,transparent,var(--orange),transparent);animation:railMove 6.5s ease-in-out infinite}.campaign-output{margin-top:26px;padding:18px 22px;border:1px solid var(--line);border-radius:16px;display:flex;align-items:center;justify-content:center;gap:18px;font:700 8px/1 "Inter",sans-serif;letter-spacing:.1em;color:var(--muted-2)}.campaign-output strong{color:var(--orange-2)}.campaign-output i{font-style:normal;color:rgba(244,125,53,.4)}@keyframes railMove{0%,100%{left:-10%}50%{left:82%}}

.client-voice{padding:145px 0;background:#0c0705;border-block:1px solid var(--line)}.voice-layout{display:grid;grid-template-columns:.78fr 1.22fr;gap:74px;align-items:center}.voice-stage{position:relative;min-height:390px;border:1px solid var(--line);border-radius:28px;background:radial-gradient(circle at 80% 20%,rgba(244,125,53,.08),transparent 36%),#120b07;overflow:hidden}.voice-item{position:absolute;inset:0;padding:48px 48px 70px;opacity:0;transform:translateY(14px);pointer-events:none;transition:opacity .55s ease,transform .55s ease}.voice-item.active{opacity:1;transform:none;pointer-events:auto}.voice-item>span{font:700 8px/1 "Inter",sans-serif;letter-spacing:.14em;color:var(--orange)}.voice-item blockquote{margin-top:54px;font-size:clamp(24px,3vw,42px);line-height:1.35;letter-spacing:-.04em;color:var(--cream);font-weight:600}.voice-item p{position:absolute;left:48px;bottom:38px;font:600 8px/1 "Inter",sans-serif;letter-spacing:.12em;color:var(--muted-2)}.voice-dots{position:absolute;right:32px;bottom:32px;display:flex;gap:8px;z-index:5}.voice-dots button{width:7px;height:7px;border:0;border-radius:50%;background:rgba(248,229,207,.18);cursor:pointer}.voice-dots button.active{background:var(--orange);box-shadow:0 0 10px rgba(244,125,53,.55)}

.process-timeline-v2{padding:145px 0;background:#120a06}.timeline-shell{position:relative;display:grid;grid-template-columns:repeat(5,1fr);margin-top:76px;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}.timeline-shell article{position:relative;min-height:230px;padding:42px 24px 28px;border-right:1px solid var(--line)}.timeline-shell article:first-of-type{border-left:1px solid var(--line)}.timeline-shell article>span{font:700 8px/1 "Inter",sans-serif;letter-spacing:.12em;color:var(--orange)}.timeline-shell article b{display:block;margin-top:42px;font-size:16px}.timeline-shell article p{margin-top:13px;font-size:11px;line-height:1.7;color:var(--muted-2)}.timeline-shell article::before{content:"";position:absolute;left:24px;top:-4px;width:7px;height:7px;border-radius:50%;background:var(--orange);box-shadow:0 0 0 8px rgba(244,125,53,.035)}.timeline-axis{position:absolute;left:0;right:0;top:0;height:1px}.timeline-axis span{position:absolute;left:-8%;top:-1px;width:18%;height:2px;background:linear-gradient(90deg,transparent,var(--orange),transparent);animation:timelineScan 7s linear infinite}@keyframes timelineScan{to{left:90%}}

.final-scene{position:relative;min-height:780px;display:flex;align-items:center;justify-content:center;background:#090503;overflow:hidden;border-top:1px solid var(--line)}.final-grid{position:absolute;inset:0;opacity:.18;background-image:linear-gradient(rgba(248,229,207,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(248,229,207,.05) 1px,transparent 1px);background-size:64px 64px;mask-image:radial-gradient(circle at 50% 50%,#000 0,rgba(0,0,0,.78) 45%,transparent 78%)}.final-orbit{position:absolute;left:50%;top:50%;border-radius:50%;transform:translate(-50%,-50%);border:1px solid rgba(244,125,53,.16)}.final-orbit.o1{width:380px;height:380px;animation:finalPulse 5s ease-in-out infinite}.final-orbit.o2{width:560px;height:560px;border-style:dashed;opacity:.45;animation:finalRotate 28s linear infinite}.final-lines{position:absolute;inset:0}.final-lines i{position:absolute;background:linear-gradient(90deg,transparent,rgba(244,125,53,.35),transparent);height:1px;width:44%;top:50%;animation:finalSignal 4s ease-in-out infinite}.final-lines i:nth-child(1){left:0}.final-lines i:nth-child(2){right:0;animation-delay:1s}.final-lines i:nth-child(3){width:1px;height:42%;left:50%;top:0;background:linear-gradient(transparent,rgba(244,125,53,.3),transparent);animation-delay:2s}.final-lines i:nth-child(4){width:1px;height:42%;left:50%;top:auto;bottom:0;background:linear-gradient(transparent,rgba(244,125,53,.3),transparent);animation-delay:3s}.final-scene-inner{position:relative;z-index:3;text-align:center;max-width:920px}.final-kicker{font:700 9px/1 "Inter",sans-serif;letter-spacing:.18em;color:var(--orange)}.final-scene h2{margin-top:28px;font-size:clamp(48px,7.5vw,104px);line-height:.95;letter-spacing:-.065em}.final-scene h2 em{font-style:normal;color:var(--orange)}.final-scene p{margin:34px auto 0;max-width:620px;font-size:14px;line-height:1.9;color:var(--muted)}.final-scene .btn{margin-top:34px}@keyframes finalPulse{50%{transform:translate(-50%,-50%) scale(1.08);opacity:.5}}@keyframes finalRotate{to{transform:translate(-50%,-50%) rotate(360deg)}}@keyframes finalSignal{50%{opacity:.2}}

@media(max-width:1100px){.market-v2-head,.youtube-v2-head,.case-head,.campaign-v2-head,.process-v2-head,.guide-layout,.performance-layout,.voice-layout{grid-template-columns:1fr;gap:42px}.market-map{min-height:650px}.metric-row{grid-template-columns:repeat(2,1fr)}.metric-row article:nth-child(2){border-right:0}.metric-row article:nth-child(-n/**/+2){border-bottom:1px solid var(--line)}.case-card{grid-column:span 12}.campaign-control{grid-template-columns:repeat(3,1fr)}.campaign-control article:nth-child(3){border-right:0}.campaign-control article:nth-child(-n/**/+3){border-bottom:1px solid var(--line)}.timeline-shell{grid-template-columns:repeat(2,1fr)}.timeline-shell article{border-top:1px solid var(--line)}.guide-docs{min-height:570px}}
@media(max-width:767px){.market-network-v2,.youtube-v2,.guide-proof,.performance-lab,.case-studies,.campaign-system-v2,.client-voice,.process-timeline-v2{padding:96px 0}.market-map{min-height:760px;border-radius:24px}.market-map-lines{display:none}.market-hub{width:130px;height:130px;top:49%}.market-hub::after{display:none}.platform-node{min-width:102px;padding:10px 11px}.market-map-caption{bottom:49%;transform:translate(-50%,50%);white-space:nowrap;font-size:6px}.yt-action-flow{padding:18px}.yt-thesis{gap:9px;font-size:7px}.guide-docs{min-height:460px}.guide-page{width:68%}.page-back{right:0}.page-front{left:0}.metric-row{grid-template-columns:1fr 1fr}.chart-shell{padding:22px 16px}.signal-chart{height:220px}.case-grid{grid-template-columns:1fr}.case-card{grid-column:auto;grid-template-columns:1fr;min-height:0}.case-image{aspect-ratio:16/9}.case-body{min-height:300px}.campaign-control{grid-template-columns:1fr}.campaign-control article{min-height:190px;border-right:0;border-bottom:1px solid var(--line)}.campaign-control article b{margin-top:34px}.campaign-control article:last-child{border-bottom:0}.campaign-rail{display:none}.campaign-output{flex-wrap:wrap;line-height:1.7}.voice-stage{min-height:500px}.voice-item{padding:34px 26px 72px}.voice-item blockquote{margin-top:42px;font-size:25px}.voice-item p{left:26px;right:26px;bottom:36px;line-height:1.5}.timeline-shell{grid-template-columns:1fr}.timeline-shell article{min-height:170px;border-right:1px solid var(--line)}.final-scene{min-height:680px}.final-orbit.o1{width:250px;height:250px}.final-orbit.o2{width:390px;height:390px}.final-scene h2{font-size:clamp(46px,15vw,72px)}}
@media(prefers-reduced-motion:reduce){.market-map-lines path,.market-hub::before,.market-hub::after,.platform-node,.yt-flow-line i,.guide-signal span,.chart-line,.campaign-rail span,.timeline-axis span,.final-orbit,.final-lines i{animation:none!important}}


/* === V6.1 stability overrides === */
.market-map{min-height:660px!important}
.market-map-lines{display:block!important}
.market-map-lines path{fill:none;stroke:rgba(244,125,53,.38)!important;stroke-width:1.7!important;stroke-dasharray:10 8!important;stroke-linecap:round;opacity:.92}
.market-side-label{position:absolute;z-index:3;display:grid;gap:8px}
.market-side-label b{font:800 58px/.9 "Inter",sans-serif;letter-spacing:-.06em;color:rgba(248,229,207,.12)}
.market-side-label span{font:800 15px/1 "Inter",sans-serif;letter-spacing:.12em;color:var(--cream)}
.market-side-label small{font:700 8px/1 "Inter",sans-serif;letter-spacing:.13em;color:var(--orange-2)}
.market-side-label.jp{left:78px;top:66px;text-align:left}
.market-side-label.kr{right:78px;top:66px;text-align:right}
.market-node{position:absolute;z-index:4;min-width:132px;padding:12px 14px;background:rgba(12,8,6,.92);box-shadow:0 20px 44px rgba(0,0,0,.22)}
.market-node b{display:block;font:800 12px/1 "Inter",sans-serif;color:var(--cream)}
.market-node span{display:block;margin-top:9px;font:600 10px/1 "Inter",sans-serif;color:var(--muted-2)}
.jp-youtube{left:78px;top:202px}.jp-instagram{left:176px;top:306px}.jp-tiktok{left:78px;top:420px}.jp-x{left:252px;top:474px}.jp-ameba{left:272px;top:154px}
.kr-google{left:826px;top:162px}.kr-youtube{left:1008px;top:204px}.kr-instagram{left:912px;top:306px}.kr-naver{left:1002px;top:420px}
.market-map-caption{z-index:3}




.chart-line{stroke-dasharray:1200!important;stroke-dashoffset:1200!important;animation:chartDrawLoop 5s linear infinite!important}
@keyframes chartDrawLoop{0%{stroke-dashoffset:1200}72%{stroke-dashoffset:0}100%{stroke-dashoffset:0}}
.case-studies .case-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:24px!important;align-items:stretch!important}
.case-studies .case-card,.case-studies .case-05,.case-studies .case-06{grid-column:auto/span 1!important;margin-top:0!important;min-height:0!important;display:grid!important;grid-template-columns:minmax(0,40%) minmax(0,60%)!important;align-self:stretch!important}
.case-studies .case-card:nth-child(1),.case-studies .case-card:nth-child(2),.case-studies .case-card:nth-child(3),.case-studies .case-card:nth-child(4),.case-studies .case-card:nth-child(5),.case-studies .case-card:nth-child(6){grid-column:auto/span 1!important;margin-top:0!important}
.case-studies .case-image{min-height:320px!important}
.case-studies .case-body{min-height:320px!important;padding:26px 24px 24px!important}
.case-studies .case-body h3{font-size:24px!important}
.case-studies .case-metric{margin-top:20px!important;padding-top:18px!important}
.case-studies .case-metric strong{font-size:clamp(26px,2.8vw,42px)!important}
.case-studies .case-desc{margin-top:auto!important;padding-top:18px!important}
@media(max-width:1100px){
  .case-studies .case-grid{grid-template-columns:1fr!important}
  .case-studies .case-card,.case-studies .case-05,.case-studies .case-06{grid-template-columns:1fr!important}
  .case-studies .case-image{aspect-ratio:16/9;min-height:0!important}
  .case-studies .case-body{min-height:0!important}
}
@media(max-width:767px){
  .market-map{min-height:860px!important}
  .market-side-label.jp{left:22px;top:24px}.market-side-label.kr{right:22px;top:auto;bottom:24px}
  .market-side-label b{font-size:44px}
  .market-hub{top:50%!important}
  .market-map-lines{display:block!important}
  .market-map-lines path{stroke-width:1.35!important;opacity:.6}
  .market-node{min-width:104px;padding:10px 11px}
  .jp-youtube{left:6%;top:28%}.jp-instagram{left:42%;top:20%}.jp-tiktok{left:7%;top:46%}.jp-x{left:20%;top:64%}.jp-ameba{left:54%;top:36%}
  .kr-google{left:53%;top:58%}.kr-youtube{left:74%;top:28%}.kr-instagram{left:54%;top:74%}.kr-naver{left:75%;top:49%}
  
}


/* === V6.2 QA polish + mobile optimization === */
html{scroll-behavior:smooth}
body{word-break:keep-all;overflow-x:hidden}
img{max-width:100%}
.section-copy h2,.identity-signature h2,.work-head h2,.youtube-v2-head h2,.market-v2-head h2,.case-head h2,.campaign-v2-head h2,.process-v2-head h2{word-break:keep-all;line-height:1.02}
.section-copy p,.identity-signature p,.case-desc,.voice-item p,.contact-copy p{word-break:keep-all;line-height:1.72}
.work,.identity,.market-network-v2,.youtube-v2,.guide-proof,.performance-lab,.case-studies,.campaign-system-v2,.client-voice,.process-timeline-v2,.faq,.contact{overflow:hidden}

/* Section rhythm */
.market-v2-head,.youtube-v2-head,.case-head,.campaign-v2-head,.process-v2-head{align-items:end}
.market-v2-head .section-copy,.youtube-v2-head .section-copy,.case-head .section-copy,.campaign-v2-head .section-copy,.process-v2-head .section-copy{max-width:800px}
.case-head small,.market-v2-head small,.youtube-v2-head small,.campaign-v2-head small,.process-v2-head small{display:inline-block;margin-bottom:16px}

/* Hero polish */
.hero{padding-top:104px}
.hero-layout{align-items:center}
.hero h1{max-width:11ch}
.hero-desc{max-width:62ch}
.hero-meta{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.hero-meta li{min-height:92px}

/* Proof / metrics alignment */
.proof-strip .metric-row article,.metric-row article{display:flex;flex-direction:column;justify-content:flex-start}
.metric-row article p{margin-top:14px;max-width:24ch}
.metric-row article small{min-height:1.2em;display:block}
.metric-row article strong{line-height:.9;display:block;min-height:1.15em}


/* Selected work */





/* Identity / platform / youtube */
.identity-signature{padding-bottom:10px}
.market-map{margin-top:64px}
.market-map-caption{font-size:10px;letter-spacing:.14em}
.market-hub small{letter-spacing:.14em}



/* Case studies cleanup */
.case-head{margin-bottom:8px}
.case-grid{margin-top:56px!important}
.case-card{border-radius:26px}
.case-body small,.case-cat{letter-spacing:.12em}
.case-body h3{line-height:1.05}
.case-body .case-cat{margin-top:10px}
.case-desc{margin-top:auto}

/* Client voice / process */
.voice-item blockquote{line-height:1.08;max-width:12ch}
.timeline-shell article p{line-height:1.65}
.final-scene h2{word-break:keep-all}

/* Contact */

.contact-form input,.contact-form textarea{font-size:16px}

/* Tablet */
@media(max-width:1180px){
  .hero-layout{grid-template-columns:1fr;gap:42px}
  
  
  .hero-meta{grid-template-columns:repeat(3,minmax(0,1fr))}
  
  
}

/* Mobile comprehensive pass */
@media(max-width:767px){
  .container,.nav-inner{width:calc(100% - 32px)!important}
  nav{height:68px!important}
  
  .mobile-menu{padding:88px 20px 22px}
  .mobile-menu a{font-size:24px}

  .hero{min-height:auto;padding:96px 0 72px}
  .hero-layout{grid-template-columns:1fr!important;gap:30px}
  .hero-kicker{margin-bottom:18px}
  .hero h1{font-size:clamp(40px,13vw,60px);max-width:9ch;line-height:.96}
  .hero-desc{font-size:15px;line-height:1.75;max-width:none}
  .hero-cta{flex-direction:column;align-items:stretch;gap:12px}
  .hero-cta .btn{width:100%;justify-content:center}
  .hero-meta{grid-template-columns:1fr;gap:12px}
  .hero-meta li{min-height:0;padding:16px 16px 18px}
  
  

  .proof-strip{padding:28px 0 0}
  
  

  .work,.identity,.market-network-v2,.youtube-v2,.guide-proof,.performance-lab,.case-studies,.campaign-system-v2,.client-voice,.process-timeline-v2,.faq,.contact{padding:88px 0}
  .section-copy h2,.identity-signature h2,.work-head h2,.youtube-v2-head h2,.market-v2-head h2,.case-head h2,.campaign-v2-head h2,.process-v2-head h2{font-size:clamp(34px,11vw,48px);line-height:.96}
  .section-copy p,.identity-signature p{font-size:14px;line-height:1.72}

  
  
  
  
  
  
  
  

  .identity-signature{padding-bottom:0}
  .market-map{margin-top:42px;min-height:840px!important}
  .market-map-caption{bottom:18px!important;transform:translateX(-50%)!important;font-size:8px;white-space:normal;text-align:center;width:84%}
  .market-hub{width:122px!important;height:122px!important}
  .market-hub span{font-size:18px}
  .market-hub small{font-size:7px}
  .market-node{min-width:96px!important;max-width:112px;padding:9px 10px!important}
  .market-node b{font-size:11px!important}.market-node span{font-size:9px!important;line-height:1.35}

  .youtube-v2-head,.market-v2-head,.case-head,.campaign-v2-head,.process-v2-head,.guide-layout,.performance-layout,.voice-layout{gap:28px!important}
  
  
  
  
  

  .guide-docs{min-height:420px!important;border-radius:22px}
  .guide-page{width:76%!important}
  .performance-layout{gap:26px}
  .metric-row{grid-template-columns:1fr 1fr!important}
  .metric-row article{padding:18px 14px 16px}
  .metric-row article strong{font-size:clamp(34px,12vw,54px)}
  .chart-shell{padding:18px 14px!important;border-radius:22px}
  .signal-chart{height:210px!important}

  .case-grid{margin-top:42px!important;gap:18px!important}
  .case-card,.case-studies .case-card,.case-studies .case-05,.case-studies .case-06{grid-template-columns:1fr!important;border-radius:22px!important}
  .case-image,.case-studies .case-image{aspect-ratio:16/10!important;min-height:0!important}
  .case-body,.case-studies .case-body{padding:22px 18px 20px!important;min-height:0!important}
  .case-body h3{font-size:22px!important}
  .case-body .case-desc{padding-top:14px}

  .campaign-control{grid-template-columns:1fr!important}
  .campaign-control article{min-height:168px!important;padding:20px 18px}
  .voice-stage{min-height:460px!important}
  .voice-item{padding:30px 20px 74px!important}
  .voice-item blockquote{font-size:24px!important;max-width:11ch}
  .voice-item p{left:20px!important;right:20px!important;bottom:28px!important;font-size:14px}

  .timeline-shell{grid-template-columns:1fr!important}
  .timeline-shell article{min-height:156px!important;padding:22px 18px}
  .timeline-shell article b{font-size:18px}
  .timeline-shell article p{font-size:14px}

  .faq-list{margin-top:24px}
  .faq-item{padding:18px 0}
  
  

  .final-scene{min-height:600px!important;padding:88px 0}
  .final-scene h2{font-size:clamp(38px,12vw,56px)!important;line-height:.96}
  .final-scene p{font-size:14px;line-height:1.72}

  
  .contact-copy h2{font-size:clamp(34px,11vw,46px)}
  .contact-copy p{font-size:14px;line-height:1.72}
  .contact-form{border-radius:22px}
  .contact-form{padding:20px 18px}
  
}

@media(max-width:480px){
  .hero h1{font-size:36px}
  
  
  .metric-row{grid-template-columns:1fr!important}
  .market-map{min-height:900px!important}
  .market-side-label b{font-size:38px!important}
  .market-side-label span{font-size:13px!important}
  .market-node{min-width:88px!important;max-width:102px}
  .voice-item blockquote{font-size:22px!important}
  .final-scene{min-height:540px!important}
}


/* === V6.5 network overlap hotfix === */




/* === V6.6 rebuilt hero network section === */






@keyframes luenSweep{0%,100%{transform:translateX(-4%) skewX(-12deg);opacity:.35}50%{transform:translateX(10%) skewX(-12deg);opacity:.85}}





@keyframes luenOrbit{from{transform:translate(-50%,-50%) rotate(0deg)}to{transform:translate(-50%,-50%) rotate(360deg)}}



#networkCard .market-node{position:absolute !important;z-index:3 !important;background:rgba(11,7,5,.82) !important;border:1px solid rgba(255,185,120,.14) !important;border-radius:32px !important;backdrop-filter:blur(8px) !important;-webkit-backdrop-filter:blur(8px) !important;box-shadow:0 18px 42px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.03) !important}




@keyframes luenHubFloat{0%,100%{transform:translate(-50%,-50%)}50%{transform:translate(-50%,-51.5%)}}



#networkCard .market-node h3{margin:0 0 16px !important;font-size:31px !important;line-height:1 !important;letter-spacing:-.03em !important;color:#f4e4d3 !important}
#networkCard .market-node p{margin:0 !important;font-size:18px !important;line-height:1.65 !important;color:rgba(244,228,211,.82) !important;max-width:15ch !important;word-break:keep-all !important}



@media (max-width:767px){
  
  #networkCard::before{width:410px !important;height:410px !important}
  #networkCard::after{width:250px !important;height:250px !important}
  
  
  
  
  
  
  
  
  #networkCard .market-node h3{font-size:16px !important;margin-bottom:12px !important}
  #networkCard .market-node p{font-size:12px !important;line-height:1.55 !important;max-width:10ch !important}
  
  
}
@media (max-width:420px){
  
  
  
  
  #networkCard .market-node p{font-size:11px !important}
}


/* v7.1 hotfix: remove unintended orange accent line on JP JAPAN card */






.market-map-lines{overflow:hidden}
.market-map-lines path{stroke-linejoin:round}

/* === V6.5 network overlap hotfix === */





/* === V6.4 targeted fixes: Client Voice fit + Hero network impact === */

/* CLIENT VOICE: prevent long sample copy from clipping/overflowing. */
.client-voice .voice-stage{
  min-height:500px!important;
}
.client-voice .voice-item{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding:50px 54px 82px!important;
}
.client-voice .voice-item>span{
  flex:0 0 auto;
}
.client-voice .voice-item blockquote{
  margin:64px 0 0!important;
  max-width:28ch!important;
  font-size:clamp(26px,2.15vw,37px)!important;
  line-height:1.22!important;
  letter-spacing:-.035em!important;
  text-wrap:pretty;
  word-break:keep-all;
  overflow-wrap:break-word;
}
.client-voice .voice-item p{
  left:54px!important;
  right:130px!important;
  bottom:38px!important;
  white-space:normal;
  line-height:1.45!important;
}
.client-voice .voice-dots{right:38px!important;bottom:39px!important}

/* HERO NETWORK: make the first visual read instantly without becoming neon/cyber. */


















@keyframes networkSweepImpact{
  0%,14%{left:-44%;opacity:0}
  28%{opacity:.85}
  58%{left:108%;opacity:.9}
  74%,100%{left:108%;opacity:0}
}
@keyframes heroSignalFlow{to{stroke-dashoffset:-46}}
@keyframes centerImpactGlow{
  0%,100%{transform:translate(-50%,-50%) scale(1);box-shadow:0 0 0 1px rgba(255,155,93,.08) inset,0 26px 80px rgba(0,0,0,.38),0 0 42px rgba(244,125,53,.09)}
  50%{transform:translate(-50%,-50%) scale(1.018);box-shadow:0 0 0 1px rgba(255,155,93,.13) inset,0 28px 86px rgba(0,0,0,.40),0 0 72px rgba(244,125,53,.19)}
}

@media(max-width:820px){
  .client-voice .voice-stage{min-height:430px!important}
  .client-voice .voice-item{padding:38px 34px 76px!important}
  .client-voice .voice-item blockquote{margin-top:42px!important;max-width:30ch!important;font-size:clamp(23px,4vw,31px)!important;line-height:1.22!important}
  .client-voice .voice-item p{left:34px!important;right:110px!important;bottom:32px!important}
  .client-voice .voice-dots{right:30px!important;bottom:33px!important}
}
@media(max-width:560px){
  .client-voice .voice-stage{min-height:500px!important}
  .client-voice .voice-item{padding:32px 22px 82px!important}
  .client-voice .voice-item blockquote{margin-top:38px!important;max-width:none!important;font-size:22px!important;line-height:1.28!important}
  .client-voice .voice-item p{left:22px!important;right:22px!important;bottom:40px!important;font-size:8px!important}
  .client-voice .voice-dots{right:22px!important;bottom:18px!important}

  
  
  
  
  
  
  
  
}


/* === V6.5 network overlap hotfix === */





/* V7.3 — fixed cards + live signal system. Isolated from legacy network CSS. */
.luen-hero-network{
  position:relative;min-height:650px;border-radius:38px;overflow:hidden;isolation:isolate;
  border:1px solid rgba(248,229,207,.14);
  background:
    radial-gradient(circle at 72% 16%,rgba(244,125,53,.16),transparent 31%),
    radial-gradient(circle at 50% 50%,rgba(244,125,53,.10),transparent 32%),
    linear-gradient(145deg,#0c0705 0%,#140a06 54%,#1c0d07 100%);
  box-shadow:0 36px 100px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.035);
}
.lhn-grid{position:absolute;inset:-8px;z-index:0;opacity:.34;background-image:linear-gradient(rgba(248,229,207,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(248,229,207,.05) 1px,transparent 1px);background-size:56px 56px;mask-image:linear-gradient(to bottom,#000,rgba(0,0,0,.45));transition:transform .4s cubic-bezier(.2,.7,.2,1)}
.lhn-glow{position:absolute;z-index:0;width:48%;height:135%;right:-6%;top:-20%;transform:rotate(12deg);background:linear-gradient(90deg,transparent,rgba(244,125,53,.06),rgba(255,155,93,.10),transparent);filter:blur(14px);animation:lhnSweep 7s ease-in-out infinite;transition:margin .45s cubic-bezier(.2,.7,.2,1)}
@keyframes lhnSweep{0%,100%{transform:translateX(-8%) rotate(12deg);opacity:.28}50%{transform:translateX(8%) rotate(12deg);opacity:.7}}
.lhn-ring{position:absolute;left:50%;top:50%;z-index:0;border-radius:50%;transform:translate(-50%,-50%);pointer-events:none}
.lhn-ring-a{width:430px;height:430px;border:1px solid rgba(244,125,53,.22);box-shadow:0 0 65px rgba(244,125,53,.03);animation:lhnRingSoft 14s ease-in-out infinite}
.lhn-ring-b{width:270px;height:270px;border:1px dashed rgba(248,229,207,.13);animation:lhnRing 26s linear infinite}
@keyframes lhnRing{to{transform:translate(-50%,-50%) rotate(360deg)}}
@keyframes lhnRingSoft{0%,100%{opacity:.55;transform:translate(-50%,-50%) scale(.985)}50%{opacity:1;transform:translate(-50%,-50%) scale(1.02)}}
.lhn-status{position:absolute;right:34px;top:30px;z-index:7;display:flex;align-items:center;gap:11px;padding:11px 16px;border:1px solid rgba(248,229,207,.12);border-radius:999px;background:rgba(12,7,5,.78);font:700 11px/1 "Inter","Pretendard",sans-serif;letter-spacing:.12em;color:rgba(248,229,207,.65);white-space:nowrap}
.lhn-status i{width:6px;height:6px;border-radius:50%;background:#f47d35;box-shadow:0 0 0 5px rgba(244,125,53,.08),0 0 15px rgba(244,125,53,.65);animation:lhnStatusPulse 2.4s ease-in-out infinite}
@keyframes lhnStatusPulse{50%{box-shadow:0 0 0 8px rgba(244,125,53,.025),0 0 19px rgba(244,125,53,.85)}}

.lhn-links{position:absolute;inset:0;z-index:2;width:100%;height:100%;pointer-events:none;overflow:visible}
.lhn-path{fill:none;stroke:rgba(244,125,53,.60);stroke-width:.22;stroke-linecap:round;stroke-dasharray:1;stroke-dashoffset:1;filter:drop-shadow(0 0 1.3px rgba(244,125,53,.45))}
.lhn-path-a{animation:lhnPathA 6s ease-in-out infinite}
.lhn-path-b{animation:lhnPathB 6s ease-in-out infinite}
@keyframes lhnPathA{0%,7%{stroke-dashoffset:1;opacity:.14}19%,31%{stroke-dashoffset:0;opacity:.9}40%,100%{stroke-dashoffset:1;opacity:.14}}
@keyframes lhnPathB{0%,38%{stroke-dashoffset:1;opacity:.14}50%,64%{stroke-dashoffset:0;opacity:.9}74%,100%{stroke-dashoffset:1;opacity:.14}}
.lhn-dot{fill:#ff9b5d;filter:drop-shadow(0 0 4px rgba(255,155,93,.95));opacity:0}
.lhn-dot-a{animation:lhnDotA 6s linear infinite}.lhn-dot-b{animation:lhnDotB 6s linear infinite}
@keyframes lhnDotA{0%,9%,31%,100%{opacity:0}12%,27%{opacity:1}}
@keyframes lhnDotB{0%,41%,63%,100%{opacity:0}44%,59%{opacity:1}}

.lhn-card,.lhn-hub{position:absolute;z-index:4;box-sizing:border-box}
.lhn-card{width:220px;padding:22px 20px 20px;border-radius:22px;border:1px solid rgba(248,229,207,.15);background:linear-gradient(145deg,rgba(14,8,5,.96),rgba(10,6,4,.9));box-shadow:0 18px 50px rgba(0,0,0,.27),inset 0 1px 0 rgba(255,255,255,.025);transition:border-color .35s ease,box-shadow .35s ease,background .35s ease}
.lhn-card::before,.lhn-card::after{display:none!important;content:none!important}
.lhn-korea{left:34px;top:78px;animation:lhnKoreaActive 6s ease-in-out infinite}
.lhn-japan{right:34px;bottom:56px;animation:lhnJapanActive 6s ease-in-out infinite}
@keyframes lhnKoreaActive{0%,18%{border-color:rgba(244,125,53,.38);box-shadow:0 18px 50px rgba(0,0,0,.27),0 0 34px rgba(244,125,53,.08)}24%,100%{border-color:rgba(248,229,207,.15);box-shadow:0 18px 50px rgba(0,0,0,.27)}}
@keyframes lhnJapanActive{0%,54%{border-color:rgba(248,229,207,.15);box-shadow:0 18px 50px rgba(0,0,0,.27)}61%,76%{border-color:rgba(244,125,53,.38);box-shadow:0 18px 50px rgba(0,0,0,.27),0 0 34px rgba(244,125,53,.08)}84%,100%{border-color:rgba(248,229,207,.15);box-shadow:0 18px 50px rgba(0,0,0,.27)}}
.lhn-card h3{margin:0 0 15px;font:800 17px/1 "Inter","Pretendard",sans-serif;letter-spacing:-.02em;color:#f8e5d1}
.lhn-card h3 span{color:#ff9b5d;font-size:10px;letter-spacing:.08em;margin-right:5px;vertical-align:2px}
.lhn-card p{margin:0;font-size:12px;line-height:1.7;color:rgba(248,229,207,.62);word-break:keep-all}
.lhn-pills{display:flex;flex-wrap:wrap;gap:7px;margin-top:18px}
.lhn-pills span{padding:6px 8px;border-radius:999px;border:1px solid rgba(248,229,207,.11);background:rgba(255,255,255,.012);font:650 9px/1 "Inter","Pretendard",sans-serif;color:rgba(248,229,207,.62)}
.lhn-korea .lhn-pills span{animation:lhnPillKR 6s ease-in-out infinite}
.lhn-japan .lhn-pills span{animation:lhnPillJP 6s ease-in-out infinite}
.lhn-korea .lhn-pills span:nth-child(2),.lhn-japan .lhn-pills span:nth-child(2){animation-delay:.10s}
.lhn-korea .lhn-pills span:nth-child(3),.lhn-japan .lhn-pills span:nth-child(3){animation-delay:.20s}
.lhn-korea .lhn-pills span:nth-child(4),.lhn-japan .lhn-pills span:nth-child(4){animation-delay:.30s}
.lhn-japan .lhn-pills span:nth-child(5){animation-delay:.40s}
@keyframes lhnPillKR{0%,6%{border-color:rgba(248,229,207,.11);color:rgba(248,229,207,.62)}10%,17%{border-color:rgba(244,125,53,.34);color:#f8e5d1;background:rgba(244,125,53,.035)}23%,100%{border-color:rgba(248,229,207,.11);color:rgba(248,229,207,.62)}}
@keyframes lhnPillJP{0%,59%{border-color:rgba(248,229,207,.11);color:rgba(248,229,207,.62)}63%,71%{border-color:rgba(244,125,53,.34);color:#f8e5d1;background:rgba(244,125,53,.035)}77%,100%{border-color:rgba(248,229,207,.11);color:rgba(248,229,207,.62)}}

.lhn-hub{left:50%;top:50%;width:220px;height:168px;transform:translate(-50%,-50%);display:flex;flex-direction:column;align-items:center;justify-content:center;border-radius:25px;border:1px solid rgba(244,125,53,.75);background:radial-gradient(circle at 50% 30%,rgba(255,155,93,.16),transparent 50%),linear-gradient(145deg,rgba(71,32,16,.9),rgba(31,16,10,.97));box-shadow:0 0 0 1px rgba(255,155,93,.045) inset,0 22px 60px rgba(0,0,0,.35),0 0 42px rgba(244,125,53,.09);animation:lhnHubSignal 6s ease-in-out infinite}
@keyframes lhnHubSignal{0%,26%,100%{transform:translate(-50%,-50%) scale(1);box-shadow:0 0 0 1px rgba(255,155,93,.045) inset,0 22px 60px rgba(0,0,0,.35),0 0 42px rgba(244,125,53,.09)}32%,43%{transform:translate(-50%,-50%) scale(1.025);box-shadow:0 0 0 1px rgba(255,155,93,.09) inset,0 24px 66px rgba(0,0,0,.36),0 0 72px rgba(244,125,53,.20)}50%,100%{transform:translate(-50%,-50%) scale(1)}}
.lhn-hub strong{font:800 33px/1 "Inter",sans-serif;letter-spacing:.16em;color:#ff9b5d;text-shadow:0 0 22px rgba(244,125,53,.24)}
.lhn-hub>span{display:flex;align-items:center;gap:8px;margin-top:17px;font:700 9px/1 "Inter",sans-serif;letter-spacing:.15em;color:rgba(248,229,207,.48)}
.lhn-hub>span i{width:5px;height:5px;border-radius:50%;background:#f47d35;box-shadow:0 0 12px rgba(244,125,53,.75)}

/* Tablet/mobile: normal document flow keeps cards structurally separated. */
@media(max-width:1100px){
  .luen-hero-network{min-height:0;padding:76px 24px 28px;display:grid;grid-template-columns:minmax(0,1fr);gap:22px;align-items:start}
  .lhn-status{top:20px;left:24px;right:24px;justify-content:center;font-size:10px}
  .lhn-links{display:none}.lhn-ring{left:50%;top:51%}.lhn-ring-a{width:420px;height:420px}.lhn-ring-b{width:260px;height:260px}
  .lhn-card,.lhn-hub{position:relative;left:auto;right:auto;top:auto;bottom:auto;transform:none!important}
  .lhn-card{width:min(70%,360px);padding:22px 20px}.lhn-korea{justify-self:start}.lhn-hub{justify-self:center;width:min(72%,330px);height:190px;margin:4px 0;z-index:6}.lhn-japan{justify-self:end}
  .lhn-hub strong{font-size:42px}.lhn-hub>span{font-size:10px}
  @keyframes lhnHubSignal{0%,100%{transform:scale(1)}35%{transform:scale(1.018)}}
}
@media(max-width:640px){
  .luen-hero-network{padding:70px 14px 18px;gap:16px;border-radius:26px}.lhn-status{top:14px;left:14px;right:14px;padding:10px 12px;font-size:9px;letter-spacing:.09em}.lhn-ring-a{width:330px;height:330px}.lhn-ring-b{width:210px;height:210px}
  .lhn-card{width:78%;max-width:290px;padding:18px 16px;border-radius:20px}.lhn-card h3{font-size:16px}.lhn-card p{font-size:11px}.lhn-pills{margin-top:14px;gap:6px}.lhn-pills span{font-size:8.5px;padding:6px 7px}
  .lhn-hub{width:72%;max-width:260px;height:150px;border-radius:22px}.lhn-hub strong{font-size:30px}.lhn-hub>span{font-size:8px;margin-top:13px}
}
@media(prefers-reduced-motion:reduce){.lhn-glow,.lhn-ring-a,.lhn-ring-b,.lhn-path,.lhn-dot,.lhn-card,.lhn-pills span,.lhn-hub,.lhn-status i{animation:none!important}.lhn-dot{display:none}}


.case-studies .case-head .section-copy{max-width:520px}
.case-studies .case-body>small{font-family:"Pretendard","Inter",sans-serif!important;letter-spacing:.04em!important;font-size:9px!important}
.case-studies .case-cat{font-family:"Pretendard","Inter",sans-serif!important;letter-spacing:.02em!important;font-size:9px!important}
.case-studies .case-metric span{font-family:"Pretendard","Inter",sans-serif!important;letter-spacing:.04em!important;font-size:9px!important}
.case-studies .case-metric strong{font-family:"Pretendard","Inter",sans-serif!important;letter-spacing:-.045em!important;line-height:1.12!important;word-break:keep-all}
.case-inquiry-cta{margin-top:34px;padding:36px 38px;border:1px solid rgba(248,229,207,.14);border-radius:24px;background:linear-gradient(135deg,rgba(244,125,53,.07),rgba(255,255,255,.018) 42%,rgba(255,255,255,.01));display:flex;align-items:center;justify-content:space-between;gap:42px;position:relative;overflow:hidden}
.case-inquiry-cta::before{content:"";position:absolute;width:240px;height:240px;right:-90px;top:-120px;border-radius:50%;background:radial-gradient(circle,rgba(244,125,53,.12),transparent 68%);pointer-events:none}
.case-inquiry-copy{position:relative;z-index:1;max-width:680px}
.case-inquiry-copy>span{display:block;font:700 9px/1 "Inter",sans-serif;letter-spacing:.15em;color:var(--orange);margin-bottom:15px}
.case-inquiry-copy h3{font-size:clamp(24px,2.4vw,36px);line-height:1.18;letter-spacing:-.045em;color:var(--cream)}
.case-inquiry-copy p{margin-top:12px;font-size:13px;line-height:1.75;color:var(--muted);word-break:keep-all}
.case-inquiry-btn{position:relative;z-index:1;flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;gap:14px;min-height:54px;padding:0 22px;border-radius:999px;background:var(--orange);color:#1a0c04;font:800 12px/1 "Pretendard","Inter",sans-serif;text-decoration:none;transition:transform .25s ease,background .25s ease}
.case-inquiry-btn i{font-style:normal;font-size:16px;transition:transform .25s ease}
.case-inquiry-btn:hover{background:var(--orange-2);transform:translateY(-2px)}
.case-inquiry-btn:hover i{transform:translateX(4px)}
@media(max-width:767px){
  .case-inquiry-cta{margin-top:24px;padding:28px 22px;display:block;border-radius:22px}
  .case-inquiry-copy h3{font-size:26px}
  .case-inquiry-copy p{font-size:12px}
  .case-inquiry-btn{width:100%;margin-top:24px;min-height:52px}
}


/* ============================================================
   LUEN V8 — unified corporate typography system
   Primary: Pretendard Variable / Latin UI: Inter / JP fallback: Noto Sans JP
   ============================================================ */
:root{
  --type-display: "Pretendard Variable", Pretendard, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --type-ui: Inter, "Pretendard Variable", Pretendard, "Noto Sans JP", sans-serif;
  --type-body: "Pretendard Variable", Pretendard, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --fs-body:16px;
  --fs-copy:16px;
  --fs-small:13.5px;
  --fs-caption:12px;
  --fs-label:10.5px;
}
html{font-size:16px}
body{
  font-family:var(--type-body)!important;
  font-size:var(--fs-body);
  font-weight:400;
  line-height:1.7;
  letter-spacing:-.008em;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  font-synthesis:none;
}
button,input,select,textarea{font-family:var(--type-body)}

/* Core hierarchy */
.hero h1,.section-title,.identity-statement,.identity-side strong,.final-scene h2{
  font-family:var(--type-display)!important;
  font-synthesis:none;
}
.hero h1{
  font-size:clamp(50px,5.5vw,78px)!important;
  line-height:1.02!important;
  letter-spacing:-.052em!important;
  font-weight:700!important;
}
.section-title,
.identity-statement{
  font-size:clamp(36px,3.8vw,54px)!important;
  line-height:1.12!important;
  letter-spacing:-.042em!important;
  font-weight:700!important;
  word-break:keep-all;
}
.section-copy,.hero-desc,.contact-copy{
  font-family:var(--type-body)!important;
  font-size:var(--fs-copy)!important;
  line-height:1.78!important;
  letter-spacing:-.012em!important;
  font-weight:400!important;
  word-break:keep-all;
}
.hero-desc{max-width:660px!important;margin-top:30px!important}
.section-copy{max-width:680px!important;margin-top:22px!important}

/* UI labels: keep English technical tone, but never microscopic */
.eyebrow,.hero-kicker,.proof-kicker,.signature-label,.final-kicker,.portfolio-head span,.portfolio-head small,.portfolio-country,.case-body>small,.case-cat,.case-metric span,.campaign-control article i,.campaign-control article small,.campaign-output,.voice-item>span,.voice-item p,.timeline-shell article>span,.chart-head,.chart-labels,.market-hub small,.work-lane-code{
  font-family:var(--type-ui)!important;
  font-size:var(--fs-label)!important;
  line-height:1.35!important;
  letter-spacing:.11em!important;
  font-weight:650!important;
}
.eyebrow,.hero-kicker{font-size:11px!important;letter-spacing:.14em!important}

/* Navigation / actions */
.logo{font-family:var(--type-ui)!important;font-size:21px!important;font-weight:750!important}
.nav-links a{font-size:13px!important;font-weight:550!important}
.nav-contact{font-size:12px!important;font-weight:650!important}
.btn{font-size:14px!important;font-weight:650!important;min-height:50px!important}

.top-strip .container{font-size:10.5px!important;letter-spacing:.1em!important}
.hero-meta{font-size:10.5px!important;letter-spacing:.11em!important}

/* Proof */
.proof-item strong{font-family:var(--type-ui)!important;font-size:clamp(25px,2.3vw,34px)!important;font-weight:700!important}
.proof-item p{font-size:13px!important;line-height:1.65!important}


/* Portfolio / selected work */
.portfolio-head h3{font-family:var(--type-ui)!important;font-size:20px!important;line-height:1.2!important;font-weight:700!important;letter-spacing:-.015em!important}
.portfolio-meta{font-size:11px!important;line-height:1.45!important}
.brand-wall-head h3{font-size:20px!important;line-height:1.3!important}
.brand-wall-head p{font-size:13.5px!important;line-height:1.65!important}

/* Identity */
.identity-side strong{font-size:clamp(30px,3vw,42px)!important;line-height:1.12!important;letter-spacing:-.038em!important;font-weight:650!important}
.identity-side p{font-size:13.5px!important;line-height:1.7!important}
.identity-core span{font-family:var(--type-ui)!important;font-size:24px!important}
.identity-core small{font-size:10px!important;line-height:1.35!important}

/* Hero network */
.lhn-card h3{font-family:var(--type-ui)!important;font-size:18px!important;line-height:1.15!important;font-weight:700!important}
.lhn-card h3 span{font-size:10.5px!important}
.lhn-card p{font-size:13px!important;line-height:1.65!important}
.lhn-pills span{font-size:10px!important;line-height:1!important}
.lhn-hub strong{font-family:var(--type-ui)!important;font-size:34px!important}
.lhn-hub>span,.lhn-status{font-size:10px!important;line-height:1.2!important}

/* Platform network */
.market-side-label b{font-family:var(--type-ui)!important;font-size:50px!important}
.market-side-label span{font-family:var(--type-ui)!important;font-size:12px!important}
.platform-node b{font-family:var(--type-ui)!important;font-size:12px!important}
.platform-node span{font-size:10.5px!important;line-height:1.45!important}
.market-map-caption{font-size:9.5px!important;line-height:1.35!important}
.market-hub span{font-family:var(--type-ui)!important;font-size:27px!important}

/* YouTube / real guide / performance */

.yt-thesis,.yt-action-flow{font-size:11px!important;line-height:1.5!important}
.guide-copy h3,.performance-copy h3{font-size:clamp(24px,2.2vw,32px)!important;line-height:1.25!important;font-weight:650!important}
.guide-copy p,.performance-copy p{font-size:14.5px!important;line-height:1.75!important}
.metric-row article strong{font-family:var(--type-ui)!important;font-size:clamp(27px,2.8vw,40px)!important}
.metric-row article p{font-size:12.5px!important;line-height:1.55!important}

/* Case studies */
.case-body h3{font-family:var(--type-display)!important;font-size:22px!important;line-height:1.24!important;letter-spacing:-.025em!important;font-weight:650!important}
.case-metric strong{font-family:var(--type-display)!important;font-size:clamp(27px,2.7vw,38px)!important;line-height:1.08!important;letter-spacing:-.035em!important;font-weight:750!important}
.case-desc{font-size:13.5px!important;line-height:1.72!important;letter-spacing:-.01em!important}




/* Campaign system */
.campaign-control article b{font-family:var(--type-display)!important;font-size:15px!important;line-height:1.35!important;letter-spacing:-.01em!important;font-weight:650!important}
.campaign-control article p{font-size:12.5px!important;line-height:1.65!important}
.campaign-control article small{font-size:9.5px!important}
.campaign-output{font-size:10.5px!important}

/* Client voice */
.voice-stage{min-height:440px!important}
.voice-item{padding:48px 56px 82px!important}
.voice-item blockquote{
  font-family:var(--type-display)!important;
  margin-top:44px!important;
  max-width:25ch!important;
  font-size:clamp(25px,2.6vw,36px)!important;
  line-height:1.42!important;
  letter-spacing:-.028em!important;
  font-weight:550!important;
  word-break:keep-all;
}
.voice-item p{left:56px!important;bottom:40px!important;font-size:10.5px!important}

/* Process */
.timeline-shell article b{font-family:var(--type-display)!important;font-size:17px!important;line-height:1.35!important;font-weight:650!important}
.timeline-shell article p{font-size:12.5px!important;line-height:1.65!important}

/* FAQ */
.faq-q{font-family:var(--type-display)!important;font-size:16px!important;line-height:1.5!important;font-weight:600!important}
.faq-a p{font-size:14px!important;line-height:1.78!important}

/* Final conversion section */
.final-scene h2{
  font-size:clamp(44px,5.6vw,72px)!important;
  line-height:1.02!important;
  letter-spacing:-.05em!important;
  font-weight:700!important;
}
.final-scene p{font-size:15.5px!important;line-height:1.75!important}


label{font-size:12.5px}

.footer-brand p,.footer-links a{font-size:12px!important;line-height:1.65!important}
.footer-bottom p{font-size:10.5px!important;line-height:1.55!important}

/* Specificity fixes for legacy layers */
.case-studies .case-body>small,
.case-studies .case-cat,
.case-studies .case-metric span{
  font-family:var(--type-ui)!important;
  font-size:10px!important;
  line-height:1.4!important;
  letter-spacing:.055em!important;
  font-weight:650!important;
}
.case-studies .case-metric strong{
  font-family:var(--type-display)!important;
  font-weight:750!important;
  line-height:1.1!important;
  letter-spacing:-.035em!important;
}
.case-inquiry-copy>span{font-family:var(--type-ui)!important;font-size:10px!important;line-height:1.3!important;letter-spacing:.11em!important}
.case-inquiry-copy h3{font-family:var(--type-display)!important;font-size:clamp(26px,2.6vw,36px)!important;line-height:1.22!important;font-weight:650!important}
.case-inquiry-copy p{font-size:14.5px!important;line-height:1.7!important}
.case-inquiry-btn{font-family:var(--type-body)!important;font-size:13px!important;font-weight:700!important}

.client-voice .voice-item blockquote{
  font-family:var(--type-display)!important;
  margin-top:44px!important;
  max-width:25ch!important;
  font-size:clamp(25px,2.6vw,36px)!important;
  line-height:1.42!important;
  letter-spacing:-.028em!important;
  font-weight:550!important;
}
.client-voice .voice-item p{font-family:var(--type-ui)!important;font-size:10.5px!important;line-height:1.45!important;letter-spacing:.1em!important}


/* Microcopy normalization: no meaningful UI copy below ~10px */
.sample-badge,.metric-row span,.metric-row small,.market-side-label small,.yt-action-flow article span,.guide-tags span,.guide-proof-note b,.guide-page figcaption,.case-image>span,.portfolio-meta span,.portfolio-meta b{
  font-family:var(--type-ui)!important;
  font-size:10px!important;
  line-height:1.35!important;
  letter-spacing:.08em!important;
  font-weight:650!important;
}
.metric-row span,.metric-row small{font-size:10.5px!important}
.yt-action-flow article p,.guide-proof-note p{font-size:12.5px!important;line-height:1.6!important}
.guide-tags span{padding:9px 12px!important}
.portfolio-meta span,.portfolio-meta b{font-size:10.5px!important}


/* Tablet */
@media(max-width:1100px){
  :root{--fs-body:15.5px;--fs-copy:15.5px;--fs-small:13px;--fs-caption:11.5px;--fs-label:10px}
  .hero h1{font-size:clamp(48px,7.2vw,70px)!important}
  .section-title,.identity-statement{font-size:clamp(36px,5.5vw,52px)!important}
  .voice-stage{min-height:420px!important}
  .voice-item blockquote{max-width:30ch!important}
  .final-scene h2{font-size:clamp(42px,7vw,66px)!important}
}

/* Mobile: readable, not miniaturized desktop */
@media(max-width:767px){
  :root{--fs-body:15px;--fs-copy:15px;--fs-small:13px;--fs-caption:11.5px;--fs-label:10px}
  body{line-height:1.68}
  .hero h1{font-size:clamp(40px,11.8vw,56px)!important;line-height:1.06!important;letter-spacing:-.045em!important}
  .section-title,.identity-statement{font-size:clamp(30px,8.6vw,40px)!important;line-height:1.18!important;letter-spacing:-.035em!important}
  .section-copy,.hero-desc,.contact-copy{font-size:15px!important;line-height:1.72!important}
  .eyebrow,.hero-kicker{font-size:10px!important;letter-spacing:.12em!important}
  .btn{font-size:13.5px!important}
  .proof-item strong{font-size:26px!important}
  .proof-item p{font-size:12.5px!important}
  .identity-side strong{font-size:29px!important}
  .lhn-card h3{font-size:17px!important}.lhn-card p{font-size:12px!important}.lhn-pills span{font-size:9.5px!important}
  .market-side-label b{font-size:38px!important}
  .case-body h3{font-size:20px!important}
  .case-metric strong{font-size:30px!important}
  .case-desc{font-size:13px!important}
  .voice-stage{min-height:440px!important}
  .client-voice .voice-item blockquote{margin-top:38px!important;max-width:none!important;font-size:clamp(22px,6.2vw,27px)!important;line-height:1.46!important}
  .client-voice .voice-item p{left:26px!important;right:26px!important;bottom:34px!important;font-size:10px!important;line-height:1.45!important}
  .case-inquiry-copy>span{font-size:10px!important}
  .case-inquiry-copy h3{font-size:25px!important}
  .case-inquiry-copy p{font-size:13.5px!important}
  
  .voice-item{padding:34px 26px 76px!important}
  .voice-item blockquote{margin-top:38px!important;max-width:none!important;font-size:clamp(22px,6.2vw,27px)!important;line-height:1.46!important}
  .voice-item p{left:26px!important;right:26px!important;bottom:34px!important;font-size:9.5px!important}
  .timeline-shell article b{font-size:16px!important}
  .timeline-shell article p{font-size:12.5px!important}
  .faq-q{font-size:15px!important}
  .faq-a p{font-size:13.5px!important}
  .final-scene h2{font-size:clamp(38px,11vw,54px)!important;line-height:1.07!important;letter-spacing:-.045em!important}
  .final-scene p{font-size:14.5px!important;line-height:1.7!important}
}

/* V8.1 — Case Study typography rebalance: metric meaning + result share one visual level */
.case-studies .case-body>small{
  font-size:11.5px!important;
  line-height:1.35!important;
  letter-spacing:.035em!important;
  font-weight:650!important;
}
.case-studies .case-cat{
  margin-top:9px!important;
  font-size:11.5px!important;
  line-height:1.45!important;
  letter-spacing:.015em!important;
  font-weight:500!important;
}
.case-studies .case-metric{
  display:flex!important;
  align-items:baseline!important;
  flex-wrap:wrap!important;
  gap:7px!important;
  margin-top:24px!important;
  padding-top:19px!important;
}
.case-studies .case-metric span,
.case-studies .case-metric strong{
  display:inline!important;
  margin:0!important;
  font-family:var(--type-display)!important;
  font-size:20px!important;
  line-height:1.35!important;
  letter-spacing:-.02em!important;
  word-break:keep-all!important;
}
.case-studies .case-metric span{
  color:rgba(248,229,207,.78)!important;
  font-weight:560!important;
}
.case-studies .case-metric strong{
  color:var(--orange-2)!important;
  font-weight:720!important;
}
.case-studies .case-desc{
  padding-top:20px!important;
  font-size:14px!important;
  line-height:1.72!important;
}
@media(max-width:640px){
  .case-studies .case-body>small,.case-studies .case-cat{font-size:11px!important}
  .case-studies .case-metric{gap:6px!important;margin-top:20px!important;padding-top:17px!important}
  .case-studies .case-metric span,.case-studies .case-metric strong{font-size:18px!important;line-height:1.4!important}
  .case-studies .case-desc{font-size:13.5px!important;padding-top:17px!important}
}


/* V8.3 — copy, readability and market-line polish */
.hero-desc .hero-desc-line{display:block;margin-bottom:10px}
.hero-desc strong{display:block}

/* Selected Work: keep the message editorial, not presentation-like. */
#work .section-title{max-width:10.5ch}
#work .section-copy{max-width:760px}

/* Platform headline must remain readable; only the key phrase is orange. */
#platforms .market-v2-head .section-title,
#platforms .market-v2-head .section-title > span{
  color:var(--cream)!important;
  -webkit-text-fill-color:var(--cream)!important;
  opacity:1!important;
}
#platforms .market-v2-head .section-title em{
  color:var(--orange)!important;
  -webkit-text-fill-color:var(--orange)!important;
  opacity:1!important;
}
#platforms .market-v2-head .section-copy{
  color:rgba(248,229,207,.72)!important;
}

/* Network routes begin at the LUEN hub perimeter, never through the hub. */
#platforms .market-map-lines{z-index:2!important;overflow:visible!important}
#platforms .market-map-lines path{
  stroke:rgba(244,125,53,.48)!important;
  stroke-width:1.55!important;
  stroke-dasharray:10 9!important;
  stroke-linecap:round!important;
  vector-effect:non-scaling-stroke;
}
#platforms .market-hub{z-index:5!important}

@media(max-width:767px){
  .hero-desc .hero-desc-line{margin-bottom:8px}
  #work .section-title{max-width:11ch}
}


/* V8.4 — continuous top ticker, Selected Work editorial balance, platform route cutout, section rhythm */

/* Top ticker now uses the exact same measured/cloned infinite-loop engine as the lower marquee. */
.top-strip{overflow:hidden!important;min-height:36px;display:flex;align-items:center}
.top-strip-track{display:flex;width:max-content;will-change:transform;align-items:center}
.top-strip-set{display:flex;flex:0 0 auto;align-items:center;gap:22px;padding-right:38px;white-space:nowrap;min-height:36px;color:var(--muted);font:650 10.5px/1 "Inter","Pretendard",sans-serif;letter-spacing:.105em;text-transform:uppercase}
.top-strip-set span{display:inline-flex;align-items:center;gap:11px}
.top-strip-set span i{display:block;width:5px;height:5px;border-radius:50%;background:var(--orange);box-shadow:0 0 10px rgba(244,125,53,.55);animation:statusPulse 2.5s ease-in-out infinite}
.top-strip-set b{color:var(--orange-2);font-weight:700}
.top-strip-set em{font-style:normal;color:rgba(248,229,207,.26)}

/* Selected Work: three intentional headline lines + a compact, readable copy block. */
#work .work-head{display:grid!important;grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr)!important;gap:clamp(70px,6vw,96px)!important;align-items:end!important}
#work .work-head>div{min-width:0}
#work .work-story-title{max-width:620px!important;font-size:clamp(42px,3.8vw,54px)!important;line-height:1.09!important;letter-spacing:-.05em!important}
#work .work-story-title>span{white-space:nowrap}
#work .work-story-copy{max-width:520px!important;margin:0 0 7px!important;font-size:15.5px!important;line-height:1.88!important;color:rgba(248,229,207,.68)!important}
#work .work-story-copy span{display:block}

/* Platform routes: SVG mask removes the centre completely; opaque hub prevents any bleed-through. */
#platforms .market-hub{background:radial-gradient(circle at 50% 34%,rgba(244,125,53,.17),rgba(13,8,5,1) 67%),#0d0805!important}
#platforms .market-map-lines path{stroke:rgba(244,125,53,.48)!important}

/* Tighten the handoff between LUEN Identity and Cross-border Platforms. */
#about.identity{padding-bottom:56px!important}
#platforms.market-network-v2{padding-top:64px!important}

@media(max-width:1280px){
  #work .work-head{grid-template-columns:1fr!important;gap:34px!important;align-items:start!important}
  #work .work-story-title{font-size:clamp(40px,6vw,54px)!important}
  #work .work-story-copy{margin:0!important;max-width:760px!important}
}
@media(max-width:767px){
  .top-strip-set{gap:17px;padding-right:28px;font-size:9.5px;min-height:34px}
  .top-strip{min-height:34px}
  #work .work-story-title{font-size:clamp(32px,9.7vw,42px)!important;line-height:1.14!important}
  #work .work-story-title>span{white-space:normal}
  #work .work-story-copy{font-size:14.5px!important;line-height:1.78!important}
  #work .work-story-copy span{display:inline}
  #work .work-story-copy span+span::before{content:" "}
  #about.identity{padding-bottom:44px!important}
  #platforms.market-network-v2{padding-top:52px!important}
}
@media(prefers-reduced-motion:reduce){.top-strip{overflow-x:auto}.top-strip-track{transform:none!important}.top-strip-set span i{animation:none!important}}


/* V8.5 — balanced platform spacing + full VIEW→ACTION signal loop */
@media(min-width:768px){
  #platforms .market-map{min-height:680px!important}
  #platforms .market-node{
    width:176px!important;min-width:176px!important;max-width:176px!important;
    min-height:64px;padding:15px 16px!important;border-radius:18px!important;
  }
  #platforms .market-node b{font-size:13px!important}
  #platforms .market-node span{font-size:10px!important;margin-top:9px!important}

  /* Japan: staggered outward fan with deliberate vertical breathing room. */
  #platforms .jp-ameba{left:22%!important;top:19%!important}
  #platforms .jp-youtube{left:5%!important;top:30%!important}
  #platforms .jp-instagram{left:14%!important;top:47%!important}
  #platforms .jp-tiktok{left:5%!important;top:65%!important}
  #platforms .jp-x{left:20%!important;top:76%!important}

  /* Korea: mirrored rhythm so cards never crowd each other. */
  #platforms .kr-google{left:auto!important;right:22%!important;top:19%!important}
  #platforms .kr-youtube{left:auto!important;right:5%!important;top:30%!important}
  #platforms .kr-instagram{left:auto!important;right:14%!important;top:47%!important}
  #platforms .kr-naver{left:auto!important;right:5%!important;top:65%!important}
}
@media(min-width:768px) and (max-width:1100px){
  #platforms .market-node{width:144px!important;min-width:144px!important;max-width:144px!important;padding:13px 14px!important}
  #platforms .jp-ameba{left:20%!important}
  #platforms .jp-youtube{left:3.5%!important}
  #platforms .jp-instagram{left:12%!important}
  #platforms .jp-tiktok{left:3.5%!important}
  #platforms .jp-x{left:18%!important}
  #platforms .kr-google{right:20%!important}
  #platforms .kr-youtube{right:3.5%!important}
  #platforms .kr-instagram{right:12%!important}
  #platforms .kr-naver{right:3.5%!important}
}

/* Performance graph: four equal stages, beginning with VIEW, run continuously left → right. */
.performance-dashboard .chart-line{
  stroke-dasharray:1200!important;stroke-dashoffset:1200!important;
  animation:v85ChartJourney 5.2s cubic-bezier(.42,0,.18,1) infinite!important;
}
.performance-dashboard .chart-stage{
  fill:var(--orange-2)!important;stroke:#120a06!important;stroke-width:3!important;
  opacity:.38;filter:drop-shadow(0 0 4px rgba(244,125,53,.35));
}




.performance-dashboard .chart-runner{
  fill:#ffb079!important;stroke:#120a06!important;stroke-width:2.5!important;
  filter:drop-shadow(0 0 9px rgba(255,155,93,.95));
}
@keyframes v85ChartJourney{
  0%,8%{stroke-dashoffset:1200}
  78%,94%{stroke-dashoffset:0}
  94.01%,100%{stroke-dashoffset:1200}
}
@keyframes v85StageView{0%,7%,15%{opacity:1;stroke-width:4}22%,100%{opacity:.38;stroke-width:3}}
@keyframes v85StageEngage{0%,27%{opacity:.38;stroke-width:3}34%,42%{opacity:1;stroke-width:4}49%,100%{opacity:.38;stroke-width:3}}
@keyframes v85StageSearch{0%,50%{opacity:.38;stroke-width:3}58%,66%{opacity:1;stroke-width:4}73%,100%{opacity:.38;stroke-width:3}}
@keyframes v85StageAction{0%,72%{opacity:.38;stroke-width:3}80%,90%{opacity:1;stroke-width:4}94%,100%{opacity:.38;stroke-width:3}}
@media(prefers-reduced-motion:reduce){
  .performance-dashboard .chart-line,.performance-dashboard .chart-stage{animation:none!important}
  .performance-dashboard .chart-line{stroke-dashoffset:0!important}
  .performance-dashboard .chart-stage{opacity:1!important}
  .performance-dashboard .chart-runner{display:none!important}
}


/* Hero network: narrow desktop column requires vertical separation. */
@media (min-width:1181px){
  .luen-hero-network{min-height:720px!important;}
  .luen-hero-network .lhn-korea{top:72px!important;}
  .luen-hero-network .lhn-hub{top:51%!important;}
  .luen-hero-network .lhn-japan{bottom:48px!important;}
}
/* Case-study content-type labels: long Korean proposal titles stay readable without looking like micro labels. */
.case-studies .case-body>small{
  font-family:var(--type-body)!important;
  font-size:11px!important;
  line-height:1.45!important;
  letter-spacing:.02em!important;
  font-weight:650!important;
  color:var(--orange)!important;
  word-break:keep-all;
}
@media(max-width:767px){
  .case-studies .case-body>small{font-size:10.5px!important;line-height:1.45!important;}
}


/* V8.7 desktop-only: keep market headings clear of the top platform cards. */
@media (min-width:1101px){
  #platforms .market-side-label.jp{left:78px!important;top:52px!important;}
  #platforms .market-side-label.kr{right:78px!important;top:52px!important;}
  #platforms .jp-ameba{left:22%!important;top:188px!important;}
  #platforms .kr-google{left:auto!important;right:22%!important;top:188px!important;}
}


/* V8.9 — Core Expertise / Content: image-free system visual */
.youtube-v2-head{align-items:end}
.luen-content-expertise-grid{
  display:grid;grid-template-columns:minmax(0,1.14fr) minmax(360px,.86fr);
  gap:42px;margin-top:68px;align-items:stretch;
}
.luen-content-system-v9{
  position:relative;min-height:520px;overflow:hidden;isolation:isolate;
  border:1px solid rgba(248,229,207,.13);border-radius:28px;
  background:
    radial-gradient(circle at 50% 50%,rgba(244,125,53,.13),transparent 31%),
    linear-gradient(150deg,rgba(13,8,5,.98),rgba(19,10,6,.94));
  box-shadow:0 30px 80px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.025);
}
.lcs-grid{position:absolute;inset:0;z-index:0;opacity:.27;background-image:linear-gradient(rgba(248,229,207,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(248,229,207,.045) 1px,transparent 1px);background-size:46px 46px;mask-image:linear-gradient(to bottom,#000,rgba(0,0,0,.38))}
.lcs-glow{position:absolute;left:50%;top:52%;width:270px;height:270px;z-index:0;transform:translate(-50%,-50%);border-radius:50%;border:1px solid rgba(244,125,53,.13);box-shadow:0 0 0 42px rgba(244,125,53,.02),0 0 64px rgba(244,125,53,.05);opacity:.8}
.lcs-head{position:absolute;left:26px;right:26px;top:24px;z-index:4;display:flex;align-items:center;justify-content:space-between;gap:18px;padding-bottom:18px;border-bottom:1px solid rgba(248,229,207,.09)}
.lcs-head span{font:700 10px/1 "Inter",sans-serif;letter-spacing:.16em;color:var(--orange-2)}
.lcs-head small{font:650 9px/1 "Inter",sans-serif;letter-spacing:.12em;color:rgba(248,229,207,.44);white-space:nowrap}
.lcs-route{position:absolute;inset:0;z-index:1;pointer-events:none}
.lcs-route-svg{position:absolute;left:5%;top:19%;width:90%;height:60%;overflow:visible}
.lcs-path-base{fill:none;stroke:rgba(244,125,53,.18);stroke-width:.9;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:4.2 6.8;vector-effect:non-scaling-stroke}
.lcs-path-flow{fill:none;stroke:#ff9b5d;stroke-width:1.85;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:32 240;stroke-dashoffset:260;opacity:0;vector-effect:non-scaling-stroke;filter:url(#lcsFlowGlow)}
.flow-1{animation:lcsFlowTravel 4.8s linear infinite 0s}
.flow-2{animation:lcsFlowTravel 4.8s linear infinite .96s}
.flow-3{animation:lcsFlowTravel 4.8s linear infinite 1.92s}
.flow-4{animation:lcsFlowTravel 4.8s linear infinite 2.88s}
@keyframes lcsFlowTravel{
  0%{stroke-dashoffset:260;opacity:0}
  10%{opacity:.55}
  28%{stroke-dashoffset:118;opacity:1}
  46%{stroke-dashoffset:0;opacity:.92}
  58%,100%{stroke-dashoffset:-18;opacity:0}
}
.lcs-node{position:absolute;z-index:3;width:118px;min-height:94px;padding:16px 14px 14px;border:1px solid rgba(248,229,207,.13);border-radius:20px;background:linear-gradient(145deg,rgba(15,9,6,.96),rgba(10,6,4,.91));box-shadow:0 16px 38px rgba(0,0,0,.25),inset 0 1px 0 rgba(255,255,255,.025);transform:translate(-50%,-50%);text-align:left;animation:lcsNodeGlow 4.8s linear infinite;--pulse-delay:0s}
@keyframes lcsNodeGlow{
  0%,100%{transform:translate(-50%,-50%) scale(1);border-color:rgba(248,229,207,.13);box-shadow:0 16px 38px rgba(0,0,0,.25),inset 0 1px 0 rgba(255,255,255,.025)}
  8%,14%{transform:translate(-50%,-50%) scale(1.02);border-color:rgba(255,155,93,.74);box-shadow:0 0 0 1px rgba(255,155,93,.06) inset,0 18px 44px rgba(0,0,0,.34),0 0 28px rgba(244,125,53,.22)}
  22%,92%{transform:translate(-50%,-50%) scale(1);border-color:rgba(248,229,207,.13);box-shadow:0 16px 38px rgba(0,0,0,.25),inset 0 1px 0 rgba(255,255,255,.025)}
}
.lcs-node>span{display:block;font:700 8.5px/1 "Inter",sans-serif;letter-spacing:.14em;color:var(--orange);margin-bottom:12px}
.lcs-node>b{display:block;font:750 13px/1 "Inter",sans-serif;letter-spacing:.08em;color:var(--cream)}
.lcs-node>small{display:block;margin-top:10px;font-size:11px;line-height:1.3;color:rgba(248,229,207,.48);word-break:keep-all}
.lcs-brand{left:9%;top:60%;--pulse-delay:0s;animation-delay:var(--pulse-delay)}.lcs-creator{left:29%;top:31%;--pulse-delay:.96s;animation-delay:var(--pulse-delay)}.lcs-scene{left:50%;top:51%;width:142px;min-height:118px;padding:20px 18px;border-color:rgba(244,125,53,.56);background:radial-gradient(circle at 50% 20%,rgba(255,155,93,.11),transparent 50%),linear-gradient(145deg,rgba(61,28,14,.92),rgba(24,13,8,.98));box-shadow:0 0 0 1px rgba(255,155,93,.04) inset,0 18px 46px rgba(0,0,0,.32),0 0 30px rgba(244,125,53,.08);--pulse-delay:1.92s;animation:lcsSceneGlow 4.8s linear infinite var(--pulse-delay)}
@keyframes lcsSceneGlow{
  0%,100%{transform:translate(-50%,-50%) scale(1);border-color:rgba(244,125,53,.56);box-shadow:0 0 0 1px rgba(255,155,93,.04) inset,0 18px 46px rgba(0,0,0,.32),0 0 30px rgba(244,125,53,.08)}
  8%,14%{transform:translate(-50%,-50%) scale(1.025);border-color:rgba(255,155,93,.92);box-shadow:0 0 0 1px rgba(255,155,93,.08) inset,0 22px 54px rgba(0,0,0,.34),0 0 40px rgba(244,125,53,.26)}
  22%,92%{transform:translate(-50%,-50%) scale(1);border-color:rgba(244,125,53,.56);box-shadow:0 0 0 1px rgba(255,155,93,.04) inset,0 18px 46px rgba(0,0,0,.32),0 0 30px rgba(244,125,53,.08)}
}
.lcs-scene>b{font-size:16px;color:#ff9b5d}.lcs-scene>small{color:rgba(248,229,207,.62)}
.lcs-content{left:71%;top:33%;--pulse-delay:2.88s;animation-delay:var(--pulse-delay)}.lcs-action{left:91%;top:57%;--pulse-delay:3.84s;animation-delay:var(--pulse-delay)}
.lcs-caption{position:absolute;left:26px;right:26px;bottom:24px;z-index:4;display:flex;align-items:center;justify-content:center;gap:13px;padding-top:18px;border-top:1px solid rgba(248,229,207,.09);font-size:11.5px;line-height:1.4;color:rgba(248,229,207,.48);word-break:keep-all}
.lcs-caption i{font-style:normal;color:rgba(244,125,53,.62)}.lcs-caption strong{font-weight:650;color:rgba(248,229,207,.82)}
.content-design-flow-v9{min-height:520px!important;padding:22px 24px!important;background:linear-gradient(180deg,rgba(17,9,6,.60),rgba(10,6,4,.76))!important}
.content-design-flow-v9 article{padding:18px 14px 18px 54px!important}
.content-design-flow-v9 article b{font-size:13px!important;letter-spacing:.07em!important}
.content-design-flow-v9 article p{font-size:12.8px!important;line-height:1.58!important;max-width:36ch;word-break:keep-all}
.content-thesis{margin-top:42px!important}
@media(max-width:1180px){.luen-content-expertise-grid{grid-template-columns:1fr;gap:28px}.luen-content-system-v9,.content-design-flow-v9{min-height:500px!important}}
@media(max-width:767px){.luen-content-expertise-grid{margin-top:44px}.luen-content-system-v9{min-height:620px}.lcs-head{align-items:flex-start;flex-direction:column}.lcs-head small{white-space:normal;line-height:1.5}.lcs-route{display:none}.lcs-glow{width:230px;height:230px;top:48%}.lcs-node{width:132px}.lcs-brand{left:25%;top:30%}.lcs-creator{left:73%;top:30%}.lcs-scene{left:50%;top:49%}.lcs-content{left:25%;top:68%}.lcs-action{left:73%;top:68%}.lcs-caption{font-size:10.5px;gap:8px;flex-wrap:wrap}.content-design-flow-v9{min-height:auto!important}.content-thesis{flex-wrap:wrap;line-height:1.8!important}}
@media(prefers-reduced-motion:reduce){.lcs-path-flow,.lcs-node,.lcs-scene{animation:none!important}.lcs-glow{animation:none!important}}


/* V9 — real client name wall, monochrome and seamless measured loop */
.brand-wall{padding:76px 0 82px;background:#090503;border-block:1px solid var(--line);overflow:hidden}
.brand-wall-head{display:grid;grid-template-columns:minmax(0,1fr) minmax(300px,.8fr);align-items:end;gap:64px;margin-bottom:34px}
.brand-wall-head h3{margin-top:10px;font-family:var(--type-display,"Pretendard Variable","Pretendard",sans-serif)!important;font-size:clamp(28px,2.6vw,38px)!important;font-weight:700!important;line-height:1.12!important;letter-spacing:-.04em!important;color:var(--cream)!important}
.brand-wall-head p{justify-self:end;max-width:430px;margin:0;font-size:14px!important;line-height:1.7!important;color:rgba(248,229,207,.50)!important}
.brand-viewport{position:relative;overflow:hidden;width:100%;-webkit-mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent)}
.brand-track{display:flex!important;width:max-content!important;gap:0!important;animation:none!important;will-change:transform}
.brand-set{display:flex!important;flex:0 0 auto!important;align-items:center;gap:18px!important;padding-right:18px!important}
.client-logo{display:grid;place-items:center;min-width:214px;height:86px;padding:0 28px;border:1px solid rgba(248,229,207,.105);border-radius:16px;background:rgba(255,255,255,.006);color:rgba(248,229,207,.50);white-space:nowrap;transition:color .28s ease,border-color .28s ease,background .28s ease,transform .28s ease}
.client-logo:hover{color:rgba(248,229,207,.94);border-color:rgba(248,229,207,.20);background:rgba(255,255,255,.018);transform:translateY(-2px)}
.client-cj{font:800 21px/1 "Pretendard Variable","Pretendard",sans-serif;letter-spacing:-.035em}
.client-gangneung{font:650 18px/1 "Pretendard Variable","Pretendard",sans-serif;letter-spacing:-.035em;min-width:246px}
.client-bibigo{font:700 24px/1 Georgia,"Times New Roman",serif;letter-spacing:-.035em}
.client-eco{font:800 17px/1 "Inter",sans-serif;letter-spacing:.09em;min-width:224px}
.client-confier{font:500 25px/1 Georgia,"Times New Roman",serif;letter-spacing:.015em}
.client-quadthera{font:650 22px/1 "Inter",sans-serif;letter-spacing:-.035em;min-width:228px}
@media(max-width:820px){.brand-wall-head{grid-template-columns:1fr;gap:16px}.brand-wall-head p{justify-self:start}.client-logo{min-width:176px;height:76px;padding:0 22px}.client-gangneung{min-width:220px}.client-eco,.client-quadthera{min-width:196px}}


/* V9.2 — Core Expertise headline/copy spacing matches Real Deliverable rhythm. */
@media(max-width:1100px){
  #youtube .youtube-v2-head{gap:0!important;}
  #youtube .youtube-v2-head .section-copy{margin:22px 0 0!important;}
}


/* V9.3 — real recorded performance snapshots, no fabricated D1/D3/D30 points */
.performance-growth-v93 .chart-head{align-items:center}
.performance-growth-v93 .chart-head b{font-size:8px;letter-spacing:.12em;color:var(--orange)!important}
.performance-growth-v93 .growth-path-base-v93{fill:none;stroke:rgba(244,125,53,.14);stroke-width:2;stroke-linecap:round;vector-effect:non-scaling-stroke}
.performance-growth-v93 .growth-line-v93{stroke-dasharray:1200!important;stroke-dashoffset:1200!important;animation:v93GrowthDraw 5.4s cubic-bezier(.42,0,.18,1) infinite!important}
.performance-growth-v93 .growth-stage{fill:var(--orange-2)!important;stroke:#120a06!important;stroke-width:3!important;opacity:.42;filter:drop-shadow(0 0 4px rgba(244,125,53,.35))}
.performance-growth-v93 .growth-stage-upload{animation:v93StageUpload 5.4s linear infinite}
.performance-growth-v93 .growth-stage-7d{animation:v93Stage7d 5.4s linear infinite}
.performance-growth-v93 .growth-stage-later{animation:v93StageLater 5.4s linear infinite}
.performance-growth-v93 .growth-value{font:700 10px/1 "Inter",sans-serif;letter-spacing:.06em;fill:rgba(255,176,121,.88)}
.performance-growth-v93 .growth-labels-v93{display:grid!important;grid-template-columns:1fr 1fr 1fr!important;align-items:center}
.performance-growth-v93 .growth-labels-v93 span:nth-child(1){text-align:left}
.performance-growth-v93 .growth-labels-v93 span:nth-child(2){text-align:center}
.performance-growth-v93 .growth-labels-v93 span:nth-child(3){text-align:right}
@keyframes v93GrowthDraw{0%,8%{stroke-dashoffset:1200}82%,94%{stroke-dashoffset:0}94.01%,100%{stroke-dashoffset:1200}}
@keyframes v93StageUpload{0%,7%,15%{opacity:1;stroke-width:4}22%,100%{opacity:.42;stroke-width:3}}
@keyframes v93Stage7d{0%,45%{opacity:.42;stroke-width:3}54%,64%{opacity:1;stroke-width:4}72%,100%{opacity:.42;stroke-width:3}}
@keyframes v93StageLater{0%,76%{opacity:.42;stroke-width:3}84%,92%{opacity:1;stroke-width:4}96%,100%{opacity:.42;stroke-width:3}}
@media(max-width:767px){.performance-growth-v93 .chart-head{align-items:flex-start;flex-direction:column;gap:8px}.performance-growth-v93 .growth-value{font-size:8px}}
@media(prefers-reduced-motion:reduce){.performance-growth-v93 .growth-line-v93,.performance-growth-v93 .growth-stage{animation:none!important}.performance-growth-v93 .growth-line-v93{stroke-dashoffset:0!important}.performance-growth-v93 .growth-stage{opacity:1!important}.performance-growth-v93 .growth-runner-v93{display:none!important}}


/* V9.4 — actual client feedback, anonymous by default */
.client-voice .voice-left .section-copy{max-width:470px}
.client-voice .actual-voice-badge{color:rgba(248,229,207,.72)!important;border-color:rgba(248,229,207,.14)!important;background:rgba(248,229,207,.018)!important}
.client-voice .voice-stage{min-height:540px!important}
.client-voice .voice-item{padding:48px 54px 88px!important}
.client-voice .voice-item blockquote{margin-top:54px!important;max-width:31ch!important;font-size:clamp(23px,1.95vw,34px)!important;line-height:1.3!important;letter-spacing:-.035em!important;text-wrap:pretty;word-break:keep-all}
.client-voice .voice-item p{left:54px!important;right:250px!important;bottom:38px!important}
.client-voice .voice-dots{right:38px!important;bottom:38px!important;gap:5px!important;max-width:180px!important;flex-wrap:wrap!important;justify-content:flex-end!important}
.client-voice .voice-dots button{width:5px!important;height:5px!important;opacity:.8}
.client-voice .voice-dots button.active{width:17px!important;border-radius:999px!important}
@media(max-width:1100px){
  .client-voice .voice-stage{min-height:520px!important}
  .client-voice .voice-item blockquote{max-width:30ch!important;font-size:clamp(22px,2.8vw,30px)!important}
}
@media(max-width:767px){
  .client-voice .voice-stage{min-height:560px!important}
  .client-voice .voice-item{padding:32px 22px 100px!important}
  .client-voice .voice-item blockquote{margin-top:38px!important;max-width:none!important;font-size:21px!important;line-height:1.42!important}
  .client-voice .voice-item p{left:22px!important;right:22px!important;bottom:64px!important;font-size:8.5px!important}
  .client-voice .voice-dots{left:22px!important;right:22px!important;bottom:22px!important;max-width:none!important;justify-content:flex-start!important}
}


/* V9.5 — FAQ: real pre-contact questions + conversion CTA */
.faq-intro .section-title{max-width:9.8em}
.faq-intro .section-copy{max-width:35em;line-height:1.8}
.faq-q{min-height:88px!important;padding:0 8px!important}
.faq-q>span:first-child{max-width:92%;word-break:keep-all}
.faq-a p{padding:0 64px 28px 8px!important;max-width:760px;color:rgba(248,229,207,.58)!important}
.faq-conversion{margin-top:30px;padding:28px 30px;border:1px solid rgba(244,125,53,.24);border-radius:20px;background:linear-gradient(135deg,rgba(244,125,53,.07),rgba(255,255,255,.01));display:flex;align-items:center;justify-content:space-between;gap:28px}
.faq-conversion p{margin:0;max-width:560px;font-size:13px;line-height:1.75;color:rgba(248,229,207,.56);word-break:keep-all}
.faq-conversion p strong{color:rgba(248,229,207,.9);font-weight:650}
.faq-cta{display:inline-flex;align-items:center;gap:14px;flex:0 0 auto;padding:15px 20px;border-radius:999px;background:var(--orange);color:#120b07;font:750 13px/1 "Pretendard Variable","Pretendard","Inter",sans-serif;letter-spacing:-.02em;transition:transform .22s ease,filter .22s ease}
.faq-cta:hover{transform:translateY(-2px);filter:brightness(1.06)}
.faq-cta span{font-family:"Inter",sans-serif;font-size:15px}
@media(max-width:1100px){.faq-layout{grid-template-columns:.78fr 1.22fr;gap:54px}.faq-conversion{align-items:flex-start;flex-direction:column}.faq-cta{align-self:flex-start}}
@media(max-width:767px){.faq-conversion{padding:22px 20px}.faq-cta{white-space:normal;line-height:1.35}.faq-q{min-height:78px!important}.faq-a p{padding-right:22px!important}}

@media(max-width:1240px) and (min-width:768px){.luen-content-expertise-grid{grid-template-columns:1fr!important;gap:28px!important}.luen-content-system-v9,.content-design-flow-v9{min-height:500px!important}}
/* =========================================================
   V10 MOBILE / TABLET RESPONSIVE SYSTEM
   Desktop V9.7 (>=1101px) remains the visual baseline.
   ========================================================= */
@media (max-width:1100px){
  :root{--mobile-gutter:clamp(22px,4vw,42px)}
  .container{width:min(100% - (var(--mobile-gutter) * 2),960px)}
  .hero{padding-top:138px;padding-bottom:96px;min-height:auto}
  .hero-layout{grid-template-columns:1fr;gap:64px}
  .hero-layout>div:first-child{max-width:820px}
  .hero h1{font-size:clamp(62px,9vw,86px);max-width:820px}
  .hero-desc{max-width:760px}
  .luen-hero-network{width:min(100%,760px);justify-self:center}
  .work-head,.market-v2-head,.youtube-v2-head,.case-head,.campaign-v2-head,.process-v2-head{align-items:start}
  .identity{padding-top:116px}
  .identity-signature{margin-top:56px}
  .guide-layout,.performance-layout,.voice-layout{grid-template-columns:1fr;gap:46px}
  .guide-copy,.performance-copy,.voice-left{max-width:760px}
  .guide-docs{width:min(100%,760px);justify-self:center}
  .performance-dashboard,.voice-stage{width:100%}
  .contact-layout{grid-template-columns:1fr;gap:46px}
  .contact-layout>div:first-child{max-width:760px}
  .contact-form{width:100%}

  /* Tablet-safe platform layout: removes all absolute-position collisions. */
  .market-map{
    width:min(100%,820px);margin:56px auto 0;min-height:0!important;
    display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr));
    grid-auto-rows:auto;gap:14px;padding:34px 28px 32px;
    align-items:stretch;overflow:hidden;
  }
  .market-map-lines{display:none!important}
  .market-side-label,.market-hub,.market-node,.market-map-caption{
    position:relative!important;left:auto!important;right:auto!important;top:auto!important;bottom:auto!important;
    transform:none!important;width:auto!important;min-width:0!important;
  }
  #platforms .market-node{left:auto!important;right:auto!important;top:auto!important;bottom:auto!important;transform:none!important}
  .market-side-label{grid-column:1/-1;padding:4px 2px 10px;gap:7px!important}
  .market-side-label.jp{grid-row:1;text-align:left!important}
  .market-side-label.kr{grid-row:7;text-align:left!important;margin-top:18px}
  .market-side-label b{font-size:44px!important;line-height:.9}
  .market-side-label span{font-size:13px!important}
  .market-side-label small{font-size:8px!important;line-height:1.45!important}
  .market-hub{grid-column:1/-1;grid-row:6;justify-self:center;width:164px!important;height:164px!important;margin:22px 0 10px;transform:none!important}
  .market-node{display:flex!important;flex-direction:column;justify-content:center;min-height:86px;padding:16px 17px!important;border-radius:17px!important}
  .market-node b{font-size:13px!important}.market-node span{font-size:10px!important;margin-top:8px!important}
  .jp-youtube{grid-column:1;grid-row:2}.jp-ameba{grid-column:2;grid-row:2}
  .jp-instagram{grid-column:1;grid-row:3}.jp-tiktok{grid-column:2;grid-row:3}
  .jp-x{grid-column:1/-1;grid-row:4;width:calc(50% - 7px)!important;justify-self:center}
  .kr-google{grid-column:1;grid-row:8}.kr-youtube{grid-column:2;grid-row:8}
  .kr-instagram{grid-column:1;grid-row:9}.kr-naver{grid-column:2;grid-row:9}
  .market-map-caption{grid-column:1/-1;grid-row:10;justify-self:center;margin-top:22px;white-space:normal!important;text-align:center!important;font-size:7px!important}
  .market-map::before{
    content:"";position:absolute;left:50%;top:27%;bottom:24%;width:1px;
    background:linear-gradient(to bottom,transparent,rgba(244,125,53,.18) 16%,rgba(244,125,53,.34) 50%,rgba(244,125,53,.18) 84%,transparent);
    z-index:0;pointer-events:none;
  }
  .market-map>*{z-index:1}
  .market-map-grid{z-index:0!important}

  .case-grid{grid-template-columns:1fr!important;gap:24px}
  .case-card{grid-column:auto!important}
  .case-inquiry-cta{gap:26px}
}

@media (max-width:767px){
  html{scroll-padding-top:74px}
  body{overflow-x:hidden}
  .container{width:calc(100% - 40px)}
  .top-strip{height:28px}
  #nav{height:66px}
  .nav-inner{width:calc(100% - 36px)}
  .logo{font-size:17px}
  .nav-links{display:none!important}
  .nav-contact{display:none!important}
  .hamburger{display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;gap:5px!important}
  .hamburger span{margin:0!important}

  /* Global mobile typography and rhythm */
  .eyebrow{font-size:9px;letter-spacing:.16em;margin-bottom:22px}
  .section-title{font-size:clamp(36px,10.7vw,47px)!important;line-height:1.08!important;letter-spacing:-.055em!important}
  .section-copy{font-size:14px!important;line-height:1.78!important;max-width:none!important}
  .title-two-line span{white-space:normal!important}
  .market-network-v2,.youtube-v2,.guide-proof,.performance-lab,.case-studies,.campaign-system-v2,.client-voice,.process-timeline-v2,.faq,.contact{padding:84px 0!important}

  /* Hero */
  .hero{padding:52px 0 76px!important;min-height:auto!important}
  .hero-layout{gap:48px!important}
  .hero-kicker{font-size:9px;margin-bottom:22px;letter-spacing:.15em}
  .hero h1{font-size:clamp(49px,14.2vw,64px)!important;line-height:1.01!important;letter-spacing:-.065em!important}
  .hero-desc{margin-top:24px!important;font-size:14px!important;line-height:1.75!important}
  .hero-desc-line{display:block}
  .hero-desc strong{display:block;margin-top:7px}
  .hero-cta{margin-top:28px!important;display:grid!important;grid-template-columns:1fr;gap:10px!important}
  .hero-cta .btn{width:100%;justify-content:center;min-height:50px}
  .hero-meta{margin-top:28px!important;display:grid!important;grid-template-columns:1fr 1fr;gap:14px 18px!important;font-size:8px!important}

  .luen-hero-network{
    min-height:0!important;height:auto!important;padding:22px 16px 26px!important;
    display:flex!important;flex-direction:column;align-items:center;gap:15px!important;
    border-radius:28px!important;overflow:hidden;
  }
  .lhn-links,.lhn-ring{display:none!important}
  .lhn-grid,.lhn-glow{position:absolute!important;inset:0!important}
  .luen-hero-network::after{
    content:"";position:absolute;left:50%;top:76px;bottom:38px;width:1px;z-index:0;
    background:linear-gradient(to bottom,transparent,rgba(244,125,53,.28) 18%,rgba(244,125,53,.13) 82%,transparent);
  }
  .lhn-status,.lhn-card,.lhn-hub{
    position:relative!important;left:auto!important;right:auto!important;top:auto!important;bottom:auto!important;
    transform:none!important;z-index:2!important;
  }
  .lhn-status{align-self:center;margin:0 0 4px!important;max-width:100%;font-size:8px!important;white-space:nowrap}
  .lhn-card{width:100%!important;max-width:none!important;padding:22px 20px!important;border-radius:22px!important}
  .lhn-card h3{font-size:22px!important}.lhn-card h3 span{font-size:13px!important}
  .lhn-card p{font-size:13px!important;line-height:1.7!important;margin-top:20px!important}
  .lhn-pills{margin-top:20px!important;gap:7px!important}.lhn-pills span{font-size:9px!important;padding:7px 10px!important}
  .lhn-hub{width:166px!important;height:126px!important;margin:2px 0!important;border-radius:25px!important}
  .lhn-hub strong{font-size:29px!important}.lhn-hub span{font-size:8px!important;margin-top:13px!important}

  /* Capability proof */
  .proof-strip{padding:0!important}
  .proof-grid{grid-template-columns:1fr 1fr!important}
  .proof-item{min-height:166px!important;padding:30px 18px 22px!important}
  .proof-item:nth-child(odd){border-left:1px solid var(--line)!important}
  .proof-item:nth-child(2n){border-right:1px solid var(--line)!important}
  .proof-item:nth-child(-n+2){border-bottom:1px solid var(--line)}
  .proof-item::before{left:18px;top:24px;width:6px;height:6px}
  .proof-kicker{left:36px;top:23px;font-size:7px!important;letter-spacing:.12em}
  .proof-item strong{font-size:28px!important}.proof-item p{font-size:10.5px!important;line-height:1.55!important;margin-top:9px!important}

  /* Selected Work */
  .work{padding:84px 0 72px!important}
  .work-head{display:block!important}
  .work-story-title{font-size:clamp(37px,11vw,48px)!important;line-height:1.08!important}
  .work-story-copy{margin-top:28px!important}
  .work-story-copy span{display:inline!important}
  .portfolio{margin-top:54px!important}
  .portfolio-lane{padding-bottom:42px!important}
  .portfolio-head{align-items:flex-end!important;padding-bottom:18px!important}
  .portfolio-head h3{font-size:20px!important}.portfolio-head small{display:none!important}
  .portfolio-card{flex-basis:min(78vw,320px)!important;border-radius:18px!important}
  .portfolio-card.portrait{flex-basis:min(48vw,190px)!important}
  .portfolio-track,.portfolio-set{gap:12px!important}

  /* Client wall */
  .brand-wall{padding:68px 0!important}
  .brand-wall-head{grid-template-columns:1fr!important;gap:12px!important}
  .brand-wall-head h3{font-size:27px!important}.brand-wall-head p{font-size:12px!important;line-height:1.65!important}
  .client-logo{min-width:160px!important;height:68px!important;padding:0 18px!important;font-size:16px!important}
  .client-gangneung{min-width:210px!important;font-size:15px!important}.client-eco,.client-quadthera{min-width:184px!important}

  /* Identity: vertical logic */
  .identity{padding:84px 0!important}
  .identity-purpose{margin-top:24px!important}
  .identity-signature{display:flex!important;flex-direction:column;margin-top:48px!important;min-height:0!important;border-block:1px solid var(--line)!important}
  .identity-side{width:100%;padding:36px 10px!important;text-align:left!important}
  .identity-side strong{font-size:34px!important;line-height:1.08!important;margin-top:16px!important}
  .identity-side p{font-size:12px!important;margin-top:14px!important}
  .identity-center{width:100%;height:190px!important;min-height:190px!important}
  .identity-core{width:132px!important;height:132px!important}.identity-core span{font-size:21px!important}
  .identity-line{width:1px!important;height:42px!important;left:50%!important;right:auto!important;top:auto!important;background:linear-gradient(to bottom,transparent,var(--orange),transparent)!important}
  .identity-line.left{top:0!important}.identity-line.right{bottom:0!important}
  .identity-audience{border-top:1px solid rgba(248,229,207,.07)}

  /* Cross-border Platform mobile map */
  .market-v2-head{display:block!important}.market-v2-head .section-copy{margin-top:28px!important}
  .market-map{margin-top:46px!important;width:100%!important;padding:26px 14px 28px!important;gap:10px!important;border-radius:24px!important}
  .market-side-label{padding:2px 4px 10px!important}
  .market-side-label.kr{margin-top:14px!important}
  .market-side-label b{font-size:38px!important}.market-side-label span{font-size:12px!important}.market-side-label small{font-size:7px!important}
  .market-node{min-height:76px!important;padding:14px 13px!important;border-radius:15px!important}
  .market-node b{font-size:12px!important}.market-node span{font-size:9.5px!important}
  .market-hub{width:144px!important;height:144px!important;margin:18px 0 8px!important}
  .market-hub span{font-size:25px!important}.market-hub small{font-size:7px!important}
  .market-map-caption{font-size:6.5px!important;line-height:1.6!important;margin-top:16px!important}

  /* Content design: stack the system in actual process order */
  .youtube-v2-head{display:block!important}.youtube-v2-head .section-copy{margin-top:28px!important}
  .luen-content-expertise-grid{margin-top:42px!important;display:grid!important;grid-template-columns:1fr!important;gap:22px!important}
  .luen-content-system-v9{min-height:0!important;height:auto!important;padding:22px 18px 24px!important;border-radius:24px!important;overflow:hidden}
  .lcs-head{position:relative!important;left:auto!important;right:auto!important;top:auto!important;display:flex!important;flex-direction:column!important;gap:10px!important;padding-bottom:20px!important;border-bottom:1px solid rgba(248,229,207,.08)}
  .lcs-head span{font-size:10px!important}.lcs-head small{font-size:7px!important;white-space:normal!important;line-height:1.55!important}
  .lcs-route,.lcs-glow{display:none!important}
  .lcs-node,.lcs-scene{
    position:relative!important;left:auto!important;right:auto!important;top:auto!important;bottom:auto!important;
    transform:none!important;width:100%!important;min-height:88px!important;margin-top:12px!important;
    padding:17px 18px!important;border-radius:17px!important;animation:lcsMobileNode 4.8s linear infinite!important;
  }
  .lcs-node>span{margin-bottom:9px!important}.lcs-node>b{font-size:13px!important}.lcs-node>small{margin-top:8px!important;font-size:10px!important}
  .lcs-scene{min-height:100px!important}
  .lcs-node:not(.lcs-action)::after{
    content:"";position:absolute;left:50%;bottom:-13px;width:2px;height:13px;z-index:4;
    background:linear-gradient(to bottom,rgba(244,125,53,.18),#ff9b5d,rgba(244,125,53,.18));
    background-size:100% 220%;animation:lcsMobileLine 1.35s linear infinite;
  }
  .lcs-brand{animation-delay:0s!important}.lcs-creator{animation-delay:.96s!important}.lcs-scene{animation-delay:1.92s!important}.lcs-content{animation-delay:2.88s!important}.lcs-action{animation-delay:3.84s!important}
  @keyframes lcsMobileNode{0%,88%,100%{border-color:rgba(248,229,207,.13);box-shadow:0 14px 30px rgba(0,0,0,.2)}8%,18%{border-color:rgba(255,155,93,.76);box-shadow:0 0 28px rgba(244,125,53,.18),0 14px 34px rgba(0,0,0,.28)}}
  @keyframes lcsMobileLine{0%{background-position:0 -110%}100%{background-position:0 110%}}
  .lcs-caption{position:relative!important;left:auto!important;right:auto!important;bottom:auto!important;margin-top:20px!important;padding:18px 4px 0!important;font-size:10px!important}
  .content-design-flow-v9{padding:20px 18px!important;border-radius:22px!important}
  .content-design-flow-v9 article{padding:18px 0 18px 42px!important;min-height:0!important}
  .content-design-flow-v9 article span{left:0!important;top:20px!important}
  .content-design-flow-v9 .yt-flow-line{left:27px!important;top:42px!important;bottom:42px!important}
  .content-design-flow-v9 article b{display:block!important;line-height:1.25!important}
  .content-design-flow-v9 article p{font-size:11px!important;line-height:1.65!important;max-width:none!important}
  .content-thesis{display:none!important}

  /* Real deliverable */
  .guide-layout{gap:34px!important}
  .guide-tags{gap:7px!important;margin-top:24px!important}.guide-tags span{font-size:7px!important;padding:8px 9px!important}
  .guide-proof-note{margin-top:24px!important;padding:16px!important}.guide-proof-note p{font-size:11px!important}
  .guide-docs{min-height:390px!important;width:100%!important;margin-top:4px}
  .guide-page{width:72%!important;max-width:285px!important;padding:8px 8px 30px!important}
  .page-back{right:4%!important;top:2%!important}.page-front{left:4%!important;top:15%!important}

  /* Performance */
  .performance-layout{gap:36px!important}
  .data-source-badge{margin-top:22px!important;font-size:7px!important;padding:8px 10px!important}
  .performance-dashboard{border-radius:22px!important}
  .metric-row{grid-template-columns:1fr 1fr!important}
  .metric-row article{min-height:124px!important;padding:20px 16px!important}
  .metric-row article:nth-child(2n){border-right:0!important}
  .metric-row article:nth-child(-n+2){border-bottom:1px solid var(--line)!important}
  .metric-row span{font-size:6.5px!important}.metric-row strong{font-size:34px!important;margin-top:17px!important}.metric-row small{font-size:6px!important;margin-top:9px!important}
  .chart-shell{padding:22px 14px 20px!important}.chart-head{flex-direction:column!important;align-items:flex-start!important;gap:8px!important;font-size:7px!important}
  .signal-chart{height:205px!important;margin-top:12px!important}
  .growth-value{font-size:8px!important}.chart-labels{font-size:6.5px!important}

  /* Case studies */
  .case-head{display:block!important}.case-head .section-copy{margin-top:28px!important}
  .case-grid{margin-top:42px!important;gap:18px!important}
  .case-card{grid-template-columns:1fr!important;border-radius:20px!important;min-height:0!important}
  .case-image{aspect-ratio:16/9!important;min-height:0!important}
  .case-body{padding:24px 20px 26px!important;min-height:0!important}
  .case-body small{font-size:7px!important}.case-body h3{font-size:25px!important;margin-top:12px!important;line-height:1.15!important;word-break:keep-all}
  .case-cat{font-size:10px!important;margin-top:8px!important}
  .case-metric{margin-top:24px!important;padding-top:20px!important}.case-metric span{font-size:9px!important}.case-metric strong{font-size:27px!important;line-height:1.15!important;margin-top:8px!important}
  .case-desc{font-size:12px!important;line-height:1.7!important;margin-top:16px!important}
  .case-inquiry-cta{margin-top:34px!important;padding:24px 20px!important;display:flex!important;flex-direction:column!important;align-items:flex-start!important}
  .case-inquiry-copy h3{font-size:23px!important}.case-inquiry-copy p{font-size:11.5px!important;line-height:1.65!important}
  .case-inquiry-btn{width:100%!important;justify-content:center!important;margin-top:4px!important}

  /* Campaign system */
  .campaign-v2-head{display:block!important}.campaign-v2-head .section-copy{margin-top:28px!important}
  .campaign-control{margin-top:42px!important;display:grid!important;grid-template-columns:1fr 1fr!important;border-radius:20px!important}
  .campaign-control article{min-height:158px!important;padding:20px 16px 18px!important;border-right:1px solid var(--line)!important;border-bottom:1px solid var(--line)!important}
  .campaign-control article:nth-child(2n){border-right:0!important}.campaign-control article:nth-last-child(-n+2){border-bottom:0!important}
  .campaign-control article b{margin-top:26px!important;font-size:11px!important}.campaign-control article p{font-size:9.5px!important;margin-top:10px!important}.campaign-control article small{left:16px!important;bottom:16px!important;font-size:6px!important}
  .campaign-rail{display:none!important}.campaign-output{margin-top:18px!important;padding:16px!important;gap:7px!important;font-size:7px!important}

  /* Client voice */
  .voice-layout{gap:34px!important}.voice-stage{min-height:455px!important;border-radius:22px!important}
  .voice-item{padding:28px 22px 70px!important}.voice-item blockquote{margin-top:34px!important;font-size:clamp(23px,6.5vw,29px)!important;line-height:1.42!important;letter-spacing:-.035em!important}
  .voice-item p{left:22px!important;right:68px!important;bottom:28px!important;font-size:6.5px!important;line-height:1.5!important}
  .voice-dots{right:22px!important;bottom:27px!important;gap:6px!important}.voice-dots button{width:6px!important;height:6px!important}

  /* Process */
  .process-v2-head{display:block!important}.process-v2-head .section-copy{margin-top:28px!important}
  .timeline-shell{margin-top:42px!important;grid-template-columns:1fr!important;border-radius:20px!important}
  .timeline-shell article{min-height:150px!important;padding:24px 20px!important;border-right:0!important;border-bottom:1px solid var(--line)!important}
  .timeline-shell article:last-child{border-bottom:0!important}.timeline-axis{display:none!important}

  /* FAQ */
  .faq-layout{grid-template-columns:1fr!important;gap:38px!important}
  .faq-intro .section-copy br{display:none}
  .faq-q{min-height:76px!important;padding:0 2px!important;gap:16px!important;font-size:14px!important;line-height:1.45!important}
  .faq-q>span:first-child{padding:18px 0!important}.faq-icon{flex:0 0 auto!important}
  .faq-a p{padding:0 32px 22px 0!important;font-size:12px!important;line-height:1.75!important}.faq-a p br{display:none}
  .faq-conversion{margin-top:26px!important;padding:20px 18px!important;gap:18px!important;border-radius:18px!important}
  .faq-conversion p{font-size:12px!important;line-height:1.7!important}.faq-cta{width:100%!important;justify-content:center!important;text-align:center!important}

  /* Final signature */
  .final-scene{min-height:570px!important;padding:90px 0!important}
  .final-scene-inner{text-align:left!important;align-items:flex-start!important}
  .final-scene h2{font-size:clamp(47px,13.3vw,62px)!important;line-height:1.02!important;letter-spacing:-.06em!important}
  .final-scene p{font-size:13px!important;line-height:1.75!important;margin-top:24px!important}.final-scene p br{display:none}
  .final-orbit.o1{width:230px!important;height:230px!important}.final-orbit.o2{width:360px!important;height:360px!important}
  .final-scene .btn{margin-top:28px!important;width:100%;justify-content:center}

  /* Contact */
  .contact-layout{gap:34px!important}
  .contact-copy{font-size:13px!important;line-height:1.75!important;margin-top:20px!important}
  .contact-form{padding:22px 18px!important;border-radius:20px!important}
  .form-grid{grid-template-columns:1fr!important;gap:14px!important}.field.full{grid-column:auto!important}
  .field label{font-size:10px!important}.field input,.field select,.field textarea{font-size:16px!important;min-height:48px!important;padding:13px 13px!important;border-radius:11px!important}.field textarea{min-height:130px!important}
  .form-submit{min-height:52px!important;margin-top:18px!important}

  /* Footer */
  footer{padding:32px 0!important}.footer-top,.footer-bottom{flex-direction:column!important;align-items:flex-start!important;gap:22px!important}.footer-links{gap:15px 18px!important}
}

@media (max-width:420px){
  .container{width:calc(100% - 32px)}
  .nav-inner{width:calc(100% - 28px)}
  .hero h1{font-size:clamp(45px,13.4vw,55px)!important}
  .hero-meta{grid-template-columns:1fr 1fr;gap:12px 10px!important}
  .lhn-card{padding:20px 17px!important}.lhn-card h3{font-size:20px!important}.lhn-card p{font-size:12.5px!important}
  .proof-item{min-height:156px!important;padding-left:15px!important;padding-right:12px!important}.proof-item::before{left:15px}.proof-kicker{left:31px;font-size:6.4px!important}.proof-item strong{font-size:25px!important}.proof-item p{font-size:9.8px!important}
  .portfolio-card{flex-basis:82vw!important}.portfolio-card.portrait{flex-basis:51vw!important}
  .market-map{padding-left:10px!important;padding-right:10px!important;gap:8px!important}.market-node{padding:13px 10px!important}.market-node b{font-size:11.5px!important}.market-node span{font-size:9px!important}
  .metric-row article{padding:18px 12px!important}.metric-row strong{font-size:30px!important}
  .case-metric strong{font-size:25px!important}
  .campaign-control article{padding-left:13px!important;padding-right:12px!important}.campaign-control article p{font-size:9px!important}
  .voice-stage{min-height:480px!important}.voice-item blockquote{font-size:22px!important}
}


/* =========================================================
   V10.1 MOBILE CONVERSION COMPACT PASS
   Reduces initial mobile scroll while preserving desktop V9.7.
   ========================================================= */
.mobile-case-more{display:none}
@media (max-width:767px){
  /* Shorter mobile rhythm: retain hierarchy, remove excess empty travel. */
  .market-network-v2,.youtube-v2,.guide-proof,.performance-lab,.case-studies,.campaign-system-v2,.client-voice,.process-timeline-v2,.faq,.contact{padding:66px 0!important}
  .work{padding:70px 0 58px!important}
  .brand-wall{padding:50px 0!important}
  .identity{padding:68px 0!important}
  .final-scene{min-height:480px!important;padding:70px 0!important}
  .portfolio{margin-top:42px!important}
  .portfolio-lane{padding-bottom:30px!important}
  .identity-signature{margin-top:38px!important}

  /* Cross-border platforms: compact market -> LUEN -> market system. */
  .market-v2-head .section-copy{margin-top:20px!important}
  .market-map{margin-top:34px!important;padding:20px 12px 22px!important;gap:8px!important;border-radius:22px!important}
  .market-side-label{padding:0 3px 6px!important;gap:5px!important}
  .market-side-label.jp{grid-row:1!important}
  .jp-youtube{grid-row:2!important}.jp-ameba{grid-row:2!important}
  .jp-instagram{grid-row:3!important}.jp-tiktok{grid-row:3!important}
  .jp-x{grid-row:4!important;width:calc(50% - 4px)!important}
  .market-hub{grid-row:5!important;width:132px!important;height:104px!important;margin:10px 0 8px!important;border-radius:26px!important}
  .market-side-label.kr{grid-row:6!important;margin-top:4px!important}
  .kr-google{grid-row:7!important}.kr-youtube{grid-row:7!important}
  .kr-instagram{grid-row:8!important}.kr-naver{grid-row:8!important}
  .market-map-caption{display:none!important;grid-row:9!important;margin-top:8px!important}
  .market-side-label b{font-size:31px!important}.market-side-label span{font-size:11px!important}.market-side-label small{font-size:6.4px!important;line-height:1.35!important}
  .market-node{min-height:61px!important;padding:10px 11px!important;border-radius:14px!important}
  .market-node b{font-size:11px!important}.market-node span{font-size:8.5px!important;margin-top:6px!important}
  .market-hub span{font-size:22px!important}.market-hub small{font-size:6.3px!important;margin-top:7px!important}
  .market-map::before{top:22%!important;bottom:18%!important}

  /* Content design already explains the five stages visually; remove duplicated mobile detail list. */
  .youtube-v2-head .section-copy{margin-top:20px!important}
  .luen-content-expertise-grid{margin-top:32px!important;gap:0!important}
  .content-design-flow-v9{display:none!important}
  .luen-content-system-v9{padding-bottom:20px!important}
  .lcs-node,.lcs-scene{min-height:78px!important;padding:14px 16px!important;margin-top:10px!important}
  .lcs-node:not(.lcs-action)::after{bottom:-11px!important;height:11px!important}
  .lcs-caption{margin-top:16px!important;padding-top:14px!important}

  /* Deliverable proof remains visible but takes less vertical real estate. */
  .guide-layout{gap:26px!important}
  .guide-docs{min-height:330px!important}
  .guide-page{max-width:248px!important}

  /* Case studies: three strongest examples first, remaining three on demand. */
  .case-grid{margin-top:34px!important}
  .case-grid .case-card:nth-child(n+4){display:none!important}
  .case-studies.show-all-cases .case-grid .case-card:nth-child(n+4){display:grid!important}
  .mobile-case-more{display:flex;width:100%;margin-top:18px;min-height:50px;align-items:center;justify-content:center;gap:10px;border:1px solid rgba(248,229,207,.15);border-radius:999px;background:rgba(248,229,207,.025);color:rgba(248,229,207,.78);font:650 12px/1 "Pretendard Variable","Pretendard",sans-serif;cursor:pointer}
  .mobile-case-more span{font-family:"Inter",sans-serif;color:var(--orange);transition:transform .25s ease}
  .case-studies.show-all-cases .mobile-case-more span{transform:rotate(180deg)}
  .case-inquiry-cta{margin-top:24px!important}

  /* Campaign system: horizontal cards expose the next step without six stacked blocks. */
  .campaign-v2-head .section-copy{margin-top:20px!important}
  .campaign-control{margin-top:32px!important;display:flex!important;grid-template-columns:none!important;gap:10px!important;overflow-x:auto!important;scroll-snap-type:x mandatory;padding:0 2px 10px!important;border:0!important;border-radius:0!important;background:transparent!important;-webkit-overflow-scrolling:touch;scrollbar-width:none}
  .campaign-control::-webkit-scrollbar{display:none}
  .campaign-control article{flex:0 0 min(72vw,270px)!important;min-height:168px!important;padding:20px 17px 18px!important;border:1px solid var(--line)!important;border-radius:18px!important;background:#0d0805!important;scroll-snap-align:start}
  .campaign-control article b{margin-top:28px!important}
  .campaign-control article small{left:17px!important;bottom:16px!important}
  .campaign-output{margin-top:10px!important}

  /* Process: same compact swipe logic; the sequence remains clear. */
  .process-v2-head .section-copy{margin-top:20px!important}
  .timeline-shell{margin-top:32px!important;display:flex!important;grid-template-columns:none!important;gap:10px!important;overflow-x:auto!important;scroll-snap-type:x mandatory;border:0!important;padding:0 2px 10px!important;scrollbar-width:none}
  .timeline-shell::-webkit-scrollbar{display:none}
  .timeline-shell article{flex:0 0 min(72vw,270px)!important;min-height:148px!important;padding:22px 18px!important;border:1px solid var(--line)!important;border-radius:18px!important;scroll-snap-align:start;background:rgba(255,255,255,.008)}
  .timeline-shell article:first-of-type{border-left:1px solid var(--line)!important}
  .timeline-shell article::before{left:18px!important}
  .timeline-shell article b{margin-top:28px!important}

  /* Remaining conversion sections: tighter without reducing tap targets. */
  .voice-stage{min-height:430px!important}
  .faq-layout{gap:28px!important}
  .faq-q{min-height:64px!important}
  .faq-q>span:first-child{padding:14px 0!important}
  .faq-conversion{margin-top:20px!important}
  .contact-layout{gap:28px!important}
}
@media (max-width:420px){
  .market-node{min-height:58px!important;padding:9px 9px!important}
  .market-hub{width:124px!important;height:98px!important}
  .campaign-control article,.timeline-shell article{flex-basis:78vw!important}
}



/* =========================================================
   V10.2 MOBILE POLISH / REAL-DEVICE FIXES
   Real-device fixes only; desktop V9.7 remains unchanged.
   ========================================================= */
@media (max-width:767px){
  /* 01 Hero network — one continuous glow, no split background seam. */
  .luen-hero-network::after{display:none!important}
  .lhn-glow{
    left:50%!important;right:auto!important;top:49%!important;bottom:auto!important;inset:auto!important;
    width:118%!important;height:62%!important;
    transform:translate(-50%,-50%)!important;
    background:radial-gradient(ellipse at center,rgba(244,125,53,.145) 0%,rgba(244,125,53,.07) 34%,rgba(244,125,53,.025) 56%,transparent 74%)!important;
    filter:blur(13px)!important;opacity:.9!important;
    animation:lhnMobileGlow 6s ease-in-out infinite!important;
  }
  @keyframes lhnMobileGlow{
    0%,100%{transform:translate(-50%,-50%) scale(.98)!important;opacity:.68}
    50%{transform:translate(-50%,-50%) scale(1.035)!important;opacity:1}
  }

  /* 02 Ticker -> capability proof breathing room and clearer metric hierarchy. */
  .proof-strip{padding:26px 0 0!important;border-top:0!important}
  .proof-item{min-height:172px!important;padding:58px 18px 22px!important}
  .proof-item::before{top:25px!important;left:18px!important;width:6px!important;height:6px!important}
  .proof-kicker{top:24px!important;left:38px!important;line-height:1.15!important}
  .proof-item strong{min-height:0!important;margin:0!important;line-height:1!important}
  .proof-item p{margin-top:12px!important}

  /* 03 Selected Work — exact set spacing for a truly seamless measured loop. */
  .portfolio-track{gap:0!important}
  .portfolio-set{gap:12px!important;padding-right:12px!important}

  /* 04 Identity emphasis line — same left alignment on both sides. */
  .identity-audience strong::after{
    left:0!important;right:auto!important;
    background:linear-gradient(90deg,var(--orange),transparent)!important;
  }

  /* 05 Cross-border Platforms — strict, repeatable card rhythm. */
  .market-map{row-gap:12px!important;column-gap:12px!important;padding:22px 14px 24px!important}
  .market-side-label{padding:0 4px 8px!important;margin:0!important}
  .market-side-label.kr{margin-top:8px!important}
  .market-node{height:74px!important;min-height:74px!important;padding:12px 13px!important}
  .jp-x{width:calc(50% - 6px)!important;justify-self:center!important}
  .market-hub{width:132px!important;height:104px!important;margin:8px 0!important}
  .market-map::before{top:21%!important;bottom:17%!important;opacity:.72}

  /* 06 Content Design — one pulse travels 01 -> 05, then repeats. */
  .lcs-node,.lcs-scene{
    --step-delay:0s;
    background:linear-gradient(145deg,rgba(15,9,6,.96),rgba(10,6,4,.92));
    border-color:rgba(248,229,207,.13);
    box-shadow:0 14px 30px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.02);
    animation:lcsMobileStepPulse 5.5s linear infinite both!important;
    animation-delay:var(--step-delay)!important;
  }
  .lcs-brand{--step-delay:0s!important}
  .lcs-creator{--step-delay:1.1s!important}
  .lcs-scene{--step-delay:2.2s!important}
  .lcs-content{--step-delay:3.3s!important}
  .lcs-action{--step-delay:4.4s!important}
  .lcs-scene>b{color:#ff9b5d!important}
  @keyframes lcsMobileStepPulse{
    0%{
      border-color:rgba(248,229,207,.13);
      box-shadow:0 14px 30px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.02);
      background:linear-gradient(145deg,rgba(15,9,6,.96),rgba(10,6,4,.92));
      transform:scale(1)
    }
    4%,13%{
      border-color:rgba(255,155,93,.86);
      box-shadow:0 0 0 1px rgba(255,155,93,.08) inset,0 0 34px rgba(244,125,53,.22),0 16px 34px rgba(0,0,0,.30);
      background:radial-gradient(circle at 50% 28%,rgba(244,125,53,.16),transparent 58%),linear-gradient(145deg,rgba(29,14,8,.98),rgba(12,7,5,.96));
      transform:scale(1.012)
    }
    19%,100%{
      border-color:rgba(248,229,207,.13);
      box-shadow:0 14px 30px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.02);
      background:linear-gradient(145deg,rgba(15,9,6,.96),rgba(10,6,4,.92));
      transform:scale(1)
    }
  }
  .lcs-node:not(.lcs-action)::after{
    opacity:.18;
    background-image:linear-gradient(to bottom,rgba(244,125,53,.08),#ff9b5d,rgba(244,125,53,.08))!important;
    background-size:100% 260%!important;
    animation:lcsMobileConnector 5.5s linear infinite both!important;
    animation-delay:calc(var(--step-delay) + .48s)!important;
  }
  @keyframes lcsMobileConnector{
    0%,3%{opacity:.12;background-position:0 -125%}
    5%,13%{opacity:1;background-position:0 110%;box-shadow:0 0 10px rgba(244,125,53,.35)}
    18%,100%{opacity:.12;background-position:0 125%;box-shadow:none}
  }

  /* 07 Client Voice — keep attribution close to the quote instead of pinning it to the floor. */
  .client-voice .voice-stage{min-height:390px!important}
  .client-voice .voice-item{display:flex!important;flex-direction:column!important;justify-content:flex-start!important;padding:26px 20px 60px!important}
  .client-voice .voice-item blockquote{margin-top:30px!important;font-size:clamp(19px,5.35vw,22px)!important;line-height:1.46!important}
  .client-voice .voice-item p{position:static!important;left:auto!important;right:auto!important;bottom:auto!important;margin-top:26px!important;font-size:7px!important;line-height:1.5!important}
  .client-voice .voice-dots{left:20px!important;right:20px!important;bottom:18px!important;justify-content:flex-start!important}

  /* 08 FAQ -> Final Scene — continuous dark-brown fade, no hard color jump. */
  .faq{
    background:linear-gradient(180deg,#0c0705 0%,#0b0604 70%,#090503 100%)!important;
    padding-bottom:72px!important;
  }
  .faq-conversion{
    background:linear-gradient(135deg,rgba(244,125,53,.055),rgba(9,5,3,.20))!important;
  }
  .final-scene{background:#090503!important;border-top:0!important}
  .contact .section-title{max-width:8.4em!important}
}

@media (max-width:420px){
  .hero{padding-top:46px!important}
  .proof-item{min-height:166px!important;padding:56px 14px 20px!important}
  .proof-item::before{left:14px!important}.proof-kicker{left:33px!important}
  .market-map{padding-left:12px!important;padding-right:12px!important;row-gap:11px!important;column-gap:11px!important}
  .market-node{height:72px!important;min-height:72px!important;padding:11px 11px!important}
  .jp-x{width:calc(50% - 5.5px)!important}
  .client-voice .voice-stage{min-height:384px!important}
  .client-voice .voice-item{padding-left:18px!important;padding-right:18px!important}
  .client-voice .voice-dots{left:18px!important;right:18px!important}
}

@media (max-width:767px){
  /* V10.4 — center the mobile platform card system around the LUEN hub. */
  #platforms .market-map{
    grid-template-columns:repeat(2,minmax(118px,124px))!important;
    justify-content:center!important;
    row-gap:12px!important;
    column-gap:12px!important;
    padding-left:16px!important;
    padding-right:16px!important;
  }
  #platforms .market-side-label{
    grid-column:1 / -1!important;
    justify-self:start!important;
    width:100%!important;
  }
  #platforms .market-node{
    width:124px!important;
    max-width:124px!important;
    min-width:124px!important;
    justify-self:center!important;
  }
  #platforms .jp-youtube{grid-column:1!important;grid-row:2!important}
  #platforms .jp-ameba{grid-column:2!important;grid-row:2!important}
  #platforms .jp-instagram{grid-column:1!important;grid-row:3!important}
  #platforms .jp-tiktok{grid-column:2!important;grid-row:3!important}
  #platforms .jp-x{grid-column:1 / -1!important;grid-row:4!important;width:124px!important;max-width:124px!important;justify-self:center!important}
  #platforms .market-hub{grid-column:1 / -1!important;grid-row:5!important;justify-self:center!important;margin:10px 0 8px!important}
  #platforms .market-side-label.kr{grid-row:6!important;margin-top:8px!important}
  #platforms .kr-google{grid-column:1!important;grid-row:7!important}
  #platforms .kr-youtube{grid-column:2!important;grid-row:7!important}
  #platforms .kr-instagram{grid-column:1!important;grid-row:8!important}
  #platforms .kr-naver{grid-column:2!important;grid-row:8!important}
  #platforms .market-map::before{left:50%!important;transform:translateX(-50%)!important}
}


/* V10.5 — Formspree inquiry submission states */
.form-honeypot{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important;opacity:0!important;pointer-events:none!important}
.form-submit{transition:transform .22s ease,filter .22s ease,opacity .22s ease!important}
.form-submit:disabled{cursor:wait!important;opacity:.72!important;transform:none!important;filter:saturate(.7)!important}
.form-feedback{min-height:20px;margin:13px 2px 0;font-size:12px;line-height:1.55;color:rgba(248,229,207,.58)}
.form-feedback.is-error{color:#ff9b71}
.form-success{display:none;min-height:330px;padding:34px;border:1px solid rgba(244,125,53,.26);border-radius:20px;background:radial-gradient(circle at 50% 15%,rgba(244,125,53,.13),transparent 42%),rgba(20,11,7,.46);align-content:center;justify-items:start}
.form-success-kicker{font:750 10px/1.2 var(--type-ui);letter-spacing:.16em;color:var(--orange-2)}
.form-success strong{display:block;margin-top:18px;font-size:clamp(28px,3vw,40px);line-height:1.15;letter-spacing:-.045em;color:var(--cream)}
.form-success p{max-width:460px;margin-top:16px;font-size:13px;line-height:1.75;color:rgba(248,229,207,.58);word-break:keep-all}
.form-reset{margin-top:26px;padding:12px 16px;border:1px solid rgba(248,229,207,.16);border-radius:999px;background:transparent;color:rgba(248,229,207,.72);font:650 11px/1 var(--type-ui);cursor:pointer;transition:border-color .2s ease,color .2s ease,background .2s ease}
.form-reset:hover{border-color:rgba(244,125,53,.5);color:var(--cream);background:rgba(244,125,53,.06)}
.contact-form.is-success .form-grid,.contact-form.is-success .form-submit,.contact-form.is-success .form-feedback{display:none!important}
.contact-form.is-success .form-success{display:grid!important}
@media(max-width:767px){.form-success{min-height:280px;padding:26px 22px}.form-success strong{font-size:30px}.form-success p{font-size:12.5px}}


/* V10.6 — privacy consent + overseas transfer disclosure */
.privacy-consent-group{display:grid;gap:10px;margin-top:4px;margin-bottom:16px}
.privacy-consent-item{border:1px solid rgba(248,229,207,.12);border-radius:16px;background:rgba(255,255,255,.018);overflow:hidden;transition:border-color .2s ease,background .2s ease}
.privacy-consent-item:focus-within{border-color:rgba(244,125,53,.42);background:rgba(244,125,53,.035)}
.privacy-check{display:grid;grid-template-columns:20px 1fr;gap:12px;align-items:start;padding:15px 16px;cursor:pointer;position:relative}
.privacy-check input{position:absolute;opacity:0;pointer-events:none;width:1px;height:1px}
.privacy-checkmark{width:18px;height:18px;margin-top:1px;border:1px solid rgba(248,229,207,.32);border-radius:5px;background:rgba(8,5,4,.5);position:relative;transition:.2s ease}
.privacy-checkmark::after{content:"";position:absolute;left:5px;top:2px;width:5px;height:9px;border-right:2px solid #140b07;border-bottom:2px solid #140b07;transform:rotate(45deg) scale(0);transform-origin:center;transition:transform .16s ease}
.privacy-check input:checked+.privacy-checkmark{border-color:var(--orange);background:var(--orange)}
.privacy-check input:checked+.privacy-checkmark::after{transform:rotate(45deg) scale(1)}
.privacy-check input:focus-visible+.privacy-checkmark{outline:2px solid rgba(255,155,93,.65);outline-offset:3px}
.privacy-check-copy{display:grid;gap:5px;min-width:0}
.privacy-check-copy b{font:650 12px/1.45 var(--type-body);color:rgba(248,229,207,.88);letter-spacing:-.015em;word-break:keep-all}
.privacy-check-copy small{font:450 10.5px/1.55 var(--type-body);color:rgba(248,229,207,.48);word-break:keep-all}
.privacy-details{border-top:1px solid rgba(248,229,207,.08)}
.privacy-details summary{list-style:none;cursor:pointer;padding:11px 16px;font:650 10px/1.4 var(--type-ui);letter-spacing:.03em;color:rgba(255,155,93,.78);display:flex;align-items:center;justify-content:space-between;gap:12px}
.privacy-details summary::-webkit-details-marker{display:none}
.privacy-details summary::after{content:"+";font:500 16px/1 var(--type-ui);color:rgba(248,229,207,.48);transition:transform .18s ease}
.privacy-details[open] summary::after{transform:rotate(45deg)}
.privacy-detail-body{padding:2px 16px 15px}
.privacy-detail-body dl{display:grid;gap:0;margin:0;border-top:1px solid rgba(248,229,207,.07)}
.privacy-detail-body dl>div{display:grid;grid-template-columns:112px 1fr;gap:12px;padding:10px 0;border-bottom:1px solid rgba(248,229,207,.07)}
.privacy-detail-body dt{font:650 9.5px/1.5 var(--type-ui);letter-spacing:.025em;color:rgba(248,229,207,.5)}
.privacy-detail-body dd{margin:0;font:450 10.5px/1.62 var(--type-body);color:rgba(248,229,207,.66);word-break:keep-all}
.privacy-external{display:inline-flex;margin-top:12px;font:650 10px/1.4 var(--type-ui);color:var(--orange-2);text-decoration:underline;text-decoration-color:rgba(244,125,53,.32);text-underline-offset:4px}
.contact-form.is-success .privacy-consent-group{display:none!important}
@media(max-width:767px){
  .privacy-consent-group{gap:9px;margin-top:2px;margin-bottom:14px}
  .privacy-check{grid-template-columns:19px 1fr;gap:10px;padding:14px 13px}
  .privacy-checkmark{width:17px;height:17px}
  .privacy-checkmark::after{left:4px;top:2px}
  .privacy-check-copy b{font-size:11.5px}
  .privacy-check-copy small{font-size:10px}
  .privacy-details summary{padding:10px 13px}
  .privacy-detail-body{padding:1px 13px 14px}
  .privacy-detail-body dl>div{grid-template-columns:1fr;gap:3px;padding:9px 0}
  .privacy-detail-body dt{font-size:9px}
  .privacy-detail-body dd{font-size:10px}
}


/* V10.6.1 — contact privacy consent visibility fix on cream background */
.contact .privacy-consent-group{margin-top:10px!important;margin-bottom:18px!important;gap:12px!important}
.contact .privacy-consent-item{
  border:1px solid rgba(55,34,22,.16)!important;
  background:rgba(255,255,255,.44)!important;
  box-shadow:0 8px 28px rgba(67,37,18,.035)!important;
}
.contact .privacy-consent-item:focus-within{
  border-color:rgba(205,91,30,.46)!important;
  background:rgba(255,255,255,.62)!important;
}
.contact .privacy-check{grid-template-columns:24px 1fr!important;gap:13px!important;padding:17px 18px!important}
.contact .privacy-checkmark{
  width:20px!important;height:20px!important;margin-top:0!important;
  border:1.5px solid rgba(66,42,29,.55)!important;
  border-radius:6px!important;background:#fff!important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.75)!important;
}
.contact .privacy-checkmark::after{
  left:6px!important;top:3px!important;width:5px!important;height:9px!important;
  border-right:2px solid #1c100a!important;border-bottom:2px solid #1c100a!important;
}
.contact .privacy-check input:checked+.privacy-checkmark{
  border-color:var(--orange)!important;background:var(--orange)!important;
  box-shadow:0 0 0 3px rgba(244,125,53,.12)!important;
}
.contact .privacy-check-copy{gap:6px!important}
.contact .privacy-check-copy b{
  color:#2c1b12!important;font-size:12.5px!important;font-weight:700!important;line-height:1.5!important;
}
.contact .privacy-check-copy small{
  color:#766457!important;font-size:10.8px!important;font-weight:500!important;line-height:1.55!important;
}
.contact .privacy-details{border-top:1px solid rgba(55,34,22,.10)!important}
.contact .privacy-details summary{
  color:#b74f18!important;padding:12px 18px!important;font-size:10.5px!important;font-weight:700!important;
}
.contact .privacy-details summary::after{color:#a85227!important}
.contact .privacy-detail-body{padding:2px 18px 16px!important}
.contact .privacy-detail-body dl{border-top:1px solid rgba(55,34,22,.09)!important}
.contact .privacy-detail-body dl>div{border-bottom:1px solid rgba(55,34,22,.08)!important}
.contact .privacy-detail-body dt{color:#6f5b4e!important;font-weight:700!important}
.contact .privacy-detail-body dd{color:#49382e!important}
.contact .privacy-external{color:#b74f18!important;text-decoration-color:rgba(183,79,24,.28)!important}
@media(max-width:767px){
  .contact .privacy-check{grid-template-columns:23px 1fr!important;gap:12px!important;padding:16px 14px!important}
  .contact .privacy-checkmark{width:20px!important;height:20px!important}
  .contact .privacy-check-copy b{font-size:12px!important}
  .contact .privacy-check-copy small{font-size:10.5px!important}
  .contact .privacy-details summary{padding:11px 14px!important}
  .contact .privacy-detail-body{padding:1px 14px 15px!important}
}
