@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg:     #040d16;
  --accent: #c8ff00;
  --text:   #f0f0f0;
  --muted:  rgba(240,240,240,0.35);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

.visit-counter {
  position: fixed;
  top: 18px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(200,255,0,0.55);
  z-index: 100;
  user-select: none;
}

.visit-counter svg {
  opacity: 0.55;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.15; }
}

header {
  width: 100%;
  max-width: 900px;
  padding: 50px 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-wrap img {
  height: 118px;
  width: auto;
  filter: brightness(1.1);
}

.logo-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--text);
}

.robot-ascii {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.5px;
  color: rgba(200,255,0,0.45);
  white-space: pre;
  text-align: left;
  direction: ltr;
}

main {
  flex: 1;
  width: 100%;
  max-width: 900px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rg-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 60px 0;
  max-width: 520px;
}

.rg-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}

.rg-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text);
  line-height: 1.1;
}

.rg-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  max-width: 420px;
}

.rg-cta {
  margin-top: 6px;
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid rgba(200,255,0,0.3);
  border-radius: 100px;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
}

.rg-cta:hover {
  background: rgba(200,255,0,0.07);
  border-color: rgba(200,255,0,0.6);
  box-shadow: 0 0 22px rgba(200,255,0,0.18), 0 0 48px rgba(200,255,0,0.07);
  letter-spacing: 2px;
}

@media (max-width: 700px) {
  main { padding: 0 20px; }
  .rg-section { padding: 40px 0; }
}

footer {
  width: 100%;
  text-align: center;
  padding: 28px 40px;
  position: relative;
  z-index: 1;
}

footer span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(240,240,240,0.15);
}

.chat-link {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(200,255,0,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.chat-link:hover { color: var(--accent); }

@media (max-width: 700px) {
  header {
    padding: 50px 20px 20px;
  }

  .robot-ascii {
    font-size: 8px;
  }
}

/* ── ENTRANCE ANIMATIONS ─────────────────── */
@keyframes logoIn {
  from { opacity: 0; transform: scale(0.82) translateY(10px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

.anim-logo {
  animation: logoIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.05s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.anim-stagger {
  opacity: 0;
  animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(0.15s + var(--stagger, 0) * 0.2s);
}

.tw-cursor {
  color: var(--accent);
  font-weight: 300;
  animation: twBlink 0.75s step-end infinite;
  animation-delay: 0.9s;
}

@keyframes twBlink {
  0%,  49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}


