:root {
  font-family: Manrope, "Segoe UI", sans-serif;
  color: #152b28;
  background: #f7f5ef;
  font-synthesis: none;
  --ink: #152b28;
  --muted: #5e6d69;
  --line: rgba(21, 43, 40, 0.15);
  --paper: #f7f5ef;
  --white: #fffef9;
  --accent: #9c4419;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; line-height: 1.65; }
a { color: inherit; }
.page-header { border-bottom: 1px solid var(--line); background: rgba(247, 245, 239, 0.96); }
.page-header__inner,
.page-footer__inner,
.page-main { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }
.page-header__inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.page-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 750; text-decoration: none; }
.page-brand img { width: 28px; height: 28px; }
.page-nav { display: flex; flex-wrap: wrap; gap: 18px; font-size: 0.9rem; color: var(--muted); }
.page-nav a { text-decoration: none; }
.page-nav a:hover { color: var(--ink); }
.page-main { padding: 76px 0 88px; }
.page-hero { max-width: 800px; margin-bottom: 64px; }
.page-kicker { margin: 0 0 14px; color: var(--accent); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.12; letter-spacing: -0.035em; }
h1 { margin-bottom: 24px; font-size: clamp(2.5rem, 7vw, 5.2rem); font-weight: 650; }
h2 { margin-bottom: 14px; font-size: clamp(1.7rem, 3vw, 2.55rem); font-weight: 650; }
h3 { margin-bottom: 8px; font-size: 1.08rem; letter-spacing: -0.015em; }
.page-lede { margin: 0; max-width: 720px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.page-button { display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; border: 1px solid var(--ink); border-radius: 9px; text-decoration: none; font-size: 0.92rem; font-weight: 750; }
.page-button--primary { color: white; background: var(--ink); }
.page-section { padding: 42px 0; border-top: 1px solid var(--line); }
.page-section > p { max-width: 760px; color: var(--muted); }
.page-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 26px; }
.page-card { padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 254, 249, 0.72); }
.page-card p { margin-bottom: 0; color: var(--muted); font-size: 0.93rem; }
.page-steps { display: grid; gap: 12px; padding: 0; list-style: none; counter-reset: steps; }
.page-steps li { counter-increment: steps; display: grid; grid-template-columns: 40px 1fr; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); }
.page-steps li::before { content: counter(steps, decimal-leading-zero); color: var(--accent); font-weight: 800; }
.page-steps p { margin: 5px 0 0; color: var(--muted); }
.page-table-wrap { overflow-x: auto; }
.page-table-wrap:focus-visible { outline: 3px solid rgba(156, 68, 25, 0.35); outline-offset: 3px; }
.page-table { width: 100%; border-collapse: collapse; background: var(--white); }
.page-table th, .page-table td { padding: 16px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.page-table th { font-size: 0.83rem; letter-spacing: 0.05em; text-transform: uppercase; }
.page-table td { color: var(--muted); }
.page-cta { margin-top: 48px; padding: 32px; border-radius: 16px; color: white; background: var(--ink); }
.page-cta p { color: rgba(255,255,255,0.74); }
.page-cta .page-button { color: var(--ink); background: white; border-color: white; }
.page-footer { border-top: 1px solid var(--line); }
.page-footer__inner { display: flex; justify-content: space-between; gap: 24px; padding: 28px 0; color: var(--muted); font-size: 0.84rem; }
.page-footer nav { display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 760px) {
  .page-header__inner { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .page-main { padding-top: 52px; }
  .page-grid { grid-template-columns: 1fr; }
  .page-footer__inner { flex-direction: column; }
}
