*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --orange: #FF7F11; --orange-hover: #ff8e2c; --orange-text: #C25E00; --sage: #ACBFA4;
  --cream: #E2E8CE; --cream-soft: #F4F6EA; --ink: #262626;
  --ink-soft: #555; --ink-mute: #6f6f6f; --line: #ECECE6;
  --bg: #ffffff; --bg-soft: #FAFAF7;
}
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 780px; margin: 0 auto; padding: 0 32px; }
nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.85); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px; }
.brand img { width: 26px; height: 26px; border-radius: 7px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--ink-soft); transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 10px; font-size: 14px; font-weight: 600; border: 1px solid transparent; cursor: pointer; transition: all .25s ease; white-space: nowrap; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 1px 2px rgba(255,127,17,0.15); }
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,127,17,0.35); }
.btn-lg { padding: 15px 28px; font-size: 15px; border-radius: 12px; }
@media (max-width: 720px) { .nav-links a:not(.btn) { display: none; } }
.page-head { padding: 72px 0 40px; text-align: center; background: radial-gradient(circle at 22% 18%, rgba(255,127,17,0.10), transparent 45%), radial-gradient(circle at 78% 16%, rgba(172,191,164,0.20), transparent 50%), #fff; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: var(--cream-soft); color: var(--ink-soft); font-size: 12px; font-weight: 500; letter-spacing: 0.02em; margin-bottom: 18px; }
.eyebrow .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.page-head h1 { font-size: clamp(32px, 4.6vw, 50px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; margin: 0 auto 16px; max-width: 24ch; }
.page-head p { font-size: clamp(16px, 1.4vw, 18px); color: var(--ink-soft); max-width: 62ch; margin: 0 auto; }
.crumbs { font-size: 13px; color: var(--ink-mute); margin-bottom: 16px; }
.crumbs a { color: var(--ink-soft); transition: color .2s; }
.crumbs a:hover { color: var(--orange-text); }
article { padding: 48px 0 32px; }
article h2 { font-size: 26px; font-weight: 700; letter-spacing: -0.015em; margin: 40px 0 14px; }
article h2:first-child { margin-top: 0; }
article p { color: var(--ink-soft); margin-bottom: 16px; font-size: 16px; }
article strong { color: var(--ink); font-weight: 600; }
article ul { padding-left: 22px; margin-bottom: 16px; color: var(--ink-soft); }
article li { margin-bottom: 8px; }
article a.inline-link { color: var(--orange-text); font-weight: 600; }
article a.inline-link:hover { color: var(--orange); }
figure.shot { margin: 24px 0 28px; }
figure.shot img { width: 100%; height: auto; display: block; border-radius: 14px; border: 1px solid var(--line); box-shadow: 0 14px 32px -22px rgba(38,38,38,0.25); }
figure.shot figcaption { font-size: 13px; color: var(--ink-mute); margin-top: 10px; text-align: center; }
.shot-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0 28px; }
.shot-pair figure { margin: 0; }
.shot-pair img { width: 100%; height: auto; display: block; border-radius: 14px; border: 1px solid var(--line); }
.shot-pair figcaption { font-size: 13px; color: var(--ink-mute); margin-top: 8px; text-align: center; }
@media (max-width: 560px) { .shot-pair { grid-template-columns: 1fr; } }
.table-wrap { overflow-x: auto; margin: 20px 0 28px; -webkit-overflow-scrolling: touch; }
table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 15px; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
th { background: var(--cream-soft); font-weight: 600; }
td:first-child { color: var(--ink); font-weight: 500; }
td { color: var(--ink-soft); }
.yes { color: #2c7e30; font-weight: 600; }
.no { color: var(--ink-mute); }
.cta-band { text-align: center; padding: 48px 0 72px; }
.cta-band h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.cta-band p { color: var(--ink-soft); margin-bottom: 24px; }
.related { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 40px 0; }
.related h2 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.related a { color: var(--orange-text); font-weight: 500; }
.related a:hover { color: var(--orange); }
.related li { margin-bottom: 8px; color: var(--ink-soft); }
.related ul { list-style: none; }
footer { padding: 48px 0; background: var(--ink); color: rgba(255,255,255,0.7); font-size: 14px; }
.foot-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; }
.foot-brand img { width: 22px; height: 22px; border-radius: 5px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 24px; }
.foot-links a { color: rgba(255,255,255,0.65); transition: color .2s; }
.foot-links a:hover { color: #fff; }
.foot-copy { font-size: 13px; color: rgba(255,255,255,0.5); width: 100%; text-align: center; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 16px; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
