/*!
Theme Name: yonogame
Description: allyonogamekediwane directory theme. Ported from the approved static redesign.
Version: 2.0
*/

/* allyonogamekediwane - design tokens
   Theme lock: light. Dark is a token swap only, same design language.
   One accent (emerald). One radius system: card 14 / control 10 / chip pill. */

:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-2: #fafbfc;
  --ink: #0e1116;
  --muted: #5a6472;
  --faint: #8d97a5;
  --line: #e4e8ed;
  --line-strong: #d3d9e0;

  --accent: #0b8f4d;
  --accent-ink: #076d3b;
  --accent-soft: #e7f5ed;
  --accent-ring: rgba(11, 143, 77, .28);

  --warn-bg: #fff8e6;
  --warn-line: #f2dfa8;
  --warn-ink: #6b5210;

  --r-card: 14px;
  --r-ctl: 10px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(14, 17, 22, .05);
  --shadow-md: 0 1px 2px rgba(14, 17, 22, .04), 0 10px 26px -14px rgba(14, 17, 22, .22);

  --max: 1320px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* Theme lock: light only. The page does not follow the OS dark preference,
   so it renders identically for every visitor. */
:root { color-scheme: light; }

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Geist, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 16px; }
@media (min-width: 768px) { .wrap { padding-inline: 24px; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--accent); color: #fff; padding: 10px 16px;
  border-radius: var(--r-ctl); transition: top .18s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  height: 64px;
  display: flex; align-items: center; gap: 16px;
}

.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }

.brand-mark {
  width: 34px; height: 34px; flex: none;
  border-radius: var(--r-ctl);
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 13px; letter-spacing: .02em;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand-name { font-weight: 650; font-size: 15px; letter-spacing: -.01em; }
.brand-sub { font-size: 11px; color: var(--faint); letter-spacing: .01em; }

.nav { margin-left: auto; display: none; align-items: center; gap: 4px; }
@media (min-width: 900px) { .nav { display: flex; } }

.nav a {
  padding: 8px 12px; border-radius: var(--r-ctl);
  font-size: 14px; color: var(--muted);
  transition: background .16s var(--ease), color .16s var(--ease);
}
.nav a:hover { background: var(--surface-2); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 550; }

.header-cta {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 7px;
  height: 38px; padding: 0 14px;
  border: 1px solid var(--line-strong); border-radius: var(--r-ctl);
  background: var(--surface); color: var(--ink);
  font-size: 13.5px; font-weight: 550;
  transition: border-color .16s var(--ease), transform .16s var(--ease);
}
@media (min-width: 900px) { .header-cta { margin-left: 8px; } }
.header-cta:hover { border-color: var(--accent); }
.header-cta:active { transform: translateY(1px); }
.header-cta i { font-size: 17px; color: var(--accent); }
.header-cta span { display: none; }
@media (min-width: 480px) { .header-cta span { display: inline; } }

.nav-toggle {
  margin-left: 4px; width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong); border-radius: var(--r-ctl);
  background: var(--surface); color: var(--ink); font-size: 19px; cursor: pointer;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }

.mobile-nav { display: none; border-top: 1px solid var(--line); padding: 8px 0 14px; }
.mobile-nav.open { display: block; }
@media (min-width: 900px) { .mobile-nav, .mobile-nav.open { display: none; } }
.mobile-nav a {
  display: block; padding: 11px 12px; border-radius: var(--r-ctl);
  color: var(--muted); font-size: 15px;
}
.mobile-nav a:hover { background: var(--surface-2); color: var(--ink); }

/* ---------- hero ---------- */

/* Hero band carries the artwork's own pale mint so the image has no visible seam. */
.hero {
  position: relative;
  padding: 34px 0 0;
  background: #fbfdfc;
  border-bottom: 1px solid #dbeae4;
}
@media (min-width: 900px) { .hero { padding: 72px 0 52px; } }

