@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --ar-celeste: #74acdf;
  --ar-celeste-dark: #4a8bbf;
  --ar-celeste-deep: #1a3a5c;
  --ar-sun: #f6b40e;
  --ar-sun-dark: #d49a0a;
  --ar-white: #f4f8ff;

  --bg: #06101c;
  --surface: #0c1a2a;
  --surface2: #102035;
  --border: rgba(116, 172, 223, 0.12);
  --border-strong: rgba(116, 172, 223, 0.22);
  --accent: #f6b40e;
  --accent-dim: rgba(246, 180, 14, 0.15);
  --accent2: #74acdf;
  --accent2-dim: rgba(116, 172, 223, 0.12);
  --text: #eef4fc;
  --text-dim: #7a9ec4;
  --text-muted: #3a5a7a;
  --card-bg: #0e1f33;
  --radius: 16px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--ar-celeste);
  color: #06101c;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 12px;
}

.sponsor-note {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

.card-footer--featured {
  flex-wrap: wrap;
}

.card-footer--featured .sponsor-note {
  flex: 1 1 100%;
  margin-top: 4px;
  text-align: center;
}

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

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}

.popup-box {
  background: var(--surface2);
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 24px;
  padding: 52px 44px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

.popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246, 180, 14, 0.1);
  border: 1px solid rgba(246, 180, 14, 0.3);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.popup-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 5vw, 34px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.popup-sub {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
}

.popup-btns {
  display: flex;
  gap: 12px;
}

.popup-btn {
  flex: 1;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    opacity 0.15s;
}

.popup-btn:active {
  transform: scale(0.97);
}

.popup-btn-yes {
  background: var(--accent);
  color: #1a1200;
}

.popup-btn-yes:hover {
  opacity: 0.9;
}

.popup-btn-no {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
}

.popup-btn-no:hover {
  border-color: var(--text-dim);
}

.popup-note {
  margin-top: 20px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(20px, 5vw, 60px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-age {
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid rgba(200, 169, 110, 0.2);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% -10%,
      rgba(200, 169, 110, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 80% 60%,
      rgba(126, 184, 164, 0.05) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 0%,
    transparent 80%
  );
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 169, 110, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.2);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 36px;
  position: relative;
  animation: fadeUp 0.8s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 7vw, 86px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  position: relative;
  animation: fadeUp 0.8s 0.1s ease both;
  max-width: 900px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-dim);
  max-width: 580px;
  font-weight: 300;
  margin-bottom: 52px;
  line-height: 1.8;
  position: relative;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  background: var(--accent);
  color: #1a1200;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(200, 169, 110, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 169, 110, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 16px 32px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 15px;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-disclaimer {
  padding: 20px clamp(16px, 4vw, 32px);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

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

.site-disclaimer p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-dim);
  margin: 0;
}

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

section {
  padding: clamp(36px, 4vw, 56px) clamp(16px, 4vw, 32px);
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-dim);
  font-size: 16px;
  font-weight: 300;
  max-width: 560px;
  line-height: 1.8;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 52px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.how-item {
  background: var(--card-bg);
  padding: 36px 28px;
  position: relative;
  transition: background 0.25s;
}

.how-item:hover {
  background: var(--surface2);
}

.how-num {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: rgba(200, 169, 110, 0.12);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.how-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 169, 110, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.how-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.how-text {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.7;
}

.platforms-header {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}

.platforms-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  gap: 20px;
}

