:root {
  --blue: #0173e5;
  --blue-hover: #1a84f0;
  --bg: #07080d;
  --text: #ffffff;
  --text-muted: #8b92a3;
  --text-dim: #737a8c;
  --border: rgba(255, 255, 255, 0.12);
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (max-width: 600px) {
  .hero__media-parallax {
    display: none;
  }
}

.hero,
.trending,
.products,
.brands,
.appblock,
.faq,
.cta {
  color: var(--text);
}


.hero {
  position: relative;
  overflow: hidden;
}


.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
          linear-gradient(90deg, rgba(7, 8, 13, 0.85) 0%, rgba(7, 8, 13, 0.55) 45%, rgba(7, 8, 13, 0.25) 100%),
          radial-gradient(ellipse at 70% 40%, rgba(1, 115, 229, 0.08) 0%, transparent 60%);
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 64px 60px;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
}



.hero__content {
  max-width: 620px;
}

.hero__title {
  font-size: clamp(40px, 4.6vw, 66px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero__link-arrow {
  transition: transform 0.3s ease;
}

.hero__link:hover {
  color: var(--text);
}

.hero__link:hover .hero__link-arrow {
  transform: translateX(5px);
}



.hero__form {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  max-width: 590px;
}

.hero__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 56px;
  padding: 0 20px;
  font: 500 15px var(--font);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.hero__input::placeholder {
  color: var(--text-dim);
}

.hero__input:focus {
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 4px rgba(1, 115, 229, 0.18);
}

.hero__btn {
  flex: 0 0 auto;
  height: 56px;
  padding: 0 44px;
  font: 600 15px var(--font);
  color: #fff;
  background: var(--blue);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__btn:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(1, 115, 229, 0.35);
}

.hero__btn:active {
  transform: translateY(0);
}



.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 44px;
  margin-top: 76px;
  list-style: none;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 96px;
  max-width: 130px;
}

.stat__value {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.stat__label {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-muted);
}


@media (min-width: 1280px) {
  .hero__stats {
    flex-wrap: nowrap;
    width: max-content;
    gap: 44px;
  }
}


.hero__media {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
}

.hero__img {
  display: block;
  height: min(88svh, 56vw);
  width: auto;
}



.anim {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0s);
}


.anim-media {
  opacity: 0;
  animation: fadeIn 1.2s ease 0.3s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .anim,
  .anim-media {
    animation: none;
    opacity: 1;
    transform: none;
  }
}


@media (max-width: 1200px) {
  .hero__container {
    padding: 90px 40px 50px;
  }
}


@media (max-width: 992px) {
  .hero__container {
    min-height: 0;
    padding: 80px 40px 0;
  }
  .hero__content {
    max-width: 640px;
  }
  .hero__stats {
    margin-top: 56px;
  }
  .hero__media {
    position: static;
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
  }
  .hero__img {
    height: auto;
    width: min(92%, 560px);
  }
  .hero__overlay {
    background:
            linear-gradient(180deg, rgba(7, 8, 13, 0.85) 0%, rgba(7, 8, 13, 0.6) 60%, rgba(7, 8, 13, 0.35) 100%);
  }
}


@media (max-width: 600px) {
  .hero__container {
    padding: 72px 20px 0;
  }
  .hero__img {
    width: 100%;
  }
  .hero__title {
    font-size: clamp(32px, 9.5vw, 40px);
  }
  .hero__link {
    margin-top: 20px;
    font-size: 15px;
  }
  .hero__form {
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
    max-width: none;
  }
  .hero__input,
  .hero__btn {
    width: 100%;
    height: 54px;
  }
  .hero__stats {
    margin-top: 44px;
    gap: 24px 20px;
  }
  .stat {
    flex: 1 1 calc(50% - 20px);
    max-width: none;
  }
  .stat__value {
    font-size: 26px;
  }
  .stat__label {
    font-size: 13px;
  }
}



.trending {
  --card-bg: #101116;
  --card-border: rgba(255, 255, 255, 0.07);
  --red: #f6465d;
  --green: #2ebd85;

  position: relative;
  background: var(--bg);
  padding: 96px 0 72px;
}

