
:root {
  --bg: #050811;
  --fg: #f6fbff;
  --muted: #8ea3c4;
  --line: #18243a;
  --accent: #27f3c5;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background-color: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* cursor */

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 999;
}

/* grid background */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(circle at top left, rgba(57, 130, 255, 0.26), transparent 55%),
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 100% 100%, 88px 100%, 100% 72px;
}

a {
  color: inherit;
}

/* layout */

.shell {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: clamp(2.6rem, 5vw, 3.4rem) 0;
}

.section--border {
  border-top: 1px solid var(--line);
}

h1 {
  font-size: clamp(2.1rem, 3.3vw, 2.9rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
}

h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  margin: 0 0 0.6rem;
}

h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}

p {
  margin: 0;
}

.small {
  font-size: 0.85rem;
}

.muted {
  color: var(--muted);
}

/* availability pill */

.availability-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(39, 243, 197, 0.4);
  background: rgba(7, 24, 34, 0.9);
  box-shadow: 0 0 18px rgba(39, 243, 197, 0.2);
  font-size: 0.8rem;
  margin-bottom: 1.2rem;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(39, 243, 197, 0.9);
  animation: pulse 1.4s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

/* hero */

.hero-lede {
  max-width: 46rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero--small .hero-lede {
  max-width: 40rem;
}

.hero-list {
  margin-top: 1rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-list li + li {
  margin-top: 0.25rem;
}

/* header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  background: radial-gradient(circle at top left, rgba(57,130,255,0.35), transparent 55%), rgba(5,8,17,0.96);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 1.6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.brand-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #6cf3ff, #1a78ff);
  box-shadow: 0 0 12px rgba(74, 250, 255, 0.7);
}

.brand-text {
  font-size: 0.9rem;
  font-weight: 500;
}

/* nav */

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.88rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
}

.nav-links a[aria-current="page"] {
  color: var(--fg);
  border-bottom-color: rgba(255,255,255,0.7);
}

.nav-links a:hover {
  color: var(--fg);
  border-bottom-color: rgba(255,255,255,0.5);
}

.nav-toggle {
  display: none;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(4,8,20,0.9);
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.nav-toggle-line {
  display: block;
  width: 1rem;
  height: 1px;
  background: var(--fg);
}

/* whatsapp button */

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(101, 245, 193, 0.7);
  text-decoration: none;
  font-size: 0.82rem;
  background: radial-gradient(circle at top left, rgba(101,245,193,0.2), transparent 60%);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #30ff9c;
  box-shadow: 0 0 8px rgba(48,255,156,0.8);
}

/* cards / grids */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.card {
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 1.4rem 1.6rem;
  background: radial-gradient(circle at top left, rgba(82,150,255,0.12), transparent 70%);
  transition:
    border-color 0.18s ease-out,
    box-shadow 0.18s ease-out,
    transform 0.18s ease-out,
    background 0.18s ease-out;
}

.card--highlight {
  border-color: rgba(152, 255, 220, 0.8);
  box-shadow: 0 0 28px rgba(22, 244, 186, 0.25);
  background: radial-gradient(circle at top left, rgba(22,244,186,0.26), transparent 70%);
}

.card:hover {
  border-color: rgba(152, 255, 220, 0.9);
  box-shadow: 0 0 26px rgba(22, 244, 186, 0.18);
  transform: translateY(-2px);
  background: radial-gradient(circle at top left, rgba(22,244,186,0.22), transparent 70%);
}

/* pricing layout */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 1.2rem;
}

.price {
  margin: 0 0 0.3rem;
  font-weight: 500;
}

.accent {
  color: var(--accent);
}

/* contact */

.label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
  margin-top: 1.6rem;
}

/* roadmap */

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

.roadmap-block {
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 1.4rem 1.5rem;
  background: radial-gradient(circle at top left, rgba(90,110,255,0.18), transparent 70%);
  transition:
    border-color 0.18s ease-out,
    box-shadow 0.18s ease-out,
    transform 0.18s ease-out,
    background 0.18s ease-out;
}

.roadmap-block:hover {
  border-color: rgba(152, 255, 220, 0.9);
  box-shadow: 0 0 24px rgba(22, 244, 186, 0.18);
  transform: translateY(-2px);
  background: radial-gradient(circle at top left, rgba(22,244,186,0.22), transparent 70%);
}

.roadmap-list {
  margin: 0.7rem 0 0;
  padding-left: 1.05rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.roadmap-list li + li {
  margin-top: 0.3rem;
}

/* domains */

.domains .mint {
  color: var(--accent);
  text-decoration: none;
}

.domains .mint:hover {
  text-decoration: underline;
}

/* footer */

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: auto;
  padding: 1.6rem 0 2.1rem;
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.4rem;
}

.footer-brand {
  font-weight: 500;
  margin-bottom: 0.4rem;
}

/* responsive */

@media (max-width: 840px) {
  body {
    cursor: auto;
  }

  .cursor-dot {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset-inline: 1.25rem;
    top: 3.6rem;
    flex-direction: column;
    padding: 0.8rem 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(5, 9, 20, 0.98);
    gap: 0.45rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.16s ease-out, transform 0.16s ease-out, visibility 0.16s ease-out;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .btn-whatsapp {
    font-size: 0.78rem;
    padding-inline: 0.9rem;
  }
}

/* RiveAnimator.com overrides */

html {
  font-size: 16px;
}

body {
  font-family: "Space Mono", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

h1, .hero h1, #hero-title {
  font-size: clamp(2.3rem, 2.8vw + 1.4rem, 3rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.7rem, 1.5vw + 1.1rem, 2.1rem);
  line-height: 1.25;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.4;
}

.section {
  padding-block: 3.5rem;
}

.shell {
  max-width: 1120px;
}

.hero-kicker {
  margin-bottom: 0.7rem;
}

.hero-lede {
  max-width: 46rem;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0.3rem 0.8rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.btn {
  min-height: 2.6rem;
  padding-inline: 1.4rem;
  border-radius: 999px;
  border-width: 1px;
  font-size: 0.9rem;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--line);
}

.card {
  padding: 1.5rem 1.4rem;
}

.section .grid {
  gap: 1.7rem;
}

@media (max-width: 768px) {
  .nav-links {
    gap: 0.4rem;
  }
  .nav-links a {
    padding-block: 0.4rem;
  }
}
