/* ============================================================
   士卓（したく）LP — モダン・ミニマル（Impeccable設計原則を反映）
   - OKLCH配色 / 色付きニュートラル（ブランド緑へ微傾斜）/ 純黒・純白なし
   - インク階層（ink=本文 / charcoal=見出し / ash=ラベル）
   - 60-30-10：緑アクセントは主にCTAへ集約（希少性で効かせる）
   - 見出し行間1.1–1.25 / モジュラースケール（比1.25）
   - 書体: Zen Kaku Gothic New 単一・ウェイト差で階層
   ============================================================ */

:root {
  /* --- 配色（OKLCH・ブランド hue=168） --- */
  --bg:        oklch(99.2% 0.004 168);   /* 地：わずかに緑を含む白（純白でない） */
  --surface:   oklch(96.8% 0.008 168);   /* 面：クリーム寄り */
  --card:      oklch(99.6% 0.003 168);
  --dark:      oklch(31% 0.032 168);      /* 濃面：深緑（黒すぎない・重さを抑える） */

  --ink:       oklch(24% 0.014 168);      /* 本文 */
  --charcoal:  oklch(34% 0.014 168);      /* 見出し・16px以上の副次 */
  --ash:       oklch(54% 0.013 168);      /* ラベル・メタ */
  --faint:     oklch(66% 0.010 168);      /* 補助・注記 */

  --accent:    oklch(48% 0.078 168);      /* 深緑：ブランドアクセント（見出し番号・カウンター等） */
  --accent-dk: oklch(40% 0.072 168);
  --mint:      oklch(74% 0.095 168);      /* 濃面上のアクセント */
  --line-green:    #06c755;                /* LINEブランドカラー：LINEアクションのボタンのみ */
  --line-green-dk: #05a648;

  --line:      oklch(24% 0.014 168 / 0.13);
  --line-soft: oklch(24% 0.014 168 / 0.06);
  --on-dark:   oklch(96% 0.006 168);
  --on-dark-2: oklch(96% 0.006 168 / 0.66);

  /* --- タイプスケール（base 1rem, 比≈1.25, clampはmax≤2.5×min） --- */
  --fs-xs:   0.78rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.16rem;
  --fs-lg:   clamp(1.3rem, 3.6vw, 1.7rem);
  --fs-xl:   clamp(1.7rem, 5.2vw, 2.4rem);
  --fs-hero: clamp(3.2rem, 15vw, 6rem);

  /* --- 余白リズム --- */
  --sp-1: 0.5rem; --sp-2: 0.85rem; --sp-3: 1.4rem; --sp-4: 2.2rem; --sp-5: 3.5rem;

  --font: "LINE Seed JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --measure: 40rem;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 105%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  font-size: var(--fs-base);
  font-weight: 400;
  letter-spacing: 0.012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: #fff; }

/* ---------- レイアウト ---------- */
section { padding: clamp(4rem, 10vw, 7rem) 1.5rem; }
.inner { max-width: var(--measure); margin: 0 auto; }
.inner-wide { max-width: 54rem; margin: 0 auto; }

/* セクション見出し（“番号付きインデックス”＝意図ある名前付き体系。
   汎用の小さな大文字トラッキング・ラベルは使わない） */
.sec {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: var(--fs-sm); font-weight: 700; color: var(--ash);
  letter-spacing: 0.02em; margin-bottom: var(--sp-3);
}
.sec::before {
  content: attr(data-no); color: var(--accent); font-weight: 800;
  font-variant-numeric: tabular-nums; letter-spacing: 0.02em;
}
.sec::after { content: ""; flex: 1; height: 1px; background: var(--line-soft); max-width: 3.5rem; }

h2 {
  color: var(--charcoal); font-weight: 700;
  font-size: var(--fs-xl); line-height: 1.24; letter-spacing: 0.005em;
  margin-bottom: var(--sp-4);
}
p { color: var(--ink); }
.muted { color: var(--ash); }
strong { color: var(--ink); font-weight: 700; }

/* ---------- ヘッダー ---------- */
.masthead {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.05rem 1.5rem; max-width: 64rem; margin: 0 auto;
  background: oklch(99.2% 0.004 168 / 0.8);
  backdrop-filter: saturate(180%) blur(12px);
}
.masthead::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--line-soft); }
.masthead .mark { font-weight: 800; font-size: 1.28rem; letter-spacing: 0.16em; color: var(--ink); }
.masthead .mark small { font-size: 0.56rem; letter-spacing: 0.24em; color: var(--faint); display: block; margin-top: 0.05rem; font-weight: 500; }
.masthead .nav-cta { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.8rem; font-weight: 700; color: #fff; background: var(--line-green); text-decoration: none; padding: 0.5rem 1.1rem; border-radius: 2rem; transition: background 0.22s ease; }
.masthead .nav-cta:hover { background: var(--line-green-dk); }
.masthead .nav-cta .cta-line-icon { width: 16px; height: 16px; }

/* ---------- ヒーロー ---------- */
.hero { text-align: center; padding: clamp(3.5rem, 10vw, 6rem) 1.5rem clamp(3rem, 8vw, 5rem); }
.hero .logo { font-weight: 800; font-size: clamp(2.6rem, 11vw, 4.4rem); line-height: 1; letter-spacing: 0.14em; text-indent: 0.14em; color: var(--ink); }
.hero .yomi { font-size: 0.76rem; font-weight: 500; letter-spacing: 0.55em; color: var(--faint); text-indent: 0.55em; margin-top: 1rem; }
.hero .tagline {
  font-weight: 800; font-size: clamp(1.65rem, 6vw, 2.5rem); line-height: 1.4;
  letter-spacing: 0.005em; margin: 2.2rem auto 1.4rem; max-width: 37rem; color: var(--ink);
  text-wrap: balance;
}
.hero .sub { font-size: var(--fs-base); color: var(--ash); max-width: 27rem; margin: 0 auto 2.4rem; }
.hero .sub .dot { display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: var(--accent); vertical-align: middle; margin: 0 0.55rem 0.15rem; }

/* ---------- カウンター ---------- */
.counter { display: inline-flex; align-items: center; gap: 0.7rem; margin: 0 auto 2.2rem; padding: 0.55rem 1.3rem; background: var(--surface); border-radius: 2.5rem; font-size: var(--fs-sm); color: var(--ash); }
.counter .num { font-size: 1.55rem; font-weight: 800; color: var(--accent); line-height: 1; font-variant-numeric: tabular-nums; }
.counter .live { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 oklch(48% 0.078 168 / 0.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 oklch(48% 0.078 168 / 0.45); } 70% { box-shadow: 0 0 0 8px oklch(48% 0.078 168 / 0); } 100% { box-shadow: 0 0 0 0 oklch(48% 0.078 168 / 0); } }

/* ---------- CTA ---------- */
.cta {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 700; font-size: var(--fs-base); letter-spacing: 0.02em;
  background: var(--line-green); color: #fff; text-decoration: none;
  padding: 1rem 2.1rem; border-radius: 3rem;
  box-shadow: 0 12px 30px -14px rgba(6, 199, 85, 0.5); transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.cta:hover { transform: translateY(-2px); background: var(--line-green-dk); box-shadow: 0 18px 38px -14px rgba(6, 199, 85, 0.55); }
.cta-line-icon { width: 22px; height: 22px; flex: none; }
.cta .free { font-size: 0.7rem; font-weight: 600; background: oklch(100% 0 0 / 0.2); padding: 0.15rem 0.5rem; border-radius: 1rem; }
.cta-arrow { transition: transform 0.2s ease; }
.cta:hover .cta-arrow { transform: translateX(3px); }
.cta-note { font-size: 0.9rem; color: var(--ash); margin-top: 1rem; line-height: 1.7; max-width: 22rem; margin-left: auto; margin-right: auto; }

/* ---------- ペイン ---------- */
.pain { background: var(--surface); }
.pain-list { list-style: none; margin: var(--sp-3) 0; }
.pain-list li {
  font-size: clamp(1rem, 3vw, 1.14rem); font-weight: 500; line-height: 1.6; color: var(--ink);
  padding: 1.05rem 0 1.05rem 1.9rem; border-bottom: 1px solid var(--line); position: relative;
}
.pain-list li::before { content: ""; position: absolute; left: 0; top: 1.5rem; width: 12px; height: 2px; background: var(--accent); border-radius: 2px; }
.pain .closing { font-size: var(--fs-md); font-weight: 500; line-height: 1.85; margin-top: var(--sp-4); color: var(--charcoal); }
.pain .closing b { color: var(--accent); font-weight: 800; }
.pain .closing-sub { font-size: 0.98rem; color: var(--ash); font-weight: 400; margin-top: 0.8rem; }

/* ---------- プルクオート帯 ---------- */
.pullquote { background: var(--bg); }
.pullquote p { text-align: center; font-size: clamp(1.35rem, 4.3vw, 2rem); font-weight: 700; line-height: 1.62; letter-spacing: 0.01em; color: var(--charcoal); max-width: 42rem; margin: 0 auto; text-wrap: balance; }
.pullquote b { color: var(--accent); }

/* ---------- 主宰から ---------- */
.founder { background: var(--surface); }
.founder-body { max-width: 40rem; }
.founder-body p { color: var(--ash); font-size: 0.98rem; line-height: 1.95; margin-bottom: 0.9rem; }
.founder-body .founder-lead { color: var(--charcoal); font-weight: 700; font-size: 1.08rem; }
.founder-body .founder-name { margin-top: 1.4rem; color: var(--ink); font-weight: 700; font-size: 0.94rem; letter-spacing: 0.04em; }

/* ---------- 3つの約束（auto-fitで自然に多段） ---------- */
.promise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.promise {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.promise:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 20px 40px -28px oklch(40% 0.072 168 / 0.5); }
.promise .no { font-size: 0.85rem; font-weight: 800; color: var(--accent); letter-spacing: 0.05em; font-variant-numeric: tabular-nums; }
.promise h3 { color: var(--charcoal); font-size: 1.2rem; font-weight: 700; margin: 0.55rem 0; line-height: 1.4; }
.promise p { color: var(--ash); font-size: 0.93rem; line-height: 1.8; }

/* ---------- 3ステップ（濃面：純黒でなくブランド傾斜） ---------- */
.steps { background: var(--dark); color: var(--on-dark); }
.steps .sec { color: var(--on-dark-2); }
.steps .sec::after { background: oklch(96% 0.006 168 / 0.15); }
.steps h2 { color: var(--on-dark); }
.step { display: flex; gap: 1.4rem; padding: 1.7rem 0; border-bottom: 1px solid oklch(96% 0.006 168 / 0.12); }
.step:last-of-type { border-bottom: none; }
.step .n { font-size: 1.5rem; font-weight: 800; color: var(--mint); flex: none; width: 2rem; line-height: 1.35; font-variant-numeric: tabular-nums; }
.step h3 { font-size: 1.14rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--on-dark); line-height: 1.5; }
.step p { color: var(--on-dark-2); font-size: 0.92rem; line-height: 1.85; }
.notify { margin-top: 1rem; padding: 0.95rem 1.2rem; background: oklch(74% 0.095 168 / 0.12); border-radius: 10px; font-size: 1rem; font-weight: 500; color: var(--on-dark); }
.notify .k { color: var(--mint); font-weight: 700; }

/* ---------- 卓のこだわり ---------- */
.detail-list { list-style: none; }
.detail-list li { padding: 1.15rem 0 1.15rem 2rem; border-bottom: 1px solid var(--line-soft); position: relative; font-size: 0.96rem; color: var(--ash); line-height: 1.8; }
.detail-list li::before { content: ""; position: absolute; left: 0; top: 1.3rem; width: 9px; height: 9px; border-radius: 50%; border: 2px solid var(--accent); }
.detail-list li strong { display: block; color: var(--charcoal); font-size: 1.04rem; font-weight: 700; margin-bottom: 0.1rem; }

/* ---------- 料金 ---------- */
.fee { background: var(--surface); }
.fee-card { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 2.3rem 2rem; }
.fee-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line-soft); }
.fee-row:last-child { border-bottom: none; }
.fee-row .k { font-size: 1rem; font-weight: 500; color: var(--ink); }
.fee-row .v { text-align: right; font-size: 0.88rem; color: var(--ash); }
.fee-row .v b { font-size: 1.45rem; font-weight: 800; color: var(--charcoal); font-variant-numeric: tabular-nums; }
.fee-note { font-size: var(--fs-xs); color: var(--faint); margin-top: 1.2rem; line-height: 1.75; }

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { font-size: 1.02rem; font-weight: 700; color: var(--charcoal); padding: 1.25rem 2.2rem 1.25rem 0; cursor: pointer; list-style: none; position: relative; line-height: 1.5; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 0.4rem; top: 1.5rem; width: 11px; height: 11px; border-right: 2px solid var(--faint); border-bottom: 2px solid var(--faint); transform: rotate(45deg); transition: transform 0.25s ease; }
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.75rem; }
.faq .a { padding: 0 0 1.4rem; font-size: 0.93rem; color: var(--ash); line-height: 1.9; }

