:root {
  --ink: #150920;
  --ink-2: #1C0B2C;
  --panel: #241238;
  --panel-2: #2E1746;
  --line: #3D2258;
  --gold: #F2B233;
  --gold-2: #FFD37A;
  --violet: #9A6BFF;
  --violet-2: #C3ABFF;
  --text: #EEE7F6;
  --muted: #AE9CC6;
  --good: #5FD3A0;
  --bad: #FF8A8A;
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  --wrap: 1080px;
  --r: 14px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink);
  background-image:
    radial-gradient(120% 60% at 50% -10%, #33184E 0%, rgba(51, 24, 78, 0) 60%),
    linear-gradient(180deg, #170A24 0%, #120718 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.68;
  overflow-x: hidden;
}

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

a { color: var(--gold-2); }

a:focus-visible,
button:focus-visible,
.faq-toggle:focus-visible + .faq-q,
.scroller:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.promo-mark,
.brand-mark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 38px;
  height: 38px;
}

.brand-mark.small { width: 26px; height: 26px; gap: 2px; }

.promo-mark {
  width: 46px;
  height: 46px;
  gap: 4px;
}

.promo-mark span,
.brand-mark span {
  display: block;
  border-radius: 4px;
}

.promo-mark span:nth-child(1),
.brand-mark span:nth-child(1) { background: var(--gold); }
.promo-mark span:nth-child(2),
.brand-mark span:nth-child(2) { background: var(--violet); }
.promo-mark span:nth-child(3),
.brand-mark span:nth-child(3) { background: var(--violet-2); }
.promo-mark span:nth-child(4),
.brand-mark span:nth-child(4) { background: var(--gold-2); }

.promo {
  background:
    linear-gradient(135deg, #3B1C5C 0%, #2A1140 45%, #4A2418 100%);
  border-bottom: 1px solid rgba(242, 178, 51, .35);
  position: relative;
}

.promo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(242, 178, 51, .1), rgba(154, 107, 255, .08) 60%, transparent);
  pointer-events: none;
}

.promo-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 20px;
  padding-bottom: 22px;
}

.promo-mid {
  border-top: 1px solid rgba(242, 178, 51, .35);
  margin: 46px 0;
}

.promo-copy { flex: 1 1 auto; }

