/* ═══════════════════════════════════════════════════════
   $RWA — REAL WORLD ASSES
   Neon-lime degen luxury. Black, lime, heavy italic type.
   ═══════════════════════════════════════════════════════ */

:root {
  --black: #070707;
  --panel: #0e0f0a;
  --lime: #c8f902;
  --lime-soft: rgba(200, 249, 2, 0.14);
  --white: #f4f6ee;
  --grey: #9aa08c;
  --red: #ff5c4d;
  --hairline: rgba(200, 249, 2, 0.16);
  --sans: "Archivo", "Helvetica Neue", sans-serif;
  --mono: "IBM Plex Mono", "Consolas", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.mono { font-family: var(--mono); letter-spacing: 0.02em; }
.up   { color: var(--lime); }
.down { color: var(--red); }

a { color: var(--lime); }

::selection { background: var(--lime); color: var(--black); }

/* display type: ultra-heavy expanded italic */
.display, h1, .section-title {
  font-family: var(--sans);
  font-weight: 900;
  font-style: italic;
  font-variation-settings: "wdth" 118;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ══════════ TICKER ══════════ */
.ticker {
  background: var(--lime);
  color: var(--black);
  overflow: hidden;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 0;
  white-space: nowrap;
  border-bottom: 1px solid var(--black);
}
.ticker__track { display: inline-flex; animation: ticker-scroll 28s linear infinite; }
.ticker__group { display: inline-flex; }
.ticker__group span { padding: 0 26px; border-right: 1.5px solid rgba(7, 7, 7, 0.25); }
.ticker__group b { font-weight: 700; margin-left: 6px; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════ NAV ══════════ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  background: rgba(7, 7, 7, 0.85);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__img {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--lime);
  object-fit: cover;
  box-shadow: 0 0 18px rgba(200, 249, 2, 0.4);
}
.brand__name {
  font-weight: 900;
  font-style: italic;
  font-size: 26px;
  color: var(--white);
  font-variation-settings: "wdth" 118;
  letter-spacing: 0.02em;
}
.nav__links { display: flex; gap: clamp(12px, 2vw, 26px); }
.nav__links a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }

/* ══════════ BUTTONS ══════════ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 800;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 12px 26px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-transform: uppercase;
}
.btn--lime {
  background: var(--lime);
  color: var(--black);
  border: 1.5px solid var(--lime);
  box-shadow: 0 0 22px rgba(200, 249, 2, 0.35);
}
.btn--lime:hover { transform: translateY(-2px) skewX(-2deg); box-shadow: 0 0 34px rgba(200, 249, 2, 0.6); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(244, 246, 238, 0.4);
}
.btn--outline:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.btn--lg { padding: 16px 34px; font-size: 16px; }

/* ══════════ HERO ══════════ */
.hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(56px, 9vh, 110px) clamp(20px, 5vw, 64px) clamp(48px, 7vh, 90px);
  text-align: left;
}
.hero__glow {
  position: absolute;
  top: -120px; right: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(200, 249, 2, 0.16) 0%, transparent 65%);
  pointer-events: none;
}
.hero h1 { display: flex; flex-direction: column; line-height: 0.92; }
.hero__line { font-size: clamp(52px, 9.5vw, 118px); color: var(--white); }
.hero__line--lime {
  color: var(--lime);
  text-shadow: 0 0 38px rgba(200, 249, 2, 0.35);
}
.hero__line--small {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 700;
  color: var(--white);
  margin-top: 6px;
  text-transform: none;
}
.cursor { color: var(--lime); animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero__sub {
  margin-top: 26px;
  max-width: 58ch;
  font-size: 18px;
  color: var(--grey);
}
.hero__sub b { color: var(--lime); font-style: italic; }
.hero__cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

/* contract pill */
.contract {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: clamp(10px, 1.6vw, 13px);
  padding: 12px 16px;
  background: var(--panel);
  color: var(--lime);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  cursor: pointer;
  max-width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contract:hover { border-color: var(--lime); box-shadow: 0 0 16px rgba(200, 249, 2, 0.2); }
.contract__label {
  background: var(--lime);
  color: var(--black);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  flex-shrink: 0;
}
.contract__addr { overflow-wrap: anywhere; text-align: left; }
.contract__copy {
  font-size: 10px;
  padding: 3px 8px;
  border: 1px solid var(--lime);
  border-radius: 3px;
  flex-shrink: 0;
}

/* banner */
.hero__banner { margin-top: 44px; }
.hero__banner img {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1.5px solid var(--hairline);
  box-shadow: 0 0 60px rgba(200, 249, 2, 0.12);
}

/* staggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
h1 .reveal:nth-child(1) { animation-delay: 0.05s; }
h1 .reveal:nth-child(2) { animation-delay: 0.15s; }
h1 .reveal:nth-child(3) { animation-delay: 0.25s; }
h1 .reveal:nth-child(4) { animation-delay: 0.38s; }
.hero__sub.reveal { animation-delay: 0.5s; }
.hero__cta.reveal { animation-delay: 0.6s; }
.contract.reveal { animation-delay: 0.7s; }
.hero__banner.reveal { animation-delay: 0.8s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

/* ══════════ BIG MARQUEE ══════════ */
.bigmarquee {
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 16px 0;
  white-space: nowrap;
  background: var(--panel);
}
.bigmarquee__track { display: inline-flex; animation: ticker-scroll 24s linear infinite; }
.bigmarquee__track span {
  font-weight: 900;
  font-style: italic;
  font-size: clamp(20px, 3vw, 32px);
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200, 249, 2, 0.55);
  font-variation-settings: "wdth" 118;
}

/* ══════════ SECTION BASE ══════════ */
.section-title {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  color: var(--white);
}
.section-title em { color: var(--lime); font-style: italic; }

section { padding: clamp(56px, 9vh, 110px) clamp(20px, 5vw, 64px); }

/* ══════════ LIVE STATS ══════════ */
.stats { max-width: 1200px; margin: 0 auto; }
.stats__head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 34px; }
.stats__src { font-size: 10px; letter-spacing: 0.12em; color: var(--grey); }
.statgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.statbox {
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 26px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.statbox:hover { border-color: var(--lime); transform: translateY(-3px); }
.statbox__num {
  display: block;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--lime);
  overflow-wrap: anywhere;
}
.statbox__num.down { color: var(--red); }
.statbox__label {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ══════════ HOW IT WORKS ══════════ */
.how { max-width: 1200px; margin: 0 auto; }
.how__sub { margin-top: 12px; color: var(--grey); }
.how__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.how__card {
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 30px 26px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.how__card:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200, 249, 2, 0.08);
}
.how__num { font-size: 13px; color: var(--lime); letter-spacing: 0.2em; }
.how__card h3 {
  font-weight: 900;
  font-style: italic;
  font-size: 22px;
  text-transform: uppercase;
  margin: 12px 0 10px;
  font-variation-settings: "wdth" 110;
}
.how__card p { font-size: 15px; color: var(--grey); }
.how__card b { color: var(--lime); }

