:root {
  --bg0: #05050c;
  --bg1: #070812;
  --bg2: #0b0d1f;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.035);
  --stroke: rgba(255, 255, 255, 0.11);
  --stroke2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --muted2: rgba(255, 255, 255, 0.55);
  --accent: #cfcfcf;
  --accent2: #ffffff;
  --accent3: #f7f7ff;
  --accent-rgb: 207, 207, 207;
  --accent2-rgb: 255, 255, 255;
  --radius: 18px;
  --radius2: 26px;
  --container: 1160px;
  --ease: cubic-bezier(0.2, 0.85, 0.2, 1);
  --ease2: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.62);
  --header-h: 76px;
}

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

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  background: radial-gradient(1200px 680px at 20% -10%, rgba(var(--accent2-rgb), 0.16), transparent 60%),
    radial-gradient(1000px 720px at 85% 10%, rgba(var(--accent-rgb), 0.2), transparent 62%),
    radial-gradient(900px 600px at 60% 110%, rgba(var(--accent2-rgb), 0.12), transparent 62%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 40%, var(--bg2));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height: 1.35;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: translateY(-160%);
  transition: transform 220ms var(--ease);
  z-index: 200;
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
}

[data-glass] {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  z-index: 120;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.scroll-progress-bar {
  height: 100%;
  width: 100%;
  transform-origin: left;
  transform: scaleX(var(--p, 0));
  background: linear-gradient(90deg, rgba(var(--accent2-rgb), 0.95), rgba(var(--accent-rgb), 0.92));
  box-shadow: 0 0 18px rgba(var(--accent2-rgb), 0.24), 0 0 18px rgba(var(--accent-rgb), 0.18);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}

.brand:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.brand-screenshot:hover {
  background: transparent;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(var(--accent2-rgb), 1), rgba(var(--accent-rgb), 1));
  box-shadow: 0 0 0 6px rgba(var(--accent2-rgb), 0.12), 0 0 34px rgba(var(--accent-rgb), 0.18);
}

.brand-name {
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight: 650;
  letter-spacing: -0.02em;
  font-size: 14px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.nav-link {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent2-rgb), 0.9), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms var(--ease);
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  justify-content: flex-end;
}

.btn {
  --btn-bg: rgba(255, 255, 255, 0.05);
  --btn-stroke: rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--btn-stroke);
  background: var(--btn-bg);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease),
    filter 220ms var(--ease);
  user-select: none;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(520px 120px at 20% 30%, rgba(var(--accent2-rgb), 0.85), transparent 58%),
    radial-gradient(520px 120px at 80% 70%, rgba(var(--accent-rgb), 0.78), transparent 60%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  opacity: 0;
  transform: translate3d(-12%, 0, 0);
  transition: opacity 240ms var(--ease), transform 520ms var(--ease2);
  filter: blur(10px);
  pointer-events: none;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(500px 180px at 50% 40%, rgba(var(--accent2-rgb), 0.18), transparent 70%),
    radial-gradient(500px 180px at 50% 60%, rgba(var(--accent-rgb), 0.14), transparent 72%);
  transition: opacity 240ms var(--ease);
  pointer-events: none;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.45);
  filter: saturate(1.05);
}

.btn:hover::before {
  opacity: 1;
  transform: translate3d(10%, 0, 0);
  animation: neonSweep 1.1s var(--ease2) infinite alternate;
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: translateY(0) scale(0.995);
}

.btn-primary {
  --btn-bg: linear-gradient(135deg, rgba(var(--accent2-rgb), 0.95), rgba(var(--accent-rgb), 0.95));
  --btn-stroke: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 70px rgba(var(--accent-rgb), 0.2), 0 20px 70px rgba(var(--accent2-rgb), 0.14);
}

.btn-primary:hover {
  box-shadow: 0 22px 78px rgba(var(--accent-rgb), 0.26), 0 22px 78px rgba(var(--accent2-rgb), 0.18);
}

.btn-secondary {
  --btn-bg: rgba(255, 255, 255, 0.04);
  --btn-stroke: rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
  border-color: rgba(var(--accent2-rgb), 0.26);
  box-shadow: 0 18px 70px rgba(var(--accent2-rgb), 0.12), 0 18px 70px rgba(var(--accent-rgb), 0.1);
}

.btn-sm {
  padding: 10px 12px;
  font-size: 13px;
  border-radius: 12px;
}

@keyframes neonSweep {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1.02);
  }
  to {
    transform: translate3d(6%, 1%, 0) scale(1.05);
  }
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
}

.icon-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 28px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.hero-fog {
  position: absolute;
  inset: -20%;
  z-index: 1;
  background: radial-gradient(700px 520px at 30% 15%, rgba(var(--accent2-rgb), 0.2), transparent 62%),
    radial-gradient(800px 580px at 70% 40%, rgba(var(--accent-rgb), 0.18), transparent 66%),
    radial-gradient(800px 720px at 50% 80%, rgba(var(--accent2-rgb), 0.12), transparent 66%);
  filter: blur(18px) saturate(1.06);
  opacity: 0.92;
  animation: fogMove 10.5s var(--ease2) infinite alternate;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-fog {
    animation-duration: 14.5s;
    opacity: 0.82;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-fog {
    animation: none;
  }
  .btn::before {
    animation: none;
  }
}

@keyframes fogMove {
  from {
    transform: translate3d(-1.6%, -1.2%, 0) scale(1.02);
  }
  to {
    transform: translate3d(1.6%, 1.2%, 0) scale(1.05);
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.65)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 120px);
  mask-image: radial-gradient(900px 700px at 50% 30%, #000 55%, transparent 76%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.hero-kicker {
  margin: 0 0 14px;
  font-size: 13px;
  color: rgba(var(--accent2-rgb), 0.92);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 12px;
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-shadow: 0 0 22px rgba(var(--accent2-rgb), 0.14), 0 0 22px rgba(var(--accent-rgb), 0.12);
}

.hero-subtitle {
  margin: 0 0 22px;
  font-size: 16px;
  color: var(--muted);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.panel {
  width: min(520px, 100%);
  border-radius: var(--radius2);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 1), rgba(var(--accent2-rgb), 1));
  box-shadow: 0 0 0 6px rgba(var(--accent2-rgb), 0.1), 0 0 24px rgba(var(--accent2-rgb), 0.22);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}