/* ---------- お約束とご注意 ---------- */
.rules { background: var(--surface); }
.rule-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.6rem; }
.rule-col { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.7rem; }
.rule-h { font-size: 0.95rem; font-weight: 700; color: var(--accent); margin-bottom: 1rem; letter-spacing: 0.02em; }
.rule-list { list-style: none; }
.rule-list li { position: relative; padding: 0.7rem 0 0.7rem 1.5rem; font-size: 0.92rem; color: var(--ash); line-height: 1.8; border-bottom: 1px solid var(--line-soft); }
.rule-list li:last-child { border-bottom: none; }
.rule-list li::before { content: ""; position: absolute; left: 0; top: 1.15rem; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.rule-list li strong { color: var(--ink); }
.rule-list a { color: var(--accent); font-weight: 700; }

/* ---------- 最終CTA ---------- */
.final { text-align: center; }
.final h2 { margin-bottom: var(--sp-3); }
.final .lead { font-size: var(--fs-md); font-weight: 500; color: var(--charcoal); margin-bottom: var(--sp-4); }
.final .lead b { color: var(--accent); font-weight: 800; font-variant-numeric: tabular-nums; }

/* ---------- フッター ---------- */
footer { background: var(--dark); color: var(--on-dark-2); padding: 3.2rem 1.5rem 2.4rem; font-size: var(--fs-sm); }
footer .inner { text-align: center; }
footer .fmark { font-weight: 800; font-size: 1.24rem; color: var(--on-dark); letter-spacing: 0.16em; margin-bottom: 0.5rem; }
footer .official { font-size: 0.79rem; color: oklch(96% 0.006 168 / 0.44); margin-bottom: 1.7rem; }
footer nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: center; margin-bottom: 1.6rem; }
footer nav a { color: var(--on-dark-2); text-decoration: none; transition: color 0.2s; }
footer nav a:hover { color: var(--on-dark); }
footer .copy { font-size: var(--fs-xs); color: oklch(96% 0.006 168 / 0.36); letter-spacing: 0.04em; }

