/* Gridomora — dark navy · neon cyan → purple/magenta · virtual worlds analytics */

:root {
  --bg-deep: #0b0e14;
  --bg-mid: #0f1219;
  --bg-surface: #141824;
  --bg-elevated: #1a2030;
  --cyan: #00D2FF;
  --purple: #A020F0;
  --magenta: #FF00FF;
  --cyan-soft: rgba(0, 210, 255, 0.14);
  --purple-soft: rgba(160, 32, 240, 0.16);
  --accent: #00D2FF;
  --accent-mid: #A020F0;
  --accent-hover: #33DDFF;
  --accent-glow: rgba(0, 210, 255, 0.22);
  --purple-glow: rgba(160, 32, 240, 0.24);
  --grad-brand: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 55%, var(--magenta) 100%);
  --grad-border: linear-gradient(90deg, var(--cyan), var(--purple), var(--magenta));
  --white: #FFFFFF;
  --ink: #E8ECF4;
  --muted: #8A94A8;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(0, 210, 255, 0.35);
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --max: 1120px;
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-hover); text-decoration: none; }
a:hover { color: var(--white); }
img { display: block; max-width: 100%; }
.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 14, 20, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.brand:hover { color: var(--white); text-decoration: none; }
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--border-strong), 0 0 16px var(--cyan-soft);
}
.brand-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.35));
}
.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.site-nav a { color: rgba(255, 255, 255, 0.72); font-size: 0.9rem; font-weight: 500; }
.site-nav a:hover { color: var(--white); text-decoration: none; }
.nav-cta {
  background: var(--grad-brand) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  box-shadow: 0 4px 20px var(--purple-glow);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 1px; }

.hero {
  position: relative;
  background: var(--bg-deep);
  color: var(--white);
  overflow: hidden;
  padding: 4.5rem 0 5rem;
  min-height: 520px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("hero-banner.png") center bottom / cover no-repeat;
  opacity: 0.55;
  pointer-events: none;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 30%, rgba(160, 32, 240, 0.2), transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(0, 210, 255, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(11, 14, 20, 0.35) 0%, var(--bg-deep) 88%);
  pointer-events: none;
}
.hero-hud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 210, 255, 0.55);
  z-index: 1;
}
.hero-hud span {
  position: absolute;
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(0, 210, 255, 0.15);
  border-radius: 4px;
  background: rgba(11, 14, 20, 0.45);
  backdrop-filter: blur(4px);
}
.hud-tl { top: 1.25rem; left: 1.25rem; }
.hud-tr { top: 1.25rem; right: 1.25rem; color: rgba(160, 32, 240, 0.7); border-color: rgba(160, 32, 240, 0.2); }
.hud-bl { bottom: 1.25rem; left: 1.25rem; }
.hud-mr { top: 45%; right: 1.25rem; color: rgba(255, 0, 255, 0.55); border-color: rgba(255, 0, 255, 0.15); }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.hero-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.hero-title-row h1 { margin-bottom: 0; }
.pill-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(11, 14, 20, 0.6);
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.pill-tag::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  background: var(--grad-border);
  z-index: -1;
}
.accent-line {
  width: 4rem;
  height: 3px;
  border-radius: 2px;
  background: var(--grad-brand);
  margin-bottom: 1.25rem;
}
.hero-copy h1 em {
  font-style: normal;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.25rem;
}
.lead { font-size: 1.1rem; color: rgba(255, 255, 255, 0.78); max-width: 38rem; margin-bottom: 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: filter 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.btn-primary {
  background: var(--grad-brand);
  color: var(--white);
}
.btn-primary:hover {
  color: var(--white);
  filter: brightness(1.08);
  box-shadow: 0 8px 24px var(--purple-glow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover { border-color: var(--cyan); }
.btn-lg { padding: 0.85rem 1.5rem; font-size: 1rem; }

.grid-panel {
  background: rgba(20, 24, 36, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), 0 0 40px var(--cyan-soft);
  backdrop-filter: blur(8px);
}
.panel-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  font-size: 0.8rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.panel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-brand);
  box-shadow: 0 0 8px var(--accent-glow);
}
.feature-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
.feature-icon-cell {
  padding: 1.25rem 1rem;
  background: var(--bg-surface);
  text-align: center;
}
.feature-icon-cell svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.65rem;
  stroke: var(--cyan);
}
.feature-icon-cell h3 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.feature-icon-cell p {
  font-size: 0.75rem;
  color: var(--muted);
}
.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.85rem 1rem 1rem;
  font-size: 0.72rem;
  border-top: 1px solid var(--border);
}
.panel-stats strong {
  display: block;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 0.95rem;
}

