/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sand: #d4b896;
  --sand-light: #e8d5b8;
  --sand-pale: #f5ede0;
  --sand-dark: #b8956a;
  --brown: #7a4f2d;
  --brown-dark: #4a2f1a;
  --cream: #fdf6ec;
  --warm-white: #fffaf4;
  --text-dark: #2d1a0e;
  --text-mid: #5c3d20;
  --text-light: #9a7355;
  --accent: #e8a030;
  --accent-dark: #c4821a;
  --gold: #f0c040;
  --gold-dark: #c49a20;
  --tg-blue: #229ed9;
  --x-black: #14171a;
  --dex-green: #00b377;
  --font-display: 'Pacifico', cursive;
  --font-body: 'Nunito', sans-serif;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(74, 47, 26, 0.12);
  --shadow-lg: 0 12px 48px rgba(74, 47, 26, 0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px;
  background: rgba(253, 246, 236, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--sand-light);
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(253, 246, 236, 0.98);
  box-shadow: var(--shadow);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  height: 44px; width: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sand);
}

.nav-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brown-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--brown-dark); }

.nav-btn {
  background: var(--brown-dark) !important;
  color: var(--warm-white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 900 !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-btn:hover {
  background: var(--brown) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--warm-white);
  border-bottom: 2px solid var(--sand-light);
  flex-direction: column;
  align-items: center;
  z-index: 99;
  padding: 16px 0;
  box-shadow: var(--shadow);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 32px;
  width: 100%;
  text-align: center;
  transition: background 0.2s;
}

.mobile-menu a:hover { background: var(--sand-pale); }

.mobile-menu .nav-btn {
  margin: 8px 32px;
  width: calc(100% - 64px);
  text-align: center;
  border-radius: 50px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--sand-pale);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(212, 184, 150, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(240, 192, 64, 0.15) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 48px 80px;
}

.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(212, 184, 150, 0.3) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.5;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-character {
  width: 420px;
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
  border: 4px solid var(--sand);
}

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

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-badge {
  display: inline-block;
  background: var(--sand);
  color: var(--brown-dark);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  width: fit-content;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  color: var(--brown-dark);
  line-height: 1;
  text-shadow: 4px 4px 0px rgba(74, 47, 26, 0.12);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--sand-dark);
  line-height: 1;
  margin-top: -8px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 480px;
  line-height: 1.7;
}

.hero-desc strong { color: var(--brown-dark); }

.hero-ticker {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent-dark);
  background: var(--sand-light);
  display: inline-block;
  padding: 6px 24px;
  border-radius: 50px;
  width: fit-content;
  border: 2px solid var(--sand);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.btn-primary {
  background: var(--brown-dark);
  color: var(--warm-white);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(74, 47, 26, 0.25);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 47, 26, 0.3);
}

.btn-primary.large {
  padding: 18px 48px;
  font-size: 1.1rem;
}

.btn-secondary {
  background: transparent;
  color: var(--brown-dark);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1rem;
  border: 2px solid var(--brown-dark);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--brown-dark);
  color: var(--warm-white);
  transform: translateY(-2px);
}

.hero-socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.social-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--brown-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  border: 2px solid var(--sand-dark);
}

.social-icon svg { width: 20px; height: 20px; }

.social-icon:hover {
  background: var(--brown-dark);
  color: var(--warm-white);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 3px solid var(--sand-dark);
  border-bottom: 3px solid var(--sand-dark);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ===== SHARED SECTION ===== */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title span { color: var(--sand-dark); }
.section-title.center { text-align: center; }

.section-sub {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 48px;
  font-weight: 700;
}

.section-sub.center { text-align: center; }

/* ===== HERO ANIMATIONS ===== */
.animate-fadein {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--sand);
  opacity: 0.35;
  animation: drift linear infinite;
}

@keyframes drift {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.35; }
  90% { opacity: 0.35; }
  100% { transform: translateY(-120px) scale(1); opacity: 0; }
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--cream);
}

.about-inner {
  display: flex;
  gap: 64px;
  align-items: center;
}

.about-img-wrap { flex: 0 0 auto; }

.about-banner {
  width: 360px;
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--sand);
  transition: transform 0.3s;
}

.about-banner:hover { transform: scale(1.02); }

.about-text { flex: 1; }

.about-text p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-text strong { color: var(--brown-dark); }
.about-text em { color: var(--sand-dark); font-style: italic; }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-tags span {
  background: var(--sand-light);
  color: var(--brown-dark);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--sand);
}

/* ===== PROOF SECTION ===== */
.proof {
  padding: 100px 0;
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
}

.proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212, 184, 150, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.proof .section-title {
  color: var(--sand-light);
}

.proof .section-sub {
  color: var(--sand);
}

.proof-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Card 1: image left, text right */
.proof-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(212, 184, 150, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.proof-card:nth-child(2) {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.proof-card:nth-child(2) > * {
  direction: ltr;
}

.proof-card:hover {
  border-color: var(--sand);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.proof-badge {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(90, 138, 60, 0.2);
  color: #7ec850;
  border-bottom: 1px solid rgba(90, 138, 60, 0.25);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  width: 100%;
  border-radius: 0;
}

.proof-badge svg { flex-shrink: 0; }

.proof-img-wrap {
  overflow: hidden;
  line-height: 0;
  min-height: 320px;
}

.proof-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.proof-card:hover .proof-img {
  transform: scale(1.04);
}

.proof-caption {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--sand-light);
  line-height: 1.7;
}

.proof-caption strong { color: #fff; font-size: 1.15rem; display: block; margin-bottom: 4px; }
.proof-caption em { color: var(--gold); font-style: normal; font-weight: 700; }

/* ===== TOKENOMICS ===== */
.tokenomics {
  padding: 100px 0;
  background: var(--sand-pale);
}

.toko-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.toko-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  border: 2px solid var(--sand-light);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.toko-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.toko-icon { font-size: 2.5rem; margin-bottom: 16px; }

.toko-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.toko-card p {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.4;
}

.toko-card p span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  margin-top: 4px;
}

/* ===== HOW TO BUY ===== */
.howtobuy {
  padding: 100px 0;
  background: var(--cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.step-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 36px 24px;
  border: 2px solid var(--sand-light);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sand), var(--sand-dark));
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--sand-light);
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h3 {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.buy-cta { text-align: center; }

/* ===== COMMUNITY ===== */
.community {
  padding: 100px 0;
  background: var(--sand-pale);
}

.community-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.community-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-decoration: none;
  border: 2px solid var(--sand-light);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.community-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.community-card.telegram:hover { border-color: var(--tg-blue); }
.community-card.twitter:hover { border-color: var(--x-black); }
.community-card.dex:hover { border-color: var(--dex-green); }

.cc-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-icon svg { width: 28px; height: 28px; }

.telegram .cc-icon { background: rgba(34,158,217,0.1); color: var(--tg-blue); }
.twitter .cc-icon { background: rgba(20,23,26,0.08); color: var(--x-black); }
.dex .cc-icon { background: rgba(0,179,119,0.1); color: var(--dex-green); }

.community-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brown-dark);
}

.community-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.cc-btn {
  display: inline-block;
  background: var(--sand-light);
  color: var(--brown-dark);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
  width: fit-content;
}

.telegram:hover .cc-btn { background: var(--tg-blue); color: white; }
.twitter:hover .cc-btn { background: var(--x-black); color: white; }
.dex:hover .cc-btn { background: var(--dex-green); color: white; }

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-dark);
  padding: 60px 32px;
  color: var(--sand-light);
}

.footer-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  height: 52px; width: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sand);
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--sand-light);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--sand);
  opacity: 0.7;
  line-height: 1.7;
}

.footer-socials { display: flex; gap: 16px; }

.footer-socials a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  border: 1.5px solid rgba(255,255,255,0.15);
}

.footer-socials a svg { width: 20px; height: 20px; }

.footer-socials a:hover {
  background: var(--sand);
  color: var(--brown-dark);
  transform: translateY(-2px);
}

.footer-bottom {
  font-size: 0.8rem;
  color: var(--sand);
  opacity: 0.5;
}

/* ===== RESPONSIVE ===== */
/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .navbar { padding: 12px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-content { gap: 40px; }
  .hero-character { width: 320px; }
  .toko-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .proof-card,
  .proof-card:nth-child(2) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .proof-img-wrap { min-height: 220px; }
  .proof-caption { padding: 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .hero-character { width: 280px; }
  .hero-badge { margin: 0 auto; }
  .hero-ticker { margin: 0 auto; }
  .hero-cta { justify-content: center; }
  .hero-socials { justify-content: center; }
  .hero-desc { margin: 0 auto; }

  .about-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .about-banner { width: 100%; max-width: 360px; }
  .about-tags { justify-content: center; }
  .toko-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .community-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .toko-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero { padding: 90px 16px 60px; }
  .section-container { padding: 0 16px; }
  .about, .tokenomics, .howtobuy, .community { padding: 64px 0; }
}
