/* ---------- Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #050810;
  --bg-alt: #0b1020;
  --panel: #0f172a;
  --panel-soft: #111827;
  --accent: #ff00ff;       /* SudoNova magenta */
  --accent-2: #6366f1;
  --accent-soft: rgba(255, 0, 255, 0.12);
  --text: #f9fafb;
  --muted: #9ca3af;
  --border: #1f2937;
  --radius-lg: 1.25rem;
  --radius-md: 0.85rem;
  --shadow-soft: 0 20px 45px rgba(0, 0, 0, 0.6);
  --max-width: 1120px;
  --fast: 0.18s ease-out;
}

@font-face {
  font-family: "SudoNovaFont";
  src: url("fonts/SudoNova.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}




html, body {
  height: 100%;
}

body {
 font-family: "SudoNovaFont", system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background: linear-gradient(
      90deg,
      #140914 0%,
      #1e0f23 22%,
      #301236 45%,
      #45164c 70%,
      #551861 100%
  );
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative; /* enables layering for the grid overlay */
}
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;             /* above the grid overlay */
}



body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 0, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;

  animation: grid-drift 10s linear infinite; /* 60s is very slow */
}


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

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

/* ---------- Layout ---------- */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.2rem 1.25rem 3rem;
}

/* ---------- Global nav ---------- */
.nav {
  position: relative;
  height: 72px;
  padding: 0 1.5rem;
  z-index: 1;
}

.nav-logo {
  width: 48px;
  height: 48px;
  position: relative;    /* make ::after use this box, not the whole page */
  border-radius: 999px;  /* optional, keeps the logo nicely rounded */
  overflow: hidden;      /* clip the glow to the logo area */
}

.nav-inner {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: space-between;  /* logo + links in a row */
  gap: 2.5rem;                  /* more space between logo and first button */

  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.6));
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.6);
}


.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}


.nav-logo img {
  height: 100%;
  width: auto;
}



.nav-logo::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.35);
}


.nav-brand {
  display: flex;
  flex-direction: column;
}

.nav-title {
  font-size: 0.96rem;
  font-weight: 600;
}

.nav-tagline {
  font-size: 0.76rem;
  color: var(--muted);
}

.nav-links {
  margin-left: 20.4rem; /* pushes menu right of the logo */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
}

.nav-link {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: color var(--fast), border-color var(--fast), background var(--fast), transform var(--fast);
}

.nav-link:hover {
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.7);
  background: radial-gradient(circle, rgba(15, 23, 42, 0.95) 0, rgba(15, 23, 42, 0.7) 100%);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--text);
  border-color: rgba(255, 0, 255, 0.7);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.2) 0, rgba(255, 0, 255, 0.4) 32%, rgba(15, 23, 42, 0.95) 100%);
}

.nav-cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 0, 255, 0.65);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.18) 0, rgba(255, 0, 255, 0.4) 30%, rgba(15, 23, 42, 0.95) 100%);
  font-size: 0.82rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(236, 72, 153, 0.55);
  transition: transform var(--fast), box-shadow var(--fast), border-color var(--fast), background var(--fast);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(236, 72, 153, 0.75);
  border-color: rgba(255, 255, 255, 0.9);
}

