/* ==========================================================================
   서원 프라이빗 서클 — 랜딩
   H5 폭(480px) 고정 · PC 배경색 = 본문 배경색 (경계 없음)
   ========================================================================== */

:root{
  /* 색 */
  --page:      #DFEAF8;   /* 본문·PC 공통 배경 — 흰 카드와 대비를 낮춘 연한 하늘색 */
  --page-ink:  #17365F;   /* 연한 배경 위 본문 글자 */
  --page-dim:  #5A759C;   /* 연한 배경 위 보조 글자 */
  --ink:       #0A1E3C;
  --vault-a:   #123163;
  --vault-b:   #0B2148;
  --paper:     #FFFFFF;
  --mist:      #E9F2FF;
  --sky:       #2F7FE0;
  --sky-soft:  #8ABBF5;
  --amber:     #F0862E;
  --gold:      #D9B87C;
  --night:     #071528;

  /* 타입 */
  --sans: 'Pretendard', 'Pretendard Variable', -apple-system, BlinkMacSystemFont,
          'Apple SD Gothic Neo', 'Malgun Gothic', 'Noto Sans KR', sans-serif;
  --serif:'Nanum Myeongjo', 'Apple SD Gothic Neo', serif;

  /* 레이아웃 */
  --col: 480px;
  --gut: 20px;
  --r-xl: 30px;
  --r-lg: 26px;
  --r-md: 17px;
  --r-sm: 13px;
}

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

html{
  background: var(--page);
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  background: var(--page);          /* PC 여백과 본문이 같은 색 */
  color: var(--page-ink);
  font-family: var(--sans);
  font-size:15px;
  line-height:1.6;
  word-break:keep-all;
  overflow-wrap:anywhere;
}

/* height:auto 가 있어야 width/height 속성보다 aspect-ratio 가 우선합니다 */
img{ display:block; max-width:100%; height:auto; }
ul{ margin:0; padding:0; list-style:none; }
p{ margin:0; }
h1,h2{ margin:0; font-weight:800; letter-spacing:-.02em; }
svg{ display:block; }

a:focus-visible,button:focus-visible{
  outline:2px solid #1f63bd;
  outline-offset:3px;
  border-radius:6px;
}

/* 본문 컬럼 — 배경 없음(= body 색 그대로 노출) */
.page{
  max-width: var(--col);
  margin-inline:auto;
  position:relative;
}

