html.lang-pending body {
  visibility: hidden;
}

@font-face {
  font-family: InterVar;
  src: url("./assets/fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: AurexMono;
  src: url("./assets/fonts/IBMPlexMono-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

:root {
  --yellow: #fcd535;
  --yellow-hover: #f0b90b;
  --yellow-press: #e3b008;
  --ink: #181a20;
  --text: #eaecef;
  --muted: #848e9c;
  --muted-2: #929aa5;
  --hair: #2b3139;
  --hair-strong: #474d57;
  --bg: #0b0e11;
  --bg-2: #181a20;
  --card: #1e2329;
  --card-2: #2b3139;
  --up: #0ecb81;
  --down: #f6465d;
  --white: #fff;
  --header-h: 64px;
  --max: 1200px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  --font: InterVar, Inter, "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", "Noto Sans JP",
    "Noto Sans KR", sans-serif;
  --mono: AurexMono, "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}

.skip:focus {
  left: 8px;
  z-index: 80;
  background: var(--yellow);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 6px;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 14, 17, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(11, 14, 17, 0.94);
  border-bottom-color: var(--hair);
}

.header-inner {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo img,
.logo svg {
  width: 28px;
  height: 28px;
}

.logo span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.04);
}

.caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--muted);
  margin-top: 2px;
}

.dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 280px;
  padding: 12px;
  background: #1e2329;
  border: 1px solid var(--hair);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: none;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  display: grid;
  gap: 2px;
}

.dropdown a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 8px;
}

.dropdown a:hover {
  background: rgba(255, 255, 255, 0.04);
}

.dropdown a strong {
  font-size: 14px;
  font-weight: 600;
}

.dropdown a span {
  font-size: 12px;
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.icon-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--text);
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.btn-ghost {
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--yellow-hover);
}

.btn-lg {
  height: 48px;
  padding: 0 22px;
  font-size: 16px;
  border-radius: 8px;
}

.menu-btn {
  display: none;
}

