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

:root,
[data-theme="dark"] {
  --bg: #080b0e;
  --bg-2: #070a0d;
  --panel: #10141a;
  --panel-soft: #0f1318;
  --panel-hover: rgba(17, 23, 30, 0.78);
  --text: #ffffff;
  --title: #f7f8f9;
  --title-soft: #f5f6f7;
  --muted: rgba(255, 255, 255, 0.58);
  --muted-2: #8c96a5;
  --placeholder: rgba(255, 255, 255, 0.42);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.15);
  --border-soft: rgba(255, 255, 255, 0.055);
  --accent: #34e88f;
  --accent-rgb: 52, 232, 143;
  --red: #ff4d4d;
  --green: #16c97a;
  --btn-bg: #f4f4f4;
  --btn-text: #1c1d20;
  --dark-overlay-1: rgba(8, 11, 14, 0.88);
  --dark-overlay-2: rgba(8, 11, 14, 0.68);
  --dark-overlay-3: rgba(8, 11, 14, 0.2);
  --form-bg: rgba(10, 12, 15, 0.64);
  --form-bg-focus: rgba(10, 12, 15, 0.78);
  --shadow: rgba(0, 0, 0, 0.34);
  --shadow-strong: rgba(0, 0, 0, 0.48);
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #f6f8fb;
  --bg-2: #ffffff;
  --panel: #ffffff;
  --panel-soft: #f1f5f9;
  --panel-hover: rgba(255, 255, 255, 0.96);
  --text: #111827;
  --title: #07110c;
  --title-soft: #101827;
  --muted: rgba(17, 24, 39, 0.66);
  --muted-2: #667085;
  --placeholder: rgba(17, 24, 39, 0.42);
  --border: rgba(15, 23, 42, 0.1);
  --border-strong: rgba(15, 23, 42, 0.16);
  --border-soft: rgba(15, 23, 42, 0.08);
  --accent: #34e88f;
  --accent-rgb: 52, 232, 143;
  --red: #e5484d;
  --green: #10a86b;
  --btn-bg: #101827;
  --btn-text: #ffffff;
  --dark-overlay-1: rgba(246, 248, 251, 0.94);
  --dark-overlay-2: rgba(246, 248, 251, 0.76);
  --dark-overlay-3: rgba(246, 248, 251, 0.18);
  --form-bg: rgba(255, 255, 255, 0.78);
  --form-bg-focus: rgba(255, 255, 255, 0.92);
  --shadow: rgba(15, 23, 42, 0.12);
  --shadow-strong: rgba(15, 23, 42, 0.18);
  color-scheme: light;
}




body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
          radial-gradient(circle at 12% 10%, rgba(52, 232, 143, 0.075), transparent 24%),
          radial-gradient(circle at 86% 22%, rgba(52, 232, 143, 0.055), transparent 22%),
          radial-gradient(circle at 48% 82%, rgba(98, 92, 255, 0.045), transparent 26%),
          linear-gradient(180deg, #070a0d 0%, #090c10 42%, #070a0d 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  pointer-events: none;
  background:
          linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 22%, #000 0%, transparent 68%);
}

@keyframes softGlowMove {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.82;
  }

  50% {
    transform: translate3d(0, -14px, 0);
    opacity: 1;
  }
}

.page {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.page::before {
  content: "";
  position: absolute;
  inset: -120px 0 auto 0;
  height: 680px;
  background:
          radial-gradient(circle at 72% 42%, rgba(52, 232, 143, 0.11), transparent 28%),
          radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.035), transparent 22%);
  filter: blur(8px);
  opacity: 0.72;
  pointer-events: none;
  animation: softGlowMove 12s ease-in-out infinite;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  background: transparent;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(90deg, rgba(8, 11, 14, 0.88) 0%, rgba(8, 11, 14, 0.68) 48%, rgba(8, 11, 14, 0.2) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1350px;
  min-height: 500px;
  margin: 0 auto;
  padding: 58px 46px 28px;
  display: grid;
  grid-template-columns: minmax(360px, 500px) 1fr;
  align-items: center;
  gap: 36px;
}

.hero-content {
  transform: translateY(-6px);
}

.hero-title {
  max-width: 560px;
  font-size: clamp(38px, 3.7vw, 52px);
  line-height: 1.18;
  letter-spacing: -2px;
  font-weight: 800;
  color: #f7f7f7;
}

