/* Basic meme-token landing page styling. */

:root {
  --bg: #070812;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.085);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --border: rgba(255, 255, 255, 0.14);
  --brand: #7c5cff;
  --brand-2: #34d399;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(900px 500px at 10% 0%, rgba(124, 92, 255, 0.22), transparent 60%),
    radial-gradient(800px 450px at 90% 10%, rgba(52, 211, 153, 0.15), transparent 55%),
    var(--bg);
  color: var(--text);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 99;
}

.skip-link:focus {
  left: 14px;
  top: 14px;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
}

.topbar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(7, 8, 18, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 20;
}

.topbar__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand__logo {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  padding: 6px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__name {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: var(--muted);
}

.pill--muted {
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  border-color: rgba(124, 92, 255, 0.4);
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.32), rgba(124, 92, 255, 0.12));
}

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

.btn--lg {
  padding: 12px 18px;
  font-size: 15px;
}

.help {
  display: inline-block;
  margin-left: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.help--show {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__bg {
  position: absolute;
  inset: -50px;
  background: radial-gradient(500px 200px at 20% 10%, rgba(124, 92, 255, 0.22), transparent 60%),
    radial-gradient(500px 220px at 90% 25%, rgba(52, 211, 153, 0.16), transparent 62%);
  pointer-events: none;
}

.banner-section {
  padding: 0 0 28px;
}

.banner-section__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 18px;
}

.banner-section__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero__content {
  max-width: 1060px;
  margin: 0 auto;
  padding: 64px 18px 48px;
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 920px) {
  .hero__content {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.hero__coin {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__titles h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: 0.3px;
}

.subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 40ch;
}

.hero__facts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fact {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--panel);
  border: 1px solid var(--border);
}

.fact__label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.fact__value {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.hero__actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.section {
  padding: 38px 0 58px;
}

.section__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 18px;
}

.section__title {
  margin: 0;
  font-size: 22px;
}

.section__subtitle {
  margin: 8px 0 18px;
  color: var(--muted);
  max-width: 60ch;
}

.chart {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.chart iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}

@media (max-width: 560px) {
  .chart iframe {
    height: 420px;
  }
}

.link-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 2px;
  font-weight: 700;
}

.link:hover {
  border-bottom-color: rgba(124, 92, 255, 0.8);
}

.footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
}

.footer__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

.footer__logo {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.footer__small {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

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

.footer__link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 14px;
  border-radius: 999px;
}

.footer__link:hover {
  border-color: rgba(124, 92, 255, 0.35);
}

:root {
  --bg: #070812;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.085);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --border: rgba(255, 255, 255, 0.14);
  --brand: #7c5cff;
  --brand-2: #34d399;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius-sm: 12px;
}

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

.note {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.55;
}

.grid {
  display: grid;
  gap: 14px;
}

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

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

@media (max-width: 980px) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .grid--4,
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

.card {
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
  padding: 16px;
}

.card--flat {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.card__title {
  font-weight: 900;
  letter-spacing: 0.2px;
}

.card__body {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.metric {
  font-weight: 1000;
  letter-spacing: 0.2px;
}

.metric--brand {
  color: rgba(124, 92, 255, 0.98);
}

.metric--green {
  color: rgba(52, 211, 153, 0.98);
}

.metric--purple {
  color: rgba(196, 181, 253, 0.98);
}

.metric--muted {
  color: rgba(255, 255, 255, 0.82);
}

.alloc-bar {
  height: 16px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.alloc-seg {
  float: left;
  height: 100%;
}

.alloc-seg--brand {
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.75), rgba(124, 92, 255, 0.22));
}

.alloc-seg--green {
  background: linear-gradient(180deg, rgba(52, 211, 153, 0.7), rgba(52, 211, 153, 0.22));
}

.alloc-seg--purple {
  background: linear-gradient(180deg, rgba(196, 181, 253, 0.78), rgba(196, 181, 253, 0.2));
}

.alloc-seg--muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.16));
}

.timeline {
  padding-top: 4px;
}

.timeline__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.timeline__list::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.timeline__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 14px 0;
}

.timeline__dot {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.22);
  border: 1px solid rgba(124, 92, 255, 0.5);
  box-shadow: 0 12px 34px rgba(124, 92, 255, 0.18);
  margin-left: 0;
}

.timeline__dot--alt {
  background: rgba(52, 211, 153, 0.18);
  border-color: rgba(52, 211, 153, 0.44);
  box-shadow: 0 12px 34px rgba(52, 211, 153, 0.14);
}

.timeline__content {
  padding: 2px 4px;
}

.timeline__phase {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16px;
  text-transform: uppercase;
}

.timeline__title {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 950;
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  font-size: 14px;
}

.faq details {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 14px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin: 10px 0 2px;
  color: var(--muted);
  line-height: 1.6;
}

.inline-link {
  color: rgba(124, 92, 255, 0.98);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 92, 255, 0.35);
}

.inline-link:hover {
  border-bottom-color: rgba(124, 92, 255, 0.8);
}

html {
  --bg: #070812;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.085);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --border: rgba(255, 255, 255, 0.14);
  --brand: #7c5cff;
  --brand-2: #34d399;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius-sm: 12px;
}
