/* PlantTempo 랜딩. 색·반경·그림자는 앱 토큰(src/theme.ts, docs/DESIGN/reference-analysis.md)을 따른다.
   의도적으로 밝은 한 가지 톤만 쓴다. 초록 그라데이션 배경은 쓰지 않는다(식물 그림의 색 변화가 묻힌다). */

:root {
  --wall: #F7F3EA;
  --wall-2: #FBF8F2;
  --paper: #FFFFFF;
  --surface: #F7F9FB;
  --edge: rgba(23, 32, 45, 0.08);
  --ink: #191F28;
  --sub: #4E5968;
  --weak: #8B95A1;
  --faint: #B0B8C1;
  --blue: #2C7CF0;
  --blue-l: #4A97F9;
  --blue-d: #1B5FD0;
  --blue-tint: #EFF6FF;
  --ok: #0E8F53;
  --ok-tint: #ECF9F2;
  --warn: #96751F;
  --warn-tint: #FAF5E4;
  --danger: #D9481F;
  --danger-tint: #FFF4F1;
  --shelf: #E8D6BE;
  --shelf-edge: #C8AE8C;
  --night: #12161C;

  --sans: "Manrope", "Noto Sans KR", system-ui, -apple-system, "Apple SD Gothic Neo", sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-card: 0 1px 2px rgba(23, 32, 45, 0.04), 0 16px 30px -22px rgba(23, 32, 45, 0.45);
  --shadow-float: 0 2px 4px rgba(23, 32, 45, 0.04), 0 30px 60px -30px rgba(23, 32, 45, 0.45);
  --shadow-blue: 0 1px 1px rgba(20, 52, 110, 0.10), 0 8px 18px -6px rgba(35, 110, 232, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.30);
  --gutter: clamp(20px, 5vw, 64px);
  --max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--wall);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
:lang(ko) body, body:lang(ko) { word-break: keep-all; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
.num { font-family: "Manrope", var(--sans); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 8px; }

/* ───────── 공통 타이포 ───────── */
.pt-display {
  margin: 0;
  font-size: clamp(44px, 6.2vw, 92px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.045em;
}
:lang(ko) .pt-display { line-height: 1.16; letter-spacing: -0.05em; }
:lang(en) .pt-display { font-size: clamp(42px, 5vw, 74px); }
:lang(en) .pt-hero__copy, :lang(ko) .pt-hero__copy { max-width: 760px; }
.pt-display em { font-style: normal; color: var(--blue); position: relative; white-space: nowrap; }
.pt-h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
}
:lang(ko) .pt-h2 { line-height: 1.24; }
.pt-kicker {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--blue);
}
.pt-lead { margin: 22px 0 0; font-size: clamp(18px, 1.6vw, 22px); color: var(--sub); line-height: 1.6; max-width: 34em; }
.pt-body { margin: 22px 0 0; font-size: 18px; color: var(--sub); max-width: 32em; }

.pt-wrap { width: 100%; max-width: calc(var(--max) + var(--gutter) * 2); margin: 0 auto; padding-inline: var(--gutter); }
.pt-section { padding-block: clamp(96px, 14vw, 180px); position: relative; }

/* ───────── 버튼 ───────── */
.pt-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 26px;
  border: 0; border-radius: 16px;
  background: linear-gradient(180deg, var(--blue-l) 0%, var(--blue) 52%, #2472E8 100%);
  color: #fff; font-size: 17px; font-weight: 700; letter-spacing: -0.02em; text-decoration: none;
  box-shadow: var(--shadow-blue);
  cursor: pointer;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), filter 200ms;
}
.pt-btn:hover { transform: translateY(-2px); filter: saturate(1.1); }
.pt-btn:active { transform: translateY(0) scale(0.98); }
.pt-btn svg { flex: none; }
.pt-btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--edge), 0 1px 2px rgba(23, 32, 45, 0.04);
  backdrop-filter: blur(8px);
}
.pt-btn--sm { min-height: 40px; padding: 0 16px; border-radius: 12px; font-size: 14px; }
.pt-btn[aria-disabled="true"] { cursor: default; }
.pt-btn[aria-disabled="true"]:hover { transform: none; }
.pt-btn--play { background: var(--ink); box-shadow: 0 10px 24px -12px rgba(18, 22, 28, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12); }
.pt-btn--play small { display: block; font-size: 11px; font-weight: 600; opacity: 0.7; line-height: 1.1; }
.pt-btn--play span { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }

