/* ==========================================================================
   Play Ti - visual system for playti.click
   Class prefix : c8b439-
   Canvas       : 320-430px mobile-first, wide screens keep the phone canvas
   Palette      : #2E8B57 leaf | #141414 ink | #66CDAA mint | #006400 forest
   Voice        : poster headings over narrow body, pill buttons, square cards,
                   light floating game tiles, intro-then-section rhythm,
                   motion budget spent only on key CTAs.
   ========================================================================== */

/* ---------------------------------------------------------------- tokens */
:root {
  --c8b439-leaf: #2e8b57;
  --c8b439-ink: #141414;
  --c8b439-mint: #66cdaa;
  --c8b439-forest: #006400;
  --c8b439-text: #eaf7f0;
  --c8b439-dim: #a7cab6;
  --c8b439-line: rgba(102, 205, 170, 0.22);
  --c8b439-line-soft: rgba(102, 205, 170, 0.12);
  --c8b439-panel: rgba(0, 100, 0, 0.24);
  --c8b439-float: linear-gradient(165deg, rgba(46, 139, 87, 0.18), rgba(20, 20, 20, 0.58));
  --c8b439-pill: 999px;
  --c8b439-card: 4px;
  --c8b439-poster: "Arial Black", "Archivo Black", "Franklin Gothic Medium", sans-serif;
  --c8b439-narrow: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --c8b439-dockh: 62px;
}

/* ----------------------------------------------------------------- reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background: #0c110e;
  color: var(--c8b439-text);
  font-family: var(--c8b439-narrow);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.015em;
}

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

button,
a {
  font-family: inherit;
  letter-spacing: inherit;
  -webkit-tap-highlight-color: rgba(102, 205, 170, 0.16);
}

a {
  color: var(--c8b439-mint);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul,
ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--c8b439-mint);
  outline-offset: 2px;
  border-radius: 2px;
}

::selection {
  background: var(--c8b439-forest);
  color: var(--c8b439-mint);
}

/* ---------------------------------------------------------------- canvas */
.c8b439-shell {
  position: relative;
  max-width: 430px;
  margin-inline: auto;
  min-height: 100dvh;
  background: var(--c8b439-ink);
  box-shadow: 0 0 0 1px rgba(102, 205, 170, 0.06), 0 0 60px rgba(0, 100, 0, 0.28);
}

/* Wide screens: keep the phone canvas, frame it, do not stretch it. */
@media (min-width: 430px) {
  body {
    background: #090d0b;
  }

  .c8b439-shell {
    border-inline: 1px solid var(--c8b439-line-soft);
  }
}

.c8b439-noscroll {
  overflow: hidden;
}

/* --------------------------------------------------------------- top bar */
.c8b439-top {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 8px 12px 8px 14px;
  background: linear-gradient(180deg, rgba(10, 16, 12, 0.97), rgba(10, 16, 12, 0.9));
  border-bottom: 1px solid var(--c8b439-line-soft);
  backdrop-filter: blur(8px);
}

.c8b439-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
  color: var(--c8b439-text);
  text-decoration: none;
}

.c8b439-brand:hover {
  text-decoration: none;
}

.c8b439-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--c8b439-line);
  object-fit: cover;
}

.c8b439-brand b {
  font-family: var(--c8b439-poster);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c8b439-text);
}

.c8b439-brand b i {
  font-style: normal;
  color: var(--c8b439-mint);
}

.c8b439-acts {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Pill action buttons - the only rounded surfaces besides pills. */
.c8b439-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 44px;
  padding: 9px 14px;
  border-radius: var(--c8b439-pill);
  border: 1px solid transparent;
  font-family: var(--c8b439-poster);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.12s ease, filter 0.12s ease;
}

.c8b439-btn:active {
  transform: scale(0.96);
  filter: brightness(1.12);
}

.c8b439-btn-cta {
  background: linear-gradient(135deg, var(--c8b439-mint), var(--c8b439-leaf));
  color: #0c130f;
}