.vault { margin-top: 46px; }
.vault__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.vault__title { font-size: 12px; letter-spacing: 0.2em; color: var(--lime); }
.vault__src { font-size: 10px; letter-spacing: 0.12em; color: var(--grey); }
.vault__src a { color: inherit; }
.vault__src a:hover { color: var(--lime); }
.statgrid--vault { grid-template-columns: repeat(3, 1fr); }

.clap {
  margin-top: 46px;
  text-align: center;
}
.clap__hint { color: var(--grey); font-size: 14px; margin-bottom: 18px; }
.clap__btn { user-select: none; }
.clap__btn:active { transform: scale(0.94); }
.clap__count {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--grey);
  min-height: 1em;
}
.clap-emoji {
  position: fixed;
  font-size: 26px;
  pointer-events: none;
  z-index: 300;
  animation: clap-float 1.1s ease-out forwards;
}
@keyframes clap-float {
  from { transform: translateY(0) rotate(0deg); opacity: 1; }
  to { transform: translateY(-140px) rotate(var(--spin, 20deg)); opacity: 0; }
}

/* ══════════ BASKET ══════════ */
.basket {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid var(--hairline);
}
.basket__sub { margin-top: 12px; color: var(--grey); max-width: 60ch; }
.basket__grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.chip {
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 22px 12px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.chip:hover { border-color: var(--lime); transform: translateY(-4px) skewX(-2deg); background: var(--lime-soft); }
.chip__tick {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--lime);
}
.chip__name {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.basket__note { margin-top: 22px; font-size: 10.5px; color: var(--grey); letter-spacing: 0.1em; }

/* ══════════ HOW TO BUY ══════════ */
.howbuy { max-width: 860px; margin: 0 auto; }
.howbuy__steps { margin-top: 36px; list-style: none; display: flex; flex-direction: column; }
.howbuy__steps li {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 22px 6px;
  border-bottom: 1px solid var(--hairline);
}
.howbuy__steps li:first-child { border-top: 1px solid var(--hairline); }
.howbuy__num {
  font-size: 26px;
  font-weight: 700;
  color: var(--lime);
  min-width: 34px;
}
.howbuy__steps h3 {
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: 19px;
  font-variation-settings: "wdth" 110;
}
.howbuy__steps p { font-size: 15px; color: var(--grey); margin-top: 2px; }
.howbuy__cta { margin-top: 34px; }

/* ══════════ CONTRACTS ══════════ */
.contracts { max-width: 1000px; margin: 0 auto; border-top: 1px solid var(--hairline); }
.contracts__sub { margin-top: 12px; color: var(--grey); }
.contracts__list { margin-top: 34px; display: flex; flex-direction: column; gap: 14px; }
.crow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 18px 20px;
}
.crow__meta { display: flex; flex-direction: column; min-width: 240px; flex: 1; }
.crow__name { font-weight: 700; font-size: 15px; }
.crow__chain { font-size: 10px; color: var(--grey); letter-spacing: 0.12em; margin-top: 2px; }
.crow .contract { margin-top: 0; }
.crow__link {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid var(--hairline);
  padding: 8px 12px;
  border-radius: 4px;
  transition: border-color 0.2s;
}
.crow__link:hover { border-color: var(--lime); }

