:root {
  --bg: #050505;
  --bg-soft: #0b0b0d;
  --panel: rgba(16, 16, 18, 0.92);
  --panel-2: rgba(20, 20, 23, 0.95);
  --gold: #f3c84d;
  --gold-2: #ffdd73;
  --gold-dim: #b98a17;
  --red: #b40e19;
  --red-2: #7b0c13;
  --text: #f2f3f6;
  --muted: #b8bcc8;
  --line: rgba(243, 200, 77, 0.2);
  --line-strong: rgba(243, 200, 77, 0.45);
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
  --radius: 18px;
  --container: 1180px;
  --header-h: 74px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(243, 200, 77, 0.12), transparent 35%),
    radial-gradient(circle at 85% 8%, rgba(180, 14, 25, 0.15), transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(243, 200, 77, 0.06), transparent 40%),
    #050505;
  line-height: 1.55;
  min-height: 100vh;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background-image:
    radial-gradient(circle, rgba(255, 221, 115, 0.25) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(243, 200, 77, 0.18) 0 1px, transparent 1.5px);
  background-size: 120px 120px, 180px 180px;
  background-position: 0 0, 60px 40px;
  opacity: 0.18;
  animation: drift 24s linear infinite;
}

body::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%),
    radial-gradient(circle at 20% 40%, rgba(255, 214, 107, 0.09), transparent 45%),
    radial-gradient(circle at 80% 60%, rgba(168, 0, 0, 0.07), transparent 45%);
  z-index: -1;
}

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.age-bar {
  position: relative;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  color: #fff5ce;
  background: linear-gradient(90deg, rgba(123, 12, 19, 0.92), rgba(50, 8, 8, 0.95) 35%, rgba(123, 12, 19, 0.92));
  border-bottom: 1px solid rgba(243, 200, 77, 0.25);
  backdrop-filter: blur(10px);
}

.age-bar a {
  color: var(--gold-2);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.age-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  padding-inline: 0.55rem;
  border-radius: 999px;
  font-weight: 800;
  color: #130d00;
  background: linear-gradient(180deg, #ffe394, #e3af2f);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25) inset, 0 0 18px rgba(243, 200, 77, 0.35);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 6, 7, 0.82);
  border-bottom: 1px solid rgba(243, 200, 77, 0.12);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: "Cinzel", serif;
  font-weight: 700;
  color: #130d00;
  background: radial-gradient(circle at 30% 25%, #fff0b6, transparent 45%), linear-gradient(160deg, #ffd66b, #cf8b15 80%);
  box-shadow: 0 0 0 1px rgba(255, 216, 107, 0.35), 0 10px 30px rgba(243, 200, 77, 0.18);
}

.brand-logo {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  border-radius: 12px;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.73rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(243, 200, 77, 0.08);
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.76rem;
}

.hero {
  position: relative;
  padding: 3rem 0 2rem;
  overflow: clip;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 55%, rgba(255, 211, 92, 0.1), transparent 45%),
    radial-gradient(circle at 85% 40%, rgba(180, 14, 25, 0.52), transparent 40%),
    linear-gradient(180deg, rgba(255, 214, 107, 0.75), rgba(0, 0, 0, 0.5)), url(images/background.jpg);
    background-size: cover;
    background-position: center;
}

.hero-backdrop::before,
.hero-backdrop::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.35;
}

.hero-backdrop::before {
  left: -120px;
  top: 40px;
  background:
    radial-gradient(circle at 50% 50%, rgba(243, 200, 77, 0.45), transparent 65%),
    conic-gradient(from 0deg, transparent 0 25%, rgba(243, 200, 77, 0.15) 25% 35%, transparent 35% 60%, rgba(243, 200, 77, 0.18) 60% 70%, transparent 70% 100%);
  animation: spinSlow 30s linear infinite;
}

.hero-backdrop::after {
  right: -120px;
  top: -40px;
  background:
    radial-gradient(circle at 50% 50%, rgba(180, 14, 25, 0.4), transparent 65%),
    conic-gradient(from 0deg, transparent 0 30%, rgba(243, 200, 77, 0.1) 30% 38%, transparent 38% 68%, rgba(180, 14, 25, 0.12) 68% 78%, transparent 78% 100%);
  animation: spinSlowReverse 34s linear infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.2rem;
  align-items: start;
}

