@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap');

:root {
  --bg: #0a0a0f;
  --bg2: #0d0d1a;
  --fg: #c8d0e0;
  --accent: #00ffcc;
  --accent2: #ff00aa;
  --accent3: #00bfff;
  --border: #1a2a3a;
  --glow: rgba(0, 255, 204, 0.4);
}

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

html, body {
  min-height: 100vh;
  background-color: var(--bg);
  color: var(--fg);
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  overflow-x: hidden;
}

/* CRT scanlines */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.08) 3px,
    rgba(0, 0, 0, 0.08) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* subtle vignette */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  z-index: 9998;
}

/* ---------- FLOATING NUMBERS LAYER ---------- */
#numbers-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

#numbers-layer span {
  position: absolute;
  font-family: 'Share Tech Mono', monospace;
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0;
  user-select: none;
  text-shadow: 0 0 8px currentColor;
}

/* ---------- NAV / INTRANET BUTTON ---------- */
.top-nav {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  z-index: 200;
}

.btn-intranet {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 8px rgba(0,255,204,0.2), inset 0 0 8px rgba(0,255,204,0.05);
}

.btn-intranet::before {
  content: '> ';
  opacity: 0.7;
}

.btn-intranet:hover {
  background: rgba(0,255,204,0.1);
  box-shadow: 0 0 18px rgba(0,255,204,0.5), inset 0 0 12px rgba(0,255,204,0.1);
  color: #fff;
}

/* ---------- HERO CONTENT ---------- */
.hero {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.hero-logo {
  width: min(320px, 70vw);
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 0 20px rgba(0,255,204,0.3));
}

.hero-title {
  font-family: 'Orbitron', 'Share Tech Mono', monospace;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  color: #ffffff;
  text-shadow:
    0 0 10px var(--accent),
    0 0 30px rgba(0,255,204,0.4),
    0 0 60px rgba(0,255,204,0.15);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-family: 'Share Tech Mono', monospace;
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
  letter-spacing: 0.25em;
  color: var(--accent2);
  text-shadow: 0 0 12px rgba(255,0,170,0.5);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-line {
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 2rem auto 0;
}

/* ---------- INTRANET PAGE ---------- */
.intranet-wrap {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
}

.intranet-card {
  width: min(700px, 95vw);
  border: 1px solid var(--border);
  background: rgba(13, 13, 26, 0.85);
  padding: 3rem 2.5rem;
  box-shadow: 0 0 40px rgba(0,191,255,0.08), 0 0 1px var(--accent3);
  backdrop-filter: blur(4px);
}

.intranet-card::before {
  content: '// INTRANET — INTERN';
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--accent3);
  margin-bottom: 2rem;
  opacity: 0.6;
}

.intranet-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(0,191,255,0.5);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.intranet-section {
  margin-bottom: 2rem;
}

.intranet-section p {
  line-height: 1.8;
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 0.8rem;
}

.intranet-section p strong {
  color: var(--accent2);
}

.label-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent3);
  border: 1px solid var(--accent3);
  padding: 0.1rem 0.5rem;
  margin-bottom: 0.8rem;
  opacity: 0.7;
}

.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(0,255,204,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s, text-shadow 0.2s;
}

.pdf-link:hover {
  color: #fff;
  border-color: var(--accent);
  text-shadow: 0 0 10px var(--accent);
}

.pdf-link::before {
  content: '[PDF]';
  font-size: 0.7rem;
  opacity: 0.7;
  color: var(--accent2);
}

.print-notice {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-left: 2px solid var(--accent2);
  background: rgba(255,0,170,0.04);
  font-size: 0.85rem;
  color: #aab;
  line-height: 1.7;
}

.print-notice strong {
  color: var(--accent2) !important;
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.btn-elearning {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, rgba(0,255,204,0.08), rgba(0,191,255,0.08));
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 0 12px rgba(0,255,204,0.15);
}

.btn-elearning::before { content: '>> '; }

.btn-elearning:hover {
  background: rgba(0,255,204,0.15);
  box-shadow: 0 0 25px rgba(0,255,204,0.4);
  color: #fff;
  text-shadow: 0 0 8px var(--accent);
}

.intranet-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #3a4a5a;
  text-align: center;
}
