:root {
  --bg: #061a3a;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.09);
  --text: #eaf2ff;
  --muted: rgba(234, 242, 255, 0.72);
  --brand: #0b2e6b;
  --brand2: #083a86;
  --accent: #16e05a;
  --accent2: #10b948;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --ring: 0 0 0 4px rgba(22, 224, 90, 0.25);

  --container: 1120px;
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1000px 400px at 10% 0%, rgba(22, 224, 90, 0.16), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(45, 124, 255, 0.18), transparent 60%),
    linear-gradient(180deg, #04132d 0%, #061a3a 40%, #04132d 100%);
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 1000;
}
.skip-link:focus {
  left: 12px;
  outline: none;
  box-shadow: var(--ring);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(
    180deg,
    rgba(6, 26, 58, 0.9) 0%,
    rgba(6, 26, 58, 0.65) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__logo {
  display: block;
  height: 36px;
  width: auto;
}

/* Nav */
.nav {
  position: relative;
}
.nav__checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nav__toggle {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  user-select: none;
}
.nav__toggle::-webkit-details-marker {
  display: none;
}
.nav__toggle:focus {
  outline: none;
  box-shadow: var(--ring);
}
.nav__checkbox:focus + .nav__toggle {
  outline: none;
  box-shadow: var(--ring);
}
.nav__toggleLines {
  width: 18px;
  height: 12px;
  position: relative;
  display: inline-block;
}
.nav__toggleLines::before,
.nav__toggleLines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 99px;
  background: rgba(234, 242, 255, 0.92);
}
.nav__toggleLines::before {
  top: 1px;
  box-shadow: 0 4px 0 rgba(234, 242, 255, 0.92);
}
.nav__toggleLines::after {
  bottom: 1px;
}
.nav__toggleText {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.nav__panel {
  margin-top: 10px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 26, 58, 0.96);
  box-shadow: var(--shadow);
  display: none;
  gap: 6px;
  min-width: 220px;
}

.nav__checkbox:checked ~ .nav__panel {
  display: grid;
}

.nav__link {
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 700;
  color: rgba(234, 242, 255, 0.92);
  border: 1px solid transparent;
}
.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
}
.nav__link:focus {
  outline: none;
  box-shadow: var(--ring);
}

/* On desktop show nav inline */
@media (min-width: 920px) {
  .nav__toggle {
    display: none;
  }
  .nav__panel {
    margin-top: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    gap: 4px;
    min-width: unset;
  }
  .nav__link {
    padding: 10px 12px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 11px 14px;
  font-weight: 900;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease,
    border-color 120ms ease;
  will-change: transform;
}
.btn:focus {
  outline: none;
  box-shadow: var(--ring);
}
.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  color: #031a0c;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent2) 100%);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 30px rgba(22, 224, 90, 0.22);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(22, 224, 90, 0.28);
}

.btn--ghost {
  color: rgba(234, 242, 255, 0.95);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.10);
}

.btn--lg {
  padding: 13px 16px;
  border-radius: 16px;
  font-size: 15px;
}
.btn--block {
  width: 100%;
}

.header__cta {
  display: none;
}
@media (min-width: 920px) {
  .header__cta {
    display: block;
  }
}

/* Hero */
.hero {
  padding: 34px 0 10px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}
@media (min-width: 920px) {
  .hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 13px;
}
.badge img {
  display: inline-block;
  vertical-align: middle;
  opacity: 0.9;
}
  letter-spacing: 0.3px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(234, 242, 255, 0.92);
}

.hero__title {
  margin: 12px 0 10px;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}

.hero__subtitle {
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--muted);
  max-width: 60ch;
}

.hero__meta {
  margin: 0;
  padding-left: 18px;
  color: rgba(234, 242, 255, 0.78);
  font-weight: 700;
}
.hero__meta li {
  margin: 6px 0;
}

.hero__card {
  min-height: 100%;
}
.heroBanner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.heroBanner__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  object-fit: contain;
  display: block;
  max-width: 100%;
}
@media (min-width: 920px) {
  .heroBanner__image {
    max-height: 500px;
    object-fit: cover;
  }
}
@media (max-width: 919px) {
  .heroBanner__image {
    max-height: 350px;
    object-fit: contain;
  }
}

.heroCtaBanner {
  border-radius: var(--radius);
  border: 1px solid rgba(22, 224, 90, 0.24);
  background:
    radial-gradient(500px 160px at 20% 0%, rgba(22, 224, 90, 0.26), transparent 60%),
    linear-gradient(180deg, rgba(22, 224, 90, 0.14), rgba(255, 255, 255, 0.06));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  padding: 12px;
  margin-bottom: 12px;
}
.heroCtaBanner__banner {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 4px);
  margin-bottom: 12px;
  display: block;
  max-width: 100%;
}
.heroCtaBanner__stores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px 0 0;
  flex-wrap: wrap;
}
.heroCtaBanner__storeBadge {
  height: 40px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: block;
}
.heroCtaBanner__storeBadge:hover {
  opacity: 1;
  transform: scale(1.05);
}
.heroCtaBanner__note {
  margin: 10px 0 0;
  color: rgba(234, 242, 255, 0.78);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.35;
}


