:root {
  --ink: #17212b;
  --muted: #65717d;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #dde4e9;
  --green: #0a8f68;
  --green-soft: #dff7ef;
  --blue: #2667d9;
  --blue-soft: #e6efff;
  --amber: #d8871e;
  --amber-soft: #fff1d8;
  --red: #c84848;
  --red-soft: #ffe8e5;
  --deep: #122437;
  --shadow: 0 24px 70px rgba(21, 34, 48, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 36, 55, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 36, 55, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(190px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 12px 5vw;
  border-bottom: 1px solid rgba(221, 228, 233, 0.78);
  background: rgba(251, 250, 246, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
  min-height: 44px;
  color: var(--ink);
}

.brand-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 9px;
  background: #f1f7ff;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 8px;
  min-width: 0;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.main-nav a {
  min-width: 54px;
  padding: 8px 10px;
  border-radius: 6px;
  color: #324151;
  font-size: 14px;
  text-align: center;
}

.main-nav a:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.header-action,
.primary-button,
.secondary-button,
.secondary-link,
.text-link,
.verify-actions a,
.verify-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.header-action,
.primary-button {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(10, 143, 104, 0.25);
}

.header-action:hover,
.primary-button:hover {
  background: #087b5a;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.secondary-link {
  border: 1px solid var(--line);
  color: var(--green);
  background: #fff;
  box-shadow: none;
}

.secondary-link:hover {
  border-color: var(--green);
  background: var(--green-soft);
}

.text-link {
  min-height: 42px;
  padding: 0 6px;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-weight: 900;
}

.text-link:hover {
  color: #154aa7;
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.announcement-bar {
  position: relative;
  z-index: 18;
  border-bottom: 1px solid rgba(10, 143, 104, 0.34);
  color: #dff7ef;
  background: linear-gradient(90deg, #0f3d35 0%, #122437 52%, #17463c 100%);
}

.announcement-bar[hidden] {
  display: none;
}

.announcement-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(1160px, calc(100% - 40px));
  min-height: 42px;
  margin: 0 auto;
  padding: 0 44px;
  font-size: 14px;
  text-align: center;
}

.announcement-inner strong {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(121, 226, 191, 0.36);
  border-radius: 7px;
  color: #79e2bf;
  background: rgba(10, 143, 104, 0.18);
  white-space: nowrap;
}

.announcement-marquee {
  min-width: 0;
  overflow: visible;
  white-space: normal;
}

.announcement-marquee span {
  display: inline;
}

.announcement-close {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  color: rgba(223, 247, 239, 0.82);
  background: transparent;
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
}

.announcement-close:hover {
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(95deg, rgba(18, 36, 55, 0.96) 0%, rgba(18, 36, 55, 0.9) 42%, rgba(18, 36, 55, 0.35) 100%),
    linear-gradient(160deg, #122437 0%, #17463c 48%, #c28a36 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 96px;
  content: "";
  background: linear-gradient(180deg, rgba(251, 250, 246, 0), var(--paper));
}

.hero-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 100%);
}

.market-board {
  position: absolute;
  top: 106px;
  right: 1vw;
  width: 540px;
  min-height: 340px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transform: rotate(-2deg);
}

.board-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.board-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

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

.board-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.board-head strong {
  font-size: 22px;
}

.board-chart {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: end;
  gap: 12px;
  height: 148px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(18, 36, 55, 0.36);
}

.board-chart i,
.mini-chart span {
  display: block;
  min-height: 20px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #f2bf62, #2ec69a);
  font-size: 0;
}

.board-list {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.board-list b {
  color: #fff;
}

.board-list em {
  color: #58ddb5;
  font-style: normal;
  text-align: right;
}

.phone-frame {
  position: absolute;
  right: 6vw;
  bottom: 58px;
  width: 245px;
  height: 470px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 32px;
  background: #0b1620;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  transform: rotate(5deg);
}

.phone-top {
  width: 86px;
  height: 6px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.phone-screen {
  height: 418px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7fbff, #eef6f2);
  color: var(--ink);
}

.app-topline,
.coin-row,
.version-line,
.watchlist-head,
.watch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-topline {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
}

.coin-row {
  min-height: 70px;
  padding: 12px;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 24px rgba(18, 36, 55, 0.08);
}

.coin-row span {
  font-weight: 900;
}

.coin-row em {
  color: var(--green);
  font-style: normal;
  font-weight: 800;
}

.mini-chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 8px;
  height: 112px;
  margin: 16px 0;
  padding: 12px;
  border-radius: 8px;
  background: #eaf3ff;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.metric-grid span,
.alert-line {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: #334454;
  font-size: 12px;
  font-weight: 800;
}

.alert-line {
  margin-top: 12px;
  color: var(--amber);
  background: var(--amber-soft);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(650px, calc(100% - 40px));
  max-width: none;
  margin-left: max(20px, calc((100vw - 1160px) / 2));
  margin-right: auto;
  padding-top: 120px;
  padding-bottom: 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #79e2bf;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 44px 0 0;
}

.hero-stats div {
  min-width: 120px;
  padding-left: 16px;
  border-left: 3px solid #f2bf62;
}

.stat-value {
  display: block;
  font-size: 28px;
  font-weight: 900;
}

.stat-label {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
}

.ticker-strip {
  position: relative;
  z-index: 3;
  width: min(1160px, calc(100% - 40px));
  margin: -34px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.ticker-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
}

.ticker-track span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 68px;
  padding: 12px;
  border-right: 1px solid var(--line);
  color: #334454;
  font-weight: 900;
}

.ticker-track span:last-child {
  border-right: 0;
}

.ticker-track b {
  color: var(--ink);
}

.ticker-track em {
  color: var(--green);
  font-style: normal;
}

.ticker-track .down,
.ticker-track .down em {
  color: var(--red);
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p,
.section-lede {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.two-column,
.market-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 38px;
  align-items: start;
}

.verify-panel,
.download-card,
.download-aside,
.official-grid article,
.feature-grid article,
.release-list article,
.watchlist,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 38px rgba(21, 34, 48, 0.08);
}

.verify-panel {
  padding: 24px;
}

.verify-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
}

.verify-card + .verify-card {
  margin-top: 14px;
}

.verify-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 6px;
  color: #0a664c;
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 900;
}

.verify-card h3 {
  margin-top: 14px;
}

.verify-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.verify-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.verify-actions a {
  color: #fff;
  background: var(--green);
}

.verify-actions button,
.download-tabs a {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.verify-actions button:hover,
.download-tabs a:hover {
  border-color: var(--green);
  color: var(--green);
}

.warning-text {
  margin: 18px 0 0;
  padding: 14px;
  border: 1px solid #ffd4ca;
  border-radius: 8px;
  color: #7b2c22;
  background: var(--red-soft);
  line-height: 1.7;
}

.download-section {
  background: #edf5f3;
}

.official-section {
  background: #fff;
}

.official-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.official-grid article {
  min-height: 210px;
  padding: 24px;
}

.official-grid h3 {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.official-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr) minmax(240px, 300px);
  gap: 20px;
  align-items: start;
}

.download-tabs {
  display: grid;
  gap: 10px;
}

.download-tabs a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 14px;
  text-align: left;
  font-weight: 900;
}

.download-tabs .is-active {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
}

.download-cards {
  display: grid;
  gap: 18px;
}

.download-card {
  display: block;
  min-width: 0;
  min-height: 0;
  padding: 30px;
  scroll-margin-top: 110px;
}

.download-card.is-active,
.download-card:target {
  border-color: rgba(10, 143, 104, 0.45);
  box-shadow: 0 16px 46px rgba(10, 143, 104, 0.14);
}

.platform-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 6px;
  color: #0a664c;
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 900;
}