.c8b439-btn-ghost {
  background: transparent;
  border-color: var(--c8b439-line);
  color: var(--c8b439-mint);
}

.c8b439-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 10px 11px;
  background: transparent;
  border: 1px solid var(--c8b439-line);
  border-radius: var(--c8b439-pill);
  cursor: pointer;
}

.c8b439-burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--c8b439-mint);
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.c8b439-burger span:nth-child(2) {
  width: 75%;
}

/* ------------------------------------------------------- stacked overlay */
.c8b439-menu {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  max-width: 430px;
  height: 100dvh;
  z-index: 60;
  padding: 70px 12px 18px;
  background: rgba(9, 13, 11, 0.9);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  overflow-y: auto;
}

.c8b439-menu-open {
  opacity: 1;
  visibility: visible;
}

.c8b439-menu-panel {
  background: var(--c8b439-ink);
  border: 1px solid var(--c8b439-line-soft);
  border-radius: 10px;
  padding: 10px 12px 14px;
}

.c8b439-cap {
  margin: 12px 2px 6px;
  font-family: var(--c8b439-poster);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c8b439-dim);
}

.c8b439-menu-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: var(--c8b439-pill);
  border: 1px solid var(--c8b439-line);
  background: rgba(20, 20, 20, 0.7);
  color: var(--c8b439-mint);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.c8b439-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 46px;
  padding: 11px 10px;
  border-bottom: 1px solid var(--c8b439-line-soft);
  color: var(--c8b439-text);
  font-size: 15px;
  border-radius: 4px;
}

.c8b439-menu a::after {
  content: "\203A";
  color: var(--c8b439-leaf);
  font-size: 16px;
}

.c8b439-menu a:hover {
  background: var(--c8b439-panel);
  text-decoration: none;
}

.c8b439-menu a[aria-current="page"] {
  color: var(--c8b439-mint);
  box-shadow: inset 0 -2px 0 var(--c8b439-mint);
}

.c8b439-menu-foot {
  margin-top: 14px;
}

/* ------------------------------------------------------------------ hero */
.c8b439-hero {
  padding: 18px 14px 4px;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(0, 100, 0, 0.5), transparent 60%),
    radial-gradient(90% 70% at 0% 0%, rgba(46, 139, 87, 0.22), transparent 55%);
}

.c8b439-kicker {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border: 1px solid var(--c8b439-line);
  border-radius: var(--c8b439-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c8b439-mint);
}

.c8b439-hero h1 {
  font-family: var(--c8b439-poster);
  font-size: 27px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--c8b439-text);
  text-wrap: balance;
}

.c8b439-hero h1 em {
  font-style: normal;
  color: var(--c8b439-mint);
}

.c8b439-lead {
  margin-top: 10px;
  color: var(--c8b439-dim);
  font-size: 14px;
  max-width: 40ch;
}

/* -------------------------------------------------------------- carousel */
.c8b439-stage {
  position: relative;
  margin-top: 14px;
  aspect-ratio: 43 / 24;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--c8b439-line-soft);
  background: var(--c8b439-panel);
}

.c8b439-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.c8b439-slide-on {
  opacity: 1;
  z-index: 2;
}

.c8b439-hit {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.c8b439-hit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c8b439-hit figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(9, 13, 11, 0.92));
}

.c8b439-capline {
  display: block;
  font-family: var(--c8b439-poster);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c8b439-mint);
}

.c8b439-capsub {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--c8b439-text);
}

.c8b439-dots {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 4;
  display: flex;
  gap: 2px;
}

.c8b439-dot {
  width: 44px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.c8b439-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(234, 247, 240, 0.4);
}

.c8b439-dot-on::before {
  background: var(--c8b439-mint);
  box-shadow: 0 0 0 3px rgba(102, 205, 170, 0.25);
}