.pill-soft {
  background: rgba(var(--accent2-rgb), 0.08);
  border-color: rgba(var(--accent2-rgb), 0.22);
  color: rgba(255, 255, 255, 0.86);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.pill[data-status="online"] .pill-dot {
  background: rgba(var(--accent2-rgb), 1);
  box-shadow: 0 0 0 6px rgba(var(--accent2-rgb), 0.12), 0 0 22px rgba(var(--accent2-rgb), 0.32);
}

.pill[data-status="offline"] .pill-dot {
  background: rgba(255, 70, 120, 1);
  box-shadow: 0 0 0 6px rgba(255, 70, 120, 0.14), 0 0 22px rgba(255, 70, 120, 0.28);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
}

.stat {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 12px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted2);
  margin-bottom: 6px;
}

.stat-value {
  font-weight: 650;
  letter-spacing: -0.02em;
  font-size: 16px;
}

.stat-unit {
  font-weight: 550;
  color: var(--muted2);
  margin-left: 6px;
}

.map-preview {
  position: relative;
  height: 180px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.map-image {
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 260px at 20% 20%, rgba(var(--accent2-rgb), 0.22), transparent 58%),
    radial-gradient(700px 280px at 80% 70%, rgba(var(--accent-rgb), 0.2), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  filter: saturate(1.15);
}

.map-overlay {
  position: absolute;
  inset: auto 12px 12px 12px;
  display: flex;
  gap: 10px;
}

.map-chip {
  display: grid;
  gap: 2px;
  padding: 10px 10px;
  border-radius: 14px;
}

.map-chip-label {
  font-size: 11px;
  color: var(--muted2);
}

.map-chip-value {
  font-size: 13px;
  font-weight: 650;
}

.hero-glow {
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 420px;
  z-index: 1;
  background: radial-gradient(600px 220px at 50% 0%, rgba(var(--accent2-rgb), 0.24), transparent 68%),
    radial-gradient(900px 280px at 50% 10%, rgba(var(--accent-rgb), 0.22), transparent 70%);
  filter: blur(20px);
  opacity: 0.8;
  pointer-events: none;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#stats.section-alt {
  position: relative;
  overflow: hidden;
}

#stats.section-alt::before {
  content: "";
  position: absolute;
  inset: -22% -8% -18% -8%;
  background: radial-gradient(900px 520px at 30% 20%, rgba(var(--accent2-rgb), 0.18), transparent 62%),
    radial-gradient(900px 520px at 80% 60%, rgba(var(--accent-rgb), 0.16), transparent 64%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 140px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 140px);
  transform: translate3d(0, var(--stats-parallax, 0px), 0);
  filter: blur(0.2px);
  opacity: 0.8;
  pointer-events: none;
}

#stats.section-alt > .container {
  position: relative;
  z-index: 1;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-head.split {
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
}

.section-kicker {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(var(--accent2-rgb), 0.92);
}

.section-title {
  margin: 0;
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.cta-row {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.feature-card {
  border-radius: var(--radius);
  padding: 16px 14px 18px;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease), background 260ms var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(400px 220px at 30% 30%, rgba(var(--accent2-rgb), 0.15), transparent 62%),
    radial-gradient(420px 240px at 80% 70%, rgba(var(--accent-rgb), 0.14), transparent 62%);
  opacity: 0;
  transition: opacity 260ms var(--ease);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent2-rgb), 0.3);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.45);
}

.feature-card:hover::after {
  opacity: 1;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(var(--accent2-rgb), 0.15), rgba(var(--accent-rgb), 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 6px rgba(var(--accent2-rgb), 0.08);
  margin-bottom: 12px;
  transform: translateZ(0);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), filter 240ms var(--ease);
}

.feature-card:hover .icon {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 0 0 6px rgba(var(--accent2-rgb), 0.1), 0 0 28px rgba(var(--accent2-rgb), 0.18),
    0 0 28px rgba(var(--accent-rgb), 0.14);
  filter: saturate(1.08);
}

.icon::before,
.social-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  background: linear-gradient(135deg, rgba(var(--accent2-rgb), 1), rgba(var(--accent-rgb), 1));
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

[data-icon="spark"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M12%202l1.7%206.4L20%2012l-6.3%203.6L12%2022l-1.7-6.4L4%2012l6.3-3.6L12%202z%27/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M12%202l1.7%206.4L20%2012l-6.3%203.6L12%2022l-1.7-6.4L4%2012l6.3-3.6L12%202z%27/%3E%3C/svg%3E");
}

[data-icon="motion"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M4%2012c0-4.4%203.6-8%208-8s8%203.6%208%208-3.6%208-8%208-8-3.6-8-8zm8-5a1%201%200%200%200-1%201v4.2l3%201.8a1%201%200%201%200%201-1.7l-2-1.2V8a1%201%200%200%200-1-1z%27/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M4%2012c0-4.4%203.6-8%208-8s8%203.6%208%208-3.6%208-8%208-8-3.6-8-8zm8-5a1%201%200%200%200-1%201v4.2l3%201.8a1%201%200%201%200%201-1.7l-2-1.2V8a1%201%200%200%200-1-1z%27/%3E%3C/svg%3E");
}

[data-icon="shield"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M12%202l7%204v6c0%205-3.4%209.7-7%2010-3.6-.3-7-5-7-10V6l7-4zm0%203.2L7%207.8v4.2c0%203.6%202.2%207%205%207.9%202.8-.9%205-4.3%205-7.9V7.8l-5-2.6z%27/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M12%202l7%204v6c0%205-3.4%209.7-7%2010-3.6-.3-7-5-7-10V6l7-4zm0%203.2L7%207.8v4.2c0%203.6%202.2%207%205%207.9%202.8-.9%205-4.3%205-7.9V7.8l-5-2.6z%27/%3E%3C/svg%3E");
}

