:root {
  --bg: #050806;
  --bg-2: #08140d;
  --bg-3: #0b1a11;
  --green: #00c805;
  --green-bright: #5cff62;
  --green-deep: #083111;
  --orange: #ff9900;
  --gold: #f0c36a;
  --cardboard: #c4a574;
  --ink: #f3efe6;
  --muted: #b8c3b6;
  --line: rgba(243, 239, 230, 0.14);
  --panel: #0c1610;
  --pad: clamp(16px, 4vw, 48px);
  --wrap: min(1180px, calc(100% - var(--pad) * 2));
  --header: "Segoe UI Variable Display", "Segoe UI", "Arial Narrow", Impact, "Franklin Gothic Medium", system-ui, sans-serif;
  --body: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono: "Cascadia Mono", "Segoe UI Mono", Consolas, "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: clip;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
}

body {
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(0, 200, 5, 0.16), transparent 55%),
    radial-gradient(900px 420px at 0% 20%, rgba(255, 153, 0, 0.07), transparent 50%),
    var(--bg);
  line-height: 1.5;
  min-width: 0;
}

img {
  max-width: 100%;
  height: auto;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #07110c;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 0 1 auto;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  object-position: center;
  display: block;
  flex: 0 0 auto;
}

.brand-ticker {
  font-family: var(--header);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
  min-width: 0;
  flex-wrap: wrap;
}

.header-buy {
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--header);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-buy {
  background: var(--green);
  color: #051109;
  box-shadow: 0 0 0 0 rgba(0, 200, 5, 0.35);
}

.btn-chart {
  background: var(--panel);
  color: var(--green);
  border-color: var(--green);
}

.btn-x {
  background: var(--panel);
  color: var(--ink);
  border-color: var(--ink);
}

.btn-tg {
  background: transparent;
  color: var(--muted);
  border-color: rgba(0, 200, 5, 0.38);
}

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

.btn-buy:hover {
  box-shadow: 0 8px 24px rgba(0, 200, 5, 0.28);
}

.btn-chart:hover,
.btn-x:hover,
.btn-tg:hover {
  background: #122018;
}

.arr {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn:hover .arr {
  transform: rotate(45deg) translate(2px, -2px);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(28px, 5vw, 64px) 0 clamp(36px, 6vw, 80px);
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 8, 6, 0.2), var(--bg) 92%),
    linear-gradient(115deg, #050806 0%, #08160e 48%, #06130c 100%);
}

.hero-gridline {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 5, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 165, 116, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 88%);
}

.hero-glow {
  position: absolute;
  width: min(640px, 70vw);
  height: min(640px, 70vw);
  right: -6%;
  top: 4%;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.28), transparent 64%);
}

.hero-swoosh {
  position: absolute;
  border: 2px solid rgba(255, 153, 0, 0.28);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 70% 0 60% 0;
  transform: rotate(-18deg);
}

.hero-swoosh-a {
  width: min(42vw, 420px);
  height: min(18vw, 160px);
  right: 8%;
  bottom: 18%;
}

.hero-swoosh-b {
  width: min(28vw, 280px);
  height: min(12vw, 110px);
  right: 22%;
  bottom: 30%;
  border-color: rgba(0, 200, 5, 0.22);
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--green-bright);
  box-shadow: 0 0 10px var(--green);
  animation: spark 3.6s ease-in-out infinite;
}

.s1 { top: 18%; right: 18%; animation-delay: 0s; }
.s2 { top: 32%; right: 8%; background: var(--orange); animation-delay: 0.6s; }
.s3 { top: 58%; right: 28%; animation-delay: 1.2s; }
.s4 { top: 22%; right: 38%; background: var(--gold); animation-delay: 1.8s; }
.s5 { top: 70%; right: 12%; animation-delay: 2.4s; }

@keyframes spark {
  0%, 100% { opacity: 0.15; transform: translateY(0) scale(1); }
  50% { opacity: 1; transform: translateY(-10px) scale(1.4); }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
}

