:root {
  --bg: #050505;
  --bg-soft: #0c0c0f;
  --ink: #f4f4f2;
  --muted: #a8a8a0;
  --sun: #ffb020;
  --sun-hot: #ff7a18;
  --lime: #3dff7a;
  --blue: #2f6dff;
  --magenta: #d42cff;
  --silver: #e8e8ec;
  --line: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.04);
  --radius: 22px;
  --font-display: "Chewy", cursive;
  --font-body: "Nunito", sans-serif;
  --shadow-sun: 0 0 40px rgba(255, 176, 32, 0.35);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 176, 32, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(47, 109, 255, 0.1), transparent 50%),
    radial-gradient(ellipse 45% 35% at 10% 60%, rgba(61, 255, 122, 0.08), transparent 50%),
    radial-gradient(ellipse 40% 30% at 80% 85%, rgba(212, 44, 255, 0.08), transparent 50%),
    var(--bg);
  overflow-x: hidden;
}

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

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

.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    conic-gradient(from 120deg at 50% 40%, rgba(255, 176, 32, 0.08), rgba(61, 255, 122, 0.05), rgba(47, 109, 255, 0.07), rgba(212, 44, 255, 0.06), rgba(255, 176, 32, 0.08));
  filter: blur(60px);
  opacity: 0.65;
  animation: aurora-drift 18s ease-in-out infinite alternate;
}

.orbit-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  opacity: 0.35;
}

.orbit-a {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -80px;
  border-top-color: var(--sun);
  border-right-color: var(--lime);
  animation: spin 28s linear infinite;
}

.orbit-b {
  width: 380px;
  height: 380px;
  bottom: 10%;
  left: -100px;
  border-bottom-color: var(--blue);
  border-left-color: var(--magenta);
  animation: spin-rev 36s linear infinite;
}

.orbit-c {
  width: 240px;
  height: 240px;
  top: 45%;
  right: 8%;
  border-top-color: var(--magenta);
  border-left-color: var(--sun-hot);
  animation: spin 22s linear infinite;
}

#paw-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 2rem);
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255, 176, 32, 0.35), var(--shadow-sun);
  animation: pulse-ring 3.2s ease-in-out infinite;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, #fff, var(--sun), var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--sun);
  transform: translateY(-1px);
}

.nav-buy {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  color: #111 !important;
  background: linear-gradient(135deg, var(--sun), var(--sun-hot));
  box-shadow: var(--shadow-sun);
}

.nav-buy:hover {
  color: #111 !important;
  transform: translateY(-2px) scale(1.03);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--glass);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem) 4rem;
  max-width: calc(var(--max) + 4rem);
  margin: 0 auto;
  position: relative;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: 8%;
  top: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 176, 32, 0.28), transparent 68%);
  filter: blur(20px);
  animation: breathe 5s ease-in-out infinite;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--lime);
}

.icon-inline {
  width: 18px;
  height: 18px;
}

.solana-icon {
  filter: brightness(0) invert(1);
}

.hero-title {
  margin: 0;
  line-height: 0.92;
}

.title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7.2rem);
  background: linear-gradient(105deg, #fff 10%, var(--sun) 45%, var(--sun-hot) 70%, var(--lime) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine-text 6s linear infinite;
  text-shadow: 0 0 40px rgba(255, 176, 32, 0.2);
}

.title-sub {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  color: var(--silver);
  letter-spacing: 0.02em;
}

.tagline {
  margin: 1.1rem 0 1.2rem;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 700;
  color: var(--muted);
  max-width: 28ch;
}

.ticker-pill {
  margin: 0 0 1.6rem;
}

.ticker-pill span {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: #111;
  background: linear-gradient(135deg, var(--lime), #9dffb8);
  box-shadow: 0 0 28px rgba(61, 255, 122, 0.35);
  animation: bob 3s ease-in-out infinite;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.invert-icon {
  filter: brightness(0) invert(1);
}

.btn-sun {
  color: #111;
  background: linear-gradient(135deg, var(--sun), var(--sun-hot) 60%, #ff5a1f);
  box-shadow: var(--shadow-sun);
}

.btn-sun:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 50px rgba(255, 122, 24, 0.5);
}

.btn-ghost {
  color: var(--ink);
  background: var(--glass);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 176, 32, 0.45);
  box-shadow: 0 0 24px rgba(255, 176, 32, 0.18);
}

.hero-stage {
  display: grid;
  justify-items: center;
  gap: 1.4rem;
}

.yin-ring {
  position: relative;
  width: min(360px, 78vw);
  height: min(360px, 78vw);
  display: grid;
  place-items: center;
}

.yin-ring-spin {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--sun),
    var(--lime),
    var(--blue),
    var(--magenta),
    var(--sun-hot),
    var(--sun)
  );
  animation: spin 8s linear infinite;
  filter: blur(0.4px);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 10px), #000 calc(100% - 9px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 10px), #000 calc(100% - 9px));
}