.trending__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

.trending__head {
  text-align: center;
}

.trending__title {
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.trending__subtitle {
  margin-top: 12px;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text-muted);
}




.trending__grid {
  display: grid;
  grid-template-columns: 1fr 385px;
  gap: 28px;
  margin-top: 56px;
  align-items: stretch;
}

.trending__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


.tcard {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s ease;
}

.tcard:hover {
  border-color: rgba(255, 255, 255, 0.13);
}

.tcard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tcard__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.tcard__viewall {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.tcard__viewall svg {
  transition: transform 0.3s ease;
}

.tcard__viewall:hover {
  color: var(--blue);
}

.tcard__viewall:hover svg {
  transform: translateX(3px);
}



.tabs {
  display: flex;
  gap: 24px;
  margin-top: 22px;
  border-bottom: 1px solid var(--card-border);
}

.tabs__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 2px 12px;
  font: 600 14px var(--font);
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.tabs__btn::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tabs__btn:hover {
  color: var(--text);
}

.tabs__btn.is-active {
  color: var(--text);
}

.tabs__btn.is-active::after {
  transform: scaleX(1);
}



.mtable {
  margin-top: 4px;
}

.mtable__head,
.mtable__row {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 0.6fr;
  align-items: center;
  gap: 12px;
}

.mtable__head {
  padding: 16px 8px 12px;
  font-size: 13px;
  color: var(--text-dim);
}

.mtable__row {
  padding: 20px 8px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.25s ease;
}

.mtable__row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.mtable__head span:last-child,
.mtable__action-col {
  text-align: right;
}


.coin {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.coin__icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, var(--c1, #444), var(--c2, #222));
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.coin__icon-img {
  display: block;
  object-fit: contain;
  background: transparent;
}

.coin__name {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.coin__name em {
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-dim);
}

.mtable__price {
  font-size: 15px;
  font-weight: 600;
}

.mtable__change {
  font-size: 14px;
  font-weight: 600;
}

.mtable__change.is-up   { color: var(--green); }
.mtable__change.is-down { color: var(--red); }


.spark {
  width: 80px;
  height: 28px;
  overflow: visible;
}

.market-sparkline {
  display: block;
  width: 80px !important;
  height: 28px !important;
}

.spark__line {
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spark__line.is-up   { stroke: var(--green); }
.spark__line.is-down { stroke: var(--red); }


.reveal.is-visible .spark__line {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: sparkDraw 1.2s ease 0.4s forwards;
}

@keyframes sparkDraw {
  to { stroke-dashoffset: 0; }
}

.mtable__trade {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: color 0.25s ease;
}

.mtable__row:hover .mtable__trade {
  color: var(--blue-hover);
}


.upcoming {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.upcoming__empty {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 48px 0;
}

.upcoming__folder {
  filter: drop-shadow(0 8px 20px rgba(1, 115, 229, 0.25));
}

.upcoming__empty-text {
  font-size: 14px;
  color: var(--text-muted);
}



.listing-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #14161d 0%, #101116 60%);
}

.listing-banner__content {
  position: relative;
  z-index: 1;
  max-width: 62%;
}

.listing-banner__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

.listing-banner__btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.listing-banner__btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}


.listing-banner__img {
  position: absolute;
  right: -14px;
  bottom: -14px;
  height: 82%;
  width: auto;
  pointer-events: none;
}



.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
          opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) var(--rd, 0s),
          transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) var(--rd, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal.is-visible .spark__line {
    animation: none;
    stroke-dasharray: none;
  }
}



@media (max-width: 1200px) {
  .trending__container {
    padding: 0 40px;
  }
  .trending__grid {
    grid-template-columns: 1fr 340px;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .trending {
    padding: 72px 0 56px;
  }
  .trending__grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .trending__side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .trending__side {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 600px) {
  .trending {
    padding: 56px 0 40px;
  }
  .trending__container {
    padding: 0 20px;
  }
  .tcard {
    padding: 20px;
  }
  .tabs {
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .tabs::-webkit-scrollbar {
    display: none;
  }

  .mtable__head,
  .mtable__row {
    grid-template-columns: 1.6fr 1fr 0.9fr 0.6fr;
    gap: 8px;
  }
  .mtable__chart-col {
    display: none;
  }
  .mtable__row {
    padding: 16px 4px;
  }
  .mtable__head {
    padding: 14px 4px 10px;
  }
  .coin__icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .coin__name {
    font-size: 14px;
  }

  .coin__name em {
    display: none;
  }
  .mtable__price {
    font-size: 14px;
  }
  .mtable__change {
    font-size: 13px;
  }
  .listing-banner__content {
    max-width: 68%;
  }
  .listing-banner__img {
    height: 64%;
  }
}



.products {
  --card-bg: #101116;
  --card-border: rgba(255, 255, 255, 0.07);

  position: relative;
  background: var(--bg);
  padding: 72px 0 96px;
}

.products__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}



.products__head {
  text-align: center;
}

.products__title {
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.products__subtitle {
  margin-top: 12px;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text-muted);
}


.products__grid {
  display: grid;
  grid-template-columns: 1fr 385px;
  gap: 24px;
  margin-top: 56px;
  align-items: stretch;
}

.products__main,
.products__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.products__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}



.pcard {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.4s ease;
}

.pcard::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
          radial-gradient(130% 110% at 80% 0%, rgba(1, 115, 229, 0.13) 0%, transparent 55%),
          radial-gradient(90% 90% at 15% 100%, rgba(1, 115, 229, 0.07) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.pcard:hover::after {
  opacity: 1;
}

.pcard:hover {
  border-color: rgba(1, 115, 229, 0.22);
}

.pcard > * {
  position: relative;
  z-index: 1;
}

.pcard__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pcard__title--lg {
  font-size: clamp(20px, 1.8vw, 26px);
}

.pcard__desc {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.hl {
  color: #8fb4dd;
}


.pcard__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  transition: color 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.pcard:hover .pcard__icon {
  color: var(--blue);
  border-color: rgba(1, 115, 229, 0.35);
  transform: translateY(-3px);
}


.pcard__more {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.25s ease;
}

.pcard__more:hover {
  color: var(--blue-hover);
}


.pcard__btn-wrap {
  height: 48px;
  margin-top: 22px;
}

.pcard__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 26px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: var(--blue);
  border-radius: 10px;
  opacity: 0;
  transform: translateY(14px);
  transition:
          opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
          transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
          background 0.3s ease;
}

.pcard:hover .pcard__btn {
  opacity: 1;
  transform: translateY(0);
}

.pcard__btn:hover {
  background: var(--blue-hover);
}

.pcard__btn svg {
  transition: transform 0.3s ease;
}

.pcard__btn:hover svg {
  transform: translateX(3px);
}

@media (hover: none) {
  .pcard__btn {
    opacity: 1;
    transform: none;
  }
  .pcard--buysell .pcard__info {
    transform: none;
  }
}


.pcard--trade {
  min-height: 420px;
  flex: 1 1 auto;
}

.pcard--trade .pcard__info {
  max-width: 55%;
}

.pcard__img-trade {
  position: absolute;
  right: -4%;
  bottom: -6%;
  z-index: 0;
  width: 62%;
  height: auto;
  transform: translate(7%, 9%);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.pcard--trade:hover .pcard__img-trade {
  transform: translate(0, 0) scale(1.02);
}


.pcard--buysell {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  padding: 0;
}

.pcard--buysell .pcard__info {
  transform: translateY(78px);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.pcard--buysell:hover .pcard__info {
  transform: translateY(0);
}

.pcard--buysell .pcard__btn {
  transition-delay: 0.08s;
}

.pcard__media {
  position: absolute;
  inset: 0 0 38% 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pcard__img-buysell {
  width: 88%;
  height: auto;
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.pcard--buysell:hover .pcard__img-buysell {
  transform: scale(1.06);
}

.pcard--buysell .pcard__info {
  padding: 28px;
}


@media (max-width: 1200px) {
  .products__container {
    padding: 0 40px;
  }
  .products__grid {
    grid-template-columns: 1fr 340px;
    gap: 20px;
  }
  .products__main,
  .products__side,
  .products__row {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .products {
    padding: 56px 0 72px;
  }
  .products__grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .pcard--trade {
    min-height: 380px;
  }
  .pcard--buysell {
    min-height: 440px;
  }
}

@media (max-width: 600px) {
  .products {
    padding: 40px 0 56px;
  }
  .products__container {
    padding: 0 20px;
  }
  .products__row {
    grid-template-columns: 1fr;
  }
  .pcard {
    padding: 20px;
  }
  .pcard--trade {
    min-height: 0;
    padding-bottom: 0;
  }
  .pcard--trade .pcard__info {
    max-width: none;
  }
  .pcard__img-trade {
    position: static;
    display: block;
    width: 100%;
    margin-top: 8px;
    transform: none;
  }
  .pcard--trade:hover .pcard__img-trade {
    transform: none;
  }
  .pcard--buysell {
    min-height: 440px;
  }
  .pcard--buysell .pcard__info {
    padding: 20px;
  }
  .pcard__media {
    inset: 0 0 52% 0;
  }
  .pcard__img-buysell {
    width: 72%;
  }
}


.brands {
  position: relative;
  background: var(--bg);
  padding: 40px 0;
  overflow: hidden;
}


.brands::before,
.brands::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(60px, 10vw, 180px);
  z-index: 2;
  pointer-events: none;
}

.brands::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.brands::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}


.brands__track {
  display: flex;
  width: max-content;
  animation: brandsScroll 35s linear infinite;
}


.brands:hover .brands__track {
  animation-play-state: paused;
}

@keyframes brandsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brands__inner {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brands__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(24px, 3.5vw, 56px);
}

.brands__slide img {
  display: block;
  max-width: var(--logo-mobile-max-width, 90px);
  height: auto;
  opacity: 0.65;
  transition: opacity 0.35s ease;
}

.brands__slide:hover img {
  opacity: 1;
}

@media (min-width: 1024px) {
  .brands__slide img {
    max-width: var(--logo-max-width, 160px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brands__track {
    animation: none;
  }
}


@media (max-width: 992px) {
  .brands {
    padding: 32px 0;
  }
  .brands__track {
    animation-duration: 26s;
  }
}

@media (max-width: 600px) {
  .brands {
    padding: 24px 0;
  }
}



.appblock {
  position: relative;
  background: #0F121A;
  overflow: hidden;
}

.appblock__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}



.appblock__content {
  max-width: 660px;
}

.appblock__title {
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.appblock__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 22px 11px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.store-badge:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-3px);
}

.store-badge__icon {
  flex-shrink: 0;
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
}

.store-badge__text small {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}



.appblock__media {
  flex: 0 1 auto;
  line-height: 0;
}

.appblock__img {
  display: block;
  width: auto;

  height: min(52vh, 560px);
  max-width: 42vw;
  object-fit: contain;
}



@media (max-width: 1200px) {
  .appblock__container {
    padding: 40px 40px;
  }
}


@media (max-width: 992px) {
  .appblock__container {
    flex-direction: column;
    align-items: flex-start;
    padding: 56px 40px 48px;
    gap: 24px;
  }
  .appblock__media {
    align-self: center;
  }
  .appblock__img {
    height: auto;
    width: min(64vw, 430px);
    max-width: none;
  }
}


@media (max-width: 600px) {
  .appblock__container {
    padding: 44px 20px 36px;
  }
  .appblock__badges {
    margin-top: 24px;
    width: 100%;
  }
  .store-badge {
    flex: 1 1 calc(50% - 14px);
    justify-content: center;
    padding: 10px 12px;
  }
  .appblock__img {
    width: min(80vw, 360px);
  }
}



.faq {
  position: relative;
  background: var(--bg);
  padding: 96px 0;
}

.faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

.faq__title {
  text-align: center;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.faq__list {
  margin-top: 48px;
}



.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 26px 4px;
  font: 700 16px/1.4 var(--font);
  letter-spacing: -0.01em;
  text-align: left;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq__q:hover {
  color: var(--blue-hover);
}


.faq__icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--text-muted);
  border-radius: 2px;
  transition: background 0.3s ease;
}

.faq__icon::before {
  width: 18px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 2px;
  height: 18px;
  transform: translate(-50%, -50%);
}

.faq__q:hover .faq__icon::before,
.faq__q:hover .faq__icon::after {
  background: var(--blue-hover);
}


.faq__item.is-open .faq__icon {
  transform: rotate(135deg);
}

.faq__item.is-open .faq__icon::before,
.faq__item.is-open .faq__icon::after {
  background: var(--blue);
}


.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__a-inner {
  overflow: hidden;
  min-height: 0;
}

.faq__a-inner p {
  margin: 0;
  padding: 2px 4px 26px;
  max-width: 860px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);

  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
}

.faq__item.is-open .faq__a-inner p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  .faq__a,
  .faq__a-inner p,
  .faq__icon {
    transition: none;
  }
}



@media (max-width: 992px) {
  .faq {
    padding: 72px 0;
  }
  .faq__container {
    padding: 0 40px;
  }
}

@media (max-width: 600px) {
  .faq {
    padding: 56px 0;
  }
  .faq__container {
    padding: 0 20px;
  }
  .faq__list {
    margin-top: 32px;
  }
  .faq__q {
    padding: 20px 2px;
    font-size: 15px;
    gap: 16px;
  }
  .faq__icon {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
  }
  .faq__icon::before { width: 16px; }
  .faq__icon::after  { height: 16px; }
  .faq__a-inner p {
    font-size: 14px;
    padding-bottom: 20px;
  }
}


.cta {
  position: relative;
  background: var(--bg);
  padding: 24px 0 96px;
}

.cta__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}



.cta__card {
  position: relative;
  overflow: hidden;
  background: #0F121A;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 44px 48px;
  transition: border-color 0.4s ease;
}

.cta__card:hover {
  border-color: rgba(255, 255, 255, 0.11);
}

.cta__content {
  position: relative;
  z-index: 1;
  max-width: 56%;
}

.cta__title {
  font-size: clamp(20px, 1.9vw, 27px);
  font-weight: 700;
  letter-spacing: -0.01em;
}



.cta__form {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  max-width: 480px;
}

.cta__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 46px;
  padding: 0 18px;
  font: 500 14px var(--font);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cta__input::placeholder {
  color: var(--text-dim);
}

.cta__input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(1, 115, 229, 0.16);
}

.cta__btn {
  flex: 0 0 auto;
  height: 46px;
  padding: 0 36px;
  font: 600 14px var(--font);
  color: #fff;
  background: var(--blue);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta__btn:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(1, 115, 229, 0.3);
}

.cta__btn:active {
  transform: translateY(0);
}


.cta__img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 150%;
  width: auto;
  pointer-events: none;
}


