:root {
  --paper: #f2eee6;
  --ink: #1b1814;
  --muted: #5e564c;
  --line: #dcd3c3;
  --white: #fffcf7;
  --green: #1e3d36;
  --green-2: #2c564c;
  --red: #b42318;
  --sand: #e6dcc9;
  --max: 1120px;
  --sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--red);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
  background: var(--sand);
  padding: 0.1em 0.35em;
  border-radius: 0.35rem;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 0.9rem;
  z-index: 80;
}

.skip:focus {
  top: 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  gap: 1rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.mark {
  width: 2rem;
  height: 2rem;
  flex: none;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.brand span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 0.6rem;
  cursor: pointer;
}

.nav-toggle i,
.nav-toggle i::before,
.nav-toggle i::after {
  display: block;
  width: 1.05rem;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
}

.nav-toggle i::before,
.nav-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle i::before {
  top: -6px;
}

.nav-toggle i::after {
  top: 6px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a[aria-current="page"] {
  color: var(--green);
}

.nav a:hover {
  color: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: 4.2rem 0 3.2rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin: 0 0 0.9rem;
}

.kicker::before {
  content: "";
  width: 1.4rem;
  height: 2px;
  background: var(--red);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 1.6rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

button {
  font: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.9rem;
  padding: 0.55rem 1.15rem;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--green);
  cursor: pointer;
}

.btn:hover {
  background: var(--green-2);
  color: var(--white);
}

.btn-line {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-line:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.hero figure {
  margin: 0;
  position: relative;
}

.hero img,
.frame img,
.frame picture {
  display: block;
  width: 100%;
}

.hero img,
.frame img {
  border-radius: 1.4rem;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.hero figcaption,
.frame figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: color-mix(in srgb, var(--ink) 72%, transparent);
  color: var(--white);
  font-size: 0.78rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.notice {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem 1.15rem;
  margin: 0 0 3rem;
}

.notice strong {
  display: block;
  font-size: 0.92rem;
}

.notice p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.badge-18 {
  flex: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 2px solid var(--red);
  color: var(--red);
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.section {
  padding: 1.2rem 0 3.4rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 28rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1.15rem 1.15rem 1.1rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card .mono {
  min-height: 2.5em;
  margin: 0 0 0.65rem;
  flex: none;
}

.card-logo {
  display: flex;
  align-items: center;
  height: 3.5rem;
  margin: 0 0 0.8rem;
  padding: 0 0.8rem;
  background: #0b0b0b;
  border-radius: 0.55rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0;
  font-family: var(--sans);
}

.card-logo .logo {
  height: 1.9rem;
  max-width: 11rem;
  background: none;
  padding: 0;
  border-radius: 0;
}

.card .pills {
  min-height: 1.7rem;
  margin: 0 0 0.8rem;
}

.card-text {
  flex: 1 1 auto;
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.card-actions {
  display: grid;
  gap: 0.5rem;
  margin-top: auto;
}

.card .btn {
  width: 100%;
}

.logo {
  display: block;
  height: 2.55rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  border-radius: 0.45rem;
  background: #0b0b0b;
}

img.logo[src$=".svg"] {
  padding: 0;
  box-sizing: border-box;
}

.logo-lg {
  height: 3.5rem;
}

.logo-sm {
  height: 1.85rem;
}

td .logo {
  height: 2.15rem;
}

h1 .logo {
  margin: 0.15rem 0 0.35rem;
}

.foot-platforms {
  display: grid;
  gap: 0.45rem;
}

.foot-platforms a {
  display: flex;
  align-items: center;
  width: 10rem;
  height: 2.45rem;
  padding: 0 0.7rem;
  background: #0b0b0b;
  border-radius: 0.45rem;
  overflow: hidden;
  flex: none;
}

.foot-platforms .logo {
  height: 1.5rem;
  width: auto;
  max-width: 8.4rem;
  padding: 0;
  background: none;
  border-radius: 0;
}

.mono {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin: 0 0 0.55rem;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 1rem;
}

.pill {
  font-size: 0.75rem;
  background: var(--sand);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}

.checks {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.checks li {
  display: flex;
  gap: 0.7rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.checks li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.45rem;
  flex: none;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 18%, transparent);
}

.frame {
  margin: 0;
  position: relative;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  background: color-mix(in srgb, var(--sand) 55%, var(--white));
}

td a {
  font-weight: 700;
  text-decoration: none;
}

.faq {
  display: grid;
  gap: 0.65rem;
}

.acc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.acc button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 1rem 1.15rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.acc button::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--green);
}

.acc.is-open button::after {
  content: "–";
}

.acc .panel {
  display: none;
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
}

.acc.is-open .panel {
  display: block;
}

.page-hero {
  padding: 2.6rem 0 1.4rem;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.crumbs a {
  color: inherit;
  text-decoration: none;
}

.prose {
  max-width: 42rem;
}

.prose p,
.prose ul {
  color: var(--muted);
}

.prose ul {
  padding-left: 1.15rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin: 1.4rem 0 1.8rem;
}

.fact {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
}

.fact b {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1.4rem;
  max-width: 32rem;
}

.contact-box a {
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.callout {
  background: var(--green);
  color: var(--white);
  border-radius: 1.4rem;
  padding: 1.8rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  align-items: center;
}

.callout h2,
.callout p,
.callout a {
  color: var(--white);
}

.callout p {
  opacity: 0.86;
}

.callout .btn {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.4rem 0 6.5rem;
  margin-top: 1rem;
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer h2 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--sans);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 0.35rem 0;
}

.site-footer a {
  color: var(--ink);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--green);
}

.legal {
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.legal p {
  margin: 0.35rem 0;
}

.regs {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.regs h2 {
  margin: 0 0 0.85rem;
}

.regs-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.regs-list li {
  margin: 0;
}

.regs-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.6rem;
  padding: 0.55rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
}

.regs-list a:hover {
  border-color: var(--green);
  color: inherit;
}

.regs-list a.regs-dark {
  background: #0b0b0b;
  border-color: #111;
}

.regs-list img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 3.1rem;
  object-fit: contain;
}

.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  background: var(--ink);
  color: var(--white);
  border-radius: 1rem;
  padding: 1rem 1.15rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  max-width: 760px;
  margin-inline: auto;
}

.cookie p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie[hidden] {
  display: none;
}

.cookie a {
  color: var(--white);
}

.cookie .btn {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  flex: none;
}

@media (max-width: 980px) {
  .grid-4,
  .foot-grid,
  .hero,
  .split,
  .callout,
  .facts,
  .regs-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem 1rem 1rem;
    gap: 0;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero,
  .split,
  .grid-4,
  .foot-grid,
  .callout,
  .facts {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
    gap: 1.5rem;
  }

  .regs-list {
    grid-template-columns: 1fr 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .cookie {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
