/* TMC Plugins — site.css (v2)
   글꼴은 Pretendard JP 하나. 대문자 라벨과 자간 벌리기는 쓰지 않는다.
   색은 두 개만 의미를 가진다: Essential = 파랑, Pro = 보라. 나머지는 흑백과 로고의 은회색. */

:root {
  color-scheme: dark;
  --void: #07070a;
  --bg-2: #0b0b0f;
  --panel: #111116;
  --panel-2: #16161d;
  --panel-3: #1d1d26;
  --line: #23232c;
  --line-2: #30303b;
  --line-3: #474753;
  --paper: #f2f2f5;
  --mist: #a8a8b4;
  --ash: #74747f;
  --silver: #c0c0c7;
  --ess: #3d8bff;
  --ess-2: #93bdff;
  --ess-soft: rgba(61, 139, 255, 0.14);
  --pro: #b06cff;
  --pro-2: #d6b4ff;
  --pro-soft: rgba(176, 108, 255, 0.14);
  --ok: #4fd18b;
  --star: #f5c451;

  --r-lg: 20px;
  --r: 14px;
  --r-sm: 10px;
  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --head-h: 64px;

  --f: "Pretendard JP Variable", "Pretendard JP", "Pretendard Variable", Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Hiragino Sans", "Malgun Gothic", system-ui, sans-serif;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}
:root:lang(zh-Hans) { --f: "Pretendard JP Variable", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif; }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--head-h) + 16px); }
body {
  margin: 0;
  background: var(--void);
  color: var(--paper);
  font: 400 16px/1.7 var(--f);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  word-break: keep-all;
  overflow-wrap: break-word;
}
:lang(ja) body, body:lang(ja) { word-break: normal; word-break: auto-phrase; line-break: strict; }
/* ↑ 일본어는 구절 단위로 줄을 바꾼다(Chrome·Edge의 auto-phrase: 'プラグ/イン'처럼 단어 중간에서 끊지 않음).
   지원하지 않는 브라우저는 앞의 normal(글자 단위)이 남는다. 너무 긴 구절은 body의 overflow-wrap: break-word가 받아 준다.
   (overflow-wrap: anywhere는 쓰지 않는다 — 줄 균형(balance·pretty)을 맞출 때 단어 중간을 끊는 자리로 써 버린다) */
/* 앱에서 찾아야 하는 버튼·UI 이름(굵게)과 표의 이름표는 중간에서 끊지 않는다 — 넣어 둔 끊는 자리(U+200B)나 공백에서만 */
:lang(ja) :is(.gstep .txt, .tips li) strong, :lang(ja) .pmeta dt { word-break: keep-all; }
:lang(zh-Hans) body, body:lang(zh-Hans) { word-break: normal; }
img, video, canvas, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; line-height: 1.25; letter-spacing: -0.02em; text-wrap: balance; }
p { margin: 0; }
p, li, td, dd, blockquote, figcaption, .proof .l, .terms span, .b-quote q { text-wrap-style: pretty; }
ul, ol { margin: 0; padding: 0; }
ul[role="list"], ol[role="list"] { list-style: none; }
strong { font-weight: 700; color: var(--paper); }
code.ui { font: inherit; font-size: 0.92em; font-weight: 600; background: var(--panel-3); border: 1px solid var(--line-2); border-radius: 6px; padding: 0.05em 0.4em; color: var(--paper); white-space: nowrap; }
::selection { background: rgba(176, 108, 255, 0.4); color: #fff; }
:focus-visible { outline: 2px solid var(--ess-2); outline-offset: 3px; border-radius: 6px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.i { width: 1.1em; height: 1.1em; flex: none; }
[hidden] { display: none !important; }

.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--paper); color: var(--void); padding: 8px 14px; border-radius: 8px; font-weight: 700; }
.skip:focus { top: 12px; }

/* ---------- 글자 크기 ---------- */
.eyebrow { display: block; font-size: 15px; font-weight: 600; color: var(--silver); line-height: 1.4; }
.h-xl { font-size: clamp(34px, 5.4vw, 68px); line-height: 1.18; letter-spacing: -0.03em; font-weight: 800; }
.h-l { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.25; letter-spacing: -0.025em; }
.h-m { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.3; }
.lead { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.7; color: var(--mist); max-width: 62ch; text-wrap: pretty; }
.muted { color: var(--mist); }

/* ---------- 버튼 ---------- */
.btn {
  --bg: var(--panel-3); --fg: var(--paper); --bd: var(--line-2);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  background: var(--bg); color: var(--fg); border: 1px solid var(--bd);
  font-size: 15px; font-weight: 700; line-height: 1.2; white-space: nowrap; cursor: pointer;
  transition: transform 0.18s var(--ease), background-color 0.18s, border-color 0.18s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-1px); border-color: var(--line-3); }
.btn:active { transform: none; }
.btn .i { transition: transform 0.2s var(--ease); }
.btn:hover .i { transform: translateX(2px); }
.btn-sm { min-height: 38px; padding: 0 16px; font-size: 14px; }
.btn-lg { min-height: 54px; padding: 0 26px; font-size: 16px; }
.btn-light { --bg: var(--paper); --fg: #0a0a0d; --bd: var(--paper); }
.btn-light:hover { --bg: #fff; box-shadow: 0 10px 36px rgba(255, 255, 255, 0.12); }
.btn-ghost { --bg: rgba(255, 255, 255, 0.03); --bd: var(--line-2); }
.btn-ghost:hover { --bg: rgba(255, 255, 255, 0.07); }
.btn-ess { --bg: var(--ess); --fg: #fff; --bd: var(--ess); }
.btn-ess:hover { box-shadow: 0 12px 36px rgba(61, 139, 255, 0.32); }
.btn-pro { --bg: var(--pro); --fg: #fff; --bd: var(--pro); }
.btn-pro:hover { box-shadow: 0 12px 36px rgba(176, 108, 255, 0.36); }

/* 플랜 배지와 태그 */
.plan {
  display: inline-flex; align-items: center; gap: 6px; height: 26px; padding: 0 10px 0 9px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700; line-height: 1; white-space: nowrap; border: 1px solid currentColor;
}
.plan::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.plan-essential { color: var(--ess-2); background: var(--ess-soft); border-color: rgba(61, 139, 255, 0.35); }
.plan-pro { color: var(--pro-2); background: var(--pro-soft); border-color: rgba(176, 108, 255, 0.4); }
.tag {
  display: inline-flex; align-items: center; height: 28px; padding: 0 10px; border-radius: 8px;
  font-size: 13px; font-weight: 500; line-height: 1; color: var(--mist);
  background: var(--panel-2); border: 1px solid var(--line-2); white-space: nowrap;
}
a.tag:hover { color: var(--paper); border-color: var(--line-3); }

/* ---------- 헤더 ---------- */
.site-head {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50;
  background: rgba(7, 7, 10, 0.6);
  backdrop-filter: saturate(140%) blur(14px); -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s, background-color 0.3s;
}
.site-head.scrolled { border-bottom-color: var(--line); background: rgba(7, 7, 10, 0.85); }
.head-row { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; gap: 20px; height: var(--head-h); }
.brand { grid-column: 1; justify-self: start; }
.brand img { width: auto; height: 28px; }
.nav { grid-column: 2; }
.nav ul { display: flex; gap: 2px; }
.nav a { display: block; padding: 8px 12px; border-radius: 999px; font-size: 15px; font-weight: 500; color: var(--mist); transition: color 0.15s, background-color 0.15s; }
.nav a:hover { color: var(--paper); background: rgba(255, 255, 255, 0.05); }
.nav a[aria-current="page"] { color: var(--paper); background: rgba(255, 255, 255, 0.06); }
.head-actions { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 8px; }
.lang { position: relative; }
.lang summary {
  list-style: none; display: inline-flex; align-items: center; gap: 6px; height: 38px; padding: 0 14px 0 12px; border-radius: 999px;
  font-size: 14px; font-weight: 500; color: var(--mist); cursor: pointer; border: 1px solid var(--line-2); white-space: nowrap;
}
.lang summary::-webkit-details-marker { display: none; }
.lang summary:hover, .lang[open] summary { color: var(--paper); border-color: var(--line-3); }
.lang ul { position: absolute; right: 0; top: calc(100% + 8px); min-width: 160px; padding: 6px; border-radius: 12px; background: var(--panel-2); border: 1px solid var(--line-2); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.lang a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 12px; border-radius: 8px; font-size: 14.5px; color: var(--mist); }
.lang a:hover { background: var(--panel-3); color: var(--paper); }
.lang a[aria-current] { color: var(--paper); }
.lang a[aria-current]::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--silver); }
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line-2); background: transparent; align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle .i { width: 20px; height: 20px; }
.nav-toggle .i + .i { display: none; }
.nav-toggle[aria-expanded="true"] .i:first-of-type { display: none; }
.nav-toggle[aria-expanded="true"] .i + .i { display: block; }
.mnav { border-top: 1px solid var(--line); padding: 8px var(--gutter) 22px; background: rgba(7, 7, 10, 0.97); }
.mnav ul a { display: block; padding: 14px 2px; font-size: 19px; font-weight: 700; border-bottom: 1px solid var(--line); }
.mnav ul a[aria-current="page"] { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mnav ul a[aria-current="page"]::after { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--silver); }
.mnav-langs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.mnav-langs a { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-2); font-size: 14px; color: var(--mist); }
.mnav-langs a[aria-current] { color: var(--paper); border-color: var(--silver); }
@media (max-width: 1160px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 520px) {
  .lang { display: none; }
  .brand img { height: 24px; }
}