/* Hero / cover */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-h));
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.hero-art {
  position: absolute;
  right: -6%;
  top: -8%;
  width: min(62vw, 920px);
  opacity: 0.55;
  mask-image: radial-gradient(circle at 58% 42%, #000 28%, transparent 72%);
  animation: drift 18s ease-in-out infinite;
}

.hero-cluster {
  position: absolute;
  right: -4%;
  top: -2%;
  width: min(46vw, 620px);
  opacity: 0.92;
  z-index: 0;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
  animation: float 7.5s ease-in-out infinite;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 78% 18%, rgba(252, 213, 53, 0.14), transparent 55%),
    linear-gradient(90deg, rgba(11, 14, 17, 0.96) 0%, rgba(11, 14, 17, 0.78) 42%, rgba(11, 14, 17, 0.28) 70%, rgba(11, 14, 17, 0.62) 100%),
    linear-gradient(180deg, rgba(11, 14, 17, 0.15), rgba(11, 14, 17, 0.55) 88%, #0b0e11);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
  padding: 72px 0 88px;
}

.hero-copy h1 {
  margin: 0 0 28px;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1.4px;
  color: var(--white);
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
}

.signup {
  display: flex;
  gap: 8px;
  max-width: 520px;
}

.signup.is-invalid .field {
  box-shadow: 0 0 0 1px var(--down);
}

.field {
  flex: 1;
  height: 48px;
  border: 1px solid var(--hair);
  background: #1e2329;
  color: var(--white);
  border-radius: 8px;
  padding: 0 14px;
  font-size: 16px;
  outline: none;
}

.field::placeholder {
  color: var(--muted);
}

.field:focus {
  border-color: var(--yellow);
}

.oauth {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.oauth-btn {
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  background: #1e2329;
  border: 1px solid var(--hair);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.oauth-btn:hover {
  background: #2b3139;
}

.oauth-btn svg {
  width: 18px;
  height: 18px;
}

.legal-mini {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--muted);
  max-width: 460px;
}

.legal-mini a {
  color: var(--yellow);
}

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

.qr-box {
  width: 96px;
  height: 96px;
  padding: 6px;
  background: var(--white);
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.app-mini:hover .qr-box {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.qr-box img,
.qr-box svg {
  width: 100%;
  height: 100%;
}

.app-mini p {
  margin: 0;
  font-size: 14px;
  color: var(--muted-2);
}

.app-mini strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  margin-bottom: 4px;
}

.hero-aside {
  position: relative;
  z-index: 1;
}

.markets-card {
  position: relative;
  z-index: 2;
  background: rgba(24, 26, 32, 0.92);
  border: 1px solid rgba(43, 49, 57, 0.95);
  backdrop-filter: blur(22px);
  border-radius: 16px;
  padding: 8px 8px 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.m-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 8px 0;
}

.m-tabs button {
  height: 36px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
}

.m-tabs button.is-active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.m-tabs .m-more {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 500;
  padding-right: 8px;
}

.m-tabs .m-more:hover {
  color: var(--yellow);
}

.m-row {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 72px 0.7fr auto;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
}

.m-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.m-asset {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.m-asset strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.m-asset em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
}

.m-price,
.m-chg {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}

.m-chg.is-up {
  color: var(--up);
}

.m-chg.is-down {
  color: var(--down);
}

.m-spark {
  display: grid;
  place-items: center;
}

.news-list {
  margin-top: 12px;
  padding: 4px 12px 8px;
  border-top: 1px solid var(--hair);
}

.news-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--text);
}

.news-list a:hover {
  color: var(--yellow);
}

.news-list time {
  color: var(--muted);
  flex-shrink: 0;
  font-size: 12px;
}

/* coins */
.coin {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #2b3139 center/cover no-repeat;
  position: relative;
}

.coin::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.coin-btc { background-image: url("./assets/coins/btc.svg"); }
.coin-eth { background-image: url("./assets/coins/eth.svg"); }
.coin-aux { background-image: url("./assets/coins/aux.svg"); }
.coin-sol { background-image: url("./assets/coins/sol.svg"); }
.coin-xrp { background-image: url("./assets/coins/xrp.svg"); }
.coin-doge { background: radial-gradient(circle at 30% 30%, #ffe38a, #c2a633); }

.awards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 8px 0 56px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.awards span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.awards b {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
}

.section {
  padding: 88px 0;
}

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

.section h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.6px;
  color: var(--white);
}

.section .lede {
  margin: 0;
  color: var(--muted-2);
  max-width: 560px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.media-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #111318;
  border: 1px solid var(--hair);
  min-height: 320px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  background: #1e2329;
  border: 1px solid var(--hair);
  font-size: 13px;
}

.store:hover {
  border-color: var(--yellow);
}

.store small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 12px;
}

.step-n {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(252, 213, 53, 0.12);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.step h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.step p {
  margin: 0;
  color: var(--muted-2);
  font-size: 14px;
}

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

.product {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 16px;
  overflow: hidden;
  min-height: 100%;
}

.product:hover {
  border-color: #3d4450;
  transform: translateY(-2px);
  transition: 0.2s ease;
}

.product img {
  height: 168px;
  object-fit: cover;
}

.product-body {
  padding: 18px 18px 20px;
}

.product h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.product p {
  margin: 0 0 14px;
  color: var(--muted-2);
  font-size: 14px;
}

.product .go {
  color: var(--yellow);
  font-size: 14px;
  font-weight: 600;
}

.safu {
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(252, 213, 53, 0.08), transparent 60%),
    var(--bg-2);
  border-block: 1px solid var(--hair);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--hair);
  border-radius: 12px;
  background: rgba(11, 14, 17, 0.4);
}

