@font-face {
  font-family: "Stack Sans Notch";
  src: url("/font/StackSansNotch-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050706;
  --bg-2: #0b120c;
  --panel: #0e1511;
  --panel-2: #0a100c;
  --stroke: #1d2b21;
  --accent: #48f139;
  --accent-strong: #65ff52;
  --text: #e6f6e7;
  --muted: #9eb3a0;
  --glow: rgba(72, 241, 57, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Stack Sans Notch", "IBM Plex Sans", sans-serif;
  background: radial-gradient(900px 500px at 10% -10%, rgba(72, 241, 57, 0.2), transparent),
    radial-gradient(600px 400px at 85% 15%, rgba(72, 241, 57, 0.18), transparent),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(72, 241, 57, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 241, 57, 0.06) 1px, transparent 1px);
  background-size: 110px 110px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(72, 241, 57, 0.14), transparent 55%);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

body.egg-mode {
  --accent: #7bff68;
  --accent-strong: #9aff85;
}

body.egg-mode::before {
  opacity: 0.32;
  background-size: 80px 80px;
}

body.egg-mode::after {
  background: linear-gradient(transparent 0%, rgba(72, 241, 57, 0.1) 45%, transparent 100%);
  animation: scan 6s ease-in-out infinite;
}

@keyframes scan {
  0%,
  100% {
    transform: translateY(-12%);
  }
  50% {
    transform: translateY(12%);
  }
}

.page {
  position: relative;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(5, 7, 6, 0.82);
  border-bottom: 1px solid var(--stroke);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  position: relative;
}

.brand::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(72, 241, 57, 0.7);
  opacity: 0.7;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

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

.nav-user {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.6rem;
  align-items: center;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(72, 241, 57, 0.35);
  background: rgba(72, 241, 57, 0.08);
}

.nav-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(72, 241, 57, 0.18);
  border: 1px solid rgba(72, 241, 57, 0.45);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.nav-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-user-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.6rem;
  color: var(--muted);
}

.nav-user-name {
  font-weight: 600;
  font-size: 0.85rem;
}

.nav-user-link {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(72, 241, 57, 0.4);
  color: var(--accent);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.is-hidden {
  display: none !important;
}

.nav-link {
  color: var(--muted);
  font-weight: 500;
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #041504;
  box-shadow: 0 0 18px var(--glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(72, 241, 57, 0.55);
}

.btn-ghost {
  border-color: var(--stroke);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
}

.hero {
  padding: 6rem 0 4rem;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-left {
  display: grid;
  gap: 1.4rem;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--muted);
  font-size: 0.7rem;
}

.hero-title {
  position: relative;
  display: inline-block;
}

.hero-title h1 {
  font-size: clamp(2.6rem, 3vw + 1.6rem, 4.3rem);
  line-height: 1.05;
}

.hero .lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.stat-card {
  padding: 1rem;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(15, 22, 17, 0.75);
}

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

.stat-value {
  margin-top: 0.35rem;
  font-weight: 600;
}

.hero-right {
  display: grid;
  gap: 1.5rem;
}

.about-hero {
  padding: 5.5rem 0 4rem;
  position: relative;
  z-index: 1;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-hero-copy {
  display: grid;
  gap: 1.3rem;
}

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

.metric-tile {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(15, 22, 17, 0.7);
  display: grid;
  gap: 0.35rem;
}

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

.metric-value {
  font-weight: 600;
}

.about-hero-panel {
  padding: 2rem;
  border-radius: 26px;
  border: 1px solid var(--stroke);
  background: rgba(8, 12, 9, 0.85);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  display: grid;
  gap: 1.8rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-hero-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(72, 241, 57, 0.5);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.55);
}

.about-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(80px, 1fr));
  gap: 0.9rem;
}

.map-node {
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(72, 241, 57, 0.4);
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  background: rgba(72, 241, 57, 0.08);
  animation: float 5s ease-in-out infinite;
}

.map-node:nth-child(1) {
  animation-delay: 0s;
}

.map-node:nth-child(2) {
  animation-delay: 0.4s;
}

.map-node:nth-child(3) {
  animation-delay: 0.8s;
}

.map-node:nth-child(4) {
  animation-delay: 1.2s;
}

.map-node:nth-child(5) {
  animation-delay: 1.6s;
}

.map-line {
  position: absolute;
  inset: auto 10% 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(72, 241, 57, 0.7), transparent);
  opacity: 0.5;
}

