:root {
  --bg: #0c1512;
  --surface: #14201b;
  --surface-2: #1c2b24;
  --border: #2c3f36;
  --text: #eef5f1;
  --muted: #9fb4aa;
  --primary: #3affbd;
  --primary-hover: #63ffcb;
  --primary-text: #05231a;
  --spark: #3affbd;
  --accent-grad: linear-gradient(135deg, #3affbd 0%, #17c78e 100%);
  --radius: 10px;
  --container: 1120px;
  --gutter: 16px;
  --font: "Trebuchet MS", "Segoe UI", system-ui, Verdana, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }
body { margin: 0; font: 16px/1.6 var(--font); color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:focus-visible, span[role="link"]:focus-visible, label:focus-visible { outline: 2px solid var(--spark); outline-offset: 2px; }
h1, h2, h3, h4 { margin: 0 0 16px; font-weight: 700; line-height: 1.22; color: var(--text); letter-spacing: -.01em; }
h1 { font-size: 40px; }
h2 { font-size: 29px; }
h3 { font-size: 21px; }
p { margin: 0 0 16px; }
ul, ol { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 7px; }
strong { font-weight: 700; }
table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 0 0 30px; overflow: hidden; border-radius: var(--radius); }
th, td { padding: 13px 16px; border: 1px solid var(--border); text-align: left; vertical-align: top; font-size: 15px; }
th { background: var(--surface-2); font-weight: 700; }
td { background: var(--surface); color: var(--muted); }
tr:nth-child(even) td { background: var(--surface-2); }
td:first-child { font-weight: 700; color: var(--text); }

.shell { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1 0 auto; }
.flow { max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter) 44px; }
.go { cursor: pointer; -webkit-user-select: none; user-select: none; }