/* ---------- Hero / generic sections ---------- */
.hero {
  padding: 2.3rem 0 2.8rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at left, rgba(255, 0, 255, 0.18) 0, rgba(15, 23, 42, 0.98) 55%);
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 1.1rem;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #ffffff 0, #ff00ff 45%, #6366f1 100%);
  box-shadow: 0 0 14px rgba(244, 114, 182, 0.9);
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.accent {
  background: linear-gradient(120deg, #ff00ff, #f97316, #22d3ee);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.btn-primary, .btn-ghost {
  border-radius: 999px;
  padding: 0.75rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: transform var(--fast), box-shadow var(--fast), background var(--fast), border-color var(--fast), color var(--fast);
}

.btn-primary {
  background: linear-gradient(135deg, #ff00ff, #ec4899, #f97316);
  color: #020617;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 40px rgba(236, 72, 153, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(236, 72, 153, 0.9);
  background: linear-gradient(135deg, #f97316, #ec4899, #22d3ee);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.12) 0, rgba(15, 23, 42, 0.96) 100%);
  color: var(--muted);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.3) 0, rgba(15, 23, 42, 1) 100%);
  transform: translateY(-1px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-meta strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text);
}

/* Right-side hero card (generic visual container) */
.card-visual {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  background: radial-gradient(circle at top, #111827 0, #020617 60%, #000 100%);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  isolation: isolate;
}

.card-visual::before {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(circle at 20% 0, rgba(255, 0, 255, 0.25) 0, transparent 60%),
    radial-gradient(circle at 100% 0, rgba(34, 211, 238, 0.25) 0, transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(249, 115, 22, 0.3) 0, transparent 70%);
  opacity: 0.8;
  mix-blend-mode: screen;
}

/* ---------- Section blocks ---------- */
.section {
  padding: 2.4rem 0 0;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.section-title {
  font-size: 1.15rem;
  font-weight: 500;
}

.section-subtitle {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 30rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.74rem;
}

.pill {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle, rgba(15, 23, 42, 0.95) 0, rgba(15, 23, 42, 0.7) 100%);
  color: var(--muted);
}

/* ---------- Grids: features, gallery, cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tile {
  border-radius: var(--radius-md);
  padding: 1rem;
  background: linear-gradient(145deg, var(--panel), var(--panel-soft));
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.85rem;
}

.tile-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.tile-title {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.45rem;
}

.tile-body {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.9rem;
}

.gallery-item {
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #020617;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.gallery-meta {
  padding: 0.6rem 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Roadmap */
.roadmap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.roadmap-column {
  border-radius: var(--radius-md);
  padding: 0.95rem;
  background: linear-gradient(145deg, var(--panel), var(--panel-soft));
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.82rem;
}

.roadmap-column h3 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.roadmap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.roadmap-item {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}

.roadmap-bullet {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  margin-top: 0.32rem;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(255, 0, 255, 0.8);
}

/* Polished roadmap layout */
.roadmap-phases {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.roadmap-phase {
  border-radius: var(--radius-md);
  padding: 0.95rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98) 0, rgba(15, 23, 42, 0.85) 55%, rgba(15, 23, 42, 1) 100%);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.75);
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.roadmap-phase-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.16rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 0, 255, 0.5);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.18) 0, rgba(255, 0, 255, 0.25) 30%, rgba(15, 23, 42, 0.98) 100%);
  font-size: 0.7rem;
  color: var(--text);
}

.roadmap-phase-media {
  border-radius: 0.7rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: #020617;
}

.roadmap-phase-media video {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}


.roadmap-phase-media img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.roadmap-phase-media--stacked {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.roadmap-phase-media--stacked img {
  height: 90px;
}

.roadmap-phase-title {
  font-size: 0.95rem;
  font-weight: 500;
}

.roadmap-phase-body {
  font-size: 0.8rem;
  color: var(--muted);
}

.roadmap-phase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.roadmap-phase-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.35rem;
}

.roadmap-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}

.roadmap-badge {
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle, rgba(15, 23, 42, 0.96) 0, rgba(15, 23, 42, 0.8) 100%);
  font-size: 0.7rem;
  color: var(--muted);
}

/* Responsive roadmap */
@media (max-width: 1100px) {
  .roadmap-phases {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .roadmap-phases {
    grid-template-columns: minmax(0, 1fr);
  }

  .roadmap-phase-media img {
    height: 150px;
  }

  .roadmap-phase-media--stacked {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}










/* ---------- Contact strip / footer ---------- */
.contact-strip {
  margin-top: 3rem;
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at 0 0, rgba(255, 0, 255, 0.16) 0, rgba(15, 23, 42, 0.98) 42%, rgba(15, 23, 42, 1) 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: 0.86rem;
}

.contact-strip h2 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.contact-strip p {
  font-size: 0.84rem;
  color: var(--muted);
  max-width: 28rem;
}

.footer {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  text-align: center;
  font-size: 0.76rem;
  color: #4b5563;
}
/* animate the grid background */
@keyframes grid-drift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: -80px -80px, -80px -80px; /* move up-left */
  }
}




/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .card-visual {
    margin-top: 0.75rem;
  }

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

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

@media (max-width: 640px) {
  .nav-inner {
    flex-wrap: wrap;
  }

  .nav-links {
    flex: 1 1 100%;
    justify-content: flex-start;
  }

  .shell {
    padding-inline: 1rem;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .roadmap {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-strip {
    padding: 1.25rem 1rem;
  }
}

