:root {
  --ink: #150a20;
  --ink-2: #1c0d2b;
  --panel: #24123b;
  --panel-2: #2e1849;
  --line: rgba(255, 255, 255, 0.11);
  --line-2: rgba(255, 255, 255, 0.2);
  --magenta: #ff2e88;
  --violet: #8b5cff;
  --lime: #c8ff3d;
  --cream: #f3ecff;
  --muted: #b6a3d2;
  --display: "Bahnschrift", "DIN Alternate", "Franklin Gothic Medium", "Arial Narrow", "Segoe UI", sans-serif;
  --body: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --wrap: 1080px;
  --radius: 14px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink);
  background-image:
    radial-gradient(1100px 520px at 12% -8%, rgba(139, 92, 255, 0.26), transparent 62%),
    radial-gradient(900px 460px at 92% 4%, rgba(255, 46, 136, 0.2), transparent 60%);
  background-repeat: no-repeat;
  color: var(--cream);
  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(--lime); }

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

.btn {
  display: inline-block;
  border: 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 999px;
  line-height: 1.1;
  width: 100%;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.btn--lime {
  background: var(--lime);
  color: #16210a;
  box-shadow: 0 10px 26px rgba(200, 255, 61, 0.26);
}

.btn--magenta {
  background: linear-gradient(120deg, var(--violet), var(--magenta));
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(255, 46, 136, 0.32);
}

.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }

.promo {
  background: linear-gradient(115deg, #3a1160 0%, #6b1f8f 45%, #c62273 100%);
  border-bottom: 1px solid var(--line-2);
}

.promo__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
  align-items: flex-start;
}

.promo__flag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 6px;
}

.promo__headline {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: 0.005em;
}

.promo__headline strong {
  color: var(--lime);
  white-space: nowrap;
}

.promo__fine {
  margin: 8px 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
}

.promo--mid {
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  margin: 42px 0;
}

.promo--mid .promo__inner {
  padding: 24px 20px;
}

.site-head {
  background: rgba(21, 10, 32, 0.9);
  border-bottom: 1px solid var(--line);
  z-index: 20;
  backdrop-filter: blur(9px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo__mark { display: block; line-height: 0; flex: 0 0 auto; }

.logo__type { display: flex; flex-direction: column; }

.logo__name {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.logo__sub {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

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

.site-nav a {
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

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

main { padding-bottom: 20px; }

.article { padding-top: 30px; }

h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 11vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

h1::after {
  content: "";
  display: block;
  height: 7px;
  width: 168px;
  margin-top: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--lime) 0 40%, var(--magenta) 40% 100%);
}

h2 {
  scroll-margin-top: 88px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 6.2vw, 2.15rem);
  line-height: 1.14;
  margin: 44px 0 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  position: relative;
}

h2::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 74px;
  height: 3px;
  background: var(--magenta);
}

h3 {
  font-family: var(--display);
  font-size: clamp(1.2rem, 4.6vw, 1.4rem);
  line-height: 1.2;
  margin: 28px 0 8px;
  color: var(--lime);
}

p { margin: 0 0 16px; }

.lede {
  font-size: 1.09rem;
  color: #e6dbfa;
  border-left: 3px solid var(--violet);
  padding-left: 16px;
  margin-top: 22px;
}

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

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

.stat__k {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat__v {
  font-family: var(--display);
  font-size: 1.02rem;
  line-height: 1.25;
}

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

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 820px;
  font-size: 0.94rem;
}

caption {
  caption-side: top;
  text-align: left;
  padding: 14px 16px 10px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

th, td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  white-space: nowrap;
}

thead th {
  background: var(--panel-2);
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lime);
  white-space: nowrap;
}

tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: rgba(255, 255, 255, 0.04); }

.faq { margin: 22px 0 6px; }

.faq__item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq__toggle {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.faq__q {
  display: block;
  cursor: pointer;
  padding: 16px 52px 16px 18px;
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.3;
  position: relative;
  user-select: none;
}

.faq__q::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -7px;
  border-right: 3px solid var(--lime);
  border-bottom: 3px solid var(--lime);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}

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

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.26s ease;
}

.faq__a > p {
  overflow: hidden;
  margin: 0;
  padding: 0 18px;
  color: #ded1f5;
  font-size: 0.97rem;
}

.faq__toggle:checked ~ .faq__a { grid-template-rows: 1fr; }

.faq__toggle:checked ~ .faq__a > p { padding-bottom: 18px; }

.faq__toggle:checked ~ .faq__q::after { transform: rotate(225deg); margin-top: -3px; }

.faq__toggle:focus-visible ~ .faq__q {
  outline: 3px solid var(--lime);
  outline-offset: -3px;
}

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  border-top: 4px solid var(--violet);
}

.card--good { border-top-color: var(--lime); }
.card--bad { border-top-color: var(--magenta); }

.card__tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.card h3 { margin: 0 0 10px; color: var(--cream); }
.card--good h3 { color: var(--lime); }
.card--bad h3 { color: #ff86b7; }
.card p { margin: 0; font-size: 0.97rem; color: #ddd2f2; }

.closing {
  background: rgba(139, 92, 255, 0.12);
  border: 1px solid var(--line);
  border-left: 4px solid var(--lime);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 26px 0 0;
}

.cta-final {
  margin: 34px 0 10px;
  padding: 26px 20px;
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  text-align: center;
  background: linear-gradient(140deg, rgba(139, 92, 255, 0.18), rgba(255, 46, 136, 0.14));
}

.cta-final p {
  font-family: var(--display);
  font-size: 1.45rem;
  margin: 0 0 16px;
}

.site-foot {
  margin-top: 46px;
  padding: 30px 0 40px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  font-size: 0.87rem;
  color: var(--muted);
}

.site-foot p { margin: 0 0 12px; }

.site-foot__age {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.age-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--magenta);
  color: var(--magenta);
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.site-foot__copy {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
}

@media (min-width: 620px) {
  .site-head { position: sticky; top: 0; }
  .btn { width: auto; }
  .promo__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 26px; }
  .promo__headline { font-size: 1.6rem; }
  .stat-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .site-head__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 20px; }
  .site-nav { gap: 6px 20px; }
}

@media (min-width: 860px) {
  body { font-size: 18px; }
  .wrap { padding: 0 28px; }
  .article { padding-top: 42px; }
  .promo--mid .promo__inner { padding: 30px 32px; }
  .promo__headline { font-size: 1.8rem; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .stat-strip { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  table { min-width: 100%; }
}

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