.stat b {
  display: block;
  font-size: 28px;
  color: var(--white);
  letter-spacing: -0.4px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

.faq {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 12px;
}

.faq button {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq button::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  margin-top: -4px;
  flex-shrink: 0;
}

.faq.is-open button::after {
  transform: rotate(225deg);
  margin-top: 4px;
}

.faq .faq-a {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 20px;
  color: var(--muted-2);
  font-size: 14px;
  transition: grid-template-rows 0.28s ease, padding 0.28s ease;
}

.faq .faq-a > div {
  overflow: hidden;
}

.faq.is-open .faq-a {
  grid-template-rows: 1fr;
  padding: 0 20px 18px;
}

.cta-band {
  padding: 72px 0 96px;
}

.cta-card {
  border-radius: 20px;
  padding: 48px;
  background:
    linear-gradient(120deg, rgba(252, 213, 53, 0.16), rgba(11, 14, 17, 0.2) 42%, transparent),
    url("./assets/cover/hero-glow-bg.png") center/cover;
  border: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-card h2 {
  margin: 0 0 8px;
}

.site-footer {
  background: #0d1014;
  border-top: 1px solid var(--hair);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 28px;
}

.site-footer h4 {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--white);
}

.site-footer a {
  display: block;
  font-size: 13px;
  color: var(--muted-2);
  padding: 5px 0;
}

.site-footer a:hover {
  color: var(--yellow);
}

.foot-brand p {
  color: var(--muted);
  font-size: 13px;
  max-width: 280px;
}

.legal {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--hair);
  color: var(--muted);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: #1e2329;
  border: 1px solid var(--hair);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 70;
  max-width: min(92vw, 420px);
}

.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.layer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 60;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 8vh 16px 16px;
}

.layer.is-open {
  display: flex;
}

.panel {
  width: min(560px, 100%);
  background: #1e2329;
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 18px;
  max-height: 80vh;
  overflow: auto;
}

.panel header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.panel h3 {
  margin: 0;
}

.lang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 12px;
}

