html {
  background: #0d0d0d;
}

body {
  min-width: 1280px;
  background:
    radial-gradient(circle at 18% 10%, rgba(var(--color-accent-rgb), 0.08), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(130, 120, 255, 0.04), transparent 26%),
    linear-gradient(180deg, #111111 0%, #0b0b0b 48%, #090909 100%);
  color: #fff;
  font-family: var(--font-sans);
}

a,
button {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

a:hover,
button:hover {
  transform: translateY(-1px);
}

.home-shell {
  width: min(calc(100% - 80px), 1320px);
  margin: 0 auto;
  padding: 22px 0 48px;
}

.primary-nav {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: 100vw;
  box-sizing: border-box;
  gap: 18px;
  min-height: 76px;
  margin: -22px calc(50% - 50vw) 0;
  padding: 0 max(24px, calc((100vw - 1840px) / 2));
  background: linear-gradient(180deg, rgba(17, 18, 28, 0.98), rgba(12, 13, 20, 0.98));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 8px 32px rgba(0, 0, 0, 0.18);
}

.primary-nav__brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
}

.primary-nav__brand img {
  width: 136px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(var(--color-accent-rgb), 0.14));
}

.primary-nav nav {
  min-width: 0;
}

.primary-nav__items {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1;
}

.primary-nav__items li {
  position: relative;
}

.primary-nav__items li:nth-child(5) {
  margin-right: 20px;
  padding-right: 24px;
}

.primary-nav__items li:nth-child(5)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-50%);
}

.primary-nav__items a {
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.primary-nav__items a:hover {
  color: var(--color-accent-soft);
  transform: none;
}

.primary-nav__items a.is-active {
  color: var(--color-accent-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.header-action:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.03);
}

.header-action--primary {
  border-color: rgba(var(--color-accent-rgb), 0.7);
  background: linear-gradient(135deg, #7f61ff, var(--color-accent));
  color: #fbfaff;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(var(--color-accent-rgb), 0.24);
}

.header-action--primary:hover {
  border-color: rgba(var(--color-accent-rgb), 0.84);
  background: linear-gradient(135deg, #866bff, var(--color-accent-strong));
}

.header-action--locale {
  padding-right: 16px;
}

.header-action__caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.8;
}

.header-action--menu {
  display: none;
  width: 40px;
  padding: 0;
}

.header-action--menu span {
  width: 14px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(500px, 0.98fr);
  align-items: center;
  gap: 24px;
  min-height: calc(100vh - 108px);
  padding: 44px 0 8px;
}

.hero-copy {
  max-width: 620px;
  padding-top: 14px;
}

.hero-copy h1 {
  font-size: 88px;
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.hero-subtitle {
  margin-top: 28px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 28px;
  line-height: 1.36;
  font-weight: 500;
}

.hero-subtitle__accent {
  color: #a999ff;
  text-shadow: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.hero-action--primary {
  min-width: 240px;
  padding: 0 34px;
  border-color: var(--color-accent);
  background: linear-gradient(135deg, #7d5dff, var(--color-accent-strong));
  color: #fbfaff;
  box-shadow: 0 24px 58px rgba(var(--color-accent-rgb), 0.42);
}

.hero-action--primary:hover {
  background: linear-gradient(135deg, #7a5aff, var(--color-accent));
  border-color: var(--color-accent-soft);
}

.hero-action--store {
  width: 156px;
  border-radius: 22px;
  background: rgba(28, 28, 28, 0.88);
  font-size: 20px;
  font-weight: 500;
}

.hero-action--store:hover {
  background: rgba(42, 42, 42, 0.96);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-action--store img {
  width: 22px;
  height: 22px;
}

.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 22px;
  margin-top: 46px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 246px;
  min-height: 82px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

.hero-stat__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-stat__icon--shield {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.hero-stat__icon--shield svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.hero-stat__icon--avatars img {
  width: 58px;
  height: auto;
  display: block;
}

.hero-stat__content {
  display: grid;
  gap: 5px;
}

.hero-stat__content strong {
  font-size: 26px;
  line-height: 1;
  font-weight: 600;
}

.hero-stat__content span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.2;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin: 0;
  min-height: 700px;
  overflow: visible;
}

.hero-art::before {
  content: "";
  position: absolute;
  right: 4%;
  top: 10%;
  width: 68%;
  height: 68%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.14), transparent 62%);
  filter: blur(28px);
  pointer-events: none;
}

.hero-art img {
  position: relative;
  width: min(100%, 760px);
  height: auto;
  object-fit: contain;
  object-position: right center;
}

.support-entry {
  position: fixed;
  right: 0;
  bottom: 104px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 76px;
  padding: 0 14px 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 0;
  border-radius: 22px 0 0 22px;
  background: rgba(25, 25, 25, 0.96);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.support-entry:hover {
  background: rgba(40, 40, 40, 0.98);
}

.support-entry img {
  width: 30px;
  height: 30px;
}

.market-overview,
.rewards-banner,
.platform-highlights,
.why-choose,
.testimonials,
.awards,
.events-gallery,
.download-faq,
.journey-cta {
  margin-top: 84px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-heading p,
.section-kicker {
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 1.5;
}

.section-heading--center {
  justify-items: center;
  text-align: center;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.market-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.85fr);
  gap: 24px;
}

.market-overview__summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 24px;
}

.market-overview__summary-card {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(20, 20, 27, 0.96), rgba(12, 12, 16, 0.98));
}

.market-overview__summary-card span,
.market-overview__summary-card em {
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-style: normal;
}

.market-overview__summary-card strong {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.market-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(23, 23, 28, 0.96), rgba(12, 12, 15, 0.98));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
}

.market-panel--table {
  padding: 20px 24px 12px;
}

.market-tabs {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.market-tab {
  height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: rgba(255, 255, 255, 0.56);
  font-size: 18px;
  cursor: pointer;
}

.market-tab.is-active {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  box-shadow: none;
}

.market-table,
.mini-table {
  width: 100%;
  border-collapse: collapse;
}

.market-table th,
.market-table td,
.mini-table th,
.mini-table td {
  padding: 18px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  font-size: 15px;
}

.market-table thead th,
.mini-table thead th {
  border-top: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 500;
}

.market-table td:first-child,
.mini-table td:first-child {
  font-weight: 600;
  color: #fff;
}

.market-table .is-action {
  color: #ffffff;
  font-weight: 600;
  text-shadow: none;
}

.market-table .is-action a {
  color: inherit;
}

.market-table .is-action a:hover {
  color: var(--color-accent-soft);
}

.market-table__status {
  padding: 28px 8px;
  color: rgba(255, 255, 255, 0.56);
  text-align: center;
}

.market-table .is-live-update {
  animation: homeMarketFlash 1s ease;
}

.is-positive {
  color: #35d07f;
}

.is-negative {
  color: #f36e5d;
}

.market-stack {
  display: grid;
  gap: 24px;
}

.market-panel--mini {
  padding: 20px 24px 12px;
}

.market-panel__title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

@keyframes homeMarketFlash {
  0% {
    color: var(--color-accent-soft);
    text-shadow: 0 0 20px rgba(var(--color-accent-rgb), 0.45);
  }
  100% {
    color: inherit;
    text-shadow: none;
  }
}

.rewards-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 30px 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(11, 11, 11, 0.96) 42%);
}

.rewards-banner__copy strong {
  display: block;
  margin-top: 10px;
  font-size: 52px;
  line-height: 1;
}

.rewards-banner__copy p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
}

.rewards-banner__art {
  width: 220px;
  height: auto;
}

.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.highlight-grid,
.reason-grid,
.testimonial-grid,
.award-grid,
.event-grid {
  display: grid;
  gap: 24px;
}

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

.highlight-card,
.reason-card,
.testimonial-card,
.award-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(20, 20, 24, 0.96), rgba(9, 9, 11, 0.98));
}

