/* $UNUSUAL v2 — soft / modern unusual meme look
   white + yellow #F5D000 + Arc blue #3B82F6 / #60A5FA
   Archivo Black + DM Sans — generous space, soft shadows, rounded */

:root {
  --white: #ffffff;
  --yellow: #F5D000;
  --yellow-hot: #ffe033;
  --blue: #3B82F6;
  --blue-soft: #60A5FA;
  --blue-deep: #1D4ED8;
  --blue-sky: #dbeafe;
  --blue-wash: #eff6ff;
  --green-banner: #34d399;
  --ink: #0a0a0a;
  --muted: #555;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Archivo Black", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1120px;
  --nav-h: 68px;
  --radius: 18px;
  --radius-sm: 12px;
  --border: 2.5px solid var(--ink);
  --shadow-blue: 6px 6px 0 var(--blue-soft);
  --shadow-yellow: 6px 6px 0 var(--yellow);
  --shadow-ink: 5px 5px 0 var(--ink);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ===== MUTE ===== */
.mute-btn {
  position: fixed;
  bottom: 1.1rem;
  right: 1.1rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2.5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--blue);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  transition: transform 0.15s var(--ease);
}

.mute-btn:hover { transform: scale(1.06); }
.mute-btn[hidden] { display: none !important; }
.mute-btn.is-muted .mute-btn__on { display: none; }
.mute-btn:not(.is-muted) .mute-btn__off { display: none; }

/* ===== APP ===== */
.app { animation: fadeUp 0.55s var(--ease) both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* ===== EYEBROWS / TITLES ===== */
.eyebrow {
  display: inline-block;
  margin: 0 0 0.5rem;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.eyebrow--ink { color: var(--ink); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin: 0 0 0.75rem;
}

.section-lead {
  font-size: clamp(1rem, 2vw, 1.12rem);
  max-width: 40rem;
  margin: 0 auto 2rem;
  color: var(--muted);
}

/* ===== BUTTONS (soft pill) ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.4rem;
  border: var(--border);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-ink);
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
  white-space: nowrap;
  user-select: none;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.btn:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn--primary { background: var(--yellow); }

.btn--lg {
  padding: 1.05rem 1.75rem;
  font-size: 0.95rem;
}

.btn--nav {
  padding: 0.6rem 1.15rem;
  font-size: 0.8rem;
}

.btn__soon {
  display: none;
  position: absolute;
  top: -10px;
  right: -6px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2em 0.45em;
  border-radius: 4px;
  z-index: 1;
}

.btn.is-soon .btn__soon { display: block; }
.btn.is-soon { cursor: default; opacity: 0.92; }

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(10, 10, 10, 0.08);
  height: var(--nav-h);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.brand__crown { width: 34px; height: 26px; }

.nav-links {
  display: none;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.nav-links a {
  opacity: 0.75;
  transition: opacity 0.15s, color 0.15s;
}
.nav-links a:hover { opacity: 1; color: var(--blue); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--blue-soft);
  transition: background 0.12s, transform 0.12s;
}

.icon-btn svg { width: 15px; height: 15px; }
.icon-btn:hover { background: var(--yellow); transform: translate(-1px, -1px); }
.icon-btn.is-soon { opacity: 0.65; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: var(--border);
  border-radius: 12px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
}

.btn--nav { display: none; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .btn--nav { display: inline-flex; }
}

@media (max-width: 899px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: var(--white);
    border-bottom: 2px solid rgba(10, 10, 10, 0.08);
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s var(--ease), opacity 0.25s;
    z-index: 99;
  }
  .nav-links.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { font-size: 1rem; opacity: 1; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 2rem 0 0;
  overflow: hidden;
}

.hero__sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--blue-sky) 0%, var(--white) 55%, var(--white) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  align-items: center;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border: var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-blue);
}

.hero__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--blue-sky) 0%, var(--white) 75%);
  padding: 1.25rem;
  min-height: 240px;
}

.hero__mascot {
  width: min(100%, 340px);
  filter: drop-shadow(0 12px 28px rgba(59, 130, 246, 0.28));
  animation: floaty 4s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.hero__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
}

.hero__tick {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  background: var(--yellow);
  display: inline-block;
  padding: 0.1em 0.22em;
  border: var(--border);
  border-radius: 10px;
  box-shadow: 5px 5px 0 var(--blue);
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3.5vw, 1.35rem);
  letter-spacing: 0.22em;
  color: var(--muted);
}

.hero__headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero__body {
  margin: 0;
  max-width: 38ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
  margin-top: 0.25rem;
}

.contract-box {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 400px;
  border: var(--border);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--blue-soft);
}

.contract-box__addr {
  flex: 1;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-box__copy {
  display: grid;
  place-items: center;
  width: 48px;
  background: var(--yellow);
  border-left: var(--border);
  transition: background 0.12s;
}

.contract-box__copy:hover { background: var(--yellow-hot); }
.contract-box__copy.is-copied { background: var(--green-banner); }
.contract-box__copy svg { width: 18px; height: 18px; }

.live-banner {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  background: var(--green-banner);
  border-radius: 0;
  padding: 0.95rem 1rem;
  text-align: center;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.live-banner__text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 2.4vw, 1.05rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero { padding-top: 2.5rem; }
  .hero__grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2.25rem;
    padding: 2.25rem 2.5rem;
  }
  .hero__frame { min-height: 380px; }
  .hero__mascot { width: min(100%, 400px); }
}

/* ===== MARQUEE (soft v2 black + yellow) ===== */
.marquee-wrap { margin: 0; }

.marquee {
  overflow: hidden;
  background: var(--ink);
  color: var(--yellow);
  border-top: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  padding: 0.9rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee__group {
  display: flex;
  gap: 1.25rem;
  padding-right: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 3.2vw, 1.3rem);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.marquee__sep { color: var(--blue-soft); }

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

/* ===== RELIGION / CULT ===== */
.religion {
  padding: 4rem 0 4.5rem;
  background: var(--white);
}

.religion__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.religion__copy p {
  color: var(--muted);
  max-width: 48ch;
  margin: 0 0 1rem;
}

.creed {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.creed li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.15rem;
  border: var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--blue-soft);
}

.creed__crown {
  width: 32px;
  height: 24px;
  margin-top: 0.15rem;
}

.creed strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.crown-card {
  border: var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, var(--blue-sky) 0%, var(--white) 55%);
  box-shadow: 10px 10px 0 var(--yellow);
  overflow: hidden;
  padding: 0.5rem;
}

.crown-card__img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 18px;
}