.platform-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 110, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-logo-wrap {
  width: 64px;
  height: 64px;
  background: var(--surface2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  overflow: hidden;
}

.card-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.badge {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-license {
  background: rgba(126, 184, 164, 0.1);
  color: var(--accent2);
  border: 1px solid rgba(126, 184, 164, 0.2);
}

.badge-top {
  background: rgba(200, 169, 110, 0.1);
  color: var(--accent);
  border: 1px solid rgba(200, 169, 110, 0.2);
}

.card-desc {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.meta-item {
  background: var(--surface2);
  border-radius: 10px;
  padding: 12px 14px;
}

.meta-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
}

.meta-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.stars {
  display: flex;
  gap: 3px;
}

.star {
  width: 14px;
  height: 14px;
  background: var(--accent);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.card-footer {
  padding: 0 28px 28px;
  display: flex;
  gap: 10px;
}

.btn-card-primary {
  flex: 1;
  background: var(--accent);
  color: #1a1200;
  padding: 14px 18px;
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  text-align: center;
  transition:
    opacity 0.2s,
    transform 0.15s;
  display: block;
}

.btn-card-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-card-secondary {
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition:
    border-color 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.btn-card-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.btn-card-secondary--review {
  border-color: rgba(116, 172, 223, 0.35);
  color: var(--text);
  background: rgba(116, 172, 223, 0.06);
}

.btn-card-secondary--review:hover {
  border-color: var(--accent2);
  color: var(--accent);
  background: rgba(246, 180, 14, 0.06);
}

.platform-card--featured {
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(14, 31, 51, 0.98) 0%,
    rgba(8, 18, 32, 1) 100%
  );
  box-shadow:
    0 0 0 1px rgba(116, 172, 223, 0.08) inset,
    0 24px 48px rgba(0, 0, 0, 0.35);
}

.platform-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--ar-celeste-dark),
    var(--ar-celeste),
    var(--ar-celeste-dark)
  );
  z-index: 2;
}

.platform-card--featured:hover {
  transform: translateY(-4px);
  border-color: rgba(116, 172, 223, 0.35);
  box-shadow:
    0 0 0 1px rgba(116, 172, 223, 0.12) inset,
    0 28px 56px rgba(0, 0, 0, 0.4);
}

.card-featured-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100%;
}

.card-brand-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 28px 32px;
  background: linear-gradient(
    180deg,
    rgba(116, 172, 223, 0.1) 0%,
    transparent 100%
  );
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.card-editor-pick {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(246, 180, 14, 0.1);
  border: 1px solid rgba(246, 180, 14, 0.25);
  margin-bottom: 24px;
}

.card-editor-pick-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pick-pulse 2s ease-in-out infinite;
}

@keyframes pick-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

.card-logo-wrap--featured {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  background: linear-gradient(145deg, #0a1628 0%, #122540 100%);
  border: 1px solid rgba(246, 180, 14, 0.22);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  margin-bottom: 16px;
}

.card-logo-wrap--featured img {
  padding: 10px;
}

.card-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.card-brand-tagline {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 400;
  margin-bottom: 22px;
  line-height: 1.5;
}

.card-score-ring {
  position: relative;
  width: 108px;
  height: 108px;
  margin-bottom: 10px;
}

.card-score-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.card-score-track {
  fill: none;
  stroke: rgba(116, 172, 223, 0.15);
  stroke-width: 7;
}

.card-score-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 326.73;
  stroke-dashoffset: 13.07;
}

