:root {
  --bg: #000;
  --panel: #111;
  --panel-2: #181818;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f6f6f6;
  --muted: #aeaeae;
  --accent: #ff6a00;
  --max-width: 1520px;
  --radius: 28px;
  --hero-copy-width: 660px;
  --hero-media-width: 600px;
  --hero-gap: 56px;
  --hero-band-width: calc(var(--hero-copy-width) + var(--hero-media-width) + var(--hero-gap));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: #000;
  color: var(--text);
}

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

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  min-height: 66px;
  display: grid;
  grid-template-columns: 180px 1fr 120px;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-mark {
  display: block;
  width: 142px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.main-nav a,
.header-link,
.footer-grid a,
.footer-bottom span {
  color: var(--muted);
  font-size: 0.9rem;
}

.main-nav a:hover,
.header-link:hover,
.footer-grid a:hover {
  color: #fff;
}

.header-lang {
  position: relative;
  justify-self: end;
}

.header-lang summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 88px;
  min-height: 48px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.header-lang summary::-webkit-details-marker {
  display: none;
}

.header-lang summary::after {
  content: '⌄';
  font-size: 1.05rem;
  line-height: 1;
  color: #fff;
  transform: translateY(-1px);
}

.header-lang[open] summary::after {
  transform: rotate(180deg) translateY(1px);
}

.header-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 120px;
  padding: 8px;
  background: #050505;
  z-index: 40;
}

.header-lang-menu a {
  display: block;
  padding: 10px 12px;
  color: #fff;
  font-size: 0.92rem;
}

.hero-section {
  padding: 56px 0 0;
}

.hero-grid {
  width: var(--hero-band-width);
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, var(--hero-copy-width)) var(--hero-media-width);
  gap: 12px var(--hero-gap);
  align-items: center;
  justify-content: center;
}

.hero-copy {
  max-width: var(--hero-copy-width);
  justify-self: center;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 16px;
  color: #d5d5d5;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 6px;
  background: rgba(124, 94, 255, 0.18);
  border: 1px solid rgba(149, 118, 255, 0.38);
  color: #ece3ff;
}

.hero-copy h1,
.module-head h2,
.wallet-copy h2,
.editorial-card h2 {
  margin: 0;
  letter-spacing: -0.06em;
}

.hero-copy h1 {
  max-width: none;
  font-size: clamp(3rem, 3.95vw, 3.9rem);
  line-height: 1.02;
}

.hero-text,
.module-head p,
.wallet-copy p,
.editorial-card p,
.product-copy p,
.faq-item p,
.footer-brand p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 32px;
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(180deg, #ff8a1d 0%, #ff6600 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 106, 0, 0.25);
}

.button-secondary {
  background: #fff;
  color: #000;
}

.button-link {
  color: #fff;
  font-weight: 600;
}

.hero-art-frame {
  width: 600px;
  aspect-ratio: 1 / 1;
  background: #cbc2db;
  overflow: hidden;
  margin: 0 auto;
}

.hero-art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.3s ease;
}

.hero-art-frame:hover img {
  transform: scale(1.03);
  filter: brightness(1.04);
}

.trust-strip,
.feature-strip {
  padding: 30px 0 0;
}

.trust-grid,
.feature-strip-grid,
.products-grid,
.faq-grid,
.footer-grid {
  display: grid;
}

