:root {
  --bg: #0a0a0a;
  --panel: #131313;
  --border: #232323;
  --text: #e8e8e8;
  --text-dim: #8a8a8a;
  --green: #3ecf5e;
  --blue: #5b9dff;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.dot--inline {
  margin-left: 6px;
  vertical-align: middle;
}

.dot--blue {
  background: var(--blue);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 32px 40px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
  max-width: 720px;
}

.tag {
  color: var(--blue);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 24px;
}

.subtitle {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 40px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 10px 16px;
  border-radius: 8px;
  width: fit-content;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.status .accent {
  color: var(--blue);
}

.status .dot {
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.foot {
  padding: 24px 40px 32px;
  color: var(--text-dim);
  font-size: 0.8rem;
}

.dotgrid {
  position: absolute;
  width: 140px;
  height: 90px;
  background-image: radial-gradient(circle, var(--border) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.7;
  pointer-events: none;
}

.dotgrid--top {
  top: 40px;
  right: 40px;
}

.dotgrid--bottom {
  bottom: 32px;
  right: 40px;
}

@media (max-width: 600px) {
  .brand {
    padding: 24px;
  }
  .hero {
    padding: 0 24px;
  }
  .foot {
    padding: 20px 24px 28px;
  }
  .dotgrid {
    display: none;
  }
}