.download-card h3 {
  margin-top: 18px;
}

.download-card p {
  color: var(--muted);
  line-height: 1.8;
}

.step-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  position: relative;
  padding-left: 24px;
  color: #364655;
  line-height: 1.7;
}

.step-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--amber);
}

.version-line {
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 14px;
}

.link-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.link-stack > * {
  flex: 0 1 auto;
}

.primary-button.compact {
  min-height: 42px;
  padding: 0 16px;
}

.download-aside {
  padding: 22px;
}

.download-aside h3 {
  margin-bottom: 18px;
}

.check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #344554;
  line-height: 1.5;
}

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

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

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

.feature-grid article {
  min-height: 220px;
  padding: 24px;
}

.feature-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 13px;
  font-weight: 900;
}

.feature-grid article:nth-child(2n) .feature-icon {
  color: var(--amber);
  background: var(--amber-soft);
}

.feature-grid article:nth-child(3n) .feature-icon {
  color: var(--green);
  background: var(--green-soft);
}

.feature-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.screen-section {
  background: #f4f0e8;
}

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

.screen-grid figure {
  margin: 0;
}

.screen-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.screen-grid figcaption {
  margin-top: 12px;
  color: #344554;
  font-weight: 900;
  text-align: center;
}

.market-section {
  background: #fff;
}

.watchlist {
  overflow: hidden;
}

.watchlist-head,
.watch-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 80px;
  gap: 12px;
}

.watchlist-head {
  min-height: 52px;
  padding: 0 20px;
  color: var(--muted);
  background: #f2f6f8;
  font-size: 13px;
  font-weight: 900;
}