.hero { display: flex; flex-direction: column; }
.hero .wrap { position: relative; z-index: 1; order: 1; }
.hero-art { order: 2; }
.hero-inner { max-width: 720px; margin-inline: 0 auto; }

/* Mobile: the artwork sits below the copy as its own band, cropped to the
   right where the cards and chips are. Never behind the text. */
.hero-art { margin: 26px 0 0; line-height: 0; }
.hero-art img { width: 100%; height: 168px; object-fit: cover; object-position: 74% 42%; }

@media (min-width: 900px) {
  .hero-art {
    position: absolute; inset: 0 0 0 auto;
    width: 62%; margin: 0; z-index: 0; pointer-events: none;
  }
  .hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
  /* scrim keeps the headline side clean whatever the viewport width */
  .hero-art::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, #fbfdfc 0%, rgba(251, 253, 252, .82) 24%, rgba(251, 253, 252, 0) 58%);
  }
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 6.2vw, 46px);
  line-height: 1.12;
  letter-spacing: -.028em;
  font-weight: 680;
}

.hero p {
  margin: 0 0 24px;
  font-size: clamp(15px, 2.2vw, 17px);
  color: var(--muted);
  max-width: 52ch;
}

form.search {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-ctl);
  padding: 6px 6px 6px 14px;
  box-shadow: var(--shadow-md);
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
  max-width: 560px;
}
form.search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-ring); }
form.search i { font-size: 20px; color: var(--faint); flex: none; }

form.search input {
  flex: 1; min-width: 0;
  border: 0; outline: 0; background: transparent;
  color: var(--ink); font: inherit; font-size: 15px;
  height: 44px;
}
form.search input::placeholder { color: var(--faint); }

form.search button {
  flex: none; height: 44px; padding: 0 20px;
  border: 0; border-radius: 8px;
  background: var(--accent); color: #fff;
  font: inherit; font-size: 14.5px; font-weight: 600; cursor: pointer;
  transition: background .16s var(--ease), transform .12s var(--ease);
}
form.search button:hover { background: var(--accent-ink); }
form.search button:active { transform: scale(.97); }

.hero-stats {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  font-size: 13.5px; color: var(--muted);
}
.hero-stats b { color: var(--ink); font-weight: 600; }

/* ---------- page head ----------
   The hero band without the artwork. Used by search, archives, static pages
   and 404 so every route opens the same way the home page does. */

.page-head {
  background: #fbfdfc;
  border-bottom: 1px solid #dbeae4;
  padding: 26px 0 30px;
}
@media (min-width: 900px) { .page-head { padding: 46px 0 48px; } }

.page-head-inner { max-width: 720px; }

.page-head h1 {
  margin: 0 0 10px;
  font-size: clamp(24px, 4.6vw, 36px);
  line-height: 1.14;
  letter-spacing: -.026em;
  font-weight: 680;
}

.page-lede {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(14px, 2vw, 16px);
  max-width: 56ch;
}
.page-lede:last-child { margin-bottom: 0; }

.page-head .crumbs { padding: 0 0 12px; }
.page-head form.search { margin-top: 2px; }

.page-head-meta {
  margin-top: 16px;
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  font-size: 13.5px; color: var(--muted);
}
.page-head-meta b { color: var(--ink); font-weight: 600; }

/* Standalone empty state, outside a grid (404, no results). */
.empty.is-standalone { max-width: 620px; margin-inline: auto; }

/* ---------- compliance ---------- */

.compliance {
  background: var(--warn-bg);
  border-block: 1px solid var(--warn-line);
  color: var(--warn-ink);
}
.compliance-row {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 12px 0; font-size: 13px; line-height: 1.5;
}
.compliance i { font-size: 18px; flex: none; margin-top: 1px; }
.compliance b { font-weight: 650; }
.compliance a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- icon rail ---------- */