[data-icon="pulse"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M3%2013h4l2-7%204%2014%202-7h4v-2h-5l-1%203-4-14-2%207H3v2z%27/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M3%2013h4l2-7%204%2014%202-7h4v-2h-5l-1%203-4-14-2%207H3v2z%27/%3E%3C/svg%3E");
}

[data-icon="people"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M16%2011c1.7%200%203-1.3%203-3s-1.3-3-3-3-3%201.3-3%203%201.3%203%203%203zM8%2011c1.7%200%203-1.3%203-3S9.7%205%208%205%205%206.3%205%208s1.3%203%203%203zm0%202c-2.7%200-8%201.3-8%204v2h12v-2c0-2.7-5.3-4-4-4zm8%200c-.3%200-.7%200-1%20.1%201.6%201%203%202.4%203%203.9v2h6v-2c0-2.7-5.3-4-8-4z%27/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M16%2011c1.7%200%203-1.3%203-3s-1.3-3-3-3-3%201.3-3%203%201.3%203%203%203zM8%2011c1.7%200%203-1.3%203-3S9.7%205%208%205%205%206.3%205%208s1.3%203%203%203zm0%202c-2.7%200-8%201.3-8%204v2h12v-2c0-2.7-5.3-4-4-4zm8%200c-.3%200-.7%200-1%20.1%201.6%201%203%202.4%203%203.9v2h6v-2c0-2.7-5.3-4-8-4z%27/%3E%3C/svg%3E");
}

.feature-title {
  margin: 0 0 8px;
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-size: 16px;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 520ms var(--ease2), transform 520ms var(--ease2);
}

.feature-desc {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 560ms var(--ease2), transform 560ms var(--ease2);
  transition-delay: 80ms;
}

.feature-card.is-visible .feature-title,
.feature-card.is-visible .feature-desc {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.stats-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
}

.telemetry,
.map-card {
  border-radius: var(--radius2);
  padding: 18px 16px;
}

.telemetry-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  padding: 12px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.telemetry-row + .telemetry-row {
  margin-top: 10px;
}

.telemetry-label {
  font-size: 12px;
  color: var(--muted2);
}

.telemetry-value {
  font-weight: 650;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.status-indicator[data-status="online"] {
  background: rgba(var(--accent2-rgb), 1);
  box-shadow: 0 0 0 6px rgba(var(--accent2-rgb), 0.12), 0 0 22px rgba(var(--accent2-rgb), 0.32);
}

.status-indicator[data-status="offline"] {
  background: rgba(255, 70, 120, 1);
  box-shadow: 0 0 0 6px rgba(255, 70, 120, 0.14), 0 0 22px rgba(255, 70, 120, 0.28);
}

.map-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 14px;
}

.map-card-title {
  font-weight: 650;
  letter-spacing: -0.02em;
}

.map-card-sub {
  font-size: 12px;
  color: var(--muted2);
}

.map-card-body {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-large {
  height: 320px;
  background: radial-gradient(860px 300px at 20% 30%, rgba(var(--accent2-rgb), 0.22), transparent 60%),
    radial-gradient(760px 320px at 85% 70%, rgba(var(--accent-rgb), 0.22), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  filter: saturate(1.18);
}

.map-legend {
  position: absolute;
  inset: auto 12px 12px 12px;
  display: flex;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 16px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.legend-a {
  background: rgba(var(--accent2-rgb), 1);
}

.legend-b {
  background: rgba(255, 255, 255, 0.8);
}

.legend-c {
  background: rgba(var(--accent-rgb), 1);
}

.events-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
}

.event-list,
.calendar {
  border-radius: var(--radius2);
  padding: 18px 16px;
}

.event-list-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.event-items {
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.event-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.event-item:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent2-rgb), 0.26);
  background: rgba(255, 255, 255, 0.04);
}

.event-date {
  display: grid;
  gap: 2px;
}

.event-day {
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.event-month {
  font-size: 12px;
  color: var(--muted2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-meta {
  display: grid;
  gap: 6px;
}

.event-title {
  font-weight: 650;
  letter-spacing: -0.02em;
}

.event-text {
  color: var(--muted);
  font-size: 13px;
}

.calendar-head {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calendar-title {
  text-align: center;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding-top: 14px;
}

.cal-cell {
  border-radius: 14px;
  padding: 10px 10px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.82);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.cal-cell.cal-head {
  min-height: 0;
  padding: 8px 8px;
  background: transparent;
  border-color: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: none;
}

.cal-cell[data-muted="true"] {
  color: rgba(255, 255, 255, 0.4);
}

.cal-cell[data-event="true"] {
  border-color: rgba(var(--accent-rgb), 0.32);
  background: rgba(var(--accent-rgb), 0.1);
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0.06);
}

.cal-cell:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent2-rgb), 0.3);
  background: rgba(255, 255, 255, 0.035);
}

.cal-cell.cal-head:hover {
  transform: none;
  border-color: transparent;
  background: transparent;
}

.calendar-foot {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
}

.calendar-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted2);
  font-size: 12px;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.social-card,
.feed-card {
  border-radius: var(--radius2);
  padding: 16px 14px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease), box-shadow 240ms var(--ease);
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent2-rgb), 0.28);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.45);
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateZ(0);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}

.social-card:hover .social-icon {
  transform: translateY(-1px) scale(1.08);
  border-color: rgba(var(--accent2-rgb), 0.28);
  box-shadow: 0 0 0 6px rgba(var(--accent2-rgb), 0.08), 0 0 26px rgba(var(--accent2-rgb), 0.18),
    0 0 26px rgba(var(--accent-rgb), 0.12);
}