/* ───────── 내비 ───────── */
.pt-nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  transition: background 300ms var(--ease), box-shadow 300ms var(--ease), transform 400ms var(--ease);
}
.pt-nav.is-scrolled { background: rgba(251, 248, 242, 0.78); backdrop-filter: saturate(1.4) blur(16px); -webkit-backdrop-filter: saturate(1.4) blur(16px); box-shadow: 0 1px 0 var(--edge); }
.pt-nav__in { display: flex; align-items: center; gap: 28px; height: 68px; max-width: calc(var(--max) + var(--gutter) * 2); margin: 0 auto; padding-inline: var(--gutter); }
.pt-brand { display: flex; align-items: center; gap: 8px; text-decoration: none; flex: none; }
.pt-brand img:first-child { width: 30px; height: 30px; }
.pt-brand__type { width: 118px; height: auto; }
.pt-nav__links { display: flex; gap: 26px; margin-left: 12px; }
.pt-nav__links a { font-size: 15px; font-weight: 600; color: var(--sub); text-decoration: none; transition: color 160ms; }
.pt-nav__links a:hover { color: var(--ink); }
.pt-nav__end { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.pt-lang { font-size: 14px; font-weight: 700; color: var(--sub); text-decoration: none; padding: 8px 12px; border-radius: 10px; box-shadow: inset 0 0 0 1px var(--edge); background: rgba(255,255,255,0.5); }
.pt-lang:hover { color: var(--ink); background: #fff; }
/* 어두운 섹션 위를 지날 때 */
.pt-nav.is-dark.is-scrolled { background: rgba(18, 22, 28, 0.72); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07); }
.pt-nav.is-dark .pt-brand__type { filter: brightness(0) invert(1); }
.pt-nav.is-dark .pt-nav__links a { color: #A9B3BF; }
.pt-nav.is-dark .pt-nav__links a:hover { color: #fff; }
.pt-nav.is-dark .pt-lang { color: #E7EBF0; background: rgba(255,255,255,0.06); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12); }

/* ───────── 히어로 ───────── */
.pt-hero {
  position: relative;
  min-height: max(720px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 78% 30%, #FFFDF8 0%, rgba(255, 253, 248, 0) 70%),
    linear-gradient(180deg, var(--wall-2) 0%, var(--wall) 100%);
}
.pt-hero__stage { position: absolute; inset: 0; }
.pt-hero__stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 900ms var(--ease); touch-action: pan-y; }
.pt-hero__stage.is-live canvas { opacity: 1; }
.pt-hero__stage.is-live .pt-poster { opacity: 0; transform: translateY(8px); }
/* WebGL 이 없거나 모션 줄이기일 때 보이는 정지 선반 */
.pt-poster {
  position: absolute; right: max(var(--gutter), calc((100vw - var(--max)) / 2)); bottom: 16%;
  width: min(46vw, 620px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.pt-poster__plants { display: flex; align-items: flex-end; justify-content: center; gap: 0; position: relative; z-index: 1; }
.pt-poster__plants img { width: 34%; margin: 0 -3%; }
.pt-poster__plants img:nth-child(2) { width: 46%; }
.pt-poster__plants img:nth-child(3) { transform: translateY(26%); }
.pt-poster__shelf { height: 18px; border-radius: 9px; background: linear-gradient(180deg, #EFE0CC, var(--shelf)); box-shadow: 0 8px 0 -2px #D9C3A6, 0 26px 40px -20px rgba(80, 58, 30, 0.45); }

.pt-hero__copy { position: relative; z-index: 2; padding-block: 120px 80px; max-width: 640px; pointer-events: none; }
.pt-hero__copy .pt-lead { max-width: 25em; }
.pt-hero__copy a, .pt-hero__copy span { pointer-events: auto; }
.pt-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 26px;
  padding: 8px 14px 8px 10px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.7); box-shadow: inset 0 0 0 1px var(--edge);
  font-size: 14px; font-weight: 700; color: var(--sub); backdrop-filter: blur(6px);
}
.pt-eyebrow img { width: 22px; height: 22px; }
.pt-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.pt-trust { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 28px 0 0; padding: 0; list-style: none; font-size: 15px; font-weight: 600; color: var(--sub); }
.pt-trust li { display: flex; align-items: center; gap: 7px; }
.pt-trust li::before { content: ""; width: 16px; height: 16px; border-radius: 50%; background: var(--ok-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E8F53' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 10px no-repeat; box-shadow: inset 0 0 0 1px rgba(18, 160, 94, 0.2); }

/* 식물을 따라다니는 상태 칩 (앱 개별 화면의 칩과 같은 색) */
.pt-chip {
  position: absolute; left: 0; top: 0; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 15px;
  font-size: 14px; font-weight: 700; white-space: nowrap;
  background: #E6F7EE; color: var(--ok);
  box-shadow: inset 0 0 0 1px rgba(18, 160, 94, 0.2), 0 10px 24px -14px rgba(23, 32, 45, 0.4);
  transform: translate3d(-50%, -100%, 0);
  transition: background 400ms var(--ease), color 400ms var(--ease), box-shadow 400ms var(--ease), opacity 400ms;
  opacity: 0; pointer-events: none; will-change: transform;
}
.pt-chip.is-on { opacity: 1; }
.pt-chip b { font-weight: 800; }
.pt-chip i { width: 1px; height: 12px; background: currentColor; opacity: 0.25; }
.pt-chip[data-stage="1"] { background: #F1F8E4; color: #5E8A2E; box-shadow: inset 0 0 0 1px rgba(111, 150, 58, 0.26), 0 10px 24px -14px rgba(23, 32, 45, 0.4); }
.pt-chip[data-stage="2"] { background: #FAF3DE; color: var(--warn); box-shadow: inset 0 0 0 1px rgba(169, 133, 39, 0.3), 0 10px 24px -14px rgba(23, 32, 45, 0.4); }
.pt-chip[data-stage="3"] { background: #FFEDE7; color: var(--danger); box-shadow: inset 0 0 0 1px rgba(216, 84, 47, 0.3), 0 10px 24px -14px rgba(23, 32, 45, 0.4); }

.pt-hero__hint {
  position: absolute; z-index: 2; left: 50%; bottom: 26px; transform: translateX(-50%);
  margin: 0; display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--weak);
}
/* 3D 가 없으면 누를 식물도 없다 */
.pt-hero__stage:not(.is-live) ~ .pt-hero__hint { display: none; }
.pt-hero__hint::after { content: ""; width: 1px; height: 36px; background: linear-gradient(var(--faint), transparent); animation: pt-drip 2.4s var(--ease) infinite; }
@keyframes pt-drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ───────── 문제: 스크롤로 글자가 채워진다 ───────── */
.pt-problem { padding-block: clamp(120px, 18vw, 240px); background: var(--paper); }
.pt-scrub { margin: 0; font-size: clamp(30px, 4.4vw, 60px); font-weight: 800; line-height: 1.3; letter-spacing: -0.04em; max-width: 21em; }
:lang(ko) .pt-scrub { line-height: 1.42; }
.pt-scrub .w { color: #DCE1E7; transition: color 260ms linear; }
.pt-scrub .w.on { color: var(--ink); }
.pt-scrub .w.hl.on { color: var(--blue); }

/* ───────── 스토리: 고정된 3D 장면 + 단계 ───────── */
.pt-story { position: relative; height: 520vh; background: linear-gradient(180deg, var(--paper) 0%, var(--wall-2) 12%, var(--wall) 100%); }
.pt-story__sticky { position: sticky; top: 0; height: 100svh; display: grid; grid-template-columns: 1.15fr 1fr; align-items: center; gap: clamp(20px, 4vw, 64px); max-width: calc(var(--max) + var(--gutter) * 2); margin: 0 auto; padding-inline: var(--gutter); overflow: hidden; }
.pt-story__art { position: relative; height: min(78svh, 760px); }
.pt-story__art canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 900ms var(--ease); }
.pt-story__art.is-live canvas { opacity: 1; }
.pt-story__art.is-live .pt-story__poster { opacity: 0; }
.pt-story__poster { position: absolute; left: 50%; bottom: 14%; width: min(80%, 460px); transform: translateX(-50%); transition: opacity 600ms; }
.pt-daybar { position: absolute; left: 50%; bottom: 3%; transform: translateX(-50%); display: flex; align-items: center; gap: 6px; padding: 8px; border-radius: 999px; background: rgba(255,255,255,0.8); box-shadow: inset 0 0 0 1px var(--edge), var(--shadow-card); backdrop-filter: blur(8px); }
.pt-daybar span { display: grid; place-items: center; min-width: 44px; height: 32px; padding: 0 8px; border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--weak); transition: background 300ms var(--ease), color 300ms var(--ease); }
.pt-daybar span.on { background: var(--ink); color: #fff; }
.pt-daybar span.due { box-shadow: inset 0 0 0 1.5px var(--blue); color: var(--blue); }
.pt-daybar span.due.on { background: var(--blue); color: #fff; }

.pt-steps { list-style: none; margin: 40px 0 0; padding: 0; display: grid; gap: 6px; counter-reset: s; }
.pt-steps li { position: relative; padding: 16px 20px 16px 22px; border-radius: 20px; transition: background 400ms var(--ease), box-shadow 400ms var(--ease), opacity 400ms; opacity: 0.38; }
.pt-steps li::before { content: ""; position: absolute; left: 0; top: 22px; bottom: 22px; width: 3px; border-radius: 3px; background: var(--faint); transition: background 400ms; }
.pt-steps li.on { opacity: 1; background: rgba(255,255,255,0.75); box-shadow: inset 0 0 0 1px var(--edge), var(--shadow-card); }
.pt-steps li.on::before { background: var(--blue); }
.pt-steps small { display: block; font-size: 13px; font-weight: 700; color: var(--weak); }
.pt-steps strong { display: block; font-size: 22px; font-weight: 800; letter-spacing: -0.03em; margin-top: 2px; }
.pt-steps p { margin: 6px 0 0; font-size: 16px; color: var(--sub); line-height: 1.6; max-height: 0; overflow: hidden; transition: max-height 500ms var(--ease); }
.pt-steps li.on p { max-height: 8em; }

/* ───────── 좌우 분할 섹션 ───────── */
.pt-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(40px, 7vw, 120px); }
.pt-split--flip .pt-split__copy { order: 2; }
.pt-checks { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 12px; }
.pt-checks li { display: flex; gap: 12px; font-size: 16px; font-weight: 600; color: var(--ink); }
.pt-checks li::before { content: ""; flex: none; margin-top: 3px; width: 22px; height: 22px; border-radius: 50%; background: var(--blue-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232C7CF0' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat; box-shadow: inset 0 0 0 1px rgba(44,124,240,0.16); }
.pt-try { margin: 34px 0 0; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--blue); }
.pt-try svg { animation: pt-nudge 1.8s var(--ease) infinite; }
@keyframes pt-nudge { 50% { transform: translateX(5px); } }

/* ───────── 휴대폰 목업 (앱 화면을 HTML 로 다시 그린 것) ───────── */
.pt-phone-wrap { position: relative; display: grid; place-items: center; }
.pt-phone-wrap::before { content: ""; position: absolute; width: 90%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(closest-side, rgba(74, 151, 249, 0.18), rgba(74, 151, 249, 0)); filter: blur(10px); }
.pt-phone {
  position: relative; width: min(100%, 372px); aspect-ratio: 390 / 812;
  border-radius: 48px; padding: 12px;
  background: linear-gradient(145deg, #2A3038, #0E1116);
  box-shadow: 0 0 0 1.5px #3A414B inset, 0 50px 90px -40px rgba(18, 22, 28, 0.55), 0 20px 40px -30px rgba(18, 22, 28, 0.5);
}
.pt-screen { position: relative; height: 100%; border-radius: 37px; overflow: hidden; background: #fff; color: var(--ink); font-size: 14px; line-height: 1.4; display: flex; flex-direction: column; container-type: inline-size; }
.pt-screen__status { display: flex; justify-content: space-between; align-items: center; padding: 14px 26px 4px; font-size: 13px; font-weight: 700; }
.pt-screen__status i { display: flex; gap: 5px; }
.pt-screen__status i b { width: 16px; height: 9px; border-radius: 3px; background: var(--ink); opacity: 0.85; }
.pt-screen__status i b:first-child { width: 12px; opacity: 0.5; }
.pt-app-head { display: flex; align-items: center; justify-content: space-between; padding: 6px 10px 2px; }
.pt-app-head b { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; }
.pt-app-head span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--sub); font-size: 13px; }
.pt-focus-card {
  margin: 6px 12px 0; flex: 1 1 auto; min-height: 0;
  border-radius: 26px; padding: 14px 14px 16px;
  display: flex; flex-direction: column; align-items: center;
  background: var(--ok-tint); box-shadow: inset 0 0 0 1px rgba(18, 160, 94, 0.26);
  transition: background 500ms var(--ease), box-shadow 500ms var(--ease);
}
.pt-focus-card[data-stage="1"] { background: #F4F9EC; box-shadow: inset 0 0 0 1px rgba(111,150,58,0.26); }
.pt-focus-card[data-stage="2"] { background: var(--warn-tint); box-shadow: inset 0 0 0 1px rgba(169,133,39,0.30); }
.pt-focus-card[data-stage="3"] { background: var(--danger-tint); box-shadow: inset 0 0 0 1px rgba(216,84,47,0.30); }
.pt-focus-card .pt-chip { position: static; transform: none; opacity: 1; font-size: 12px; padding: 6px 12px; box-shadow: inset 0 0 0 1px rgba(18,160,94,0.2); }
.pt-focus-art { position: relative; flex: 1 1 auto; min-height: 0; width: 100%; display: grid; place-items: center; }
.pt-focus-art img { width: 72%; max-height: 100%; object-fit: contain; transform-origin: 50% 96%; animation: pt-sway 4.6s ease-in-out infinite; }
.pt-focus-art img.pop { animation: pt-pop 700ms var(--spring), pt-sway 4.6s ease-in-out 700ms infinite; }
@keyframes pt-sway { 0%, 100% { transform: rotate(-1.2deg); } 50% { transform: rotate(1.4deg); } }
@keyframes pt-pop { 0% { transform: scale(0.94, 0.9); } 60% { transform: scale(1.03, 1.05); } 100% { transform: scale(1); } }
.pt-drop { position: absolute; left: 50%; top: 0; width: 22px; height: 30px; margin-left: -11px; opacity: 0; pointer-events: none; }
.pt-drop.fall { animation: pt-fall 620ms cubic-bezier(0.55, 0, 0.9, 0.5) forwards; }
@keyframes pt-fall { 0% { opacity: 0; transform: translateY(-30px) scale(0.6); } 15% { opacity: 1; } 85% { opacity: 1; transform: translateY(150px) scale(1); } 100% { opacity: 0; transform: translateY(170px) scale(1.4, 0.4); } }
.pt-focus-name { font-size: 18px; font-weight: 800; letter-spacing: -0.03em; }
.pt-focus-since { font-size: 12px; color: var(--sub); }
.pt-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 10px 12px 0; }
.pt-tile { padding: 10px 12px; border-radius: 16px; background: linear-gradient(180deg, #FCFDFE, #F5F7F9); box-shadow: inset 0 0 0 1px var(--edge); }
.pt-tile small { display: block; font-size: 11px; color: var(--weak); font-weight: 500; }
.pt-tile b { font-size: 18px; font-weight: 800; letter-spacing: -0.03em; }
.pt-tile em { font-style: normal; font-size: 11px; font-weight: 700; margin-left: 4px; color: var(--weak); }
.pt-tile em.late { color: var(--danger); }
.pt-roll { display: inline-block; }
.pt-roll.go { animation: pt-roll 520ms var(--ease); }
@keyframes pt-roll { 0% { transform: translateY(0); opacity: 1; } 45% { transform: translateY(-60%); opacity: 0; } 55% { transform: translateY(60%); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
.pt-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 10px 12px 0; }
.pt-act {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  height: 50px; border: 0; border-radius: 15px; cursor: pointer;
  font-size: 15px; font-weight: 700; letter-spacing: -0.02em;
  transition: transform 160ms var(--ease), box-shadow 200ms;
}
.pt-act:active { transform: scale(0.96); }
.pt-act--water { background: linear-gradient(180deg, var(--blue-l), var(--blue) 52%, #2472E8); color: #fff; box-shadow: var(--shadow-blue); }
.pt-act--later { background: var(--blue-tint); color: var(--blue-d); box-shadow: inset 0 0 0 1px rgba(44,124,240,0.16); }
.pt-act.hint { animation: pt-ping 1.8s var(--ease) 2; }
@keyframes pt-ping { 0%, 100% { box-shadow: var(--shadow-blue), 0 0 0 0 rgba(44,124,240,0.35); } 60% { box-shadow: var(--shadow-blue), 0 0 0 12px rgba(44,124,240,0); } }
.pt-tabbar { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 10px; padding: 8px 6px 14px; border-top: 1px solid var(--edge); }
.pt-tabbar span { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 10.5px; font-weight: 600; color: var(--faint); }
.pt-tabbar span.on { color: var(--ink); font-weight: 800; }
.pt-tabbar svg { width: 20px; height: 20px; }

.pt-toast {
  position: absolute; left: 12px; right: 12px; top: 96px; z-index: 5;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 14px; border-radius: 14px;
  background: rgba(25, 31, 40, 0.94); color: #fff; font-size: 13px; font-weight: 600;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform 320ms var(--spring), opacity 220ms;
}
.pt-toast.on { transform: none; opacity: 1; pointer-events: auto; }
.pt-toast button { border: 0; background: none; color: #7DB5FF; font-weight: 800; font-size: 13px; cursor: pointer; padding: 6px; margin: -6px; }

.pt-sheet {
  position: absolute; inset: 0; z-index: 6; display: flex; flex-direction: column;
  background: #fff; padding: 44px 16px 16px;
  transform: translateY(100%); transition: transform 460ms var(--ease);
}
.pt-sheet.on { transform: none; }
.pt-sheet h3 { margin: 10px 4px 4px; font-size: 22px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.3; white-space: pre-line; }
.pt-sheet > p { margin: 0 4px; font-size: 12px; color: var(--weak); }
.pt-picked { margin: 14px 0; padding: 14px 16px; border-radius: 18px; background: linear-gradient(180deg, #EFF6FF, #E1EDFD); box-shadow: inset 0 0 0 1px rgba(44,124,240,0.14); }
.pt-picked small { display: block; font-size: 11px; font-weight: 700; color: #3182F6; }
.pt-picked b { display: block; font-size: 21px; font-weight: 800; letter-spacing: -0.03em; overflow: hidden; }
.pt-picked > span { font-size: 11px; color: var(--sub); }
.pt-opts { display: grid; gap: 7px; }
.pt-opt { display: flex; align-items: center; justify-content: space-between; height: 54px; padding: 0 14px; border: 0; border-radius: 15px; cursor: pointer; text-align: left; background: linear-gradient(180deg, #FBFCFD, #F5F7F9); box-shadow: inset 0 0 0 1.5px rgba(23,32,45,0.07); transition: box-shadow 200ms, background 200ms; }
.pt-opt b { display: block; font-size: 15px; font-weight: 700; }
.pt-opt small { display: block; font-size: 11px; color: var(--weak); }
.pt-opt i { width: 20px; height: 20px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px #D5DAE0; transition: all 200ms; }
.pt-opt[aria-checked="true"] { background: linear-gradient(180deg, #fff, #F7FAFF); box-shadow: inset 0 0 0 1.5px var(--blue), 0 10px 20px -16px rgba(35,110,232,0.42); }
.pt-opt[aria-checked="true"] b { color: var(--blue); }
.pt-opt[aria-checked="true"] i { background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat; box-shadow: 0 2px 5px -2px rgba(35,110,232,0.7); }
.pt-sheet__foot { margin-top: auto; display: grid; grid-template-columns: 90px 1fr; gap: 8px; }
.pt-sheet__foot button { height: 50px; border: 0; border-radius: 15px; font-size: 15px; font-weight: 700; cursor: pointer; }
.pt-sheet__foot button:first-child { background: #F2F4F6; color: var(--sub); }
.pt-sheet__foot button:last-child { background: linear-gradient(180deg, var(--blue-l), var(--blue)); color: #fff; box-shadow: var(--shadow-blue); }

/* ───────── 알림 ───────── */
.pt-notify { background: var(--night); color: #fff; overflow: hidden; }
.pt-notify .pt-body { color: #A9B3BF; }
.pt-notify .pt-kicker { color: #7DB5FF; }
.pt-notify .pt-checks li { color: #E7EBF0; }
.pt-notify .pt-checks li::before { background-color: rgba(125,181,255,0.14); box-shadow: none; }
.pt-lock {
  position: relative; width: min(100%, 440px); margin-inline: auto;
  padding: 36px 18px 30px; border-radius: 36px;
  background: radial-gradient(120% 90% at 30% 0%, #3B4A5E 0%, #1B222C 55%, #12161C 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 60px 120px -60px rgba(0,0,0,0.9);
}
.pt-lock__time { text-align: center; font-size: clamp(56px, 8vw, 84px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; color: rgba(255,255,255,0.92); }
.pt-lock__date { text-align: center; font-size: 15px; color: rgba(255,255,255,0.7); margin: 10px 0 30px; }
.pt-notes { display: grid; gap: 10px; }
.pt-note {
  padding: 14px 16px 12px; border-radius: 22px;
  background: rgba(246, 248, 251, 0.92); color: var(--ink);
  box-shadow: 0 20px 40px -24px rgba(0,0,0,0.7);
  transform: translateY(24px) scale(0.96); opacity: 0;
  transition: transform 700ms var(--spring), opacity 400ms, max-height 500ms var(--ease), padding 500ms var(--ease), margin 500ms;
  max-height: 200px; overflow: hidden;
}
.in .pt-note { transform: none; opacity: 1; }
.in .pt-note:nth-child(2) { transition-delay: 380ms; }
.pt-note header { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--sub); }
.pt-note header img { width: 18px; height: 18px; border-radius: 5px; }
.pt-note header time { margin-left: auto; }
.pt-note h3 { margin: 6px 0 0; font-size: 15px; font-weight: 700; letter-spacing: -0.02em; }
.pt-note p { margin: 2px 0 0; font-size: 13px; color: var(--sub); }
.pt-note__acts { display: flex; gap: 22px; margin-top: 10px; padding-top: 8px; border-top: 1px solid rgba(23,32,45,0.07); }
.pt-note__acts button { border: 0; background: none; padding: 6px 0; font-size: 14px; font-weight: 700; color: var(--blue-d); cursor: pointer; }
.pt-note.done { background: rgba(230, 247, 238, 0.95); }
.pt-note.gone { max-height: 0; padding-block: 0; opacity: 0; margin-top: -10px; transition-delay: 0ms !important; }
.pt-note__done { display: none; align-items: center; gap: 6px; margin-top: 8px; font-size: 13px; font-weight: 700; color: var(--ok); }
.pt-note.done .pt-note__acts { display: none; }
.pt-note.done .pt-note__done { display: flex; }
.pt-lock__reset { display: block; margin: 18px auto 0; border: 0; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 999px; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity 300ms; }
.pt-lock__reset.on { opacity: 1; pointer-events: auto; }

/* ───────── 벤토 ───────── */
.pt-bento-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 20px 40px; margin-bottom: 56px; }
.pt-bento-head .pt-body { margin: 0; max-width: 26em; }
.pt-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.pt-box {
  grid-column: span 2; position: relative; overflow: hidden;
  padding: 28px; border-radius: 28px; background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--edge), var(--shadow-card);
  display: flex; flex-direction: column; min-height: 340px;
}
.pt-box--wide { grid-column: span 3; }
.pt-box--full { grid-column: span 6; }
.pt-box h3 { margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.3; }
.pt-box > p { margin: 8px 0 0; font-size: 15px; color: var(--sub); line-height: 1.6; }
.pt-box__vis { margin-top: auto; padding-top: 24px; }

.pt-today { display: grid; gap: 8px; }
.pt-row { display: flex; align-items: center; gap: 12px; padding: 10px 14px 10px 10px; border-radius: 18px; background: linear-gradient(180deg, #FCFDFE, #F5F7F9); box-shadow: inset 0 0 0 1px var(--edge); transform: translateY(18px); opacity: 0; transition: transform 600ms var(--spring), opacity 400ms; }
.in .pt-row { transform: none; opacity: 1; }
.in .pt-row:nth-child(2) { transition-delay: 90ms; }
.in .pt-row:nth-child(3) { transition-delay: 180ms; }
.pt-row img { width: 44px; height: 44px; border-radius: 12px; background: #fff; box-shadow: inset 0 0 0 1px var(--edge); padding: 2px; }
.pt-row b { font-size: 15px; font-weight: 700; }
.pt-row small { display: block; font-size: 12px; color: var(--weak); }
.pt-row em { margin-left: auto; font-style: normal; font-size: 12px; font-weight: 800; padding: 5px 9px; border-radius: 9px; }
.pt-row em.late { color: var(--danger); background: #FFEDE7; }
.pt-row em.warn { color: var(--warn); background: #FAF3DE; }
.pt-row em.today { color: var(--blue); background: var(--blue-tint); }

.pt-season { display: grid; grid-template-columns: repeat(12, 1fr); align-items: center; gap: 6px; height: 170px; position: relative; }
.pt-season::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--edge); }
.pt-season div { position: relative; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.pt-season i { position: absolute; left: 18%; right: 18%; border-radius: 6px; top: 50%; height: 0; transition: height 800ms var(--spring), top 800ms var(--spring); }
.pt-season i.up { background: linear-gradient(180deg, var(--blue-l), var(--blue)); }
.pt-season i.down { background: linear-gradient(180deg, #F5B08F, #E7825B); }
.pt-season small { position: absolute; bottom: -4px; font-size: 11px; font-weight: 600; color: var(--weak); }
.pt-season b { position: absolute; font-size: 11px; font-weight: 800; color: var(--sub); opacity: 0; transition: opacity 400ms 500ms; }
.in .pt-season b { opacity: 1; }
.pt-legend { display: flex; gap: 14px; margin-top: 14px; font-size: 12px; font-weight: 600; color: var(--weak); }
.pt-legend span::before { content: ""; display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 6px; vertical-align: -1px; background: var(--blue); }
.pt-legend span:last-child::before { background: #E7825B; }

.pt-history { list-style: none; margin: 0; padding: 0 0 0 18px; position: relative; display: grid; gap: 14px; }
.pt-history::before { content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px; background: var(--edge); border-radius: 2px; }
.pt-history li { position: relative; font-size: 14px; }
.pt-history li::before { content: ""; position: absolute; left: -18px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 3px #fff; }
.pt-history li.snooze::before { background: #fff; box-shadow: inset 0 0 0 2.5px var(--weak), 0 0 0 3px #fff; }
.pt-history b { font-weight: 700; }
.pt-history small { display: block; font-size: 12px; color: var(--weak); }

.pt-undo { position: relative; height: 150px; display: grid; place-items: center; }
.pt-undo__toast { display: flex; align-items: center; gap: 16px; padding: 14px 18px; border-radius: 16px; background: var(--ink); color: #fff; font-size: 14px; font-weight: 600; box-shadow: var(--shadow-float); }
.pt-undo__toast b { color: #7DB5FF; font-weight: 800; }
.pt-undo__cursor { position: absolute; right: 22%; bottom: 20px; width: 26px; height: 26px; border-radius: 50%; background: rgba(44,124,240,0.2); box-shadow: inset 0 0 0 2px var(--blue); }
.in .pt-undo__cursor { animation: pt-tap 2.6s var(--ease) infinite; }
@keyframes pt-tap { 0% { transform: translate(40px, 40px); opacity: 0; } 30% { opacity: 1; } 55% { transform: translate(0, 0) scale(1); } 65% { transform: scale(0.7); } 75% { transform: scale(1); } 100% { transform: scale(1); opacity: 0; } }

.pt-langs { display: flex; gap: 10px; flex-wrap: wrap; }
.pt-langs span { padding: 12px 16px; border-radius: 16px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--edge); font-size: 15px; font-weight: 700; }
.pt-langs span.on { background: var(--blue-tint); color: var(--blue); box-shadow: inset 0 0 0 1.5px var(--blue); }

/* ───────── 선반 줄 ───────── */
.pt-shelves { padding-block: clamp(96px, 12vw, 160px) clamp(80px, 10vw, 140px); background: var(--wall); overflow: hidden; }
.pt-shelves__head { text-align: center; max-width: 780px; margin: 0 auto 64px; padding-inline: var(--gutter); }
.pt-shelves__head .pt-body { margin-inline: auto; }
.pt-rail { position: relative; margin-bottom: 42px; }
.pt-rail::after { content: ""; position: absolute; left: 0; right: 0; bottom: 36px; height: 16px; background: linear-gradient(180deg, #EFE0CC, var(--shelf)); box-shadow: 0 7px 0 -1px #D9C3A6, 0 24px 30px -18px rgba(80,58,30,0.4); }
.pt-rail__track { display: flex; width: max-content; gap: 0; animation: pt-marquee var(--dur, 90s) linear infinite; position: relative; z-index: 1; }
.pt-rail--rev .pt-rail__track { animation-direction: reverse; }
.pt-rail:hover .pt-rail__track { animation-play-state: paused; }
@keyframes pt-marquee { to { transform: translateX(-50%); } }
.pt-pot { width: 150px; flex: none; display: flex; flex-direction: column; align-items: center; padding-bottom: 0; }
.pt-pot img { width: 132px; height: 132px; object-fit: contain; transform-origin: 50% 100%; margin-bottom: 50px; transition: transform 400ms var(--spring); }
.pt-pot:hover img { transform: scale(1.08) rotate(-2deg); }
.pt-pot span { position: absolute; bottom: 0; font-size: 13px; font-weight: 700; color: var(--sub); white-space: nowrap; }
.pt-pot { position: relative; }

/* ───────── 약속 ───────── */
.pt-promise { background: var(--night); color: #fff; }
.pt-promise .pt-kicker { color: #7DB5FF; }
.pt-promise .pt-body { color: #A9B3BF; }
.pt-zeros { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 64px 0 0; }
.pt-zero { padding: 30px 28px; border-radius: 28px; background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); }
.pt-zero b { display: block; font-size: clamp(64px, 8vw, 104px); font-weight: 800; line-height: 1; letter-spacing: -0.05em; background: linear-gradient(180deg, #fff, #9CC6FF); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pt-zero span { display: block; margin-top: 14px; font-size: 18px; font-weight: 700; }
.pt-zero small { display: block; margin-top: 4px; font-size: 14px; color: #8C97A4; }
.pt-without { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px 80px; margin-top: 96px; align-items: start; }
.pt-without ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.pt-without li { position: relative; width: fit-content; font-size: clamp(24px, 3vw, 38px); font-weight: 800; letter-spacing: -0.03em; color: #5C6773; padding: 2px 0; }
.pt-without li::after { content: ""; position: absolute; left: -4px; right: -4px; top: 54%; height: 3px; border-radius: 3px; background: #7DB5FF; transform: scaleX(0); transform-origin: left; transition: transform 700ms var(--ease); }
.pt-without.in li::after { transform: scaleX(1); }
.pt-without.in li:nth-child(2)::after { transition-delay: 160ms; }
.pt-without.in li:nth-child(3)::after { transition-delay: 320ms; }
.pt-without.in li:nth-child(4)::after { transition-delay: 480ms; }
.pt-without.in li { color: #46505B; transition: color 700ms 600ms; }
.pt-honest { margin-top: 28px; padding: 18px 20px; border-radius: 18px; background: rgba(255,255,255,0.05); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); font-size: 15px; color: #C8D0D9; }
.pt-honest b { color: #fff; }

/* ───────── FAQ ───────── */
.pt-faq { background: var(--paper); }
.pt-faq__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px 80px; align-items: start; }
.pt-faq details { border-bottom: 1px solid var(--edge); }
.pt-faq details:first-child { border-top: 1px solid var(--edge); }
.pt-faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 4px; font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.pt-faq summary::-webkit-details-marker { display: none; }
.pt-faq summary::after { content: ""; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234E5968' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 14px no-repeat; transition: transform 300ms var(--ease); }
.pt-faq details[open] summary::after { transform: rotate(45deg); }
.pt-faq details p { margin: -6px 4px 24px; font-size: 16px; color: var(--sub); max-width: 38em; }

/* ───────── 마지막 CTA ───────── */
.pt-final { position: relative; text-align: center; overflow: hidden; background: radial-gradient(900px 500px at 50% 100%, #FFFFFF 0%, rgba(255,255,255,0) 70%), var(--wall); }
.pt-final__mark { width: 128px; height: 128px; margin: 0 auto 36px; filter: drop-shadow(0 24px 30px rgba(44, 124, 240, 0.28)); animation: pt-float 5s ease-in-out infinite; }
@keyframes pt-float { 50% { transform: translateY(-12px) rotate(2deg); } }
.pt-final .pt-lead { margin-inline: auto; }
.pt-final .pt-cta { justify-content: center; }

/* ───────── 푸터 ───────── */
.pt-foot { background: #EFEAE0; color: var(--sub); font-size: 13px; padding-block: 56px 40px; }
.pt-foot__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; padding-bottom: 28px; border-bottom: 1px solid rgba(23,32,45,0.1); }
.pt-foot__top nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.pt-foot a { text-decoration: none; font-weight: 600; }
.pt-foot a:hover { color: var(--ink); }
.pt-foot dl { display: flex; flex-wrap: wrap; gap: 4px 18px; margin: 24px 0 0; }
.pt-foot dl div { display: flex; gap: 6px; }
.pt-foot dt { color: var(--weak); }
.pt-foot dd { margin: 0; }
.pt-foot .copy { margin: 16px 0 0; color: var(--weak); }

/* ───────── 등장 모션 ───────── */
.js .rv { opacity: 0; transform: translateY(28px); filter: blur(6px); transition: opacity 900ms var(--ease), transform 900ms var(--ease), filter 900ms var(--ease); transition-delay: var(--d, 0ms); }
.js .rv.in { opacity: 1; transform: none; filter: none; }

/* ───────── 반응형 ───────── */
@media (max-width: 1024px) {
  .pt-nav__links { display: none; }
  .pt-split, .pt-faq__grid, .pt-without { grid-template-columns: 1fr; }
  .pt-split--flip .pt-split__copy { order: 0; }
  .pt-box, .pt-box--wide { grid-column: span 3; }
  .pt-box--full { grid-column: span 6; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .pt-nav__in { height: 60px; gap: 10px; }
  .pt-brand__type { width: 100px; }
  .pt-nav__end .pt-btn { display: none; }
  .pt-hero { align-items: start; min-height: 960px; }
  .pt-hero__copy { padding-block: 96px 0; }
  .pt-poster { left: 50%; right: auto; transform: translateX(-50%); width: min(88vw, 420px); bottom: 10%; }
  .pt-hero__stage.is-live .pt-poster { transform: translateX(-50%) translateY(8px); }
  .pt-hero__hint { display: none; }
  .pt-cta .pt-btn { flex: 1 1 100%; }
  .pt-story { height: 560vh; }
  .pt-story__sticky { grid-template-columns: 1fr; grid-template-rows: 1fr auto; align-items: stretch; gap: 0; padding-block: 64px 20px; }
  .pt-story__art { height: auto; min-height: 0; }
  .pt-story__copy .pt-h2 { font-size: 26px; }
  .pt-steps { margin-top: 12px; display: block; position: relative; min-height: 150px; }
  .pt-steps li { position: absolute; inset: 0 0 auto; opacity: 0; transform: translateY(12px); transition: opacity 400ms, transform 400ms var(--ease); }
  .pt-steps li.on { opacity: 1; transform: none; }
  .pt-steps strong { font-size: 19px; }
  .pt-steps p { font-size: 14px; }
  .pt-daybar span { min-width: 34px; font-size: 12px; padding: 0 6px; height: 28px; }
  .pt-box, .pt-box--wide, .pt-box--full { grid-column: span 6; min-height: 0; }
  .pt-zeros { grid-template-columns: 1fr; }
  .pt-pot { width: 118px; }
  .pt-pot img { width: 104px; height: 104px; }
  .pt-faq summary { font-size: 17px; }
}

@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; }
  .js .rv { opacity: 1; transform: none; filter: none; }
  .pt-rail__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

/* ───────── 문서 페이지 (개인정보처리방침) ───────── */
.pt-doc { padding-block: 132px 96px; background: var(--paper); }
.pt-doc__in { max-width: 760px; margin: 0 auto; padding-inline: var(--gutter); }
.pt-doc h1 { margin: 0; font-size: clamp(34px, 5vw, 52px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.2; }
.pt-doc__meta { margin: 14px 0 0; color: var(--weak); font-size: 15px; }
.pt-doc__lead { margin: 32px 0 0; padding: 20px 22px; border-radius: 18px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--edge); color: var(--sub); font-size: 16px; }
.pt-doc h2 { margin: 56px 0 0; font-size: 22px; font-weight: 800; letter-spacing: -0.03em; }
.pt-doc h2 + p, .pt-doc h2 + ul, .pt-doc h2 + table { margin-top: 12px; }
.pt-doc p, .pt-doc li { color: var(--sub); font-size: 16px; line-height: 1.75; }
.pt-doc ul { padding-left: 20px; margin: 10px 0 0; }
.pt-doc li + li { margin-top: 6px; }
.pt-doc b, .pt-doc strong { color: var(--ink); }
.pt-doc a { color: var(--blue); }
.pt-doc .pt-table { overflow-x: auto; margin-top: 14px; }
.pt-doc table { width: 100%; border-collapse: collapse; font-size: 15px; }
.pt-doc th, .pt-doc td { text-align: left; vertical-align: top; padding: 12px 14px; border-bottom: 1px solid var(--edge); color: var(--sub); }
.pt-doc th { color: var(--ink); font-weight: 700; background: var(--surface); }