@media (min-width: 768px) {
  .religion__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

/* ===== TOKENOMICS ===== */
.tokenomics {
  padding: 4rem 0 4.5rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--blue-wash) 100%);
  text-align: center;
}

.tokenomics .section-title { margin-left: auto; margin-right: auto; }

.tok-cards {
  display: grid;
  gap: 1rem;
  margin: 0 auto 1.75rem;
  max-width: 1000px;
  text-align: left;
}

.tok-card {
  background: var(--white);
  border: var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-ink);
  padding: 1.5rem 1.35rem;
}

.tok-card--yellow {
  background: var(--yellow);
  box-shadow: var(--shadow-blue);
}

.tok-card--blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-yellow);
}

.tok-card--blue p { color: rgba(255, 255, 255, 0.9); }

.tok-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.tok-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.tok-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.vow {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: 2.5px dashed var(--ink);
  border-radius: 16px;
  text-align: left;
}

.vow p { margin: 0; color: var(--ink); font-size: 0.98rem; }
.vow strong {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .tok-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

/* ===== ROADMAP ===== */
.roadmap {
  padding: 4rem 0 4.5rem;
  text-align: center;
  background: var(--white);
}

.roadmap-card {
  max-width: 720px;
  margin: 1.75rem auto 0;
  padding: 2rem 1.75rem;
  background: var(--white);
  border: var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-blue);
  text-align: left;
}

.roadmap-card > p { color: var(--muted); }

.strike {
  text-decoration: line-through;
  color: var(--blue);
}

.period {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink) !important;
  margin: 1.25rem 0 !important;
}

.cursor {
  animation: blink 1s steps(1) infinite;
  color: var(--blue);
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.roadmap-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 1.25rem 0 0.75rem;
}

.plan-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.plan-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-weight: 600;
}

.plan-list .arrow {
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.roadmap-cta {
  margin-top: 1.75rem;
  text-align: center;
}

/* ===== FOOTER (soft dark like v2) ===== */
.site-footer {
  padding: 3.25rem 1.25rem 5.5rem;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--yellow);
}

.footer-brand__tag {
  font-size: 0.9rem;
  color: #999;
}

.footer-tag {
  margin: 0 0 1.5rem;
  font-weight: 600;
  color: #ccc;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.foot-link {
  padding: 0.5rem 1.1rem;
  border: 2px solid #333;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--blue-soft);
  transition: border-color 0.15s, color 0.15s;
}

.foot-link:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.foot-link.is-soon { opacity: 0.55; cursor: default; }

.footer-buy { margin-bottom: 1.5rem; }

.footer-note {
  margin: 0 auto 0.75rem;
  max-width: 42ch;
  font-size: 0.85rem;
  color: #777;
  line-height: 1.45;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
}

/* ===== REDUCE MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .hero__mascot,
  .marquee__track,
  .cursor,
  .app { animation: none; }
  html { scroll-behavior: auto; }
}
