:root {
  --primary: #7928CA;
  --magenta: #FF0080;
  --dark: #0F0F1A;
  --dark2: #1A0530;
  --dark3: #0D1F3C;
  --text: #F0F0F8;
  --muted: #8888AA;
  --card: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
  --grad: linear-gradient(135deg, #7928CA, #FF0080);
  --grad-dark: linear-gradient(135deg, #0F0F1A, #1A0530, #0D1F3C);
  --glass: rgba(255,255,255,0.05);
  --radius: 20px;
  --radius-sm: 12px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: rgba(15,15,26,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
}
.navbar-logo { display: flex; align-items: center; gap: 12px; }
.navbar-logo .paw { font-size: 28px; }
.navbar-logo span { font-size: 1.4rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.navbar-links { display: flex; gap: 32px; }
.navbar-links a { color: var(--muted); font-size: 0.9rem; font-weight: 500; transition: color .3s; }
.navbar-links a:hover { color: var(--text); }
.navbar-cta {
  padding: 10px 24px; border-radius: 50px;
  background: var(--grad); color: #fff; font-weight: 700;
  font-size: 0.9rem; cursor: pointer;
  transition: opacity .3s, transform .2s;
  border: none;
}
.navbar-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 40px 100px;
  background: var(--grad-dark);
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.12;
  transform: translateZ(0);
}
.hero-orb1 {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(121,40,202,0.35), transparent 70%);
  top: -200px; left: -150px; z-index: 1; border-radius: 50%;
}
.hero-orb2 {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,0,128,0.25), transparent 70%);
  bottom: -100px; right: -50px; z-index: 1; border-radius: 50%;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 900px; margin: 0 auto; width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-text { max-width: 760px; }
.hero-image {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.hero-image img {
  width: 100%; max-width: 280px;
  filter: drop-shadow(0 40px 80px rgba(121,40,202,0.6)) drop-shadow(0 20px 40px rgba(255,0,128,0.3));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(121,40,202,0.25); border: 1px solid rgba(121,40,202,0.5);
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; color: #BB86FC;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .grad { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle {
  font-size: 1.15rem; color: var(--muted); margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 50px;
  background: var(--grad); color: #fff; font-weight: 800; font-size: 1rem;
  cursor: pointer; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 30px rgba(255,0,128,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,0,128,0.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--text); font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: border-color .3s, background .3s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; }
.stat-item { text-align: center; }
.stat-num { font-size: 1.8rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 0.8rem; color: var(--muted); }
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-image img {
  width: 100%; max-width: 420px;
  filter: drop-shadow(0 30px 60px rgba(121,40,202,0.5));
  animation: float 4s ease-in-out infinite;
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ─── SECTION ─── */
section { padding: 100px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: rgba(121,40,202,0.2); border: 1px solid rgba(121,40,202,0.4);
  color: #BB86FC; font-size: 0.8rem; font-weight: 700;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
  letter-spacing: .05em; text-transform: uppercase;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; line-height: 1.2; margin-bottom: 16px;
}
.section-title .grad { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-subtitle { font-size: 1.05rem; color: var(--muted); max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ─── FEATURES ─── */
.features { background: linear-gradient(180deg, var(--dark) 0%, #0D0D20 100%); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 60px;
}
.feature-card {
  background: var(--glass); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 32px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(121,40,202,0.06), rgba(255,0,128,0.04));
  opacity: 0; transition: opacity .3s;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(121,40,202,0.4); box-shadow: 0 20px 60px rgba(121,40,202,0.15); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--grad); display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem; margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(255,0,128,0.3);
}
.feature-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.feature-desc { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }

/* ─── HOW IT WORKS ─── */
.how { background: linear-gradient(180deg, #0D0D20 0%, var(--dark2) 100%); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.step {
  text-align: center; padding: 40px 24px;
  background: var(--glass); border: 1px solid var(--card-border);
  border-radius: var(--radius); position: relative;
}
.step-num {
  font-size: 3.5rem; font-weight: 900;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.92rem; }
.step-connector {
  position: absolute; top: 50%; right: -18px;
  font-size: 1.4rem; color: var(--primary); z-index: 2;
  transform: translateY(-50%);
}

/* ─── FOUNDERS ─── */
.founders {
  background: linear-gradient(135deg, #1A0040, #2D0060, #3D0080);
  position: relative; overflow: hidden;
}
.founders::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,128,0.2), transparent 70%);
  top: -200px; right: -100px;
}
.founders-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.founders-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,215,0,0.15); border: 1px solid rgba(255,215,0,0.4);
  color: #FFD700; padding: 8px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; margin-bottom: 20px;
}
.founders-perks { list-style: none; margin: 24px 0; }
.founders-perks li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
}
.founders-perks li:last-child { border-bottom: none; }
.perk-check { color: #4CAF50; font-size: 1.2rem; }
.founders-counter {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,215,0,0.3);
  border-radius: var(--radius); padding: 32px; text-align: center;
}
.counter-num {
  font-size: 4rem; font-weight: 900;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.counter-label { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.progress-bar-wrap { margin: 20px 0; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--muted); margin-bottom: 8px; }
.progress-bar { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.progress-fill {
  height: 100%; width: 23%;
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  border-radius: 4px; transition: width 1s ease;
}
.price-highlight {
  font-size: 2rem; font-weight: 900; color: #FFD700; margin-top: 16px;
}
.price-note { font-size: 0.85rem; color: var(--muted); }

/* ─── DOWNLOAD ─── */
.download { background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%); }
.store-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.store-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 28px; border-radius: 16px;
  border: 1.5px solid var(--card-border);
  background: var(--glass);
  min-width: 220px; transition: border-color .3s, background .3s, transform .2s;
  position: relative;
}
.store-btn:hover { border-color: rgba(121,40,202,0.5); background: rgba(121,40,202,0.08); transform: translateY(-3px); }
.store-btn.coming-soon { opacity: 0.7; cursor: default; }
.store-btn .store-icon { font-size: 2.2rem; }
.store-btn .store-info { text-align: left; }
.store-btn .store-soon { font-size: 0.75rem; color: var(--magenta); font-weight: 700; text-transform: uppercase; }
.store-btn .store-name { font-size: 1.05rem; font-weight: 800; }
.store-btn .store-sub { font-size: 0.75rem; color: var(--muted); }
.coming-badge {
  position: absolute; top: -10px; right: 12px;
  background: var(--grad); color: #fff;
  font-size: 0.68rem; font-weight: 800;
  padding: 3px 10px; border-radius: 50px;
}

