:root {
  --bg: #0b0b0b;
  --card: #161616;
  --text: #f5f5f5;
  --muted: #9a9a9a;
  --border: #2a2a2a;
  --accent: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #000000;
  color: var(--text);
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(12px);
}


.logo {
  letter-spacing: 0.18em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  
  color: var(--accent);
}

.menu-btn {
  display: none;
}

/* HERO */
.hero {
  padding: 80px 18px;
  max-width: 760px;
  margin: auto;
}

/* SECTIONS */
section {
  padding: 60px 18px;
  text-align: center;
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.stat span {
  font-size: 2.4rem;
  font-weight: 600;
}

/* DOTS */
.dots-wrapper {
  overflow-x: hidden;
  padding: 20px 0;
}

.dots {
  display: grid;
  margin-right: 20px;
  grid-template-columns: repeat(auto-fit, 10px);
  gap: 6px;
  justify-content: center;
}

/* ===== MARSHMALLOW DOT (USED EVERYWHERE) ===== */
.dot {
  width: 14px;
  height: 14px;
  border-radius: 6px; /* rounded square like image */
  background: #2a2a2a;
  position: relative;
  transform: scale(0);
  animation: pop 0.5s ease forwards;
}

.dot.filled {
  background: var(--accent);
}

/* TOOLTIP */
.dot::after {
  content: attr(data-label);
  position: absolute;
  bottom: 140%;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: #111;
  color: #fff;
  padding: 4px 8px;
  font-size: 0.7rem;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dot:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* CARDS */
.detail-grid,
.future-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: auto;
}

.detail-card,
.f-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 14px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.detail-card:hover,
.f-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.8rem;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition: all 1s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* MOBILE */
@media (max-width: 700px) {
  .nav-links {
    position: absolute;
    top: 64px;
    right: 16px;
    width: 200px;
    height: auto;
    background: #000000e7; /* solid */
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 14px;
    flex-direction: column;
    padding: 14px;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1000;
  }

.nav-links a {
  
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

  .nav-links.open {
   
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-btn {
    display: block;
    font-size: 1.4rem;
  }
}

/* ANIMATIONS */
@keyframes pop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ===== MONTH DOT LAYOUT (7 PER ROW) ===== */
#monthDots {
  display: grid;
  grid-template-columns: repeat(7, 14px); /* exactly 7 dots */
  justify-content: center;
  gap: 8px;
}



/* =====================================================
   PRIVACY POLICY PAGE (ISOLATED – NO CLASH)
   ===================================================== */

/* page scope */
body.policy-page {
  background: #000;
  color: #fff;
}

/* layout */
.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}

/* typography */
.policy-container h1,
.policy-container h2,
.policy-container h3 {
  color: #fff;
}

.policy-container p,
.policy-container li {
  color: #ccc;
  line-height: 1.7;
}

.policy-container a {
  color: #fff;
  text-decoration: underline;
}

/* animation (reuse reveal pattern safely) */
.policy-page .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.policy-page .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* responsive */
@media (max-width: 600px) {
  .policy-container {
    padding: 100px 16px 60px;
  }
}

