
:root {
  --paper: #f7f0e4;
  --paper-deep: #efe3cf;
  --paper-alt: #fbf7ef;
  --ink: #171717;
  --muted: #5f5a53;
  --yellow: #f1d15c;
  --yellow-deep: #ddb53f;
  --aqua: #b9ece8;
  --aqua-deep: #8ad4cc;
  --line: rgba(23, 23, 23, 0.12);
  --shadow: 0 24px 60px rgba(43, 39, 30, 0.12);
  --shadow-soft: 0 14px 34px rgba(43, 39, 30, 0.10);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1380px, calc(100% - 44px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(241, 209, 92, 0.22), transparent 30%),
    radial-gradient(circle at right center, rgba(185, 236, 232, 0.18), transparent 25%),
    linear-gradient(180deg, #fbf6ed 0%, #f7efdf 100%);
  min-width: 320px;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0) 20%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 2px, rgba(0,0,0,0.02) 2px 4px);
  mix-blend-mode: multiply;
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(0,0,0,0.42) 0.6px, transparent 0.8px),
    radial-gradient(circle at 75% 75%, rgba(0,0,0,0.35) 0.6px, transparent 0.8px);
  background-size: 18px 18px, 22px 22px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container { width: var(--container); margin: 0 auto; }
.section { padding: 34px 0; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 20px 0 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  background: rgba(251, 247, 239, 0.88);
  border: 1px solid rgba(23, 23, 23, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.ticker-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  font-family: 'Baloo 2', cursive;
  font-size: 1.55rem;
  font-weight: 800;
  color: #111;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,0.08);
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link,
.icon-btn,
.cta-btn,
.ghost-btn,
.mini-btn {
  border: 1px solid rgba(23, 23, 23, 0.12);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.nav-link {
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
  font-weight: 700;
  font-size: 1.02rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  font-weight: 700;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.cta-btn,
.ghost-btn,
.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  padding: 14px 24px;
  border-radius: 18px;
  font-weight: 800;
  cursor: pointer;
}

.cta-btn {
  background: linear-gradient(180deg, var(--yellow) 0%, #e7bd43 100%);
  color: #111;
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.09), 0 8px 24px rgba(224, 185, 59, 0.30);
}

.cta-btn--small {
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 999px;
}

.ghost-btn,
.mini-btn,
.mini-btn--link {
  background: rgba(255,255,255,0.76);
  color: var(--ink);
}

.nav-link:hover,
.icon-btn:hover,
.cta-btn:hover,
.ghost-btn:hover,
.mini-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(27,24,17,0.10); }

.menu-toggle {
  display: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(23, 23, 23, 0.14);
  background: rgba(255,255,255,0.75);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  display: block;
}

.hero {
  padding-top: 26px;
}

.paper-card {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.55), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(245,237,223,0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.paper-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(0,0,0,0.03), transparent 20%),
    repeating-linear-gradient(150deg, rgba(255,255,255,0.04) 0 3px, rgba(0,0,0,0.02) 3px 6px);
  opacity: 0.45;
  pointer-events: none;
}

.paper-card--soft {
  padding: 36px;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 28px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(185,236,232,0.5);
  border: 1px solid rgba(23,23,23,0.08);
  font-size: 0.98rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-kicker--light {
  background: rgba(255,255,255,0.12);
  color: #fff9f0;
  border-color: rgba(255,255,255,0.16);
}

.hero__wordmark {
  width: min(100%, 430px);
  margin: 18px 0 10px;
}

.hero__title,
.section-copy h2,
.chart-header h2,
.join-us h2 {
  font-family: 'Baloo 2', cursive;
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero__title {
  font-size: clamp(3rem, 7vw, 5.4rem);
  max-width: 10.5ch;
}

.hero__text {
  margin: 18px 0 0;
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 58ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.ca-box {
  margin-top: 28px;
  padding: 20px;
  border-radius: 24px;
  border: 1px dashed rgba(23,23,23,0.18);
  background: rgba(255,255,255,0.56);
}

.ca-box__label {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--muted);
}

.ca-box__value {
  margin-top: 10px;
  font-size: 1.18rem;
  font-weight: 800;
  word-break: break-all;
}

.ca-box__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.paper-photo {
  background: linear-gradient(180deg, #fcfaf4, #f0e7d8);
  border: 1px solid rgba(23,23,23,0.12);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 18px 34px rgba(43,39,30,0.12);
  position: relative;
}

.paper-photo::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  border: 1px dashed rgba(23,23,23,0.12);
  pointer-events: none;
}

.paper-photo img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}

.hero__visual-card {
  max-width: 560px;
  width: 100%;
}

.paper-photo--tilt-right {
  transform: rotate(1.2deg);
}

.paper-photo--tilt-left {
  transform: rotate(-1deg);
}

.paper-photo--stacked::before {
  content: '';
  position: absolute;
  inset: 8px -8px -8px 8px;
  border-radius: 28px;
  background: rgba(185,236,232,0.55);
  z-index: -1;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 32px;
  align-items: center;
  padding: 30px;
}

.section-grid--reverse {
  grid-template-columns: minmax(300px, 460px) minmax(0, 1fr);
}

.section-grid--reverse > :first-child {
  order: 2;
}
.section-grid--reverse > :last-child {
  order: 1;
}

.section-copy h2,
.chart-header h2,
.join-us h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-top: 12px;
}

.section-copy p,
.chart-header p,
.join-us p,
.footer p,
.step-item p,
.tokenomics-note {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.tagline-chip {
  display: inline-flex;
  margin-top: 12px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(241,209,92,0.18);
  border: 1px solid rgba(23,23,23,0.08);
  font-weight: 700;
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.step-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(23,23,23,0.08);
}

.step-number {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--yellow) 0%, #e6bf49 100%);
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  font-weight: 800;
}

.step-item h3 {
  margin: 0 0 6px;
  font-size: 1.18rem;
}

.section-media {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.token-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(23,23,23,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.token-card span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 800;
}

.token-card strong {
  font-size: 1.18rem;
}

.chart-card {
  padding: 30px;
}

.chart-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
  margin-bottom: 18px;
}

.chart-frame-wrap {
  background: #121212;
  border-radius: 28px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.chart-frame-wrap iframe {
  width: 100%;
  min-height: 660px;
  border: 0;
  border-radius: 20px;
  background: #121212;
}

.join-us {
  position: relative;
  margin-top: 8px;
  padding: 42px 0 60px;
  background-image: url('assets/bg.png');
  background-size: cover;
  background-position: center;
}

.join-us__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21,20,18,0.45), rgba(21,20,18,0.65));
}

