/* jtcloud.dev — tokens y base compartidos por todas las páginas */

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

:root {
  --bg:        #09090F;
  --surface:   #1E1E1E;
  --surface2:  #252526;
  --surface3:  #2D2D2D;
  --border:    #3C3C3C;
  --blue:      #007ACC;
  --blue-light:#9CDCFE;
  --blue-dim:  rgba(0,122,204,0.12);
  --text:      #D4D4D4;
  --muted:     #858585;
  --subtle:    #334155;
  --green:     #4EC9B0;
  --yellow:    #DCDCAA;
  --orange:    #CE9178;
  --statusbar: #007ACC;
  --nav-h:     56px;
}

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0,122,204,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 80%, rgba(0,122,204,0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, var(--subtle) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; }

.pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--blue-light);
  background: var(--blue-dim);
  border: 1px solid rgba(0,122,204,0.25);
  border-radius: 3px;
  padding: 3px 10px;
}

.divider {
  width: 40px; height: 1px;
  background: var(--border);
  margin: 28px auto;
}

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: #3C3C3C;
  padding: 2rem 1rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.6s ease forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.fade-up.d1 { animation-delay: 0.1s; }
.fade-up.d2 { animation-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; opacity: 1; transform: none; }
}