.about-panel-copy h3 {
  margin-bottom: 0.4rem;
}

.about-panel-copy p + h3 {
  margin-top: 1.2rem;
}

.signal-strip {
  border-top: 1px solid rgba(72, 241, 57, 0.15);
  border-bottom: 1px solid rgba(72, 241, 57, 0.15);
  overflow: hidden;
  background: rgba(6, 9, 7, 0.85);
}

.signal-track {
  display: flex;
  gap: 2rem;
  padding: 0.85rem 0;
  animation: marquee 18s linear infinite;
}

.signal-item {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(72, 241, 57, 0.7);
  white-space: nowrap;
}

.hero-console {
  padding: 2rem;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(15, 22, 17, 0.9) 0%, rgba(8, 12, 9, 0.9) 100%);
  border: 1px solid var(--stroke);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(72, 241, 57, 0.12), transparent);
  transform: translateX(-100%);
  animation: shimmer 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-console:hover {
  transform: translateY(-6px);
  border-color: rgba(72, 241, 57, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.console-dots {
  display: flex;
  gap: 0.35rem;
}

.console-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(72, 241, 57, 0.4);
}

.console-stack {
  display: grid;
  gap: 0.85rem;
}

.console-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: rgba(5, 7, 6, 0.6);
  border: 1px solid transparent;
}

.console-item strong {
  color: var(--accent);
}

.console-line {
  position: absolute;
  inset: auto -10% 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72, 241, 57, 0.6), transparent);
  opacity: 0.4;
}

.command-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.command-pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(72, 241, 57, 0.12);
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.egg-spark {
  position: absolute;
  right: -10px;
  top: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(72, 241, 57, 0.6);
  background: rgba(72, 241, 57, 0.15);
  box-shadow: 0 0 16px rgba(72, 241, 57, 0.4);
  cursor: pointer;
}

.egg-spark::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.7);
    opacity: 0.6;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

.egg-toast {
  position: fixed;
  left: 2rem;
  bottom: 2rem;
  background: rgba(6, 9, 7, 0.9);
  border: 1px solid var(--stroke);
  color: var(--text);
  padding: 0.9rem 1.2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 20;
}

.egg-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  padding: 4.5rem 0;
  position: relative;
  z-index: 1;
}

.section-head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}

.section-title {
  font-size: clamp(2rem, 2vw + 1rem, 3rem);
}

.section-subtitle {
  color: var(--muted);
  max-width: 46rem;
}

.shelf {
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  background: rgba(10, 14, 11, 0.7);
}

.shelf + .shelf {
  margin-top: 2rem;
}

