:root {
  --bg: #080b10;
  --panel: #10161f;
  --panel-2: #151d29;
  --line: rgba(255,255,255,.1);
  --text: #f5f8ff;
  --muted: #9aa8bb;
  --electric: #6d8cff;
  --cyan: #00d4ff;
  --hot: #ff2f7d;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 30% 0%, rgba(109,140,255,.25), transparent 34rem),
    radial-gradient(circle at 90% 20%, rgba(0,212,255,.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.gm-nav {
  background: rgba(15, 20, 28, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.navbar .nav-link { color: var(--muted); font-weight: 700; font-size: .9rem; }
.navbar .nav-link:hover { color: var(--text); }
.brand-mark {
  color: var(--text);
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none;
}
.brand-mark::before {
  content: "▧";
  color: var(--electric);
  margin-right: .55rem;
}

.btn-electric {
  color: white;
  border: 0;
  background: linear-gradient(135deg, var(--electric), var(--hot));
  box-shadow: 0 12px 30px rgba(109,140,255,.25);
  font-weight: 800;
}
.btn-electric:hover { color: white; filter: brightness(1.08); }
.form-control, .form-select {
  background: #0b1119;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
}
.form-control:focus, .form-select:focus {
  background: #0b1119;
  color: var(--text);
  border-color: var(--electric);
  box-shadow: 0 0 0 .25rem rgba(109,140,255,.16);
}

.hero-section { padding: 7rem 0 5rem; overflow: hidden; }
.eyebrow {
  color: var(--cyan);
  display: inline-block;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero-section h1, .dash-header h1 {
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  font-weight: 950;
  line-height: .92;
  max-width: 12ch;
}
.lead { color: var(--muted); max-width: 58ch; }
.hero-console {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(21,29,41,.96), rgba(8,11,16,.96)),
    repeating-linear-gradient(0deg, transparent, transparent 22px, rgba(255,255,255,.03) 23px);
  padding: 1rem;
  position: relative;
  box-shadow: 0 40px 90px rgba(0,0,0,.45);
}
.console-top {
  height: 220px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(109,140,255,.24), rgba(255,47,125,.1)), #05070b;
}
.match-card {
  background: white;
  color: #0c1220;
  border-radius: 8px;
  margin: -70px 1.2rem 1rem;
  padding: 1.4rem;
  position: relative;
}
.match-card span { color: #5a6a80; font-weight: 800; text-transform: uppercase; font-size: .75rem; }
.match-card strong { display: block; font-size: 4rem; line-height: 1; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.metric-grid div, .feature, .panel, .job-card {
  background: rgba(16,22,31,.88);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.metric-grid div { padding: 1rem; }
.metric-grid b { display: block; font-size: 1.45rem; }
.metric-grid small, .feature p, .job-card p, .auth-card p, .feed-row p, .empty-state { color: var(--muted); }

.section-band { padding: 4rem 0 6rem; }
.feature { min-height: 230px; padding: 1.5rem; }
.feature span { color: var(--electric); font-weight: 950; }
.feature h3 { margin-top: 3rem; font-weight: 900; }
.gm-footer { border-top: 1px solid var(--line); color: var(--muted); padding: 2rem 0; background: #05070a; }

.auth-body { min-height: 100vh; display: grid; place-items: center; padding: 1.5rem; }
.auth-shell { width: min(460px, 100%); }
.auth-shell.wide { width: min(820px, 100%); }
.auth-card, .panel {
  background: rgba(16,22,31,.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 35px 80px rgba(0,0,0,.4);
}
.auth-card h1, .panel h2 { font-weight: 950; }
.small-link { display: inline-block; color: var(--cyan); margin-top: 1rem; text-decoration: none; }
.form-feedback { color: var(--muted); font-weight: 700; }
.form-feedback.is-ok { color: #40ffaa; }
.form-feedback.is-error { color: #ff6b8f; }
.form-hint { color: var(--muted); display: inline-block; margin-top: .35rem; }

.dashboard { min-height: 80vh; }
.dash-header { margin-bottom: 2rem; }
.dash-header h1 { max-width: 16ch; font-size: clamp(2.4rem, 5vw, 4.8rem); }
.dashboard-note {
  color: var(--muted);
  max-width: 60ch;
  margin-top: 1rem;
}
.dashboard-tabs {
  border-bottom: 1px solid var(--line);
  gap: .5rem;
  margin-bottom: 1rem;
}
.dashboard-tabs .nav-link {
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  color: var(--muted);
  font-weight: 850;
  padding: .8rem 1rem;
}
.dashboard-tabs .nav-link:hover {
  color: var(--text);
  border-color: rgba(109,140,255,.35);
}
.dashboard-tabs .nav-link.active {
  background: rgba(16,22,31,.94);
  color: var(--text);
  border-color: var(--line);
  box-shadow: inset 0 3px 0 var(--electric);
}
.tab-content > .panel {
  border-top-left-radius: 0;
}
.panel-intro {
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 62ch;
}
.job-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.job-card { padding: 1.35rem; display: flex; flex-direction: column; gap: 1rem; }
.job-image {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(109,140,255,.28), rgba(255,47,125,.16));
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  display: grid;
  font-weight: 950;
  object-fit: cover;
  place-items: center;
  width: 100%;
}
.job-card span { color: var(--cyan); font-weight: 900; font-size: .8rem; }
.job-card h2 { font-size: 1.35rem; font-weight: 900; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chips b, .feed-row span {
  background: rgba(109,140,255,.14);
  color: #cfd8ff;
  border: 1px solid rgba(109,140,255,.25);
  border-radius: 999px;
  padding: .35rem .7rem;
  font-size: .8rem;
}
.feed-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.feed-row small { grid-column: 1 / -1; color: var(--muted); }
.empty-state { padding: 1.2rem; border: 1px dashed var(--line); border-radius: 8px; }

@media (max-width: 768px) {
  .hero-section { padding-top: 4rem; }
  .hero-section h1 { font-size: 3rem; }
  .hero-console { min-height: auto; }
  .metric-grid, .feed-row { grid-template-columns: 1fr; }
  .auth-card, .panel { padding: 1.25rem; }
}