/* ---------------------------------------------------------- trust chips */
.c8b439-chips {
  display: flex;
  gap: 6px;
  margin: 12px 0 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.c8b439-chips::-webkit-scrollbar {
  display: none;
}

.c8b439-chip {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid var(--c8b439-line);
  border-radius: var(--c8b439-pill);
  background: rgba(0, 100, 0, 0.18);
  font-size: 11px;
  color: var(--c8b439-dim);
  white-space: nowrap;
}

.c8b439-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c8b439-mint);
}

/* --------------------------------------------------------- section shell */
.c8b439-sec {
  padding: 20px 14px 4px;
}

.c8b439-sec > h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--c8b439-poster);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c8b439-text);
}

.c8b439-sec > h2::before {
  content: "";
  flex: none;
  width: 5px;
  height: 17px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--c8b439-mint), var(--c8b439-leaf));
}

.c8b439-count {
  margin-left: auto;
  flex: none;
  padding: 3px 9px;
  border: 1px solid var(--c8b439-line);
  border-radius: var(--c8b439-pill);
  font-family: var(--c8b439-narrow);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--c8b439-dim);
  white-space: nowrap;
}

.c8b439-intro {
  margin: 8px 0 12px;
  color: var(--c8b439-dim);
  font-size: 13px;
}

.c8b439-intro a {
  border-bottom: 1px dotted var(--c8b439-leaf);
}

.c8b439-intro a:hover {
  text-decoration: none;
  border-bottom-style: solid;
}

/* ------------------------------------------------------------ game grid */
.c8b439-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 6px;
}

@media (min-width: 400px) {
  .c8b439-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Light floating tile: translucent panel, square corners, thin mint edge. */
.c8b439-tile {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--c8b439-line-soft);
  border-radius: var(--c8b439-card);
  background: var(--c8b439-float);
  cursor: pointer;
}

.c8b439-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid rgba(102, 205, 170, 0.14);
  background: #0e1512;
}

.c8b439-tile span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 10.5px;
  line-height: 1.3;
  text-align: center;
  color: var(--c8b439-dim);
  overflow-wrap: anywhere;
}

.c8b439-tile:hover span,
.c8b439-tile:focus-visible span {
  color: var(--c8b439-mint);
}

/* Live tables ride a horizontal snap strip for a different rhythm. */
.c8b439-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--c8b439-forest) transparent;
}

.c8b439-scard {
  flex: none;
  width: 118px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border: 1px solid var(--c8b439-line-soft);
  border-radius: var(--c8b439-card);
  background: var(--c8b439-float);
  cursor: pointer;
}

.c8b439-scard img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid rgba(102, 205, 170, 0.14);
  background: #0e1512;
}

.c8b439-scard span {
  font-size: 11px;
  line-height: 1.3;
  text-align: center;
  color: var(--c8b439-dim);
}

.c8b439-scard:hover span {
  color: var(--c8b439-mint);
}

@media (min-width: 400px) {
  .c8b439-scard {
    width: 128px;
  }
}

/* ---------------------------------------------------------- styles table */
.c8b439-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--c8b439-line-soft);
  border-radius: var(--c8b439-card);
  overflow: hidden;
  font-size: 12px;
}

.c8b439-table th {
  padding: 8px 9px;
  background: var(--c8b439-panel);
  font-family: var(--c8b439-poster);
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c8b439-mint);
  text-align: left;
}

.c8b439-table td {
  padding: 8px 9px;
  border-top: 1px solid var(--c8b439-line-soft);
  color: var(--c8b439-dim);
  vertical-align: top;
}

.c8b439-table tr:hover td {
  background: rgba(0, 100, 0, 0.14);
  color: var(--c8b439-text);
}

.c8b439-table td:first-child {
  color: var(--c8b439-text);
  font-weight: 700;
}

/* ----------------------------------------------------------- Q and A set */
.c8b439-qa {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--c8b439-line-soft);
  border-left: 3px solid var(--c8b439-leaf);
  border-radius: var(--c8b439-card);
  background: rgba(0, 100, 0, 0.12);
}