[data-social="discord"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M19.2%205.2A15.4%2015.4%200%200%200%2015.5%204l-.2.4a13.6%2013.6%200%200%200-2.6-.3%2013.6%2013.6%200%200%200-2.6.3L9.9%204A15.4%2015.4%200%200%200%205.2%205.2C2.7%208.9%202%2012.4%202.2%2016c1.5%201.1%203.2%201.8%205%202.1l.7-1.1c-.6-.2-1.2-.5-1.7-.8l.4-.3c3.3%201.5%206.9%201.5%2010.2%200l.4.3c-.5.3-1.1.6-1.7.8l.7%201.1c1.8-.3%203.5-1%205-2.1.3-3.6-.5-7.1-2.9-10.8zM8.7%2014.3c-.7%200-1.3-.7-1.3-1.6s.6-1.6%201.3-1.6%201.3.7%201.3%201.6-.6%201.6-1.3%201.6zm6.6%200c-.7%200-1.3-.7-1.3-1.6s.6-1.6%201.3-1.6%201.3.7%201.3%201.6-.6%201.6-1.3%201.6z%27/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M19.2%205.2A15.4%2015.4%200%200%200%2015.5%204l-.2.4a13.6%2013.6%200%200%200-2.6-.3%2013.6%2013.6%200%200%200-2.6.3L9.9%204A15.4%2015.4%200%200%200%205.2%205.2C2.7%208.9%202%2012.4%202.2%2016c1.5%201.1%203.2%201.8%205%202.1l.7-1.1c-.6-.2-1.2-.5-1.7-.8l.4-.3c3.3%201.5%206.9%201.5%2010.2%200l.4.3c-.5.3-1.1.6-1.7.8l.7%201.1c1.8-.3%203.5-1%205-2.1.3-3.6-.5-7.1-2.9-10.8zM8.7%2014.3c-.7%200-1.3-.7-1.3-1.6s.6-1.6%201.3-1.6%201.3.7%201.3%201.6-.6%201.6-1.3%201.6zm6.6%200c-.7%200-1.3-.7-1.3-1.6s.6-1.6%201.3-1.6%201.3.7%201.3%201.6-.6%201.6-1.3%201.6z%27/%3E%3C/svg%3E");
}

[data-social="instagram"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M7%202c-2.8%200-5%202.2-5%205v10c0%202.8%202.2%205%205%205h10c2.8%200%205-2.2%205-5V7c0-2.8-2.2-5-5-5H7zm10%202c1.7%200%203%201.3%203%203v10c0%201.7-1.3%203-3%203H7c-1.7%200-3-1.3-3-3V7c0-1.7%201.3-3%203-3h10zm-5%203.2A4.8%204.8%200%201%200%2012%2017a4.8%204.8%200%200%200%200-9.6zm0%202A2.8%202.8%200%201%201%2012%2015a2.8%202.8%200%200%201%200-5.6zm5.5-.8a1.1%201.1%200%201%200%200%202.2%201.1%201.1%200%200%200%200-2.2z%27/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M7%202c-2.8%200-5%202.2-5%205v10c0%202.8%202.2%205%205%205h10c2.8%200%205-2.2%205-5V7c0-2.8-2.2-5-5-5H7zm10%202c1.7%200%203%201.3%203%203v10c0%201.7-1.3%203-3%203H7c-1.7%200-3-1.3-3-3V7c0-1.7%201.3-3%203-3h10zm-5%203.2A4.8%204.8%200%201%200%2012%2017a4.8%204.8%200%200%200%200-9.6zm0%202A2.8%202.8%200%201%201%2012%2015a2.8%202.8%200%200%201%200-5.6zm5.5-.8a1.1%201.1%200%201%200%200%202.2%201.1%201.1%200%200%200%200-2.2z%27/%3E%3C/svg%3E");
}

[data-social="youtube"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M21.6%207.2s-.2-1.5-.8-2.2c-.8-.8-1.7-.8-2.1-.9C15.8%203.8%2012%203.8%2012%203.8h0s-3.8%200-6.7.3c-.4%200-1.3.1-2.1.9C2.6%205.7%202.4%207.2%202.4%207.2S2.1%209%202.1%2010.8v1.7c0%201.8.3%203.6.3%203.6s.2%201.5.8%202.2c.8.8%201.9.8%202.4.9%201.7.2%206.4.3%206.4.3s3.8%200%206.7-.3c.4%200%201.3-.1%202.1-.9.6-.7.8-2.2.8-2.2s.3-1.8.3-3.6v-1.7c0-1.8-.3-3.6-.3-3.6zM10%2015.4V8.6l6%203.4-6%203.4z%27/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M21.6%207.2s-.2-1.5-.8-2.2c-.8-.8-1.7-.8-2.1-.9C15.8%203.8%2012%203.8%2012%203.8h0s-3.8%200-6.7.3c-.4%200-1.3.1-2.1.9C2.6%205.7%202.4%207.2%202.4%207.2S2.1%209%202.1%2010.8v1.7c0%201.8.3%203.6.3%203.6s.2%201.5.8%202.2c.8.8%201.9.8%202.4.9%201.7.2%206.4.3%206.4.3s3.8%200%206.7-.3c.4%200%201.3-.1%202.1-.9.6-.7.8-2.2.8-2.2s.3-1.8.3-3.6v-1.7c0-1.8-.3-3.6-.3-3.6zM10%2015.4V8.6l6%203.4-6%203.4z%27/%3E%3C/svg%3E");
}

.social-meta {
  display: grid;
  gap: 4px;
}

.social-title {
  font-weight: 650;
  letter-spacing: -0.02em;
}

.social-desc {
  font-size: 13px;
  color: var(--muted);
}

.arrow {
  color: rgba(255, 255, 255, 0.7);
}

