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

:root {
  --ink: #0a0a0f;
  --ink2: #1a1a28;
  --gold: #4d7c8a;
  --gold2: #6b9aaa;
  --gold-pale: #edf3f5;
  --cream: #f7f4ee;
  --cream2: #ede8dc;
  --muted: #6b6b80;
  --green: #2d6a4f;
  --green-bg: #e8f5ee;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

#popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.88);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.popup-card {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  border: 2px solid var(--gold);
  position: relative;
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-18 {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.popup-card h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0.5rem 0 0.75rem;
  color: var(--ink);
}

.popup-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.popup-publisher {
  font-size: 0.78rem !important;
  margin-bottom: 2rem !important;
  color: var(--ink) !important;
}

.popup-publisher strong {
  color: var(--gold);
}

.footer-publisher {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.35rem;
}

.popup-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.btn-oui {
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 0.8rem 2rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-oui:hover {
  background: var(--gold);
  color: var(--ink);
}

.btn-non {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--cream2);
  border-radius: 10px;
  padding: 0.8rem 1.5rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-non:hover {
  border-color: var(--muted);
}

header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}

.hdr-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
}

.logo-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-name span {
  color: var(--gold);
}

.hdr-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.hdr-publisher {
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  padding-left: 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.hdr-publisher strong {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

nav a:hover {
  color: var(--gold);
  background: rgba(212, 168, 67, 0.1);
}

.hdr-cta {
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: 9px;
  transition: all 0.2s;
  white-space: nowrap;
}

.hdr-cta:hover {
  background: var(--gold2);
}

.burger {
  display: none;
  position: relative;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.burger span {
  display: block;
  position: absolute;
  left: 4px;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
  transform-origin: center;
}

.burger span:nth-child(1) {
  top: 3px;
}

.burger span:nth-child(2) {
  top: 10px;
}

.burger span:nth-child(3) {
  top: 17px;
}

.burger.is-active span:nth-child(1),
header.menu-open .burger span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.burger.is-active span:nth-child(2),
header.menu-open .burger span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3),
header.menu-open .burger span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

.hero {
  background: var(--ink);
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  padding: 7rem 3rem 5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.25);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
}

.hero h1 .gold {
  color: var(--gold);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
}

.btn-hero {
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem 1.8rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s;
}

.btn-hero:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

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

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.1rem;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 3rem;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 168, 67, 0.06) 0%,
    transparent 60%
  );
  border-left: 1px solid rgba(212, 168, 67, 0.1);
}

.floaty-cards {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 420px;
}

.f-card {
  position: absolute;
  background: var(--ink2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
}

.f-card-main {
  top: 30px;
  left: 0;
  right: 30px;
  border: 1px solid rgba(212, 168, 67, 0.25);
  animation: floatA 6s ease-in-out infinite;
}

.f-card-2 {
  bottom: 20px;
  right: 0;
  width: 72%;
  animation: floatB 7s ease-in-out infinite;
}

.f-card-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58%;
  opacity: 0.6;
  animation: floatC 8s ease-in-out infinite;
}

@keyframes floatA {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatB {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(10px) rotate(-2deg);
  }
}

@keyframes floatC {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(3deg);
  }

  50% {
    transform: translate(-50%, -55%) rotate(3deg);
  }
}

.f-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.f-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.f-score {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Syne', sans-serif;
}

.f-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  margin: 0.35rem 0;
}

.f-bar-fill {
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.f-tag {
  display: inline-block;
  background: rgba(45, 106, 79, 0.3);
  color: #7ecfa8;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 5px;
  margin-top: 0.5rem;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.gold-orb {
  display: none;
}

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--cream2);
  padding: 1rem 2rem;
  overflow: hidden;
}

.trust-scroll {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: scrollX 30s linear infinite;
  width: max-content;
}

@keyframes scrollX {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.s-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.s-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.s-sub {
  color: var(--muted);
  max-width: 560px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.platforms-section {
  background: var(--cream);
  padding: 6rem 2rem;
}

.platforms-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pcard {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--cream2);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0;
  overflow: hidden;
  transition: all 0.25s;
  position: relative;
}

.pcard:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.12);
}

.pcard-accent {
  width: 6px;
  background: var(--cream2);
  transition: background 0.25s;
  flex-shrink: 0;
}

.pcard:hover .pcard-accent {
  background: var(--gold);
}

.pcard-body {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 1.5rem;
  padding: 1.75rem;
  align-items: center;
}