.section { padding: 4.5rem 0; }
.section-light { background: var(--bg-mid); }
.section-grid {
  background: var(--bg-surface);
  border-block: 1px solid var(--border);
}
.section-head { max-width: 640px; margin-bottom: 2.5rem; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.section-desc { color: var(--muted); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.service-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 8px 24px var(--cyan-soft);
}
.service-card.highlight {
  border-color: var(--border-strong);
  background: linear-gradient(145deg, rgba(0, 210, 255, 0.08) 0%, rgba(160, 32, 240, 0.06) 100%), var(--bg-elevated);
}
.card-index {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}
.service-card h3 { font-family: var(--font-head); color: var(--white); font-size: 1.05rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--muted); }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}
.about-grid p { margin-bottom: 1rem; color: var(--muted); }
.about-grid h2 { font-family: var(--font-head); color: var(--white); font-size: 1.75rem; margin-bottom: 1rem; }
.about-grid address {
  font-style: normal;
  margin-top: 1.5rem;
  color: var(--ink);
  line-height: 1.8;
  padding: 1.1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about-aside {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.about-aside h3 { font-family: var(--font-head); color: var(--white); font-size: 1rem; margin: 1rem 0 0.5rem; }
.about-aside h3:first-child { margin-top: 0; }
.about-aside ul { padding-left: 1.1rem; color: var(--muted); font-size: 0.9rem; }
.about-aside li { margin-bottom: 0.35rem; }

.section-cta {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.06) 0%, rgba(160, 32, 240, 0.08) 100%), var(--bg-mid);
  border-top: 1px solid var(--border);
}
.cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(160, 32, 240, 0.08));
  border: 1px solid var(--border-strong);
}
.cta-box h2 { font-family: var(--font-head); color: var(--white); font-size: 1.5rem; margin-bottom: 0.35rem; }
.cta-box p { color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
  background: var(--bg-deep);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin: 0.75rem 0; }
.footer-channel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
  padding: 0.55rem 0.85rem 0.55rem 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  background: rgba(0, 210, 255, 0.04);
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.footer-channel-link:hover {
  border-color: var(--border-strong);
  border-left-color: var(--purple);
  background: var(--cyan-soft);
  color: var(--ink) !important;
  text-decoration: none;
  box-shadow: 0 4px 16px var(--purple-glow);
}
.footer-channel-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(0, 210, 255, 0.35) 0%, rgba(160, 32, 240, 0.25) 100%);
  border: 1px solid var(--border-strong);
  color: var(--white);
  flex-shrink: 0;
}
.footer-channel-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.2;
}
.footer-channel-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-channel-handle {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cyan);
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-content: start; }
.footer-nav a { color: var(--muted); font-size: 0.9rem; }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }

.legal-wrap { padding: 2rem 1.5rem 3rem; max-width: 720px; margin: 0 auto; }
.legal-back { display: inline-block; margin-bottom: 1.5rem; color: var(--cyan); }
.legal-page h1 { font-family: var(--font-head); color: var(--white); font-size: 2rem; margin-bottom: 0.5rem; }
.legal-page .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.legal-page h2 { font-family: var(--font-head); color: var(--white); font-size: 1.15rem; margin: 1.5rem 0 0.5rem; }
.legal-page p { color: var(--muted); margin-bottom: 0.75rem; }

@media (max-width: 900px) {
  .hero-grid, .about-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-hud { display: none; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-deep);
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--border);
  }
  .site-nav.open { display: flex; }
  .site-header .container { position: relative; }
}