.trust-grid,
.feature-strip-grid,
.starter-grid,
.products-head,
.products-grid,
.wallet-grid {
  width: var(--hero-band-width);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.trust-grid {
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.trust-grid article,
.feature-strip-grid article {
  min-height: 92px;
  border-right: 1px solid var(--line-strong);
}

.trust-grid article:last-child,
.feature-strip-grid article:last-child {
  border-right: 0;
}

.trust-grid article {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 22px 0 0;
  border-right: 1px solid var(--line-strong);
  border-bottom: 0;
}

.trust-grid article:nth-child(2),
.trust-grid article:nth-child(3),
.feature-strip-grid article:nth-child(2),
.feature-strip-grid article:nth-child(3) {
  padding-left: 26px;
}

.trust-icon,
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: #fff;
}

.trust-icon svg,
.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-grid p {
  margin: 0;
  color: #d3d3d3;
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-strip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.feature-strip-grid article {
  min-height: 146px;
  padding: 20px 22px 0 0;
}

.feature-strip-grid article:last-child {
  border-right: 0;
}

.feature-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.feature-strip-grid h2 {
  margin: 0;
  font-size: 1.9rem;
  letter-spacing: -0.05em;
}

.feature-strip-grid p {
  margin: 0;
  max-width: 300px;
  color: var(--muted);
  line-height: 1.72;
}

.module-section {
  padding: 56px 0 0;
}

.starter-section {
  padding-top: 30px;
}

.starter-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  height: 238px;
  border: 1px solid var(--line);
  background: #06080b;
  overflow: hidden;
}

.starter-copy {
  padding: 20px 18px;
  border-right: 1px solid var(--line-strong);
}

.starter-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.36rem, 2.15vw, 1.76rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.starter-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.starter-option {
  padding: 16px 12px 0 0;
  min-height: 98px;
  border-right: 1px solid var(--line-strong);
}

.starter-option:last-child {
  border-right: 0;
  padding-left: 14px;
}

.starter-option h3 {
  margin: 0 0 8px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.starter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 0.72rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.starter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255,255,255,0.14);
}

.starter-visual {
  position: relative;
  height: 238px;
  overflow: hidden;
  background: #080b10;
}