.rail { padding: 22px 0 6px; overflow: hidden; }
.rail-track {
  display: flex; gap: 12px; width: max-content;
  animation: rail 46s linear infinite;
}
.rail:hover .rail-track, .rail:focus-within .rail-track { animation-play-state: paused; }
@keyframes rail { to { transform: translateX(-50%); } }
.rail-track img {
  width: 54px; height: 54px; border-radius: 12px;
  border: 1px solid var(--line); object-fit: cover; background: var(--surface-2);
}
@media (prefers-reduced-motion: reduce) {
  .rail-track { animation: none; }
  .rail { overflow-x: auto; }
}

/* ---------- banner slider ---------- */

.banners { padding-bottom: 0; }
@media (min-width: 768px) { .banners { padding-bottom: 0; } }

.slider { position: relative; }

.slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
}
.slider-track::-webkit-scrollbar { display: none; }

.slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
.slide a { display: block; }

/* Uploaded banners are wide strips (~5.7:1). The slide holds that ratio so
   every banner reads at the same height, and no banner artwork is cropped
   away on phones. */
.slide-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 178;
  object-fit: cover;
  object-position: center;
}

/* Arrows are printed hidden and revealed by site.js, so a no-JS page never
   shows a control that cannot do anything. Swiping still works there. */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .92);
  color: var(--ink); font-size: 18px; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.slider-arrow:hover { background: #fff; }
.slider-arrow:active { transform: translateY(-50%) scale(.94); }
.slider-arrow[hidden] { display: none; }
.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }
/* On phones the strip is only ~65px tall, so a 38px button sits on top of the
   artwork. Swiping and the dots cover it there. */
@media (max-width: 640px) {
  .slider-arrow { display: none; }
}
@media (min-width: 768px) {
  .slider-arrow { width: 44px; height: 44px; font-size: 20px; }
  .slider-arrow.prev { left: 14px; }
  .slider-arrow.next { right: 14px; }
}

.slider-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 12px;
}
.slider-dot {
  width: 8px; height: 8px; padding: 0; border-radius: var(--r-pill);
  border: 0; background: var(--line-strong); cursor: pointer;
  transition: width .22s var(--ease), background .22s var(--ease);
}
.slider-dot.is-active { width: 22px; background: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  .slider-track { scroll-behavior: auto; }
}

/* ---------- section head ---------- */

.section { padding: 34px 0; }
@media (min-width: 768px) { .section { padding: 52px 0; } }

.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 18px;
}
.section-head h2 {
  margin: 0; font-size: clamp(20px, 3.4vw, 27px);
  letter-spacing: -.022em; font-weight: 650;
}
.section-head p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }

.sorts { display: flex; gap: 6px; flex-wrap: wrap; }
.sort-btn {
  height: 34px; padding: 0 13px;
  border: 1px solid var(--line-strong); border-radius: var(--r-pill);
  background: var(--surface); color: var(--muted);
  font: inherit; font-size: 13px; font-weight: 500; cursor: pointer;
  transition: color .16s var(--ease), border-color .16s var(--ease), background .16s var(--ease);
}
.sort-btn:hover { color: var(--ink); border-color: var(--line-strong); }
.sort-btn[aria-pressed="true"] {
  background: var(--accent-soft); border-color: var(--accent); color: var(--accent-ink); font-weight: 600;
}

/* ---------- app grid ---------- */

.grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 560px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; } }
@media (min-width: 820px) { .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; } }

.card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 10px;
  box-shadow: var(--shadow-sm);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card:active { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .card, .card:hover { transform: none; } }

.card-media { position: relative; margin-bottom: 10px; }
.card-media img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 12px; border: 1px solid var(--line);
  background: var(--surface-2);
}

.card-flag {
  position: absolute; top: 7px; left: 7px;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  padding: 3px 7px; border-radius: var(--r-pill);
}

.card-title {
  margin: 0 0 7px; font-size: 13.5px; font-weight: 600;
  line-height: 1.35; letter-spacing: -.008em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}

.card-meta {
  display: flex; align-items: center; gap: 5px;
  font-size: 12.5px; color: var(--muted); margin-bottom: 8px;
}
.card-meta i { font-size: 13px; color: var(--accent); }