/* ---------- 섹션 공통 ---------- */
.section { padding-block: clamp(80px, 10vw, 136px); position: relative; }
.section + .section { border-top: 1px solid var(--line); }
.section.tint { background: var(--bg-2); }
.sec-head { display: grid; gap: 14px; margin-bottom: clamp(36px, 4.5vw, 56px); max-width: 760px; }
.sec-head.center { margin-inline: auto; text-align: center; justify-items: center; }
.sec-split { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px 40px; margin-bottom: clamp(36px, 4.5vw, 56px); }
.sec-split .sec-head { margin-bottom: 0; }

/* 크롭 마크: 컴포지션 뷰어 모서리 (상세 페이지 이미지 틀) */
.crop { position: relative; }
.crop > .cm { position: absolute; width: 14px; height: 14px; border-color: var(--line-3); border-style: solid; pointer-events: none; z-index: 2; }
.crop > .cm.tl { top: -7px; left: -7px; border-width: 1.5px 0 0 1.5px; }
.crop > .cm.tr { top: -7px; right: -7px; border-width: 1.5px 1.5px 0 0; }
.crop > .cm.bl { bottom: -7px; left: -7px; border-width: 0 0 1.5px 1.5px; }
.crop > .cm.br { bottom: -7px; right: -7px; border-width: 0 1.5px 1.5px 0; }

/* ---------- 히어로 배경 ----------
   정지 레이어(상단 조명 + 팩 색 백라이트 + 그레인) 위에, 가장자리를 도는 가는 스트로크 리본(canvas 2장)을 얹는다.
   리본만 마스크로 제목 둘레를 비우고 위·아래를 흐리게 한다. 파랑 = Essential, 보라 = Pro. */
.hero-bg {
  --hero-bg-hole: radial-gradient(ellipse 39% 27% at 50% 32%, transparent 55%, rgba(0, 0, 0, 0.55) 80%, #000 100%);
  --hero-bg-fade: linear-gradient(to bottom, transparent 0, #000 110px, #000 40%, transparent 66%);
  --hero-bg-band: 0.67; /* 캔버스는 마스크가 다 지우는 아래쪽을 빼고 이 비율만큼만 만든다(스크립트가 읽음) */
  position: absolute; inset: 0 0 auto 0; height: min(1100px, 100%); z-index: -1; overflow: hidden; pointer-events: none;
  contain: strict;
  transition: opacity 1.4s var(--ease, cubic-bezier(0.2, 0.7, 0.2, 1)) 0.5s; /* 제목이 올라온 뒤에 배경이 떠오른다 */
}
.js .hero-bg:not(.hero-bg-on) { opacity: 0; }
.hero-bg > * { position: absolute; display: block; }
/* 상단 조명: 기존 .ambient .spot을 움직임 없이 */
.hero-bg-spot { left: 50%; top: -420px; width: 1500px; height: 900px; margin-left: -750px;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035) 50%, transparent 78%); }
/* 팩 색 백라이트: 각 리본 중심 뒤에 정지. 넓은 화면에서는 리본과 같이 1680px 폭 안에 머문다 */
.hero-bg-tint { width: 860px; height: 680px; margin: -340px 0 0 -430px; }
.hero-bg-ess { left: calc(50% - 0.38 * min(100%, 1680px)); top: 420px;
  background: radial-gradient(closest-side, rgba(61, 139, 255, 0.1), rgba(61, 139, 255, 0.074) 25%, rgba(61, 139, 255, 0.038) 50%, rgba(61, 139, 255, 0.012) 75%, transparent); }
.hero-bg-pro { left: calc(50% + 0.38 * min(100%, 1680px)); top: 330px;
  background: radial-gradient(closest-side, rgba(176, 108, 255, 0.09), rgba(176, 108, 255, 0.066) 25%, rgba(176, 108, 255, 0.034) 50%, rgba(176, 108, 255, 0.011) 75%, transparent); }
