@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Comic+Neue:wght@400;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Comic Neue', cursive;
  background: #09090b;
  color: #fff;
  overflow-x: hidden;
}

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

.header {
  font-family: 'Press Start 2P', system-ui;
  letter-spacing: 1px;
}

.subtext {
  font-family: 'Comic Neue', cursive;
  font-weight: 700;
}

.neon {
  text-shadow: 0 0 15px #fb923c, 0 0 30px #f97316, 0 0 60px #ea580c;
}

.neon-soft {
  text-shadow: 0 0 10px rgba(251, 146, 60, 0.6);
}

::selection {
  background: #f97316;
  color: #000;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}


.topbar {
  background: #7c2d12;
  padding: 12px 20px;
  text-align: center;
  font-size: 1.05rem;
  color: #fed7aa;
}


nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f97316;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
}

.brand .paw {
  font-size: 2.6rem;
}

.brand img {
  flex-shrink: 0;
}

.brand h1 {
  font-size: 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 1rem;
}

.nav-links a {
  opacity: 0.9;
  transition: color .2s ease;
}

.nav-links a:hover {
  color: #fb923c;
}

.btn-buy-nav {
  background: #fff;
  color: #000;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 16px;
  font-size: 1rem;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  animation: wiggle 2.4s infinite;
  font-family: 'Comic Neue', cursive;
  flex-shrink: 0;
}

.btn-buy-nav:hover {
  background: #fb923c;
}

.btn-buy-nav .buy-short {
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fb923c;
  font-size: 1.8rem;
  cursor: pointer;
  flex-shrink: 0;
}

