:root {
  --ink: #24232a;
  --ink-2: #302f37;
  --paper: #fffdf4;
  --paper-warm: #fff8dc;
  --yellow: #ffe34f;
  --yellow-deep: #ffc928;
  --blue: #bdeafa;
  --lime: #4fbe7f;
  --pink: #ff9ab4;
  --muted: #bdbbc1;
  --line: #24232a;
  --shadow: 6px 6px 0 var(--line);
  --radius: 24px;
  --font-display: "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 227, 79, .10) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 16%, rgba(189, 234, 250, .08) 0 3px, transparent 4px),
    radial-gradient(circle at 78% 76%, rgba(255, 154, 180, .06) 0 2px, transparent 3px),
    var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.skip-link {
  position: absolute;
  left: 14px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--line);
  box-shadow: 3px 3px 0 #111;
  font-weight: 900;
}
.skip-link:focus { top: 14px; }

.container { width: min(940px, calc(100% - 34px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(36, 35, 42, .9);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -.05em;
}
.brand-mark { color: var(--yellow); }
.brand-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 3px 3px 0 #111;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.nav-links { display: flex; align-items: center; gap: 14px; font-weight: 850; font-size: .92rem; }
.nav-links a { text-decoration: none; color: #e7e4ea; }
.nav-links a:hover { color: var(--yellow); }
.nav-home {
  padding: 8px 12px;
  border: 2px solid var(--paper);
  border-radius: 11px;
  color: var(--ink) !important;
  background: var(--paper);
  box-shadow: 3px 3px 0 #111;
}

.hero { position: relative; padding: 72px 0 34px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 15px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: .84rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 2px var(--ink);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: .88;
  letter-spacing: -.075em;
}
h1 .highlight {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: var(--ink);
}
h1 .highlight::before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: .05em -.12em .02em -.1em;
  border: 3px solid var(--line);
  border-radius: 45% 52% 43% 50%;
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--line);
  transform: rotate(-2deg);
}
.hero-lead { max-width: 710px; color: #dad7de; font-size: 1.08rem; }
.meta { margin: 20px 0 0; color: var(--muted); font-size: .92rem; font-weight: 750; }

.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: start;
  margin: 28px 0 10px;
  padding: 18px;
  border: 3px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: var(--shadow);
}
.notice-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.notice h2 { margin: 0 0 4px; font-family: var(--font-display); font-size: 1.25rem; letter-spacing: -.04em; }
.notice p { margin: 0; color: #4c4737; font-weight: 700; }

.content { padding: 34px 0 68px; }
.legal-card {
  margin-bottom: 22px;
  padding: clamp(20px, 4vw, 34px);
  border: 3px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.legal-card:nth-child(3n+2) { background: var(--blue); }
.legal-card:nth-child(3n) { background: var(--paper-warm); }
.legal-card h2 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: .95;
  letter-spacing: -.055em;
}
.legal-card h3 {
  margin: 22px 0 8px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -.035em;
}
.legal-card p, .legal-card li { color: #4c4a53; font-weight: 650; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ul { margin: 12px 0 0; padding-left: 1.25rem; }
.legal-card li + li { margin-top: 7px; }

.table-wrap { overflow-x: auto; margin-top: 16px; }
table { width: 100%; border-collapse: collapse; min-width: 620px; border: 2px solid var(--line); background: rgba(255,255,255,.55); }
th, td { padding: 12px; border: 1px solid rgba(36,35,42,.35); vertical-align: top; text-align: left; }
th { background: var(--yellow); font-family: var(--font-display); font-size: .98rem; }
td { font-weight: 650; color: #4c4a53; }

.placeholder {
  display: inline-block;
  padding: 1px 7px;
  border: 1px dashed #6c5b12;
  border-radius: 6px;
  color: #5a4a09;
  background: rgba(255,227,79,.42);
  font-weight: 900;
}
.pill {
  display: inline-block;
  margin: 3px 4px 3px 0;
  padding: 5px 9px;
  border: 2px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 2px 2px 0 var(--line);
  font-size: .79rem;
  font-weight: 900;
}
.callout {
  margin-top: 15px;
  padding: 14px 15px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.6);
  font-weight: 750;
}

footer { padding: 0 0 42px; color: #aaa7af; font-size: .88rem; }
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.footer-brand { color: var(--paper); font-family: var(--font-display); }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-links a { color: #d8d5dc; }
.footer-links a:hover { color: var(--yellow); }

@media (max-width: 600px) {
  .nav { min-height: 64px; }
  .brand { font-size: 1.08rem; }
  .brand-icon { width: 34px; height: 34px; border-radius: 11px; }
  .nav-links { gap: 10px; font-size: .82rem; }
  .nav-home { padding: 7px 9px; }
  .hero { padding-top: 54px; }
  h1 { font-size: clamp(2.85rem, 15vw, 4.3rem); }
  .notice { grid-template-columns: 1fr; }
  .footer-content { align-items: flex-start; flex-direction: column; }
}