.highlight-card {
  min-height: 260px;
  padding: 28px;
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -22% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.18), transparent 72%);
}

.highlight-card__index {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 15px;
}

.highlight-card h3,
.reason-card h3 {
  font-size: 30px;
  line-height: 1.08;
}

.highlight-card p,
.reason-card p,
.testimonial-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.65;
}

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

.reason-card {
  min-height: 220px;
  padding: 28px;
}

.testimonial-summary {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.62);
}

.testimonial-summary strong {
  color: #fff;
  font-size: 42px;
}

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

.testimonial-card {
  min-height: 260px;
  padding: 28px;
}

.testimonial-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.testimonial-card__meta strong {
  font-size: 22px;
}

.testimonial-card__meta span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-shadow: none;
}

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

.award-card {
  min-height: 220px;
  padding: 28px;
}

.award-card__source {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 15px;
}

.award-card strong {
  display: block;
  font-size: 34px;
  line-height: 1.12;
}

.event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.event-filter {
  height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  cursor: pointer;
}

.event-filter.is-active {
  border-color: rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

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

.event-card {
  overflow: hidden;
  border-radius: 28px;
  background: #111;
}

.event-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.download-faq {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.download-card,
.faq-card,
.journey-cta__banner,
.site-footer {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(19, 19, 24, 0.96), rgba(9, 9, 11, 0.98));
}

.download-card,
.faq-card {
  padding: 30px;
}

.download-card h2 {
  margin-top: 14px;
  font-size: 44px;
  line-height: 1.04;
}

.download-card__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

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

.faq-item {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary span {
  color: var(--color-accent-soft);
  font-weight: 600;
}

.faq-item summary strong {
  font-size: 20px;
}

.faq-item p {
  margin-top: 14px;
  padding-left: 42px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.7;
}

.journey-cta__banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 40px;
  box-shadow: none;
}

.journey-cta__banner h2 {
  font-size: 48px;
  line-height: 1;
}

.journey-cta__banner p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
}

.journey-cta__button {
  flex: 0 0 auto;
}

.site-footer {
  margin-top: 24px;
  padding: 32px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 32px;
}

.site-footer__brand img {
  width: 120px;
  height: auto;
}

.site-footer__brand p,
.site-footer__links a,
.site-footer__bottom p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer__brand strong {
  display: block;
  margin-top: 18px;
  font-size: 18px;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.site-footer__column {
  display: grid;
  gap: 10px;
}

.site-footer__column h3 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 16px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