.lang-grid a {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.lang-grid a:hover,
.lang-grid a.is-current {
  background: rgba(252, 213, 53, 0.12);
  color: var(--yellow);
}

.drawer {
  width: min(360px, 100%);
  height: 100%;
  margin-right: auto;
  background: #181a20;
  border-right: 1px solid var(--hair);
  padding: 18px;
  overflow: auto;
}

.drawer a,
.drawer button.nav-link {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
}

.search-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.splash {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(800px 400px at 50% 30%, rgba(252, 213, 53, 0.12), transparent 60%),
    var(--bg);
}

.splash img,
.splash svg {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.splash p {
  color: var(--muted);
}

.pulse {
  width: 42px;
  height: 2px;
  margin: 18px auto 0;
  background: var(--yellow);
  animation: pulse 1.1s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(-12px, -18px, 0) rotate(2deg);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.04) translate3d(-18px, 10px, 0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleX(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

[dir="rtl"] .hero-grid,
[dir="rtl"] .split,
[dir="rtl"] .cta-card,
[dir="rtl"] .header-inner,
[dir="rtl"] .m-row,
[dir="rtl"] .signup {
  direction: rtl;
}

[dir="rtl"] .hero-art,
[dir="rtl"] .hero-cluster {
  right: auto;
  left: -4%;
}

[dir="rtl"] .hero-vignette {
  background:
    radial-gradient(1200px 700px at 22% 18%, rgba(252, 213, 53, 0.14), transparent 55%),
    linear-gradient(270deg, rgba(11, 14, 17, 0.96) 0%, rgba(11, 14, 17, 0.78) 42%, rgba(11, 14, 17, 0.28) 70%, rgba(11, 14, 17, 0.62) 100%),
    linear-gradient(180deg, rgba(11, 14, 17, 0.15), rgba(11, 14, 17, 0.55) 88%, #0b0e11);
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }
  .menu-btn {
    display: grid;
  }
  .hero-grid,
  .split,
  .product-grid,
  .footer-grid,
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .hero-cluster {
    width: 48vw;
    opacity: 0.7;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }
  .hero {
    min-height: 0;
  }
  .hero-grid,
  .split,
  .product-grid,
  .footer-grid,
  .stats,
  .cta-card {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding: 36px 0 48px;
    gap: 28px;
  }
  .hero-copy h1 {
    font-size: 36px;
    letter-spacing: -0.8px;
  }
  .hero-art,
  .hero-cluster {
    width: 90vw;
    right: -20%;
    top: -10%;
    opacity: 0.35;
  }
  .signup {
    flex-direction: column;
  }
  .btn-ghost.login-btn {
    display: none;
  }
  .section {
    padding: 56px 0;
  }
  .cta-card {
    padding: 28px 20px;
  }
  .m-row {
    grid-template-columns: 1.2fr 0.8fr 0.7fr auto;
  }
  .m-spark {
    display: none;
  }
  .m-head span:nth-child(3) {
    display: none;
  }
  .awards {
    gap: 10px 16px;
  }
  .media-frame img {
    min-height: 240px;
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 32px;
  }
  .m-tabs {
    overflow-x: auto;
  }
}

.promo-bar {
  background: linear-gradient(90deg, #1a1608, #2a220c 40%, #1a1608);
  border-bottom: 1px solid rgba(252, 213, 53, 0.18);
  font-size: 13px;
  color: #f5e7a8;
}

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

.promo-inner a {
  color: var(--yellow);
  font-weight: 600;
  white-space: nowrap;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 0.6px, transparent 0.7px);
  background-size: 3px 3px;
}

.download-pop {
  min-width: 220px;
  text-align: center;
  padding: 16px;
  right: 0;
  left: auto;
}

.download-pop strong {
  display: block;
  margin-bottom: 10px;
}

.download-pop img {
  width: 128px;
  height: 128px;
  margin: 0 auto 10px;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
}

.download-pop p {
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 12px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: var(--up);
  font-size: 12px;
  font-weight: 600;
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--up);
  box-shadow: 0 0 0 0 rgba(14, 203, 129, 0.7);
  animation: live 1.6s ease-out infinite;
}

.m-head {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 72px 0.7fr auto;
  gap: 8px;
  padding: 8px 12px 4px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.m-head span:nth-child(2),
.m-head span:nth-child(4) {
  text-align: right;
}

.m-row.is-skel {
  height: 52px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  background-size: 200% 100%;
  animation: shimmer 1.2s linear infinite;
}

.m-trade {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 4px;
  padding: 4px 8px;
}

.m-row:hover .m-trade {
  background: var(--yellow-hover);
}

.news-tag {
  flex-shrink: 0;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 8px;
}

.news-list a {
  align-items: center;
}

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.section {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

@keyframes live {
  0% {
    box-shadow: 0 0 0 0 rgba(14, 203, 129, 0.55);
  }
  100% {
    box-shadow: 0 0 0 8px rgba(14, 203, 129, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-art,
  .hero-cluster,
  .live-pill i,
  .pulse,
  .m-row.is-skel,
  .m-price.is-flash-up,
  .m-price.is-flash-down {
    animation: none !important;
  }
}

.hero-bg picture {
  display: contents;
}

.media-frame picture,
.product picture {
  display: block;
}

.product picture img,
.media-frame picture img {
  width: 100%;
}

.m-price.is-flash-up {
  animation: flashUp 0.9s ease;
}

.m-price.is-flash-down {
  animation: flashDown 0.9s ease;
}

@keyframes flashUp {
  from {
    background: rgba(14, 203, 129, 0.28);
  }
  to {
    background: transparent;
  }
}

@keyframes flashDown {
  from {
    background: rgba(246, 70, 93, 0.28);
  }
  to {
    background: transparent;
  }
}

.mobile-cta {
  display: none;
}

body.is-locked .mobile-cta {
  display: none !important;
}

@media (max-width: 860px) {
  .hero-art,
  .hero-cluster {
    display: none;
  }
  .mobile-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 38;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(11, 14, 17, 0.94);
    border-top: 1px solid var(--hair);
    backdrop-filter: blur(16px);
  }
  .mobile-cta .btn {
    width: 100%;
  }
  body {
    padding-bottom: 76px;
  }
  .promo-inner {
    font-size: 12px;
  }
  .download-item .dropdown {
    display: none;
  }
  .live-pill {
    display: none;
  }
  .m-head {
    grid-template-columns: 1.2fr 0.8fr 0.7fr auto;
  }
  .m-trade {
    padding: 4px 6px;
  }
}