.c8b439-qa h3 {
  font-family: var(--c8b439-poster);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c8b439-mint);
}

.c8b439-qa h3::before {
  content: "Q ";
  color: var(--c8b439-leaf);
}

.c8b439-qa p {
  margin-top: 6px;
  font-size: 13px;
  color: var(--c8b439-dim);
}

.c8b439-qa p::before {
  content: "A";
  display: inline-block;
  margin-right: 6px;
  padding: 1px 6px;
  border: 1px solid var(--c8b439-line);
  border-radius: var(--c8b439-pill);
  font-size: 10px;
  color: var(--c8b439-mint);
}

/* ------------------------------------------------------------ CTA banner */
.c8b439-cta {
  margin: 6px 0 0;
  padding: 18px 16px;
  border: 1px solid var(--c8b439-line);
  border-radius: 10px;
  background:
    radial-gradient(130% 120% at 100% 0%, rgba(102, 205, 170, 0.16), transparent 55%),
    linear-gradient(160deg, var(--c8b439-forest), rgba(20, 20, 20, 0.9));
}

.c8b439-cta p {
  color: var(--c8b439-dim);
  font-size: 13px;
}

.c8b439-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.c8b439-cta-big {
  min-height: 48px;
  padding: 12px 20px;
  font-size: 13px;
  background: linear-gradient(135deg, var(--c8b439-mint), var(--c8b439-leaf));
  color: #0c130f;
  box-shadow: 0 6px 18px rgba(0, 100, 0, 0.55);
}

.c8b439-cta-alt {
  background: none;
  border: 0;
  padding: 8px 2px;
  min-height: 44px;
  color: var(--c8b439-mint);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.c8b439-cta-note {
  margin-top: 10px;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--c8b439-dim);
}

/* ------------------------------------------------------------ perk list */
.c8b439-perks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 4px;
}

@media (min-width: 400px) {
  .c8b439-perks {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c8b439-perk {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 10px 11px;
  border: 1px solid var(--c8b439-line-soft);
  border-radius: var(--c8b439-card);
  background: var(--c8b439-float);
  font-size: 12.5px;
  color: var(--c8b439-dim);
}

.c8b439-perk svg {
  flex: none;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  stroke: var(--c8b439-mint);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.c8b439-perk b {
  color: var(--c8b439-text);
}

/* -------------------------------------------------------------- steps */
.c8b439-steps {
  display: grid;
  gap: 0;
  margin-top: 4px;
}

.c8b439-step {
  position: relative;
  display: flex;
  gap: 12px;
  padding: 10px 0 14px 0;
}

.c8b439-step::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 34px;
  bottom: -2px;
  width: 2px;
  background: linear-gradient(180deg, var(--c8b439-leaf), rgba(46, 139, 87, 0.08));
}

.c8b439-step:last-child::before {
  display: none;
}

.c8b439-stepnum {
  flex: none;
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c8b439-line);
  border-radius: 50%;
  background: var(--c8b439-forest);
  color: var(--c8b439-mint);
  font-family: var(--c8b439-poster);
  font-size: 13px;
  font-weight: 900;
}

.c8b439-step p {
  align-self: center;
  font-size: 13px;
  color: var(--c8b439-dim);
}

/* ----------------------------------------------------------- pros / cons */
.c8b439-duo {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.c8b439-panel {
  padding: 12px 12px 8px;
  border-radius: var(--c8b439-card);
  border: 1px solid var(--c8b439-line-soft);
  background: rgba(0, 100, 0, 0.12);
}

.c8b439-panel-hd {
  font-family: var(--c8b439-poster);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c8b439-mint);
}

.c8b439-panel li {
  position: relative;
  padding: 7px 4px 7px 20px;
  border-bottom: 1px solid var(--c8b439-line-soft);
  font-size: 12.5px;
  color: var(--c8b439-dim);
}

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

.c8b439-pro li::before {
  content: "+";
  position: absolute;
  left: 2px;
  color: var(--c8b439-mint);
  font-weight: 900;
}

.c8b439-con li::before {
  content: "\2013";
  position: absolute;
  left: 2px;
  color: #d8a35f;
  font-weight: 900;
}

.c8b439-verdict {
  margin-top: 12px;
  padding: 12px;
  border-left: 3px solid var(--c8b439-mint);
  border-radius: var(--c8b439-card);
  background: rgba(20, 20, 20, 0.55);
  font-size: 13px;
  color: var(--c8b439-dim);
}

/* ----------------------------------------------------- extended footer */
.c8b439-xfoot {
  margin-top: 26px;
  padding: 18px 14px 6px;
  border-top: 1px solid var(--c8b439-line-soft);
  background:
    radial-gradient(110% 100% at 50% 0%, rgba(0, 100, 0, 0.3), transparent 60%),
    #101513;
}

.c8b439-xhead {
  font-family: var(--c8b439-poster);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--c8b439-text);
}