.card-bonus {
  display: block; width: 100%;
  background: var(--accent-soft); color: var(--accent-ink);
  border-radius: 8px; padding: 5px 8px;
  font-size: 12px; font-weight: 600; text-align: center;
  margin-bottom: 10px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Two column phone layout leaves the chip ~150px. The longest real value,
   "1.5K welcome bonus", needs the smaller step to stay whole. */
@media (max-width: 559px) {
  .card-bonus { font-size: 11px; padding-inline: 5px; letter-spacing: -.012em; }
}

.card-cta {
  margin-top: auto;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  height: 38px; border-radius: 9px;
  background: var(--accent); color: #fff;
  font-size: 13.5px; font-weight: 600;
  transition: background .16s var(--ease);
}
.card:hover .card-cta { background: var(--accent-ink); }
.card-cta i { font-size: 15px; }

/* skeleton + empty */

.skeleton .sk {
  background: linear-gradient(90deg, var(--surface-2) 25%, var(--line) 37%, var(--surface-2) 63%);
  background-size: 400% 100%;
  animation: sk 1.3s ease-in-out infinite;
  border-radius: 8px;
}
@keyframes sk { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }
@media (prefers-reduced-motion: reduce) { .skeleton .sk { animation: none; } }
.skeleton .sk-media { aspect-ratio: 1/1; border-radius: 12px; margin-bottom: 10px; }
.skeleton .sk-line { height: 11px; margin-bottom: 7px; }
.skeleton .sk-line.short { width: 60%; }
.skeleton .sk-cta { height: 38px; border-radius: 9px; margin-top: 6px; }

.empty {
  grid-column: 1 / -1;
  border: 1px dashed var(--line-strong); border-radius: var(--r-card);
  padding: 44px 24px; text-align: center; background: var(--surface);
}
.empty i { font-size: 30px; color: var(--faint); }
.empty h3 { margin: 12px 0 6px; font-size: 17px; font-weight: 620; }
.empty p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  height: 40px; padding: 0 18px;
  border: 1px solid var(--line-strong); border-radius: var(--r-ctl);
  background: var(--surface); color: var(--ink);
  font: inherit; font-size: 14px; font-weight: 550; cursor: pointer;
  transition: border-color .16s var(--ease), transform .12s var(--ease);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-ink); }
.btn-ghost:active { transform: translateY(1px); }

.pagination {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 6px; margin-top: 28px;
}
.page-btn {
  min-width: 38px; height: 38px; padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong); border-radius: var(--r-ctl);
  background: var(--surface); color: var(--muted);
  font: inherit; font-size: 14px; font-weight: 550; cursor: pointer;
  transition: border-color .16s var(--ease), color .16s var(--ease);
}
.page-btn:hover:not([disabled]) { border-color: var(--accent); color: var(--accent-ink); }
.page-btn:active:not([disabled]) { transform: translateY(1px); }
.page-btn[aria-current="page"] {
  background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 620;
}
.page-btn[disabled] { opacity: .38; cursor: default; }
.page-btn i { font-size: 16px; }

/* ---------- steps ---------- */

.steps { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 16px; } }

.step {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 20px;
}
.step i { font-size: 24px; color: var(--accent); }
.step h3 { margin: 12px 0 6px; font-size: 16px; font-weight: 620; letter-spacing: -.012em; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

/* ---------- faq ---------- */

.faq { max-width: 780px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: 16px 34px 16px 0; position: relative;
  font-size: 15.5px; font-weight: 550; letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 20px; font-weight: 400; color: var(--faint); line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 0 0 18px; color: var(--muted); font-size: 14.5px; max-width: 65ch; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding: 40px 0 28px;
}
.footer-simple {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; text-align: center;
}
.footer-simple > p {
  margin: 0; color: var(--muted); font-size: 13.5px;
  max-width: 62ch; line-height: 1.6;
}
.footer-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; }
.footer-row a { color: var(--muted); font-size: 14px; }
.footer-row a:hover { color: var(--ink); }
.footer-copy { color: var(--faint); font-size: 12.5px; max-width: 60ch; }