/* 그레인: 정지 레이어의 띠 줄무늬를 가린다. 캔버스 아래에 두어 매 프레임 섞기 계산이 생기지 않게 한다 */
.hero-bg-grain { inset: 0; opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero-bg-draw { inset: 0;
  -webkit-mask-image: var(--hero-bg-hole), var(--hero-bg-fade); mask-image: var(--hero-bg-hole), var(--hero-bg-fade);
  -webkit-mask-composite: source-in; mask-composite: intersect; }
.hero-bg-draw canvas { position: absolute; left: 0; top: 0; width: 100%; height: 100%; max-width: none; }
/* 모바일: 리본은 배지 양옆 위 모서리에만. 백라이트도 그 자리로 */
@media (max-width: 719px) {
  .hero-bg {
    --hero-bg-hole: radial-gradient(ellipse 62% 20% at 50% 29%, transparent 50%, rgba(0, 0, 0, 0.55) 78%, #000 100%);
    --hero-bg-fade: linear-gradient(to bottom, transparent 0, #000 40px, #000 20%, transparent 46%);
    --hero-bg-band: 0.47;
  }
  .hero-bg-tint { width: 460px; height: 400px; margin: -200px 0 0 -230px; }
  .hero-bg-ess { left: 0; top: 200px; }
  .hero-bg-pro { left: 100%; top: 90px; }
}
@media (prefers-reduced-motion: reduce) { .hero-bg { transition: none; } }

/* ---------- 히어로 ---------- */
.hero { position: relative; isolation: isolate; padding-top: clamp(64px, 9vw, 120px); padding-bottom: 8px; }
.hero-inner { display: grid; justify-items: center; text-align: center; gap: 24px; }
.hero-badge { display: inline-flex; align-items: center; height: 34px; padding: 0 16px; border-radius: 999px; background: rgba(17, 17, 22, 0.7); border: 1px solid var(--line-2); font-size: 14px; font-weight: 500; color: var(--mist); }
.hero-title { max-width: 22ch; }
/* 일본어 히어로 제목: 전각 글자라 22ch 칸이 좁아 단어 중간에서 끊겼다. 글자를 조금 줄여 한 줄에 담고,
   줄은 문구에 넣어 둔 끊는 자리(U+200B)에서만 바꾼다 — 좁은 화면에서도 'モーショングラ/フィックス'처럼 갈라지지 않게 */
:lang(ja) .hero-title { max-width: none; font-size: clamp(30px, 4.3vw, 58px); word-break: keep-all; }
.hero-title .soft { color: var(--silver); }
.hero-sub { max-width: 40ch; text-wrap: balance; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.7; color: var(--mist); }
:lang(en) .hero-sub { max-width: 54ch; }
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 4px; }
.hero-note { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; font-size: 14px; color: var(--ash); }
.hero-note span { display: inline-flex; align-items: center; gap: 6px; }
.hero-note .i { width: 15px; height: 15px; color: var(--silver); }
.hero-load > * { animation: rise 0.8s var(--ease) both; }
.hero-load > *:nth-child(2) { animation-delay: 0.06s; }
.hero-load > *:nth-child(3) { animation-delay: 0.12s; }
.hero-load > *:nth-child(4) { animation-delay: 0.18s; }
.hero-load > *:nth-child(5) { animation-delay: 0.24s; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- 영상 슬라이드 ---------- */
.reel { --per: 1; margin-top: clamp(56px, 7vw, 88px); scroll-margin-top: calc(var(--head-h) + 20px); }
@media (min-width: 860px) { .reel { --per: 2; } }
.reel-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px 32px; margin-bottom: 22px; }
.reel-head h2 { font-size: clamp(22px, 2.4vw, 30px); }
.reel-head p { margin-top: 8px; color: var(--mist); font-size: 15.5px; max-width: 64ch; text-wrap: balance; }
.reel-ctrl { display: flex; align-items: center; gap: 10px; }
.reel-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(255, 255, 255, 0.03); display: grid; place-items: center; cursor: pointer; color: var(--paper); transition: border-color 0.2s, background-color 0.2s; }
.reel-btn:hover { border-color: var(--line-3); background: rgba(255, 255, 255, 0.07); }
.reel-btn[disabled] { opacity: 0.35; cursor: default; }
.reel-count { min-width: 52px; text-align: center; font-size: 14px; color: var(--mist); font-variant-numeric: tabular-nums; }
.reel-count b { color: var(--paper); font-weight: 700; }
.reel-track {
  --slide: calc((100% - (var(--per) - 1) * 20px) / var(--per));
  display: flex; gap: 20px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: 4px;
}
.reel-track::-webkit-scrollbar { display: none; }
.reel-track:focus-visible { outline-offset: 6px; }
.reel-slide { flex: 0 0 var(--slide); scroll-snap-align: start; display: grid; gap: 16px; align-content: start; transition: opacity 0.4s var(--ease); min-width: 0; }
.reel-slide:not(.on) { opacity: 0.45; }
.js .reel-slide:not(.snap) { scroll-snap-align: none; }
.reel.single .reel-ctrl { display: none; }
.reel-ph { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 14px; padding: 24px; text-align: center; background: radial-gradient(90% 90% at 50% 40%, rgba(255, 255, 255, 0.06), transparent 70%), #0d0d11; }
.reel-ph .pbtn { position: static; margin: 0; }
.reel-ph-t { font-size: 16px; font-weight: 700; color: var(--paper); max-width: 30ch; }
.reel-note { position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 8px 12px; border-radius: 10px; background: rgba(7, 7, 10, 0.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); font-size: 13px; line-height: 1.45; color: var(--silver); text-align: center; }
.reel-media { position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-lg); overflow: hidden; background: #0d0d11; border: 1px solid var(--line-2); }
.reel-media img, .reel-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.reel-play { position: absolute; inset: 0; display: block; padding: 0; border: 0; background: none; cursor: pointer; }
.reel-play img { transition: transform 0.8s var(--ease), filter 0.4s; filter: brightness(0.86); }
.reel-play:hover img { transform: scale(1.025); filter: brightness(1); }
.reel-play .pbtn, .reel-ph .pbtn { position: absolute; left: 50%; top: 50%; width: 72px; height: 72px; margin: -36px 0 0 -36px; border-radius: 50%; display: grid; place-items: center; background: rgba(7, 7, 10, 0.6); border: 1px solid rgba(255, 255, 255, 0.28); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: transform 0.25s var(--ease), background-color 0.25s; }
.reel-play .pbtn .i, .reel-ph .pbtn .i { width: 26px; height: 26px; margin-left: 3px; }
.reel-play:hover .pbtn { transform: scale(1.06); background: rgba(7, 7, 10, 0.75); }
.reel-meta { display: grid; gap: 10px; }
.reel-meta .row { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 6px 16px; }
@media (min-width: 860px) and (max-width: 959px) { .reel-meta .row { flex-direction: column; align-items: flex-start; gap: 4px; } }
.reel-meta h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.reel-tags .tag { height: 26px; font-size: 12.5px; padding: 0 9px; }
.reel-yt { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--mist); }
.reel-yt:hover { color: var(--paper); }
.reel-yt .i { width: 14px; height: 14px; }
.reel-tags { display: flex; gap: 6px 12px; align-items: flex-start; }
.reel-tags .label { flex: none; font-size: 13px; line-height: 26px; color: var(--ash); }
.reel-tag-list { display: flex; flex-wrap: wrap; gap: 6px; min-width: 0; }
@media (max-width: 560px) { .reel-tags { flex-direction: column; gap: 4px; } }
.reel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.reel-dots button { width: 8px; height: 8px; padding: 0; border-radius: 999px; border: 0; background: var(--line-3); cursor: pointer; transition: width 0.3s var(--ease), background-color 0.3s; }
.reel-dots button[aria-current="true"] { width: 24px; background: var(--paper); }

/* ---------- 숫자 막대 ---------- */
.proof { margin-top: clamp(56px, 7vw, 88px); border-top: 1px solid var(--line); position: relative; }
.proof::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 8px; pointer-events: none;
  background-image: repeating-linear-gradient(to right, var(--line-3) 0 1px, transparent 1px 12px);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.proof ul { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.proof li { padding: 26px 20px 30px; display: grid; gap: 8px; align-content: start; min-width: 0; }
.proof li + li { border-left: 1px solid var(--line); }
.proof .n { font-size: clamp(26px, 2.8vw, 38px); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.proof .n small { font-size: 0.55em; font-weight: 700; color: var(--silver); margin-left: 3px; letter-spacing: 0; }
.proof .l { font-size: 14px; line-height: 1.5; color: var(--mist); }
@media (max-width: 980px) {
  .proof ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof li { border-left: 0 !important; border-top: 1px solid var(--line); }
  .proof li:nth-child(even) { border-left: 1px solid var(--line) !important; }
  .proof li:nth-child(-n+2) { border-top: 0; }
}

/* ---------- 특징 카드 ---------- */
.bento { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(12px, 1.4vw, 18px); }
.b-card {
  grid-column: span 6; position: relative; overflow: hidden; border-radius: var(--r-lg); padding: clamp(22px, 2.4vw, 32px);
  background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px; min-width: 0;
}
.b-card > .b-quote:last-child, .b-card > .b-link:last-child, .b-card > .b-tags:last-child { margin-top: auto; }
.b-card.w7 { grid-column: span 7; }
.b-card.w5 { grid-column: span 5; }
.b-card.w12 { grid-column: 1 / -1; }
.b-card .b-ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--panel-3); border: 1px solid var(--line-2); color: var(--silver); }
.b-card .b-ico .i { width: 20px; height: 20px; }
.b-card h3 { font-size: clamp(20px, 1.9vw, 24px); line-height: 1.35; letter-spacing: -0.02em; }
.b-card p { color: var(--mist); font-size: 15.5px; line-height: 1.7; }
.b-quote { padding: 16px 18px; border-radius: 12px; background: rgba(255, 255, 255, 0.025); border: 1px solid var(--line); display: grid; gap: 8px; }
.b-quote q { font-size: 15px; line-height: 1.65; color: var(--paper); quotes: "“" "”"; }
.b-quote cite { font-size: 13px; color: var(--ash); font-style: normal; }
.b-list { display: grid; gap: 10px; }
.b-list li { display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 10px; align-items: start; font-size: 15px; line-height: 1.6; color: var(--mist); }
.b-list .i { color: var(--silver); margin-top: 4px; width: 16px; height: 16px; }
.b-stat { display: flex; align-items: baseline; gap: 10px; }
.b-stat .n { font-size: clamp(40px, 4.4vw, 54px); font-weight: 800; line-height: 1; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.b-stat .u { color: var(--mist); font-size: 14px; }
.b-bars { display: flex; align-items: flex-end; gap: 5px; height: 72px; }
.b-bars i { flex: 1; min-width: 4px; border-radius: 3px 3px 1px 1px; background: linear-gradient(180deg, var(--silver), #5b5b66); opacity: 0.85; }
.b-bars-legend { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--ash); }
.b-hub { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(20px, 3vw, 44px); align-items: center; }
.b-hub > div { display: grid; gap: 16px; align-content: start; }
.b-hub img { border-radius: 12px; border: 1px solid var(--line-2); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); width: 100%; }
.b-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.b-tags .tag { padding: 0 9px; }
.b-link { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; font-size: 14.5px; font-weight: 600; color: var(--silver); }
.b-link:hover { color: var(--paper); }
.b-link .i { width: 16px; height: 16px; }
@media (max-width: 980px) {
  .b-card, .b-card.w7, .b-card.w5 { grid-column: 1 / -1; }
  .b-hub { grid-template-columns: 1fr; }
}

/* ---------- 플러그인 목록 ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 28px; }
.filters .sep { flex-basis: 100%; height: 0; margin: 0; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; height: 38px; padding: 0 15px; border-radius: 999px; cursor: pointer;
  background: transparent; border: 1px solid var(--line-2); color: var(--mist); font-size: 14.5px; font-weight: 500; transition: all 0.15s;
}
.chip:hover { color: var(--paper); border-color: var(--line-3); }
.chip[aria-pressed="true"] { background: var(--paper); color: var(--void); border-color: var(--paper); }
.chip .ct { font-size: 12.5px; font-weight: 600; opacity: 0.6; }
.chip.c-ess[aria-pressed="true"] { background: var(--ess); border-color: var(--ess); color: #fff; }
.chip.c-pro[aria-pressed="true"] { background: var(--pro); border-color: var(--pro); color: #fff; }
.pgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 1.4vw, 18px); }
@media (max-width: 1180px) { .pgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 860px) { .pgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .pgrid { grid-template-columns: 1fr; } }
.pcard {
  position: relative; display: grid; grid-template-rows: auto 1fr; border-radius: var(--r); overflow: hidden; min-width: 0;
  background: var(--panel); border: 1px solid var(--line); transition: border-color 0.2s, transform 0.25s var(--ease), background-color 0.2s;
}
.pcard:hover { border-color: var(--line-3); transform: translateY(-3px); background: var(--panel-2); }
.pcard .thumb { aspect-ratio: 16 / 10; position: relative; overflow: hidden; background: #0d0d11; border-bottom: 1px solid var(--line); }
.pcard .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.pcard:hover .thumb img { transform: scale(1.04); }
.pcard .body { padding: 16px 18px 18px; display: grid; grid-template-rows: auto 1fr auto; gap: 8px; }
.pcard .top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.pcard h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.015em; line-height: 1.3; min-width: 0; }
.pcard h3 span { color: var(--ash); font-weight: 700; }
.pcard .plan { flex: none; height: 24px; font-size: 12px; padding: 0 9px 0 8px; margin-top: 1px; }
.pcard .tl { font-size: 14.5px; line-height: 1.55; color: var(--mist); }
.pcard .meta { display: flex; flex-wrap: wrap; gap: 4px 12px; margin-top: 2px; font-size: 13px; line-height: 1.4; color: var(--ash); }
.pcard .meta b { color: var(--silver); font-weight: 600; }
.pgrid .pcard[hidden] { display: none; }
.pgrid .pmore { grid-column: span var(--s4); grid-template-rows: none; place-content: center; justify-items: center; text-align: center; gap: 10px; padding: 28px 22px; min-height: 160px; background: transparent; border-style: dashed; border-color: var(--line-2); }
.pgrid .pmore:hover { background: var(--panel); }
.pmore .pm-ico { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--panel-2); border: 1px solid var(--line-2); color: var(--pro-2); }
.pmore .pm-ico .i { width: 20px; height: 20px; }
.pmore b { font-size: 16.5px; font-weight: 700; }
.pmore small { font-size: 14px; color: var(--ash); }
@media (min-width: 1181px) { .pgrid .pmore.no4 { display: none; } }
@media (min-width: 861px) and (max-width: 1180px) { .pgrid .pmore { grid-column: span var(--s3); } .pgrid .pmore.no3 { display: none; } }
@media (min-width: 561px) and (max-width: 860px) { .pgrid .pmore { grid-column: span var(--s2); } .pgrid .pmore.no2 { display: none; } }
@media (max-width: 560px) { .pgrid .pmore { grid-column: auto; min-height: 0; } }
.pgrid-empty { padding: 40px; text-align: center; color: var(--ash); border: 1px dashed var(--line-2); border-radius: var(--r); }
/* 결과물 이미지가 없는 플러그인: 이름을 효과 느낌으로 */
.gen { position: absolute; inset: 0; display: grid; place-items: center; padding: 16px; text-align: center; background:
  radial-gradient(80% 90% at 50% 110%, rgba(255, 255, 255, 0.07), transparent 60%), #0d0d11; }
.gen span { font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: rgba(255, 255, 255, 0.88); }
.gen.has-art { padding: 0; }
.gen .gen-art { position: absolute; inset: 0; width: 100%; height: 100%; }
.gen[data-fx="color-overlay"] span { background: linear-gradient(100deg, #93bdff, #d6b4ff 45%, #ffb4d9 70%, #ffe0a3); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gen[data-fx="particle"] { background:
  radial-gradient(2px 2px at 18% 30%, #fff 60%, transparent), radial-gradient(1.5px 1.5px at 72% 22%, #fff 60%, transparent),
  radial-gradient(2.5px 2.5px at 82% 68%, #d6b4ff 60%, transparent), radial-gradient(1.5px 1.5px at 30% 76%, #93bdff 60%, transparent),
  radial-gradient(2px 2px at 55% 45%, #fff 60%, transparent), radial-gradient(1px 1px at 64% 84%, #fff 60%, transparent),
  radial-gradient(1.5px 1.5px at 10% 60%, #fff 60%, transparent), radial-gradient(2px 2px at 90% 38%, #fff 60%, transparent),
  radial-gradient(60% 80% at 50% 120%, rgba(214, 180, 255, 0.14), transparent 60%), #0b0b10; }
.gen[data-fx="posterize-time"] span { text-shadow: -22px 0 0 rgba(255, 255, 255, 0.16), -44px 0 0 rgba(255, 255, 255, 0.07); }
.gen[data-fx="clipboard"] span { font-size: clamp(20px, 2.2vw, 26px); padding: 10px 16px; border: 1.5px solid rgba(255, 255, 255, 0.5); border-bottom-width: 4px; border-radius: 10px; }

/* ---------- Toolbox 소개 ---------- */
.tb { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.tb-copy { display: grid; gap: 20px; position: sticky; top: calc(var(--head-h) + 32px); }
.tb-panels { display: flex; flex-wrap: wrap; gap: 8px; }
.tb-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.tb-col { border-radius: var(--r); border: 1px solid var(--line); background: var(--panel); padding: 18px 18px 14px; min-width: 0; }
.tb-col h3 { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; font-size: 14px; font-weight: 700; color: var(--silver); padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
.tb-col h3 span { color: var(--ash); font-weight: 500; }
.tb-col li { display: flex; align-items: center; gap: 10px; padding: 4px 0; font-size: 14px; line-height: 1.35; color: var(--mist); min-width: 0; }
.tb-col li img { width: 28px; height: 28px; border-radius: 7px; flex: none; }
.tb-col li .nb { margin-left: auto; }
.tb-ring { font-size: 15px; line-height: 1.65; color: var(--mist); padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--panel); }
@media (max-width: 980px) { .tb { grid-template-columns: 1fr; } .tb-copy { position: static; } }
@media (max-width: 560px) { .tb-cols { grid-template-columns: 1fr; } }

/* ---------- 제작 이야기 ---------- */
.story { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); grid-template-areas: 'head body' 'dev body'; gap: clamp(20px, 3vw, 32px) clamp(28px, 6vw, 88px); align-items: start; }
.story-head { grid-area: head; display: grid; gap: 16px; }
.story-body { grid-area: body; }
.story > .dev { grid-area: dev; margin-top: 0; }
.story-quote { font-size: clamp(26px, 3vw, 38px); line-height: 1.35; letter-spacing: -0.025em; }
.story-body { display: grid; gap: 18px; font-size: 16.5px; line-height: 1.8; color: var(--mist); }
.story-body p:first-child { color: var(--paper); }
.story-sign { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; margin-top: 6px; padding-top: 20px; border-top: 1px solid var(--line); }
.story-sign b { font-size: 18px; font-weight: 800; }
.story-sign span { font-size: 14px; color: var(--ash); }
@media (max-width: 900px) { .story { grid-template-columns: 1fr; grid-template-areas: 'head' 'body' 'dev'; } }
/* 만든 사람 */
.dev { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 18px; align-items: start; margin-top: 8px; padding: 22px; border-radius: var(--r-lg); border: 1px solid var(--line); background: linear-gradient(180deg, var(--panel-2), var(--panel)); }
.dev-logo { width: 72px; height: 72px; border-radius: 16px; }
.dev-body { display: grid; gap: 4px; min-width: 0; }
.dev-k { font-size: 13px; color: var(--ash); }
.dev-name { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; color: var(--paper); }
.dev-role { font-size: 15px; line-height: 1.55; color: var(--paper); }
.dev-role2 { font-size: 14px; line-height: 1.55; color: var(--mist); }
.story-body .dev p:first-child { color: inherit; }
.dev-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.dev-link { display: inline-flex; align-items: center; gap: 7px; height: 34px; padding: 0 12px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, 0.02); color: var(--mist); font: inherit; font-size: 13.5px; font-weight: 500; cursor: pointer; transition: color 0.15s, border-color 0.15s, background-color 0.15s; }
.dev-link:hover { color: var(--paper); border-color: var(--line-3); background: rgba(255, 255, 255, 0.05); }
.dev-link .i { width: 15px; height: 15px; }
.dev-link.done .i:last-child { color: var(--ok); }
@media (max-width: 480px) { .dev { grid-template-columns: 56px minmax(0, 1fr); padding: 18px; } .dev-logo { width: 56px; height: 56px; border-radius: 13px; } }
.foot-social { display: flex; gap: 8px; }
.foot-social a { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-2); color: var(--mist); transition: color 0.15s, border-color 0.15s; }
.foot-social a:hover { color: var(--paper); border-color: var(--line-3); }
.foot-social .i { width: 16px; height: 16px; }

/* ---------- 후기 ---------- */
.av { width: 38px; height: 38px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--panel-3); border: 1px solid var(--line-2); font-size: 15px; font-weight: 800; color: var(--silver); }
.who { display: grid; gap: 2px; min-width: 0; }
.who b { font-size: 15px; line-height: 1.3; }
.who span { font-size: 13px; line-height: 1.35; color: var(--ash); }
.rsum { display: grid; justify-items: end; gap: 6px; text-align: right; }
.rsum .n { font-size: clamp(44px, 5vw, 58px); font-weight: 800; line-height: 1; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.rsum .c { font-size: 13.5px; color: var(--ash); }
.stars { display: inline-flex; gap: 2px; }
.stars i { width: 16px; height: 16px; color: var(--line-3); }
.stars i.on { color: var(--star); }
.stars svg { display: block; width: 100%; height: 100%; fill: currentColor; }
.rsum .stars i { width: 20px; height: 20px; }
.rw {
  display: grid; gap: 16px; overflow: hidden; padding-block: 4px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.rw-row { display: flex; gap: 16px; width: max-content; animation: rw-flow var(--dur, 60s) linear infinite; will-change: transform; }
.rw-row.rev { animation-direction: reverse; }
.rw:hover .rw-row, .rw:focus-within .rw-row, .rw.paused .rw-row { animation-play-state: paused; }
@keyframes rw-flow { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.rcard { flex: none; width: max-content; min-width: 200px; max-width: min(380px, 80vw); margin: 0; display: flex; flex-direction: column; gap: 14px; padding: 22px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--panel); }
.rtop { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 24px; }
.rsrc { display: inline-flex; align-items: center; height: 24px; padding: 0 10px; border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--ash); border: 1px solid var(--line-2); white-space: nowrap; }
.rsrc.tester { color: var(--silver); border-color: var(--line-3); }
.rcard blockquote { flex: 1; margin: 0; font-size: 16px; line-height: 1.72; color: var(--paper); display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.rcard .rorig { padding-top: 12px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--ash); }
.rw-ctl { display: flex; justify-content: flex-end; margin-top: 14px; }
.rw-toggle { width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--line-2); background: transparent; color: var(--mist); display: grid; place-items: center; cursor: pointer; }
.rw-toggle:hover { color: var(--paper); border-color: var(--line-3); }
.rw-toggle .i { width: 16px; height: 16px; }
.rw-toggle .r, .rw-toggle[aria-pressed="true"] .p { display: none; }
.rw-toggle[aria-pressed="true"] .r { display: block; }

/* ---------- 제품 구성 (가격) ---------- */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(14px, 2vw, 24px); max-width: 1040px; margin-inline: auto; }
.plan-card {
  --c: var(--ess); --c2: var(--ess-2);
  position: relative; border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); display: grid; gap: 24px; align-content: start; min-width: 0;
  border: 1.5px solid transparent;
  background:
    linear-gradient(180deg, #121218, #0c0c10) padding-box,
    linear-gradient(135deg, var(--c) 0%, rgba(255, 255, 255, 0.06) 34%, rgba(255, 255, 255, 0.04) 62%, var(--c) 100%) border-box;
}
.plan-card.pro { --c: var(--pro); --c2: var(--pro-2); box-shadow: 0 40px 120px -40px rgba(176, 108, 255, 0.32); }
.plan-top { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 18px; align-items: center; }
.plan-top img { width: 72px; height: 72px; border-radius: 16px; border: 1px solid var(--line-2); }
.plan-top h3 { font-size: 26px; letter-spacing: -0.02em; line-height: 1.2; }
.plan-top p { color: var(--mist); font-size: 14.5px; line-height: 1.55; margin-top: 4px; }
.plan-flag { position: absolute; top: 22px; right: 22px; display: inline-flex; align-items: center; height: 28px; padding: 0 12px; border-radius: 999px; font-size: 13px; font-weight: 700; color: #fff; background: var(--pro); }
.plan-price { display: grid; gap: 6px; padding-top: 22px; border-top: 1px solid var(--line); }
.plan-price .n { font-size: clamp(44px, 4.6vw, 56px); font-weight: 800; line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.plan-price .u { font-size: 15px; line-height: 1.5; color: var(--mist); }
.plan-inc { display: grid; gap: 12px; padding-top: 22px; border-top: 1px solid var(--line); }
.plan-inc h4 { font-size: 14.5px; font-weight: 700; color: var(--c2); }
.plan-names { display: flex; flex-wrap: wrap; gap: 6px; }
.plan-names a { display: inline-flex; align-items: center; height: 30px; padding: 0 10px; border-radius: 8px; font-size: 13.5px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); color: var(--mist); }
.plan-names a:hover { color: var(--paper); border-color: var(--line-3); }
.plan-names .plus { display: inline-flex; align-items: center; height: 30px; padding: 0 10px; border-radius: 8px; font-size: 13.5px; font-weight: 600; color: var(--c2); border: 1px dashed color-mix(in srgb, var(--c) 60%, transparent); }
.plan-perks { display: grid; gap: 10px; }
.plan-perks li { display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 10px; align-items: start; font-size: 15px; line-height: 1.55; color: var(--mist); }
.plan-perks .i { color: var(--c2); margin-top: 3px; width: 16px; height: 16px; }
.plan-card .btn { width: 100%; }
@media (min-width: 881px) {
  .plans { grid-template-rows: repeat(5, auto); }
  .plan-card { grid-row: span 5; grid-template-rows: subgrid; }
}
.plan-foot { font-size: 13.5px; line-height: 1.6; color: var(--ash); text-align: center; max-width: 72ch; margin: 18px auto 0; text-wrap: balance; }
.plan-foot a { color: var(--mist); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-3); }
.plan-foot a:hover { color: var(--paper); }
.upgrade { max-width: 1040px; margin: clamp(16px, 2vw, 24px) auto 0; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; padding: 22px 26px; border-radius: var(--r); border: 1px solid var(--line); background: var(--panel); }
.upgrade .arrow { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; flex: none; }
.upgrade .arrow .a { color: var(--ess-2); }
.upgrade .arrow .b { color: var(--pro-2); }
.upgrade p { flex: 1 1 320px; color: var(--mist); font-size: 15px; line-height: 1.65; }
.terms { max-width: 1040px; margin: 18px auto 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.terms div { background: var(--void); padding: 18px 20px; display: grid; gap: 4px; align-content: start; }
.terms b { font-size: 15px; line-height: 1.4; }
.terms span { font-size: 14px; line-height: 1.5; color: var(--mist); }
@media (max-width: 880px) { .plans { grid-template-columns: 1fr; } .terms { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .terms { grid-template-columns: 1fr; } .plan-top { grid-template-columns: 60px minmax(0, 1fr); } .plan-top img { width: 60px; height: 60px; } .plan-card.pro .plan-top { padding-right: 0; padding-top: 34px; } }

/* ---------- 사양 ---------- */
.spec-wrap { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--line); }
.spec { width: 100%; border-collapse: collapse; font-size: 15px; }
.spec th, .spec td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec tr:last-child :is(th, td) { border-bottom: 0; }
.spec th { width: 28%; font-size: 14.5px; font-weight: 600; color: var(--silver); background: var(--panel); white-space: nowrap; }
.spec td { color: var(--mist); line-height: 1.65; }
.notice { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 14px; margin-top: 18px; padding: 18px 20px; border-radius: 12px; border: 1px solid var(--line); background: var(--panel); font-size: 14.5px; line-height: 1.65; color: var(--mist); }
.notice .i { color: var(--silver); margin-top: 3px; width: 20px; height: 20px; }
.notice strong { display: block; margin-bottom: 6px; }
.notice ul { display: grid; gap: 6px; padding-left: 18px; }
@media (max-width: 560px) { .spec th { width: 36%; white-space: normal; } .spec th, .spec td { padding: 14px 14px; } }

/* ---------- 자주 묻는 질문 ---------- */
.faq { display: grid; gap: 10px; max-width: 880px; }
.faq details { border-radius: var(--r); border: 1px solid var(--line); background: var(--panel); transition: border-color 0.2s, background-color 0.2s; }
.faq details[open] { border-color: var(--line-2); background: var(--panel-2); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 19px 22px; font-weight: 700; font-size: 16px; line-height: 1.5; text-wrap: balance; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .i { transition: transform 0.25s var(--ease); color: var(--ash); transform: rotate(90deg); }
.faq details[open] summary .i { transform: rotate(-90deg); }
.faq .ans { padding: 0 22px 22px; color: var(--mist); font-size: 15.5px; line-height: 1.75; display: grid; gap: 10px; max-width: 72ch; }
.faq-more { margin-top: 22px; }
.doc-body .faq { max-width: none; }
.faq details:target { border-color: var(--line-3); }

/* ---------- 마지막 구매 ---------- */
.final { text-align: center; overflow: hidden; isolation: isolate; }
.final::before { content: ""; position: absolute; left: 50%; top: -30%; width: 1100px; height: 700px; transform: translateX(-50%); z-index: -1; background: radial-gradient(closest-side, rgba(255, 255, 255, 0.08), transparent 75%); }
.final .inner { display: grid; justify-items: center; gap: 18px; }
.final .btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 8px; }
.final .lead { text-wrap: balance; }
@media (max-width: 520px) { .final .btns { flex-direction: column; width: 100%; max-width: 340px; } .final .btns .btn { width: 100%; } }

/* ---------- 푸터 ---------- */
.site-foot { border-top: 1px solid var(--line); padding-top: clamp(56px, 7vw, 80px); padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px)); background: var(--void); }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr)); gap: 32px; }
.foot-brand { display: grid; gap: 14px; align-content: start; }
.foot-brand img { width: auto; height: 28px; }
.foot-brand p { color: var(--ash); font-size: 14px; line-height: 1.65; max-width: 36ch; text-wrap: balance; }
.foot-col h2 { font-size: 14px; font-weight: 700; color: var(--silver); margin-bottom: 14px; }
.foot-col ul { display: grid; gap: 10px; }
.foot-col a, .foot-col li { font-size: 14.5px; color: var(--mist); }
.foot-col a:hover { color: var(--paper); }
.foot-col a[aria-current] { color: var(--paper); }
.copy { display: inline-flex; align-items: center; gap: 6px; padding: 4px 8px; margin-left: -8px; border-radius: 7px; border: 0; background: transparent; color: var(--paper); font-size: 14px; cursor: pointer; }
.copy:hover { background: var(--panel-2); }
.copy .i { width: 14px; height: 14px; color: var(--ash); }
.copy.done .i { color: var(--ok); }
.copyable span { display: block; margin-bottom: 6px; }
.foot-links { display: flex; gap: 16px; }
.foot-links a:hover { color: var(--paper); }
.legal-list { display: grid; gap: 10px; padding-left: 20px; color: var(--mist); font-size: 15.5px; line-height: 1.75; }
.legal-list li::marker { color: var(--line-3); }
.legal-note { color: var(--mist); font-size: 15px; line-height: 1.75; padding: 14px 18px; border-radius: 12px; border: 1px solid var(--line); background: var(--panel); }
.legal { display: grid; gap: 12px; padding: clamp(20px, 2.4vw, 28px); border-radius: var(--r); border: 1px solid var(--line); background: var(--panel); color: var(--mist); font-size: 15px; line-height: 1.75; }
.legal .legal-title { color: var(--paper); font-weight: 700; font-size: 16px; }
.legal h3 { margin-top: 10px; font-size: 16px; color: var(--paper); }
.legal ul { display: grid; gap: 6px; padding-left: 18px; }
.legal-contact { color: var(--ash); font-size: 14px; }
.foot-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; margin-top: clamp(40px, 5vw, 60px); padding-top: 22px; border-top: 1px solid var(--line); font-size: 13px; line-height: 1.6; color: var(--ash); }
@media (max-width: 860px) { .foot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .foot-brand { grid-column: 1 / -1; } }
@media (max-width: 600px) { .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .foot-col:has(.copyable) { grid-column: 1 / -1; order: 1; } }