.hero-logo {
  width: 88%;
  height: 88%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  animation: floaty 5.5s ease-in-out infinite;
}

.hero-video-wrap {
  width: min(320px, 80vw);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 176, 32, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(47, 109, 255, 0.15);
  position: relative;
}

.hero-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.12) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: sweep 4.5s ease-in-out infinite;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: #000;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
  max-width: calc(var(--max) + 4rem);
  margin: 0 auto;
}

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

.section-kicker {
  margin: 0 0 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--sun);
}

.section-head h2 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  line-height: 1.05;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.feature {
  position: relative;
  padding: 1.5rem 1.35rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.feature:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 176, 32, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(255, 176, 32, 0.12);
}

.feature-orb {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin-bottom: 1rem;
  animation: bob 3.4s ease-in-out infinite;
}

.orb-sun {
  background: radial-gradient(circle at 30% 30%, #fff7d1, var(--sun) 45%, var(--sun-hot));
  box-shadow: var(--shadow-sun);
}

.orb-yin {
  background: conic-gradient(#fff 0 50%, #3a3a3a 50% 100%);
  box-shadow: 0 0 24px rgba(212, 44, 255, 0.25);
}

.orb-sol {
  background: linear-gradient(135deg, #9945ff, #14f195);
  box-shadow: 0 0 24px rgba(20, 241, 149, 0.28);
}

.feature h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.buy-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.buy-step {
  position: relative;
  padding: 1.4rem 1.1rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(12, 12, 15, 0.75);
  overflow: hidden;
}

.buy-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 176, 32, 0.08), transparent 50%, rgba(47, 109, 255, 0.08));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.buy-step:hover::before {
  opacity: 1;
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--sun);
}

.step-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0.9rem 0 0.85rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.step-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.buy-step h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  position: relative;
}

.buy-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  position: relative;
  font-size: 0.95rem;
}

.ca-bar {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  border: 1px dashed rgba(255, 176, 32, 0.35);
  background: rgba(255, 176, 32, 0.05);
}

.ca-label {
  font-weight: 800;
  color: var(--sun);
}

.ca-value {
  flex: 1;
  min-width: 180px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
  color: var(--silver);
  word-break: break-all;
}

.btn-copy {
  cursor: pointer;
  color: #111;
  background: linear-gradient(135deg, var(--lime), #9dffb8);
  border: none;
}

.btn-copy:hover {
  transform: translateY(-2px);
}

.chart-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0a0c;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(21, 242, 192, 0.08);
}

.chart-chrome {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
}

.chart-open {
  margin-left: auto;
  color: var(--lime);
  font-size: 0.9rem;
}

.chart-embed {
  position: relative;
  width: 100%;
  min-height: 520px;
  background: #000;
}

.chart-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.chart-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 176, 32, 0.12), transparent 45%),
    #050505;
}

.chart-placeholder strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--ink);
}

.banner-stage {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 176, 32, 0.25);
  box-shadow: 0 0 50px rgba(212, 44, 255, 0.12), 0 25px 60px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.6rem;
}

.join-banner {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.01);
  animation: banner-pulse 8s ease-in-out infinite;
}

.banner-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.14) 50%, transparent 65%);
  transform: translateX(-130%);
  animation: sweep 5.5s ease-in-out infinite;
  pointer-events: none;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.social-card {
  display: grid;
  justify-items: start;
  gap: 0.35rem;
  padding: 1.2rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(61, 255, 122, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), 0 0 28px rgba(61, 255, 122, 0.12);
}

.social-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 0.35rem;
}

.social-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.social-desc {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 3rem 1rem 2.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
}

.footer-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
  box-shadow: var(--shadow-sun);
}

.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.footer-tag,
.footer-note {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.footer-note {
  font-size: 0.85rem;
  margin-top: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spin-rev {
  to { transform: rotate(-360deg); }
}

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

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

@keyframes breathe {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

@keyframes shine-text {
  to { background-position: 200% center; }
}

@keyframes sweep {
  0%, 35% { transform: translateX(-130%); }
  65%, 100% { transform: translateX(130%); }
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 2px rgba(255, 176, 32, 0.35), 0 0 20px rgba(255, 176, 32, 0.25); }
  50% { box-shadow: 0 0 0 4px rgba(61, 255, 122, 0.35), 0 0 30px rgba(61, 255, 122, 0.2); }
}

@keyframes aurora-drift {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(18deg) scale(1.08); }
}

@keyframes banner-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding-top: 2rem;
  }

  .tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .about-grid,
  .buy-steps,
  .social-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(8, 8, 10, 0.96);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-buy {
    text-align: center;
    justify-content: center;
  }

  .about-grid,
  .buy-steps,
  .social-row {
    grid-template-columns: 1fr;
  }

  .chart-embed {
    min-height: 420px;
  }
}