.feed-card {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feed-title {
  font-weight: 650;
  letter-spacing: -0.02em;
}

.feed-items {
  display: grid;
  gap: 10px;
  padding-top: 14px;
}

.feed-item {
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 6px;
}

.feed-item-title {
  font-weight: 650;
  letter-spacing: -0.02em;
}

.feed-item-text {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  padding: 44px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-text {
  margin: 0;
  color: var(--muted);
  max-width: 46ch;
}

.footer-links,
.footer-legal {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 220ms var(--ease);
}

.footer-links a:hover,
.footer-legal a:hover {
  color: rgba(var(--accent2-rgb), 0.95);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.footer-mini {
  color: rgba(255, 255, 255, 0.5);
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 700ms var(--ease2), transform 700ms var(--ease2);
  will-change: opacity, transform;
}

[data-reveal][data-reveal-variant="fade"] {
  transform: translate3d(0, 0, 0);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1080px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    justify-content: flex-start;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .nav {
    display: none;
  }
  .header-inner {
    grid-template-columns: auto 1fr;
  }
  .header-cta {
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }
  .hero-copy {
    text-align: center;
    margin-inline: auto;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-badges {
    justify-content: center;
  }
  .hero-panel {
    justify-content: center;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .community-grid {
    grid-template-columns: 1fr;
  }
  .panel-grid {
    grid-template-columns: 1fr;
  }
  .telemetry-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .telemetry-value {
    justify-content: flex-start;
  }
  .calendar-foot {
    flex-direction: column;
    align-items: stretch;
  }
}

.site-header-screenshot {
  background: transparent;
  border-bottom: none;
}

.header-inner-screenshot {
  height: 68px;
  grid-template-columns: auto 1fr auto;
}

.brand-screenshot {
  padding: 12px 6px;
}

.brand-glyph {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
}

.brand-screenshot .brand-name {
  font-size: 15px;
  letter-spacing: -0.01em;
}

.nav-screenshot {
  justify-content: center;
  gap: 22px;
}

.nav-link-screenshot {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 10px;
  color: rgba(255, 255, 255, 0.72);
}

.nav-link-screenshot::after {
  display: none;
}

.nav-link-screenshot:hover {
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  transform: translateY(0);
}

.btn-ghost {
  --btn-bg: rgba(255, 255, 255, 0.08);
  --btn-stroke: rgba(255, 255, 255, 0.22);
  box-shadow: none;
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn-enter {
  min-width: 104px;
}

.btn-ghost::before,
.btn-ghost::after {
  opacity: 0;
  animation: none;
}

.btn-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  filter: none;
}

.hero.hero-screenshot {
  padding-top: 68px;
  background-image: url("./Fotos/background.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero.hero-screenshot .hero-center {
  height: calc(100vh - 68px);
}

.hero.hero-screenshot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(1000px 820px at 86% 18%, rgba(255, 255, 255, 0.24), transparent 62%),
    radial-gradient(1200px 900px at 12% 30%, rgba(255, 255, 255, 0.06), transparent 65%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.hero.hero-screenshot::after {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: 1;
  background: radial-gradient(700px 520px at 30% 15%, rgba(255, 255, 255, 0.08), transparent 62%),
    radial-gradient(900px 580px at 65% 44%, rgba(255, 255, 255, 0.07), transparent 66%),
    radial-gradient(900px 720px at 50% 90%, rgba(255, 255, 255, 0.06), transparent 66%);
  filter: blur(28px) saturate(0.9);
  opacity: 0.74;
  animation: fogMove 18s var(--ease2) infinite alternate;
  pointer-events: none;
}

.hero.hero-screenshot .hero-fog {
  inset: -30%;
  filter: blur(28px) saturate(0.9);
  opacity: 0.78;
  animation-duration: 18s;
  background: radial-gradient(700px 520px at 30% 15%, rgba(var(--accent2-rgb), 0.08), transparent 62%),
    radial-gradient(900px 580px at 65% 44%, rgba(var(--accent-rgb), 0.08), transparent 66%),
    radial-gradient(900px 720px at 50% 90%, rgba(var(--accent2-rgb), 0.06), transparent 66%);
}

.hero-fog-bottom {
  top: auto;
  bottom: -30%;
  height: 60%;
}

.hero-light {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(1000px 820px at 86% 18%, rgba(255, 255, 255, 0.26), transparent 62%),
    radial-gradient(900px 720px at 55% 36%, rgba(255, 255, 255, 0.08), transparent 66%);
  pointer-events: none;
}

.hero-center {
  position: relative;
  z-index: 4;
  height: calc(100vh - 64px);
  display: grid;
  place-items: center;
}

.hero-wordmark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
}

.hero-word {
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight: 700;
  font-size: clamp(72px, 10.8vw, 148px);
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 30px rgba(255, 255, 255, 0.06), 0 1px 0 rgba(0, 0, 0, 0.45);
  position: relative;
  filter: saturate(0.95);
}

.hero-word::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 48%, rgba(255, 255, 255, 0) 70%);
  background-size: 220% 100%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.9;
  mix-blend-mode: screen;
  animation: heroSheen 3.4s var(--ease2) infinite;
}

.hero-word::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: rgba(255, 255, 255, 0.18);
  transform: translate3d(0.6px, 0.6px, 0);
  filter: blur(0.2px);
  opacity: 0.45;
  animation: heroFlicker 6.8s linear infinite;
}

.hero-tagline {
  position: absolute;
  right: -6px;
  top: calc(50% + 64px);
  transform: translateY(-50%);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
  opacity: 0.92;
}

.hero-tagline::before {
  content: "";
  position: absolute;
  inset: -10px -18px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  filter: blur(10px);
  opacity: 0.32;
  animation: heroTaglineSweep 2.8s var(--ease2) infinite;
  pointer-events: none;
}

.hero-tagline > * {
  position: relative;
  z-index: 1;
}

.hero-submark {
  display: none;
}

html.is-typing-hero .hero-word {
  display: inline-block;
  padding-right: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.55);
  animation: caretBlink 920ms steps(1) infinite;
}

html.is-typing-hero .hero-tagline {
  display: inline-block;
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  animation: caretBlink 920ms steps(1) infinite;
}

@keyframes caretBlink {
  0%,
  49% {
    border-color: rgba(255, 255, 255, 0.55);
  }
  50%,
  100% {
    border-color: transparent;
  }
}

@keyframes heroSheen {
  0% {
    background-position: 0% 0%;
    opacity: 0.12;
  }
  22% {
    opacity: 0.9;
  }
  55% {
    background-position: 100% 0%;
    opacity: 0.2;
  }
  100% {
    background-position: 100% 0%;
    opacity: 0.12;
  }
}

@keyframes heroFlicker {
  0%,
  100% {
    opacity: 0.18;
  }
  9% {
    opacity: 0.08;
  }
  11% {
    opacity: 0.22;
  }
  42% {
    opacity: 0.14;
  }
  45% {
    opacity: 0.26;
  }
  70% {
    opacity: 0.12;
  }
}

@keyframes heroTaglineSweep {
  from {
    transform: translate3d(-18%, 0, 0);
  }
  to {
    transform: translate3d(18%, 0, 0);
  }
}

.hero-submark {
  position: absolute;
  right: -8px;
  top: 56%;
  transform: translateY(-50%);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  transform: translate3d(var(--scene-x, 0px), var(--scene-y, 0px), 0);
  transition: transform 320ms var(--ease);
}

.scene-island {
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  width: min(520px, 82vw);
  height: 300px;
}

.island-slab {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-18deg);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(35, 35, 44, 0.96), rgba(18, 18, 24, 0.96));
  box-shadow: 0 60px 110px rgba(0, 0, 0, 0.55);
  clip-path: polygon(12% 28%, 58% 6%, 92% 30%, 88% 76%, 56% 92%, 12% 74%);
}