.hero-subtitle {
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 500;
}

.bonus {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  font-weight: 700;
  color: #f5f5f5;
}

.bonus-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 8px rgba(52, 232, 143, 0.25));
}

.bonus span {
  color: var(--accent);
}

.signup-form {
  margin-top: 22px;
  width: min(100%, 500px);
  height: 62px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(10, 12, 15, 0.64);
  box-shadow:
          inset 0 0 0 1px rgba(255, 255, 255, 0.015),
          0 18px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.signup-form:focus-within {
  border-color: rgba(52, 232, 143, 0.48);
  background: rgba(10, 12, 15, 0.78);
  box-shadow:
          0 0 0 4px rgba(52, 232, 143, 0.08),
          0 18px 55px rgba(0, 0, 0, 0.22);
}

.signup-form input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 10px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

.signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.signup-form button {
  width: 112px;
  height: 46px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 13px;
  background: #f4f4f4;
  color: #1c1d20;
  font-size: 16px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.signup-form button:hover {
  transform: translateY(-1px);
  background: var(--accent);
  color: #06100b;
  box-shadow: none;
}

.socials {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-btn {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.015);
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(52, 232, 143, 0.28);
  background: rgba(52, 232, 143, 0.045);
  color: var(--accent);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.hero-media {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  opacity: 0.94;
  filter: drop-shadow(0 35px 80px rgba(0, 0, 0, 0.48));
}

.video-wrap::before {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 2;
  pointer-events: none;
}

.video-wrap video,
.video-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.video-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
          radial-gradient(circle at 50% 50%, rgba(52, 232, 143, 0.18), transparent 28%),
          linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.46);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.gems-section {
  position: relative;
  padding: 32px 32px 46px;
  background: #080b0e;
}

.gems-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.gems-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.gems-title {
  font-size: clamp(32px, 3.1vw, 44px);
  line-height: 1.05;
  letter-spacing: -1.8px;
  font-weight: 850;
  color: #f6f7f8;
}

.view-more {
  min-width: 105px;
  height: 36px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #050607;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.view-more:hover {
  transform: translateY(-1px);
  background: var(--accent);
  box-shadow: none;
}

.market-card {
  overflow: hidden;
  border-radius: 7px;
  background: rgba(15, 19, 25, 0.72);
  box-shadow: none;
}

.market-tabs {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 34px 38px 30px;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.market-tabs::-webkit-scrollbar {
  display: none;
}

.market-tab {
  position: relative;
  border: 0;
  background: transparent;
  color: #8d97a6;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  transition: color 0.2s ease;
}

.market-tab:hover,
.market-tab.active {
  color: #ffffff;
}

.market-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.market-tab:hover::after,
.market-tab.active::after {
  width: 18px;
}

.market-table-wrap {
  padding: 0 16px 28px;
  overflow-x: auto;
  scrollbar-color: rgba(255,255,255,0.18) transparent;
}

.market-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.market-table thead tr {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.market-table th {
  padding: 18px 24px;
  text-align: left;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.market-table th:nth-child(2),
.market-table td:nth-child(2) {
  width: 25%;
}

.market-table th:nth-child(3),
.market-table td:nth-child(3),
.market-table th:nth-child(4),
.market-table td:nth-child(4) {
  text-align: right;
}

.market-table th:nth-child(5),
.market-table td:nth-child(5) {
  text-align: center;
}

.market-table th:nth-child(6),
.market-table td:nth-child(6) {
  text-align: right;
}

.market-table td {
  padding: 18px 24px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  vertical-align: middle;
}

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

.coin-icon {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  font-size: 17px;
  font-weight: 900;
}

.coin-btc { background: #f7931a; color: #fff; }
.coin-eth { background: #f4f6f8; color: #222; }
.coin-sol { background: #08090c; color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); }
.coin-bnb { background: #f3ba2f; color: #fff; }
.coin-xrp { background: #232a31; color: #fff; }
.coin-trx { background: #ff183b; color: #fff; }

.coin-info strong {
  display: block;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 850;
  color: #ffffff;
}

.coin-info span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 650;
  color: #8b96a6;
}

.price {
  letter-spacing: -0.4px;
}

.change {
  font-weight: 500;
}

.change.is-up {
  color: var(--green);
}

.change.is-down {
  color: var(--red);
}

.spark {
  width: 76px;
  height: 28px;
  display: inline-block;
  overflow: visible;
}

.spark path {
  fill: none;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spark.is-up path {
  stroke: var(--green);
}

.spark.is-down path {
  stroke: var(--red);
}

.trade-btn {
  min-width: 82px;
  height: 32px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.trade-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(52, 232, 143, 0.32);
  background: rgba(52, 232, 143, 0.045);
  color: var(--accent);
  box-shadow: none;
}

@media (max-width: 1100px) {
  .hero-inner {
    padding: 48px 28px 34px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(9, 11, 13, 0.98) 0%, rgba(9, 11, 13, 0.86) 58%, rgba(9, 11, 13, 0.38) 100%);
  }

  .bonus {
    margin-top: 48px;
  }

  .hero-media {
    min-height: 300px;
  }

  .video-wrap {
    width: min(76vw, 380px);
  }

  .gems-section {
    padding: 28px 18px 38px;
  }

  .market-tabs {
    padding: 26px 22px 24px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding: 40px 16px 30px;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1.8px;
  }

  .hero-subtitle {
    margin-top: 22px;
    font-size: 16px;
  }

  .bonus {
    margin-top: 32px;
    font-size: 14px;
    align-items: flex-start;
  }

  .signup-form {
    height: 56px;
    border-radius: 18px;
  }

  .signup-form input {
    font-size: 16px;
  }

  .signup-form button {
    width: 96px;
    height: 42px;
    font-size: 15px;
  }

  .socials {
    gap: 14px;
  }

  .social-btn {
    width: 42px;
    height: 42px;
  }

  .hero-media {
    min-height: 240px;
  }

  .video-wrap {
    width: min(86vw, 300px);
    border-radius: 26px;
  }

  .gems-section {
    padding: 26px 12px 32px;
  }

  .gems-head {
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .gems-title {
    font-size: 30px;
    letter-spacing: -1.2px;
  }

  .view-more {
    height: 34px;
    min-width: 92px;
    padding: 0 14px;
    font-size: 13px;
  }

  .market-card {
    border-radius: 10px;
  }

  .market-tabs {
    gap: 22px;
    padding: 22px 16px 20px;
  }

  .market-tab {
    font-size: 15px;
  }

  .market-table-wrap {
    padding: 0 10px 24px;
  }

  .market-table td,
  .market-table th {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.why-section {
  position: relative;
  padding: 42px 32px 76px;
  background:
          radial-gradient(circle at 50% 0%, rgba(52, 232, 143, 0.045), transparent 28%),
          #080b0e;
}

.why-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.why-title {
  text-align: center;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: -1.3px;
  font-weight: 850;
  color: #f7f8f9;
  margin-bottom: 56px;
}

.why-title span {
  color: var(--accent);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  min-height: 305px;
  padding: 38px 30px 34px;
  border-radius: 8px;
  background: rgba(15, 19, 25, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.055);
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.why-card:hover {
  transform: translateY(-1px);
  border-color: rgba(52, 232, 143, 0.18);
  background: rgba(17, 23, 30, 0.78);
  box-shadow: none;
}

.why-image-slot {
  position: relative;
  width: 92px;
  height: 92px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background:
          radial-gradient(circle at 35% 25%, rgba(52, 232, 143, 0.18), transparent 36%),
          linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px dashed rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  overflow: hidden;
}

.why-image-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  z-index: 2;
}

.why-card h3 {
  max-width: 270px;
  min-height: 46px;
  margin: 0 auto;
  color: var(--muted-2);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: -0.2px;
}

.why-card p {
  max-width: 300px;
  margin: 18px auto 0;
  color: #8b95a3;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

@media (max-width: 980px) {
  .why-section {
    padding: 36px 18px 58px;
  }

  .why-title {
    margin-bottom: 36px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .why-card {
    min-height: 280px;
    padding: 30px 22px 28px;
  }
}

@media (max-width: 620px) {
  .why-section {
    padding: 30px 12px 46px;
  }

  .why-title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-card {
    min-height: auto;
    padding: 26px 18px 24px;
    border-radius: 10px;
  }

  .why-image-slot {
    width: 78px;
    height: 78px;
    margin-bottom: 22px;
    border-radius: 18px;
  }

  .why-card h3 {
    min-height: auto;
    font-size: 16px;
  }

  .why-card p {
    font-size: 13px;
    margin-top: 12px;
  }
}


.app-section {
  position: relative;
  padding: 74px 32px 82px;
  background:
          radial-gradient(circle at 72% 48%, rgba(52, 232, 143, 0.08), transparent 24%),
          #080b0e;
  overflow: hidden;
}

.app-inner {
  max-width: 1040px;
  min-height: 350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: 70px;
}

.app-title {
  max-width: 520px;
  color: #f7f8f9;
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 1.18;
  letter-spacing: -1.7px;
  font-weight: 850;
}

.app-title span {
  color: var(--accent);
}

.app-text {
  max-width: 520px;
  margin-top: 22px;
  color: #8b95a3;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
}

.store-buttons {
  margin-top: 44px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.store-btn {
  height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #07090b;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.store-btn:hover {
  transform: translateY(-1px);
  background: var(--accent);
  box-shadow: none;
}

.store-btn svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.app-visual {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-image-slot {
  position: relative;
  width: min(100%, 430px);
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 34px;
  background:
          radial-gradient(circle at 48% 42%, rgba(52, 232, 143, 0.14), transparent 34%),
          linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012));
  border: 1px dashed rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.8px;
  overflow: hidden;
}

.app-image-slot::before,
.app-image-slot::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.app-image-slot::before {
  width: 280px;
  height: 280px;
  border: 20px solid rgba(116, 111, 255, 0.42);
  left: -38px;
  top: 36px;
  transform: rotate(-32deg);
  opacity: 0.65;
}

.app-image-slot::after {
  width: 250px;
  height: 250px;
  border: 18px solid rgba(116, 111, 255, 0.48);
  right: -50px;
  bottom: 10px;
  transform: rotate(18deg);
  opacity: 0.62;
}

.app-image-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 3;
}

.app-mock-card {
  position: absolute;
  z-index: 2;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(18, 23, 31, 0.86);
  box-shadow: 0 20px 55px rgba(0,0,0,0.35);
  backdrop-filter: blur(14px);
}

.app-mock-card.main {
  width: 260px;
  height: 178px;
  right: 30px;
  bottom: 36px;
  padding: 16px 18px;
}

.app-mock-card.back {
  width: 240px;
  height: 170px;
  right: 52px;
  top: 22px;
  opacity: 0.72;
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 850;
}

.mock-pair {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mock-coin {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f7931a;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.mock-price {
  color: var(--accent);
}

.mock-chart {
  width: 100%;
  height: 118px;
  border-radius: 10px;
  background:
          linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
          linear-gradient(180deg, rgba(255,255,255,0.055), rgba(52,232,143,0.05));
  background-size: 32px 32px, 32px 32px, 100% 100%;
  overflow: hidden;
}

.mock-chart svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 980px) {
  .app-section {
    padding: 58px 18px 64px;
  }

  .app-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .app-visual {
    min-height: 300px;
  }

  .app-image-slot {
    max-width: 390px;
    height: 300px;
  }
}

@media (max-width: 620px) {
  .app-section {
    padding: 44px 12px 52px;
  }

  .app-inner {
    gap: 32px;
  }

  .app-title {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .app-text {
    margin-top: 16px;
    font-size: 13px;
  }

  .store-buttons {
    margin-top: 28px;
    gap: 12px;
  }

  .store-btn {
    width: 100%;
    height: 44px;
    font-size: 14px;
  }

  .app-visual {
    min-height: 250px;
  }

  .app-image-slot {
    width: 100%;
    height: 245px;
    border-radius: 22px;
  }

  .app-mock-card.main {
    width: 230px;
    height: 158px;
    right: 50%;
    bottom: 28px;
    transform: translateX(50%);
  }

  .app-mock-card.back {
    width: 210px;
    height: 130px;
    right: 50%;
    top: 20px;
    transform: translateX(45%);
  }

  .mock-chart {
    height: 98px;
  }
}


.faq-section {
  position: relative;
  padding: 46px 32px 58px;
  background: #080b0e;
}

.faq-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 54px;
}

.faq-title {
  color: #f7f8f9;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1;
  letter-spacing: -1.5px;
  font-weight: 850;
}

.contact-btn {
  height: 34px;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #07090b;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn:hover {
  transform: translateY(-1px);
  background: var(--accent);
  box-shadow: none;
}

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

.faq-item {
  border-radius: 8px;
  background: rgba(15, 19, 25, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.055);
  overflow: hidden;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.faq-item:hover,
.faq-item.active {
  border-color: rgba(52, 232, 143, 0.16);
  background: rgba(17, 23, 30, 0.78);
  box-shadow: none;
}

.faq-question {
  width: 100%;
  min-height: 76px;
  padding: 0 38px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 0;
  background: transparent;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: -0.25px;
}

.faq-plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.92);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transform: translate(-50%, -50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-plus {
  border-color: var(--accent);
  transform: rotate(180deg);
}

.faq-item.active .faq-plus::before,
.faq-item.active .faq-plus::after {
  background: var(--accent);
}

.faq-item.active .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer-inner {
  padding: 0 72px 28px 24px;
  color: #8b95a3;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.faq-answer-inner strong {
  color: #ffffff;
  font-weight: 850;
}

@media (max-width: 760px) {
  .faq-section {
    padding: 36px 14px 44px;
  }

  .faq-head {
    margin-bottom: 30px;
  }

  .faq-title {
    font-size: 32px;
  }

  .faq-list {
    gap: 14px;
  }

  .faq-question {
    min-height: 66px;
    padding: 0 18px;
  }

  .faq-question span:first-child {
    font-size: 15px;
  }

  .faq-answer-inner {
    padding: 0 44px 22px 18px;
    font-size: 13px;
  }
}


.market-card,
.why-card,
.faq-item {
  backdrop-filter: blur(16px);
}

.market-card {
  border: 1px solid rgba(255, 255, 255, 0.045);
}

.gems-section,
.why-section,
.app-section,
.faq-section {
  background: transparent;
}

.gems-section::before,
.why-section::before,
.app-section::before,
.faq-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1180px, calc(100% - 32px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  pointer-events: none;
}

.gems-section,
.why-section,
.app-section,
.faq-section {
  position: relative;
}

.hero-title,
.gems-title,
.why-title,
.app-title,
.faq-title {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.035);
}

.view-more:hover,
.contact-btn:hover,
.store-btn:hover,
.signup-form button:hover {
  transform: translateY(-1px);
}

.social-btn:hover,
.trade-btn:hover,
.market-tab:hover,
.faq-item:hover,
.why-card:hover {
  box-shadow: none;
}

.why-image-slot,
.app-image-slot {
  border-style: solid;
  background:
          radial-gradient(circle at 35% 25%, rgba(52, 232, 143, 0.12), transparent 38%),
          linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}

.video-wrap {
  filter: drop-shadow(0 26px 62px rgba(0, 0, 0, 0.34));
}

.app-mock-card {
  box-shadow: 0 18px 44px rgba(0,0,0,0.24);
}


.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
          opacity 0.72s cubic-bezier(.22, 1, .36, 1),
          transform 0.72s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.reveal-scale {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.975);
  transition:
          opacity 0.78s cubic-bezier(.22, 1, .36, 1),
          transform 0.78s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-title.reveal {
  transform: translate3d(0, 16px, 0);
}

.hero-title.reveal.is-visible {
  transform: translate3d(0, 0, 0);
}

.market-table tbody tr.reveal {
  transform: translate3d(0, 12px, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .page::before {
    animation: none !important;
  }
}


/* =========================
   Theme-aware overrides
   ========================= */


body::before {
  background:
          radial-gradient(circle at 12% 10%, rgba(var(--accent-rgb), 0.075), transparent 24%),
          radial-gradient(circle at 86% 22%, rgba(var(--accent-rgb), 0.055), transparent 22%),
          radial-gradient(circle at 48% 82%, rgba(98, 92, 255, 0.045), transparent 26%),
          linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 42%, var(--bg-2) 100%);
}

body::after {
  background:
          linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
}

[data-theme="light"] body::after {
  opacity: 0.38;
  background:
          linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
          linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
}

.page::before {
  background:
          radial-gradient(circle at 72% 42%, rgba(var(--accent-rgb), 0.11), transparent 28%),
          radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.035), transparent 22%);
}

[data-theme="light"] .page::before {
  background:
          radial-gradient(circle at 72% 42%, rgba(var(--accent-rgb), 0.16), transparent 28%),
          radial-gradient(circle at 26% 24%, rgba(15, 23, 42, 0.035), transparent 22%);
}

.hero::before {
  background: linear-gradient(90deg, var(--dark-overlay-1) 0%, var(--dark-overlay-2) 48%, var(--dark-overlay-3) 100%);
}

.hero-title,
.gems-title,
.why-title,
.app-title,
.faq-title {
  color: var(--title);
}

.hero-subtitle,
.app-text,
.why-card p,
.faq-answer-inner,
.coin-info span {
  color: var(--muted-2);
}

.bonus,
.market-table th,
.market-table td,
.coin-info strong,
.faq-question,
.faq-answer-inner strong,
.social-btn {
  color: var(--text);
}

.signup-form {
  border-color: var(--border-strong);
  background: var(--form-bg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015), 0 18px 55px var(--shadow);
}

.signup-form:focus-within {
  border-color: rgba(var(--accent-rgb), 0.48);
  background: var(--form-bg-focus);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.08), 0 18px 55px var(--shadow);
}

.signup-form input {
  color: var(--text);
}

.signup-form input::placeholder {
  color: var(--placeholder);
}

.signup-form button,
.view-more,
.contact-btn,
.store-btn {
  background: var(--btn-bg);
  color: var(--btn-text);
}

.signup-form button:hover,
.view-more:hover,
.contact-btn:hover,
.store-btn:hover {
  background: var(--accent);
  color: #06100b;
}

.social-btn,
.trade-btn {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.015);
  color: var(--text);
}

[data-theme="light"] .social-btn,
[data-theme="light"] .trade-btn {
  background: rgba(255, 255, 255, 0.72);
}

.social-btn:hover,
.trade-btn:hover {
  border-color: rgba(var(--accent-rgb), 0.32);
  background: rgba(var(--accent-rgb), 0.07);
  color: var(--accent);
}

.gems-section,
.why-section,
.app-section,
.faq-section {
  background: transparent;
}

.market-card,
.why-card,
.faq-item {
  background: color-mix(in srgb, var(--panel) 72%, transparent);
  border-color: var(--border-soft);
}

.market-card {
  border-color: var(--border-soft);
}

.why-card:hover,
.faq-item:hover,
.faq-item.active {
  border-color: rgba(var(--accent-rgb), 0.18);
  background: var(--panel-hover);
}

.market-tab {
  color: var(--muted-2);
}

.market-tab:hover,
.market-tab.active {
  color: var(--text);
}

.market-table thead tr {
  border-top-color: var(--border);
  border-bottom-color: var(--border);
}

.coin-sol {
  background: var(--title-soft);
  color: var(--bg-2);
  box-shadow: inset 0 0 0 1px var(--border);
}

.coin-xrp {
  background: var(--title-soft);
  color: var(--bg-2);
}

.video-wrap {
  filter: drop-shadow(0 26px 62px var(--shadow-strong));
}

.video-wrap::before,
.video-fallback,
.why-image-slot,
.app-image-slot {
  border-color: var(--border-strong);
  color: var(--muted-2);
}

[data-theme="light"] .video-fallback,
[data-theme="light"] .why-image-slot,
[data-theme="light"] .app-image-slot {
  background:
          radial-gradient(circle at 35% 25%, rgba(var(--accent-rgb), 0.18), transparent 38%),
          linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.76));
}

.app-mock-card {
  border-color: var(--border-strong);
  background: color-mix(in srgb, var(--panel) 86%, transparent);
  box-shadow: 0 18px 44px var(--shadow);
}

.mock-chart {
  background:
          linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
          linear-gradient(180deg, rgba(255,255,255,0.055), rgba(var(--accent-rgb),0.05));
}

[data-theme="light"] .mock-chart {
  background:
          linear-gradient(rgba(15,23,42,0.055) 1px, transparent 1px),
          linear-gradient(90deg, rgba(15,23,42,0.055) 1px, transparent 1px),
          linear-gradient(180deg, rgba(255,255,255,0.75), rgba(var(--accent-rgb),0.09));
}

.faq-plus {
  border-color: color-mix(in srgb, var(--text) 86%, transparent);
}

.faq-plus::before,
.faq-plus::after {
  background: var(--text);
}

.gems-section::before,
.why-section::before,
.app-section::before,
.faq-section::before {
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

@media (max-width: 1100px) {
  .hero::before {
    background: linear-gradient(180deg, var(--dark-overlay-1) 0%, var(--dark-overlay-2) 58%, var(--dark-overlay-3) 100%);
  }
}
