:root {
  --bg: #0d0a10;
  --bg-soft: #17121b;
  --card: rgba(27, 20, 31, 0.82);
  --card-strong: rgba(36, 24, 35, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5ecdf;
  --muted: #cfc1b5;
  --accent: #ff3b4f;
  --accent-2: #ff87ad;
  --gold: #ffd88f;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 59, 79, 0.14), transparent 30%),
    radial-gradient(circle at right center, rgba(255, 135, 173, 0.1), transparent 28%),
    linear-gradient(180deg, #0a070d 0%, #110c13 40%, #0a070d 100%);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.page-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.glow-left {
  top: 100px;
  left: -80px;
  background: #ff3b4f;
}

.glow-right {
  top: 260px;
  right: -80px;
  background: #ff87ad;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(10, 7, 13, 0.72);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img {
  width: 58px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a,
.mobile-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

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

.nav-btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ff5d70);
  color: white !important;
  box-shadow: 0 10px 25px rgba(255, 59, 79, 0.24);
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 20px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 16px 18px;
}

.hero {
  padding: 84px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 59, 79, 0.12);
  color: #ffb7be;
  border: 1px solid rgba(255, 59, 79, 0.18);
}

.hero h1,
.section-head h2 {
  margin: 18px 0 14px;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 78px);
  max-width: 760px;
}

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

.hero p,
.section-head p,
.rank-top p,
.feature-card p,
.shop-box p,
.faq-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy p {
  max-width: 640px;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary,
.btn-rank {
  background: linear-gradient(135deg, #ff3b4f 0%, #ff6e7e 100%);
  color: white;
  box-shadow: 0 14px 35px rgba(255, 59, 79, 0.24);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.hero-stats div,
.logo-card,
.feature-card,
.rank-card,
.shop-box,
.faq-list details {
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 18px;
  border-radius: 20px;
}

.hero-stats strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 5px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 14px;
}

.hero-art {
  position: relative;
  padding: 24px;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    radial-gradient(circle at center, rgba(255, 216, 143, 0.1), transparent 45%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-logo {
  width: min(100%, 640px);
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.28));
}

.hero-card {
  position: absolute;
  max-width: 240px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(15, 10, 18, 0.84);
  box-shadow: var(--shadow);
}

.card-one {
  top: 18px;
  right: 20px;
}

.card-two {
  bottom: 20px;
  left: 16px;
}

.floating-card {
  animation: floatY 4.2s ease-in-out infinite;
}

.card-two {
  animation-delay: 1s;
}

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

.mini-label {
  display: inline-block;
  margin-bottom: 7px;
  color: #ffb7be;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.hero-card small {
  color: var(--muted);
}

.section {
  padding: 44px 0 88px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(30px, 5vw, 54px);
}

.logo-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 22px;
}

.logo-card {
  padding: 24px;
  border-radius: var(--radius);
}

.logo-card span {
  display: block;
  margin-top: 14px;
  font-weight: 700;
  color: var(--muted);
}

.small-logo-card,
.large-logo-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.small-logo-card {
  grid-row: span 2;
  align-items: center;
}

.small-logo-card img {
  max-height: 220px;
}

.banner-logo-card img,
.large-logo-card img {
  width: 100%;
}

.ranks-section .section-head {
  max-width: 840px;
}

.rank-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.rank-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 28px;
}

.rank-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.rank-card li {
  position: relative;
  padding-left: 20px;
  line-height: 1.45;
}

.rank-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-2);
  font-size: 20px;
}

.rank-top h3 {
  margin: 10px 0 8px;
  font-size: 28px;
}

.rank-tag {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffd7dc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  font-size: 34px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 10px;
}

.rank-card .btn-rank {
  margin-top: auto;
}

.featured-rank {
  border: 1px solid rgba(255, 216, 143, 0.28);
  transform: translateY(-10px);
  background: linear-gradient(180deg, rgba(255, 216, 143, 0.08), rgba(27, 20, 31, 0.88));
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #ffe39f, #ffcb5f);
  color: #503200;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.features-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
  align-items: start;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 24px;
  border-radius: 24px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.shop-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  border-radius: 30px;
}

.big-btn {
  white-space: nowrap;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border-radius: 22px;
  padding: 18px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 14px 0 2px;
}

.site-footer {
  padding: 22px 0 34px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 58px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1200px) {
  .rank-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .mobile-toggle {
    display: inline-flex;
  }

  .mobile-nav.open {
    display: flex;
  }

  .hero-grid,
  .features-grid,
  .logo-showcase,
  .shop-box,
  .footer-wrap {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-art {
    min-height: 420px;
  }

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

@media (max-width: 720px) {
  .hero {
    padding-top: 54px;
  }

  .hero-stats,
  .rank-grid,
  .feature-list,
  .logo-showcase {
    grid-template-columns: 1fr;
  }

  .small-logo-card {
    grid-row: auto;
  }

  .featured-rank {
    transform: none;
  }

  .hero-art {
    min-height: auto;
    padding: 30px 16px 110px;
  }

  .hero-card {
    max-width: 210px;
  }

  .card-one {
    right: 10px;
    top: 10px;
  }

  .card-two {
    left: 10px;
    bottom: 10px;
  }

  .section {
    padding-bottom: 64px;
  }
}