.age-badge {
  display: inline-flex; align-items: center; gap: 7px; flex: none;
  border: 1px solid var(--line-strong); border-radius: var(--r-pill);
  padding: 5px 12px 5px 6px; font-size: 12.5px; font-weight: 600; color: var(--ink);
  margin-top: 16px;
}
.age-badge span {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); color: var(--surface);
  display: grid; place-items: center; font-size: 10px; font-weight: 700;
}

.legal {
  padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--faint);
}
.banned-states {
  margin-top: 18px; padding: 14px 16px;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r-ctl); font-size: 12.5px; color: var(--muted); line-height: 1.6;
}
.banned-states b { color: var(--ink); font-weight: 620; }

/* ---------- detail page ---------- */

.crumbs { padding: 18px 0 0; font-size: 13px; color: var(--faint); display: flex; gap: 7px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--ink); }

.app-head { padding: 22px 0 30px; }
.app-head-inner { display: flex; gap: 16px; align-items: flex-start; }
@media (min-width: 700px) { .app-head-inner { gap: 24px; } }

.app-icon {
  width: 88px; height: 88px; flex: none;
  border-radius: 18px; border: 1px solid var(--line);
  object-fit: cover; background: var(--surface-2); box-shadow: var(--shadow-md);
}
@media (min-width: 700px) { .app-icon { width: 128px; height: 128px; border-radius: 24px; } }

.app-head h1 {
  margin: 0 0 8px; font-size: clamp(21px, 3.6vw, 32px);
  line-height: 1.2; letter-spacing: -.025em; font-weight: 680;
}
.app-pub { margin: 0 0 14px; color: var(--muted); font-size: 14px; }

.app-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 26px; border: 0; border-radius: var(--r-ctl);
  background: var(--accent); color: #fff;
  font: inherit; font-size: 15px; font-weight: 620; cursor: pointer;
  white-space: nowrap;
  transition: background .16s var(--ease), transform .12s var(--ease);
}
.btn-primary:hover { background: var(--accent-ink); }
.btn-primary:active { transform: translateY(1px); }
.btn-primary i { font-size: 18px; }

.specs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r-card); overflow: hidden; margin-top: 26px;
}
@media (min-width: 700px) { .specs { grid-template-columns: repeat(4, 1fr); } }
.spec { background: var(--surface); padding: 16px; }
.spec dt { font-size: 11.5px; color: var(--faint); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 5px; }
.spec dd { margin: 0; font-size: 17px; font-weight: 620; letter-spacing: -.015em; }

.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(19px, 3vw, 24px); letter-spacing: -.02em; font-weight: 650; margin: 0 0 12px; }
.prose h3 { font-size: 17px; font-weight: 620; margin: 26px 0 8px; letter-spacing: -.014em; }
.prose p { color: var(--muted); margin: 0 0 14px; }
.prose ol { color: var(--muted); padding-left: 20px; margin: 0 0 14px; }
.prose ol li { margin-bottom: 7px; }
.prose strong { color: var(--ink); font-weight: 620; }

.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.tag {
  border: 1px solid var(--line-strong); border-radius: var(--r-pill);
  padding: 5px 12px; font-size: 12.5px; color: var(--muted);
  transition: border-color .16s var(--ease), color .16s var(--ease);
}
.tag:hover { border-color: var(--accent); color: var(--accent-ink); }

.bonus-banner {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--accent-soft); border: 1px solid color-mix(in srgb, var(--accent) 26%, transparent);
  border-radius: var(--r-card); padding: 14px 16px; margin: 22px 0 0;
  color: var(--accent-ink);
}
.bonus-banner i { font-size: 22px; flex: none; }
.bonus-banner strong { font-size: 16px; font-weight: 680; }
.bonus-banner p { margin: 2px 0 0; font-size: 13px; color: var(--accent-ink); opacity: .82; }