.hero-copy,
.hero-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)), var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
  position: relative;
}

.hero-copy {
  padding: 1.4rem 1.4rem 1.2rem;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(243, 200, 77, 0), rgba(243, 200, 77, 0.95), rgba(180, 14, 25, 0.9), rgba(243, 200, 77, 0));
}

.hero-panel {
  padding: 1.2rem;
}

.hero-panel h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  color: #ffe4a0;
  font-size: 1.3rem;
}

.hero h1,
.section-head h2,
.legal-hero h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
  color: #ffe08c;
  text-shadow: 0 2px 18px rgba(243, 200, 77, 0.2);
}

.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  max-width: 14ch;
}

.hero-lead {
  margin: 1rem 0 0;
  color: #eceef5;
  font-size: 1.02rem;
  max-width: 66ch;
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 1.15rem 0 1.15rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #1a1000;
  background: radial-gradient(circle at 20% 20%, rgba(255, 240, 182, 0.6), transparent 45%), linear-gradient(180deg, #ffd76f, #e0a825);
  border-color: rgba(255, 226, 137, 0.6);
  box-shadow: 0 10px 30px rgba(243, 200, 77, 0.2);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(243, 200, 77, 0.2);
}

.btn-secondary:hover {
  background: rgba(243, 200, 77, 0.07);
  border-color: rgba(243, 200, 77, 0.35);
}

.btn.full {
  width: 100%;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(243, 200, 77, 0.12);
  border-radius: 14px;
}

.trust-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  font-weight: 800;
  color: #160f00;
  background: linear-gradient(180deg, #ffe394, #e4af2f);
}

.trust-item p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.trust-item strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.score-list {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.score-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(243, 200, 77, 0.1);
  background: rgba(255, 255, 255, 0.01);
}

.score-list span {
  color: #e9ebf2;
  font-weight: 600;
}

.score-list strong {
  color: var(--gold-2);
}

.panel-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-head {
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  max-width: 18ch;
}

.section-head p:last-child {
  margin: 0.55rem 0 0;
  color: var(--muted);
  max-width: 70ch;
}

.rankings,
.why-us,
.responsible-home,
.faq {
  padding: 1.6rem 0 1.1rem;
}

.rank-grid {
  display: grid;
  gap: 1rem;
}

.rank-card {
  display: grid;
  grid-template-columns: 72px 1fr 220px;
  gap: 1rem;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(243, 200, 77, 0.16);
  background: linear-gradient(135deg, rgba(243, 200, 77, 0.04), transparent 40%), linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0)), rgba(20, 20, 23, 0.95);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
  align-items: start;
  position: relative;
  overflow: hidden;
}

.rank-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(243, 200, 77, 0), rgba(243, 200, 77, 0.85), rgba(180, 14, 25, 0.6), rgba(243, 200, 77, 0));
  opacity: 0.45;
}

.rank-card.top {
  border-color: rgba(243, 200, 77, 0.28);
  box-shadow: 0 25px 85px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(243, 200, 77, 0.08) inset;
}

.rank-order {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e1500;
  background: radial-gradient(circle at 28% 20%, rgba(255, 241, 188, 0.75), transparent 45%), linear-gradient(180deg, #ffe492, #d9981a);
  box-shadow: 0 10px 24px rgba(243, 200, 77, 0.22);
}

.rank-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 200, 77, 0.22);
  background: rgba(243, 200, 77, 0.08);
  color: var(--gold-2);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag.hot {
  background: rgba(180, 14, 25, 0.2);
  border-color: rgba(180, 14, 25, 0.35);
  color: #ffd6db;
}

.rank-header h3 {
  margin: 0.35rem 0 0;
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
  color: #ffe8a8;
}

