/* PEPONK clone — 1:1 visual fidelity */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&display=swap");

:root {
  --background: #ffffff;
  --foreground: #292929;
  --primary: #ff6b35;
  --primary-hover: #ff5520;
  --secondary: #7fd957;
  --secondary-shadow: rgba(127, 217, 87, 0.45);
  --charcoal: #1a1a1a;
  --tokenomics-bg: #1a1f2e;
  --orange-soft: #f98801;
  --font: "Poppins", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--foreground);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ══ HEADER ══ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.header-inner {
  position: relative;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .header-inner {
    justify-content: center;
  }
}

.logo {
  position: absolute;
  left: 1rem;
  display: flex;
  align-items: center;
  z-index: 2;
}
@media (min-width: 1024px) {
  .logo {
    left: 2rem;
  }
}
.logo img {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}
.logo img:hover {
  transform: scale(1.1);
}
@media (min-width: 1024px) {
  .logo img {
    height: 3rem;
    width: 3rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}
.nav-desktop a {
  transition: color 0.15s;
}
.nav-desktop a:hover {
  color: var(--primary);
}
.nav-desktop a.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--charcoal);
  font-weight: 700;
  box-shadow: 0 2px 10px var(--secondary-shadow);
  transition: filter 0.15s, transform 0.15s;
}
.btn-buy:hover {
  filter: brightness(1.1);
}

.menu-btn {
  display: flex;
  position: absolute;
  right: 1rem;
  padding: 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000;
  z-index: 2;
}
@media (min-width: 1024px) {
  .menu-btn {
    display: none;
  }
}

.mobile-nav {
  display: none;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
}
.mobile-nav.open {
  display: block;
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1rem;
  color: #fff;
  font-weight: 600;
}
.mobile-nav a.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ══ HERO ══ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-top: 4rem;
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 40%, #f5f5f5 100%);
  overflow: hidden;
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
  padding: 1rem;
}
@media (min-width: 1024px) {
  .hero-media {
    position: absolute;
    inset: 0;
    padding-top: 4rem;
  }
}
.hero-media img {
  width: 100%;
  max-width: 48rem;
  height: auto;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .hero-media img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.hero-content {
  text-align: center;
  padding: 1rem 1rem 3rem;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .hero-content {
    margin-top: auto;
    margin-bottom: 6rem;
    padding-bottom: 2rem;
  }
}

.hero-tagline {
  font-size: 1.125rem;
  color: #000;
  max-width: 36rem;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .hero-tagline {
    font-size: 1.25rem;
  }
}
.hero-tagline .rocket {
  display: inline-block;
  color: var(--secondary);
  animation: bounce 1s ease-in-out infinite;
  margin-left: 0.25rem;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 28rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }
}

.btn-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 28rem;
  padding: 1.1rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s, background 0.15s,
    color 0.15s;
}
.btn-lg:hover {
  transform: scale(1.05) translateY(-2px);
}
.btn-lg.primary-solid {
  background: var(--secondary);
  color: var(--charcoal);
  box-shadow: 0 4px 16px rgba(127, 217, 87, 0.4);
}
.btn-lg.primary-solid:hover {
  box-shadow: 0 6px 20px rgba(127, 217, 87, 0.6);
  filter: brightness(1.08);
}
.btn-lg.outline {
  border: 2px solid var(--primary);
  color: #000;
  background: transparent;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}
.btn-lg.outline:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
}
.btn-lg.disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

.wave {
  display: block;
  width: 100%;
  height: 2rem;
  margin-top: -1px;
}
@media (min-width: 640px) {
  .wave {
    height: 5rem;
  }
}

/* ══ SECTIONS ══ */
.section {
  padding: 4rem 0;
  position: relative;
  scroll-margin-top: 5rem;
}
@media (min-width: 640px) {
  .section {
    padding: 6rem 0;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}
.section-sub {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .section-sub {
    font-size: 1.125rem;
  }
}

/* Tokenomics */
#tokenomics {
  background: var(--tokenomics-bg);
  color: #fff;
}
#tokenomics .section-title {
  color: var(--orange-soft);
  text-align: center;
}
#tokenomics .section-sub {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 56rem;
  margin: 2.5rem auto;
}
@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
.stat-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  text-align: center;
}
.stat-card .label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.stat-card .value {
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 0.25rem;
  color: #fff;
}

