:root {
  --olive: #939a7b;
  --olive-deep: #505840;
  --olive-dark: #222719;
  --mint: #9ee5dc;
  --mint-soft: #d7fff7;
  --cream: #fff8df;
  --paper: #f5edd8;
  --gold: #cf933d;
  --hair: #d9a854;
  --shoe: #ce6752;
  --ink: #191914;
  --line: rgba(25, 25, 20, 0.18);
  --shadow: 0 28px 80px rgba(29, 34, 22, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 248, 223, 0.64), transparent 34%),
    radial-gradient(circle at 86% 20%, rgba(158, 229, 220, 0.38), transparent 28%),
    linear-gradient(145deg, #a7ad8e 0%, #899174 46%, #e9dfc1 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent 78%);
}

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

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

.site-shell {
  position: relative;
  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: 2px solid rgba(25, 25, 20, 0.18);
  border-radius: 999px;
  background: rgba(255, 248, 223, 0.74);
  box-shadow: 0 10px 40px rgba(25, 25, 20, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--cream);
  background: var(--olive-dark);
  box-shadow: inset 0 -6px 0 rgba(255, 255, 255, 0.12);
}

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

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

.brand-text span {
  margin-top: 3px;
  color: var(--olive-deep);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav a,
.nav button,
.primary,
.secondary {
  min-height: 42px;
  border: 2px solid rgba(25, 25, 20, 0.16);
  border-radius: 999px;
  padding: 0 16px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
}

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

.nav button,
.primary {
  color: var(--cream);
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(20px, 4vw, 58px);
  align-items: center;
  width: min(1180px, calc(100% - 28px));
  min-height: calc(100svh - 86px);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 78px) 0 34px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 2px solid rgba(25, 25, 20, 0.18);
  border-radius: 999px;
  background: rgba(255, 248, 223, 0.58);
  color: var(--olive-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--shoe);
  box-shadow: 15px 0 0 var(--mint), 30px 0 0 var(--gold);
}

h1 {
  margin: 0;
  max-width: 8ch;
  font-size: clamp(4.6rem, 14vw, 10.6rem);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-sub {
  max-width: 600px;
  margin: 22px 0 0;
  color: #343826;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.55;
  font-weight: 700;
}

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

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

.secondary {
  color: var(--ink);
  background: rgba(255, 248, 223, 0.68);
}

.quick-card {
  width: min(520px, 100%);
  margin-top: 28px;
  padding: 18px;
  border: 2px solid rgba(25, 25, 20, 0.18);
  border-radius: 18px;
  background: rgba(245, 237, 216, 0.76);
  box-shadow: var(--shadow);
}

.quick-card b {
  display: block;
  margin-bottom: 8px;
  color: var(--olive-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.quick-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 750;
}

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

.poster {
  position: absolute;
  inset: 4% 6% 6% 10%;
  border: 3px solid rgba(25, 25, 20, 0.72);
  border-radius: 42px;
  background:
    linear-gradient(120deg, rgba(255, 248, 223, 0.82), rgba(158, 229, 220, 0.3)),
    var(--olive);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.poster::before,
.poster::after {
  content: "";
  position: absolute;
  border: 3px solid rgba(25, 25, 20, 0.68);
  border-radius: 999px;
  background: var(--cream);
}

.poster::before {
  top: 22px;
  left: 24px;
  width: 88px;
  height: 24px;
}

.poster::after {
  right: 26px;
  bottom: 28px;
  width: 118px;
  height: 24px;
  background: var(--mint);
}

.character {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.character img {
  width: min(92%, 620px);
  max-height: 700px;
  object-fit: contain;
  filter: drop-shadow(0 30px 24px rgba(25, 25, 20, 0.28));
}

.ticker-stack {
  position: absolute;
  right: 2%;
  top: 10%;
  display: grid;
  gap: 8px;
  transform: rotate(90deg);
  transform-origin: right top;
}

.ticker-stack span {
  width: max-content;
  padding: 8px 12px;
  border: 2px solid rgba(25, 25, 20, 0.75);
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.78rem;
  font-weight: 950;
}

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

.banner-frame {
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(25, 25, 20, 0.7);
  border-radius: 26px;
  background: var(--olive-dark);
  box-shadow: var(--shadow);
}

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

.banner-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 13px;
  border: 2px solid rgba(25, 25, 20, 0.72);
  border-radius: 999px;
  background: rgba(255, 248, 223, 0.78);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 18px;
  align-items: stretch;
}

.about-panel,
.token-panel {
  border: 2px solid rgba(25, 25, 20, 0.18);
  border-radius: 24px;
  background: rgba(255, 248, 223, 0.72);
  box-shadow: 0 18px 58px rgba(25, 25, 20, 0.14);
}

.about-panel {
  padding: clamp(22px, 4vw, 40px);
}

.about-panel h2,
.token-panel h2 {
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.about-panel p {
  max-width: 760px;
  margin: 20px 0 0;
  color: #343826;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.65;
  font-weight: 700;
}

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

.note-list div {
  min-height: 130px;
  padding: 16px;
  border: 2px solid rgba(25, 25, 20, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.32);
}

.note-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.note-list span {
  color: #4d513c;
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 700;
}

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

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

.pill-list {
  display: grid;
  gap: 10px;
}

.pill-list span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 14px;
  border: 2px solid rgba(25, 25, 20, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  color: #3b3f2d;
  font-size: 0.9rem;
  font-weight: 900;
}

.ticker-copy {
  min-height: 48px;
  border: 0;
  border-radius: 16px;
  color: var(--cream);
  background: var(--shoe);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

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

@media (max-width: 900px) {
  .topbar {
    align-items: stretch;
    border-radius: 24px;
  }

  .nav {
    display: none;
  }

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

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

  h1 {
    max-width: none;
    font-size: clamp(4.2rem, 18vw, 7rem);
  }

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

  .poster {
    inset: 3% 2% 7%;
  }

  .character img {
    width: min(98%, 520px);
  }

  .ticker-stack {
    display: none;
  }

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

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

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

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

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

  .quick-card {
    border-radius: 18px;
  }

  .banner-frame {
    border-radius: 18px;
  }

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

  .about-panel,
  .token-panel {
    border-radius: 18px;
  }
}