.watch-row {
  min-height: 74px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
}

.watch-row span b,
.watch-row span small {
  display: block;
}

.watch-row small {
  margin-top: 4px;
  color: var(--muted);
}

.watch-row strong {
  justify-self: start;
}

.watch-row em {
  justify-self: end;
  font-style: normal;
  font-weight: 900;
}

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

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

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

.release-list article {
  min-height: 190px;
  padding: 24px;
}

.release-list time {
  display: block;
  margin-bottom: 16px;
  color: var(--amber);
  font-weight: 900;
}

.release-list p {
  color: var(--muted);
  line-height: 1.75;
}

.faq-layout {
  grid-template-columns: 0.8fr 1.2fr;
}

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

.faq-list details {
  padding: 0 20px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
  cursor: pointer;
  font-weight: 900;
}

.faq-list summary::after {
  flex: 0 0 auto;
  content: "+";
  color: var(--green);
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer {
  padding: 52px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #111d27;
}

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

.footer-brand {
  color: #fff;
}

.site-footer p {
  max-width: 440px;
  line-height: 1.75;
}

.site-footer strong,
.site-footer a {
  display: block;
}

.site-footer strong {
  margin-bottom: 14px;
  color: #fff;
}

.site-footer a {
  margin-bottom: 10px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  min-width: 130px;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--deep);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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


@media (min-width: 981px) and (max-width: 1180px) {
  .hero {
    min-height: 760px;
  }

  .hero-copy {
    width: min(560px, calc(100% - 40px));
    margin-left: 20px;
    padding-top: 104px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-lede {
    max-width: 540px;
    font-size: 18px;
  }

  .hero-stats {
    max-width: 560px;
    gap: 20px;
  }

  .market-board {
    top: 350px;
    right: -240px;
    width: 520px;
  }

  .phone-frame {
    right: 28px;
    bottom: 54px;
    width: 210px;
    height: 410px;
  }

  .phone-screen {
    height: 358px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    min-width: auto;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    overflow-x: auto;
    justify-self: stretch;
    justify-content: center;
  }

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    width: min(100% - 40px, 650px);
    margin-left: 20px;
    padding-top: 104px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 32px;
  }

  .market-board {
    top: 650px;
    right: -220px;
    width: 480px;
  }

  .phone-frame {
    right: -12px;
    bottom: 54px;
    width: 210px;
    height: 410px;
  }

  .phone-screen {
    height: 358px;
  }

  .ticker-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .two-column,
  .market-layout,
  .faq-layout,
  .download-layout {
    grid-template-columns: 1fr;
  }

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

  .download-tabs a {
    justify-content: center;
    text-align: center;
  }

  .feature-grid,
  .official-grid,
  .screen-grid,
  .release-list,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 18px;
  }

  .brand small {
    display: none;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 14px;
  }

  .announcement-inner {
    width: min(100% - 28px, 1160px);
    min-height: 46px;
    gap: 8px;
    padding: 6px 34px 6px 0;
    text-align: left;
  }

  .announcement-inner strong {
    padding: 0 8px;
  }

  .section-inner,
  .ticker-strip {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    display: none;
  }

  .hero-copy {
    width: min(100% - 28px, 650px);
    margin-left: 14px;
    padding-top: 84px;
    padding-bottom: 72px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-lede,
  .section-heading p,
  .section-lede {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions a {
    width: 100%;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stats div {
    min-width: 132px;
  }

  .market-board {
    top: 500px;
    right: -190px;
    width: 420px;
    min-height: 260px;
    padding: 16px;
  }

  .board-chart {
    height: 102px;
    gap: 8px;
  }

  .phone-frame {
    right: 18px;
    bottom: 46px;
    width: 164px;
    height: 326px;
    padding: 10px;
  }

  .phone-screen {
    height: 284px;
    padding: 12px;
  }

  .coin-row {
    min-height: 54px;
  }

  .mini-chart {
    height: 74px;
    gap: 5px;
  }

  .metric-grid span,
  .alert-line {
    min-height: 34px;
    font-size: 11px;
  }

  .ticker-track {
    grid-template-columns: repeat(2, minmax(145px, 1fr));
  }

  .section {
    padding: 72px 0;
  }

  .download-tabs,
  .feature-grid,
  .official-grid,
  .screen-grid,
  .release-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .download-card,
  .download-aside,
  .verify-panel,
  .official-grid article,
  .feature-grid article,
  .release-list article {
    padding: 20px;
  }

  .watchlist-head,
  .watch-row {
    grid-template-columns: 1fr;
  }

  .watch-row strong,
  .watch-row em {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
