:root {
  --ink: #173b4b;
  --deep: #0d2b38;
  --paper: #f6f1e7;
  --surface: #fffdf8;
  --signal: #e75b3a;
  --moon: #f4b860;
  --muted: #5f7077;
  --line: rgba(23, 59, 75, .19);
  --display: "Trebuchet MS", "Avenir Next", sans-serif;
  --body: "Segoe UI", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--surface); color: var(--ink); font-family: var(--body); font-size: 17px; line-height: 1.65; }
a { color: inherit; text-underline-offset: 4px; }
:focus-visible { outline: 3px solid var(--moon); outline-offset: 4px; }
.container { width: min(calc(100% - 36px), 960px); margin-inline: auto; }
header { border-bottom: 1px solid var(--line); background: var(--paper); }
.header-inner { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-size: 1.25rem; font-weight: 900; text-decoration: none; }
.brand img { width: 54px; height: 38px; object-fit: contain; }
.back { font-weight: 750; }
main { padding: 58px 0 100px; }
.kicker { margin: 0 0 10px; color: var(--signal); font-size: .78rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { font-family: var(--display); line-height: 1.14; letter-spacing: -.025em; text-wrap: balance; }
h1 { max-width: 780px; margin: 0; font-size: clamp(2.45rem, 7vw, 4.7rem); }
h2 { margin: 54px 0 16px; padding-top: 18px; border-top: 1px solid var(--line); font-size: clamp(1.55rem, 4vw, 2.25rem); }
h3 { margin: 28px 0 10px; font-size: 1.2rem; }
p, li { text-wrap: pretty; }
.meta { margin: 22px 0 0; color: var(--muted); }
.legal-alert { margin: 36px 0; padding: 22px 24px; border: 2px solid var(--signal); background: #fff5ef; }
.legal-alert strong { display: block; margin-bottom: 5px; color: #a73520; }
.operator { display: grid; grid-template-columns: 190px 1fr; border-top: 1px solid var(--line); }
.operator dt, .operator dd { margin: 0; padding: 12px 0; border-bottom: 1px solid var(--line); }
.operator dt { color: var(--muted); font-weight: 750; }
.operator dd { font-weight: 650; }
.placeholder { color: #a73520; background: #fff0e8; padding: 2px 5px; }
table { width: 100%; border-collapse: collapse; margin: 18px 0 30px; font-size: .94rem; }
th, td { padding: 13px 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--paper); font-family: var(--display); }
ul, ol { padding-left: 23px; }
li + li { margin-top: 8px; }
.notice { padding: 18px 20px; background: var(--paper); border-left: 4px solid var(--moon); }
footer { padding: 28px 0; background: var(--deep); color: rgba(255,255,255,.78); }
footer a { color: #fff; }
@media (max-width: 700px) {
  body { font-size: 16px; }
  .header-inner { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .operator { grid-template-columns: 1fr; }
  .operator dt { padding-bottom: 2px; border-bottom: 0; }
  .operator dd { padding-top: 2px; }
  .table-wrap { overflow-x: auto; }
  table { min-width: 740px; }
}
@media print {
  header, footer, .legal-alert { display: none; }
  body { background: #fff; color: #000; font-size: 12pt; }
  main { padding: 0; }
  a { text-decoration: none; }
}