.shelf-head {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.shelf-head h3 {
  font-size: 1.4rem;
}

.shelf-head p {
  color: var(--muted);
}

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

.shelf-card {
  padding: 1.4rem;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(5, 7, 6, 0.7);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.shelf-card::after {
  content: "";
  position: absolute;
  inset: -40% 60% 60% -40%;
  background: radial-gradient(circle, rgba(72, 241, 57, 0.18), transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.shelf-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.shelf-card p {
  color: var(--muted);
}

.shelf-card:hover {
  transform: translateY(-6px);
  border-color: rgba(72, 241, 57, 0.4);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.4);
}

.module-code {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.support-strip {
  margin-top: 2rem;
  padding: 1.2rem 1.6rem;
  border-radius: 18px;
  border: 1px solid rgba(72, 241, 57, 0.4);
  background: rgba(72, 241, 57, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.support-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(72, 241, 57, 0.16), transparent);
  transform: translateX(-100%);
  animation: shimmer 8s ease-in-out infinite;
  opacity: 0.6;
  pointer-events: none;
}

.support-strip:hover {
  border-color: rgba(72, 241, 57, 0.7);
  box-shadow: 0 0 20px rgba(72, 241, 57, 0.15);
}

.support-strip strong {
  color: var(--accent);
  letter-spacing: 0.2em;
}

.support-strip span {
  color: var(--text);
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(5, 7, 6, 0.5);
}

.feature-list li span {
  flex: 1;
  color: var(--muted);
}

.feature-list .panel-dot {
  margin-top: 0.35rem;
}

.panel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(72, 241, 57, 0.8);
}

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

.guardrail-card {
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(8, 12, 9, 0.75);
  box-shadow: inset 0 0 0 1px rgba(72, 241, 57, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.guardrail-card h3 {
  margin: 0.4rem 0 0.6rem;
}

.guardrail-card p {
  color: var(--muted);
}

.guardrail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(72, 241, 57, 0.4);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.4);
}

.guardrail-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--accent);
}

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

.callout {
  padding: 1.8rem;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: rgba(10, 14, 11, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.callout-title {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.callout:hover {
  transform: translateY(-6px);
  border-color: rgba(72, 241, 57, 0.4);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.4);
}

.dashboard {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.dashboard-panel {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(6, 9, 7, 0.7);
  border: 1px solid var(--stroke);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dashboard-card {
  display: grid;
  gap: 0.8rem;
}

.dashboard-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(72, 241, 57, 0.4);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.4);
}

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

.log-grid {
  display: grid;
  gap: 1rem;
}

.log-entry {
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(8, 12, 9, 0.7);
  padding: 0.9rem 1.2rem;
}

.log-entry summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}

.log-entry summary::-webkit-details-marker {
  display: none;
}

.log-title {
  font-weight: 600;
}

.log-tag {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(72, 241, 57, 0.35);
  color: var(--accent);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.log-entry p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.log-entry[open] {
  border-color: rgba(72, 241, 57, 0.4);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

.value-card {
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(10, 14, 11, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card h3 {
  margin-bottom: 0.6rem;
}

.value-card p {
  color: var(--muted);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(72, 241, 57, 0.4);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.4);
}

.support-console {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(72, 241, 57, 0.4);
  background: rgba(8, 12, 9, 0.8);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.support-console::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(72, 241, 57, 0.18), transparent);
  transform: translateX(-100%);
  animation: shimmer 7s ease-in-out infinite;
  opacity: 0.6;
  pointer-events: none;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(5, 7, 6, 0.6);
}

.timeline-label {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.timeline-step h3 {
  margin-bottom: 0.35rem;
}

.timeline-step p {
  color: var(--muted);
}

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

.team-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.4rem;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(8, 12, 9, 0.75);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-avatar {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(72, 241, 57, 0.12);
  border: 1px solid rgba(72, 241, 57, 0.4);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.2em;
  display: grid;
  place-items: center;
}

.team-role {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  margin: 0.3rem 0 0.5rem;
}

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

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.team-tags span {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(72, 241, 57, 0.3);
  color: var(--accent);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(72, 241, 57, 0.4);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.4);
}

.dashboard-page .site-header {
  background: rgba(4, 6, 5, 0.9);
}

.dash-layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) 1fr;
  gap: 2rem;
  width: min(1280px, 92vw);
  margin: 0 auto;
  padding: 3rem 0;
}

.dash-layout.no-sidebar {
  grid-template-columns: 1fr;
}

.dash-layout.no-sidebar .dash-main {
  width: 100%;
}

.dash-layout.has-sidebar {
  width: 100%;
  margin: 0;
  padding: 2.5rem 3vw 3rem 0;
  grid-template-columns: 260px 1fr;
}

.dash-sidebar {
  position: sticky;
  top: 5.5rem;
  align-self: start;
  padding: 1.6rem;
  border-radius: 0 20px 20px 0;
  border: 1px solid var(--stroke);
  border-left: none;
  background: rgba(8, 12, 9, 0.8);
  display: grid;
  gap: 2rem;
}

.dash-layout.has-sidebar .dash-sidebar {
  margin-left: 0;
}

.dash-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.dash-avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(72, 241, 57, 0.12);
  border: 1px solid rgba(72, 241, 57, 0.4);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.2em;
  display: grid;
  place-items: center;
}

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

.dash-user {
  font-weight: 600;
  margin-top: 0.2rem;
}

.dash-link {
  font-size: 0.8rem;
  color: var(--accent);
}

.dash-section-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.dash-modules {
  display: grid;
  gap: 0.6rem;
}

.dash-module {
  background: rgba(5, 7, 6, 0.6);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.dash-module:hover {
  transform: translateY(-3px);
  border-color: rgba(72, 241, 57, 0.4);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.dash-module.is-active {
  border-color: rgba(72, 241, 57, 0.6);
  box-shadow: 0 0 18px rgba(72, 241, 57, 0.2);
}

.dash-muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.dash-main {
  display: grid;
  gap: 2.5rem;
}

.dash-layout.has-sidebar .dash-main {
  padding-right: 3vw;
}

.dash-head {
  display: grid;
  gap: 0.8rem;
  padding: 2rem;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(6, 9, 7, 0.75);
  width: 100%;
}

.dash-server-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.dash-server-avatar {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  border: 1px solid rgba(72, 241, 57, 0.4);
  background: rgba(72, 241, 57, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.15em;
  overflow: hidden;
}

.dash-server-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dash-server-head h1 {
  font-size: clamp(2.2rem, 3vw + 1rem, 3.6rem);
}

.dash-server-head {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem 2rem;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(6, 9, 7, 0.75);
}

.dash-back {
  border: 1px solid rgba(72, 241, 57, 0.4);
  background: rgba(72, 241, 57, 0.1);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dash-back:hover {
  transform: translateY(-2px);
  border-color: rgba(72, 241, 57, 0.6);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

.dash-kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--accent);
}

.dash-selected {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(72, 241, 57, 0.1);
  border: 1px solid rgba(72, 241, 57, 0.3);
  width: fit-content;
}

.dash-servers {
  display: grid;
  gap: 2rem;
}

.dash-servers-block {
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: rgba(8, 12, 9, 0.7);
  width: 100%;
}

.dash-servers-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.dash-badge {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(72, 241, 57, 0.4);
  color: var(--accent);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.dash-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.server-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(5, 7, 6, 0.6);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 170px;
}

.server-card:hover {
  transform: translateY(-4px);
  border-color: rgba(72, 241, 57, 0.4);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.35);
}

.server-avatar {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(72, 241, 57, 0.12);
  border: 1px solid rgba(72, 241, 57, 0.3);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--accent);
  overflow: hidden;
}

.server-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.server-info h3 {
  font-size: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.server-info p {
  color: var(--muted);
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.server-action {
  grid-column: 1 / -1;
  text-align: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(72, 241, 57, 0.4);
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.server-action.is-disabled {
  border-color: var(--stroke);
  color: var(--muted);
  pointer-events: none;
}

.dash-empty {
  margin-top: 1rem;
  color: var(--muted);
}

.dash-panel {
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  background: rgba(6, 9, 7, 0.8);
  width: 100%;
}

.dash-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.dash-placeholder-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.dash-placeholder-card {
  height: 120px;
  border-radius: 16px;
  border: 1px dashed rgba(72, 241, 57, 0.25);
  background: rgba(72, 241, 57, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.dashboard-chip {
  display: inline-flex;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(72, 241, 57, 0.15);
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta {
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  background: rgba(8, 12, 9, 0.7);
}

.cta-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
}

.site-footer {
  padding: 3rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--stroke);
}

.legal-page ul {
  margin-top: 0.8rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-page li + li {
  margin-top: 0.4rem;
}

.legal-hero .section-subtitle {
  max-width: 50rem;
}

.legal-article {
  padding: 2.6rem;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  background: rgba(8, 12, 9, 0.8);
  display: grid;
  gap: 1rem;
}

.legal-article h2 {
  margin-top: 1.4rem;
}

.legal-article h2:first-of-type {
  margin-top: 0;
}

.legal-article p {
  color: var(--muted);
}

.legal-card {
  padding: 2rem;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(8, 12, 9, 0.8);
  display: grid;
  gap: 0.9rem;
}

.legal-card h2 {
  margin-bottom: 0.2rem;
}

.footer-title {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-hint {
  color: rgba(72, 241, 57, 0.6);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.delay-1 {
  transition-delay: 0.1s;
}

.reveal.delay-2 {
  transition-delay: 0.2s;
}

.reveal.delay-3 {
  transition-delay: 0.3s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  60% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }

  body.egg-mode::after {
    animation: none;
  }

  .signal-track {
    animation: none;
  }

  .map-node {
    animation: none;
  }

  .hero-console::before,
  .support-strip::after,
  .support-console::after {
    animation: none;
  }
}

@media (max-width: 900px) {
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero {
    padding-top: 4rem;
  }

  .dash-layout {
    grid-template-columns: 1fr;
    width: min(92vw, 100%);
    padding: 2rem 0;
  }

  .dash-sidebar {
    position: static;
    border-radius: 20px;
    border-left: 1px solid var(--stroke);
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .egg-toast {
    left: 1rem;
    right: 1rem;
  }

  .dash-head,
  .dash-servers-block,
  .dash-panel {
    padding: 1.4rem;
  }

  .dash-server-head {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.4rem;
  }
}