.hero-copy {
  min-width: 0;
}

.chain-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.chain-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--green);
}

.hero-ticker {
  margin-top: 10px;
  font-family: var(--header);
  font-size: clamp(4rem, 13vw, 9.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.82;
}

.hero-name {
  margin-top: 14px;
  font-size: clamp(1.2rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-hook {
  margin-top: 18px;
  max-width: 22ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.ca-module {
  margin-top: 28px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(196, 165, 116, 0.08) 0 8px, transparent 8px),
    var(--panel);
  min-width: 0;
}

.ca-label-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.ca-label,
.ca-chain {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ca-label {
  color: var(--orange);
}

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

.ca-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.ca-value {
  display: block;
  min-width: 0;
  font-family: var(--mono);
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  color: var(--ink);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.copy-btn {
  appearance: none;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--green);
  border-radius: 2px;
  background: transparent;
  color: var(--green);
  font-family: var(--header);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.copy-btn:hover,
.copy-btn.is-copied {
  background: var(--green);
  color: #051109;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.hero-trail,
.hero-trail-2 {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: none;
}

.hero-trail {
  width: 78%;
  height: 42%;
  left: 4%;
  bottom: 14%;
  background: conic-gradient(from 210deg, transparent, rgba(0, 200, 5, 0.28), rgba(255, 153, 0, 0.22), transparent 62%);
  animation: trail 6s linear infinite;
}

.hero-trail-2 {
  width: 56%;
  height: 56%;
  right: 6%;
  top: 10%;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.18), transparent 68%);
  animation: trail 7.5s linear infinite reverse;
}

@keyframes trail {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.04); }
}

.hero-cat {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  display: block;
  background: transparent;
  animation: float 4.8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50% { transform: translateY(-14px) rotate(1.4deg); }
}

.reveal-hero {
  animation: hero-in 0.7s ease both;
}

.hero-copy .reveal-hero:nth-child(1) { animation-delay: 0.05s; }
.hero-copy .reveal-hero:nth-child(2) { animation-delay: 0.16s; }
.hero-copy .reveal-hero:nth-child(3) { animation-delay: 0.28s; }
.hero-copy .reveal-hero:nth-child(4) { animation-delay: 0.4s; }
.hero-copy .reveal-hero:nth-child(5) { animation-delay: 0.52s; }
.hero-copy .reveal-hero:nth-child(6) { animation-delay: 0.64s; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.delivery-strip {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, #07140e, #0c2414 50%, #07140e);
  overflow: hidden;
}

.marquee {
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--header);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.marquee-track .mark {
  width: 8px;
  height: 8px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  flex: 0 0 auto;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.narrative {
  padding: clamp(64px, 10vw, 120px) 0;
}

.narrative-wrap {
  max-width: 920px;
}

.eyebrow {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.narrative-lead {
  margin-top: 16px;
  font-family: var(--header);
  font-size: clamp(2rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.narrative-lead span {
  color: var(--green-bright);
}

.narrative-body {
  display: grid;
  gap: 22px;
  margin-top: 40px;
  max-width: 38ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.narrative-name {
  color: var(--ink);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
}

.narrative-not {
  color: var(--cardboard);
}

.narrative-end {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--header);
  font-size: clamp(1.4rem, 3.4vw, 2.3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.banner-showcase {
  width: 100%;
}

.banner-frame {
  overflow: hidden;
  width: 100%;
}

.banner-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  will-change: transform;
}

.onchain {
  padding: clamp(56px, 8vw, 100px) 0;
}

.onchain-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.onchain-head h2 {
  margin-top: 8px;
  font-family: var(--header);
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
}

.dex-shell {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  background: #000;
  overflow: hidden;
}

#dexEmbed {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  background: #000;
}

.buy-path {
  padding: 0 0 clamp(64px, 9vw, 110px);
}

.buy-title {
  margin: 12px 0 36px;
  font-family: var(--header);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
}

.buy-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.buy-steps li {
  display: grid;
  grid-template-columns: 4.2rem minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  min-width: 0;
}

.buy-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-num {
  font-family: var(--header);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--orange);
}

.buy-steps h3 {
  font-family: var(--header);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.buy-steps p {
  margin-top: 10px;
  color: var(--muted);
}

.buy-steps a:not(.btn) {
  color: var(--green);
  border-bottom: 1px solid var(--green);
  letter-spacing: 0.04em;
}

.community {
  padding: clamp(48px, 8vw, 90px) 0;
  background:
    linear-gradient(180deg, transparent, rgba(0, 200, 5, 0.05)),
    var(--bg-2);
  border-block: 1px solid var(--line);
}

.community-title {
  margin: 10px 0 28px;
  font-family: var(--header);
  font-size: clamp(2.2rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.community-links {
  display: grid;
  gap: 10px;
}

.community-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}

.community-link:hover .community-kicker {
  color: var(--green);
}

.community-kicker {
  font-family: var(--header);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.community-url {
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(0.72rem, 1.8vw, 0.95rem);
  overflow-wrap: anywhere;
  min-width: 0;
  text-align: right;
}

.final-cta {
  padding: clamp(72px, 11vw, 130px) 0;
  text-align: center;
  background:
    radial-gradient(700px 280px at 50% 0%, rgba(0, 200, 5, 0.14), transparent 70%),
    var(--bg);
}

.final-line {
  font-family: var(--header);
  font-size: clamp(1.35rem, 4.4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.final-ticker {
  margin: 28px 0 32px;
  font-family: var(--header);
  font-size: clamp(4.2rem, 16vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.8;
  color: var(--green);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
  background: #060c09;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  flex-wrap: wrap;
}

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

.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.footer-name {
  font-weight: 700;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  font-family: var(--header);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--green);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (max-width: 1200px) {
  .hero-ticker {
    font-size: clamp(3.8rem, 12vw, 8.2rem);
  }
}

@media (max-width: 1024px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand buy"
      "nav nav";
    align-items: center;
  }

  .brand {
    grid-area: brand;
  }

  .header-buy {
    grid-area: buy;
  }

  .header-nav {
    grid-area: nav;
    margin-left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .header-nav .btn {
    width: 100%;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
    gap: 20px;
  }

  .hero-cat {
    width: min(100%, 460px);
  }

  #dexEmbed {
    height: 520px;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: 2;
  }

  .hero-copy {
    order: 1;
  }

  .hero-cat {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .hero-hook {
    max-width: none;
  }

  .buy-steps li {
    grid-template-columns: 3.2rem minmax(0, 1fr);
    padding: 22px 0;
  }

  .community-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .community-url {
    text-align: left;
  }

  #dexEmbed {
    height: 480px;
  }
}

@media (max-width: 430px) {
  .header-nav {
    grid-template-columns: 1fr 1fr;
  }

  .header-nav .btn-tg {
    grid-column: 1 / -1;
  }

  .hero-ticker {
    font-size: clamp(3.2rem, 22vw, 4.6rem);
  }

  .hero-ctas .btn,
  .final-actions .btn {
    flex: 1 1 calc(50% - 8px);
  }

  .ca-row {
    grid-template-columns: 1fr;
  }

  .copy-btn {
    width: 100%;
  }

  #dexEmbed {
    height: 440px;
  }

  .footer-nav {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .brand-ticker {
    font-size: 1.15rem;
  }

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

  .hero-ctas .btn-buy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .btn {
    padding: 0 12px;
    letter-spacing: 0.08em;
  }
}

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

  .reveal-hero,
  .hero-cat,
  .hero-trail,
  .hero-trail-2,
  .spark,
  .marquee-track,
  .js .reveal,
  .js .reveal.is-visible {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .btn:hover,
  .btn:hover .arr {
    transform: none;
  }
}
