/* Voxelaro — dark violet/purple · matches @voxelaro X avatar + banner */

:root {
  --bg-deep: #0A0A12;
  --bg-mid: #12121E;
  --bg-surface: #1A1A2A;
  --bg-elevated: #222236;
  --purple: #7050D0;
  --purple-bright: #6840F0;
  --purple-deep: #5030A8;
  --purple-soft: rgba(112, 80, 208, 0.16);
  --accent: #7B60E0;
  --accent-hover: #9580F0;
  --accent-glow: rgba(112, 80, 208, 0.22);
  --white: #FFFFFF;
  --ink: #E8E8F0;
  --muted: #9494A8;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(112, 80, 208, 0.38);
  --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(10, 10, 18, 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.06em;
  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);
}
.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: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 100%) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-bright) 100%) !important;
  box-shadow: 0 4px 20px var(--accent-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;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("og-banner.png") center / cover no-repeat;
  opacity: 0.22;
  pointer-events: none;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 40%, rgba(112, 80, 208, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(10, 10, 18, 0.55) 0%, var(--bg-deep) 85%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hover);
  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: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--purple-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead { font-size: 1.1rem; color: rgba(255,255,255,0.78); max-width: 36rem; 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: linear-gradient(135deg, var(--purple-deep), var(--purple));
  color: var(--white);
}
.btn-primary:hover {
  color: var(--white);
  filter: brightness(1.08);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover { border-color: var(--accent); }
.btn-lg { padding: 0.85rem 1.5rem; font-size: 1rem; }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.hero-metrics dt { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-metrics dd {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--purple-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.voxel-panel {
  background: rgba(26, 26, 42, 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(--purple-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: linear-gradient(135deg, var(--purple), var(--purple-bright));
  box-shadow: 0 0 8px var(--accent-glow);
}
.voxel-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  padding: 1.25rem;
}
.voxel-cell {
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--bg-elevated);
}
.voxel-cell.hot { background: #5030A8; opacity: 0.95; }
.voxel-cell.warm { background: #3A2878; opacity: 0.85; }
.voxel-cell.cool { background: #1E1838; opacity: 0.7; }
.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0 1.25rem 1.25rem;
  font-size: 0.75rem;
}
.panel-stats strong { display: block; color: var(--accent-hover); font-size: 1rem; }

.section { padding: 4.5rem 0; }
.section-light { background: var(--bg-mid); }
.section-teal {
  background: var(--bg-surface);
  border-block: 1px solid var(--border);
}
.section-sand { background: var(--bg-deep); }
.section-head { max-width: 640px; margin-bottom: 2.5rem; }
.section-head.light h2, .section-head.light .section-desc { color: var(--ink); }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-hover);
  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(--accent-glow);
}
.service-card.highlight {
  border-color: var(--border-strong);
  background: linear-gradient(145deg, rgba(80, 48, 168, 0.14) 0%, rgba(112, 80, 208, 0.08) 100%), var(--bg-elevated);
}
.card-index { font-size: 0.75rem; font-weight: 700; color: var(--accent); 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); }

.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.integration-item {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
}
.integration-item h3 { font-family: var(--font-head); color: var(--accent-hover); font-size: 0.95rem; margin-bottom: 0.35rem; }
.integration-item p { font-size: 0.85rem; 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; }

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  background: var(--bg-elevated);
}
.faq-list summary { cursor: pointer; font-weight: 600; color: var(--white); }
.faq-list p { margin-top: 0.75rem; color: var(--muted); font-size: 0.9rem; }

.section-cta {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, rgba(80, 48, 168, 0.12) 0%, rgba(112, 80, 208, 0.06) 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(80,48,168,0.18), rgba(112,80,208,0.1));
  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(--purple);
  background: rgba(112, 80, 208, 0.06);
  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-bright);
  background: var(--purple-soft);
  color: var(--ink) !important;
  text-decoration: none;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.footer-channel-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(80, 48, 168, 0.55) 0%, rgba(112, 80, 208, 0.35) 100%);
  border: 1px solid var(--border-strong);
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--accent-glow);
}
.footer-channel-link:hover .footer-channel-mark {
  background: linear-gradient(145deg, var(--purple-deep) 0%, var(--purple) 100%);
  border-color: var(--purple-bright);
  color: var(--white);
}
.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;
  letter-spacing: 0.02em;
  color: var(--accent-hover);
}
.footer-channel-link:hover .footer-channel-handle { color: var(--white); }
.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); }
.footer-legal-x {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent-hover) !important;
}
.footer-legal-x:hover { color: var(--white) !important; text-decoration: none; }
.footer-legal-x svg { opacity: 0.9; flex-shrink: 0; }

.legal-wrap { padding: 2rem 1.5rem 3rem; max-width: 720px; margin: 0 auto; }
.legal-back { display: inline-block; margin-bottom: 1.5rem; color: var(--accent-hover); }
.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-metrics { grid-template-columns: 1fr; }
}
@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; }
}