.c8b439-xbrand {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--c8b439-dim);
}

.c8b439-acts7 {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.c8b439-act {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--c8b439-line-soft);
  border-radius: var(--c8b439-card);
  background: var(--c8b439-float);
  color: var(--c8b439-text);
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.c8b439-act svg {
  flex: none;
  width: 19px;
  height: 19px;
  stroke: var(--c8b439-mint);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.c8b439-act::after {
  content: "\203A";
  margin-left: auto;
  color: var(--c8b439-leaf);
  font-size: 15px;
}

.c8b439-act:hover {
  border-color: var(--c8b439-line);
}

.c8b439-dir {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 10px;
  margin-top: 6px;
}

.c8b439-dir a {
  padding: 8px 2px;
  border-bottom: 1px solid var(--c8b439-line-soft);
  color: var(--c8b439-dim);
  font-size: 11.5px;
  line-height: 1.35;
}

.c8b439-dir a:hover {
  color: var(--c8b439-mint);
  text-decoration: none;
}

.c8b439-legal-note {
  margin-top: 16px;
  padding: 11px 12px;
  border: 1px dashed rgba(102, 205, 170, 0.28);
  border-radius: var(--c8b439-card);
  font-size: 11px;
  line-height: 1.5;
  color: var(--c8b439-dim);
}

/* ------------------------------------------------------- copyright line */
.c8b439-end {
  padding: 14px 14px calc(18px + var(--c8b439-dockh));
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #7fa691;
}

/* ------------------------------------------------------- floating dock */
.c8b439-dock {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 50;
  width: 100%;
  max-width: 430px;
  display: flex;
  align-items: flex-end;
  padding: 6px 6px calc(6px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 14, 12, 0.94);
  border-top: 1px solid var(--c8b439-line);
  backdrop-filter: blur(10px);
}

.c8b439-dbtn {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 52px;
  padding: 6px 2px 4px;
  background: none;
  border: 0;
  color: var(--c8b439-dim);
  font-size: 10px;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.c8b439-dbtn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

a.c8b439-dbtn:hover,
button.c8b439-dbtn:hover {
  color: var(--c8b439-text);
  text-decoration: none;
}

/* Active role: tinted fill inside the linear icon plus an underline marker. */
.c8b439-dock-on {
  color: var(--c8b439-mint);
}

.c8b439-dock-on svg {
  fill: currentColor;
  fill-opacity: 0.2;
}

.c8b439-dock-on::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 22px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--c8b439-mint);
}

/* Center promo seat lifts above the dock line. */
.c8b439-dmid {
  flex: none;
  width: 76px;
}

.c8b439-dmid .c8b439-dbtn {
  min-height: 56px;
  gap: 1px;
}

.c8b439-dmid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 1px;
  padding: 6px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--c8b439-mint), var(--c8b439-leaf));
  stroke: #0c130f;
  stroke-width: 2;
  fill: none;
  box-shadow: 0 4px 14px rgba(0, 100, 0, 0.6);
}

