/* ═══════════════════════════════════════════
   $PASSIVE — Light Design
   "Press play. Get paid."
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Space+Grotesk:wght@400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

:root {
  --blue: #2B4BB5;
  --blue-light: #3D5FD9;
  --blue-pale: #EEF2FF;
  --green: #16A34A;
  --green-bg: #F0FDF4;

  --bg: #FAFAFA;
  --white: #FFFFFF;
  --surface: #F3F4F6;
  --border: #E5E7EB;
  --border-strong: #D1D5DB;

  --text: #111111;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;

  --font-display: 'Press Start 2P', cursive;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --radius: 12px;
  --radius-sm: 8px;
}

/* ═══════ RESET ═══════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
img, video { display: block; max-width: 100%; }

/* ═══════ NAVBAR ═══════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--blue);
  border-bottom: 3px solid var(--text);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.7rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-logo-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7);
  transition: all 0.15s;
}
.nav-icon-link:hover {
  color: #fff;
}
.nav-btn {
  display: inline-block;
  background: #fff;
  color: var(--blue);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  border: 3px solid var(--text);
  padding: 0.45rem 1.25rem;
  box-shadow: 3px 3px 0 0 #000;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-btn:hover {
  box-shadow: 4px 4px 0 0 #000;
  transform: translate(-1px, -1px);
}

/* ═══════ SECTION GLOWS ═══════ */
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(43, 75, 181, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(43, 75, 181, 0.05) 0%, transparent 65%);
  pointer-events: none;
}
.tracker-section {
  position: relative;
}
.tracker-section::before {
  content: '';
  position: absolute;
  top: -15%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(22, 163, 74, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.explainer-section {
  position: relative;
}
.explainer-section::after {
  content: '';
  position: absolute;
  bottom: -10%; right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(43, 75, 181, 0.05) 0%, transparent 65%);
  pointer-events: none;
}
.youtube-section::before {
  content: '';
  position: absolute;
  top: -10%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(43, 75, 181, 0.04) 0%, transparent 65%);
  pointer-events: none;
}
.youtube-section {
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(43, 75, 181, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* ═══════ FLOATING PARTICLES ═══════ */
#particles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

#navbar { z-index: 100; }

/* ═══════ FLOATING IMAGE OBJECTS ═══════ */
#float-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.float-obj {
  position: absolute;
  pointer-events: none;
}
.float-obj img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ═══════ HERO ═══════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 2rem 80px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 5;
}
.hero-text {
  /* left aligned, not centered */
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-title span {
  color: var(--blue);
}
.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.ca-display {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  word-break: break-all;
}
.hero-stats {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.hero-tracker {
  background: var(--white);
  border: 3px solid var(--text);
  border-radius: 0.75rem;
  box-shadow: 4px 4px 0 0 #000;
  padding: 1rem 1.25rem;
}
.hero-tracker-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-tracker-value {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.hero-mcap .hero-tracker-value {
  color: var(--blue);
}
.mcap-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 1.5s ease-in-out infinite;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}
.hero-logo {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  animation: logoFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 60px rgba(43, 75, 181, 0.45)) drop-shadow(0 0 120px rgba(43, 75, 181, 0.25));
  position: relative;
  z-index: 5;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 0.75rem;
  border: 3px solid var(--text);
  box-shadow: 4px 4px 0 0 #000;
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover {
  box-shadow: 6px 6px 0 0 #000;
  transform: translate(-2px, -2px);
}
.btn:active {
  box-shadow: 2px 2px 0 0 #000;
  transform: translate(1px, 1px);
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-outline {
  background: #fff;
  color: var(--text);
}
.btn.copied {
  background: var(--green) !important;
  color: #fff !important;
}

/* ═══════ REVENUE TRACKER ═══════ */
.tracker-section {
  padding: 5rem 2rem;
}
.tracker-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.tracker-header {
  margin-bottom: 2rem;
}
.tracker-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.tracker-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.tracker-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.5rem;
  align-items: stretch;
}
.tracker-card {
  background: var(--white);
  border: 3px solid var(--text);
  border-radius: 0.75rem;
  padding: 2.5rem 2rem;
  box-shadow: 4px 4px 0 0 #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tracker-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tracker-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.tracker-value {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.tracker-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.tracker-rate {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--green);
  margin-top: 0.5rem;
}

/* Chart card */
.chart-card {
  background: var(--white);
  border: 3px solid var(--text);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 4px 4px 0 0 #000;
  display: flex;
  flex-direction: column;
}
.chart-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.chart-card-header span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.chart-card-header .chart-time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
}
#revenue-chart {
  flex: 1;
  width: 100%;
  min-height: 180px;
}