/* ---------- 出現アニメーション ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: none; }
.hero > * { animation: rise 0.9s cubic-bezier(0.22,1,0.36,1) both; }
.hero .logo { animation-delay: 0.02s; } .hero .yomi { animation-delay: 0.1s; }
.hero .tagline { animation-delay: 0.2s; } .hero .sub { animation-delay: 0.32s; }
.hero .counter { animation-delay: 0.44s; } .hero .cta-block { animation-delay: 0.54s; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal, .hero > * { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; } }

/* ---------- イラスト差し込みスロット（任意・空でもページは完成して見える） ---------- */
/* 使い方：.illust-ph を消して <img src="..." alt="..."> を入れるだけ */
.illust-slot { margin: 0 auto; }
.illust-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.3rem;
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); color: var(--faint); text-align: center; padding: 1.4rem;
}
.illust-ph .t { font-size: 0.76rem; font-weight: 700; color: var(--ash); }
.illust-ph .d { font-size: 0.7rem; color: var(--faint); }
.illust-slot img { display: block; width: 100%; height: 100%; object-fit: contain; }
.illust-hero .illust-ph { aspect-ratio: 16 / 7; }
.illust-step { width: 60px; height: 60px; flex: none; }
.illust-step img { width: 60px; height: 60px; border-radius: 12px; }
.step.has-illust { align-items: center; }