/* ================= 플러그인 상세 ================= */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 14px; color: var(--ash); padding-top: 28px; }
.crumbs a:hover { color: var(--paper); }
.crumbs .i { width: 12px; height: 12px; }
.phero { padding-top: clamp(28px, 4vw, 44px); padding-bottom: clamp(48px, 6vw, 72px); position: relative; isolation: isolate; }
.phero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.phero-copy { display: grid; gap: 18px; align-content: start; min-width: 0; }
.phero-copy .badges { display: flex; flex-wrap: wrap; gap: 8px; }
.phero h1 { font-size: clamp(40px, 5.6vw, 72px); line-height: 1.05; letter-spacing: -0.035em; font-weight: 800; }
.phero h1 .pre { display: block; font-size: 0.36em; letter-spacing: -0.01em; color: var(--ash); font-weight: 700; margin-bottom: 0.18em; }
.phero .tagline { font-size: clamp(19px, 1.9vw, 24px); font-weight: 700; line-height: 1.4; letter-spacing: -0.015em; color: var(--paper); text-wrap: balance; }
.phero .summary { color: var(--mist); font-size: 16px; line-height: 1.75; max-width: 60ch; }
.phero .cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2px; }
@media (max-width: 640px) { .phero .cta > .btn { flex: 1 1 auto; } }
.pmeta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin: 4px 0 0; }
.pmeta div { background: var(--void); padding: 12px 14px; display: grid; gap: 3px; min-width: 0; }
.pmeta dt { font-size: 12.5px; color: var(--ash); }
.pmeta dd { margin: 0; font-size: 14.5px; font-weight: 600; line-height: 1.4; color: var(--paper); overflow-wrap: anywhere; }
.pmeta .wide { grid-column: 1 / -1; }
.pmeta > .wide ~ div:last-child:nth-child(even) { grid-column: 1 / -1; }
.phero-media { position: relative; min-width: 0; }
.phero-media .frame { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-2); background: #0d0d11; aspect-ratio: 16 / 10; position: relative; }
.phero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.phero-media .frame .gen span { font-size: clamp(34px, 5vw, 60px); }
@media (max-width: 960px) { .phero-grid { grid-template-columns: 1fr; } .phero-media { order: -1; } }