/* ── 히어로 ─────────────────────────────────────────────── */
.hero{ position:relative; color:#fff; }
/* 이미지 상단(#0348a5)에서 그대로 이어지는 하늘 — 카피가 앉을 자리 */
.hero__sky{
  height:clamp(158px, 44vw, 196px);
  background:linear-gradient(180deg,#02306f 0%, #023d8d 52%, #0348a5 100%);
}
.hero__art{ width:100%; height:auto; margin-top:-1px; }
.hero__veil{
  position:absolute; left:0; right:0; bottom:-1px; height:40%;
  background:linear-gradient(180deg,
    rgba(223,234,248,0)   0%,
    rgba(223,234,248,.20) 46%,
    rgba(223,234,248,.72) 79%,
    var(--page)          100%);
}
.hero__copy{
  position:absolute; top:0; left:0; right:0;
  padding: calc(max(16px, env(safe-area-inset-top)) + 22px) var(--gut) 0;
  text-align:center;
}

.brand{
  display:flex; align-items:center; justify-content:center; gap:10px;
  font-size:12.5px; font-weight:600; letter-spacing:.01em;
  color:rgba(255,255,255,.92);
}
.brand__bar{ width:1px; height:12px; background:rgba(255,255,255,.45); }
.brand__mark{ display:inline-flex; align-items:center; gap:5px; }
.orb{
  width:13px; height:13px; border-radius:50%;
  background:
    radial-gradient(circle at 32% 28%, #fff 0 14%, rgba(255,255,255,.55) 30%, transparent 62%),
    linear-gradient(150deg,#bfe0ff,#3f8fe8);
  box-shadow:0 0 0 1px rgba(255,255,255,.35) inset;
}
.orb--gold{
  background:
    radial-gradient(circle at 32% 28%, #fff8e8 0 14%, rgba(255,255,255,.45) 30%, transparent 62%),
    linear-gradient(150deg,#f3e0b8,#b78f45);
}

.hero__title{
  margin-top:26px;
  font-size:clamp(38px,10.5vw,50px);
  font-weight:800;
  line-height:1.12;
  text-shadow:0 2px 26px rgba(6,38,84,.32);
}
.hero__sub{
  margin-top:12px;
  font-size:16px; font-weight:500;
  color:rgba(255,255,255,.92);
  letter-spacing:-.01em;
}

/* ── 세 가지 축 ─────────────────────────────────────────── */
.pills{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:9px;
  padding:2px var(--gut) 0;
  margin-top:-6px;
}
.pill{
  height:46px;
  display:grid; place-items:center;
  border-radius:999px;
  font-size:14.5px; font-weight:700; letter-spacing:-.02em;
  color:#14508f;
  background:linear-gradient(180deg,#ffffff 0%,#f2f7fe 100%);
  box-shadow:0 4px 14px rgba(24,74,150,.13), 0 0 0 1px rgba(60,120,200,.16);
}

/* ── 카드 스택 ──────────────────────────────────────────── */
.stack{
  display:flex; flex-direction:column; gap:16px;
  padding:18px var(--gut) 0;
}
.card{
  border-radius:var(--r-lg);
  padding:22px 18px 24px;
  box-shadow:0 8px 24px rgba(24,74,150,.12);
}
.card__head{ margin-bottom:16px; }
.card__title{ font-size:22px; line-height:1.25; }
.card__sub{
  margin-top:5px;
  font-size:13px; font-weight:500;
  opacity:.72;
}

/* 01 프리미엄 전용관 ------------------------------------- */
.card--vault{
  background:linear-gradient(158deg, var(--vault-a) 0%, var(--vault-b) 100%);
  color:#fff;
  box-shadow:0 10px 28px rgba(11,33,72,.22);
}
.card--vault .card__title{
  background:linear-gradient(92deg,#ffffff 20%,#cfe4ff 100%);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
}

.advisor{
  display:flex; align-items:center; gap:10px;
  padding:8px 8px 8px 10px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(47,127,224,.42), rgba(47,127,224,.10));
  box-shadow:0 0 0 1px rgba(140,190,250,.28) inset;
}
.advisor__face{
  width:30px; height:30px; border-radius:50%;
  object-fit:cover;
  box-shadow:0 0 0 1.5px rgba(255,255,255,.5);
}
.advisor__label{ font-size:13px; font-weight:600; flex:1; }
.advisor__go{
  font-size:11.5px; font-weight:700;
  color:#0d2c58;
  padding:5px 11px; border-radius:999px;
  background:linear-gradient(180deg,#ffe6b0,#e9b45c);
  white-space:nowrap;
}

.card__body{
  margin-top:14px;
  font-size:12.8px; line-height:1.85;
  color:rgba(226,238,255,.80);
}

.tiles{
  margin-top:14px;
  display:grid; grid-template-columns:1fr 1fr; gap:8px;
}
.tiles img{
  width:100%; aspect-ratio:16/10; object-fit:cover;
  border-radius:var(--r-sm);
  box-shadow:0 0 0 1px rgba(150,195,255,.20) inset;
}

.quote{
  margin:16px 0 0;
  padding-left:12px;
  border-left:2px solid rgba(217,184,124,.75);
  font-size:13.5px; line-height:1.75; font-weight:500;
  color:#f2e6cf;
}

.marks{
  margin-top:16px;
  display:grid; grid-template-columns:1fr 1fr; gap:8px;
}
.mark{
  padding:12px 11px;
  border-radius:var(--r-md);
  background:rgba(255,255,255,.055);
  box-shadow:0 0 0 1px rgba(150,195,255,.16) inset;
}
.mark svg{
  width:17px; height:17px; margin-bottom:7px;
  fill:none; stroke:var(--gold); stroke-width:1.7;
  stroke-linecap:round; stroke-linejoin:round;
}
.mark b{ display:block; font-size:12.5px; font-weight:700; letter-spacing:-.02em; }
.mark span{ display:block; margin-top:3px; font-size:10.5px; color:rgba(214,231,255,.6); }

/* 02 자산배분과 관리 ------------------------------------- */
.card--plan{
  background:linear-gradient(180deg,#ffffff 0%,#f2f7ff 100%);
  color:var(--ink);
}
.card--plan .card__sub{ color:#3a5d90; opacity:1; }

.widgets{
  display:grid; grid-template-columns:1fr 1fr; gap:10px;
}
.widget{
  padding:13px 12px 14px;
  border-radius:var(--r-md);
  background:#fff;
  box-shadow:0 4px 14px rgba(20,60,120,.09), 0 0 0 1px rgba(30,90,170,.08);
  display:flex; flex-direction:column;
}
.widget__name{
  font-size:12.5px; font-weight:700; letter-spacing:-.02em;
  color:#12305c;
  min-height:2.6em;
}
.widget__note{
  margin-top:auto; padding-top:8px;
  font-size:10px; color:#6a83a6; text-align:center;
}
.widget__note b{ color:#12305c; }

/* 레이더 */
.radar{ position:relative; margin:2px auto 0; width:118px; height:118px; }
.radar svg{ width:100%; height:100%; }
.radar__grid{ fill:none; stroke:#d7e4f6; stroke-width:1; }
.radar__area{ fill:rgba(47,127,224,.16); stroke:#2F7FE0; stroke-width:1.6; }
.radar__disc{ fill:#fff; stroke:#cfe0f6; stroke-width:1; }
.radar__score{
  position:absolute; inset:0;
  display:grid; place-content:center; justify-items:center;
  font-size:9px; color:#6a83a6;
}
.radar__score b{
  display:block;
  font-size:22px; font-weight:800; letter-spacing:-.04em;
  color:#2F7FE0; line-height:1;
}
.radar__lbl{
  position:absolute; font-style:normal; font-size:9px; color:#7690b3; white-space:nowrap;
}
.radar__lbl--t{ top:-2px; left:50%; transform:translateX(-50%); }
.radar__lbl--b{ bottom:-2px; left:50%; transform:translateX(-50%); }
.radar__lbl--l{ left:-4px; top:50%; transform:translateY(-50%); }
.radar__lbl--r{ right:-4px; top:50%; transform:translateY(-50%); }

/* 도넛 */
.donut{ display:grid; place-items:center; margin-top:4px; }
.donut__ring{
  width:96px; height:96px; border-radius:50%;
  display:grid; place-items:center;
  position:relative;
  background:conic-gradient(var(--amber) 0 42%, var(--sky) 42% 75%, var(--sky-soft) 75% 100%);
}
.donut__ring::after{
  content:''; position:absolute; inset:21px;
  border-radius:50%; background:#fff;
}
.donut__ring span{
  position:relative; z-index:1;
  font-size:9.5px; line-height:1.35; font-weight:700;
  color:#12305c; text-align:center;
}
.legend{
  margin-top:10px;
  display:flex; flex-direction:column; gap:4px;
  font-size:9.5px; color:#4a668f;
}
.legend li{ display:flex; align-items:center; gap:5px; }
.legend i{ width:7px; height:7px; border-radius:2px; background:var(--c); }

/* 게이지 */
.gauge{ position:relative; margin:6px auto 0; width:130px; }
.gauge svg{ width:100%; height:auto; overflow:visible; }
.gauge__track{ fill:none; stroke:#e2ebf8; stroke-width:9; stroke-linecap:round; }
.gauge__fill{
  fill:none; stroke:#2F7FE0; stroke-width:9; stroke-linecap:round;
  stroke-dasharray:67.9 151; /* 45% */
}
.gauge__dot{ fill:#fff; stroke:#2F7FE0; stroke-width:3; }
.gauge__score{
  position:absolute; left:50%; bottom:7px; transform:translateX(-50%);
  font-size:21px; font-weight:800; letter-spacing:-.04em; color:#12305c;
  line-height:1;
}

/* 막대 */
.bars{
  margin-top:6px;
  height:74px;
  display:flex; align-items:flex-end; gap:6px;
}
.bars i{
  flex:1; height:var(--h);
  border-radius:3px 3px 1px 1px;
  background:linear-gradient(180deg,#7fb4f2,#2F7FE0);
}
.bars i:nth-child(6){ background:linear-gradient(180deg,#ffc06a,var(--amber)); }
.deltas{
  margin-top:10px;
  display:flex; flex-direction:column; gap:3px;
  font-size:9.5px; color:#4a668f;
}
.deltas li{ display:flex; justify-content:space-between; }
.deltas b{ color:#1d7a4f; font-weight:700; }

/* 03 독점 리서치 ----------------------------------------- */
.card--research{
  background:linear-gradient(180deg,#cfe1fb 0%,#b4d1f6 100%);
  color:#0f3163;
}
.card--research .card__title{ font-size:26px; letter-spacing:-.03em; }
.card--research .card__sub{ color:#28558f; opacity:1; }

.reports{
  display:grid; grid-template-columns:1fr 1fr; gap:10px;
}
.report{
  background:#fff;
  border-radius:var(--r-md);
  overflow:hidden;
  box-shadow:0 4px 12px rgba(14,52,110,.12);
}
.report__thumb{ position:relative; }
.report__thumb img{
  width:100%; aspect-ratio:4/3; object-fit:cover;
  object-position:center 20%;   /* 인물 얼굴을 프레임 안에 */
}
.report__tag{
  position:absolute; top:7px; left:7px;
  padding:2px 7px; border-radius:5px;
  font-size:9.5px; font-weight:700;
  color:#fff; background:rgba(12,45,95,.72);
  backdrop-filter:blur(4px);
}
.report__title{
  padding:9px 10px 12px;
  font-size:12px; font-weight:600; line-height:1.5;
  letter-spacing:-.02em;
  color:#12305c;
}

/* ── 자격 요건 ──────────────────────────────────────────── */
.eligibility{
  padding:28px var(--gut) 30px;
  text-align:center;
  font-size:13px; line-height:1.9; font-weight:500;
  color:var(--page-ink);
}
.eligibility__by{
  margin-top:6px;
  font-size:12px; font-weight:400;
  color:var(--page-dim);
}

/* ── 서클 ───────────────────────────────────────────────── */
.circle{
  margin:0 var(--gut);
  border-radius:var(--r-xl);
  overflow:hidden;
  padding:38px 20px 34px;
  background:
    radial-gradient(120% 60% at 50% 0%, #16375f 0%, transparent 60%),
    linear-gradient(180deg,#0d2340 0%,#061527 100%);
  color:#e8eef7;
  text-align:center;
}
.brand--quiet{ color:rgba(232,238,247,.8); }

.circle__title{
  margin-top:26px;
  font-family:var(--serif);
  font-size:clamp(26px,7.2vw,32px);
  font-weight:800; line-height:1.42; letter-spacing:-.01em;
  background:linear-gradient(96deg,#f7ead0 0%,#d9b87c 55%,#c2a061 100%);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
}
.circle__kicker{
  margin-top:14px;
  font-size:15px; font-weight:600;
  color:rgba(232,238,247,.9);
}
.circle__rule{
  width:64px; margin:24px auto;
  border:0; border-top:1px solid rgba(217,184,124,.5);
}
.circle__verse{
  font-family:var(--serif);
  font-size:15.5px; line-height:2.05;
  color:rgba(232,238,247,.86);
}
.circle__art{
  width:100%; height:auto;
  margin-top:28px;
  border-radius:var(--r-lg);
  box-shadow:0 18px 40px rgba(0,0,0,.45);
}
.circle__sign{
  margin-top:26px;
  font-family:var(--serif);
  font-size:15px; letter-spacing:.02em;
  color:var(--gold);
}
.circle__sign span{ position:relative; padding:0 16px; }
.circle__sign span::before,
.circle__sign span::after{
  content:''; position:absolute; top:50%;
  width:20px; height:1px; background:rgba(217,184,124,.5);
}
.circle__sign span::before{ left:-14px; }
.circle__sign span::after{ right:-14px; }
.circle__risk{
  margin-top:10px;
  font-size:11.5px;
  color:rgba(232,238,247,.45);
}

/* ── 고지 ───────────────────────────────────────────────── */
.legal{
  background:var(--night);
  margin:14px var(--gut) 0;
  border-radius:var(--r-lg);
  padding:18px 20px 20px;
}
.legal p{
  font-size:10.5px; line-height:1.75;
  color:rgba(203,216,233,.62);
  word-break:break-all;
}

/* ── 상담 CTA ───────────────────────────────────────────── */
.cta-gap{ height:calc(92px + env(safe-area-inset-bottom)); }

.cta-dock{
  position:fixed; z-index:20;
  left:50%; bottom:0; transform:translateX(-50%);
  width:100%; max-width:var(--col);
  padding:14px var(--gut) calc(14px + env(safe-area-inset-bottom));
  /* 페이지 색과 같은 계열의 스크림 — PC에서도 뜬 블록으로 보이지 않게 */
  background:linear-gradient(180deg,
    rgba(223,234,248,0)   0%,
    rgba(223,234,248,.80) 42%,
    var(--page)          100%);
}
.cta{
  position:relative;
  overflow:hidden;
  height:54px;
  display:flex; align-items:center; justify-content:center; gap:8px;
  border-radius:16px;
  background:linear-gradient(135deg,#4A97F0 0%,#2570D8 52%,#1B57B8 100%);
  color:#fff;
  font-size:17px; font-weight:800; letter-spacing:-.02em;
  text-decoration:none;
  animation:cta-beat 2.6s ease-in-out infinite;
  will-change:transform;
}
.cta svg{
  width:20px; height:20px;
  fill:none; stroke:currentColor; stroke-width:1.8;
  stroke-linecap:round; stroke-linejoin:round;
}

/* 버튼 위를 지나가는 하이라이트 */
.cta::after{
  content:'';
  position:absolute; top:-20%; left:-45%;
  width:38%; height:140%;
  background:linear-gradient(100deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.62) 50%,
    rgba(255,255,255,0) 100%);
  transform:skewX(-18deg);
  animation:cta-sheen 2.6s ease-in-out infinite;
}

@keyframes cta-beat{
  0%,100%{ transform:scale(1);     box-shadow:0 6px 18px rgba(24,74,150,.30); }
  50%    { transform:scale(1.017); box-shadow:0 12px 28px rgba(37,112,216,.46); }
}
@keyframes cta-sheen{
  0%      { left:-45%; }
  55%,100%{ left:120%; }
}

.cta:active{ animation-play-state:paused; transform:scale(.985); }
@media (hover:hover){
  .cta:hover{ animation-play-state:paused; box-shadow:0 12px 30px rgba(37,112,216,.5); }
}

/* ── 상담 전 확인 팝업 ──────────────────────────────────── */
.survey{
  position:fixed; inset:0; z-index:60;
  display:none; align-items:center; justify-content:center;
  padding:18px;
}
.survey.is-open{ display:flex; }
body.survey-open{ overflow:hidden; }

.survey__veil{
  position:absolute; inset:0;
  background:rgba(4,14,30,.62);
  backdrop-filter:blur(3px);
  animation:survey-fade .25s ease;
}

.survey__panel{
  position:relative;
  width:100%; max-width:420px; max-height:88vh;
  overflow-y:auto;
  border-radius:var(--r-lg);
  background:var(--paper);
  box-shadow:0 24px 60px rgba(7,21,40,.42);
  animation:survey-rise .3s cubic-bezier(.34,1.4,.64,1);
}

@keyframes survey-fade{ from{ opacity:0; } to{ opacity:1; } }
@keyframes survey-rise{
  from{ opacity:0; transform:translateY(22px) scale(.95); }
  to  { opacity:1; transform:none; }
}

.survey__head{
  position:relative;
  padding:26px 22px 22px;
  border-radius:var(--r-lg) var(--r-lg) 0 0;
  background:linear-gradient(150deg,var(--vault-a) 0%,var(--vault-b) 58%,var(--night) 100%);
  text-align:center;
}
.survey__close{
  position:absolute; top:12px; right:12px;
  width:32px; height:32px; padding:0;
  display:flex; align-items:center; justify-content:center;
  border:none; border-radius:50%;
  background:rgba(255,255,255,.14);
  color:#fff; cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}
.survey__close svg{
  width:15px; height:15px;
  fill:none; stroke:currentColor; stroke-width:1.9; stroke-linecap:round;
}
.survey__close:active{ transform:scale(.94); }
@media (hover:hover){
  .survey__close:hover{ background:rgba(255,255,255,.26); }
}

.survey__title{
  margin-top:14px;
  font-family:var(--serif);
  font-size:20px; line-height:1.45; letter-spacing:-.02em;
  color:#fff;
}

.survey__body{ padding:22px 20px 20px; }

.survey__q + .survey__q{ margin-top:18px; }
.survey__ask{
  margin-bottom:11px;
  font-size:14px; font-weight:600; line-height:1.55;
  color:var(--ink);
}
.survey__opts{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }

.survey__opt{
  position:relative;
  padding:14px 10px;
  border:1.5px solid #D8E2F0;
  border-radius:var(--r-sm);
  background:var(--paper);
  color:#6B7C93;
  font-family:inherit; font-size:15px; font-weight:600;
  cursor:pointer;
  transition:border-color .2s ease, background .2s ease, color .2s ease;
}
@media (hover:hover){
  .survey__opt:hover{ border-color:var(--sky-soft); }
}
.survey__opt.is-picked{
  border-color:var(--sky);
  background:var(--mist);
  color:#164C97;
}
.survey__opt.is-picked::after{
  content:'';
  position:absolute; top:8px; right:8px;
  width:8px; height:8px; border-radius:50%;
  background:var(--sky);
}

.survey__q.is-blank .survey__opt{
  border-color:var(--amber);
  animation:survey-shake .35s ease;
}
@keyframes survey-shake{
  0%,100%{ transform:translateX(0); }
  25%    { transform:translateX(-5px); }
  75%    { transform:translateX(5px); }
}

.survey__hint{
  display:none;
  margin-top:14px;
  font-size:12.5px; font-weight:600; text-align:center;
  color:var(--amber);
}
.survey__hint.is-shown{ display:block; }

.survey__submit{
  width:100%; height:54px; margin-top:20px;
  display:flex; align-items:center; justify-content:center; gap:8px;
  border:none; border-radius:16px;
  background:linear-gradient(135deg,#4A97F0 0%,#2570D8 52%,#1B57B8 100%);
  color:#fff;
  font-family:inherit; font-size:17px; font-weight:800; letter-spacing:-.02em;
  cursor:pointer;
  box-shadow:0 8px 22px rgba(24,74,150,.34);
  transition:transform .2s ease, box-shadow .2s ease;
}
.survey__submit svg{
  width:20px; height:20px;
  fill:none; stroke:currentColor; stroke-width:1.8;
  stroke-linecap:round; stroke-linejoin:round;
}
.survey__submit:active{ transform:scale(.985); }
@media (hover:hover){
  .survey__submit:hover{ box-shadow:0 12px 30px rgba(37,112,216,.5); }
}

.survey__note{
  margin-top:13px;
  font-size:10.5px; line-height:1.7; text-align:center;
  color:var(--page-dim);
}

@media (max-width:359px){
  .survey{ padding:12px; }
  .survey__panel{ max-height:92vh; }
  .survey__title{ font-size:18px; }
  .survey__body{ padding:18px 15px 16px; }
  .survey__ask{ font-size:13.5px; }
  .survey__opt{ padding:12px 8px; font-size:14px; }
  .survey__submit{ font-size:15.5px; }
}

@media (prefers-reduced-motion:reduce){
  .survey__veil,.survey__panel{ animation:none; }
  .survey__q.is-blank .survey__opt{ animation:none; }
}

/* ── 스크롤 등장 ──────────────────────────────────────────
   JS가 없거나 인쇄할 때는 항상 보이도록 .js 아래에서만 숨깁니다. */
.js .reveal{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .6s ease, transform .6s cubic-bezier(.22,.75,.3,1);
}
.js .reveal.is-in{ opacity:1; transform:none; }

@media (prefers-reduced-motion:reduce){
  .js .reveal{ opacity:1; transform:none; transition:none; }
  .cta{ animation:none; box-shadow:0 8px 22px rgba(24,74,150,.34); }
  .cta::after{ display:none; }
}
@media print{
  .js .reveal{ opacity:1; transform:none; }
  .cta-dock{ display:none; }
}

/* ── 좁은 화면 미세 조정 ────────────────────────────────── */
@media (max-width:359px){
  :root{ --gut:14px; }
  .pill{ font-size:13px; }
  .widget__name{ font-size:11.5px; }
}
