:root {
  --bg: #0b0d10;
  --panel: #11141a;

  --text: #e6e8ec;
  --muted: #8b8f98;

  /* PRIMARY ACCENT */
  --accent: #6cff00;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
}

/* Subtle grid background */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(108,255,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,255,0,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.maintenance {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px;
}

.content {
  max-width: 540px;
}

.tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 22px;
}

h1 {
  font-size: 46px;
  line-height: 1.1;
  margin: 0 0 22px;
  font-weight: 600;
}

.accent {
  color: var(--accent);
}

p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 32px;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 90px;
}

.status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(108,255,0,0.7);
}

/* Founder Seal */
.seal {
  opacity: 0.85;
}

.seal-ring {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(230,232,236,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.seal-core {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px dashed rgba(108,255,0,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.seal-title {
  font-size: 12px;
  letter-spacing: 3px;
}

.seal-sub {
  font-size: 9px;
  letter-spacing: 2px;
  margin-top: 4px;
  color: var(--muted);
}

.seal-year {
  font-size: 9px;
  margin-top: 6px;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .maintenance {
    padding: 40px;
  }

  h1 {
    font-size: 36px;
  }
}
