:root {
  --ink: #17102b;
  --royal-950: #150b28;
  --royal-900: #1e1038;
  --royal-800: #2a1750;
  --royal-700: #3b2069;
  --royal-line: rgba(231, 185, 79, 0.28);
  --gold: #e7b94f;
  --gold-soft: #f7de9a;
  --gold-deep: #b98c22;
  --paper: #fbf8f2;
  --paper-2: #f2ecdf;
  --body: #3a3450;
  --muted: #6b6482;
  --white: #ffffff;
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  --shadow: 0 18px 40px -24px rgba(21, 11, 40, 0.55);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  overflow-x: hidden;
}

.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

a { color: var(--royal-700); }

:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 3px;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding: 14px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn--gold {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: var(--royal-950);
  border-color: var(--gold-deep);
  box-shadow: 0 10px 22px -12px rgba(185, 140, 34, 0.9);
}

.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 26px -12px rgba(185, 140, 34, 0.95); }

.btn--outline {
  background: transparent;
  color: var(--gold-soft);
  border-color: var(--royal-line);
}

.btn--outline:hover { background: rgba(231, 185, 79, 0.12); border-color: var(--gold); }

.btn--lg { padding: 16px 30px; font-size: 16px; width: 100%; max-width: 340px; }

.topbanner {
  background:
    radial-gradient(120% 140% at 12% 0%, var(--royal-700) 0%, var(--royal-900) 55%, var(--royal-950) 100%);
  border-bottom: 1px solid var(--royal-line);
  color: var(--white);
  padding: 22px 0;
}

.topbanner__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.topbanner__text { display: flex; flex-direction: column; gap: 6px; }

.topbanner__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.topbanner__headline {
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.3;
  color: var(--white);
}

.topbanner__note { font-size: 13px; color: rgba(255, 255, 255, 0.68); }

.site-header {
  background: var(--royal-950);
  border-bottom: 1px solid var(--royal-line);
  padding: 14px 0;
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-right: auto;
}

.logo__mark {
  display: block;
  width: 38px;
  height: 38px;
  color: var(--gold);
  flex: 0 0 auto;
}

.logo__mark svg { display: block; width: 100%; height: 100%; }

.logo__type { display: flex; flex-direction: column; line-height: 1.15; }

.logo__name {
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: 0.01em;
  color: var(--white);
}

.logo__sub {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.site-nav { display: none; gap: 20px; }

.site-nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover { color: var(--gold-soft); border-bottom-color: var(--gold); }

.article { padding: 34px 18px 10px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 10px;
}

h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.06;
  color: var(--royal-900);
  margin: 0 0 6px;
  letter-spacing: -0.015em;
}

h1::after {
  content: "";
  display: block;
  width: 74px;
  height: 3px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--gold), rgba(231, 185, 79, 0));
}

h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 27px;
  line-height: 1.2;
  color: var(--royal-900);
  margin: 42px 0 12px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--royal-800);
  margin: 26px 0 8px;
}

p { margin: 0 0 16px; }

.lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  margin-top: 18px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--royal-line);
  border: 1px solid var(--royal-line);
  border-radius: 14px;
  overflow: hidden;
  margin: 26px 0 8px;
}

.fact {
  background: var(--paper-2);
  padding: 13px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fact__k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.fact__v {
  font-family: var(--display);
  font-size: 17px;
  color: var(--royal-900);
}

ul.ticks { list-style: none; padding: 0; margin: 0 0 18px; }

ul.ticks li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
}

ul.ticks li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: var(--gold);
}

ul.ticks strong { color: var(--royal-800); }

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 22px 0 24px;
  border: 1px solid rgba(58, 32, 105, 0.16);
  border-radius: 14px;
  background: var(--white);
}

table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 15px;
}

caption {
  caption-side: top;
  text-align: left;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 13px 16px 9px;
}

thead th {
  background: var(--royal-900);
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: left;
  padding: 12px 16px;
  white-space: nowrap;
}

tbody td { padding: 12px 16px; border-top: 1px solid rgba(58, 32, 105, 0.12); }

tbody tr:nth-child(even) td { background: var(--paper-2); }