/* ═══════ EXPLAINER ═══════ */
.explainer-section {
  padding: 5rem 2rem;
  background: var(--blue-pale);
  border-top: 3px solid var(--text);
  border-bottom: 3px solid var(--text);
}
.explainer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.explainer-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.explainer-left h2 span {
  color: var(--blue);
}
.explainer-left p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 420px;
}
.explainer-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  align-items: start;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--text);
  box-shadow: 3px 3px 0 0 #000;
}
.step h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text);
}
.step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════ NUMBERS ROW ═══════ */
.numbers-section {
  padding: 4rem 2rem;
}
.numbers-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.numbers-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.number-cell {
  background: var(--white);
  border: 3px solid var(--text);
  border-radius: 0.75rem;
  box-shadow: 4px 4px 0 0 #000;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.2s;
}
.number-cell:hover {
  box-shadow: 6px 6px 0 0 #000;
  transform: translate(-2px, -2px);
}
.number-cell .val {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.number-cell .val.green { color: var(--green); }
.number-cell .label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══════ YOUTUBE ═══════ */
.youtube-section {
  padding: 5rem 2rem;
  background: var(--white);
  border-top: 3px solid var(--text);
  border-bottom: 3px solid var(--text);
}
.youtube-wrap-outer {
  max-width: 1200px;
  margin: 0 auto;
}
.youtube-header {
  margin-bottom: 2rem;
}
.youtube-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.youtube-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.youtube-embed {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 3px solid var(--text);
  box-shadow: 4px 4px 0 0 #000;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: var(--surface);
}
.youtube-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.youtube-placeholder {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 0.75rem;
}
.youtube-placeholder svg { opacity: 0.25; }
.youtube-placeholder-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.youtube-placeholder-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ═══════ BANNER ═══════ */
.banner-section {
  padding: 3rem 2rem;
}
.banner-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.banner-img {
  width: 100%;
  border-radius: 0.75rem;
  border: 3px solid var(--text);
  box-shadow: 4px 4px 0 0 #000;
}

/* ═══════ CTA ═══════ */
.cta-section {
  padding: 6rem 2rem;
  text-align: center;
}
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.cta-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════ FOOTER ═══════ */
#footer {
  padding: 2.5rem 2rem;
  border-top: 3px solid var(--text);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
}
.footer-ca {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  word-break: break-all;
}
.footer-links {
  display: flex;
  gap: 0.25rem;
}
.footer-links a {
  color: var(--text-muted);
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  display: inline-flex;
}
.footer-links a:hover {
  color: var(--text);
  background: var(--surface);
}
.disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero-text { order: 2; }
  .hero-visual { order: 1; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-logo { width: 180px; height: 180px; }
  .tracker-grid { grid-template-columns: 1fr; }
  .explainer-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .numbers-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.2rem, 6vw, 2rem); }
  .hero-buttons, .cta-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }
  .numbers-row { grid-template-columns: 1fr 1fr; }
  .sticker { display: none; }
}


/* ═══════ STICKER IMAGES ═══════ */
.sticker {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(3px 3px 0 rgba(0,0,0,0.15));
}
.sticker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
