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__content {
  display: grid;
  gap: 5px;
}

.hero-stat__content em {
  color: rgba(var(--color-accent-rgb), 0.78);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.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 {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 320px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(20, 20, 24, 0.96), rgba(9, 9, 11, 0.98));
}

.event-card::before {
  content: "";
  position: absolute;
  right: -36px;
  top: -46px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.2), rgba(var(--color-accent-rgb), 0.02));
}

.event-card--tone-1 {
  background: linear-gradient(135deg, rgba(255, 148, 148, 0.1), rgba(9, 9, 11, 0.98));
}

.event-card--tone-2 {
  background: linear-gradient(135deg, rgba(134, 112, 255, 0.14), rgba(9, 9, 11, 0.98));
}

.event-card--tone-3 {
  background: linear-gradient(135deg, rgba(106, 171, 255, 0.1), rgba(9, 9, 11, 0.98));
}

.event-card__kicker {
  position: relative;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-card h3,
.event-card p,
.event-card__link {
  position: relative;
}

.event-card h3 {
  margin-top: 22px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.14;
}

.event-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.65;
}

.event-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--color-accent-soft);
  font-size: 14px;
  font-weight: 700;
}

.event-card__link::after {
  content: ">";
}

.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;
}

/* Homepage Virgo fusion overrides */

.home-shell {
  width: min(calc(100% - 96px), 1360px);
}

.hero {
  grid-template-columns: minmax(0, 0.98fr) minmax(520px, 1.02fr);
  align-items: start;
  gap: 40px;
  min-height: auto;
  padding: 34px 0 6px;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 0;
  max-width: 620px;
  padding-top: 46px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin-bottom: 20px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(var(--color-accent-rgb), 0.16);
  color: var(--color-accent-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero-subtitle {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  line-height: 1.42;
  font-weight: 500;
}

.hero-subtitle__accent {
  color: rgba(255, 255, 255, 0.62);
  text-shadow: none;
}

.hero-actions {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.hero-actions__cta-row,
.hero-actions__stores {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-action {
  height: 58px;
  font-size: 18px;
}

.hero-action--primary {
  min-width: 212px;
  box-shadow: 0 20px 46px rgba(var(--color-accent-rgb), 0.28);
}

.hero-action--secondary {
  min-width: 172px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-weight: 600;
}

.hero-action--secondary:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.hero-store-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.hero-store-pill img {
  width: 18px;
  height: 18px;
}

.hero-store-pill:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

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

.hero-stat {
  min-width: 0;
  min-height: 74px;
  padding: 14px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.hero-stat__content strong {
  font-size: 22px;
}

.hero-trust-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 500;
}

.hero-art {
  align-self: start;
  min-height: 0;
  justify-content: stretch;
  padding-top: 6px;
}

.hero-art::before {
  right: 14%;
  top: 14%;
  width: 52%;
  height: 52%;
  background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.18), transparent 64%);
}

.hero-promo-stack {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 668px;
  margin-left: auto;
}

.hero-promo-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  align-items: center;
  min-height: 188px;
  padding: 26px 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.hero-promo-card__copy {
  display: grid;
  gap: 10px;
  align-content: start;
  max-width: 320px;
}

.hero-promo-card__eyebrow {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-promo-card__copy h3 {
  font-size: 36px;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero-promo-card__copy p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.58;
}

.hero-promo-card__copy strong {
  color: var(--color-accent-soft);
  font-size: 16px;
  font-weight: 700;
}

.hero-promo-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 600;
}

.hero-promo-card__link::after {
  content: "↗";
  font-size: 14px;
}

.hero-promo-card--warning {
  background: linear-gradient(135deg, rgba(255, 170, 160, 0.18), rgba(255, 255, 255, 0.04));
}

.hero-promo-card--control {
  background: linear-gradient(135deg, rgba(132, 117, 255, 0.22), rgba(255, 255, 255, 0.04));
}

.hero-promo-card--funding {
  background: linear-gradient(135deg, rgba(115, 133, 255, 0.14), rgba(255, 242, 198, 0.06));
}

.hero-promo-card__visual {
  position: relative;
  height: 100%;
  min-height: 132px;
}

.hero-promo-card__visual--warning span {
  position: absolute;
  display: block;
  border-radius: 24px;
}

.hero-promo-card__visual--warning span:nth-child(1) {
  right: 22px;
  top: 16px;
  width: 120px;
  height: 92px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08));
  transform: rotate(-10deg);
}