.pcard-brand-col {
  text-align: center;
}

.pcard-brand-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.pcard-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

.pcard-score {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  margin-top: 0.2rem;
}

.pcard-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 560px;
}

.pcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.ptag {
  background: var(--green-bg);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
}

.ptag-pay {
  background: var(--cream);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
  border: 1px solid var(--cream2);
}

.pcard-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: stretch;
  min-width: 160px;
  flex-shrink: 0;
  padding: 1.75rem 1.75rem 1.75rem 0;
}

.btn-visit {
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  text-align: center;
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s;
  display: block;
}

.btn-visit:hover {
  background: var(--gold);
  color: var(--ink);
}

.btn-more {
  background: transparent;
  color: var(--muted);
  text-decoration: none;
  text-align: center;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  border: 1.5px solid var(--cream2);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s;
  display: block;
}

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

.why-section {
  background: var(--ink);
  padding: 6rem 2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.25s;
}

.why-card:hover {
  background: rgba(212, 168, 67, 0.06);
  border-color: rgba(212, 168, 67, 0.2);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 168, 67, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.why-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.855rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

.cmp-section {
  background: var(--white);
  padding: 6rem 2rem;
}

.table-outer {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.855rem;
  min-width: 680px;
}

thead tr {
  background: var(--ink);
}

thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

thead th:first-child {
  color: var(--white);
}

tbody tr {
  border-bottom: 1px solid var(--cream2);
  transition: background 0.15s;
}

tbody tr:last-child {
  border: none;
}

tbody tr:hover {
  background: var(--cream);
}

tbody td {
  padding: 0.85rem 1.25rem;
  color: var(--muted);
}

tbody td:first-child {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.ck {
  color: var(--green);
  font-weight: 700;
}

.cx {
  color: var(--cream2);
  font-weight: 700;
}

.badge-score {
  display: inline-block;
  background: var(--ink);
  color: var(--gold);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
}

.reviews-section {
  background: var(--cream);
  padding: 6rem 2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.rcard {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1.5px solid var(--cream2);
  transition: all 0.25s;
}

.rcard:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.1);
}

.rcard-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.rcard-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.rcard-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}

.rcard-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.rcard-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
}

.rcard-text {
  font-size: 0.855rem;
  color: var(--muted);
  line-height: 1.65;
}

.rcard-foot {
  font-size: 0.75rem;
  color: var(--muted);
  border-top: 1px solid var(--cream2);
  padding-top: 0.75rem;
  margin-top: 1rem;
}

.rcard-foot strong {
  color: var(--ink);
}

.faq-section {
  background: var(--white);
  padding: 6rem 2rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  border: 1.5px solid var(--cream2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--gold);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  gap: 1rem;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-q.active {
  color: var(--gold);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  transition:
    transform 0.3s,
    background 0.2s;
  color: var(--muted);
}

.faq-q.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--ink);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a.open {
  max-height: 350px;
}

.faq-a-inner {
  padding: 0.25rem 1.25rem 1.25rem;
  font-size: 0.855rem;
  color: var(--muted);
  line-height: 1.7;
}

.reg-section {
  background: var(--cream);
  padding: 4rem 2rem;
}

.reg-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2rem;
}

.reg-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--ink);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s;
}