.domain {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.stars-wrap {
  display: grid;
  justify-items: end;
  gap: 0.15rem;
  flex: 0 0 auto;
}

.stars {
  color: var(--gold-2);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  text-shadow: 0 0 10px rgba(243, 200, 77, 0.25);
}

.stars-wrap span {
  color: #fff0c9;
  font-weight: 700;
  font-size: 0.86rem;
}

.rank-desc {
  margin: 0.65rem 0 0;
  color: #e8ebf2;
}

.rank-points {
  margin: 0.7rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
}

.rank-points strong {
  color: var(--text);
}

.terms-note {
  margin: 0.65rem 0 0;
  color: #aeb4c3;
  font-size: 0.82rem;
}

.rank-side {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  justify-items: stretch;
}

.score-orb {
  width: 88px;
  height: 88px;
  margin-inline: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Cinzel", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #1f1500;
  background: radial-gradient(circle at 35% 22%, rgba(255, 243, 203, 0.9), transparent 50%), linear-gradient(180deg, #ffe08a, #d59a1c);
  box-shadow: 0 0 0 2px rgba(255, 220, 121, 0.25), 0 14px 30px rgba(243, 200, 77, 0.16);
}

.meta-small {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.disclosure-box {
  margin-top: 1rem;
  padding: 1rem 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(243, 200, 77, 0.14);
  background: rgba(255, 255, 255, 0.015);
}

.disclosure-box h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  color: #ffe09b;
}

.disclosure-box p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(243, 200, 77, 0.14);
  background: linear-gradient(180deg, rgba(243, 200, 77, 0.03), rgba(255, 255, 255, 0)), rgba(15, 15, 17, 0.92);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
}

.feature-card h3 {
  margin: 0;
  color: #ffe39a;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.responsible-panel {
  border-radius: 22px;
  border: 1px solid rgba(243, 200, 77, 0.18);
  background: radial-gradient(circle at 12% 18%, rgba(243, 200, 77, 0.08), transparent 40%), rgba(11, 11, 13, 0.94);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
  padding: 1.2rem;
}

.responsible-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.shield {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #170f00;
  background: linear-gradient(180deg, #ffe497, #db9f21);
  box-shadow: 0 12px 28px rgba(243, 200, 77, 0.2);
}

.responsible-header h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  color: #ffe08e;
}

.responsible-lead {
  margin: 0.45rem 0 0;
  color: var(--muted);
  max-width: 70ch;
}

.responsible-columns {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.responsible-columns p {
  margin: 0 0 0.75rem;
  color: #e7eaf1;
}

.responsible-stack {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.rg-card {
  border-radius: 14px;
  border: 1px solid rgba(243, 200, 77, 0.12);
  background: rgba(255, 255, 255, 0.015);
  padding: 0.85rem 0.9rem;
}

.rg-card + .rg-card {
  margin-top: 0.85rem;
}

.rg-card h3 {
  margin: 0;
  color: #ffe5a7;
  font-size: 1rem;
}

.rg-card p {
  margin: 0.55rem 0 0;
}

.rg-list {
  margin: 0.55rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
}

.rg-list li {
  color: var(--muted);
}

.help-list {
  margin: 0.55rem 0 0.8rem;
  padding-left: 1rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.help-list strong {
  color: var(--text);
}

.rg-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.responsible-actions {
  margin-top: 0.8rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(243, 200, 77, 0.12);
  background: rgba(14, 14, 16, 0.95);
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: left;
  background: transparent;
  color: var(--text);
  border: 0;
  padding: 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.faq-trigger:hover {
  background: rgba(243, 200, 77, 0.03);
}

.faq-icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  border: 1px solid rgba(243, 200, 77, 0.2);
}

.faq-panel {
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.faq-item.is-open {
  border-color: rgba(243, 200, 77, 0.24);
}

.faq-item.is-open .faq-icon {
  background: rgba(243, 200, 77, 0.09);
}

.support-logos {
  padding: 1.2rem 0 0.25rem;
}

.support-logos-panel {
  border-radius: 18px;
  border: 1px solid rgba(243, 200, 77, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0)),
    rgba(10, 10, 12, 0.96);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.32);
  padding: 0.95rem 1rem 1rem;
}

.support-logos-head h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: #ffe09b;
}

.support-logos-head p:last-child {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.support-logos-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1.35fr 72px 0.6fr 0.8fr 0.8fr 0.8fr 0.85fr 1.35fr;
  gap: 0.55rem;
  align-items: center;
}

.support-logo-slot {
  min-height: 62px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.5rem;
  opacity: 0.85;
}

.support-logo-slot.round {
  border-radius: 999px;
  width: 62px;
  min-width: 62px;
  min-height: 62px;
  justify-self: center;
  font-size: 1.15rem;
}

.support-logo-slot.crest {
  font-size: 0.9rem;
}

.support-logo-slot.wide {
  justify-content: start;
  text-align: left;
  padding-inline: 0.85rem;
}

.support-logo-slot:hover {
  border-color: rgba(243, 200, 77, 0.2);
  color: rgba(255, 255, 255, 0.88);
  opacity: 1;
}

.support-logo-slot img {
  max-width: 100%;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.45) contrast(0.95);
  opacity: 0.9;
}

.support-logo-slot.round img {
  max-height: 42px;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(243, 200, 77, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0)), rgba(7, 7, 8, 0.95);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1rem;
  padding: 1.2rem 0 1.1rem;
}

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

