:root {
  --gold: #f5a623;
  --gold-bright: #ffb833;
  --black: #0a0a0a;
  --card: #161616;
  --line: #2a2a2a;
  --muted: #aaa;
  --white: #fafafa;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--muted);
  font: 16px/1.7 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: var(--gold); }
a:hover { color: var(--gold-bright); }
.container { width: min(920px, calc(100% - 40px)); margin: 0 auto; }
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 10, 10, .96);
  border-bottom: 1px solid rgba(245, 166, 35, .16);
  backdrop-filter: blur(18px);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo img { display: block; width: auto; height: 52px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--white); text-decoration: none; font-weight: 700; font-size: 14px; }
.nav-links .call { background: var(--gold); color: var(--black); padding: 10px 16px; border-radius: 9px; }
main { padding: 72px 0 80px; }
.eyebrow { margin: 0 0 8px; color: var(--gold); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { color: var(--white); line-height: 1.25; }
h1 { margin: 0; font-size: clamp(34px, 6vw, 54px); letter-spacing: -.035em; }
.updated { margin: 14px 0 34px; color: #888; }
.notice {
  margin: 0 0 34px;
  padding: 20px 22px;
  border: 1px solid rgba(245, 166, 35, .3);
  border-radius: 12px;
  background: rgba(245, 166, 35, .07);
}
.legal-card { padding: 30px; border: 1px solid var(--line); border-radius: 16px; background: var(--card); }
.legal-card section + section { border-top: 1px solid var(--line); margin-top: 30px; padding-top: 24px; }
h2 { margin: 0 0 12px; font-size: 23px; }
h3 { margin: 20px 0 8px; font-size: 17px; }
p { margin: 0 0 13px; }
ul { margin: 8px 0 14px; padding-left: 22px; }
li + li { margin-top: 7px; }
.fee-table { width: 100%; margin: 18px 0; border-collapse: collapse; }
.fee-table th, .fee-table td { padding: 13px 12px; text-align: left; vertical-align: top; border: 1px solid var(--line); }
.fee-table th { color: var(--white); background: #1e1e1e; }
.fine-print { font-size: 14px; color: #8e8e8e; }
footer { border-top: 1px solid var(--line); padding: 28px 0 40px; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: 14px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; }

@media (max-width: 680px) {
  .nav { min-height: 68px; }
  .logo img { height: 44px; }
  .nav-links > a:not(.call) { display: none; }
  main { padding-top: 48px; }
  .legal-card { padding: 22px 18px; }
  .fee-table, .fee-table thead, .fee-table tbody, .fee-table tr, .fee-table th, .fee-table td { display: block; }
  .fee-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .fee-table tr { border: 1px solid var(--line); margin-bottom: 12px; }
  .fee-table td { border: 0; border-bottom: 1px solid var(--line); }
  .fee-table td:last-child { border-bottom: 0; }
  .fee-table td::before { content: attr(data-label); display: block; color: var(--white); font-weight: 800; }
}