@keyframes wiggle {

  0%,
  100% {
    transform: rotate(-2deg);
  }

  50% {
    transform: rotate(2deg);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes drift {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-20px) rotate(6deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 28px 24px 70px;
  background:
    radial-gradient(circle at 20% 15%, #7c2d12, transparent 55%),
    radial-gradient(circle at 85% 10%, #9a3412, transparent 45%),
    linear-gradient(160deg, #1a0a00, #3d1400 40%, #7c2d12 90%);
  position: relative;
  overflow: hidden;
}

.bg-drift {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bg-drift span {
  position: absolute;
  opacity: 0.35;
  animation: drift 9s ease-in-out infinite;
}

.hero-inner {
  max-width: 900px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(249, 115, 22, 0.5);
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 0.9rem;
  color: #fdba74;
  margin-bottom: 24px;
}

.hero h1 .line1 {
  display: block;
  font-size: clamp(1.8rem, 9vw, 4.5rem);
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.hero h1 .line2 {
  display: block;
  font-size: clamp(1.1rem, 4vw, 2.4rem);
  color: #fdba74;
  margin-top: 20px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-lead {
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  color: #fed7aa;
  margin: 20px auto 6px;
  max-width: 640px;
}

.hero-slogan {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #fb923c;
  font-style: italic;
  margin-bottom: 36px;
}

.video-frame {
  max-width: 640px;
  margin: 0 auto 46px;
  border-radius: 28px;
  overflow: hidden;
  border: 8px solid #fb923c;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
  animation: float 5s ease-in-out infinite;
}

.video-frame video {
  width: 100%;
  display: block;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid #22c55e;
  color: #4ade80;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.live-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseDot 1.4s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

.ca-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 16px;
  padding: 12px 22px;
  max-width: 520px;
  background: rgba(0, 0, 0, 0.35);
  border: 1.5px dashed #f97316;
  border-radius: 14px;
  color: #fed7aa;
  font-family: monospace;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all .2s ease;
  word-break: break-all;
}

.ca-btn:hover {
  background: rgba(249, 115, 22, 0.12);
  border-style: solid;
}

.ca-btn.copied {
  border-color: #22c55e;
  color: #4ade80;
}

.ca-btn i {
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, #c2410c, #b91c1c);
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  padding: 26px 48px;
  border-radius: 26px;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: 'Comic Neue', cursive;
  font-weight: 700;
  animation: wiggle 2.4s infinite;
  transition: transform .2s ease;
}

.btn-primary:hover {
  transform: scale(1.08);
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #fb923c;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  padding: 24px 42px;
  border-radius: 26px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Comic Neue', cursive;
  font-weight: 700;
  transition: all .2s ease;
}

.btn-secondary:hover {
  background: #fb923c;
  color: #000;
}

.hero-ticker {
  margin-top: 32px;
  font-size: 0.9rem;
  color: #fed7aa;
}


.marquee-outer {
  height: 72px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.marquee-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140vw;
  height: 300px;
  background: linear-gradient(90deg, #7c2d12, #b91c1c, #7c2d12);
  transform: translate(-50%, -50%) rotate(-1deg);
}

.marquee-level {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  font-family: 'Press Start 2P', system-ui;
  font-size: 0.85rem;
  color: #fff7ed;
}


section {
  padding: 48px 24px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.eyebrow {
  display: inline-block;
  background: rgba(154, 52, 18, 0.35);
  color: #fb923c;
  font-size: 0.75rem;
  padding: 7px 18px;
  border-radius: 100px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
}

.section-head p {
  color: #fed7aa;
  margin-top: 16px;
  font-size: 1.1rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.card {
  background: #18181b;
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 26px;
  padding: 34px 24px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.9);
  box-shadow: 0 30px 50px -25px rgba(249, 115, 22, 0.45);
}

.card .icon {
  font-size: 3.4rem;
  margin-bottom: 16px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-family: 'Comic Neue', cursive;
  flex-shrink: 0;
}

.card p {
  font-size: 0.92rem;
  color: #fdba9c;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
}

.tok-card {
  background: #18181b;
  border: 2px solid #fb923c;
  border-radius: 26px;
  padding: 34px 24px;
  text-align: center;
  transition: transform .25s ease;
}

.tok-card:hover {
  transform: translateY(-8px);
}

.tok-card .icon {
  font-size: 3.4rem;
  margin-bottom: 0px;
}

.tok-card .value {
  font-size: 1.6rem;
  font-weight: 700;
}

.tok-card .label {
  color: #fdba74;
  margin-top: 6px;
}


.roadmap-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
}

.roadmap-track::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, #f97316 0 14px, transparent 14px 24px);
  z-index: 0;
}

.road-stop {
  position: relative;
  z-index: 1;
  text-align: center;
}

.road-badge {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #000;
  border: 4px solid #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  overflow: hidden;
}

.road-stop h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.road-stop p {
  font-size: 0.88rem;
  color: #fdba9c;
  padding: 0 6px;
}


.comm-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comm-link {
  display: inline-block;
  border: 2px solid #fb923c;
  color: #fdba74;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 22px;
  border-radius: 100px;
  margin-top: 16px;
  transition: all .25s ease;
  flex-shrink: 0;
}

.comm-link:hover {
  background: #fb923c;
  color: #000;
}


.final-cta {
  text-align: center;
  background: linear-gradient(180deg, #000, #431407);
  padding: 100px 24px;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  margin-bottom: 34px;
}

.btn-final {
  background: #fff;
  color: #000;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  border-radius: 26px;
  border: none;
  cursor: pointer;
  font-family: 'Comic Neue', cursive;
  animation: wiggle 2.4s infinite;
  transition: transform .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(16px, 3vw, 26px) clamp(24px, 5vw, 40px);
}

.btn-final img {
  height: clamp(30px, 6vw, 60px);
  width: clamp(30px, 6vw, 60px);
}

.btn-final:hover {
  transform: scale(1.06);
  background: #fb923c;
}


footer {
  text-align: center;
  padding: 60px 24px 44px;
  color: #fed7aa;
  background: linear-gradient(180deg, #431407, #000);
  border-top: 1px solid #7c2d12;
}

.footer-brand {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.footer-tag {
  font-style: italic;
  color: #fb923c;
  margin-bottom: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-bottom: 22px;
  font-weight: 700;
}

.footer-links a:hover {
  color: #fb923c;
}

.footer-fine {
  font-size: 0.78rem;
  opacity: 0.7;
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width:980px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .roadmap-track {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
  }

  .roadmap-track::before {
    display: none;
  }
}

@media (max-width:480px) {
  .topbar {
    padding: 8px 12px;
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .nav-inner {
    padding: 12px 14px;
    gap: 8px;
  }

  .brand {
    gap: 6px;
  }

  .brand img {
    height: 32px !important;
    width: 32px !important;
    margin-right: 0 !important;
  }

  .brand h1 {
    font-size: 0.85rem;
    letter-spacing: 0;
  }

  .menu-toggle {
    font-size: 1.4rem;
    padding: 0 2px;
  }

  .btn-buy-nav {
    padding: 8px 12px;
    font-size: 0.7rem;
    border-radius: 10px;
  }

  .btn-buy-nav .buy-full {
    display: none;
  }

  .btn-buy-nav .buy-short {
    display: inline;
  }

  .final-cta {
    padding: 60px 16px;
  }
}

@media (max-width:360px) {
  .brand h1 {
    font-size: 0.72rem;
  }
}

@media (max-width:560px) {

  .grid-4,
  .roadmap-track {
    grid-template-columns: 1fr;
  }

  .roadmap-track {
    row-gap: 56px;
  }

  .roadmap-track::before {
    display: none;
  }

  .road-stop:not(:first-child)::after {
    content: '';
    position: absolute;
    top: -56px;
    left: 50%;
    width: 3px;
    height: 56px;
    background: repeating-linear-gradient(180deg, #f97316 0 14px, transparent 14px 24px);
    transform: translateX(-50%);
    z-index: 0;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    font-size: 1.05rem;
    padding: 16px 28px;
    border-radius: 18px;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 8px 14px;
    line-height: 1.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