.island-slab::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(420px 260px at 55% 45%, rgba(255, 255, 255, 0.11), transparent 70%);
  filter: blur(10px);
  opacity: 0.6;
}

.island-shadow {
  position: absolute;
  left: 50%;
  top: 78%;
  width: 74%;
  height: 56px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.55), transparent);
  filter: blur(10px);
  opacity: 0.6;
}

.scene-tree {
  position: absolute;
  left: 50%;
  top: 36%;
  transform: translate(-50%, -50%);
  width: min(260px, 46vw);
  height: 340px;
  transform-origin: 50% 100%;
  animation: treeSway 9.2s var(--ease2) infinite alternate;
}

.tree-trunk {
  position: absolute;
  left: 48%;
  bottom: 92px;
  width: 22px;
  height: 140px;
  transform: translateX(-50%) skewX(-10deg);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(190, 190, 190, 0.8), rgba(120, 120, 120, 0.65));
  filter: blur(0.2px);
  opacity: 0.85;
}

.tree-crown {
  position: absolute;
  left: 50%;
  bottom: 160px;
  width: 100%;
  height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side at 42% 42%, rgba(255, 255, 255, 0.22), transparent 72%),
    radial-gradient(closest-side at 60% 40%, rgba(255, 255, 255, 0.18), transparent 70%),
    radial-gradient(closest-side at 52% 62%, rgba(255, 255, 255, 0.14), transparent 76%);
  filter: blur(0.7px) saturate(0.9);
  opacity: 0.95;
}

.tree-crown::after {
  content: "";
  position: absolute;
  inset: -18%;
  background: radial-gradient(closest-side at 50% 50%, rgba(255, 255, 255, 0.12), transparent 70%);
  filter: blur(16px);
}

@keyframes treeSway {
  from {
    transform: translate(-50%, -50%) rotate(-0.45deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0.45deg);
  }
}

.scene-petals {
  position: absolute;
  inset: 0;
}

.petal {
  position: absolute;
  width: 12px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 74, 172, 0.4);
  filter: blur(0.2px);
  opacity: 0.7;
  animation: petalFloat 7.6s linear infinite;
}

.petal-a {
  left: 12%;
  top: 42%;
  animation-duration: 9.5s;
}

.petal-b {
  left: 78%;
  top: 24%;
  animation-duration: 8.2s;
  opacity: 0.5;
}

.petal-c {
  left: 86%;
  top: 62%;
  animation-duration: 10.4s;
  opacity: 0.35;
}

.petal-d {
  left: 20%;
  top: 70%;
  animation-duration: 8.9s;
  opacity: 0.45;
}

@keyframes petalFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(80px, 120px, 0) rotate(360deg);
  }
}

.cookie {
  position: fixed;
  left: 18px;
  bottom: 16px;
  z-index: 200;
  max-width: min(420px, calc(100vw - 36px));
  border-radius: 10px;
  padding: 12px 14px 12px 14px;
  background: rgba(0, 0, 0, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cookie[hidden] {
  display: none;
}

.cookie-text {
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
  padding-right: 26px;
}

.cookie-close {
  position: absolute;
  right: 8px;
  top: 6px;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

.cookie-close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

@media (max-width: 768px) {
  .cookie {
    left: 18px;
    bottom: 16px;
    max-width: min(420px, calc(100vw - 36px));
  }
}

.social-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-caption {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  max-width: 260px;
  text-align: right;
}

.social-fab-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.38);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.social-fab-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.4);
}