.starter-visual img {
  display: block;
  width: 100%;
  height: 238px;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.starter-grid:hover .starter-visual img {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.module-head {
  margin-bottom: 22px;
}

.module-head h2,
.wallet-copy h2,
.editorial-card h2 {
  font-size: clamp(2rem, 3.7vw, 3.7rem);
  line-height: 0.98;
}

.products-head {
  margin-top: 0;
  margin-bottom: 28px;
  padding-left: 0;
  text-align: left;
}

.products-head h2 {
  margin-bottom: 14px;
}

.products-head p,
.products-head .eyebrow,
.products-head h2 {
  text-align: left;
}

.products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.product-card,
.wallet-panel,
.editorial-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-showcase {
  position: relative;
  min-height: 560px;
  padding: 0;
  overflow: hidden;
  background: radial-gradient(circle at top center, rgba(120, 78, 180, 0.18), transparent 38%), linear-gradient(180deg, #1a1621 0%, #0b0a0e 100%);
}

.product-hero {
  height: 312px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.product-showcase:hover .product-hero img {
  transform: translateY(-6px) scale(1.04);
  filter: brightness(1.06);
}

.product-showcase {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.product-showcase:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.product-copy {
  padding: 26px 24px 24px;
}

.product-copy h3,
.editorial-card h3,
.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.product-chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  margin-bottom: 14px;
  border-radius: 6px;
  border: 1px solid rgba(182, 152, 255, 0.24);
  background: rgba(133, 95, 214, 0.14);
  color: #ddd1ff;
  font-size: 0.72rem;
  font-weight: 700;
}

.product-copy p {
  min-height: 96px;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.72;
}

.product-rating {
  margin-top: 14px;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.product-rating span {
  margin-left: 6px;
  color: var(--muted);
  letter-spacing: 0;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 6px;
  background: rgba(140, 95, 232, 0.3);
  border: 1px solid rgba(182, 152, 255, 0.24);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.coins-band,
.wallet-grid {
  width: var(--hero-band-width);
  max-width: 100%;
  margin: 0 auto;
}

.coins-section {
  padding-top: 54px;
}

.coins-band {
  overflow: hidden;
}

.coins-copy {
  max-width: 900px;
  margin-bottom: 28px;
}

.coins-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3.1vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.coins-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.coins-marquee {
  position: relative;
  overflow: hidden;
  padding: 18px 0 4px;
}

.coins-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: coinsSlide 28s linear infinite;
}

.coin {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 84px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 10px 24px rgba(0,0,0,0.2);
}

.coin svg {
  width: 52px;
  height: 52px;
  display: block;
}

.coin-ada { background: #07185b; color: #d6e0ff; }
.coin-doge { background: #d7b53c; color: #fff6d4; }
.coin-link { background: #3b6bff; color: #eef3ff; }
.coin-polygon { background: #8e47ef; color: #f4eaff; }
.coin-dot { background: #f5078f; color: #fff; }
.coin-btc { background: #fff; color: #111; }
.coin-ltc { background: #c7c7c7; color: #111; }
.coin-eth { background: #ffb731; color: #fff; }
.coin-sol { background: #0d0d0d; color: #7cffc8; border: 1px solid rgba(124,255,200,0.25); }
.coin-xrp { background: #111; color: #fff; border: 1px solid rgba(255,255,255,0.14); }

.coins-marquee:hover .coins-track {
  animation-play-state: paused;
}

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

.wallet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.wallet-hero-grid {
  align-items: center;
  gap: 24px 64px;
}

.wallet-copy,
.wallet-panel {
  padding: 32px;
}

.wallet-hero-copy {
  padding: 0;
  max-width: 620px;
}

.wallet-hero-copy h2 {
  max-width: 760px;
  white-space: normal;
}

.wallet-hero-copy p {
  max-width: 620px;
}

.protocol-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 22px;
  flex-wrap: wrap;
}

.protocol-badge {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.p1 { background: #8e47ef; color: #fff; }
.p2 { background: #fff; color: #111; }
.p3 { background: #121212; color: #fff; border: 1px solid rgba(255,255,255,0.14); }
.p4 { background: #ff6b2d; color: #fff; }
.p5 { background: #ffe26b; color: #111; }
.p6 { background: #f2f2f2; color: #111; }

.protocol-more {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.wallet-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wallet-visual img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  transition: transform 0.45s ease, filter 0.3s ease;
}

.wallet-visual:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.wallet-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

.wallet-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.wallet-row:last-child {
  border-bottom: 0;
}

.wallet-row strong {
  font-size: 1.4rem;
}

.wallet-row span {
  color: var(--muted);
  text-align: right;
}

.faq-interactive-wrap,
.editorial-grid {
  width: var(--hero-band-width);
  max-width: 100%;
  margin: 0 auto;
}

.faq-interactive-section {
  padding-top: 72px;
  background: radial-gradient(circle at center, rgba(104, 72, 124, 0.16), transparent 45%);
}

.faq-interactive-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.faq-interactive-head h2 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 3.6vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.faq-subtitle {
  margin: 0;
  color: #d7d7d7;
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq-interactive-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: start;
}

.faq-menu {
  display: grid;
  gap: 12px;
}

.faq-item-button {
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-label {
  color: #f3f3f3;
}

.faq-arrow {
  display: inline-flex;
  color: #bdbdbd;
  font-size: 1.15rem;
  line-height: 1;
}

.faq-item-button:hover,
.faq-item-button.is-active {
  border-color: rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05));
}

.faq-detail-panel {
  min-height: 340px;
  padding: 4px 0;
}

.faq-detail {
  color: #f0f0f0;
}

.faq-detail p {
  margin: 0 0 18px;
  color: #efefef;
  line-height: 1.82;
  font-size: 0.98rem;
}

.faq-detail p:last-child {
  margin-bottom: 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.editorial-card {
  min-height: 320px;
  padding: 30px;
}

.dark-surface {
  background: linear-gradient(180deg, #141414, #090909);
}

.light-surface {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

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

.faq-item {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

.contact-newsletter-section {
  padding-top: 72px;
}

.contact-newsletter-grid {
  width: var(--hero-band-width);
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-panel h2,
.newsletter-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.contact-panel p,
.newsletter-panel p,
.newsletter-panel small {
  color: var(--muted);
  line-height: 1.7;
}

.contact-email {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  color: #f5f5f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-row a svg {
  width: 18px;
  height: 18px;
  display: block;
}

.social-row a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 14px;
}

.newsletter-form input {
  flex: 1;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: #fff;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #9d9d9d;
}

.newsletter-form button {
  min-width: 136px;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: rgba(255,255,255,0.28);
}

.site-footer {
  margin-top: 64px;
  padding: 48px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
}

.footer-grid-rich {
  width: min(100%, 1180px);
  margin: 0 auto;
  grid-template-columns: 260px 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.footer-column-group {
  display: grid;
  gap: 40px;
  align-content: start;
  width: 100%;
}

.brand-only {
  justify-self: start;
}

.footer-columns-2 {
  grid-template-columns: 1fr 1fr;
  gap: 34px 56px;
}

.footer-grid-rich .footer-column-group:nth-child(2),
.footer-grid-rich .footer-column-group:nth-child(3) {
  justify-self: end;
}

.footer-grid-rich .footer-brand {
  max-width: 220px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-logo .brand-mark {
  width: 176px;
}

.footer-brand p {
  color: #9d9d9d;
  line-height: 1.8;
}

.footer-column-group:not(.brand-only) > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
}

.footer-column-group:not(.brand-only) > .footer-substack {
  display: grid;
  gap: 28px;
  align-content: start;
}

.footer-substack > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
}

.footer-grid h3 {
  flex: 0 0 100%;
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.footer-grid a {
  display: inline-block;
  margin-bottom: 0;
  color: #b8b8b8;
  line-height: 1.45;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.download-page-main {
  padding-bottom: 32px;
}

.download-hero-section {
  padding: 0;
  background: #000;
}

.download-hero-grid,
.download-guide-grid,
.download-seo-grid,
.download-faq-list {
  width: var(--hero-band-width);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.download-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  gap: 40px;
  align-items: center;
  min-height: 640px;
}

.download-guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.download-insight-shell {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.02);
  border-radius: 28px;
  padding: 48px 36px 36px;
}

.download-insight-head {
  margin-bottom: 28px;
}

.download-insight-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  letter-spacing: -0.06em;
}

.download-insight-head p {
  margin: 14px 0 0;
  color: #cfcfcf;
  font-size: 1.02rem;
}

.download-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.download-insight-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.download-insight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 30px rgba(0, 0, 0, 0.28);
}

.download-insight-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 16px;
  background: linear-gradient(180deg, #101010 0%, #060606 100%);
  overflow: hidden;
}

.download-insight-media img {
  display: block;
  max-width: 100%;
  max-height: 208px;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.35s ease;
}

.download-insight-card:hover .download-insight-media img {
  transform: scale(1.04);
  filter: brightness(1.06);
}

.download-insight-copy {
  padding: 24px 22px 26px;
  text-align: center;
}

.download-insight-copy h3 {
  margin: 0;
  color: #fff;
  letter-spacing: -0.04em;
}

.download-insight-copy p {
  margin: 14px 0 0;
  color: #c3c3c3;
  line-height: 1.75;
}

.download-coins-shell {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.02);
  border-radius: 28px;
  padding: 42px 36px;
}

.download-manage-shell {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.02);
  border-radius: 28px;
  padding: 42px 36px;
}

.download-manage-head {
  margin-bottom: 26px;
}

.download-manage-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.06em;
}

.download-manage-grid {
  display: grid;
  grid-template-columns: 1fr 74px 1fr;
  gap: 18px;
  align-items: center;
}

.download-manage-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 240px;
  padding: 28px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.download-manage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 30px rgba(0, 0, 0, 0.28);
}

.download-manage-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-manage-media img {
  display: block;
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.35s ease;
}

.download-manage-card:hover .download-manage-media img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.download-manage-copy h3 {
  margin: 0;
  color: #fff;
  letter-spacing: -0.03em;
}

.download-manage-copy p {
  margin: 14px 0 0;
  color: #c3c3c3;
  line-height: 1.75;
}

.download-manage-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 2rem;
  font-weight: 600;
}

.download-connect-section,
.download-strategy-section,
.download-earn-section,
.download-video-section {
  padding: 24px 0 0;
  background: #000;
}

.download-connect-shell {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.02);
  border-radius: 28px;
  padding: 42px 36px;
}

.download-connect-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.download-connect-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-connect-visual img {
  display: block;
  width: min(100%, 460px);
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.35s ease;
}

.download-connect-visual:hover img {
  transform: translateY(-6px) scale(1.03);
  filter: brightness(1.05);
}

.download-connect-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.download-connect-copy p:last-child {
  margin: 22px 0 0;
  color: #c8c8c8;
  line-height: 1.8;
  font-size: 1.05rem;
}

.download-video-shell {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.02);
  border-radius: 28px;
  padding: 22px;
}

.download-feature-video {
  display: block;
  width: 100%;
  border-radius: 18px;
  background: #050505;
}

.support-page-main {
  padding-bottom: 32px;
}

.support-hero-section,
.support-groups-section {
  padding: 24px 0 0;
  background: #000;
}

.support-hero-grid,
.support-groups-grid {
  width: var(--hero-band-width);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.support-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 26px;
  align-items: stretch;
}

.support-hero-copy,
.support-hero-cards,
.support-group-shell {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.support-hero-copy {
  padding: 42px 36px;
  border-radius: 28px;
}

.support-hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 4.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.support-hero-cards {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 28px;
}

.support-hero-cards article {
  padding: 20px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.support-hero-cards span {
  display: block;
  color: #fff;
  font-weight: 700;
}

.support-hero-cards p {
  margin: 10px 0 0;
  color: #bfbfbf;
  line-height: 1.7;
}

.support-groups-grid {
  display: grid;
  gap: 22px;
}

.support-group-shell {
  border-radius: 28px;
  padding: 34px 30px;
}

.support-group-head {
  margin-bottom: 18px;
}

.support-group-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.05em;
}

.support-qa-list {
  display: grid;
  gap: 12px;
}

.support-qa-item {
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  overflow: hidden;
}

.support-qa-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 18px;
  color: #fff;
  font-weight: 600;
}

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

.support-qa-item summary::after {
  content: '+';
  color: #d0d0d0;
  font-size: 1.2rem;
}

.support-qa-item[open] summary::after {
  content: '–';
}

.support-qa-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: #c9c9c9;
  line-height: 1.8;
}

.support-download-cta-section {
  padding: 24px 0 0;
  background: #000;
}

.support-download-cta-shell {
  width: var(--hero-band-width);
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  justify-items: center;
  text-align: center;
  padding: 42px 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.02);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.support-download-cta-copy {
  max-width: 760px;
}

.support-download-cta-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3rem);
  letter-spacing: -0.05em;
}

.support-download-cta-copy p:last-child {
  margin: 14px 0 0;
  color: #c9c9c9;
  line-height: 1.8;
}

.support-download-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
}

.policy-page-main {
  padding-bottom: 32px;
}

.policy-hero-section,
.policy-doc-section {
  padding: 24px 0 0;
  background: #000;
}

.policy-hero-shell,
.policy-doc-shell {
  width: min(100%, 980px);
  margin: 0 auto;
}

.policy-hero-shell,
.policy-doc-shell {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.02);
  background: #000;
  border-radius: 28px;
}

.policy-hero-shell {
  padding: 42px 36px;
}

.policy-hero-shell h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 4.4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.policy-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  color: #bdbdbd;
  font-size: 0.92rem;
}

.policy-doc-shell {
  padding: 22px 0;
}

.policy-doc-block {
  padding: 28px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-doc-block:last-child {
  border-bottom: 0;
}

.policy-doc-block h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.policy-doc-block ol {
  margin: 0;
  padding-left: 22px;
  color: #d2d2d2;
}

.policy-doc-block li {
  margin-bottom: 14px;
  line-height: 1.9;
}

.policy-doc-block li:last-child {
  margin-bottom: 0;
}

.policy-links-section,
.policy-download-cta-section {
  padding: 24px 0 0;
  background: #000;
}

.policy-links-shell,
.policy-download-cta-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.02);
  background: #000;
  border-radius: 28px;
}

.policy-links-shell {
  padding: 28px;
}

.policy-links-head {
  margin-bottom: 18px;
}

.policy-links-head h2,
.policy-download-cta-copy h2 {
  margin: 0;
  color: #fff;
  letter-spacing: -0.05em;
}

.policy-links-head p,
.policy-download-cta-copy p {
  color: #c9c9c9;
  line-height: 1.8;
}

.policy-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.policy-links-card {
  display: block;
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.policy-links-card strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.policy-links-card span {
  display: block;
  margin-top: 8px;
  color: #bdbdbd;
  line-height: 1.7;
  font-size: 0.92rem;
}

.policy-links-card:hover {
  border-color: rgba(255,255,255,0.2);
}

.policy-download-cta-shell {
  padding: 36px 28px;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.policy-download-cta-copy {
  max-width: 760px;
}

.download-feature-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.download-feature-list li {
  position: relative;
  padding-left: 18px;
  color: #d2d2d2;
  line-height: 1.7;
}

.download-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
}

.download-coins-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.06em;
}

.download-coins-head p {
  margin: 14px 0 0;
  color: #cfcfcf;
  font-size: 1.02rem;
}

.download-coins-marquee {
  margin-top: 34px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
}

.download-coins-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: downloadCoinsSlide 24s linear infinite;
}

.download-coins-set {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
  padding-right: 18px;
}

.download-coins-marquee:hover .download-coins-track {
  animation-play-state: paused;
}

.download-coin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 999px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.download-coin:hover {
  transform: translateY(-4px) scale(1.05);
  filter: brightness(1.08);
}

.coin-btc { background: linear-gradient(180deg, #f7931a, #d97a00); }
.coin-usdt { background: linear-gradient(180deg, #3ac59c, #1fa97d); }
.coin-bnb { background: linear-gradient(180deg, #f3ba2f, #d79d00); }
.coin-sol { background: linear-gradient(180deg, #6cf0cf, #7f4dff); }
.coin-ada { background: linear-gradient(180deg, #2b5fd9, #153a94); }
.coin-doge { background: linear-gradient(180deg, #d8bd53, #b69628); }
.coin-link { background: linear-gradient(180deg, #3d6eff, #2446b8); }
.coin-polygon { background: linear-gradient(180deg, #9246ff, #6d22d6); }
.coin-dot { background: linear-gradient(180deg, #ff2ea6, #cc0078); }
.coin-lite { background: linear-gradient(180deg, #d9d9d9, #a9a9a9); color: #111; }

@keyframes downloadCoinsSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.download-hero-copy {
  color: #fff;
  padding: 48px 0;
}

.download-kicker {
  margin: 0 0 18px;
  color: #9c74d9;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.download-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.download-hero-copy .hero-text {
  max-width: 640px;
  color: #cfcfcf;
  margin: 24px 0 30px;
}

.download-hero-actions {
  gap: 14px;
}

.button-dark {
  background: #000;
  color: #fff;
}

.button-outline-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.download-note-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
}

.download-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #fff;
}

.download-hero-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 640px;
}

.download-hero-visual img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  transition: transform 0.45s ease, filter 0.35s ease;
}

.download-hero-visual:hover img {
  transform: translateY(-8px) scale(1.03);
  filter: brightness(1.06);
}

.download-seo-card,
.download-platform-card,
.download-faq-list article,
.download-steps article {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.download-platform-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.download-hero-card h2,
.download-guide-copy h2,
.download-seo-card h2 {
  margin: 16px 0 0;
  letter-spacing: -0.05em;
}

.download-hero-card p,
.download-guide-copy p,
.download-seo-card p,
.download-faq-list p,
.download-steps p {
  color: var(--muted);
  line-height: 1.7;
}

.download-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.download-badges span {
  display: inline-flex;
  min-height: 36px;
  padding: 0 14px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.84rem;
}

.download-platforms-section,
.download-guide-section,
.download-seo-section,
.download-faq-section {
  padding: 24px 0 0;
}

.download-platforms-section {
  background: #000;
}

.download-platform-showcase,
.download-seo-grid,
.download-faq-list {
  display: grid;
  gap: 20px;
}

.download-faq-shell {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.02);
  border-radius: 28px;
  padding: 42px 36px;
}

.download-faq-head {
  margin-bottom: 26px;
}

.download-faq-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.06em;
}

.download-faq-interactive-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

.download-faq-questions {
  display: grid;
  gap: 12px;
}

.download-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  color: #fff;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.download-faq-question::after {
  content: '›';
  color: #d0d0d0;
  font-size: 1.2rem;
}

.download-faq-question:hover,
.download-faq-question.is-active {
  transform: translateX(4px);
  border-color: rgba(255,255,255,0.2);
  background: linear-gradient(90deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
}

.download-faq-answer-panel {
  min-height: 100%;
  padding: 10px 0;
}

.download-faq-answer {
  display: none;
}

.download-faq-answer.is-active {
  display: block;
}

.download-faq-answer p {
  margin: 0 0 18px;
  color: #cfcfcf;
  line-height: 1.9;
  font-size: 1rem;
}

.download-faq-answer p:last-child {
  margin-bottom: 0;
}

.download-platform-shell {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.02);
  border-radius: 28px;
  padding: 56px 44px 40px;
}

.download-platform-head {
  text-align: center;
  margin-bottom: 34px;
}

.download-platform-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  letter-spacing: -0.06em;
}

.download-platform-head p {
  margin: 14px 0 0;
  color: #cfcfcf;
  font-size: 1.02rem;
}

.download-platform-showcase {
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.download-platform-stage {
  padding: 0 26px;
}

.download-platform-stage + .download-platform-stage {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.download-platform-stage h3,
.download-faq-list h3,
.download-steps h3 {
  margin: 0 0 20px;
  color: #fff;
  text-align: center;
  letter-spacing: -0.03em;
}

.download-platform-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  margin-bottom: 28px;
}

.download-platform-art img {
  display: block;
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.35s ease;
}

.download-platform-stage:hover .download-platform-art img {
  transform: translateY(-6px) scale(1.03);
  filter: brightness(1.05);
}

.download-platform-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.download-platform-actions.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-os-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  color: #fff;
  background: linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.download-os-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 24px rgba(0, 0, 0, 0.28);
  background: linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
}

.download-os-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  color: #000;
  flex: 0 0 56px;
  overflow: hidden;
}

.download-os-icon img {
  display: block;
  width: 78%;
  height: 78%;
  object-fit: contain;
  transition: transform 0.28s ease;
}

.download-os-card:hover .download-os-icon img {
  transform: scale(1.08);
}

.download-os-card small {
  display: block;
  color: #b8b8b8;
  font-size: 0.78rem;
}

.download-os-card strong {
  display: block;
  margin-top: 3px;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.download-seo-card,
.download-faq-list article,
.download-steps article {
  border-radius: 24px;
}

.download-guide-grid {
  padding: 30px 0 0;
}

.download-steps {
  display: grid;
  gap: 16px;
}

.download-steps article {
  padding: 20px 22px;
}

.download-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
}

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

.download-seo-card,
.download-faq-list article {
  padding: 24px;
}

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

@media (max-width: 1200px) {
  .header-inner,
  .hero-grid,
  .trust-grid,
  .feature-strip-grid,
  .starter-grid,
  .products-grid,
  .wallet-grid,
  .editorial-grid,
  .faq-grid,
  .footer-grid,
  .footer-grid-rich {
    grid-template-columns: 1fr;
  }

  .footer-grid-rich {
    gap: 34px;
  }

  .footer-column-group,
  .footer-columns-2 {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .coins-band,
  .wallet-grid,
  .faq-interactive-wrap,
  .editorial-grid,
  .contact-newsletter-grid,
  .download-hero-grid,
  .download-guide-grid,
  .download-seo-grid,
  .download-faq-list {
    width: 100%;
  }

  .download-hero-grid,
  .download-guide-grid,
  .download-seo-grid,
  .download-faq-list,
  .download-platform-showcase,
  .download-platform-actions,
  .download-platform-actions.two-col,
  .download-insight-grid,
  .support-hero-grid,
  .support-download-cta-shell,
  .policy-links-grid {
    grid-template-columns: 1fr;
  }

  .download-coins-set {
    gap: 14px;
    padding-right: 14px;
  }

  .download-insight-shell,
  .download-coins-shell,
  .download-manage-shell,
  .download-connect-shell,
  .download-video-shell,
  .download-faq-shell,
  .support-hero-copy,
  .support-group-shell,
  .support-download-cta-shell,
  .policy-hero-shell,
  .policy-links-shell,
  .policy-download-cta-shell {
    padding: 36px 24px 24px;
  }

  .support-hero-cards {
    padding: 18px;
  }

  .download-manage-grid,
  .download-connect-grid,
  .download-faq-interactive-grid {
    grid-template-columns: 1fr;
  }

  .policy-doc-block {
    padding: 24px;
  }

  .support-download-cta-actions {
    justify-content: center;
  }

  .download-manage-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-manage-plus {
    width: 48px;
    height: 48px;
    font-size: 1.7rem;
  }

  .download-coin {
    width: 58px;
    height: 58px;
    font-size: 1.35rem;
  }

  .download-platform-shell {
    padding: 36px 24px;
  }

  .download-platform-stage {
    padding: 0;
  }

  .download-platform-stage + .download-platform-stage {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 28px;
    margin-top: 28px;
  }

  .wallet-hero-copy h2 {
    white-space: normal;
  }

  .faq-interactive-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .protocol-badge {
    width: 30px;
    height: 30px;
    font-size: 0.86rem;
  }

  .product-showcase {
    min-height: auto;
  }

  .product-hero {
    height: 220px;
  }

  .header-inner {
    gap: 12px;
    padding: 12px 0;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 18px;
  }

  .hero-art-frame {
    width: min(100%, 620px);
  }

  .download-hero-section {
    padding-top: 48px;
  }

  .trust-grid article,
  .feature-strip-grid article,
  .trust-grid article:nth-child(2),
  .trust-grid article:nth-child(3),
  .feature-strip-grid article:nth-child(2),
  .feature-strip-grid article:nth-child(3) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .starter-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .trust-grid article:last-child,
  .feature-strip-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .hero-copy h1,
  .download-hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
    white-space: normal;
  }

  .hero-actions,
  .footer-bottom,
  .starter-options {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-hero-card,
  .download-seo-card,
  .download-faq-list article,
  .download-steps article {
    padding: 22px;
  }

  .download-os-card {
    min-height: 84px;
  }

  .download-os-card strong {
    font-size: 1.32rem;
  }

  .starter-options {
    display: grid;
    grid-template-columns: 1fr;
  }

  .starter-option,
  .starter-option:last-child {
    padding: 18px 0 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .starter-option:last-child {
    border-bottom: 0;
  }

  .product-card,
  .wallet-copy,
  .wallet-panel,
  .editorial-card,
  .faq-item,
  .starter-copy {
    padding: 22px;
  }

  .contact-newsletter-grid,
  .newsletter-form {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form button {
    width: 100%;
  }

  .faq-item-button {
    min-height: 52px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .faq-subtitle {
    font-size: 0.92rem;
  }

  .coin {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }

  .coin svg {
    width: 40px;
    height: 40px;
  }

  .coins-copy h2 {
    white-space: normal;
  }

  .coins-track {
    gap: 22px;
  }
}
