@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Oswald;
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/oswald-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0;
}

@font-face {
  font-family: Oswald;
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/oswald-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}

:root {
  --navy: #06210e;
  --navy-deep: #031209;
  --navy-mid: #0a3a18;
  --green: #00c805;
  --green-dark: #009e04;
  --green-deep: #04180c;
  --red: #c41220;
  --red-dark: #8e0c17;
  --gold: #d8a140;
  --gold-light: #f7e670;
  --white: #fff;
  --ink: #06140b;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, sans-serif;
  color: var(--white);
  background: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .03em;
  border: 0;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-cta {
  background: var(--green);
  color: #04180c;
  border: 1px solid var(--green);
  border-radius: 10px;
  padding: 1rem 2.2rem;
  font-size: 1.15rem;
}
.btn-cta:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-nav {
  background: var(--green);
  color: #04180c;
  border-radius: 999px;
  padding: .7rem 1.3rem;
  font-size: .85rem;
}
.btn-nav:hover { background: var(--green-dark); color: #fff; }
.btn-copy {
  background: var(--green);
  color: #04180c;
  border-radius: 8px;
  padding: .75rem 1.1rem;
  white-space: nowrap;
}
.btn-copy:hover, .btn-copy.is-copied { background: var(--green-dark); color: #fff; }
.btn-alt {
  background: #fff;
  color: var(--navy);
  border-radius: 8px;
  padding: .75rem 1.1rem;
  font-size: .78rem;
}
.btn-alt:hover { background: var(--gold-light); }
.btn-wide { min-width: 220px; margin: 1.5rem auto 0; display: flex; }

.top-banner {
  background: linear-gradient(90deg, #00c805, #007a03);
  color: #031209;
  text-align: center;
  padding: .7rem 1rem;
  font-size: .95rem;
}
.top-banner strong { font-weight: 800; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 18, 9, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 78px;
}
.nav-logo img { width: 180px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: auto;
}
.nav-links a, .nav-more-btn {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  background: none;
  border: 0;
}
.nav-links a:hover, .nav-more-btn:hover { color: var(--green); }
.nav-x img { width: 22px; height: 22px; }
.nav-more { position: relative; }
.nav-more-btn { display: flex; align-items: center; gap: .3rem; }
.nav-more-btn svg { width: 14px; height: 14px; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 130%;
  left: 0;
  min-width: 180px;
  background: #06210e;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: .5rem 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.nav-dropdown a { display: block; padding: .65rem 1rem; }
.nav-more.open .nav-dropdown, .nav-more:hover .nav-dropdown { display: block; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: none;
  border: 0;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.hero {
  background:
    linear-gradient(180deg, #0000 62%, #fff 92%),
    radial-gradient(circle at 100% 100%, #04180ccc 22%, #0000 49%),
    linear-gradient(270deg, #0000 17%, #007a03ab 65%, #005802bf 99%),
    url("assets/coin-bg.webp");
  background-size: auto, auto, auto, cover;
  background-position: center;
  padding: 2.5rem 1rem 0;
}
.hero-card {
  width: min(1200px, 100%);
  margin: 0 auto;
  background:
    linear-gradient(#031209d4, #04180cd4),
    url("assets/grain.png"),
    url("assets/stars-stripes.webp");
  background-size: auto, auto, cover;
  border-radius: 28px;
  padding: 3rem 2.5rem 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.5rem;
  align-items: center;
}
.hero-copy h1 {
  font-family: Oswald, sans-serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 700;
  line-height: .95;
  text-transform: uppercase;
  text-shadow: 5px 8px 20px #000;
}
.gold-underline {
  background-image: url("assets/gold-texture.jpg");
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: .12em;
}
.hero-lead { margin-top: 1.2rem; font-size: 1.2rem; }
.hero-chain {
  margin-top: .5rem;
  color: var(--green);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-art { position: relative; }
.hero-art img {
  width: min(460px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.45));
}
.hero-art blockquote {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
}

.ca-box {
  margin-top: 2rem;
  background: rgba(255,255,255,.96);
  color: #111;
  border-radius: 14px;
  padding: 1rem 1.1rem;
}
.ca-label { font-weight: 800; margin-bottom: .6rem; color: #111; }
.ca-row {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
}
.ca-prefix { font-weight: 800; }
.token-address {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 700;
  word-break: break-all;
  flex: 1;
}
.ca-links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.2rem;
  margin-top: .8rem;
}
.ca-links a { color: var(--green-dark); font-weight: 700; text-decoration: none; }
.ca-links a:hover { text-decoration: underline; }
.ca-box-dark {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
}
.ca-box-dark .ca-links a { color: var(--green); }

.disclaimer {
  margin-top: 1.4rem;
  font-size: .78rem;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}
.disclaimer a { color: var(--green); }

.marquee {
  overflow: hidden;
  background: #fff;
  color: #111;
  border-top: 4px solid var(--green);
  border-bottom: 4px solid var(--green);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 22s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .7rem 1.6rem;
  font-family: Oswald, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}
.marquee-item img { width: 46px; height: 46px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.about {
  background:
    radial-gradient(circle, #0a3a18 43%, #031209),
    url("assets/grain.png");
  padding: 5rem 0 3rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about h2, .howto h2, .address h2, .community h2, .faqs h2 {
  font-family: Oswald, sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  text-transform: uppercase;
}
.about h2 span { color: var(--green); }
.about-card { margin-top: 1.5rem; border-radius: 12px; }
.about-kicker { font-weight: 800; margin-bottom: 1rem; }
.about-copy p + p { margin-top: 1rem; line-height: 1.7; }

.facts {
  background: linear-gradient(#031209d4, #04180cd4), url("assets/stars-stripes.webp");
  background-size: auto, cover;
  padding: 2rem 0 4.5rem;
}
.facts-title { text-align: center; margin-bottom: 1.8rem; letter-spacing: .04em; }
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.facts article {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 1.3rem;
}
.facts img { width: 42px; height: 42px; border-radius: 50%; margin-bottom: .8rem; }
.facts h4 { font-family: Oswald, sans-serif; margin-bottom: .5rem; }

.howto {
  background:
    linear-gradient(#031209d4, #04180cd4),
    url("assets/grain.png"),
    url("assets/howto-bg.webp");
  background-size: auto, auto, cover;
  padding: 5rem 0;
  text-align: center;
}
.howto h2 span { color: var(--green); }
.pay-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 1.6rem 0;
}
.pay-pill {
  width: 84px;
  height: 64px;
  background: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  padding: .6rem;
}
.pay-pill img { max-height: 36px; width: auto; max-width: 54px; }
.howto-with { margin-top: 1.2rem; opacity: .85; }
.uniswap-wordmark { width: 72px; margin: .6rem auto 2rem; }
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  text-align: left;
}
.steps article {
  background: rgba(255,255,255,.95);
  color: #141414;
  border-radius: 16px;
  padding: 1.4rem;
}
.steps h3 { font-family: Oswald, sans-serif; font-size: 1.5rem; margin-bottom: .8rem; }
.steps h3 span { color: var(--green-dark); }
.steps ul { padding-left: 1.1rem; line-height: 1.6; }
.steps li + li { margin-top: .45rem; }
.step-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }

.address {
  background:
    radial-gradient(circle, #06210e, #fff0 97%),
    url("assets/community.webp");
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  text-align: center;
}
.address h2 { margin-bottom: 1.4rem; }

.community {
  background: #fff;
  color: #111;
  padding-top: 4rem;
}
.community-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 2rem;
  align-items: center;
}
.community-grid p { margin: 1rem 0 1.4rem; line-height: 1.7; }
.community-hero { margin-top: 2.5rem; text-align: center; }
.community-hero img { width: min(995px, 100%); margin: 0 auto; }
.community-hero h2 {
  margin: 1.5rem auto 0;
  padding-bottom: 3rem;
  max-width: 900px;
}
.community-hero span { color: var(--green-dark); }

.faqs {
  background:
    linear-gradient(#031209, #04180c),
    url("assets/grain.png"),
    url("assets/stars-stripes.webp");
  background-size: auto, auto, cover;
  padding: 5rem 0;
}
.faq-list { max-width: 820px; margin: 1.8rem auto 0; }
.faq {
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.faq button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1.15rem 2.2rem 1.15rem 0;
  position: relative;
}
.faq button::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 400;
}
.faq.open button::after { content: "–"; }
.faq-body {
  display: none;
  padding: 0 0 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
}
.faq.open .faq-body { display: block; }
.faq-body ul { margin: .7rem 0 0 1.1rem; }

.chain-bar {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 1rem;
}
.chain-bar img { height: 42px; width: auto; filter: brightness(1.1); }

footer {
  background: #000;
  padding: 3rem 0 2rem;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.footer-logo { width: 180px; }
.footer-x img { width: 28px; }
footer nav { display: flex; flex-wrap: wrap; gap: .8rem 1.2rem; }
footer nav a, .footer-bottom a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .9rem;
}
.footer-bottom div { display: flex; gap: 1.2rem; }

.back-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}
.back-top img { width: 18px; filter: invert(1); }

@media (max-width: 980px) {
  .hero-grid, .about-grid, .community-grid, .steps, .facts-grid {
    grid-template-columns: 1fr;
  }
  .hero-card { padding: 2rem 1.1rem 1.4rem; border-radius: 18px; }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: #04180c;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.2rem 1.4rem;
    gap: .9rem;
  }
  .nav.open .nav-links { display: flex; }
  .nav-toggle { display: flex; }
  .btn-nav { display: none; }
  .nav-dropdown { position: static; display: none; box-shadow: none; background: transparent; border: 0; padding-left: .4rem; }
  .nav-more.open .nav-dropdown { display: block; }
  .ca-row { flex-direction: column; align-items: stretch; }
}