@keyframes cta-beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.cta:not(.cta--ghost), .btn--fill, .voices__cta { animation: cta-beat 2.4s ease-in-out infinite; will-change: transform; }
.cta:not(.cta--ghost):hover, .btn--fill:hover, .voices__cta:hover { animation-play-state: paused; transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) { .cta, .btn--fill, .voices__cta { animation: none; } }
.cta { display: flex; align-items: center; justify-content: center; text-align: center; max-width: 360px; width: 100%; min-height: 58px; margin: 10px auto 0; padding: 12px 26px; border-radius: var(--radius); background: linear-gradient(180deg, #3affbd 0%, #1fd79b 100%); color: var(--primary-text); box-shadow: 0 8px 26px rgba(58,255,189,.28); font-size: 18px; font-weight: 700; text-decoration: none; border: none; transition: background .2s, transform .1s; }
.cta:hover { background: linear-gradient(180deg, #63ffcb 0%, #3affbd 100%); }
.cta:active { transform: scale(.98); }
.cta--ghost { background: transparent; border: 2px solid var(--primary); color: var(--text); box-shadow: none; }
.cta--ghost:hover { background: rgba(58,255,189,.12); }

.topbar { position: sticky; top: 0; z-index: 50; background: var(--surface); border-bottom: 1px solid var(--border); }
.topbar__in { max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); height: 66px; display: flex; align-items: center; gap: 22px; }
.brandmark img { height: 46px; width: auto; }
.topbar .brandmark { margin-right: auto; }
.menu__list { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.menu__list li { margin: 0; }
.menu__list .go { display: block; padding: 8px 13px; border-radius: 7px; font-size: 15px; font-weight: 700; color: var(--text); }
.menu__list .go:hover { background: var(--surface-2); color: var(--spark); }
.menu__cta { display: none; }
.topbar__cta { display: flex; gap: 10px; }
.btn--ghost, .btn--fill { display: inline-flex; align-items: center; justify-content: center; height: 42px; padding: 0 18px; border-radius: 7px; font-size: 14px; font-weight: 700; white-space: nowrap; transition: background .2s; }
.btn--ghost { background: var(--surface); color: var(--spark); border: 1px solid var(--spark); }
.btn--ghost:hover { background: var(--surface-2); }
.btn--fill { background: linear-gradient(180deg, #3affbd 0%, #1fd79b 100%); color: var(--primary-text); }
.btn--fill:hover { background: linear-gradient(180deg, #63ffcb 0%, #3affbd 100%); }
.nav-switch { position: absolute; opacity: 0; pointer-events: none; }
.hamburger { display: none; width: 42px; height: 42px; padding: 9px; flex-direction: column; justify-content: space-between; cursor: pointer; border-radius: 7px; }
.hamburger span { display: block; height: 3px; border-radius: 2px; background: var(--text); transition: transform .25s, opacity .25s; }

.crumbs { border-bottom: 1px solid var(--border); background: #0a120f; }
.crumbs ol { max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 9px var(--gutter); list-style: none; display: flex; gap: 8px; font-size: 12.5px; color: var(--muted); }
.crumbs li { margin: 0; }
.crumbs li + li::before { content: "\203A"; margin-right: 8px; color: var(--muted); }
.crumbs .go { color: var(--spark); }

.hero { padding: 30px 0 40px; text-align: center; }
.hero__h1 { margin-bottom: 18px; }
.hero__banner { display: block; margin: 0 auto 24px; border-radius: var(--radius); overflow: hidden; }
.hero__banner img { width: 100%; height: auto; }
.hero__lead { max-width: 920px; margin: 0 auto 22px; text-align: left; font-size: 17px; color: var(--muted); }
.hero__lead p:last-child { margin-bottom: 0; }

.figure-wrap { margin: 8px 0 42px; }
.figure-wrap .go { display: block; }
.figure-wrap img { width: 100%; border-radius: var(--radius); }

.tablecard { margin: 0 0 46px; }
.tablecard__head { display: flex; align-items: center; justify-content: center; min-height: 62px; margin: 0 0 22px; padding: 12px 20px; border-radius: var(--radius); background: var(--accent-grad); text-align: center; font-size: 25px; color: var(--primary-text); }
.tablecard td:first-child { width: 30%; }

.slab, .rack-wrap, .appblock, .voices, .qa, .foot { content-visibility: auto; contain-intrinsic-size: auto 620px; }
.slab { margin: 0 0 46px; }
.slab h2 { margin-top: 6px; }
.slab__center { text-align: center; }
.prose p, .prose li { font-size: 17px; color: var(--muted); }
.prose h3 { margin-top: 26px; color: var(--text); }
.prose table { font-size: 15px; }

.verdict__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.verdict__col { padding: 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.verdict__col h3 { margin-bottom: 12px; }
.verdict__col ul { margin: 0; padding: 0; list-style: none; }
.verdict__col li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--muted); }
.verdict__col li::before { content: ""; position: absolute; left: 0; top: 8px; width: 10px; height: 10px; border-radius: 50%; }
.verdict__col--up li::before { background: var(--spark); }
.verdict__col--down li::before { background: #d98a4f; }

.rack-wrap { margin: 0 0 52px; }
.rack-wrap h2 { text-align: center; margin-bottom: 22px; }
.rack__tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; list-style: none; margin: 0 0 22px; padding: 0; }
.rack__tabs li { margin: 0; }
.rack__tab { display: flex; align-items: center; justify-content: center; gap: 8px; height: 48px; border-radius: 8px; background: var(--surface); border: 1px solid var(--border); color: var(--text); font-size: 16px; font-weight: 700; text-decoration: none; cursor: pointer; transition: background .2s; }
.rack__tab svg { fill: currentColor; flex: none; }
.rack__tab:hover, .rack__tab.active { background: var(--surface-2); border-color: var(--spark); color: var(--spark); }
.rack__pane { display: none; }
.rack__pane.active { display: block; }
.rack { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px 14px; }
.card { display: block; text-decoration: none; color: var(--text); cursor: pointer; }
.card__pic { display: block; position: relative; border-radius: 8px; overflow: hidden; background: var(--surface); aspect-ratio: 360 / 472; }
.card__pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.card:hover .card__pic img { transform: scale(1.05); }
.card__name { display: block; margin-top: 9px; font-size: 14px; font-weight: 700; line-height: 1.3; }
.card small { display: block; font-size: 12px; color: var(--muted); }
.card--logo .card__name { text-align: center; }
.card--logo .card__pic { background: var(--surface); aspect-ratio: 263 / 156; }

.appblock { margin: 0 0 46px; }
.appblock__in { display: flex; gap: 30px; align-items: center; padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.appblock__media { flex: 0 0 360px; }
.appblock__media img { border-radius: 8px; }
.appblock__body { flex: 1 1 0; }
.appblock__specs { display: flex; flex-wrap: wrap; gap: 10px 0; list-style: none; margin: 0 0 20px; padding: 0; }
.appblock__specs li { flex: 1 1 25%; margin: 0; padding: 0 14px; text-align: center; border-right: 1px solid var(--border); }
.appblock__specs li:last-child { border-right: 0; }
.appblock__specs b { display: block; font-size: 19px; }
.appblock__specs small { display: block; font-size: 12px; color: var(--muted); }
.appblock__store { display: flex; flex-wrap: wrap; gap: 12px; }
.store-btn { display: inline-flex; align-items: center; gap: 9px; height: 50px; padding: 0 18px; border-radius: 9px; background: var(--surface-2); border: 1px solid var(--border); color: var(--text); font-weight: 700; cursor: pointer; }
.store-btn:hover { border-color: var(--spark); }
.store-btn img { width: 24px; height: 24px; }

.voices { margin: 0 0 52px; }
.voices__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; margin-bottom: 20px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.voices__label { font-size: 14px; color: var(--muted); margin-bottom: 4px; }
.voices__score { display: flex; align-items: center; gap: 10px; }
.voices__score > span { font-size: 26px; font-weight: 700; }
.voices__score small { color: var(--muted); font-size: 13px; }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 18px; height: 18px; fill: var(--spark); }
.voices__cta { display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 0 22px; border-radius: 8px; background: linear-gradient(180deg, #3affbd 0%, #1fd79b 100%); color: var(--primary-text); font-weight: 700; font-size: 14px; white-space: nowrap; cursor: pointer; }
.voices__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.voice { padding: 20px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.voice__user { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.voice__ava { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--accent-grad); font-weight: 700; font-size: 18px; color: var(--primary-text); }
.voice__id span { display: block; font-weight: 700; }
.voice__id small { color: var(--muted); font-size: 12px; }
.voice__stars { margin-bottom: 10px; }
.voice__text p { margin: 0; font-size: 15px; color: var(--muted); }

.qa { margin: 0 0 40px; }
.qa__item { padding: 20px 24px; margin-bottom: 12px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.qa__item h3 { font-size: 18px; margin-bottom: 8px; }
.qa__item p { margin: 0; font-size: 16px; color: var(--muted); }

.stamp { margin: 0 0 20px; }
.stamp__box { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); font-size: 15px; color: var(--muted); }
.stamp__box svg { flex: none; width: 30px; height: 30px; fill: var(--spark); }
.stamp__box b { color: var(--text); }

.foot { background: var(--surface); border-top: 1px solid var(--border); }
.foot__in { max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 40px var(--gutter); display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot__info { flex: 1 1 300px; }
.foot__info .brandmark img { height: 54px; width: auto; margin-bottom: 16px; }
.foot__blurb { color: var(--muted); font-size: 14px; max-width: 360px; }
.foot__social { display: flex; gap: 10px; margin-top: 16px; }
.foot__social a { width: 40px; height: 40px; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--border); border-radius: 9px; }
.foot__social a:hover { border-color: var(--spark); }
.foot__social img { width: 22px; height: 22px; }
.foot__seals { display: grid; grid-template-columns: repeat(5, auto); align-items: center; gap: 14px; margin-top: 18px; justify-content: start; }
.foot__seals img { height: 42px; width: auto; opacity: .9; }
.foot__seals a:hover img { opacity: 1; }
.seal18 { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 3px solid var(--spark); color: var(--spark); font-weight: 700; font-size: 14px; }
.foot__links { display: flex; gap: 56px; }
.foot-nav__list { list-style: none; margin: 0; padding: 0; }
.foot-nav__list li { margin-bottom: 8px; }
.foot-nav__list .go { font-size: 14px; color: var(--text); }
.foot-nav__list .go:hover { color: var(--spark); text-decoration: underline; }
.foot__pay { border-top: 1px solid var(--border); }
.foot__pay-in { max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 20px var(--gutter); display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; }
.pay-chip { display: grid; place-items: center; width: 92px; height: 40px; padding: 5px 8px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 7px; }
.pay-chip img { max-height: 26px; width: auto; }
.foot__bottom { border-top: 1px solid var(--border); }
.foot__copy { max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 22px var(--gutter); font-size: 12px; line-height: 1.7; color: var(--muted); }
.foot__copy p { margin: 0 0 8px; }
.foot__copy a { color: var(--muted); text-decoration: underline; }

@media (max-width: 1024px) {
  .topbar__in { gap: 12px; }
  .menu__list .go { padding: 8px 9px; font-size: 14px; }
  .rack { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  .hamburger { display: flex; order: 3; }
  .topbar__cta { order: 2; margin-left: auto; }
  .topbar .brandmark { margin-right: 0; }
  .menu { display: none; position: absolute; left: 0; right: 0; top: 66px; padding: 12px var(--gutter) 18px; background: var(--surface); border-bottom: 1px solid var(--border); }
  .nav-switch:checked ~ .menu { display: block; }
  .nav-switch:checked ~ .hamburger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .nav-switch:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
  .nav-switch:checked ~ .hamburger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  .menu__list { flex-direction: column; gap: 0; }
  .menu__list .go { padding: 12px 8px; font-size: 16px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .menu__cta { display: flex; gap: 10px; margin-top: 14px; }
  .menu__cta > span { flex: 1; }
  .appblock__in { flex-direction: column; align-items: stretch; }
  .appblock__media { flex-basis: auto; }
  .appblock__media img { width: 100%; }
  .voices__list { grid-template-columns: repeat(2, 1fr); }
  .rack { grid-template-columns: repeat(3, 1fr); }
  .foot__links { gap: 40px; }
}
@media (max-width: 767px) {
  h1 { font-size: 29px; } h2 { font-size: 23px; } h3 { font-size: 18px; }
  .prose p, .prose li, .hero__lead { font-size: 16px; }
  th, td { padding: 10px 9px; font-size: 13px; }
  .tablecard td:first-child { width: 36%; }
  .tablecard__head { font-size: 18px; min-height: 54px; }
  .rack__tabs { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .rack__tab { height: 42px; font-size: 14px; }
  .rack { grid-template-columns: repeat(3, 1fr); gap: 14px 10px; }
  .card__name { font-size: 13px; }
  .cta { min-height: 52px; font-size: 16px; }
  .voices__head { flex-direction: column; align-items: flex-start; }
  .voices__cta { width: 100%; }
  .voices__list { grid-template-columns: 1fr; }
  .verdict__grid { grid-template-columns: 1fr; }
  .appblock__specs li { flex-basis: 50%; border-right: 0; margin-bottom: 8px; }
  .slab, .rack-wrap, .voices { margin-bottom: 34px; }
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table thead, table tbody { display: table; width: 100%; }
  .foot__in { flex-direction: column; gap: 30px; }
}
@media (max-width: 480px) {
  .topbar__in { gap: 8px; }
  .topbar__cta { gap: 6px; }
  .btn--ghost, .btn--fill { height: 38px; padding: 0 11px; font-size: 13px; }
  .brandmark img { height: 32px; }
  .rack { grid-template-columns: repeat(2, 1fr); }
  .hamburger { width: 38px; padding: 8px; }
}

.foot__main { border-bottom: 1px solid var(--border); }
.foot__cols { display: flex; gap: 56px; }
.foot__nav ul { list-style: none; margin: 0; padding: 0; }
.foot__nav li { margin-bottom: 8px; }
.foot__nav .go { font-size: 14px; color: var(--text); }
.foot__nav .go:hover { color: var(--spark); text-decoration: underline; }
.foot__lbl { display: block; font-weight: 700; margin-bottom: 12px; font-size: 15px; }
.foot__legal { border-top: 1px solid var(--border); }
.rack__body { margin: 0; }

.foot__app { margin-top: 18px; }
.foot__app p { font-size: 13px; color: var(--muted); margin: 0 0 10px; max-width: 320px; }
.foot__app-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.foot__app-btns .store-btn { height: 42px; padding: 0 14px; font-size: 14px; }
@media (max-width: 767px) { .foot__seals { grid-template-columns: repeat(3, auto); } }
@media (max-width: 480px) { .foot__seals { grid-template-columns: repeat(2, auto); } }