/* Content article */
.content {
  padding: 14px 0 10px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 12px;
  color: rgba(234, 242, 255, 0.72);
  font-weight: 800;
  font-size: 13px;
}
.breadcrumbs a {
  color: rgba(234, 242, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.breadcrumbs a:hover {
  border-bottom-color: rgba(22, 224, 90, 0.6);
}
.breadcrumbs__sep {
  opacity: 0.7;
}
.updatedLine {
  margin: 0 0 12px;
  color: rgba(234, 242, 255, 0.72);
  font-weight: 850;
  font-size: 13px;
}
.updatedLine strong {
  color: rgba(234, 242, 255, 0.92);
}
.quickAnswer {
  border-radius: 14px;
  border: 1px solid rgba(22, 224, 90, 0.22);
  background: rgba(22, 224, 90, 0.10);
  padding: 12px 12px;
  margin: 10px 0 14px;
}
.quickAnswer p {
  margin: 0;
  color: rgba(234, 242, 255, 0.92);
  font-weight: 800;
  max-width: 90ch;
}
.quickAnswer a {
  color: rgba(234, 242, 255, 0.95);
  border-bottom: 1px solid rgba(234, 242, 255, 0.25);
}
.quickAnswer a:hover {
  border-bottom-color: rgba(234, 242, 255, 0.55);
}
.contentArticle {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  padding: 18px;
}
@media (min-width: 720px) {
  .contentArticle {
    padding: 22px;
  }
}
.contentArticle__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.contentArticle h2 {
  margin: 18px 0 10px;
  font-size: 20px;
  letter-spacing: -0.2px;
}
.contentArticle h3 {
  margin: 14px 0 8px;
  font-size: 16px;
  letter-spacing: -0.1px;
  color: rgba(234, 242, 255, 0.92);
}
.contentArticle p,
.contentArticle li {
  color: rgba(234, 242, 255, 0.82);
  font-weight: 650;
}
.contentArticle p {
  margin: 0 0 12px;
  max-width: 78ch;
}
.contentArticle ol {
  margin: 0 0 12px;
  padding-left: 18px;
}
.contentArticle li {
  margin: 8px 0;
  max-width: 78ch;
}
.contentArticle__disclaimer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(234, 242, 255, 0.68);
  font-weight: 700;
  font-size: 13px;
  max-width: 90ch;
}

/* Sections + Cards */
.section {
  padding: 18px 0 56px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1080px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
.card__head {
  padding: 16px 16px 10px;
}
.card__title {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.card__desc {
  margin: 0;
  color: rgba(234, 242, 255, 0.72);
  font-weight: 700;
  font-size: 13px;
}
.card__cta {
  padding: 0 16px 14px;
}
.card__body {
  padding: 0 16px 16px;
}
.muted {
  margin: 0;
  color: rgba(234, 242, 255, 0.70);
  font-weight: 700;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  padding: 18px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__rightLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.footer__left {
  min-width: 0;
}
.footer__logo {
  display: block;
  height: 28px;
  width: auto;
  opacity: 0.95;
}
.footer__muted {
  margin: 10px 0 0;
  color: rgba(234, 242, 255, 0.70);
  font-weight: 700;
  font-size: 13px;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
}
.footer__navLink {
  font-weight: 900;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(234, 242, 255, 0.92);
}
.footer__navLink:hover {
  background: rgba(255, 255, 255, 0.10);
}
.footer__navLink:focus {
  outline: none;
  box-shadow: var(--ring);
}
.footer__link {
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.footer__link:hover {
  background: rgba(255, 255, 255, 0.10);
}
.footer__link:focus {
  outline: none;
  box-shadow: var(--ring);
}

/* Reviews */
.reviewsGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 12px 0 18px;
}
@media (min-width: 820px) {
  .reviewsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.reviewCard {
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.reviewCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0.3));
  opacity: 0.6;
}
.reviewCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  border-color: rgba(255, 255, 255, 0.2);
}
.reviewCard__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.reviewCard__who {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}
.reviewCard__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.reviewCard__info {
  flex: 1;
  min-width: 0;
}
.reviewCard__name {
  font-weight: 1000;
  letter-spacing: -0.2px;
  font-size: 16px;
  color: rgba(234, 242, 255, 0.95);
}
.reviewCard__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(234, 242, 255, 0.92);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.reviewCard:hover .tag {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}
.reviewCard__rating {
  display: grid;
  justify-items: end;
  gap: 6px;
  min-width: 70px;
  flex-shrink: 0;
}
.stars {
  --rating: 4.5;
  --percent: calc(var(--rating) / 5 * 100%);
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
  background: linear-gradient(90deg, var(--accent) var(--percent), rgba(234, 242, 255, 0.25) var(--percent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}
.stars::before {
  content: "★★★★★";
}
.reviewCard__score {
  font-weight: 1000;
  font-size: 14px;
  color: var(--accent);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.reviewCard__text {
  margin: 0 0 14px;
  color: rgba(234, 242, 255, 0.88);
  font-weight: 650;
  line-height: 1.6;
  font-size: 14px;
}
.reviewCard__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 520px) {
  .reviewCard__cols {
    grid-template-columns: 1fr 1fr;
  }
}
.reviewCard__label {
  font-weight: 1000;
  font-size: 12px;
  letter-spacing: 0.2px;
  color: rgba(234, 242, 255, 0.85);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 11px;
}
.reviewCard__list {
  margin: 0;
  padding-left: 18px;
  color: rgba(234, 242, 255, 0.82);
  font-weight: 650;
  font-size: 13px;
  line-height: 1.5;
}
.reviewCard__list li {
  margin: 5px 0;
  position: relative;
}
.reviewCard__list li::marker {
  color: var(--accent);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn {
    transition: none;
  }
}


