/* Power Underwriter — policy / legal document pages */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--puw-surface-1);
  color: var(--puw-teal-900);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--puw-teal-mid); text-decoration: none; }
a:hover { color: var(--puw-coral-600); }
.doc-wrap { max-width: 820px; margin: 0 auto; padding: 0 32px; }

/* top bar */
.doc-nav { border-bottom: 1px solid var(--puw-border-light); background: rgba(247,246,244,0.85); backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 10; }
.doc-nav-in { max-width: 1100px; margin: 0 auto; padding: 0 32px; height: 76px; display: flex; align-items: center; justify-content: space-between; }
.doc-nav-in img { height: 38px; }
.doc-back { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--puw-teal-900); display: inline-flex; align-items: center; gap: 8px; }
.doc-back:hover { color: var(--puw-coral-600); }

/* header */
.doc-head { padding: 64px 0 30px; }
.doc-head .eyebrow { font-family: var(--font-meta); font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--puw-coral-600); }
.doc-head h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(34px, 4.4vw, 52px); line-height: 1.05; letter-spacing: -0.025em; margin: 14px 0 0; }
.doc-head .updated { font-family: var(--font-meta); font-size: 13.5px; color: var(--puw-slate-400); margin-top: 16px; }

/* draft notice */
.notice { display: flex; gap: 14px; align-items: flex-start; background: var(--puw-coral-50); border: 1px solid var(--puw-coral-100); border-radius: 12px; padding: 18px 20px; margin: 8px 0 40px; }
.notice .ic { width: 24px; height: 24px; border-radius: 7px; background: var(--puw-coral-500); color: #fff; display: grid; place-items: center; font-weight: 700; flex: 0 0 auto; font-family: var(--font-meta); font-size: 14px; }
.notice p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--puw-teal-600); }

/* body */
.doc-body { padding: 0 0 90px; }
.doc-body section { padding: 28px 0; border-top: 1px solid var(--puw-border-light); }
.doc-body section:first-child { border-top: none; }
.doc-body h2 { font-family: var(--font-display); font-weight: 600; font-size: 23px; letter-spacing: -0.01em; margin: 0 0 14px; display: flex; gap: 14px; align-items: baseline; }
.doc-body h2 .n { font-family: var(--font-meta); font-size: 14px; font-weight: 600; color: var(--puw-coral-600); }
.doc-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 16.5px; margin: 22px 0 8px; }
.doc-body p { font-size: 16px; line-height: 1.7; color: var(--puw-teal-600); margin: 0 0 14px; }
.doc-body ul { margin: 0 0 14px; padding-left: 4px; list-style: none; }
.doc-body li { font-size: 16px; line-height: 1.6; color: var(--puw-teal-600); padding-left: 24px; position: relative; margin-bottom: 9px; }
.doc-body li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--puw-coral-500); }
.doc-body .ph { color: var(--puw-slate-400); font-style: italic; }

/* footer */
.doc-foot { border-top: 1px solid var(--puw-border-light); padding: 34px 0; }
.doc-foot-in { max-width: 1100px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.doc-foot-in img { height: 26px; }
.doc-foot-in .links { display: flex; gap: 24px; }
.doc-foot-in a, .doc-foot-in .meta { font-family: var(--font-meta); font-size: 13.5px; color: var(--puw-slate-400); }
.doc-foot-in a:hover { color: var(--puw-coral-600); }

@media (max-width: 640px) {
  .doc-nav-in img { height: 30px; }
  .doc-foot-in { flex-direction: column; align-items: flex-start; }
}