/* ─── FOOTER ─── */
footer {
  background: #080810; border-top: 1px solid var(--card-border);
  padding: 60px 40px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; max-width: 1200px; margin: 0 auto;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .footer-logo span { font-size: 1.3rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; max-width: 280px; line-height: 1.7; }
.footer-col h4 { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--muted); font-size: 0.88rem; transition: color .3s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1200px; margin: 48px auto 0;
  padding-top: 24px; border-top: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: gap;
}
.footer-bottom p { color: var(--muted); font-size: 0.82rem; }
.footer-blacknogal {
  display: flex; align-items: center; gap: 10px;
  opacity: 0.7; transition: opacity .3s;
}
.footer-blacknogal:hover { opacity: 1; }
.footer-blacknogal img { height: 28px; }
.footer-blacknogal span { font-size: 0.78rem; color: var(--muted); }

/* ─── LEGAL PAGES ─── */
.legal-page { max-width: 800px; margin: 0 auto; padding: 120px 40px 80px; }
.legal-page h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 8px; }
.legal-page .last-update { color: var(--muted); font-size: 0.85rem; margin-bottom: 48px; }
.legal-page h2 { font-size: 1.2rem; font-weight: 800; margin: 36px 0 12px; color: #BB86FC; }
.legal-page p, .legal-page li { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; }
.legal-page a { color: var(--magenta); }

/* ─── COOKIE BANNER ─── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(15,15,26,0.97); backdrop-filter: blur(20px);
  border-top: 1px solid var(--card-border);
  padding: 20px 32px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
#cookie-banner p { color: var(--muted); font-size: 0.88rem; max-width: 700px; }
#cookie-banner a { color: var(--magenta); }
.cookie-actions { display: flex; gap: 12px; }
.btn-cookie-accept {
  padding: 10px 24px; border-radius: 50px;
  background: var(--grad); color: #fff; font-weight: 700; border: none; cursor: pointer;
  font-size: 0.88rem;
}
.btn-cookie-reject {
  padding: 10px 24px; border-radius: 50px;
  border: 1px solid var(--card-border); color: var(--muted);
  background: transparent; cursor: pointer; font-size: 0.88rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .navbar { padding: 14px 20px; }
  .navbar-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-image { order: -1; }
  .hero-stats { justify-content: center; }
  section { padding: 70px 20px; }
  .steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .founders-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─── SCROLL ANIMATION ─── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
