@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@500;700&display=swap");

:root {
  --bg: #06070a;
  --bg-2: #12171f;
  --card: rgba(20, 26, 36, 0.9);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #f5f8ff;
  --muted: #a9b4c7;
  --accent: #1db954;
  --accent-2: #26d07c;
  --accent-alt: #f2c14e;
  --danger: #ff4d5f;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --shadow: 0 20px 52px rgba(0, 0, 0, 0.45);
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 5% 0%, rgba(29, 185, 84, 0.18), transparent 32%),
    radial-gradient(circle at 95% 10%, rgba(242, 193, 78, 0.12), transparent 26%),
    linear-gradient(180deg, #06070a 0%, #0e131b 46%, #080b11 100%);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.site-wrap {
  width: min(calc(100% - 32px), var(--wrap));
  margin: 0 auto;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand__logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-weight: 800;
  background: linear-gradient(140deg, var(--accent), #0a8f3f);
  color: #04140a;
  box-shadow: 0 10px 24px rgba(29, 185, 84, 0.34);
  overflow: hidden;
}

.brand__logo--image {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__text strong {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.brand__text small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.topbar__nav,
.hero__actions,
.footer__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar__nav a {
  color: var(--muted);
  padding: 9px 13px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.topbar__nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.btn {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.btn--main {
  color: #04230f;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(29, 185, 84, 0.3);
}

.btn--soft,
.btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

main section {
  padding: 20px 0;
}

.hero {
  padding-top: 30px;
}

.hero__grid,
.bonus__grid,
.access__grid {
  display: grid;
  gap: 18px;
}

.hero__grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.hero__content,
.hero__media,
.quick__item,
.bonus__copy,
.bonus__media,
.pay-card,
.access__copy,
.access__media,
.keys__list,
.riot-faq-item,
.footer__inner {
  padding: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: #d7f7e5;
  background: rgba(29, 185, 84, 0.16);
  margin: 0 0 14px;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.1;
}

h1 {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(30px, 4.6vw, 52px);
}

h2 {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(26px, 3.6vw, 38px);
}

h3 {
  font-size: 21px;
}

.lead,
p {
  margin: 0 0 14px;
  color: var(--muted);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.hero__stats article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.hero__stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.hero__media {
  display: grid;
  gap: 14px;
  align-content: start;
}

.hero__media img,
.bonus__media img,
.access__media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__badges span {
  border-radius: 999px;
  border: 1px solid rgba(242, 193, 78, 0.4);
  color: #ffe9b5;
  background: rgba(242, 193, 78, 0.12);
  padding: 6px 10px;
  font-size: 12px;
}

.quick__grid,
.payments__grid,
.faq__list {
  display: grid;
  gap: 14px;
}

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

.quick__item h2 {
  font-size: 24px;
}

.bonus__grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-head > p {
  margin: 0;
  max-width: 58ch;
}

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

.pay-card h3 {
  color: var(--accent-alt);
}

.access__grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.access__list {
  margin: 0 0 18px;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.keys__list,
.keys__text {
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.keys__list li {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
  padding-bottom: 9px;
}

.keys__list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

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

.keys__text p {
  margin: 0 0 12px;
}

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

.riot-faq-item {
  overflow: hidden;
}

.riot-faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.riot-faq-item div {
  display: none;
  padding-top: 12px;
}

.riot-faq-item[data-open="true"] div {
  display: block;
}

.footer {
  padding: 20px 0 36px;
}

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

.footer__inner p {
  margin: 8px 0 0;
  max-width: 58ch;
}

@media (max-width: 1100px) {
  .hero__grid,
  .bonus__grid,
  .access__grid {
    grid-template-columns: 1fr;
  }

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

  .topbar__nav {
    display: none;
  }

  .topbar__inner {
    min-height: auto;
    padding: 13px 0;
  }
}

@media (max-width: 680px) {
  .site-wrap {
    width: min(calc(100% - 20px), var(--wrap));
  }

  .hero__content,
  .hero__media,
  .quick__item,
  .bonus__copy,
  .bonus__media,
  .pay-card,
  .access__copy,
  .access__media,
  .keys__list,
  .riot-faq-item,
  .footer__inner {
    padding: 18px;
  }

  .quick__grid,
  .payments__grid,
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .hero__actions,
  .footer__actions {
    width: 100%;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