/* ヒーローイラスト */
.hero-illust { max-width: 34rem; margin: 3.2rem auto 0; }
.hero-illust img { display: block; width: 100%; height: auto; border-radius: 16px; border: 1px solid var(--line-soft); }

/* ---------- モバイル調整 ---------- */
@media (max-width: 560px) {
  .promise-grid, .rule-grid { grid-template-columns: 1fr; }
  .promise { padding: 1.7rem 1.5rem; }
  .promise h3 { font-size: 1.25rem; }
}

/* ---------- 登録フォーム ---------- */
.form-wrap { max-width: 34rem; margin: 0 auto; padding: clamp(2.5rem, 7vw, 4rem) 1.5rem 5rem; }
.form-wrap .back { display: inline-block; font-size: 0.85rem; color: var(--accent); text-decoration: none; margin-bottom: 1.6rem; font-weight: 500; }
.form-wrap .back:hover { text-decoration: underline; }
.form-head h1 { color: var(--charcoal); font-size: clamp(1.5rem, 5vw, 2rem); font-weight: 700; letter-spacing: 0.005em; margin-bottom: 0.6rem; }
.form-head .lead { color: var(--ash); font-size: 0.95rem; line-height: 1.8; margin-bottom: 0.6rem; }
.form-head .privacy { font-size: 0.8rem; color: var(--faint); background: var(--surface); border-radius: 10px; padding: 0.7rem 0.9rem; margin-bottom: 2.2rem; }
.field { margin-bottom: 1.8rem; }
.field > label.q { display: block; font-weight: 700; color: var(--ink); font-size: 0.98rem; margin-bottom: 0.7rem; }
.field .req { color: var(--accent); font-size: 0.72rem; font-weight: 700; margin-left: 0.4rem; }
.field .opt { color: var(--faint); font-size: 0.72rem; font-weight: 500; margin-left: 0.4rem; }
.field input[type="text"], .field select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 0.8rem 0.9rem; border: 1px solid var(--line); border-radius: 10px; background: var(--card);
  -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5347' stroke-width='1.6' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.2rem; }
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px oklch(48% 0.078 168 / 0.12); }
.choices { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice label { display: block; font-size: 0.9rem; color: var(--ink-soft); padding: 0.5rem 0.95rem; border: 1px solid var(--line); border-radius: 2rem; cursor: pointer; transition: all 0.18s ease; background: var(--card); }
.choice input:checked + label { background: var(--accent); color: #fff; border-color: var(--accent); }
.choice input:focus-visible + label { box-shadow: 0 0 0 3px oklch(48% 0.078 168 / 0.18); }
.form-submit { width: 100%; font-family: inherit; font-weight: 700; font-size: 1.02rem; color: #fff; background: var(--accent); border: none; border-radius: 3rem; padding: 1rem; cursor: pointer; transition: background 0.2s ease, transform 0.2s ease; margin-top: 1rem; }
.form-submit:hover { background: var(--accent-dk); transform: translateY(-1px); }
.form-error { color: var(--accent-dk); font-size: 0.85rem; margin-top: 0.8rem; display: none; }
.form-note { font-size: 0.78rem; color: var(--faint); text-align: center; margin-top: 1rem; }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success .fs-mark { width: 56px; height: 56px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 1.6rem; }
.form-success h2 { color: var(--charcoal); font-size: 1.4rem; margin-bottom: 0.8rem; }
.form-success p { color: var(--ash); font-size: 0.95rem; line-height: 1.85; }

/* ---------- 法務ページ ---------- */
.legal { max-width: 44rem; margin: 0 auto; padding: clamp(3rem, 8vw, 5rem) 1.5rem; }
.legal .back { display: inline-block; font-size: 0.85rem; color: var(--accent); text-decoration: none; margin-bottom: 2rem; font-weight: 500; }
.legal .back:hover { text-decoration: underline; }
.legal h1 { color: var(--charcoal); font-size: clamp(1.5rem, 5vw, 1.95rem); font-weight: 700; letter-spacing: 0.005em; margin-bottom: 0.5rem; }
.legal .updated { font-size: 0.8rem; color: var(--faint); margin-bottom: 2.4rem; }
.legal h2 { color: var(--charcoal); font-size: 1.15rem; font-weight: 700; line-height: 1.4; margin: 2.4rem 0 0.9rem; padding-top: 1.4rem; border-top: 1px solid var(--line-soft); }
.legal h2:first-of-type { border-top: none; padding-top: 0; }
.legal p, .legal li { font-size: 0.93rem; color: var(--ash); line-height: 1.9; }
.legal ul, .legal ol { margin: 0.6rem 0 0.6rem 1.4rem; }
.legal li { margin-bottom: 0.4rem; }
.legal .tbl { width: 100%; border-collapse: collapse; margin: 0.5rem 0; font-size: 0.9rem; }
.legal .tbl th, .legal .tbl td { text-align: left; vertical-align: top; padding: 0.85rem 0.8rem; border-bottom: 1px solid var(--line-soft); }
.legal .tbl th { color: var(--ink); width: 34%; white-space: nowrap; font-weight: 700; }
.legal .placeholder { background: oklch(48% 0.078 168 / 0.1); color: var(--accent-dk); padding: 0.05rem 0.4rem; border-radius: 4px; font-size: 0.86rem; }
.legal .draft-note { background: var(--surface); border: 1px dashed var(--accent); border-radius: 10px; padding: 1rem 1.2rem; font-size: 0.82rem; color: var(--accent-dk); margin-bottom: 2rem; }
