:root {
  --black: #020607;
  --deep: #071413;
  --panel: rgba(5, 20, 20, 0.78);
  --teal: #073b35;
  --cyan: #18e5ef;
  --cyan-soft: #8ffaff;
  --green: #0b4f39;
  --gold: #c0ae7b;
  --bone: #d9d0aa;
  --mist: #c6e4df;
  --ink: #020607;
  --line: rgba(24, 229, 239, 0.26);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--mist);
  background:
    linear-gradient(120deg, rgba(24, 229, 239, 0.15), transparent 26rem),
    linear-gradient(300deg, rgba(11, 79, 57, 0.28), transparent 28rem),
    linear-gradient(180deg, #000 0%, var(--black) 42%, #06100f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(24, 229, 239, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(24, 229, 239, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.58), transparent 78%);
}

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

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

.page {
  overflow: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(2, 6, 7, 0.78);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 950;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(143, 250, 255, 0.44);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(135deg, var(--cyan-soft), var(--cyan) 46%, var(--green));
  box-shadow: 0 0 28px rgba(24, 229, 239, 0.34);
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span {
  margin-top: 4px;
  color: var(--cyan-soft);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a,
.nav button,
.primary,
.secondary,
.copy-ticker {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 15px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.nav a {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
}

.nav button,
.primary,
.copy-ticker {
  color: #001112;
  background: linear-gradient(135deg, var(--cyan-soft), var(--cyan));
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  width: min(1180px, calc(100% - 28px));
  min-height: calc(100svh - 86px);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 88px) 0 38px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--cyan-soft);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 38px;
  height: 12px;
  border: 1px solid rgba(143, 250, 255, 0.5);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  box-shadow: 0 0 28px rgba(24, 229, 239, 0.5);
}

h1 {
  margin: 0;
  color: #f0ffe9;
  font-size: clamp(5.4rem, 15vw, 11.2rem);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 38px rgba(24, 229, 239, 0.28);
}

.hero-sub {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(198, 228, 223, 0.9);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.55;
  font-weight: 750;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

.secondary {
  color: var(--mist);
  background: rgba(255, 255, 255, 0.06);
}

.description-card {
  width: min(600px, 100%);
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(143, 250, 255, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(24, 229, 239, 0.14), rgba(192, 174, 123, 0.08)),
    rgba(2, 6, 7, 0.82);
  box-shadow: var(--shadow);
}

.description-card b {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.description-card p {
  margin: 0;
  color: rgba(231, 248, 244, 0.92);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 800;
}

.hero-art {
  position: relative;
  min-height: 640px;
}

.portrait-frame {
  position: absolute;
  inset: 2% 4% 2%;
  overflow: hidden;
  border: 1px solid rgba(143, 250, 255, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(6, 34, 32, 0.84), rgba(0, 0, 0, 0.92));
  box-shadow: var(--shadow), inset 0 0 80px rgba(24, 229, 239, 0.12);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(192, 174, 123, 0.18);
  border-radius: 6px;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.symbol-panel {
  position: absolute;
  right: -2px;
  bottom: 7%;
  display: grid;
  gap: 8px;
  width: min(270px, 48%);
  padding: 14px;
  border: 1px solid rgba(143, 250, 255, 0.34);
  border-radius: 8px 0 0 8px;
  background: rgba(0, 9, 10, 0.84);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.44);
}

.symbol-panel span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--cyan-soft);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.banner-section {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto 30px;
}

.banner-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(143, 250, 255, 0.3);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.banner-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

.banner-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(143, 250, 255, 0.38);
  border-radius: 8px;
  color: #001112;
  background: linear-gradient(135deg, var(--cyan-soft), var(--cyan));
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.content {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 38px 0 64px;
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(280px, 0.34fr);
  gap: 18px;
}

.about,
.token-box {
  border: 1px solid rgba(143, 250, 255, 0.26);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 68px rgba(0, 0, 0, 0.44);
}

.about {
  padding: clamp(22px, 4vw, 42px);
}

.about h2,
.token-box h2 {
  margin: 0;
  color: #f0ffe9;
  font-size: clamp(2.4rem, 5.8vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about p {
  max-width: 790px;
  margin: 22px 0 0;
  color: rgba(198, 228, 223, 0.84);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.68;
  font-weight: 700;
}

.note-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.note-list div {
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(143, 250, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(24, 229, 239, 0.1), rgba(192, 174, 123, 0.06)),
    rgba(0, 0, 0, 0.22);
}

.note-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan-soft);
  font-size: 1rem;
}

.note-list span {
  color: rgba(198, 228, 223, 0.78);
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 700;
}

.token-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
}

.token-box h2 {
  font-size: clamp(2rem, 4.8vw, 4.2rem);
}

.token-lines {
  display: grid;
  gap: 10px;
}

.token-lines span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 14px;
  border: 1px solid rgba(143, 250, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(198, 228, 223, 0.86);
  font-size: 0.9rem;
  font-weight: 900;
}

.token-lines em {
  color: var(--cyan-soft);
  font-style: normal;
}

.copy-ticker {
  min-height: 50px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 36px;
  color: rgba(198, 228, 223, 0.56);
  font-size: 0.9rem;
  font-weight: 750;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero,
  .grid {
    grid-template-columns: 1fr;
  }

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

  .hero-art {
    min-height: 560px;
    order: -1;
  }

  h1 {
    font-size: clamp(5rem, 20vw, 8rem);
  }

  .symbol-panel {
    width: min(320px, 64%);
  }

  .note-list {
    grid-template-columns: 1fr;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .topbar,
  .hero,
  .banner-section,
  .content,
  .footer {
    width: min(100% - 20px, 1180px);
  }

  .brand-text strong {
    font-size: 0.88rem;
  }

  .hero-art {
    min-height: 450px;
  }

  .portrait-frame {
    inset: 0;
  }

  .symbol-panel {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    border-radius: 8px;
  }

  .banner-frame img {
    aspect-ratio: 2 / 1;
  }
}
