:root {
  --ink: #edf6f7;
  --muted: #91a6ad;
  --line: rgba(194, 232, 231, 0.14);
  --panel: rgba(13, 31, 42, 0.78);
  --surface: #07131c;
  --surface-deep: #040b11;
  --mint: #9cf7c1;
  --cyan: #66dce7;
  --violet: #b6a0ff;
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 5%, rgba(76, 189, 179, 0.1), transparent 33rem),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-deep) 100%);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.11;
  pointer-events: none;
}

.ambient-one {
  top: 22rem;
  right: -12rem;
  background: var(--violet);
}

.ambient-two {
  bottom: 15rem;
  left: -14rem;
  background: var(--cyan);
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.brand span {
  display: grid;
  line-height: 1.25;
}

.brand strong {
  font-family: var(--display);
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
}

nav {
  display: flex;
  gap: 30px;
  color: #b9c9cd;
  font-size: 14px;
}

nav a,
.footer-links a {
  transition: color 180ms ease;
}

nav a:hover,
.footer-links a:hover {
  color: var(--mint);
}

.header-action {
  justify-self: end;
  padding: 10px 17px;
  border: 1px solid rgba(156, 247, 193, 0.5);
  border-radius: 999px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.header-action:hover {
  color: #07131c;
  background: var(--mint);
}

main,
footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 90px;
  align-items: center;
  min-height: 720px;
  padding: 100px 0 90px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 27px;
  height: 1px;
  background: currentColor;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 7vw, 6.2rem);
}

h1 em {
  color: transparent;
  background: linear-gradient(100deg, var(--mint), var(--cyan) 55%, #c2b8ff);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.hero-lead {
  max-width: 630px;
  margin: 30px 0 0;
  color: #a7bbc0;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  gap: 12px;
  color: #06120e;
  background: var(--mint);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.button-secondary:hover {
  border-color: rgba(156, 247, 193, 0.45);
}

.token-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(156, 247, 193, 0.18);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(17, 42, 53, 0.96), rgba(8, 20, 28, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.token-card::before {
  position: absolute;
  top: -8rem;
  right: -9rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(156, 247, 193, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(156, 247, 193, 0.025), 0 0 0 70px rgba(156, 247, 193, 0.02);
  content: "";
}

.card-head,
.token-identity {
  display: flex;
  align-items: center;
}

.card-head {
  position: relative;
  justify-content: space-between;
}

.token-identity {
  gap: 14px;
}

.token-identity img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.token-identity div {
  display: grid;
}

.token-identity span {
  color: var(--muted);
  font-size: 13px;
}

.token-identity strong {
  font-family: var(--display);
  font-size: 20px;
}

.network-badge {
  padding: 7px 10px;
  border: 1px solid rgba(102, 220, 231, 0.28);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.supply-block {
  position: relative;
  display: grid;
  padding: 54px 0 42px;
}

.supply-block span,
.supply-block small {
  color: var(--muted);
}

.supply-block strong {
  margin: 4px 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: -0.06em;
}

.supply-block small {
  font-size: 12px;
}

.token-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.token-meta div {
  display: grid;
  gap: 5px;
}

.token-meta dt,
.token-meta dd {
  margin: 0;
}

.token-meta dt {
  color: var(--muted);
  font-size: 11px;
}

.token-meta dd {
  font-size: 13px;
  font-weight: 700;
}

.verified-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px rgba(156, 247, 193, 0.8);
}

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

.facts > div {
  min-height: 220px;
  padding: 36px 38px 34px 0;
}

.facts > div + div {
  padding-left: 38px;
  border-left: 1px solid var(--line);
}

.facts span {
  display: block;
  margin-bottom: 28px;
  color: var(--mint);
  font-family: var(--display);
  font-size: 11px;
}

.facts strong {
  font-family: var(--display);
  font-size: 18px;
}

.facts p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.token-section,
.verify-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
  padding: 150px 0;
}

h2 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.spec-panel {
  padding: 18px 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.spec-panel dl {
  margin: 0;
}

.spec-panel dl div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 23px 0;
}

.spec-panel dl div + div {
  border-top: 1px solid var(--line);
}

.spec-panel dt,
.spec-panel dd {
  margin: 0;
}

.spec-panel dt {
  color: var(--muted);
}

.spec-panel dd {
  font-weight: 700;
  text-align: right;
}

.verify-section {
  align-items: center;
  border-top: 1px solid var(--line);
}

.verify-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 26px 0 0;
  color: var(--muted);
}

.contract-box {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(156, 247, 193, 0.22);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(21, 46, 56, 0.9), rgba(9, 24, 32, 0.96));
}

.contract-box div {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contract-box span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contract-box code {
  overflow: hidden;
  color: #d6e7ea;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-box button {
  flex: 0 0 auto;
  min-width: 110px;
  padding: 12px 16px;
  border: 0;
  border-radius: 8px;
  color: #06120e;
  background: var(--mint);
  font: 700 12px var(--body);
  cursor: pointer;
}

.copy-success {
  display: none;
}

.contract-box button.is-copied .copy-default {
  display: none;
}

.contract-box button.is-copied .copy-success {
  display: inline;
}

.disclaimer {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 60px;
  margin-bottom: 120px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.disclaimer strong {
  font-family: var(--display);
  font-size: 14px;
}

.disclaimer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding: 38px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 34px;
  height: 34px;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}

footer > p {
  margin: 0;
  color: #688087;
  font-size: 11px;
  text-align: right;
}

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

  nav {
    display: none;
  }

  .hero,
  .token-section,
  .verify-section {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero {
    min-height: 0;
    padding-top: 80px;
  }

  .token-card {
    max-width: 570px;
  }

  .token-section,
  .verify-section {
    padding: 110px 0;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  footer > p {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 650px) {
  .site-header,
  main,
  footer {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    padding: 18px 0;
  }

  .brand strong {
    font-size: 13px;
  }

  .header-action {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero {
    padding: 64px 0 70px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .token-card {
    padding: 24px;
    border-radius: 18px;
  }

  .token-meta {
    gap: 14px;
  }

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

  .facts > div,
  .facts > div + div {
    min-height: 0;
    padding: 30px 0;
    border-left: 0;
  }

  .facts > div + div {
    border-top: 1px solid var(--line);
  }

  .facts span {
    margin-bottom: 18px;
  }

  .token-section,
  .verify-section {
    padding: 88px 0;
  }

  .spec-panel {
    padding: 10px 20px;
  }

  .contract-box {
    display: grid;
    padding: 22px;
  }

  .contract-box button {
    width: 100%;
  }

  .disclaimer {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 90px;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    display: grid;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
