:root {
  --bg: #f3e86a;
  --bg-soft: #efe25a;
  --bg-alt: #e8d84a;
  --ink: #1a1408;
  --ink-soft: #3d3220;
  --muted: #6a5a3a;
  --line: rgba(26, 20, 8, 0.14);
  --gold: #c9920a;
  --gold-deep: #8a6408;
  --red: #d62828;
  --cream: #fff8d6;
  --white: #fffdf2;
  --shadow: 0 18px 40px rgba(26, 20, 8, 0.12);
  --radius: 18px;
  --font-display: "Dela Gothic One", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
  --nav-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(255, 255, 255, 0.45), transparent 55%),
    url("data:image/svg+xml,%3Csvg width='80' height='40' viewBox='0 0 80 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40c10 0 15-10 20-20S35 0 40 0s15 10 20 20 15 20 20 20' fill='none' stroke='%23c9920a' stroke-opacity='0.12' stroke-width='1.2'/%3E%3Cpath d='M-40 40c10 0 15-10 20-20S-5 0 0 0s15 10 20 20 15 20 20 20' fill='none' stroke='%23c9920a' stroke-opacity='0.12' stroke-width='1.2'/%3E%3C/svg%3E");
  background-size: auto, 80px 40px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  font-weight: 800;
}

::selection {
  background: var(--ink);
  color: var(--bg);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--cream);
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ——— Nav ——— */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  border-bottom: 1px solid var(--line);
  background: rgba(243, 232, 106, 0.88);
  backdrop-filter: blur(12px);
}

.nav__inner {
  height: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-deep);
  background: #000;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.brand__ticker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--red);
  font-weight: 700;
}

.nav__links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.nav__links a:hover {
  color: var(--red);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 242, 0.45);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.nav__icon:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 242, 0.5);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(26, 20, 8, 0.35);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--solid {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 8px 0 rgba(26, 20, 8, 0.18);
}

.btn--solid:hover {
  background: var(--red);
  box-shadow: 0 8px 0 rgba(140, 20, 20, 0.25);
}

.btn--outline {
  background: rgba(255, 253, 242, 0.55);
  border-color: var(--ink);
  color: var(--ink);
}

.btn--outline:hover {
  background: var(--white);
}

.btn--lg {
  padding: 15px 26px;
  font-size: 1rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(14px, 2.5vw, 24px) clamp(16px, 4vw, 32px) 22px;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background:
    radial-gradient(circle at 80% 20%, rgba(214, 40, 40, 0.12), transparent 35%),
    radial-gradient(circle at 15% 70%, rgba(201, 146, 10, 0.18), transparent 40%);
}

.hero__stage {
  position: relative;
  overflow: hidden;
  border: 2.5px solid var(--ink);
  border-radius: calc(var(--radius) + 6px);
  background: #e8d84a;
  box-shadow: var(--shadow);
  animation: heroIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__banner {
  width: 100%;
  height: auto;
  display: block;
  animation: bannerDrift 12s ease-in-out infinite alternate;
  transform-origin: center center;
}

.hero__copy {
  position: relative;
  margin-top: clamp(18px, 3vw, 28px);
  max-width: 720px;
  animation: copyIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.hero__kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--red);
  margin-bottom: 12px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  text-wrap: balance;
}

.hero__sub {
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: 20px;
}

.checklist {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background:
    linear-gradient(var(--red), var(--red)) center / 8px 2px no-repeat,
    linear-gradient(var(--red), var(--red)) center / 2px 8px no-repeat,
    var(--cream);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.ca {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 10px 12px 10px 14px;
  border: 1.5px dashed var(--ink);
  border-radius: 12px;
  background: rgba(255, 253, 242, 0.55);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.ca__label {
  font-weight: 700;
  color: var(--red);
}

.ca__value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(52vw, 340px);
  color: var(--ink);
}

.ca__copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 7px 10px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.ca__copy:hover {
  background: var(--red);
}

/* ——— Marquee ——— */
.marquee {
  border-block: 2px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  padding: 14px 0;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  animation: marquee 28s linear infinite;
}

.marquee__track i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex: 0 0 auto;
}

/* ——— Sections ——— */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 100px) clamp(16px, 4vw, 32px);
}

.section--alt {
  max-width: none;
  padding-inline: 0;
  background: linear-gradient(180deg, rgba(255, 253, 242, 0.35), rgba(232, 216, 74, 0.55));
  border-block: 1px dashed var(--line);
}

.section--alt > * {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.section__head {
  max-width: 640px;
  margin-bottom: clamp(28px, 5vw, 44px);
}

.section__lead {
  margin-top: 10px;
  color: var(--muted);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section h2,
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 64px);
  align-items: center;
}

.section__visual {
  display: grid;
  place-items: center;
}

.section__visual img {
  width: min(100%, 380px);
  filter: drop-shadow(0 22px 30px rgba(26, 20, 8, 0.18));
  animation: floaty 5.5s ease-in-out infinite;
}

.section__copy p + p {
  margin-top: 14px;
}

.section__copy p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

/* ——— Tokenomics ——— */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat {
  padding: 22px 20px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--cream);
}

.stat__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat__note {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ——— Steps ——— */
.steps {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1.5px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1.5px solid var(--line);
  align-items: start;
}

.step__n {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--red);
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.step p {
  color: var(--ink-soft);
}

/* ——— FAQ ——— */
.faq {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.faq__item {
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--cream);
  padding: 0 18px;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--red);
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  padding: 0 0 18px;
  color: var(--ink-soft);
  max-width: 52em;
}

/* ——— Closing ——— */
.closing {
  padding: clamp(64px, 10vw, 110px) clamp(16px, 4vw, 32px);
  text-align: center;
}

.closing__inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing__logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  background: #000;
}

.closing p {
  margin: 12px 0 26px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.closing__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ——— Footer ——— */
.footer {
  border-top: 2px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  padding: 36px clamp(16px, 4vw, 32px) 48px;
}

.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.footer__disclaimer {
  max-width: 62em;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255, 248, 214, 0.72);
}

.footer__links {
  display: flex;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.footer__links a:hover {
  color: #ffd36a;
}

/* ——— Motion / reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes copyIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes bannerDrift {
  from {
    transform: scale(1) translateY(0);
  }
  to {
    transform: scale(1.03) translateY(-1%);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ——— Toast ——— */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  z-index: 80;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .section__grid {
    grid-template-columns: 1fr;
  }

  .section__visual {
    order: -1;
  }

  .section__visual img {
    width: min(100%, 280px);
  }
}

@media (max-width: 760px) {
  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav__toggle {
    display: flex;
    margin-left: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav__links {
    display: flex;
    position: fixed;
    top: var(--nav-h);
    left: 16px;
    right: 16px;
    z-index: 55;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 8px;
    border: 2px solid var(--ink);
    border-radius: 16px;
    background: var(--cream);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav__links a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .nav__links a:last-child {
    border-bottom: 0;
  }

  body.nav-open .nav__actions {
    display: flex;
    position: fixed;
    top: calc(var(--nav-h) + 210px);
    left: 16px;
    right: 16px;
    z-index: 55;
    justify-content: stretch;
    gap: 10px;
  }

  body.nav-open .nav__actions .nav__cta {
    flex: 1;
  }

  .hero__title {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .ca {
    width: 100%;
  }

  .ca__value {
    max-width: 42vw;
  }
}

@media (max-width: 520px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 48px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__stage,
  .hero__copy,
  .hero__banner,
  .section__visual img,
  .marquee__track,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