.join-us .container {
  position: relative;
  z-index: 1;
}

.paper-card--dark {
  padding: 34px;
  color: #fffdf6;
  background: linear-gradient(180deg, rgba(24,24,24,0.68), rgba(24,24,24,0.82));
  border-color: rgba(255,255,255,0.14);
}

.join-us p { max-width: 56ch; color: rgba(255, 249, 240, 0.85); }
.join-us__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.footer {
  padding: 0 0 30px;
}

.paper-card--footer {
  padding: 22px 24px;
  display: grid;
  gap: 10px;
}

.footer__inner > div {
  font-family: 'Baloo 2', cursive;
  font-size: 1.45rem;
  font-weight: 800;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(20px);
  background: rgba(23,23,23,0.92);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 50;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1100px) {
  .hero__content,
  .section-grid,
  .section-grid--reverse {
    grid-template-columns: 1fr;
  }

  .section-grid--reverse > :first-child,
  .section-grid--reverse > :last-child {
    order: initial;
  }

  .hero__title { max-width: 100%; }
  .chart-header { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 960px) {
  .topbar { padding-top: 14px; }
  .menu-toggle { display: inline-flex; }

  .topbar__inner {
    border-radius: 34px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .topbar__nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }

  .topbar__nav.is-open { display: flex; }
  .nav-link,
  .icon-btn,
  .cta-btn--small { width: 100%; justify-content: center; }

  .paper-card--soft,
  .chart-card,
  .section-grid,
  .paper-card--dark {
    padding: 22px;
  }

  .section { padding: 22px 0; }
  .hero__title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .section-copy h2,
  .chart-header h2,
  .join-us h2 { font-size: clamp(2rem, 9vw, 3.3rem); }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 24px, 100%); }
  .ticker-badge { min-height: 50px; font-size: 1.35rem; padding: 0 18px; }
  .hero__text,
  .section-copy p,
  .chart-header p,
  .join-us p,
  .footer p,
  .step-item p,
  .tokenomics-note { font-size: 1rem; }
  .hero__actions,
  .join-us__actions,
  .ca-box__buttons { flex-direction: column; }
  .cta-btn,
  .ghost-btn,
  .mini-btn { width: 100%; }
  .tokenomics-grid { grid-template-columns: 1fr; }
  .step-item { grid-template-columns: 1fr; }
  .chart-frame-wrap iframe { min-height: 480px; }
}