.footer-brand {
  margin-bottom: 0.65rem;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  max-width: 50ch;
}

.site-footer h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  color: #ffe39f;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0.55rem 0 0;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
}

.footer-links a {
  color: var(--muted);
}

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

.footer-bottom {
  border-top: 1px solid rgba(243, 200, 77, 0.08);
}

.footer-bottom-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.rg-inline {
  color: #e8d9a7;
}

.legal-main {
  padding-bottom: 1rem;
}

.legal-hero {
  padding: 2rem 0 0.5rem;
}

.legal-hero .container {
  border-radius: 18px;
  border: 1px solid rgba(243, 200, 77, 0.14);
  background: linear-gradient(180deg, rgba(243, 200, 77, 0.03), transparent), rgba(12, 12, 14, 0.92);
  padding: 1.2rem;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
}

.legal-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.7rem);
}

.legal-hero p {
  margin: 0.75rem 0 0;
  color: #eaedf4;
  max-width: 75ch;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-content {
  padding: 0.75rem 0 0;
}

.prose {
  border-radius: 18px;
  border: 1px solid rgba(243, 200, 77, 0.1);
  background: rgba(12, 12, 14, 0.92);
  padding: 1.1rem 1.1rem 1.25rem;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
}

.prose h2 {
  margin: 1.1rem 0 0;
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  color: #ffe09a;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 0.85rem 0 0;
  color: #ffeec1;
  font-size: 1rem;
}

.prose p,
.prose li {
  color: #d8ddea;
}

.prose p {
  margin: 0.45rem 0 0;
}

.prose ul {
  margin: 0.45rem 0 0;
  padding-left: 1.1rem;
}

.prose a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.platform-image {
  max-height: 40px;
  display: block;
  margin-bottom: 10px;
}

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

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rank-card {
    grid-template-columns: 64px 1fr;
  }

  .rank-side {
    grid-column: 1 / -1;
    grid-template-columns: 88px 1fr;
    align-items: center;
  }

  .meta-small {
    text-align: left;
    grid-column: 1 / -1;
  }

  .btn.full {
    width: auto;
  }

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

  .support-logos-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .support-logo-slot.round {
    width: 100%;
    min-width: 0;
    border-radius: 12px;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    height: auto;
    min-height: var(--header-h);
    padding: 0.75rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.4rem;
  }

  .hero {
    padding-top: 1.3rem;
  }

  .hero-copy,
  .hero-panel {
    padding: 1rem;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .rank-card {
    grid-template-columns: 1fr;
    padding: 0.9rem;
  }

  .rank-order {
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }

  .rank-header {
    flex-direction: column;
  }

  .stars-wrap {
    justify-items: start;
  }

  .rank-side {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .score-orb {
    margin-inline: 0;
  }

  .feature-grid,
  .responsible-columns,
  .support-logos-grid,
  .footer-grid,
  .footer-grid.compact {
    grid-template-columns: 1fr;
  }

  .responsible-header {
    align-items: flex-start;
  }

  .footer-bottom-inner {
    min-height: unset;
    padding: 0.8rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .age-bar {
    justify-content: flex-start;
    padding-inline: 0.75rem;
    font-size: 0.82rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes drift {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

@keyframes spinSlowReverse {
  to { transform: rotate(-360deg); }
}