.card-score-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.card-score-value {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.card-score-max {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.card-score-stars {
  justify-content: center;
  margin-bottom: 18px;
}

.star--dim {
  opacity: 0.35;
}

.card-badges--panel {
  justify-content: center;
}

.card-content-panel {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
}

.card-desc--featured {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
  color: var(--text-dim);
}

.card-highlights {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.card-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: rgba(116, 172, 223, 0.06);
  border: 1px solid rgba(116, 172, 223, 0.12);
  transition:
    border-color 0.2s,
    background 0.2s;
}

.card-highlights li:hover {
  border-color: rgba(246, 180, 14, 0.25);
  background: rgba(246, 180, 14, 0.05);
}

.card-highlight-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.card-meta--featured {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.meta-item--featured {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}

.meta-item--featured:hover {
  border-color: var(--border-strong);
}

.meta-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.card-footer--featured {
  padding: 0;
  margin-top: auto;
}

.btn-card-primary--featured {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 14px;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--ar-sun-dark) 100%
  );
  box-shadow: 0 8px 24px rgba(246, 180, 14, 0.25);
}

.btn-card-primary--featured:hover {
  box-shadow: 0 12px 32px rgba(246, 180, 14, 0.35);
}

.btn-arrow {
  font-size: 16px;
  transition: transform 0.2s;
}

.btn-card-primary--featured:hover .btn-arrow {
  transform: translate(2px, -2px);
}

@media (max-width: 768px) {
  .card-featured-layout {
    grid-template-columns: 1fr;
  }

  .card-brand-panel {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 28px 24px 24px;
  }

  .card-content-panel {
    padding: 24px;
  }

  .card-highlights {
    grid-template-columns: 1fr;
  }

  .card-meta--featured {
    grid-template-columns: 1fr;
  }

  .card-footer--featured {
    flex-direction: column;
  }

  .btn-card-secondary {
    white-space: normal;
  }
}

.criteria-wrap {
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.criteria-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.criteria-text {
  padding: clamp(32px, 5vw, 60px);
  border-right: 1px solid var(--border);
}

.criteria-list {
  padding: clamp(32px, 5vw, 60px);
}

.criteria-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
}

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

.criteria-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(200, 169, 110, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-top: 2px;
}

.criteria-name {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.criteria-desc {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(200, 169, 110, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-visual-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.about-visual-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-visual-item:first-child {
  padding-top: 0;
}

.avi-icon {
  width: 46px;
  height: 46px;
  background: rgba(200, 169, 110, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.avi-text {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 300;
}

.avi-text strong {
  color: var(--text);
  font-weight: 500;
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.faq-list {
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-q {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  gap: 20px;
  user-select: none;
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.2s;
  font-size: 14px;
  color: var(--text-dim);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(200, 169, 110, 0.1);
  border-color: rgba(200, 169, 110, 0.3);
  color: var(--accent);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.8;
}

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

.faq-a-inner {
  padding-bottom: 22px;
}

.cta-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% 50%,
    rgba(116, 172, 223, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-banner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  color: var(--text-dim);
  font-size: 16px;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.8;
  position: relative;
}

footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 60px) 32px;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.8;
  max-width: 300px;
  margin-top: 12px;
}

.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-legal {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-legal strong {
  color: var(--accent);
  font-weight: 600;
}

.footer-legal p {
  margin: 0;
}

.footer-badge {
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(200, 169, 110, 0.07);
  border: 1px solid rgba(200, 169, 110, 0.15);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.responsible-banner {
  background: rgba(126, 184, 164, 0.04);
  border: 1px solid rgba(126, 184, 164, 0.1);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.responsible-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.responsible-text {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.7;
}

.responsible-text strong {
  color: var(--accent2);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .criteria-inner {
    grid-template-columns: 1fr;
  }

  .criteria-text {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dim);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-burger {
    display: flex;
  }
}

.page-review .review-hero {
  min-height: auto;
  padding: clamp(100px, 12vw, 140px) clamp(20px, 5vw, 60px)
    clamp(48px, 6vw, 72px);
  text-align: left;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.page-review .review-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 50% at 20% 0%,
      rgba(116, 172, 223, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 90% 80%,
      rgba(246, 180, 14, 0.08) 0%,
      transparent 55%
    );
  pointer-events: none;
}

.review-hero-inner {
  position: relative;
  z-index: 1;
}

.review-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 28px;
  color: var(--text-muted);
}

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

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

.review-breadcrumb span:last-child {
  color: var(--text);
}

.review-hero-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 28px;
  border: 1px solid rgba(246, 180, 14, 0.25);
  background: linear-gradient(
    145deg,
    rgba(14, 31, 51, 0.95) 0%,
    rgba(8, 18, 32, 0.98) 100%
  );
  box-shadow:
    0 0 0 1px rgba(116, 172, 223, 0.08) inset,
    0 24px 64px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.review-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--ar-celeste),
    var(--accent),
    var(--ar-celeste)
  );
}

.review-hero-brand {
  display: flex;
  gap: clamp(20px, 3vw, 32px);
  align-items: flex-start;
}

.review-hero-logo {
  flex-shrink: 0;
}

.review-hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 12px 0 14px;
  line-height: 1.05;
}

.review-hero-lead {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 18px;
}

.review-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 12px;
  color: var(--text-muted);
}

.review-hero-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 16px;
}

.review-hero-ring {
  width: 120px;
  height: 120px;
}

.review-hero-score-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 8px 0 6px;
}

.review-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.nav-links a.nav-active {
  color: var(--accent);
}

.review-main {
  padding: 0 clamp(16px, 4vw, 32px) clamp(36px, 4vw, 56px);
}

.review-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.review-sidebar {
  position: sticky;
  top: 88px;
}

.review-sidebar-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.review-sidebar-title {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 20px;
}

.review-facts {
  margin: 0 0 24px;
}

.review-facts > div {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.review-facts > div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.review-facts dt {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.review-facts dd {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}

.review-sidebar-cta {
  width: 100%;
  margin-bottom: 12px;
}

.review-sidebar-note {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

.review-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.review-section:first-child {
  padding-top: 0;
}

.review-section:last-of-type {
  border-bottom: none;
}

.review-section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.15;
}

.review-p {
  font-size: 15px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 16px;
}

.review-p:last-child {
  margin-bottom: 0;
}

.review-p--short {
  margin-bottom: 24px;
}

.review-p a {
  color: var(--accent2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-p a:hover {
  color: var(--accent);
}

.review-bars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.review-bar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text);
}

.review-bar-head strong {
  font-family: 'Syne', sans-serif;
  color: var(--accent);
  font-size: 15px;
}

.review-bar-track {
  height: 8px;
  background: var(--surface2);
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.review-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--ar-celeste), var(--accent));
  transition: width 1s ease;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pros-box,
.cons-box {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.pros-box {
  background: rgba(116, 172, 223, 0.06);
  border-color: rgba(116, 172, 223, 0.2);
}

.cons-box {
  background: rgba(246, 180, 14, 0.04);
  border-color: rgba(246, 180, 14, 0.15);
}

.pros-box h3,
.cons-box h3 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.pros-box ul,
.cons-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pros-box li,
.cons-box li {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.65;
  padding-left: 18px;
  position: relative;
}

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

.cons-box li::before {
  content: '·';
  position: absolute;
  left: 2px;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.review-callout {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(246, 180, 14, 0.06);
  border-left: 3px solid var(--accent);
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

.review-callout strong {
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.review-verdict {
  position: relative;
  margin-top: 16px;
  padding: clamp(32px, 5vw, 48px) !important;
  border-radius: 24px;
  border: 1px solid var(--border-strong) !important;
  background: var(--surface);
  overflow: hidden;
}

.review-verdict .section-label,
.review-verdict .review-section-title,
.review-verdict .review-p {
  position: relative;
  z-index: 1;
}

.review-verdict-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.review-verdict-cta .btn-secondary {
  display: inline-flex;
  align-items: center;
}

.review-disclaimer {
  padding: 28px clamp(16px, 4vw, 32px);
  background: var(--surface2);
  border-top: 1px solid var(--border);
}

.review-disclaimer p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 900px;
  margin: 0 auto 12px;
  text-align: center;
}

.review-disclaimer p:last-child {
  margin-bottom: 0;
}

.review-disclaimer strong {
  color: var(--text);
}

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

  .review-hero-brand {
    flex-direction: column;
    align-items: center;
  }

  .review-hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .review-hero-meta {
    justify-content: center;
  }

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

  .review-sidebar {
    position: static;
  }

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

@media (max-width: 768px) {
  .review-hero-cta,
  .review-verdict-cta {
    flex-direction: column;
  }

  .review-hero-cta .btn-primary,
  .review-hero-cta .btn-secondary,
  .review-verdict-cta .btn-card-primary,
  .review-verdict-cta .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.page-legal .legal-hero {
  min-height: auto;
  padding: clamp(100px, 12vw, 130px) clamp(20px, 5vw, 60px) clamp(40px, 5vw, 56px);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-legal .legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(116, 172, 223, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 100%, rgba(246, 180, 14, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

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

.legal-hero-meta {
  font-size: 13px;
  color: var(--text-muted);
}

.legal-main {
  padding: 0 clamp(16px, 4vw, 32px) clamp(36px, 4vw, 56px);
}

.legal-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.legal-doc {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
}

.legal-intro {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.legal-doc section {
  margin-bottom: 32px;
  padding: 0;
}

.legal-doc section:last-child {
  margin-bottom: 0;
}

.legal-doc h2 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.legal-doc p {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 12px;
}

.legal-doc ul {
  margin: 12px 0 0 18px;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
}

.legal-doc li {
  margin-bottom: 8px;
}

.legal-doc a {
  color: var(--accent2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-doc a:hover {
  color: var(--accent);
}

.legal-doc strong {
  color: var(--text);
  font-weight: 500;
}

.legal-doc code {
  font-size: 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 6px;
  color: var(--accent2);
}

.legal-aside {
  position: sticky;
  top: 88px;
}

.legal-aside-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}

.legal-aside-back {
  display: block;
  text-align: center;
  width: 100%;
  font-size: 13px;
  padding: 12px 16px;
}

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

  .legal-aside {
    position: static;
    order: -1;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}
