:root {
  --bg: #0e0b16;
  --bg-2: #151022;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.09);
  --text: #f4eefb;
  --muted: #b3a8c9;
  --brand: #ffb43b;
  --brand-2: #ff7a3d;
  --accent: #a855f7;
  --accent-2: #6d3bff;
  --good: #3ddc84;
  --radius: 22px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ===== Material Symbols icons ===== */
.micon {
  font-family: "Material Symbols Rounded";
  font-weight: normal; font-style: normal; line-height: 1;
  letter-spacing: normal; text-transform: none; white-space: nowrap;
  word-wrap: normal; direction: ltr; display: inline-block; vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 40;
  user-select: none;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* ===== Animated background ===== */
.bg-blobs {
  position: fixed; inset: 0; z-index: -2; overflow: hidden;
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5;
  animation: float 18s var(--ease) infinite alternate;
}
.blob-1 { width: 520px; height: 520px; background: var(--accent-2); top: -120px; left: -80px; }
.blob-2 { width: 460px; height: 460px; background: var(--brand-2); bottom: -120px; right: -60px; animation-delay: -6s; }
.blob-3 { width: 380px; height: 380px; background: var(--accent); top: 40%; left: 50%; animation-delay: -12s; }
@keyframes float {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(60px,-50px) scale(1.15); }
}
#peanut-field {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
}

/* ===== Scroll progress ===== */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--accent));
  z-index: 100; transition: width 0.1s linear;
}