.alloc-grid {
  display: grid;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .alloc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.alloc-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.alloc-dot {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.75rem;
  color: #111;
}
.alloc-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.alloc-card .pct {
  font-weight: 900;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
.alloc-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

/* CA */
.ca-box {
  max-width: 40rem;
  margin: 2.5rem auto 0;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.ca-box .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}
.ca-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ca-row code {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.8rem;
  word-break: break-all;
  color: #fff;
  font-weight: 600;
}
@media (min-width: 640px) {
  .ca-row code {
    font-size: 0.95rem;
  }
}
.ca-row button {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  transition: filter 0.15s;
}
.ca-row button:hover {
  filter: brightness(1.1);
}
.ca-row button.copied {
  background: var(--secondary);
  color: #111;
}

/* Roadmap */
#roadmap {
  background: #f5f5f5;
}
#roadmap .section-title {
  color: #000;
  text-align: center;
}
#roadmap .section-sub {
  color: rgba(0, 0, 0, 0.7);
  text-align: center;
}

.roadmap-group {
  max-width: 72rem;
  margin: 0 auto 3rem;
}
.roadmap-group:last-child {
  margin-bottom: 0;
}
.roadmap-group > h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: #000;
}
.roadmap-group > p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 1rem;
}
.roadmap-cards {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .roadmap-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.rm-card {
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.15s;
}
.rm-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.rm-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.rm-phase {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.45);
}
.rm-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  margin-top: 0.15rem;
}
.badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
  height: fit-content;
}
.badge.done {
  background: var(--secondary);
  color: #000;
}
.badge.progress {
  background: var(--primary);
  color: #fff;
}
.badge.up {
  background: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.65);
}
.rm-summary {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
  line-height: 1.45;
}
.rm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.rm-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.8);
}
.rm-list .check {
  color: var(--secondary);
  font-weight: 900;
  flex-shrink: 0;
}
.rm-list .dot {
  color: var(--primary);
  flex-shrink: 0;
}

/* About */
#about {
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 50%, #fed7aa 100%);
}
#about .section-title {
  color: #000;
  text-align: center;
}
#about .section-sub {
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  margin-top: 1rem;
}

.about-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.about-card .icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--secondary);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.about-card h3 {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #000;
}
.about-card p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}
.about-card a {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: underline;
}

.biz-block {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .biz-block {
    grid-template-columns: 1fr 1fr;
  }
}
.biz-block img {
  border-radius: 1.25rem;
  border: 3px solid #000;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  width: 100%;
  object-fit: cover;
}
.biz-block h3 {
  font-size: 1.75rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 0.75rem;
}
.biz-block p {
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.6;
}

/* CTA band */
.cta-band {
  background: var(--primary);
  padding: 4rem 1rem;
  text-align: center;
  color: #fff;
}
.cta-band h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .cta-band h2 {
    font-size: 2.75rem;
  }
}
.cta-band p {
  opacity: 0.95;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.cta-band .btn-lg {
  max-width: 20rem;
  margin: 0 auto;
  background: #fff;
  color: var(--primary);
}
.cta-band .btn-lg:hover {
  background: #111;
  color: #fff;
}
.cta-band .btn-lg.disabled {
  background: rgba(255, 255, 255, 0.5);
  color: rgba(0, 0, 0, 0.5);
}

/* Footer */
.site-footer {
  background: #111;
  color: #fff;
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}
.footer-brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 2px solid #fff;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  max-width: 28ch;
}
.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col a,
.footer-col span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s;
}
.footer-col a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.footer-col .disabled {
  opacity: 0.4;
  pointer-events: none;
}
.footer-col .soon {
  color: #fbbf24;
  opacity: 0.9;
}

.socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.socials a,
.socials span {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s;
  color: #fff;
}
.socials a:hover {
  background: var(--primary);
  transform: scale(1.1);
}
.socials .disabled {
  opacity: 0.4;
  pointer-events: none;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.disclaimer {
  max-width: 48rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}
