* {
  box-sizing: border-box;
}

:root {
  --bg: #080a08;
  --bg-2: #0e110d;
  --panel: #11150f;
  --panel-2: #151b12;
  --text: #f4f6ef;
  --muted: #aab1a3;
  --yellow: #fff200;
  --lime: #b9ff00;
  --line: rgba(255, 242, 0, 0.22);
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(185,255,0,.08), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.nav-wrap {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(8, 10, 8, 0.72);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .08em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255,242,0,.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .92rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  color: #d8ddd3;
}

.nav-links a:hover {
  color: var(--yellow);
}

.nav-x {
  border: 1px solid var(--yellow);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--yellow) !important;
}

.hero {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,7,5,.88) 0%, rgba(6,7,5,.42) 44%, rgba(6,7,5,.06) 72%),
    linear-gradient(0deg, rgba(6,7,5,.96) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 180px 0 84px;
}

.eyebrow,
.section-tag {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .22em;
  color: var(--yellow);
}

.hero h1 {
  margin: 14px 0 18px;
  max-width: 800px;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: .9;
  letter-spacing: -.05em;
  font-weight: 1000;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--yellow);
  text-shadow: 0 0 24px rgba(255,242,0,.18);
}

.hero p {
  max-width: 650px;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: #d4dacd;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .03em;
  transition: transform .15s ease, box-shadow .15s ease;
}

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

.primary {
  background: var(--yellow);
  color: #080a08;
  box-shadow: 0 0 28px rgba(255,242,0,.14);
}

.secondary {
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.35);
}

.motto {
  margin-top: 52px;
  font-size: .92rem;
  letter-spacing: .34em;
  font-weight: 800;
  color: #d9ddd5;
}

.motto b {
  color: var(--yellow);
}

.section {
  padding: 110px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) 1.15fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.portrait-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  border: 1px solid var(--line);
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(255,242,0,.08);
  pointer-events: none;
}

.copy h2,
.section-heading h2,
.cta h2 {
  margin: 12px 0 18px;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.short-lines {
  display: grid;
  gap: 9px;
  margin: 28px 0;
  padding: 22px;
  border-left: 3px solid var(--yellow);
  background: linear-gradient(90deg, rgba(255,242,0,.07), transparent);
  font-weight: 850;
}

.accent-line {
  color: var(--yellow) !important;
  letter-spacing: .08em;
  font-weight: 900;
}

.grid-section {
  background:
    linear-gradient(180deg, rgba(255,242,0,.03), transparent 40%),
    var(--bg-2);
  border-block: 1px solid rgba(255,255,255,.05);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 260px;
  padding: 30px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,242,0,.055), transparent 45%),
    var(--panel);
  border: 1px solid rgba(255,255,255,.07);
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--yellow);
  color: #050605;
  font-size: 1.8rem;
  font-weight: 900;
}

.card h3 {
  margin: 26px 0 8px;
  color: var(--yellow);
  font-size: 1.65rem;
  letter-spacing: .08em;
}

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

.token-section {
  padding-bottom: 130px;
}

.token-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 0%, rgba(185,255,0,.08), transparent 28%),
    var(--panel);
}

.token-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.fact {
  padding: 26px;
  border-right: 1px solid rgba(255,255,255,.07);
}

.fact:last-child {
  border-right: 0;
}

.fact span,
.contract-box > span {
  display: block;
  margin-bottom: 7px;
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .18em;
  font-weight: 850;
}

.fact strong {
  font-size: 1.2rem;
  color: var(--yellow);
}

.contract-box {
  padding: 34px;
}

.contract-box strong {
  display: block;
  margin: 4px 0 10px;
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--yellow);
  letter-spacing: -.03em;
}

.contract-box p {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--muted);
}

.contract-box a {
  color: var(--yellow);
}

.cta {
  padding: 70px 0;
  background:
    linear-gradient(90deg, rgba(185,255,0,.07), transparent),
    #0d110c;
  border-top: 1px solid var(--line);
}

.cta-inner {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 32px;
}

.cta-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,242,0,.45);
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 8px;
}

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

footer {
  padding: 34px 0;
  background: #050605;
  border-top: 1px solid rgba(255,255,255,.05);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.footer-inner strong {
  color: var(--yellow);
  letter-spacing: .08em;
}

.footer-inner span {
  color: #8c9388;
}

.footer-inner p {
  max-width: 620px;
  margin: 0;
  color: #777e73;
  font-size: .78rem;
  text-align: right;
}

@media (max-width: 900px) {
  .nav-links a:not(.nav-x) {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .hero-art {
    object-position: 35% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(6,7,5,.97) 4%, rgba(6,7,5,.68) 47%, rgba(6,7,5,.14) 100%);
  }

  .hero-content {
    padding-top: 390px;
  }

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

  .portrait-card {
    max-width: 600px;
    margin-inline: auto;
  }

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

  .token-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .cta-inner {
    grid-template-columns: 80px 1fr;
  }

  .cta-logo {
    width: 80px;
    height: 80px;
  }

  .cta .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-inner p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(var(--max), calc(100% - 28px));
  }

  .nav {
    min-height: 64px;
  }

  .brand {
    font-size: .84rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .nav-x {
    padding: 8px 12px !important;
    font-size: .8rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding: 370px 0 56px;
  }

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .motto {
    letter-spacing: .2em;
  }

  .section {
    padding: 78px 0;
  }

  .copy h2,
  .section-heading h2 {
    font-size: 2.45rem;
  }

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

  .fact {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .contract-box {
    padding: 26px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-logo {
    width: 90px;
    height: 90px;
  }
}