.social-fab-icon {
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.72);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.social-fab-icon[data-social="discord"] {
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M19.2%205.2A15.4%2015.4%200%200%200%2015.5%204l-.2.4a13.6%2013.6%200%200%200-2.6-.3%2013.6%2013.6%200%200%200-2.6.3L9.9%204A15.4%2015.4%200%200%200%205.2%205.2C2.7%208.9%202%2012.4%202.2%2016c1.5%201.1%203.2%201.8%205%202.1l.7-1.1c-.6-.2-1.2-.5-1.7-.8l.4-.3c3.3%201.5%206.9%201.5%2010.2%200l.4.3c-.5.3-1.1.6-1.7.8l.7%201.1c1.8-.3%203.5-1%205-2.1.3-3.6-.5-7.1-2.9-10.8zM8.7%2014.3c-.7%200-1.3-.7-1.3-1.6s.6-1.6%201.3-1.6%201.3.7%201.3%201.6-.6%201.6-1.3%201.6zm6.6%200c-.7%200-1.3-.7-1.3-1.6s.6-1.6%201.3-1.6%201.3.7%201.3%201.6-.6%201.6-1.3%201.6z%27/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M19.2%205.2A15.4%2015.4%200%200%200%2015.5%204l-.2.4a13.6%2013.6%200%200%200-2.6-.3%2013.6%2013.6%200%200%200-2.6.3L9.9%204A15.4%2015.4%200%200%200%205.2%205.2C2.7%208.9%202%2012.4%202.2%2016c1.5%201.1%203.2%201.8%205%202.1l.7-1.1c-.6-.2-1.2-.5-1.7-.8l.4-.3c3.3%201.5%206.9%201.5%2010.2%200l.4.3c-.5.3-1.1.6-1.7.8l.7%201.1c1.8-.3%203.5-1%205-2.1.3-3.6-.5-7.1-2.9-10.8zM8.7%2014.3c-.7%200-1.3-.7-1.3-1.6s.6-1.6%201.3-1.6%201.3.7%201.3%201.6-.6%201.6-1.3%201.6zm6.6%200c-.7%200-1.3-.7-1.3-1.6s.6-1.6%201.3-1.6%201.3.7%201.3%201.6-.6%201.6-1.3%201.6z%27/%3E%3C/svg%3E");
}

.social-fab-icon[data-social="telegram"] {
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M21.7%203.5c.2-.7-.5-1.3-1.2-1L2.7%209.6c-.8.3-.7%201.4.1%201.6l4.4%201.7%201.7%205.3c.2.7%201.1.8%201.5.3l2.4-2.8%204.7%203.4c.6.4%201.5.1%201.7-.7l3.2-15.9zM9.1%2013.2l9.1-5.6-7.4%206.8-.3%203.2-1.3-4-3.1-1.2%202.9-.9z%27/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M21.7%203.5c.2-.7-.5-1.3-1.2-1L2.7%209.6c-.8.3-.7%201.4.1%201.6l4.4%201.7%201.7%205.3c.2.7%201.1.8%201.5.3l2.4-2.8%204.7%203.4c.6.4%201.5.1%201.7-.7l3.2-15.9zM9.1%2013.2l9.1-5.6-7.4%206.8-.3%203.2-1.3-4-3.1-1.2%202.9-.9z%27/%3E%3C/svg%3E");
}

.page-gallery {
  background: linear-gradient(180deg, rgba(10, 10, 14, 1), rgba(8, 8, 12, 1));
}

.gallery {
  padding-top: 86px;
  min-height: 100vh;
}

.gallery-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px 0 16px;
}

.gallery-search {
  height: 44px;
  border-radius: 0;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gallery-search-icon {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  background: rgba(255, 255, 255, 0.8);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M10%202a8%208%200%201%200%205.3%2014l4.9%204.9%201.4-1.4-4.9-4.9A8%208%200%200%200%2010%202zm0%202a6%206%200%201%201%200%2012%206%206%200%200%201%200-12z%27/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M10%202a8%208%200%201%200%205.3%2014l4.9%204.9%201.4-1.4-4.9-4.9A8%208%200%200%200%2010%202zm0%202a6%206%200%201%201%200%2012%206%206%200%200%201%200-12z%27/%3E%3C/svg%3E");
}

.gallery-search-input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.gallery-search-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.gallery-filters {
  height: 44px;
  border-radius: 0;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  user-select: none;
}

.filter-all-btn {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.filter-all-btn:hover {
  color: rgba(255, 255, 255, 0.9);
}

.filter-all-box {
  width: 12px;
  height: 12px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  display: inline-block;
}

.filter input {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
}

.filter input:checked {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.55);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 10px 0 40px;
}

.gallery-card {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.32);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.4);
  transform: translateZ(0);
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.gallery-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.5);
}