.gallery { display: grid; grid-auto-flow: column; grid-auto-columns: max(260px, 30%); gap: 14px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
.gallery figure { margin: 0; scroll-snap-align: start; display: grid; gap: 8px; }
.gallery a { display: block; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: #0d0d11; aspect-ratio: 16 / 10; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery a:hover img { transform: scale(1.03); }
.gallery figcaption { font-size: 13px; line-height: 1.5; color: var(--ash); }
@media (max-width: 640px) { .gallery { grid-auto-columns: 82%; } }

.hl { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.hl[data-n="4"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hl[data-n="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hl-card { border-radius: var(--r); border: 1px solid var(--line); background: var(--panel); padding: 20px 22px; display: grid; gap: 8px; align-content: start; min-width: 0; }
.hl-card .k { font-size: 13px; font-weight: 700; color: var(--ash); font-variant-numeric: tabular-nums; }
.hl-card h3 { font-size: 17.5px; line-height: 1.4; letter-spacing: -0.012em; font-weight: 700; }
.hl-card p { color: var(--mist); font-size: 15px; line-height: 1.65; }
@media (min-width: 641px) { .hl-card { grid-row: span 3; grid-template-rows: subgrid; row-gap: 8px; } }
@media (min-width: 1101px) {
  .hl[data-n="5"] { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .hl[data-n="5"] > :nth-child(-n+3) { grid-column: span 2; }
  .hl[data-n="5"] > :nth-child(n+4) { grid-column: span 3; }
}
@media (max-width: 1100px) { .hl { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 641px) and (max-width: 1100px) { .hl:is([data-n="3"], [data-n="5"], [data-n="7"]) > :last-child { grid-column: 1 / -1; } }
@media (max-width: 640px) { .hl, .hl[data-n="4"], .hl[data-n="2"] { grid-template-columns: 1fr; } }

.doc { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (min-width: 961px) { :lang(ja) .doc { grid-template-columns: 248px minmax(0, 1fr); } } /* 일본어 목차 이름이 길어 210px에서 한 글자씩 넘어갔다 */
.toc { position: sticky; top: calc(var(--head-h) + 28px); display: grid; gap: 2px; }
.toc h2 { font-size: 13px; font-weight: 700; color: var(--ash); margin-bottom: 10px; }
.toc a { display: block; padding: 7px 12px; border-left: 1.5px solid var(--line); font-size: 14.5px; line-height: 1.35; color: var(--ash); transition: color 0.15s, border-color 0.15s; }
.toc a:hover { color: var(--paper); }
.toc a.on { color: var(--paper); border-left-color: var(--paper); }
.doc-body { display: grid; gap: clamp(56px, 7vw, 84px); min-width: 0; }
.doc-sec { display: grid; gap: 20px; scroll-margin-top: calc(var(--head-h) + 20px); min-width: 0; }
.doc-sec > h2 { font-size: clamp(24px, 2.6vw, 32px); letter-spacing: -0.025em; }
.doc-sec > .lead { margin-top: -6px; }
@media (max-width: 960px) {
  .doc { grid-template-columns: 1fr; }
  .toc { position: static; display: flex; gap: 6px; overflow-x: auto; padding-bottom: 6px; padding-right: 28px; scrollbar-width: none; -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 28px), transparent); mask-image: linear-gradient(90deg, #000 calc(100% - 28px), transparent); }
  .toc::-webkit-scrollbar { display: none; }
  .toc h2 { display: none; }
  .toc a { border: 1px solid var(--line-2); border-radius: 999px; white-space: nowrap; padding: 8px 14px; flex: none; }
  .toc a.on { border-color: var(--paper); }
}
@media (min-width: 600px) and (max-width: 960px) { .toc { flex-wrap: wrap; overflow-x: visible; padding-right: 0; -webkit-mask-image: none; mask-image: none; } }

.steps { display: grid; counter-reset: s; border-radius: var(--r); border: 1px solid var(--line); overflow: hidden; }
.steps li { counter-increment: s; display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 14px; padding: 16px 20px 16px 16px; background: var(--panel); font-size: 15.5px; line-height: 1.65; color: var(--mist); align-items: start; list-style: none; }
.steps li + li { border-top: 1px solid var(--line); }
@media (min-width: 360px) { .steps li strong, .tips li strong { white-space: nowrap; } }
.steps li::before { content: counter(s); display: grid; place-items: center; width: 28px; height: 28px; margin: 0 auto; border-radius: 50%; background: var(--panel-3); border: 1px solid var(--line-2); font-size: 13.5px; font-weight: 700; color: var(--silver); }

/* 이펙트 컨트롤 패널 */
.fx { border-radius: var(--r); border: 1px solid var(--line-2); background: #0e0e12; overflow: hidden; }
.fx-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 6px 12px; padding: 11px 16px; background: var(--panel-2); border-bottom: 1px solid var(--line-2); font-size: 13.5px; color: var(--mist); }
.fx-head b { color: var(--paper); font-weight: 700; }
.fx-head .hint { color: var(--ash); }
.fx-group { border-top: 1px solid var(--line); }
.fx-group:first-of-type { border-top: 0; }
.fx-group > summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 16px minmax(0, 1fr) auto; gap: 10px; align-items: center; padding: 14px 16px; transition: background-color 0.15s; }
.fx-group > summary::-webkit-details-marker { display: none; }
.fx-group > summary:hover { background: rgba(255, 255, 255, 0.025); }
.fx-group > summary .i { width: 14px; height: 14px; color: var(--ash); transition: transform 0.2s var(--ease); }
.fx-group[open] > summary .i { transform: rotate(90deg); color: var(--paper); }
.fx-group .gname { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 10px; min-width: 0; }
.fx-group .gname b { font-size: 15px; font-weight: 700; color: var(--paper); }
.fx-group .gname b.top { color: var(--silver); }
.fx-group .gname span { font-size: 13.5px; color: var(--ash); }
.fx-group .count { font-size: 13px; color: var(--ash); font-variant-numeric: tabular-nums; }
.fx-gdesc { padding: 0 16px 12px 42px; color: var(--mist); font-size: 14.5px; line-height: 1.65; max-width: 80ch; text-wrap: pretty; }
.fx-params { padding: 2px 0 10px; }
.fx-p { display: grid; grid-template-columns: minmax(170px, 0.8fr) minmax(0, 1.6fr); gap: 6px 20px; padding: 11px 16px 11px 42px; border-top: 1px dashed var(--line); }
.fx-p .pn { display: grid; gap: 2px; align-content: start; min-width: 0; }
.fx-p .pn b { font-size: 14.5px; font-weight: 600; line-height: 1.4; color: var(--paper); overflow-wrap: anywhere; }
.fx-p .pn span { font-size: 13px; line-height: 1.35; color: var(--ash); }
.fx-p .pd { color: var(--mist); font-size: 14.5px; line-height: 1.65; display: grid; gap: 8px; align-content: start; min-width: 0; text-wrap: pretty; }
.fx-p.nodoc { padding-top: 8px; padding-bottom: 8px; }
.fx-p.nodoc .pd:empty { display: none; }
.fx-opts { display: flex; flex-wrap: wrap; gap: 5px; }
.fx-count { display: inline-flex; align-items: center; min-height: 24px; padding: 2px 9px; border-radius: 6px; font-size: 12.5px; line-height: 1.3; color: var(--silver); background: var(--panel-2); border: 1px solid var(--line-2); }
.fx-more { display: inline-flex; align-items: center; min-height: 24px; padding: 2px 9px; border-radius: 6px; font-size: 12.5px; line-height: 1.3; background: transparent; border: 1px dashed var(--line-3); color: var(--mist); cursor: pointer; }
.fx-more:hover { color: var(--paper); border-color: var(--silver); }
.fx-opts span { display: inline-flex; align-items: center; min-height: 24px; padding: 2px 8px; border-radius: 6px; font-size: 12.5px; line-height: 1.3; background: var(--panel-2); border: 1px solid var(--line-2); color: var(--silver); }
@media (max-width: 640px) {
  .fx-p { grid-template-columns: 1fr; padding-left: 16px; }
  .fx-gdesc { padding-left: 16px; }
}

.tips { display: grid; gap: 10px; }
.tips li { display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: 12px; padding: 16px 18px; border-radius: 12px; border: 1px solid var(--line); background: var(--panel); color: var(--mist); font-size: 15px; line-height: 1.65; }
.tips li .i { color: var(--silver); margin-top: 3px; width: 18px; height: 18px; }
.uses { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.uses li { text-wrap: balance; padding: 18px; border-radius: 12px; border: 1px solid var(--line); background: linear-gradient(180deg, var(--panel-2), var(--panel)); color: var(--paper); font-size: 15px; line-height: 1.6; }
.pairs { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.pair { display: grid; gap: 8px; align-content: start; padding: 18px; border-radius: 12px; border: 1px solid var(--line); background: var(--panel); transition: border-color 0.2s, background-color 0.2s; }
.pair:hover { border-color: var(--line-3); background: var(--panel-2); }
.pair .t { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.pair b { font-size: 16.5px; font-weight: 800; }
.pair p { color: var(--mist); font-size: 14.5px; line-height: 1.6; }
.pair:only-child { max-width: 460px; }
.tech { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.tech li { background: var(--void); padding: 14px 18px; font-size: 14.5px; line-height: 1.65; color: var(--mist); display: grid; grid-template-columns: 14px minmax(0, 1fr); gap: 12px; }
.tech li::before { content: ""; width: 6px; height: 6px; margin-top: 9px; border-radius: 50%; background: var(--silver); }

.pnav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.pnav a { display: grid; gap: 4px; padding: 20px 22px; border-radius: var(--r); border: 1px solid var(--line); background: var(--panel); transition: border-color 0.2s; min-width: 0; }
.pnav a:hover { border-color: var(--line-3); }
.pnav a.next { text-align: right; }
.pnav span { font-size: 13.5px; color: var(--ash); }
.pnav b { font-size: 19px; font-weight: 800; letter-spacing: -0.015em; line-height: 1.3; }
@media (max-width: 520px) { .pnav { grid-template-columns: 1fr; } }

.band { border-radius: var(--r-lg); border: 1px solid var(--line-2); padding: clamp(26px, 4vw, 44px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 40px; background: radial-gradient(80% 140% at 100% 0%, var(--glow, rgba(255, 255, 255, 0.06)), transparent 60%), var(--panel); }
.band.essential { --glow: rgba(61, 139, 255, 0.16); }
.band.pro { --glow: rgba(176, 108, 255, 0.18); }
.band > div:first-child { flex: 1 1 320px; min-width: 0; }
.band h2 { font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -0.025em; }
.band p { color: var(--mist); margin-top: 8px; font-size: 15.5px; }
.band .btns { display: flex; flex-wrap: wrap; gap: 10px; }
.band .btns .btn { flex: 1 1 auto; }
.band.essential p, .band.pro p { text-wrap: balance; }

/* Toolbox 상세 */
.tools-cat { display: grid; gap: 12px; }
.tools-cat + .tools-cat { margin-top: 28px; }
.tools-cat h3 { display: flex; align-items: baseline; gap: 10px; font-size: 16px; font-weight: 700; color: var(--silver); }
.tools-cat h3 span { color: var(--ash); font-weight: 500; font-size: 14px; }
.tools { display: grid; border-radius: 12px; border: 1px solid var(--line); overflow: hidden; }
.tool { display: grid; grid-template-columns: minmax(200px, 0.8fr) minmax(0, 1.8fr); gap: 8px 22px; padding: 14px 18px; background: var(--panel); align-items: center; }
.tool + .tool { border-top: 1px solid var(--line); }
.tool .tn { display: grid; grid-template-columns: 36px minmax(0, 1fr); column-gap: 12px; row-gap: 4px; align-items: center; min-width: 0; }
.tool .tn img { width: 36px; height: 36px; border-radius: 9px; grid-row: span 2; }
.tool .tn img:nth-last-child(2) { grid-row: auto; }
.tool .tn b .nb { margin-left: 4px; vertical-align: 1px; }
.tool .tn > :not(img) { grid-column: 2; }
.tool .tn b { font-size: 14.5px; font-weight: 700; line-height: 1.35; color: var(--paper); }
.tool .td { display: grid; gap: 4px; font-size: 14.5px; line-height: 1.6; color: var(--mist); min-width: 0; }
.tool .td .how { color: var(--ash); font-size: 14px; }
.tool .td > span { text-wrap: balance; }
.tool .plan { justify-self: start; }
@media (max-width: 640px) { .tool { grid-template-columns: 1fr; } }
.panels { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }
.panel-card { border-radius: var(--r); border: 1px solid var(--line); background: var(--panel); padding: 20px; display: grid; gap: 10px; align-content: start; min-width: 0; }
.panel-card h3 { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 16px; font-weight: 700; }
.panel-card h3 .plan { margin-block: -3px; }
.panel-card p { color: var(--mist); font-size: 14.5px; line-height: 1.6; }
.panel-card ul { display: grid; gap: 6px; }
.panel-card li { font-size: 14px; line-height: 1.55; color: var(--mist); padding-left: 14px; position: relative; }
.panel-card li::before { content: ""; position: absolute; left: 0; top: 10px; width: 5px; height: 2px; background: var(--silver); }

/* ================= 가이드 ================= */
.gstep { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(18px, 3vw, 40px); align-items: start; padding: clamp(20px, 2.4vw, 28px); border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--panel); }
.gstep.noimg { grid-template-columns: 1fr; }
.gstep.noimg .txt { max-width: 72ch; }
.gstep + .gstep { margin-top: 14px; }
.gstep .n { font-size: 14px; font-weight: 700; color: var(--ash); }
.gstep h3 { font-size: 21px; letter-spacing: -0.015em; margin-top: 6px; }
.gstep .txt { display: grid; gap: 12px; align-content: start; min-width: 0; }
.gstep .txt p, .gstep .txt li { color: var(--mist); font-size: 15px; line-height: 1.7; }
.gstep .txt ul { display: grid; gap: 6px; padding-left: 18px; }
.gstep figure { margin: 0; min-width: 0; }
.gstep img { border-radius: 12px; border: 1px solid var(--line-2); background: #0d0d11; width: 100%; }
.gstep img[src*="guide-09-info-tab"] { aspect-ratio: 964 / 610; object-fit: cover; object-position: 50% 0; }
@media (max-width: 860px) { .gstep { grid-template-columns: 1fr; } }
.os-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.os-card { border-radius: var(--r); border: 1px solid var(--line); background: var(--panel); padding: 22px; display: grid; gap: 12px; align-content: start; min-width: 0; }
.os-card h3 { font-size: 18px; }
.os-card ol { display: grid; gap: 8px; padding-left: 20px; color: var(--mist); font-size: 15px; line-height: 1.6; }
.os-card code.ui { display: block; width: fit-content; max-width: 100%; margin-top: 6px; white-space: normal; overflow-wrap: anywhere; }
@media (max-width: 760px) { .os-grid { grid-template-columns: 1fr; } }

/* ================= v3: 공통 배지 · 페이지 머리 ================= */
.nb { display: inline-flex; align-items: center; height: 20px; padding: 0 7px; border-radius: 6px; font-size: 11px; font-weight: 800; font-style: normal; line-height: 1; white-space: nowrap; }
.nb.new { color: #0a0a0d; background: var(--paper); }
.nb.beta { color: var(--silver); border: 1px solid var(--line-3); }
.nb.latest { color: var(--ess-2); background: var(--ess-soft); }
.page-hero { display: grid; gap: 18px; }
.page-hero > * { max-width: 900px; }

/* ================= 함께 만들어가는 TMC 플러그인 ================= */
.tg { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: clamp(16px, 2.4vw, 32px); align-items: start; }
.tg-flow { display: grid; gap: 16px; min-width: 0; }
.tg-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.tg-steps li { display: grid; gap: 14px; align-content: start; padding: 20px; border-radius: var(--r); border: 1px solid var(--line); background: var(--panel); min-width: 0; }
.tg-n { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--panel-3); border: 1px solid var(--line-2); font-size: 14px; font-weight: 800; color: var(--silver); font-variant-numeric: tabular-nums; }
.tg-steps h3 { font-size: 17px; line-height: 1.4; letter-spacing: -0.012em; }
.tg-steps p { margin-top: 6px; font-size: 14.5px; line-height: 1.65; color: var(--mist); }
.tg-mail { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 16px; padding: 16px 18px; border-radius: var(--r); border: 1px solid var(--line-2); background: radial-gradient(120% 180% at 0% 0%, rgba(61, 139, 255, 0.1), transparent 60%), var(--panel-2); }
.tg-mail > span { font-size: 15px; font-weight: 600; color: var(--silver); }
.tg-quote { margin: 0; padding: 4px 0 4px 20px; border-left: 2px solid var(--line-3); display: grid; gap: 10px; }
.tg-quote blockquote { margin: 0; font-size: 16.5px; line-height: 1.8; color: var(--paper); }
.tg-quote figcaption { font-size: 14px; font-weight: 700; color: var(--silver); }
.tg-quote figcaption::before { content: "— "; color: var(--ash); }
.tg-feed { display: grid; gap: 16px; align-content: start; min-width: 0; padding: clamp(20px, 2.4vw, 28px); border-radius: var(--r-lg); border: 1px solid var(--line); background: linear-gradient(180deg, var(--panel-2), var(--panel)); }
.tg-stat { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 10px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.tg-stat .n { font-size: clamp(44px, 4.6vw, 58px); font-weight: 800; line-height: 1; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.tg-stat .u { font-size: 18px; font-weight: 700; }
.tg-stat .s { flex-basis: 100%; font-size: 14px; color: var(--ash); }
.tg-feed h3 { font-size: 14px; font-weight: 700; color: var(--silver); }
.tg-list { display: grid; }
.tg-list a { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); font-size: 14.5px; line-height: 1.5; color: var(--mist); }
.tg-list li:first-child a { border-top: 0; padding-top: 0; }
.tg-list time { color: var(--ash); font-weight: 600; font-variant-numeric: tabular-nums; }
.tg-list a:hover span { color: var(--paper); }
.tg-feed .btn { justify-self: start; }
@media (max-width: 1080px) { .tg { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .tg-steps { grid-template-columns: 1fr; } .tg-steps li { grid-template-columns: 30px minmax(0, 1fr); } }

/* 특징 카드: 함께 만들어가는 TMC 플러그인 */
.b-card.b-together { border: 1px solid transparent; background: linear-gradient(180deg, var(--panel-2), var(--panel)) padding-box, linear-gradient(135deg, rgba(61, 139, 255, 0.6), rgba(255, 255, 255, 0.06) 42%, rgba(255, 255, 255, 0.06) 58%, rgba(176, 108, 255, 0.6)) border-box; }
.b-tg { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(20px, 3vw, 44px); align-items: start; }
.b-tg-copy { display: grid; gap: 16px; align-content: start; }
.b-together .tg-steps { grid-template-columns: 1fr; gap: 10px; }
.b-together .tg-steps li { grid-template-columns: 30px minmax(0, 1fr); gap: 14px; padding: 16px 18px; background: rgba(255, 255, 255, 0.02); }
.tg-steps h4 { font-size: 16px; line-height: 1.4; font-weight: 700; letter-spacing: -0.01em; }
.b-together .tg-mail { justify-self: start; }
.b-together .tg-quote { margin-top: 8px; }
.b-feed h4 { font-size: 14px; font-weight: 700; color: var(--silver); margin-bottom: 6px; }
.b-feed .tg-list a { font-size: 14px; padding: 9px 0; }
@media (max-width: 980px) { .b-tg { grid-template-columns: 1fr; } }

/* ================= 업데이트 내역 ================= */
.upd-stats { display: flex; flex-wrap: wrap; gap: 8px 10px; }
.upd-stats span { display: inline-flex; align-items: center; gap: 8px; height: 36px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--panel); font-size: 14px; font-weight: 600; color: var(--silver); }
.upd-stats .i { width: 16px; height: 16px; color: var(--ash); }
.upd-list { display: grid; gap: 14px; }
.upd { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 20px; scroll-margin-top: calc(var(--head-h) + 20px); }
.upd-date { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding-top: 19px; font-size: 15px; font-weight: 700; color: var(--silver); font-variant-numeric: tabular-nums; }
.upd-card { border-radius: var(--r); border: 1px solid var(--line); background: var(--panel); min-width: 0; transition: border-color 0.2s; }
.upd-card[open] { border-color: var(--line-2); }
.upd-card > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; }
.upd-card > summary::-webkit-details-marker { display: none; }
.upd-card > summary .i { flex: none; color: var(--ash); transform: rotate(90deg); transition: transform 0.25s var(--ease); }
.upd-card[open] > summary .i { transform: rotate(-90deg); }
.upd-card h2 { font-size: 18px; line-height: 1.45; letter-spacing: -0.015em; }
.upd-body { padding: 0 22px 22px; display: grid; gap: 18px; }
.upd-g { display: grid; gap: 10px; padding-top: 18px; border-top: 1px solid var(--line); min-width: 0; }
.upd-g h3 { font-size: 15.5px; line-height: 1.45; font-weight: 700; }
.upd-g ul { display: grid; gap: 8px; padding-left: 18px; color: var(--mist); font-size: 15px; line-height: 1.7; }
.upd-g li::marker { color: var(--line-3); }
.upd-g b { color: var(--paper); font-weight: 700; }
.upd-g em { font-style: normal; color: var(--ash); font-size: 14px; }
.upd-g p, .upd-g blockquote { margin: 0; color: var(--mist); font-size: 15px; line-height: 1.7; }
.upd-g blockquote { padding-left: 14px; border-left: 2px solid var(--line-3); }
.upd-g .nb { margin-right: 6px; vertical-align: 1px; }
@media (max-width: 760px) {
  .upd { grid-template-columns: 1fr; gap: 8px; }
  .upd-date { flex-direction: row; align-items: center; padding-top: 0; }
  .upd-card > summary { padding: 16px 18px; }
  .upd-body { padding: 0 18px 18px; }
}

/* ================= 자주 묻는 질문 페이지 ================= */
.faq-cats a { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.faq-cats .ct { font-size: 12.5px; color: var(--ash); font-variant-numeric: tabular-nums; }
.faq-search { display: flex; align-items: center; gap: 10px; height: 52px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--panel); transition: border-color 0.2s; }
.faq-search:focus-within { border-color: var(--line-3); }
.faq-search .i { width: 18px; height: 18px; color: var(--ash); }
.faq-search input { flex: 1; min-width: 0; height: 100%; border: 0; outline: 0; background: transparent; color: var(--paper); font: inherit; font-size: 16px; }
.faq-search input::placeholder { color: var(--ash); }
.faq-search input::-webkit-search-cancel-button { filter: invert(0.6); }
.faq-search .ct { font-size: 13px; color: var(--ash); font-variant-numeric: tabular-nums; }
.faq-doc .doc-body { gap: clamp(40px, 5vw, 64px); }
.faq-sec > h2 { font-size: clamp(22px, 2.2vw, 26px); }

/* ================= Toolbox: Ring (Pie Menu) ================= */
.ring { display: grid; gap: 16px; }
.ring-video { margin: 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-2); background: #141417; aspect-ratio: 1188 / 810; }
.ring-video video { width: 100%; height: 100%; object-fit: cover; }
.ring-shots { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr); gap: 14px; align-items: start; }
.ring-shots figure { margin: 0; display: grid; gap: 8px; min-width: 0; }
.ring-shots img { width: 100%; border-radius: 12px; border: 1px solid var(--line-2); background: #141417; }
.ring-shots figcaption { font-size: 13.5px; line-height: 1.5; color: var(--ash); }
@media (max-width: 640px) { .ring-shots { grid-template-columns: 1fr; } }

/* ================= 이미지 크게 보기 (라이트박스) ================= */
a[data-zoom] { cursor: zoom-in; display: block; }
a[data-zoom] img { transition: transform 0.5s var(--ease), filter 0.25s; }
a[data-zoom]:hover img { filter: brightness(1.06); }
.b-hub-shot { display: block; }
html.lb-open { overflow: hidden; }
.lb { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: calc(72px + env(safe-area-inset-top, 0px)) clamp(16px, 6vw, 88px) calc(72px + env(safe-area-inset-bottom, 0px)); }
.lb-backdrop { position: absolute; inset: 0; background: rgba(5, 5, 8, 0.9); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); opacity: 0; transition: opacity 0.2s ease; }
.lb-stage { position: relative; margin: 0; display: grid; gap: 12px; justify-items: center; max-width: min(1400px, 100%); max-height: 100%; opacity: 0; transform: scale(0.97); transition: opacity 0.2s ease, transform 0.24s var(--ease); pointer-events: none; }
.lb.on .lb-backdrop, .lb.on .lb-stage { opacity: 1; transform: none; }
.lb-img { display: block; max-width: 100%; max-height: calc(100vh - 190px); max-height: calc(100dvh - 190px); width: auto; height: auto; border-radius: 12px; border: 1px solid var(--line-2); background: #0d0d11; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6); pointer-events: auto; transition: opacity 0.15s; }
.lb.loading .lb-img { opacity: 0.35; }
.lb-cap { font-size: 14px; line-height: 1.5; color: var(--mist); text-align: center; max-width: 70ch; }
.lb-btn { position: absolute; z-index: 1; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(20, 20, 26, 0.85); border: 1px solid var(--line-2); color: var(--paper); cursor: pointer; transition: background-color 0.15s, border-color 0.15s, transform 0.15s var(--ease); }
.lb-btn:hover { background: rgba(40, 40, 50, 0.95); border-color: var(--line-3); }
.lb-btn:active { transform: scale(0.94); }
.lb-btn .i { width: 20px; height: 20px; }
.lb-close { top: calc(16px + env(safe-area-inset-top, 0px)); right: 16px; }
.lb-prev { left: 16px; top: 50%; margin-top: -22px; }
.lb-next { right: 16px; top: 50%; margin-top: -22px; }
.lb-count { position: absolute; z-index: 1; top: calc(28px + env(safe-area-inset-top, 0px)); left: 50%; transform: translateX(-50%); font-size: 13.5px; color: var(--mist); font-variant-numeric: tabular-nums; }
@media (max-width: 640px) {
  .lb { padding-inline: 12px; }
  .lb-prev, .lb-next { top: auto; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); margin: 0; }
  .lb-prev { left: calc(50% - 56px); }
  .lb-next { right: calc(50% - 56px); }
}

/* ================= 등장·전환 (짧고 작게) ================= */
.rv { opacity: 0; transform: translate3d(0, 12px, 0); transition: opacity 0.42s var(--ease), transform 0.42s var(--ease); transition-delay: calc(var(--rv, 0) * 50ms); }
.rv.in { opacity: 1; transform: none; }
@keyframes fx-in { from { opacity: 0; transform: translate3d(0, 6px, 0); } to { opacity: 1; transform: none; } }
.fx-in { animation: fx-in 0.26s var(--ease) both; }
.faq details[open] > .ans, .upd-card[open] > .upd-body, .fx-group[open] > :not(summary) { animation: fx-in 0.24s var(--ease) both; }
.hero-load > * { animation-duration: 0.6s; }

/* 좁은 화면 */
@media (max-width: 480px) {
  .hero-badge { font-size: 13px; height: 32px; }
  .reel-ctrl .reel-count { display: none; }
}

/* 모션 줄이기 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .rw { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .rw-row { animation: none; padding-inline: var(--gutter); }
  .rw-row [aria-hidden="true"] { display: none; }
  .rw-ctl { display: none; }
  .rv { opacity: 1; transform: none; }
}

/* 영어 본문 한 줄 길이: 칸이 넓은 목록·문단이 한 줄 115~130자까지 늘어나 읽기 힘들었다 */
:lang(en) :is(.legal-list, .legal > p, .legal ul, .tips li > span, .steps li > :last-child) { max-width: 80ch; }

/* 일본어: 줄 균형(text-wrap: balance · pretty)을 끈다. Chrome은 줄 균형을 맞출 때 구절 단위 줄바꿈(auto-phrase)을 무시하고
   단어 중간에서 끊는다('バージ|ョン', '1文|字'). 균형 없이 auto-phrase만 쓰면 구절 경계에서 끊긴다 — 2026-09 Chrome 153에서 확인.
   text-wrap-style만 바꾸므로 white-space: nowrap(줄바꿈 안 함) 설정은 그대로 남는다. */
:lang(ja) body * { text-wrap-style: auto !important; }