tbody tr:last-child td { font-weight: 700; color: var(--royal-800); }

.midbanner {
  margin: 40px 0;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold), rgba(231, 185, 79, 0.15) 45%, var(--gold-deep));
  box-shadow: var(--shadow);
}

.midbanner__inner {
  background:
    radial-gradient(120% 160% at 85% 0%, var(--royal-700) 0%, var(--royal-900) 60%, var(--royal-950) 100%);
  border-radius: 16px;
  padding: 28px 22px;
  color: var(--white);
  text-align: center;
}

.midbanner__eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--royal-950);
  background: var(--gold);
  padding: 5px 12px;
  border-radius: 999px;
}

.midbanner__headline {
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.24;
  color: var(--white);
  margin: 14px 0 8px;
}

.midbanner__note {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 20px;
  max-width: 520px;
}

.faq { margin: 22px 0 8px; border-top: 1px solid rgba(58, 32, 105, 0.16); }

.faq__item { border-bottom: 1px solid rgba(58, 32, 105, 0.16); }

.faq__toggle { position: absolute; opacity: 0; width: 1px; height: 1px; }

.faq__q {
  display: block;
  position: relative;
  padding: 18px 46px 18px 2px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--royal-900);
  cursor: pointer;
}

.faq__q:hover { color: var(--gold-deep); }

.faq__q::before,
.faq__q::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 15px;
  height: 2.5px;
  background: var(--gold-deep);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.faq__q::after { transform: rotate(90deg); }

.faq__toggle:checked + .faq__q::after { transform: rotate(0deg); }

.faq__toggle:focus-visible + .faq__q {
  outline: 3px solid var(--gold-deep);
  outline-offset: 2px;
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__a p { margin: 0; padding: 0 2px 20px; color: var(--body); font-size: 16px; }

.faq__toggle:checked ~ .faq__a { max-height: 520px; }

.cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin: 24px 0 10px;
}

.card {
  background: var(--white);
  border: 1px solid rgba(58, 32, 105, 0.14);
  border-top: 3px solid var(--gold);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.card__tag {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--royal-800);
  background: var(--paper-2);
  border-radius: 999px;
  padding: 5px 11px;
  margin-bottom: 12px;
}

.card__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.22;
  color: var(--royal-900);
  margin: 0 0 12px;
}

.card p { font-size: 15.5px; line-height: 1.62; }

.card .btn { margin-top: auto; align-self: flex-start; }

.closing {
  margin: 44px 0 10px;
  padding: 28px 22px;
  border-radius: 18px;
  background: var(--paper-2);
  border: 1px solid rgba(58, 32, 105, 0.14);
  text-align: center;
}

.closing__lead {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.24;
  color: var(--royal-900);
  margin-bottom: 10px;
}

.closing p { max-width: 720px; margin-left: auto; margin-right: auto; }

.site-footer {
  margin-top: 46px;
  background:
    radial-gradient(120% 130% at 15% 0%, var(--royal-800) 0%, var(--royal-900) 55%, var(--royal-950) 100%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  padding: 34px 0 30px;
  border-top: 3px solid var(--gold);
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--royal-line);
}

.logo--footer { margin-right: 0; }

.site-footer__age {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.age-badge {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

.site-footer p { margin: 0 0 14px; }

.site-footer__copy {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold);
  padding-top: 14px;
  border-top: 1px solid var(--royal-line);
  margin-bottom: 0;
}

@media (min-width: 640px) {
  body { font-size: 17.5px; }
  h1 { font-size: 54px; }
  h2 { font-size: 31px; }
  .lede { font-size: 20px; }
  .article { padding: 44px 18px 10px; }
  .facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .btn--lg { width: auto; }
  .topbanner { padding: 26px 0; }
  .topbanner__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 26px; }
  .topbanner__headline { font-size: 24px; }
  .midbanner__inner { padding: 38px 34px; }
  .midbanner__headline { font-size: 30px; }
  .card { padding: 28px 26px; }
  .closing { padding: 38px 34px; }
  .site-footer__top { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 760px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .site-nav { display: flex; }
  h1 { font-size: 62px; }
  .article { padding: 56px 18px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