.reg-link:hover {
  background: var(--ink2);
  border-color: rgba(212, 168, 67, 0.45);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.reg-link .pcard-logo {
  width: auto;
  max-width: 140px;
  max-height: 44px;
  height: auto;
  object-fit: contain;
  display: block;
}

.resp-section {
  padding: 5rem 2rem;
}

.resp-block {
  background: var(--ink);
  border-radius: 24px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.resp-block::before {
  content: '18+';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Syne', sans-serif;
  font-size: 14rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.resp-block h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.resp-block p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 520px;
}

.resp-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.resp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  transition: all 0.2s;
}

.resp-link:hover {
  background: rgba(212, 168, 67, 0.15);
  border-color: rgba(212, 168, 67, 0.3);
  color: var(--gold);
}

.resp-18 {
  font-family: 'Syne', sans-serif;
  font-size: 6rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  user-select: none;
}

footer {
  background: var(--ink2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3.5rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-disclaimer {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(212, 168, 67, 0.1);
}

.footer-disclaimer strong {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer-disclaimer p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1.5rem;
}

.footer-brand .logo-name {
  font-size: 1rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  line-height: 1.65;
  margin-top: 0.75rem;
  max-width: 260px;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.8rem;
  margin-bottom: 0.45rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  line-height: 1.8;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--gold);
}

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

  .hero-right {
    display: none;
  }

  .hero-left {
    padding: 5rem 2rem 4rem;
  }

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

  .faq-layout {
    grid-template-columns: 1fr;
  }

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

  .resp-block {
    grid-template-columns: 1fr;
  }

  .resp-18 {
    display: none;
  }
}

@media (max-width: 720px) {
  #main-nav {
    display: none;
  }

  .hdr-cta {
    display: none;
  }

  .burger {
    display: flex;
    position: relative;
    z-index: 10002;
  }

  header.menu-open {
    z-index: 10001;
    backdrop-filter: none;
  }

  .burger.is-portaled-burger,
  header.menu-open .burger,
  .burger.is-active,
  .burger[aria-expanded='true'] {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 0.85rem);
    right: 1.25rem;
    left: auto;
    z-index: 10003;
  }

  .burger.is-active span,
  .burger.is-portaled-burger span {
    background: var(--gold);
  }

  .burger.is-active span:nth-child(1),
  .burger[aria-expanded='true'] span:nth-child(1),
  header.menu-open .burger span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
  }

  .burger.is-active span:nth-child(2),
  .burger[aria-expanded='true'] span:nth-child(2),
  header.menu-open .burger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .burger.is-active span:nth-child(3),
  .burger[aria-expanded='true'] span:nth-child(3),
  header.menu-open .burger span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
  }

  .hdr-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    position: relative;
    z-index: 10002;
  }

  .hdr-publisher {
    border-left: none;
    padding-left: calc(38px + 0.75rem);
    font-size: 0.6rem;
    white-space: normal;
  }

  .mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: var(--ink);
    z-index: 9999;
  }

  .mobile-nav-backdrop.is-visible {
    display: block;
  }

  #main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    max-width: 100vw;
    margin: 0;
    padding: calc(env(safe-area-inset-top, 0px) + 5rem) 1.5rem 2rem;
    background: var(--ink);
    z-index: 10000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.15rem;
    box-sizing: border-box;
  }

  #main-nav.open a {
    display: block;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.92);
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
  }

  #main-nav.open a:hover,
  #main-nav.open a:focus {
    color: var(--white);
    background: rgba(77, 124, 138, 0.2);
  }

  body.nav-lock {
    overflow: hidden;
  }

  .pcard-body {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pcard-actions {
    flex-direction: row;
    padding: 0 1.25rem 1.25rem;
  }

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

  .section {
    padding: 4rem 1.25rem;
  }

  .platforms-section {
    padding: 4rem 1.25rem;
  }

  .resp-block {
    padding: 2rem 1.5rem;
  }

  .cmp-section {
    padding: 4rem 1.25rem;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    gap: 1.25rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.vis {
  opacity: 1;
  transform: none;
}

.pcard-logo {
  width: 150px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
}

.trust-strip {
  background: var(--ink2);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.55rem 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(212, 168, 67, 0.25);
}

.trust-strip a {
  color: var(--gold2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.trust-strip a:hover {
  color: var(--white);
}

.trust-strip strong {
  color: var(--gold);
}

.site-disclaimer {
  background: var(--gold-pale);
  border-bottom: 1px solid var(--cream2);
  padding: 0.85rem 1.5rem;
}

.site-disclaimer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-disclaimer p {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--ink2);
  margin: 0;
}

.site-disclaimer strong {
  color: var(--ink);
  font-weight: 600;
}

.footer-disclaimer-list {
  margin: 0.65rem 0 0;
  padding-left: 1.15rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

.footer-disclaimer-list li {
  margin-bottom: 0.35rem;
}

.editorial-trust {
  background: var(--white);
  border-top: 1px solid var(--cream2);
}

.editorial-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.editorial-trust-grid article {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--cream2);
}

.editorial-trust-grid h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.editorial-trust-grid p {
  font-size: 0.9rem;
  color: var(--ink2);
}

.editorial-trust-grid a {
  color: var(--green);
  font-weight: 500;
}

.editorial-trust-more {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  text-align: center;
  color: var(--muted);
}

.editorial-trust-more a {
  color: var(--green);
  font-weight: 500;
}

.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.page-hero {
  background: var(--ink);
  padding: 3.5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero .bg-grid,
.page-hero .gold-orb {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero .gold-orb {
  width: 420px;
  height: 420px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.page-hero-logo {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(212, 168, 67, 0.2);
}

.page-hero-logo .pcard-logo {
  width: 140px;
  display: block;
}

.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.page-hero-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.page-hero-score {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  text-align: center;
}

.page-hero-score span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.page-hero-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.page-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 180px;
}

.review-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.review-content section {
  margin-bottom: 2.75rem;
}

.review-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--cream2);
}

.review-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.review-content ul {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0 0 1rem 1.25rem;
}

.review-content li {
  margin-bottom: 0.4rem;
}

.review-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.review-fact {
  background: var(--white);
  border: 1.5px solid var(--cream2);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}

.review-fact strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.review-fact span {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.pros-box,
.cons-box {
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
}

.pros-box {
  background: var(--green-bg);
  border: 1.5px solid rgba(45, 106, 79, 0.15);
}

.cons-box {
  background: var(--gold-pale);
  border: 1.5px solid rgba(212, 168, 67, 0.25);
}

.pros-box h3,
.cons-box h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pros-box h3 {
  color: var(--green);
}

.cons-box h3 {
  color: #8a6d1f;
}

.pros-box ul,
.cons-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pros-box li,
.cons-box li {
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: 0.45rem;
  padding-left: 1.1rem;
  position: relative;
}

.pros-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.cons-box li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.criteria-block {
  background: var(--white);
  border: 1.5px solid var(--cream2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.criteria-row {
  margin-bottom: 1rem;
}

.criteria-row:last-child {
  margin-bottom: 0;
}

.criteria-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.criteria-bar {
  height: 6px;
  background: var(--cream2);
  border-radius: 3px;
  overflow: hidden;
}

.criteria-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 3px;
}

.review-sidebar {
  position: sticky;
  top: 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--cream2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.sidebar-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--ink);
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.sidebar-card .btn-visit,
.sidebar-card .btn-more {
  width: 100%;
  margin-top: 0.5rem;
}

.sidebar-links a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--cream2);
  transition: color 0.2s;
}

.sidebar-links a:hover {
  color: var(--gold);
}

.sidebar-links a:last-child {
  border: none;
}

.review-verdict {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  margin-top: 1rem;
}

.review-verdict h2 {
  font-family: 'Syne', sans-serif;
  color: var(--white);
  font-size: 1.35rem;
  border: none;
  padding: 0;
  margin-bottom: 0.75rem;
}

.review-verdict p {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
}

.review-other {
  background: var(--cream);
  padding: 4rem 2rem;
  border-top: 1px solid var(--cream2);
}

.review-other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.review-other-card {
  background: var(--white);
  border: 1.5px solid var(--cream2);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s;
}

.review-other-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.12);
}

.review-other-card strong {
  font-family: 'Syne', sans-serif;
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.review-other-card span {
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-hero-logo {
    justify-self: center;
  }

  .page-hero-meta,
  .page-hero-actions {
    justify-content: center;
    align-items: center;
  }

  .page-hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .review-layout {
    grid-template-columns: 1fr;
  }

  .review-sidebar {
    position: static;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .review-facts {
    grid-template-columns: 1fr;
  }
}

.page-hero--compact .page-hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 720px;
}

.page-hero--compact h1 {
  margin-bottom: 0.5rem;
}

.page-hero--compact .page-hero-subtitle {
  max-width: none;
}

.legal-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.legal-wrap .legal-updated {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--cream2);
}

.legal-wrap section {
  margin-bottom: 2.5rem;
}

.legal-wrap h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--cream2);
}

.legal-wrap h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.25rem 0 0.6rem;
}

.legal-wrap p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-wrap ul,
.legal-wrap ol {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0 0 1rem 1.35rem;
}

.legal-wrap li {
  margin-bottom: 0.45rem;
}

.legal-wrap a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.legal-wrap a:hover {
  color: var(--gold);
}

.legal-contact-card {
  background: var(--white);
  border: 1.5px solid var(--cream2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 1.5rem 0;
}

.legal-contact-card p {
  margin-bottom: 0.5rem;
}

.legal-contact-card strong {
  color: var(--ink);
  font-family: 'Syne', sans-serif;
}

.legal-nav-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.legal-nav-inline a {
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--cream2);
  color: var(--muted);
}

.legal-nav-inline a:hover {
  border-color: var(--gold);
  color: var(--ink);
}

.legal-highlight {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.25rem 0;
}

.legal-highlight p {
  margin-bottom: 0;
}