.gallery-card-media {
  position: relative;
  height: 240px;
  background: rgba(0, 0, 0, 0.2);
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1) contrast(1.02);
  transform: scale(1.02);
  transition: transform 360ms var(--ease2);
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.06);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 360px at 10% 20%, rgba(255, 255, 255, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

.gallery-card-title {
  position: absolute;
  left: 18px;
  bottom: 62px;
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.gallery-card-foot {
  height: 46px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(240, 240, 240, 0.92);
  color: rgba(0, 0, 0, 0.8);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-card-mark {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.nav-link-screenshot.is-active {
  color: rgba(255, 255, 255, 0.92);
}

.page-faq {
  background: radial-gradient(900px 720px at 75% 15%, rgba(255, 255, 255, 0.06), transparent 65%),
    linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(6, 6, 10, 1));
}

.faq {
  padding-top: 110px;
  min-height: 100vh;
}

.faq-hero {
  padding: 44px 0 20px;
}

.faq-quote {
  margin: 0;
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.08;
  font-size: clamp(22px, 2.6vw, 40px);
  color: rgba(255, 255, 255, 0.28);
  max-width: 980px;
}

.q-open,
.q-close {
  color: rgba(255, 255, 255, 0.18);
}

.q-strong {
  color: rgba(255, 255, 255, 0.82);
}

.q-dim {
  color: rgba(255, 255, 255, 0.28);
}

.faq-author {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.faq-actions {
  margin-top: 34px;
  display: grid;
  gap: 10px;
}

.faq-actions-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.faq-list {
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-q {
  width: 100%;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  padding: 22px 0;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 22px;
  transition: color 220ms var(--ease), background 220ms var(--ease);
}

.faq-q:hover {
  color: rgba(255, 255, 255, 0.95);
}

.faq-q-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.7);
  transform: rotate(0deg);
  transition: transform 240ms var(--ease), color 240ms var(--ease);
}

.faq-item.is-open .faq-q-icon {
  transform: rotate(90deg);
  color: rgba(255, 255, 255, 0.9);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 280ms var(--ease2);
}

.faq-answer-inner {
  padding: 0 0 22px 40px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
  max-width: 86ch;
  white-space: pre-line;
}

.faq-action-bar {
  height: 44px;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.faq-action {
  height: 100%;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: background 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}

.faq-action:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.faq-action-divider {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
}

.faq-action-icon {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.72);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.faq-action-icon[data-social="discord"] {
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M19.2%205.2A15.4%2015.4%200%200%200%2015.5%204l-.2.4a13.6%2013.6%200%200%200-2.6-.3%2013.6%2013.6%200%200%200-2.6.3L9.9%204A15.4%2015.4%200%200%200%205.2%205.2C2.7%208.9%202%2012.4%202.2%2016c1.5%201.1%203.2%201.8%205%202.1l.7-1.1c-.6-.2-1.2-.5-1.7-.8l.4-.3c3.3%201.5%206.9%201.5%2010.2%200l.4.3c-.5.3-1.1.6-1.7.8l.7%201.1c1.8-.3%203.5-1%205-2.1.3-3.6-.5-7.1-2.9-10.8zM8.7%2014.3c-.7%200-1.3-.7-1.3-1.6s.6-1.6%201.3-1.6%201.3.7%201.3%201.6-.6%201.6-1.3%201.6zm6.6%200c-.7%200-1.3-.7-1.3-1.6s.6-1.6%201.3-1.6%201.3.7%201.3%201.6-.6%201.6-1.3%201.6z%27/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M19.2%205.2A15.4%2015.4%200%200%200%2015.5%204l-.2.4a13.6%2013.6%200%200%200-2.6-.3%2013.6%2013.6%200%200%200-2.6.3L9.9%204A15.4%2015.4%200%200%200%205.2%205.2C2.7%208.9%202%2012.4%202.2%2016c1.5%201.1%203.2%201.8%205%202.1l.7-1.1c-.6-.2-1.2-.5-1.7-.8l.4-.3c3.3%201.5%206.9%201.5%2010.2%200l.4.3c-.5.3-1.1.6-1.7.8l.7%201.1c1.8-.3%203.5-1%205-2.1.3-3.6-.5-7.1-2.9-10.8zM8.7%2014.3c-.7%200-1.3-.7-1.3-1.6s.6-1.6%201.3-1.6%201.3.7%201.3%201.6-.6%201.6-1.3%201.6zm6.6%200c-.7%200-1.3-.7-1.3-1.6s.6-1.6%201.3-1.6%201.3.7%201.3%201.6-.6%201.6-1.3%201.6z%27/%3E%3C/svg%3E");
}

.faq-action-icon[data-social="telegram"] {
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M21.7%203.5c.2-.7-.5-1.3-1.2-1L2.7%209.6c-.8.3-.7%201.4.1%201.6l4.4%201.7%201.7%205.3c.2.7%201.1.8%201.5.3l2.4-2.8%204.7%203.4c.6.4%201.5.1%201.7-.7l3.2-15.9zM9.1%2013.2l9.1-5.6-7.4%206.8-.3%203.2-1.3-4-3.1-1.2%202.9-.9z%27/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20fill%3D%27%23000%27%20d%3D%27M21.7%203.5c.2-.7-.5-1.3-1.2-1L2.7%209.6c-.8.3-.7%201.4.1%201.6l4.4%201.7%201.7%205.3c.2.7%201.1.8%201.5.3l2.4-2.8%204.7%203.4c.6.4%201.5.1%201.7-.7l3.2-15.9zM9.1%2013.2l9.1-5.6-7.4%206.8-.3%203.2-1.3-4-3.1-1.2%202.9-.9z%27/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
  .faq {
    padding-top: 96px;
  }
  .faq-quote {
    letter-spacing: 0.01em;
  }
  .faq-action-bar {
    grid-template-columns: 1fr;
    height: auto;
  }
  .faq-action-divider {
    height: 1px;
    width: 100%;
  }
  .faq-action {
    height: 44px;
  }

  .faq-q {
    font-size: 18px;
    padding: 18px 0;
    gap: 14px;
  }

  .faq-answer-inner {
    padding-left: 34px;
  }
}

@media (max-width: 1080px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-top {
    grid-template-columns: 1fr;
  }
  .gallery-filters {
    justify-content: space-between;
    flex-wrap: wrap;
    height: auto;
    padding: 10px 12px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner-screenshot {
    height: 104px;
    grid-template-columns: 1fr auto;
    grid-template-rows: 52px 52px;
    align-items: center;
    gap: 10px;
  }
  .nav-screenshot {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  .nav-link-screenshot {
    flex: 0 0 auto;
    font-size: 11px;
    padding: 10px 6px;
  }
  .hero.hero-screenshot {
    padding-top: 104px;
  }
  .hero.hero-screenshot .hero-center {
    height: calc(100vh - 104px);
  }
  .hero-wordmark {
    min-height: 200px;
    gap: 14px;
  }
  .hero-word {
    font-size: clamp(54px, 14vw, 92px);
    letter-spacing: 0.12em;
    text-align: center;
  }
  .hero-tagline {
    position: static;
    right: auto;
    left: auto;
    top: auto;
    transform: none;
    text-align: center;
    margin-top: 10px;
    white-space: normal;
    max-width: min(320px, calc(100vw - 48px));
  }
  .scene-tree {
    animation-duration: 6.8s;
  }
  .social-fab {
    right: 16px;
    bottom: 86px;
    gap: 10px;
  }
  .social-caption {
    display: none;
  }
  .gallery {
    padding-top: 122px;
  }
  .faq {
    padding-top: 138px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scene-tree,
  .petal {
    animation: none;
  }
  .hero-scene {
    transition: none;
  }
  .hero-word::before,
  .hero-word::after,
  .hero-tagline,
  .hero-tagline::before {
    animation: none;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }
  .brand-screenshot .brand-name {
    font-size: 14px;
  }
  .btn-ghost {
    padding: 9px 16px;
    font-size: 11px;
  }
  .btn-enter {
    min-width: 92px;
  }
  .hero-word {
    letter-spacing: 0.1em;
  }
  .hero-tagline {
    font-size: 10px;
    letter-spacing: 0.18em;
  }
  .cookie {
    max-width: calc(100vw - 32px);
  }
}
