/* WERISTO BRAND CSS — shared cyberpunk styling for product landings
   Used by: mzp.services, qrjob.eu, weri.work, shift.weristo.de
   Version: 1.0 (2026-05-03)
*/
:root {
  --cyan: #00e5ff;
  --cyan-dim: rgba(0,229,255,0.15);
  --purple: #7c3aed;
  --bg: #0a0a0f;
  --bg2: #0d1117;
  --bg3: #1a1a2e;
  --card: rgba(255,255,255,0.04);
  --border: rgba(0,229,255,0.18);
  --border2: rgba(255,255,255,0.08);
  --text: #e0e0e0;
  --muted: #8b949e;
  --red: #ff0040;
  --green: #10b981;
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border2);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  font-family: 'Orbitron', monospace;
  font-size: 22px;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: 3px;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(0,229,255,0.3);
}
.lang-switch { display: flex; gap: 4px; }
.lang-switch button {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Orbitron', monospace;
  letter-spacing: 1px;
}
.lang-switch button:hover, .lang-switch button.active {
  background: var(--cyan-dim);
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ─── CONTAINER + LAYOUT ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HERO ─── */
.hero {
  text-align: center;
  padding: 60px 24px 40px;
  max-width: 980px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: '◆'; opacity: 0.5; margin: 0 10px; }
.hero h1, h1 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.accent {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Orbitron', monospace;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 28px rgba(0,229,255,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0,229,255,0.45); }
.btn-ghost {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-family: 'Orbitron', monospace;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-ghost:hover { background: var(--cyan-dim); }
.hero-visual {
  margin: 0 auto;
  max-width: 760px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0,229,255,0.04), transparent);
  position: relative;
  overflow: hidden;
}

/* ─── SECTIONS ─── */
section { padding: 60px 24px; }
.section-title, h2 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(24px, 4vw, 38px);
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  font-weight: 700;
  line-height: 1.2;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
h3 {
  font-family: 'Orbitron', monospace;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}

/* ─── VALUE GRID ─── */
.value-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%); }
.value-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.value-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 28px 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.value-card:hover { border-color: var(--border); transform: translateY(-3px); }
.value-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 14px;
}
.value-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ─── WAITLIST FORM ─── */
.waitlist-section { background: var(--bg2); }
.form-wrap {
  max-width: 520px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
}
.form-field {
  display: block;
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.2s;
}
.form-field:focus { border-color: var(--cyan); }
.form-sub {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}
.form-success {
  display: none;
  text-align: center;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid var(--cyan);
  border-radius: 10px;
  padding: 14px;
  margin-top: 12px;
  font-size: 14px;
}
.form-success.show { display: block; }
.consent-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0 14px;
}
.consent-row input[type="checkbox"] { margin-top: 3px; cursor: pointer; }
.consent-row a { color: var(--cyan); text-decoration: none; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border2);
  padding: 32px 24px 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--muted);
}
.footer-logo {
  font-family: 'Orbitron', monospace;
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 2px;
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }

/* ─── MZP-specific (map hero) ─── */
.map-hero {
  height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
}

/* ─── QR-specific (flow visual) ─── */
.qr-hero {
  background: linear-gradient(135deg, rgba(0,229,255,0.05), rgba(124,58,237,0.05));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.qr-block { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.qr-svg {
  width: 140px; height: 140px;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
}
.qr-label { font-family: 'Orbitron', monospace; font-size: 11px; color: var(--cyan); letter-spacing: 2px; }
.qr-flow { display: flex; flex-direction: column; gap: 10px; }
.qr-step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 14px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text);
}
.qr-step.done { border-color: var(--cyan); background: var(--cyan-dim); }
.step-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--bg);
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 700px) { .qr-hero { grid-template-columns: 1fr; } }

/* ─── Weri-specific (chat bubbles) ─── */
.chat-bubbles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}
.bubble {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  animation: bubbleIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
.bubble.user { flex-direction: row-reverse; }
.bubble-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.bubble.ai .bubble-avatar { background: var(--cyan-dim); color: var(--cyan); }
.bubble.user .bubble-avatar { background: var(--purple); color: #fff; border-color: var(--purple); }
.bubble-text {
  max-width: 280px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
}
.bubble.ai .bubble-text { background: rgba(0,229,255,0.08); border: 1px solid var(--border); color: var(--text); }
.bubble.user .bubble-text { background: var(--purple); color: #fff; font-weight: 500; }
.cursor {
  display: inline-block; width: 2px; height: 1em;
  background: var(--cyan);
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
  margin-left: 2px;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes bubbleIn { from { opacity: 0; transform: scale(0.95) translateY(8px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.bubble:nth-child(1) { animation-delay: 0.2s; }
.bubble:nth-child(2) { animation-delay: 0.7s; }
.bubble:nth-child(3) { animation-delay: 1.4s; }

/* ─── JobShift-specific (calendar) ─── */
.shift-cal {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.cal-header {
  display: grid;
  grid-template-columns: 140px repeat(7, 1fr);
  background: var(--bg2);
  border-bottom: 1px solid var(--border2);
}
.cal-header > div {
  padding: 10px;
  text-align: center;
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cal-row {
  display: grid;
  grid-template-columns: 140px repeat(7, 1fr);
  border-bottom: 1px solid var(--border2);
}
.cal-row:last-child { border-bottom: none; }
.cal-name {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
  border-right: 1px solid var(--border2);
  display: flex; align-items: center;
}
.cal-cell {
  padding: 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Orbitron', monospace;
}
.shift-m { background: rgba(0,229,255,0.15); color: var(--cyan); }
.shift-e { background: rgba(124,58,237,0.15); color: #a78bfa; }
.shift-n { background: rgba(255,229,0,0.1); color: #fbbf24; }
.shift-off { color: var(--muted); }
.cal-legend {
  display: flex;
  gap: 14px;
  justify-content: center;
  padding: 14px;
  background: var(--bg2);
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}
.leg-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 3px;
  margin-right: 5px;
  vertical-align: middle;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 700px) {
  nav { padding: 12px 16px; }
  .hero { padding: 36px 16px 28px; }
  section { padding: 40px 16px; }
  .cta-group { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .cal-header, .cal-row { grid-template-columns: 90px repeat(7, minmax(36px, 1fr)); font-size: 10px; }
  .cal-name { padding: 8px; font-size: 11px; }
}
