:root {
  --bg: #10091a;
  --bg-2: #180f25;
  --panel: #241535;
  --panel-2: #2e1a43;
  --ink: #fff7fb;
  --muted: #cbb9d7;
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #35d0ff;
  --pink: #f472b6;
  --gold: #f7c948;
  --green: #91f56f;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
  --wrap: min(1180px, calc(100% - 32px));
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(53, 208, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(247, 201, 72, 0.04) 1px, transparent 1px),
    linear-gradient(145deg, #10091a 0%, #180f25 55%, #0d1023 100%);
  background-size: 42px 42px, 42px 42px, auto;
  font-family: Arial, Helvetica, sans-serif;
}
body.locked { overflow: hidden; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
main { overflow: hidden; }
.wrap { width: var(--wrap); margin: 0 auto; }

.notice {
  padding: 9px 16px;
  background: #0d1023;
  color: #efe6f6;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}
.site-head {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(16, 9, 26, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}
.logo img {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  box-shadow: 0 10px 24px rgba(53, 208, 255, 0.16);
}
.logo span { display: grid; line-height: 1; }
.logo b { font-size: 1.04rem; }
.logo i {
  width: fit-content;
  margin-top: 4px;
  padding: 3px 8px;
  border-radius: 6px;
  color: #150c20;
  background: var(--gold);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.main-nav a {
  padding: 10px 12px;
  border-radius: 7px;
  color: #dfd1e7;
  font-size: 0.93rem;
  font-weight: 850;
}
.main-nav a:hover,
.main-nav a.active {
  color: #150c20;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(244, 114, 182, 0.17), rgba(53, 208, 255, 0.1)),
    linear-gradient(180deg, rgba(24, 15, 37, 0.94), rgba(16, 9, 26, 0.98));
}
.hero-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 34px;
  padding: 58px 0 48px;
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(53, 208, 255, 0.42);
  border-radius: 7px;
  background: rgba(53, 208, 255, 0.12);
  color: #b9f2ff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}
h1,
h2,
h3,
p { margin-top: 0; }
h1 {
  max-width: 850px;
  margin: 16px 0;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0;
}
.hero-copy p,
.section-head p,
.method p {
  color: var(--muted);
  line-height: 1.68;
}
.hero-copy p {
  max-width: 740px;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border: 0;
  border-radius: 7px;
  font-weight: 900;
  cursor: pointer;
}
.btn-primary {
  color: #150c20;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  box-shadow: 0 14px 30px rgba(244, 114, 182, 0.18);
}
.btn-outline {
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}
.btn-soft { color: #150c20; background: #efe6f6; }
.btn-dark { color: #12091a; background: var(--cyan); }
.hero-panel {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(36, 21, 53, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-panel b {
  padding: 18px 20px;
  color: #150c20;
  background: var(--cyan);
  font-size: 1.22rem;
}
.hero-panel span {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  color: #efe4f5;
  font-weight: 850;
}

.section { padding: 58px 0; }
.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.section-head h2,
.method h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}
.rank-list { display: grid; gap: 13px; }
.rank-card {
  display: grid;
  grid-template-columns: 54px 142px minmax(0, 1fr) 250px 150px;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-left: 7px solid var(--pink);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(46, 26, 67, 0.96), rgba(36, 21, 53, 0.98));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}
.rank-card:nth-child(2n) { border-left-color: var(--cyan); }
.rank-card:nth-child(3n) { border-left-color: var(--gold); }
.rank-num {
  display: grid;
  place-items: center;
  min-width: 40px;
  min-height: 40px;
  border-radius: 7px;
  color: #150c20;
  background: var(--gold);
  font-weight: 950;
}
.brand-box {
  display: grid;
  min-height: 88px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #07040c;
}
.brand-box img {
  max-width: 122px;
  max-height: 60px;
  object-fit: contain;
}
.rank-title {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 7px;
}
.rank-title h3 { margin: 0; font-size: 1.36rem; }
.rank-title span {
  padding: 6px 8px;
  border-radius: 7px;
  color: #150c20;
  background: rgba(145, 245, 111, 0.92);
  font-size: 0.75rem;
  font-weight: 900;
}
.rank-body p {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.5;
}
.rank-body strong {
  display: block;
  margin-bottom: 4px;
  color: #ffe892;
  font-size: 1.06rem;
}
.rank-body small { color: #d8c9e1; }
.rank-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.rank-metrics span {
  display: grid;
  gap: 3px;
  min-height: 66px;
  align-content: center;
  padding: 8px;
  border-radius: 7px;
  background: rgba(9, 5, 14, 0.44);
  color: var(--muted);
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
}
.rank-metrics b { color: var(--ink); font-size: 1rem; }
.rank-cta {
  display: grid;
  gap: 8px;
  text-align: center;
}
.rank-cta div { color: var(--gold); font-size: 0.9rem; }
.rank-cta strong { font-size: 1.42rem; }

.white-section {
  background: rgba(9, 16, 35, 0.55);
  border-block: 1px solid var(--line);
}
.white-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.white-card {
  display: grid;
  gap: 11px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(36, 21, 53, 0.88);
}
.white-logo {
  display: grid;
  min-height: 70px;
  place-items: center;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
}
.white-logo img { max-height: 46px; object-fit: contain; }
.white-card h3 { margin: 0; font-size: 1.22rem; }
.white-card p { color: var(--muted); line-height: 1.5; }
.white-card strong { color: #ffe892; }
.white-bottom {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.white-bottom span { font-weight: 900; color: var(--green); }

.method {
  background: linear-gradient(135deg, rgba(53, 208, 255, 0.12), rgba(244, 114, 182, 0.12));
}
.method-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.steps article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(36, 21, 53, 0.88);
}
.steps b { color: var(--gold); }
.steps p { margin-bottom: 0; color: var(--muted); }

.static-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 92px;
}
.static-page__head {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(124, 83, 156, 0.55);
}
.static-page__title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.15rem);
  line-height: 1.05;
  color: #fff7fb;
}
.static-page__body {
  max-width: 1030px;
  padding-top: 34px;
}
.static-page__lead,
.static-page__body p {
  color: #bcaacd;
  font-size: 1.08rem;
  line-height: 1.72;
}
.static-page__lead {
  margin-bottom: 28px;
  font-size: 1.18rem;
}
.static-page__section {
  margin-top: 34px;
}
.static-page__h2 {
  margin-bottom: 14px;
  font-size: 1.34rem;
  line-height: 1.25;
  color: #fff7fb;
}
.static-page__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: #bcaacd;
  font-size: 1.08rem;
  line-height: 1.62;
}
.static-page__mailto,
.static-page__inline-link {
  color: #b9f2ff;
  font-weight: 900;
}

.site-foot { background: #0b0612; }
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 0.8fr));
  gap: 24px;
  padding: 44px 0 26px;
}
.site-foot p { color: #d8c9e1; line-height: 1.65; }
.site-foot h2 { margin: 0 0 12px; font-size: 1rem; }
.site-foot section > a:not(.logo) {
  display: block;
  margin: 8px 0;
  color: #f4eafa;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-strip img {
  width: auto;
  height: 34px;
  padding: 5px 7px;
  border-radius: 6px;
  background: #05030a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  object-fit: contain;
}
.legal-copy {
  padding: 18px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}
.legal-copy p { margin: 0 0 8px; }
.legal-copy a { color: var(--gold); }

.age-wall {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(10, 6, 18, 0.82);
}
.age-card {
  max-width: 520px;
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 9px solid var(--cyan);
  border-radius: 8px;
  background: #241535;
  box-shadow: var(--shadow);
}
.age-card h2 { margin: 14px 0 10px; font-size: 2rem; }
.age-card p { color: var(--muted); line-height: 1.55; }
.cookie-box {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 16px 32px;
  border-top: 1px solid var(--line);
  background: rgba(11, 6, 18, 0.98);
  box-shadow: var(--shadow);
}
.cookie-box p { margin: 0; color: var(--muted); line-height: 1.45; }

@media (max-width: 1024px) {
  .hero-grid,
  .method-grid,
  .foot-grid { grid-template-columns: 1fr; }
  .rank-card { grid-template-columns: 44px 126px minmax(0, 1fr); }
  .rank-metrics,
  .rank-cta { grid-column: 2 / -1; }
  .rank-cta {
    grid-template-columns: auto auto minmax(150px, 190px);
    align-items: center;
  }
  .white-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .notice { display: none; }
  .nav-row { min-height: 64px; }
  .menu-button { display: block; }
  .main-nav {
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: grid; }
  .main-nav a { padding: 12px; }
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 18px 0 22px;
  }
  h1 { font-size: clamp(1.95rem, 10vw, 2.85rem); }
  .hero-copy p,
  .hero-panel,
  .hero .action-row { display: none; }
  .section { padding: 24px 0; }
  .section-head { margin-bottom: 14px; }
  .section-head h2,
  .section-head p { display: none; }
  .rank-card {
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    padding: 12px;
    border-left-width: 5px;
  }
  .rank-num {
    min-width: 38px;
    min-height: 38px;
    align-self: stretch;
  }
  .brand-box {
    min-height: 76px;
    padding: 8px;
  }
  .brand-box img {
    max-width: 154px;
    max-height: 52px;
  }
  .rank-body {
    grid-column: 1 / -1;
    min-width: 0;
  }
  .rank-title { gap: 6px; align-items: flex-start; }
  .rank-title h3 { font-size: 1.22rem; line-height: 1.1; }
  .rank-title span { font-size: 0.68rem; padding: 5px 7px; }
  .rank-body p { display: none; }
  .rank-body strong { font-size: 1rem; line-height: 1.28; }
  .rank-body small { display: block; font-size: 0.72rem; line-height: 1.3; }
  .rank-metrics {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .rank-metrics span {
    min-height: 48px;
    padding: 6px 4px;
    font-size: 0.7rem;
  }
  .rank-cta {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
    text-align: left;
  }
  .rank-cta strong {
    justify-self: end;
    font-size: 1.28rem;
  }
  .rank-cta .btn {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 42px;
    padding: 10px;
  }
  .white-grid,
  .steps { grid-template-columns: 1fr; }
  .cookie-box { grid-template-columns: 1fr; padding: 14px 16px; }
}

@media (max-width: 380px) {
  .wrap { width: min(100% - 20px, 1180px); }
  .logo b { font-size: 0.98rem; }
  .rank-card { grid-template-columns: 38px minmax(0, 1fr); }
  .brand-box img { max-width: 132px; }
  .rank-body strong { font-size: 0.92rem; }
  .age-card { padding: 22px; }
  .static-page { width: min(100% - 24px, 1180px); }
  .static-page__body p,
  .static-page__list { font-size: 1rem; }
}