/* ===== Navbar ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: flex; align-items: center; gap: 18px;
  padding: 16px clamp(18px, 5vw, 48px);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(14, 11, 22, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.35rem; }
.brand-mark { font-size: 1.5rem; animation: spin-slow 8s linear infinite; display: inline-block; }
.brand-text { font-family: "Bagel Fat One", cursive; background: linear-gradient(90deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
@keyframes spin-slow { to { transform: rotate(360deg); } }

.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 0.95rem; position: relative; transition: color 0.2s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--brand); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 8px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; margin-left: auto; }
.nav-toggle span { width: 26px; height: 3px; background: var(--text); border-radius: 3px; transition: 0.3s; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-weight: 700; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  padding: 11px 22px; font-size: 0.95rem; transition: transform 0.2s var(--ease), box-shadow 0.3s, background 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #2a1500; box-shadow: 0 8px 24px rgba(255, 122, 61, 0.35);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 34px rgba(255, 122, 61, 0.5); }
.btn-ghost { background: var(--card); border-color: var(--card-border); color: var(--text); }
.btn-ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,0.08); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }

/* ===== Hero ===== */
.hero {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center;
  padding: clamp(120px, 18vh, 200px) clamp(18px, 5vw, 48px) 70px;
}
.hero-badge {
  display: inline-block; padding: 7px 16px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--card-border);
  font-size: 0.85rem; font-weight: 600; color: var(--brand); margin-bottom: 22px;
}
.hero-title {
  font-family: "Bagel Fat One", cursive; font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -0.5px;
}
.grad-text { background: linear-gradient(120deg, var(--brand), var(--brand-2), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { color: var(--muted); font-size: 1.1rem; max-width: 540px; margin: 22px 0 26px; }

.ca-box {
  display: inline-flex; align-items: center; gap: 12px; cursor: pointer;
  background: var(--card); border: 1px dashed var(--card-border); border-radius: 14px;
  padding: 10px 12px; margin-bottom: 26px; max-width: 100%; transition: border-color 0.3s, transform 0.2s;
}
.ca-box:hover { border-color: var(--brand); transform: translateY(-2px); }
.ca-label { background: var(--brand); color: #2a1500; font-weight: 800; font-size: 0.75rem; padding: 3px 9px; border-radius: 7px; }
.ca-value { font-family: ui-monospace, monospace; font-size: 0.82rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ca-copy { margin-left: auto; font-weight: 700; font-size: 0.8rem; color: var(--brand); }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.stats { display: flex; gap: 18px; margin-top: 40px; flex-wrap: wrap; }
.stat {
  background: var(--card); border: 1px solid var(--card-border); border-radius: 16px;
  padding: 16px 22px; min-width: 130px; flex: 1;
}
.stat-num { font-family: "Bagel Fat One", cursive; font-size: 1.7rem; color: var(--brand); }
.stat-label { color: var(--muted); font-size: 0.82rem; font-weight: 600; }

/* Hero mascot */
.hero-mascot { position: relative; display: grid; place-items: center; min-height: 360px; }
.mascot-disc {
  width: clamp(240px, 30vw, 340px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,180,59,0.35), transparent 60%),
              conic-gradient(from 0deg, var(--accent-2), var(--brand-2), var(--accent), var(--accent-2));
  display: grid; place-items: center; box-shadow: 0 30px 80px rgba(109,59,255,0.4);
  animation: bob 5s ease-in-out infinite;
}
.mascot-img {
  width: 78%; height: 78%; border-radius: 50%; object-fit: cover; cursor: pointer;
  border: 5px solid rgba(255,255,255,0.85); box-shadow: 0 14px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s var(--ease);
}
.mascot-img:active { transform: scale(0.9) rotate(-8deg); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
.mascot-coin { position: absolute; font-size: 2.4rem; color: var(--brand); animation: orbit 7s linear infinite; filter: drop-shadow(0 6px 12px rgba(0,0,0,0.45)); }
.coin-1 { top: 6%; left: 12%; animation-delay: 0s; }
.coin-2 { bottom: 10%; right: 8%; animation-delay: -2.5s; }
.coin-3 { top: 45%; right: 0%; animation-delay: -5s; }
@keyframes orbit { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-18px) rotate(20deg); } }

/* ===== Marquee ===== */
.marquee { overflow: hidden; border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); background: rgba(255,180,59,0.06); padding: 14px 0; }
.marquee-track { display: flex; gap: 48px; white-space: nowrap; animation: scroll-x 22s linear infinite; width: max-content; }
.marquee-track span { font-family: "Bagel Fat One", cursive; font-size: 1.1rem; color: var(--brand); letter-spacing: 0.5px; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ===== Live section ===== */
.live-dot {
  display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  background: #ff3b3b; margin-right: 6px; vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.6); animation: pulse-live 1.6s infinite;
}
@keyframes pulse-live {
  0% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(255, 59, 59, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
}
.live-wrap { display: flex; justify-content: center; }
.live-poster {
  position: relative; width: 100%; max-width: 720px; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden; display: block;
  border: 1px solid var(--card-border); box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  background: #1c1330;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.live-poster:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 40px 90px rgba(0,0,0,0.6); }
.live-thumb {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.live-poster:hover .live-thumb { transform: scale(1.05); }
.live-shade {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(circle at 50% 45%, rgba(0,0,0,0.15), rgba(8,5,16,0.55));
}
.live-badge {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  background: #ff2d2d; color: #fff; font-weight: 800; font-size: 0.85rem; letter-spacing: 1px;
  padding: 6px 13px; border-radius: 8px; box-shadow: 0 6px 18px rgba(255,45,45,0.45);
}
.live-badge .live-dot { background: #fff; }
.live-platform { position: absolute; top: 16px; right: 18px; z-index: 3; opacity: 0.95; }
.live-platform svg { width: 26px; height: 26px; fill: #fff; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }
.live-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3;
  width: clamp(64px, 9vw, 86px); height: clamp(64px, 9vw, 86px); border-radius: 50%;
  display: grid; place-items: center; color: #2a1500;
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 48; font-size: clamp(2rem, 4vw, 2.8rem);
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 34px rgba(255,122,61,0.55); transition: transform 0.3s var(--ease);
}
.live-poster:hover .live-play { transform: translate(-50%, -50%) scale(1.12); }
.live-meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; flex-direction: column; gap: 3px; padding: 22px 22px 18px;
  background: linear-gradient(transparent, rgba(8,5,16,0.88));
}
.live-title { font-weight: 800; font-size: clamp(1.05rem, 2.4vw, 1.4rem); }
.live-handle { color: var(--muted); font-size: 0.9rem; font-weight: 600; }

/* ===== Dream calculator ===== */
.calc { max-width: 960px; margin: 0 auto; }
.calc-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px; }
.calc-label { display: flex; flex-direction: column; gap: 8px; font-weight: 700; font-size: 0.95rem; color: var(--muted); }
.calc-label-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.calc-live {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700;
  color: var(--good); background: rgba(61,220,132,0.12); border: 1px solid rgba(61,220,132,0.3);
  padding: 2px 9px; border-radius: 999px;
}
.calc-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 0 rgba(61,220,132,0.6); animation: pulse-live 1.6s infinite; }
.calc-live.is-error { color: #ffb43b; background: rgba(255,180,59,0.12); border-color: rgba(255,180,59,0.3); }
.calc-live.is-error::before { background: #ffb43b; animation: none; }
.calc-field {
  display: flex; align-items: center; gap: 6px; background: var(--card);
  border: 1px solid var(--card-border); border-radius: 14px; padding: 4px 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.calc-field:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(255,180,59,0.18); }
.calc-readonly { display: flex; align-items: center; gap: 6px; padding: 12px 2px; }
.calc-readonly #mcInput { font-size: 1.6rem; font-weight: 800; color: var(--text); font-family: "Bagel Fat One", cursive; letter-spacing: 0.5px; }
.calc-readonly .calc-prefix { font-size: 1.4rem; }
.calc-prefix { color: var(--brand); font-weight: 800; font-size: 1.2rem; }
.calc-field input {
  flex: 1; background: none; border: 0; outline: none; color: var(--text);
  font-size: 1.3rem; font-weight: 800; padding: 12px 0; width: 100%; font-family: inherit;
}
.calc-field input::-webkit-outer-spin-button, .calc-field input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.calc-results { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.calc-results-2 { grid-template-columns: repeat(2, 1fr); gap: 22px; }
.calc-card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 24px 20px; text-align: center; display: flex; flex-direction: column; gap: 8px;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.calc-results-2 .calc-card { padding: 32px 26px; gap: 10px; }
.calc-card:hover { transform: translateY(-6px); border-color: rgba(255,180,59,0.5); box-shadow: 0 22px 46px rgba(0,0,0,0.4); }
.calc-milestone { color: var(--text); font-weight: 800; font-size: 1.1rem; }
.calc-sub { color: var(--muted); font-size: 0.82rem; font-weight: 600; }
.calc-results-2 .calc-x { font-size: 3rem; margin: 4px 0; }
.calc-x { font-family: "Bagel Fat One", cursive; font-size: 2.1rem; line-height: 1; background: linear-gradient(120deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.calc-worth { color: var(--muted); font-size: 0.95rem; }
.calc-live-sm { padding: 1px 7px; font-size: 0.72rem; }
.calc-worth strong { color: var(--good); font-size: 1rem; white-space: nowrap; }
.calc-ath {
  background: linear-gradient(160deg, rgba(255,180,59,0.14), rgba(168,85,247,0.14));
  border-color: rgba(255,180,59,0.45);
}
.calc-note { text-align: center; color: #786d91; font-size: 0.82rem; margin-top: 22px; }

/* ===== Socials / profile cards ===== */
.profiles { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.profile-card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 0 0 26px; overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.profile-card:hover { transform: translateY(-6px); border-color: rgba(255,180,59,0.4); box-shadow: 0 24px 50px rgba(0,0,0,0.4); }
.profile-net {
  display: flex; align-items: center; gap: 9px; padding: 14px 22px;
  font-weight: 800; font-size: 1.05rem; color: #fff;
}
.profile-net svg { width: 22px; height: 22px; fill: currentColor; }
.net-ig { background: linear-gradient(95deg, #f9ce34, #ee2a7b 55%, #6228d7); }
.net-tt { background: linear-gradient(95deg, #25f4ee, #000 45%, #fe2c55); }

.profile-head { display: flex; align-items: center; gap: 18px; padding: 22px 22px 0; }
.profile-head-center { flex-direction: column; text-align: center; gap: 12px; }
.profile-avatar {
  flex-shrink: 0; width: 92px; height: 92px; border-radius: 50%; padding: 3px;
  display: grid; place-items: center;
}
.profile-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 3px solid var(--bg); }
.ring-ig { background: conic-gradient(from 30deg, #f9ce34, #ee2a7b, #6228d7, #f9ce34); }
.ring-tt { background: conic-gradient(from 30deg, #25f4ee, #fe2c55, #25f4ee); }
.profile-id h3 { display: flex; align-items: center; gap: 6px; font-size: 1.15rem; }
.profile-head-center .profile-id h3 { justify-content: center; }
.verified { width: 18px; height: 18px; fill: #1d9bf0; flex-shrink: 0; }
.profile-fullname { color: var(--muted); font-size: 0.92rem; font-weight: 600; }

.profile-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  margin: 20px 22px 0; padding: 16px 0; text-align: center;
  border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border);
}
.profile-stats strong { display: block; font-size: 1.25rem; font-weight: 800; }
.profile-stats span { color: var(--muted); font-size: 0.85rem; }

.profile-bio { display: flex; flex-direction: column; gap: 4px; padding: 18px 22px 0; font-size: 0.92rem; }
.profile-bio-center { text-align: center; align-items: center; }
.profile-bio a { color: var(--brand); font-weight: 700; word-break: break-all; }
.bio-ca { font-family: ui-monospace, monospace; font-size: 0.78rem; color: var(--muted); word-break: break-all; }
.profile-btn { margin: auto 22px 0; }

/* ===== Sections ===== */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(64px, 10vh, 110px) clamp(18px, 5vw, 48px); }
.section-alt { max-width: 100%; background: linear-gradient(180deg, transparent, var(--bg-2) 12%, var(--bg-2) 88%, transparent); }
.section-alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section-head { text-align: center; margin-bottom: 52px; }
.eyebrow { display: inline-block; color: var(--brand); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 10px; }
.section-head h2 { font-family: "Bagel Fat One", cursive; font-weight: 400; font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.1; }
.section-lead { color: var(--muted); max-width: 560px; margin: 14px auto 0; font-size: 1.05rem; }

/* ===== Story ===== */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Timeline */
.timeline { position: relative; max-width: 940px; margin: 0 auto; padding: 6px 0; }
.timeline::before {
  content: ""; position: absolute; left: 50%; top: 8px; bottom: 8px; width: 3px;
  transform: translateX(-50%); border-radius: 3px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2) 35%, var(--accent) 75%, var(--accent-2));
}
.tl-item { position: relative; width: 50%; padding: 18px 52px; box-sizing: border-box; }
.tl-item:nth-child(odd) { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; text-align: left; }
.tl-content {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 26px 28px; transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.tl-item:hover .tl-content { transform: translateY(-5px); border-color: rgba(255,180,59,0.5); box-shadow: 0 22px 46px rgba(0,0,0,0.4); }
.tl-marker {
  position: absolute; top: 30px; width: 58px; height: 58px; border-radius: 50%; z-index: 2;
  display: grid; place-items: center; font-size: 1.7rem; color: #2a1500;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  box-shadow: 0 8px 24px rgba(255,122,61,0.45); border: 4px solid var(--bg);
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 40;
}
.tl-item:nth-child(odd) .tl-marker { right: -29px; }
.tl-item:nth-child(even) .tl-marker { left: -29px; }
.tl-step { display: block; color: var(--brand); font-weight: 800; letter-spacing: 1.5px; font-size: 0.78rem; text-transform: uppercase; margin-bottom: 6px; }
.tl-content h3 { font-size: 1.4rem; margin-bottom: 9px; }
.tl-content p { color: var(--muted); }

/* Pledge banner */
.pledge {
  display: flex; align-items: center; gap: 24px; margin-top: 28px;
  background: linear-gradient(120deg, rgba(255,180,59,0.12), rgba(168,85,247,0.12));
  border: 1px solid rgba(255,180,59,0.35); border-radius: var(--radius);
  padding: 30px 34px;
}
.pledge-icon {
  flex-shrink: 0; font-size: 3.4rem; color: var(--brand);
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 48;
}
.pledge-body h3 { font-size: 1.4rem; margin-bottom: 6px; }
.pledge-body p { color: var(--muted); }
.pledge-body strong { color: var(--brand); }
.story-card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 32px 28px; transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.story-card:hover { transform: translateY(-8px); border-color: rgba(255,180,59,0.5); box-shadow: 0 24px 50px rgba(0,0,0,0.4); }
.story-icon { font-size: 2.8rem; color: var(--brand); margin-bottom: 14px; font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 48; }
.story-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.story-card p { color: var(--muted); }

/* ===== Tokenomics ===== */
.tokenomics { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.token-stats { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); overflow: hidden; }
.token-row { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; border-bottom: 1px solid var(--card-border); }
.token-row:last-child { border-bottom: 0; }
.token-key { color: var(--muted); font-weight: 600; }
.token-val { font-weight: 800; font-size: 1.05rem; }
.token-val.highlight { color: var(--good); }

.token-donut { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.donut {
  width: 240px; height: 240px; border-radius: 50%; position: relative;
  background: conic-gradient(var(--brand) 0 90%, var(--accent) 90% 98%, var(--brand-2) 98% 100%);
  display: grid; place-items: center; transition: transform 0.6s var(--ease);
}
.donut::after { content: ""; position: absolute; inset: 26px; background: var(--bg); border-radius: 50%; }
.donut-center { position: relative; z-index: 1; text-align: center; }
.donut-big { display: block; font-family: "Bagel Fat One", cursive; font-size: 2rem; color: var(--brand); }
.donut-small { color: var(--muted); font-size: 0.85rem; }
.donut-legend { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.donut-legend li { display: flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 600; font-size: 0.92rem; }
.dot { width: 13px; height: 13px; border-radius: 4px; }
.dot-1 { background: var(--brand); }
.dot-2 { background: var(--accent); }
.dot-3 { background: var(--brand-2); }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  position: relative; background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 34px 24px 28px; transition: transform 0.4s var(--ease), border-color 0.3s;
}
.step:hover { transform: translateY(-8px); border-color: rgba(255,180,59,0.5); }
.step-num {
  position: absolute; top: -18px; left: 24px; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; font-family: "Bagel Fat One", cursive; font-size: 1.1rem; color: #2a1500;
  background: linear-gradient(120deg, var(--brand), var(--brand-2)); box-shadow: 0 8px 18px rgba(255,122,61,0.4);
}
.step-icon { font-size: 2.6rem; color: var(--brand); margin: 6px 0 12px; font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 48; }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.95rem; }
.step a { color: var(--brand); font-weight: 700; }

/* ===== Exchanges ===== */
.exchange-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.exchange {
  background: var(--card); border: 1px solid var(--card-border); border-radius: 14px;
  padding: 22px; text-align: center; font-weight: 700; font-size: 1.05rem;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s;
}
.exchange:hover { transform: translateY(-5px) scale(1.04); background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #2a1500; }

/* ===== Community ===== */
.community-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }
.comm-card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 34px 28px; text-align: center; transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.comm-card:hover { transform: translateY(-8px); border-color: var(--brand); box-shadow: 0 24px 50px rgba(0,0,0,0.4); }
.comm-icon { font-size: 2.6rem; color: var(--brand); display: block; margin-bottom: 12px; font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 48; }
.comm-svg { display: flex; justify-content: center; }
.comm-svg svg { width: 40px; height: 40px; fill: var(--brand); }
.comm-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.comm-card p { color: var(--muted); }
.comm-go { display: inline-block; margin-top: 14px; color: var(--brand); font-weight: 700; }

/* ===== Footer ===== */
.footer { text-align: center; padding: 64px 24px 40px; border-top: 1px solid var(--card-border); background: var(--bg-2); }
.footer-mark { font-family: "Bagel Fat One", cursive; font-size: 1.8rem; color: var(--brand); margin-bottom: 12px; }
.footer-tag { color: var(--muted); max-width: 520px; margin: 0 auto 18px; }
.footer-ca { display: inline-block; font-family: ui-monospace, monospace; font-size: 0.78rem; color: var(--muted); background: var(--card); border: 1px solid var(--card-border); border-radius: 10px; padding: 8px 14px; cursor: pointer; transition: border-color 0.3s; word-break: break-all; }
.footer-ca:hover { border-color: var(--brand); }
.footer-disclaimer { color: #786d91; font-size: 0.8rem; max-width: 640px; margin: 24px auto 14px; }
.footer-copy { color: var(--muted); font-size: 0.85rem; }

/* ===== Toast ===== */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(120px);
  background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #2a1500;
  font-weight: 800; padding: 13px 26px; border-radius: 999px; z-index: 200;
  box-shadow: 0 14px 34px rgba(255,122,61,0.5); transition: transform 0.45s var(--ease); pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-sub, .ca-box { margin-left: auto; margin-right: auto; }
  .hero-cta, .stats, .hero-badge { justify-content: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-mascot { order: -1; min-height: 280px; }
  .tokenomics { grid-template-columns: 1fr; }
  .story-grid, .steps, .community-cards, .profiles { grid-template-columns: 1fr; }
  .pledge { flex-direction: column; text-align: center; gap: 14px; }
  .calc-inputs { grid-template-columns: 1fr; }
  .calc-results { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 28px; }
  .tl-item, .tl-item:nth-child(odd), .tl-item:nth-child(even) {
    width: 100%; left: 0; text-align: left; padding: 14px 0 14px 78px;
  }
  .tl-item:nth-child(odd) .tl-marker, .tl-item:nth-child(even) .tl-marker { left: 0; right: auto; }
  .exchange-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-cta { display: inline-flex; margin-left: auto; padding: 9px 18px; font-size: 0.9rem; }
  .nav-toggle { display: flex; margin-left: 4px; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; right: 16px;
    background: rgba(21,16,34,0.97); backdrop-filter: blur(16px); padding: 18px 24px;
    border: 1px solid var(--card-border); border-radius: 16px; gap: 16px; min-width: 180px;
  }
}

/* Phones */
@media (max-width: 600px) {
  .section { padding: clamp(48px, 8vh, 72px) 18px; }
  .section-head { margin-bottom: 34px; }
  .section-lead { font-size: 0.98rem; }
  .hero { padding: 110px 18px 50px; gap: 26px; }
  .hero-title { font-size: clamp(2.3rem, 11vw, 3.2rem); }
  .hero-sub { font-size: 1rem; margin: 18px auto 22px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .btn-lg { padding: 14px 24px; }
  .hero-mascot { min-height: 230px; }
  .calc-results, .calc-results-2 { grid-template-columns: 1fr; }
  .calc-results-2 .calc-card { padding: 26px 22px; }
  .profile-stats strong { font-size: 1.1rem; }
  .live-meta { padding: 16px 16px 14px; }
  .footer { padding: 48px 20px 36px; }
}
@media (max-width: 400px) {
  .ca-box { gap: 8px; padding: 9px 10px; }
  .ca-value { max-width: 150px; }
  .tl-item, .tl-item:nth-child(odd), .tl-item:nth-child(even) { padding-left: 64px; }
  .tl-marker { width: 50px; height: 50px; font-size: 1.5rem; }
  .tl-item:nth-child(odd) .tl-marker, .tl-item:nth-child(even) .tl-marker { left: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