@media (max-width: 1200px) {
  .cta__container {
    padding: 0 40px;
  }
}

@media (max-width: 992px) {
  .cta {
    padding: 16px 0 72px;
  }
  .cta__card {
    padding: 36px 32px;
  }
  .cta__content {
    max-width: 100%;
  }

  .cta__img {
    height: 120%;
    right: -12%;
    opacity: 0.35;
  }
}

@media (max-width: 600px) {
  .cta {
    padding: 8px 0 56px;
  }
  .cta__container {
    padding: 0 20px;
  }
  .cta__card {
    padding: 28px 20px;
  }
  .cta__form {
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
    max-width: none;
  }
  .cta__input,
  .cta__btn {
    width: 100%;
    height: 50px;
  }
  .cta__img {
    height: 100%;
    right: -30%;
    opacity: 0.22;
  }
}
[data-theme="light"] {
  --bg: #f5f7fb;
  --text: #0e1219;
  --text-muted: #5b6474;
  --text-dim: #8a93a4;
  --border: rgba(15, 25, 45, 0.14);
}

body {
  transition: background 0.3s ease;
}

[data-theme="light"] .hero {
  background: #ffffff;
}

[data-theme="light"] .hero__video {
  filter: invert(1);
  opacity: 0.27;
}

[data-theme="light"] .hero__overlay {
  background: none;
}