.promo-eyebrow {
  margin: 0 0 6px;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.promo-headline {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: clamp(1.3rem, 5.2vw, 1.9rem);
  line-height: 1.24;
  letter-spacing: -.01em;
}

.promo-headline strong { color: var(--gold); }

.promo-terms {
  margin: 0;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.5;
}

.cta {
  display: inline-block;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: #2A1405;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  border: 0;
  border-radius: 10px;
  padding: 15px 26px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(242, 178, 51, .26);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.cta:hover { filter: brightness(1.06); transform: translateY(-1px); }
.cta:active { transform: translateY(1px); }

.cta-lg { width: 100%; text-align: center; }

.site-head {
  border-bottom: 1px solid var(--line);
  background: rgba(21, 9, 32, .82);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.head-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 14px;
  padding-bottom: 14px;
}

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

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

.brand-name {
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: .005em;
}

.brand-sub {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.site-nav a {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

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

main { display: block; }

.article { padding-top: 34px; }

.eyebrow {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--violet-2);
  margin: 0 0 12px;
}

h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 11vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 0 0 18px;
  background: linear-gradient(180deg, #FFFFFF 15%, var(--gold-2) 70%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 5.6vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -.015em;
  margin: 44px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  position: relative;
}

h2::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 64px;
  height: 2px;
  background: var(--gold);
}

h3 {
  font-family: var(--body);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--gold-2);
  margin: 28px 0 8px;
}

p { margin: 0 0 16px; }

.lead {
  font-size: 1.12rem;
  line-height: 1.62;
  color: #DDD2EC;
}

.section { padding-top: 8px; }

.section-intro { color: var(--muted); margin-bottom: 22px; }

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

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

.fact-k {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

.fact-v { font-weight: 600; font-size: .96rem; }

.callout {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 18px 18px 4px;
  margin: 26px 0;
}

.callout-title {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 8px;
}

.steps { list-style: none; margin: 20px 0; padding: 0; }

.steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.steps li:last-child { border-bottom: 0; }

.step-n {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 700;
  color: #2A1405;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
}

.steps strong { color: var(--gold-2); }

.scroller {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin: 22px 0;
  background: var(--panel);
}

table.data {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: .92rem;
}

table.data caption {
  text-align: left;
  padding: 14px 16px 10px;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

table.data th,
table.data td {
  padding: 12px 16px;
  text-align: left;
  border-top: 1px solid var(--line);
  vertical-align: top;
}

table.data thead th {
  background: var(--panel-2);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-2);
  white-space: nowrap;
}

table.data tbody tr:nth-child(even) td { background: rgba(154, 107, 255, .05); }

table.data td:first-child { font-weight: 600; white-space: nowrap; }

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 22px 0;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 18px 6px;
}

.panel-title {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.panel-good { border-top: 3px solid var(--good); }
.panel-bad { border-top: 3px solid var(--bad); }
.panel-good .panel-title { color: var(--good); }
.panel-bad .panel-title { color: var(--bad); }

.panel ul { margin: 0 0 14px; padding-left: 20px; }
.panel li { margin-bottom: 8px; }
.panel-good li::marker { color: var(--good); }
.panel-bad li::marker { color: var(--bad); }

.faq { border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); position: relative; }

.faq-toggle {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 17px 2px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  transition: color .15s ease;
}

.faq-q:hover { color: var(--gold-2); }

.faq-q::after {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background:
    linear-gradient(var(--gold), var(--gold)) center/11px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center/2px 11px no-repeat,
    var(--panel-2);
  border: 1px solid var(--line);
  transition: transform .25s ease;
}

.faq-toggle:checked + .faq-q::after {
  background:
    linear-gradient(var(--gold), var(--gold)) center/11px 2px no-repeat,
    var(--panel-2);
  transform: rotate(180deg);
}

.faq-toggle:checked + .faq-q { color: var(--gold-2); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-toggle:checked ~ .faq-a { max-height: 42rem; }

.faq-a p {
  margin: 0;
  padding: 0 2px 20px;
  color: #D6C9E6;
  font-size: .97rem;
  max-width: 74ch;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 22px 0 10px;
}

.card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 20px 8px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--violet));
}

.card-label {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--violet-2);
  margin-bottom: 8px;
}

.card-title {
  font-family: var(--display);
  font-size: 1.22rem;
  line-height: 1.25;
  color: var(--gold-2);
  margin-bottom: 10px;
}

.card p:last-child { font-size: .95rem; color: #D6C9E6; }

.site-foot {
  margin-top: 52px;
  border-top: 1px solid var(--line);
  background: #10061A;
}

.foot-inner { padding-top: 30px; padding-bottom: 34px; }

.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.foot-brand .brand-name { font-size: 1.1rem; }

.foot-note {
  font-size: .86rem;
  color: var(--muted);
  max-width: 78ch;
  line-height: 1.6;
}

.foot-note.strong { color: #D6C9E6; }

.foot-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.badge {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 999px;
  padding: 6px 12px;
}

.foot-copy {
  font-family: var(--mono);
  font-size: .74rem;
  color: var(--muted);
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

@media (min-width: 620px) {
  .facts { grid-template-columns: 1fr 1fr; }
  .cta-lg { width: auto; }
  .promo-inner { flex-direction: row; align-items: center; gap: 22px; }
  .head-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 820px) {
  body { font-size: 18px; }
  .wrap { padding: 0 28px; }
  .article { padding-top: 52px; }
  .facts { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .two-col { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .promo-inner { padding-top: 26px; padding-bottom: 26px; }
  .lead { font-size: 1.2rem; }
}

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

@media print {
  .promo, .site-nav { display: none; }
  body { background: #fff; color: #000; }
}