.hero-promo-card__visual--warning span:nth-child(2) {
  right: 122px;
  top: 48px;
  width: 84px;
  height: 12px;
  background: rgba(255, 109, 81, 0.72);
  transform: rotate(28deg);
}

.hero-promo-card__visual--warning span:nth-child(3) {
  right: 36px;
  top: 30px;
  width: 28px;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 102, 102, 0.9), rgba(255, 138, 138, 0.42));
}

.hero-promo-card__visual--control {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-promo-card__device {
  position: relative;
  display: block;
  width: 176px;
  height: 126px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(var(--color-accent-rgb), 0.34), rgba(255, 255, 255, 0.08));
  box-shadow: 0 24px 48px rgba(26, 18, 56, 0.28);
}

.hero-promo-card__device-notch {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 52px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  transform: translateX(-50%);
}

.hero-promo-card__device-pill {
  position: absolute;
  left: 22px;
  top: 28px;
  width: 68px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-promo-card__device-chart {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
  height: 42px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(120deg, rgba(var(--color-accent-rgb), 0.34), rgba(255, 255, 255, 0));
}

.hero-promo-card__device-chart::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 16px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.16));
  transform: rotate(-6deg);
  transform-origin: left center;
}

.hero-promo-card__device-chip {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.78), rgba(var(--color-accent-rgb), 0.42));
}

.hero-promo-card__device-chip--one {
  right: 24px;
  top: 34px;
  width: 18px;
  height: 18px;
}

.hero-promo-card__device-chip--two {
  right: 52px;
  top: 52px;
  width: 10px;
  height: 10px;
}

.hero-promo-card__orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}

.hero-promo-card__orb--one {
  right: 10px;
  bottom: 8px;
  width: 54px;
  height: 54px;
  background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.34), rgba(var(--color-accent-rgb), 0.04));
}

.hero-promo-card__orb--two {
  left: 18px;
  top: 12px;
  width: 22px;
  height: 22px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.02));
}

.hero-promo-card__visual--funding {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-promo-card__coin {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-promo-card__coin:first-child {
  transform: translateX(24px);
}

.hero-promo-card__coin:last-child {
  transform: translateX(-18px);
  background: rgba(var(--color-accent-rgb), 0.34);
}

.hero-promo-card__path {
  position: absolute;
  width: 132px;
  height: 132px;
  border-right: 2px dashed rgba(255, 255, 255, 0.26);
  border-top: 2px dashed rgba(255, 255, 255, 0.26);
  border-radius: 0 100% 0 0;
  transform: rotate(42deg);
}

.market-overview,
.rewards-banner,
.platform-highlights,
.why-choose {
  margin-top: 56px;
}

.market-overview__heading {
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  align-items: end;
}

.market-overview__heading h2 {
  font-size: 54px;
}

.market-overview__heading p {
  margin-bottom: 8px;
}

.market-overview__summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 22px;
}

.market-overview__summary-card {
  gap: 10px;
  min-height: 108px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18, 19, 28, 0.95), rgba(11, 12, 18, 0.98));
}

.market-overview__summary-card strong {
  font-size: 24px;
  line-height: 1.1;
}

.market-overview__grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.82fr);
  align-items: start;
}

