:root {
  color-scheme: dark;
  --bg: #080c11;
  --panel: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f4f7fb;
  --muted: rgba(244, 247, 251, 0.66);
  --blue: #4cb7e6;
  --green: #6ee6a5;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 20% 8%, rgba(76, 183, 230, 0.22), transparent 28rem),
    radial-gradient(circle at 76% 18%, rgba(110, 230, 165, 0.14), transparent 26rem),
    linear-gradient(180deg, #0d131a 0%, #080c11 64%, #06080b 100%);
}

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

.site-header {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
nav,
.actions,
.menu-pill {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

nav {
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

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

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  align-items: center;
  gap: clamp(36px, 8vw, 96px);
  padding: 42px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(54px, 9vw, 108px);
  line-height: 0.92;
  font-weight: 760;
}

.lede {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2.6vw, 27px);
  line-height: 1.32;
}

.actions {
  width: fit-content;
  gap: 9px;
  margin-top: 32px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(244, 247, 251, 0.78);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(24px) saturate(140%);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(110, 230, 165, 0.68);
}

.product-shot {
  position: relative;
  min-height: 430px;
}

.menu-pill {
  position: absolute;
  right: 28px;
  top: 12px;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(12, 17, 23, 0.72);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(28px) saturate(150%);
}

.coin {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--muted);
  font-size: 13px;
}

.panel {
  position: absolute;
  inset: 74px 0 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(12, 17, 23, 0.64);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(42px) saturate(160%);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.panel-head div {
  display: grid;
  gap: 4px;
}

.panel-head div:last-child {
  text-align: right;
}

.panel-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.panel-head strong {
  font-size: 30px;
}

.bars {
  height: 200px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  align-items: end;
  gap: 8px;
}

.bars i {
  display: block;
  min-height: 22px;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, #4cc9f0, #24718f);
  box-shadow: 0 0 24px rgba(76, 183, 230, 0.18);
}

.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 0 56px;
}

.details article,
.page {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: blur(24px) saturate(140%);
}

.details article {
  padding: 20px;
}

h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.details p,
.page p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.details p + p,
.page p + p {
  margin-top: 14px;
}

footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(244, 247, 251, 0.5);
  font-size: 13px;
}

.page {
  max-width: 760px;
  margin-top: 70px;
  padding: clamp(26px, 6vw, 48px);
}

.page h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 8vw, 76px);
}

.page a {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal {
  max-width: 920px;
}

.legal .updated {
  margin-top: -10px;
  margin-bottom: 28px;
  color: rgba(244, 247, 251, 0.55);
  font-size: 14px;
}

.legal section + section {
  margin-top: 34px;
}

.legal h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.legal ul {
  margin: 0;
  padding-left: 21px;
  color: var(--muted);
  line-height: 1.55;
}

.legal li + li {
  margin-top: 8px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

th,
td {
  padding: 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
  color: var(--text);
  font-weight: 700;
}

tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 820px) {
  .site-header,
  footer {
    width: min(100% - 28px, 1120px);
  }

  main {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .product-shot {
    min-height: 360px;
  }

  .panel {
    inset: 64px 0 0;
    padding: 20px;
  }

  .panel-head strong {
    font-size: 26px;
  }

  .bars {
    height: 150px;
    margin-top: 22px;
    gap: 6px;
  }

  .details {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }
}
