@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --paper: #f3eee6;
  --paper-2: #e7e0d4;
  --ink: #161412;
  --ink-2: #2c2824;
  --muted: #5e5850;
  --line: #161412;
  --magenta: #de186e;
  --magenta-deep: #9d104d;
  --white: #fffcf8;
  --ok: #1b5c42;
  --shadow: 7px 7px 0 #de186e;
  --shadow-ink: 6px 6px 0 #161412;
  --radius: 10px;
  --wrap: 1120px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  min-height: 100dvh;
}

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

a {
  color: var(--magenta-deep);
}

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

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--ink);
  color: var(--white);
  padding: 8px 14px;
  z-index: 80;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(calc(100% - 32px), var(--wrap));
  margin-inline: auto;
}

.age-bar {
  background: var(--ink);
  color: var(--white);
  border-bottom: 3px solid var(--magenta);
}

.age-bar__inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.92rem;
}

.age-bar p {
  margin: 0;
}

.age-bar a {
  color: #ffd4e6;
}

.ghost-btn {
  appearance: none;
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  font: inherit;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 6px;
}

.ghost-btn:hover {
  background: var(--white);
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--paper) 88%, white);
  border-bottom: 3px solid var(--ink);
}

.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

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

.brand img {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.brand-type strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 3px solid var(--ink);
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 3px;
  background: var(--ink);
  transition: transform 0.45s var(--ease), top 0.45s var(--ease), opacity 0.3s;
}

.nav-toggle span {
  top: 21px;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
}

.nav-toggle span::before {
  top: -8px;
}

.nav-toggle span::after {
  top: 8px;
}

.nav-toggle.is-open span {
  background: transparent;
}

.nav-toggle.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}

.hero {
  padding: 56px 0 28px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.kicker i {
  width: 28px;
  height: 22px;
  background: var(--magenta);
  color: var(--white);
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-style: normal;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2.1rem, 5.4vw, 4.15rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.lead {
  font-size: 1.15rem;
  max-width: 62ch;
  color: var(--ink-2);
  margin: 0 0 22px;
}

.stack {
  display: grid;
  gap: 12px;
  margin: 28px 0 26px;
}

.stack article {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-ink);
}

.stack strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta-deep);
  margin-bottom: 4px;
}

.stack p {
  margin: 0;
  font-size: 1.02rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 12px 16px 12px 18px;
  background: var(--magenta);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn:hover {
  color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

.btn--ink {
  background: var(--ink);
}

.btn--ghost {
  background: var(--white);
  color: var(--ink);
}

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

section {
  padding: 28px 0 12px;
}

.panel {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: clamp(18px, 3vw, 32px);
  box-shadow: var(--shadow);
  margin: 18px 0 28px;
}

.grid-2,
.grid-3,
.ops,
.resources,
.legal-grid {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ops {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.note,
.card,
.op-card,
.resource,
.faq details {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
}

.note,
.card {
  padding: 18px 18px 16px;
}

.note h3,
.card h3 {
  font-size: 1.12rem;
}

.card p:last-child,
.note p:last-child {
  margin-bottom: 0;
}

.op-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 14px;
  box-shadow: 5px 5px 0 var(--ink);
}

.op-card__logo {
  height: 86px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #111;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 12px;
}

.op-card__logo img {
  width: 100%;
  height: 86px;
  object-fit: cover;
}

.op-word {
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.4rem;
  color: #fffcf8;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 3px;
}

.verdict {
  display: inline-block;
  margin: 0 0 8px;
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.op-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.op-card p {
  margin: 0 0 12px;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.facts {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  font-size: 0.88rem;
}

.facts li {
  padding: 6px 0;
  border-top: 2px solid var(--paper-2);
}

.op-card .btn {
  margin-top: auto;
  justify-content: center;
  width: 100%;
}

.table-wrap {
  overflow-x: auto;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-ink);
}

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

th,
td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 2px solid var(--paper-2);
  vertical-align: top;
}

th {
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.resources {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 14px;
  align-items: center;
}

.resource img {
  width: 92px;
  height: 72px;
  object-fit: contain;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 6px;
}

.resource h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.resource p {
  margin: 0 0 10px;
  font-size: 0.92rem;
}

.faq details {
  padding: 4px 16px 8px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 12px 0;
}

.faq p {
  margin: 0 8px 12px 0;
}

.site-footer {
  margin-top: 40px;
  background: var(--ink);
  color: #efe8de;
  padding: 40px 0 20px;
}

.site-footer a {
  color: #ffd0e4;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
}

.foot-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.foot-grid li {
  margin: 0 0 8px;
}

.foot-note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 2px solid #3a3530;
  font-size: 0.9rem;
}

.tiny {
  color: var(--muted);
  font-size: 0.88rem;
}

.page-hero {
  padding: 36px 0 8px;
}

.page-hero h1 {
  max-width: 18ch;
}

.prose {
  max-width: 74ch;
}

.prose p,
.prose li {
  font-size: 1.02rem;
}

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

.contact-box {
  border: 3px solid var(--ink);
  background: var(--white);
  padding: 22px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-box a {
  font-weight: 700;
  font-size: 1.15rem;
}

.stamp {
  display: inline-block;
  border: 3px solid var(--magenta);
  color: var(--magenta-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  transform: rotate(-2deg);
  font-size: 0.78rem;
}

@media (max-width: 1080px) {
  .ops {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .grid-2,
  .grid-3,
  .resources,
  .foot-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    background: var(--white);
    border: 3px solid var(--ink);
    border-radius: 12px;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }

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

  .site-header {
    position: sticky;
  }

  .bar {
    position: relative;
  }

  .resource {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ops {
    grid-template-columns: 1fr;
  }

  .age-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    max-width: none;
  }
}