.hero__plexus {
  display: none;
}

[data-theme="light"] .hero__input {
  background: #ffffff;
}

[data-theme="light"] .hero__input:focus {
  background: #ffffff;
}

[data-theme="light"] .trending {
  --card-bg: #ffffff;
  --card-border: rgba(15, 25, 45, 0.08);
  --red: #e0314b;
  --green: #1ea567;
}

[data-theme="light"] .tcard {
  box-shadow: 0 1px 2px rgba(15, 25, 45, 0.04), 0 10px 28px rgba(15, 25, 45, 0.05);
}

[data-theme="light"] .tcard:hover {
  border-color: rgba(15, 25, 45, 0.16);
}

[data-theme="light"] .mtable__row:hover {
  background: rgba(15, 25, 45, 0.035);
}

[data-theme="light"] .listing-banner {
  background: linear-gradient(135deg, #eef3fa 0%, #ffffff 60%);
}

[data-theme="light"] .listing-banner__btn {
  background: rgba(15, 25, 45, 0.03);
  border-color: rgba(15, 25, 45, 0.16);
}

[data-theme="light"] .listing-banner__btn:hover {
  color: #ffffff;
}

[data-theme="light"] .products {
  --card-bg: #ffffff;
  --card-border: rgba(15, 25, 45, 0.08);
}

[data-theme="light"] .pcard {
  box-shadow: 0 1px 2px rgba(15, 25, 45, 0.04), 0 10px 28px rgba(15, 25, 45, 0.05);
}

[data-theme="light"] .pcard::after {
  background:
          radial-gradient(130% 110% at 80% 0%, rgba(1, 115, 229, 0.09) 0%, transparent 55%),
          radial-gradient(90% 90% at 15% 100%, rgba(1, 115, 229, 0.05) 0%, transparent 50%);
}

[data-theme="light"] .pcard__icon {
  background: rgba(15, 25, 45, 0.04);
}

[data-theme="light"] .hl {
  color: #2e6cb8;
}

[data-theme="light"] .appblock {
  background: #e9edf5;
}

[data-theme="light"] .store-badge {
  background: #ffffff;
  border-color: rgba(15, 25, 45, 0.12);
}

[data-theme="light"] .store-badge:hover {
  background: #ffffff;
  border-color: rgba(15, 25, 45, 0.28);
  box-shadow: 0 8px 20px rgba(15, 25, 45, 0.08);
}

[data-theme="light"] .store-badge svg path {
  fill: #0e1219;
}

[data-theme="light"] .faq__item {
  border-bottom-color: rgba(15, 25, 45, 0.1);
}

[data-theme="light"] .faq__item:first-child {
  border-top-color: rgba(15, 25, 45, 0.1);
}

[data-theme="light"] .cta__card {
  background: #ffffff;
  border-color: rgba(15, 25, 45, 0.08);
  box-shadow: 0 1px 2px rgba(15, 25, 45, 0.04), 0 10px 28px rgba(15, 25, 45, 0.05);
}

[data-theme="light"] .cta__card:hover {
  border-color: rgba(15, 25, 45, 0.16);
}

[data-theme="light"] .cta__input {
  background: #f5f7fb;
  border-color: rgba(15, 25, 45, 0.14);
}

/* Upcoming list — reuse trending row look in the landing palette */
.upcoming__list{display:flex;flex-direction:column;gap:2px}
.upcoming__row{display:grid;grid-template-columns:1fr auto auto;align-items:center;gap:10px;padding:10px 8px;border-radius:10px;text-decoration:none;color:var(--text);transition:background .15s ease}
.upcoming__row:hover{background:rgba(255,255,255,.04)}
.upcoming__price{font-variant-numeric:tabular-nums;color:var(--text)}
.upcoming__change{font-variant-numeric:tabular-nums;min-width:64px;text-align:right}
.upcoming__change.is-up{color:#2ebd85}
.upcoming__change.is-down{color:#f6465d}
