:root {
  --bg: #f3f6fb;
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --border: #e6ebf2;
  --text: #0f172a;
  --muted: #64748b;
  --blue: #3861fb;
  --blue-soft: #eef3ff;
  --positive: #16c784;
  --yellow: #f0b90b;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

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

.container {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

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

.main-nav a {
  color: var(--muted);
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--text);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #111827;
  background: #fff8dd;
  border: 1px solid #ffe08a;
  font-weight: 700;
}



.page-shell {
  padding: 32px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

.hero-copy,
.hero-aside,
.page-card,
.table-card,
.report-card,
.metric-card,
.news-item,
.empty-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(56, 97, 251, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.hero-aside {
  padding: 16px;
  display: grid;
  gap: 16px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-header h1,
.report-header h1 {
  margin: 0 0 14px;
  font-size: clamp(2.15rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-text,
.lead,
.page-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 760px;
}

.hero-feature-card {
  margin-top: 26px;
  padding: 22px;
  border-radius: 22px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.hero-feature-top,
.report-header-top,
.report-card-top,
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-feature-card h2 {
  margin: 4px 0 10px;
  font-size: 1.65rem;
  line-height: 1.1;
}

.hero-feature-card h2 span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  margin-left: 6px;
}

.hero-actions,
.report-card-actions,
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.report-card-actions {
  margin-top: auto;
  padding-top: 18px;
  align-items: center;
}

.button,
.table-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.button:hover,
.table-link:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.button.secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}

.text-link,
.section-link {
  color: var(--blue);
  font-weight: 700;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
}

.price-pill.positive {
  color: var(--positive);
  background: rgba(22, 199, 132, 0.12);
}

.banner-link {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(240, 185, 11, 0.35);
  box-shadow: 0 10px 28px rgba(240, 185, 11, 0.14);
}

.banner-link img {
  width: 100%;
  height: auto;
}

.mini-stats-card {
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.mini-stats-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: grid;
  gap: 14px;
}

.mini-stats-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mini-stats-list strong {
  font-size: 1.25rem;
}

.mini-stats-list span {
  color: var(--muted);
}

.section-block {
  margin-top: 30px;
}

.section-head {
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
  font-size: 1.8rem;
}

.section-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.table-card {
  overflow: hidden;
}

.mover-table-wrap {
  overflow-x: auto;
}

.mover-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.mover-table th,
.mover-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.mover-table thead th {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--surface-2);
}

.mover-table tbody tr:hover {
  background: #fbfdff;
}

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

.coin-cell img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.coin-cell span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.report-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.report-card h3 {
  margin: 16px 0 10px;
  font-size: 1.35rem;
  line-height: 1.22;
}

.report-card p {
  color: var(--muted);
  margin: 0;
}

.report-card-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.metric-label,
.meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.report-page,
.page-card {
  padding: 32px;
}

.report-page section {
  margin-top: 30px;
}

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

.metric-card {
  padding: 22px;
}

.metric-card strong {
  font-size: 1.2rem;
}

.clean-list {
  margin: 0;
  padding-left: 18px;
}

.clean-list li + li {
  margin-top: 10px;
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-item {
  padding: 22px;
}

.news-item h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.cta-box {
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.empty-card {
  padding: 28px;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
}

.footer-inner p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: flex-start;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .hero-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-box,
  .footer-inner,
  .header-inner,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 740px) {
  .page-shell {
    padding-top: 24px;
  }

  .hero-copy,
  .hero-aside,
  .report-page,
  .page-card,
  .report-card {
    padding: 22px;
    border-radius: 20px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .metric-grid,
  .report-card-metrics {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-header h1,
  .report-header h1 {
    font-size: 2rem;
  }

  .price-pill {
    min-width: auto;
  }
}


.table-loading,
.table-empty {
  padding: 26px 18px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.section-note {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.banner-link {
  display: block;
  border-radius: 18px;
  overflow: hidden;
}

.banner-link img {
  width: 100%;
  height: auto;
}

.mini-stats-card {
  padding: 18px;
  border-radius: 22px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.mini-stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.mini-stats-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.mini-stats-list strong {
  min-width: 42px;
  font-size: 1.2rem;
  color: var(--text);
}

.mini-stats-list span {
  color: var(--muted);
}

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


.section-subnote {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.pair-cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pair-cell strong {
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.pair-cell span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.negative-text {
  color: #ea3943;
}

.price-pill.negative {
  color: #fff;
  background: #ea3943;
}

@media (max-width: 720px) {
  .section-subnote {
    font-size: 0.88rem;
  }
}


.binance-button {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.hero-feature-card .button.secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}

.report-card .button.secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}

.report-card .button,
.hero-feature-card .button {
  min-width: 132px;
}

.report-card h3 a {
  color: var(--text);
}

.hero-feature-card .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav-cta {
    justify-self: center;
  }
}