.market-snapshot-card,
.market-rail-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(20, 21, 30, 0.96), rgba(10, 11, 17, 0.98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.market-snapshot-card {
  padding: 18px 18px 14px;
}

.market-tabs {
  gap: 10px;
  margin-bottom: 14px;
}

.market-tab {
  height: 46px;
  padding: 0 18px;
  border-radius: 16px;
  font-size: 16px;
}

.market-tab.is-active {
  background: rgba(255, 255, 255, 0.06);
}

.market-snapshot-list {
  display: grid;
  gap: 10px;
}

.market-snapshot-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 0.8fr 0.95fr auto;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 0 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.market-snapshot-row.is-featured {
  background: linear-gradient(135deg, rgba(var(--color-accent-rgb), 0.14), rgba(255, 255, 255, 0.03));
}

.market-snapshot-row__pair {
  display: grid;
  gap: 6px;
}

.market-snapshot-row__pair strong {
  font-size: 20px;
  color: #fff;
}

.market-snapshot-row__pair span,
.market-snapshot-row__meta span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.market-snapshot-row__price {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.market-snapshot-row__meta {
  display: grid;
  gap: 6px;
  justify-items: start;
}

.market-snapshot-row__meta em {
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
}

.market-snapshot-row__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.market-snapshot-row__action:hover {
  background: rgba(var(--color-accent-rgb), 0.18);
  color: #ffffff;
}

.market-snapshot-state {
  padding: 54px 18px;
  color: rgba(255, 255, 255, 0.56);
  text-align: center;
}

.market-stack {
  gap: 18px;
}

.market-rail-card {
  padding: 20px;
}

.market-rail-card__title {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.market-rail-list {
  display: grid;
  gap: 10px;
}

.market-rail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 0 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.market-rail-row strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
}

.market-rail-row span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.market-rail-row em {
  font-style: normal;
  font-size: 15px;
  font-weight: 700;
}

.market-snapshot-state--rail {
  min-height: 120px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.market-rail-row--metals {
  align-items: flex-start;
  padding-top: 14px;
  padding-bottom: 14px;
}

.market-rail-row__quote {
  min-width: 112px;
  text-align: right;
}

.market-rail-row__quote strong {
  font-size: 17px;
}

.market-rail-row__quote em {
  display: block;
  margin-top: 4px;
}

.rewards-banner {
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
}

.rewards-banner__primary,
.rewards-banner__secondary {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
}

.rewards-banner__primary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(var(--color-accent-rgb), 0.08));
}

.rewards-banner__secondary {
  background: linear-gradient(135deg, rgba(var(--color-accent-rgb), 0.16), rgba(255, 255, 255, 0.04));
}

.rewards-banner__primary h2 {
  margin-top: 14px;
  font-size: 42px;
  line-height: 1.02;
}

.rewards-banner__primary p {
  margin-top: 14px;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.6;
}

.rewards-banner__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.rewards-banner__chips span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.rewards-banner__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-outline--primary {
  background: linear-gradient(135deg, #7d5dff, var(--color-accent-strong));
  border-color: transparent;
}

.rewards-banner__orbs span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.04));
}

.rewards-banner__orbs span:nth-child(1) {
  right: 34px;
  bottom: 28px;
  width: 148px;
  height: 148px;
}

.rewards-banner__orbs span:nth-child(2) {
  right: 144px;
  top: 26px;
  width: 46px;
  height: 46px;
}

.rewards-banner__orbs span:nth-child(3) {
  right: 86px;
  top: 84px;
  width: 22px;
  height: 22px;
}

.platform-highlights .section-heading,
.why-choose .section-heading {
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  align-items: end;
}

.platform-highlights .section-heading h2,
.why-choose .section-heading h2 {
  font-size: 52px;
}

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

.highlight-card,
.reason-card {
  min-height: 250px;
  padding: 28px;
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.highlight-card::before {
  inset: auto -14% -28% auto;
}

.highlight-card__index {
  margin-bottom: 20px;
  color: var(--color-accent-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.reason-card {
  min-height: 210px;
}

.testimonial-card,
.award-card,
.event-card,
.download-card,
.faq-card {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.testimonial-card.is-visible,
.award-card.is-visible,
.event-card.is-visible,
.download-card.is-visible,
.faq-card.is-visible,
.highlight-card.is-visible,
.reason-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-sequence {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: transform, opacity;
}

.home-ready .reveal-sequence {
  opacity: 1;
  transform: translateY(0);
}

.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);
}