.c8b439-dmid:active svg {
  transform: scale(0.94);
}

/* ----------------------------------------------------------- main space */
.c8b439-main {
  padding-bottom: calc(var(--c8b439-dockh) + env(safe-area-inset-bottom, 0px) + 14px);
}

/* -------------------------------------------------------- motion budget */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ---------------------------------------------------------- help pages */
.c8b439-help-hero {
  padding: 22px 14px 18px;
  background:
    linear-gradient(135deg, rgba(0, 100, 0, 0.45), transparent 52%),
    radial-gradient(75% 80% at 100% 0%, rgba(102, 205, 170, 0.18), transparent 65%);
  border-bottom: 1px solid var(--c8b439-line-soft);
}

.c8b439-help-hero h1 {
  margin-top: 8px;
  font-family: var(--c8b439-poster);
  font-size: 26px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--c8b439-text);
  text-wrap: balance;
}

.c8b439-help-lead {
  margin-top: 11px;
  color: var(--c8b439-dim);
  font-size: 14px;
}

.c8b439-help-stamp {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 9px 10px;
  border-left: 3px solid var(--c8b439-mint);
  background: rgba(20, 20, 20, 0.56);
  color: var(--c8b439-text);
  font-size: 12px;
}

.c8b439-help-stamp strong {
  color: var(--c8b439-mint);
}

.c8b439-help-copy {
  padding: 18px 14px 0;
}

.c8b439-help-copy h2 {
  margin: 22px 0 8px;
  font-family: var(--c8b439-poster);
  font-size: 18px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--c8b439-text);
}

.c8b439-help-copy h2::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 16px;
  margin-right: 8px;
  border-radius: 2px;
  vertical-align: -1px;
  background: linear-gradient(180deg, var(--c8b439-mint), var(--c8b439-leaf));
}

.c8b439-help-copy h3 {
  margin-top: 15px;
  font-family: var(--c8b439-poster);
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--c8b439-mint);
}

.c8b439-help-copy p {
  margin-top: 8px;
  color: var(--c8b439-dim);
  font-size: 13px;
}

.c8b439-help-copy p strong,
.c8b439-help-copy li strong {
  color: var(--c8b439-text);
}

.c8b439-help-copy a {
  border-bottom: 1px dotted var(--c8b439-leaf);
}

.c8b439-help-copy ol,
.c8b439-help-copy ul {
  margin-top: 8px;
}

.c8b439-help-copy li {
  position: relative;
  margin-top: 7px;
  padding-left: 20px;
  color: var(--c8b439-dim);
  font-size: 13px;
}

.c8b439-help-copy li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c8b439-mint);
}

.c8b439-alert {
  margin-top: 13px;
  padding: 12px;
  border: 1px solid rgba(216, 163, 95, 0.5);
  border-radius: var(--c8b439-card);
  background: rgba(103, 67, 26, 0.2);
  color: #ecd4ad;
  font-size: 12.5px;
}

.c8b439-alert b {
  color: #f1c477;
}

.c8b439-checklist {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  counter-reset: c8b439-check;
}

.c8b439-check-row {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 9px;
  align-items: start;
  padding: 10px;
  border: 1px solid var(--c8b439-line-soft);
  background: linear-gradient(100deg, rgba(0, 100, 0, 0.22), rgba(20, 20, 20, 0.64));
}

.c8b439-check-row::before {
  counter-increment: c8b439-check;
  content: counter(c8b439-check, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--c8b439-line);
  border-radius: 50%;
  color: var(--c8b439-mint);
  font-family: var(--c8b439-poster);
  font-size: 10px;
  font-weight: 900;
}

.c8b439-check-row p {
  margin: 0;
}

.c8b439-diagnostic {
  width: 100%;
  margin-top: 12px;
  border-collapse: collapse;
  border: 1px solid var(--c8b439-line-soft);
  font-size: 12px;
}