/* ══════════ COMMUNITY ══════════ */
.community {
  position: relative;
  text-align: center;
  border-top: 1px solid var(--hairline);
  overflow: hidden;
}
.community__glow {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 720px; height: 480px;
  background: radial-gradient(ellipse, rgba(200, 249, 2, 0.13) 0%, transparent 65%);
  pointer-events: none;
}
.community__title {
  position: relative;
  display: flex;
  flex-direction: column;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(42px, 7.5vw, 92px);
  line-height: 0.95;
  font-variation-settings: "wdth" 118;
}
.community__title--lime { color: var(--lime); text-shadow: 0 0 44px rgba(200, 249, 2, 0.4); }
.community__actions {
  position: relative;
  margin-top: 38px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════ FAQ ══════════ */
.faq { max-width: 760px; margin: 0 auto; }
.faq .section-title { margin-bottom: 30px; }
.faq details { border-bottom: 1px solid var(--hairline); padding: 20px 4px; }
.faq details:first-of-type { border-top: 1px solid var(--hairline); }
.faq summary {
  font-weight: 800;
  font-style: italic;
  font-size: 19px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  font-variation-settings: "wdth" 108;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 22px;
  color: var(--lime);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 12px; color: var(--grey); font-size: 15.5px; max-width: 62ch; }

/* ══════════ FOOTER ══════════ */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 56px clamp(20px, 5vw, 64px) 40px;
  text-align: center;
}
.footer__logo {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid var(--lime);
  object-fit: cover;
  box-shadow: 0 0 26px rgba(200, 249, 2, 0.35);
}
.footer__disclaimer {
  max-width: 640px;
  margin: 26px auto 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--grey);
}
.footer__legal {
  margin-top: 26px;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--grey);
  opacity: 0.7;
}

/* ══════════ TOAST ══════════ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 90px);
  background: var(--lime);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 12px 24px;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(200, 249, 2, 0.5);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: 200;
}
.toast.show { transform: translate(-50%, 0); }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .statgrid { grid-template-columns: repeat(2, 1fr); }
  .how__grid { grid-template-columns: 1fr; }
  .basket__grid { grid-template-columns: repeat(3, 1fr); }
  .crow { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .basket__grid { grid-template-columns: repeat(2, 1fr); }
  .statgrid { grid-template-columns: 1fr; }
}