.c8b439-diagnostic th,
.c8b439-diagnostic td {
  padding: 9px 8px;
  border-bottom: 1px solid var(--c8b439-line-soft);
  text-align: left;
  vertical-align: top;
}

.c8b439-diagnostic th {
  background: rgba(0, 100, 0, 0.28);
  color: var(--c8b439-mint);
  font-family: var(--c8b439-poster);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.c8b439-diagnostic td {
  color: var(--c8b439-dim);
}

.c8b439-diagnostic td:first-child {
  width: 29%;
  color: var(--c8b439-text);
  font-weight: 700;
}

.c8b439-action-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.c8b439-action-rail .c8b439-btn {
  flex: 1 1 132px;
}

.c8b439-callout {
  margin-top: 14px;
  padding: 13px;
  border-left: 3px solid var(--c8b439-mint);
  background: rgba(0, 100, 0, 0.15);
}

.c8b439-callout p {
  margin-top: 0;
}

/* The features page uses an atlas and relationship map rather than the safety timeline. */
.c8b439-atlas {
  display: grid;
  gap: 8px;
  margin-top: 13px;
}

.c8b439-atlas-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  padding: 11px;
  border-top: 2px solid var(--c8b439-leaf);
  background: var(--c8b439-float);
}

.c8b439-atlas-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--c8b439-line);
  border-radius: 50%;
  color: var(--c8b439-mint);
  font-family: var(--c8b439-poster);
  font-size: 14px;
}

.c8b439-atlas-item h3 {
  margin: 0;
}

.c8b439-atlas-item p {
  margin-top: 5px;
  font-size: 12.5px;
}

.c8b439-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 12px;
}

.c8b439-matrix-cell {
  min-height: 104px;
  padding: 10px;
  border: 1px solid var(--c8b439-line-soft);
  background: rgba(0, 100, 0, 0.13);
}

.c8b439-matrix-cell b {
  display: block;
  color: var(--c8b439-text);
  font-family: var(--c8b439-poster);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.c8b439-matrix-cell span {
  display: block;
  margin-top: 6px;
  color: var(--c8b439-dim);
  font-size: 12px;
  line-height: 1.4;
}

.c8b439-relationship {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--c8b439-line);
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(102, 205, 170, 0.12) 50%, transparent 50.5%),
    rgba(20, 20, 20, 0.65);
}

.c8b439-node {
  padding: 10px;
  border: 1px solid var(--c8b439-line-soft);
  background: rgba(0, 100, 0, 0.25);
  color: var(--c8b439-dim);
  font-size: 12px;
}

.c8b439-node b {
  display: block;
  margin-bottom: 3px;
  color: var(--c8b439-mint);
  font-family: var(--c8b439-poster);
  font-size: 11px;
  text-transform: uppercase;
}

.c8b439-faq-list {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.c8b439-faq-list details {
  border-bottom: 1px solid var(--c8b439-line-soft);
  background: rgba(0, 100, 0, 0.1);
}

.c8b439-faq-list summary {
  min-height: 46px;
  padding: 13px 10px;
  cursor: pointer;
  list-style: none;
  color: var(--c8b439-text);
  font-family: var(--c8b439-poster);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.c8b439-faq-list summary::-webkit-details-marker {
  display: none;
}

.c8b439-faq-list summary::after {
  content: "+";
  float: right;
  color: var(--c8b439-mint);
  font-size: 18px;
  line-height: 12px;
}

.c8b439-faq-list details[open] summary::after {
  content: "-";
}

.c8b439-faq-list details p {
  padding: 0 10px 13px;
  font-size: 12.5px;
}

@media (min-width: 400px) {
  .c8b439-help-copy {
    padding-inline: 16px;
  }

  .c8b439-help-hero {
    padding-inline: 16px;
  }

  .c8b439-matrix {
    gap: 8px;
  }
}
