:root {
  --bg: #0c0a10;
  --bg-elevated: #14111c;
  --surface: #1b1724;
  --text: #f4f0ff;
  --muted: #9a92b0;
  --accent: #e8b84a;
  --accent-dim: rgba(232, 184, 74, 0.15);
  --border: rgba(255, 255, 255, 0.08);
  --danger: #f07178;
  --ok: #7fd99f;
  --radius: 14px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(120, 80, 200, 0.12), transparent),
    radial-gradient(900px 500px at 90% 20%, rgba(232, 184, 74, 0.08), transparent), var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #1a1205;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus {
  left: 1rem;
}

.demo-banner {
  margin: 0;
  padding: 0.55rem 1rem;
  background: var(--accent-dim);
  border-bottom: 1px solid rgba(232, 184, 74, 0.35);
  color: var(--accent);
  font-size: 0.82rem;
  text-align: center;
}

.demo-banner code {
  font-size: 0.78rem;
  padding: 0.1rem 0.35rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(12, 10, 16, 0.96), rgba(12, 10, 16, 0.85));
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo svg {
  display: block;
  color: rgba(255, 255, 255, 0.9);
}

.brand-film {
  opacity: 0.85;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand-accent {
  color: var(--accent);
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 1.25rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav a:hover {
  color: var(--text);
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 880px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding-top: 4.5rem;
  }
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--accent);
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.lede {
  margin: 0;
  color: var(--muted);
  max-width: 36ch;
  font-size: 1.05rem;
}

.hero-visual {
  position: relative;
  min-height: 200px;
}

.hero-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(232, 184, 74, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(120, 90, 200, 0.12), transparent 50%);
  border: 1px solid var(--border);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
  border-top: 1px solid var(--border);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 0.35rem;
}

.section-head .muted {
  margin: 0;
  color: var(--muted);
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.loading {
  grid-column: 1 / -1;
  color: var(--muted);
}

.movie-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease;
  text-align: left;
  color: inherit;
  font: inherit;
  padding: 0;
  width: 100%;
}

.movie-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 184, 74, 0.35);
}

.movie-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.movie-poster {
  aspect-ratio: 2 / 3;
  width: 100%;
  object-fit: cover;
  display: block;
}

.movie-body {
  padding: 1rem 1.1rem 1.15rem;
}

.movie-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.movie-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.steps {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  max-width: 52ch;
}
.steps li {
  margin-bottom: 0.65rem;
}
.steps strong {
  color: var(--text);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.25rem 2rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Modal */
.modal-root[hidden] {
  display: none;
}

.modal-root:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 8, 0.72);
  backdrop-filter: blur(6px);
}

.modal {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}
.modal-close:hover {
  color: var(--text);
}

.modal-movie {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .modal-movie {
    grid-template-columns: 140px 1fr;
    align-items: start;
  }
}

.modal-poster {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}

.modal-synopsis {
  color: var(--muted);
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.showtime-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.showtime-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.showtime-btn:hover {
  border-color: rgba(232, 184, 74, 0.4);
}

.showtime-btn small {
  color: var(--muted);
  font-size: 0.8rem;
}

.seat-section {
  margin-top: 1.25rem;
}

.seat-section h3 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.screen {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  padding: 0.4rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}

.seat-grid {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
}

.seat-row {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.row-label {
  width: 1.25rem;
  font-size: 0.7rem;
  color: var(--muted);
  text-align: center;
}

.seat {
  width: 28px;
  height: 24px;
  border-radius: 6px 6px 4px 4px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.65rem;
  cursor: pointer;
  padding: 0;
  color: var(--muted);
}
.seat:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--text);
}
.seat.taken {
  opacity: 0.35;
  cursor: not-allowed;
}
.seat.selected {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

.booking-form {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.booking-form input {
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.booking-form button[type="submit"] {
  margin-top: 0.25rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #c99a35, var(--accent));
  color: #1a1205;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
}
.booking-form button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.msg-error {
  color: var(--danger);
  font-size: 0.9rem;
  margin: 0;
}

.msg-success {
  background: rgba(127, 217, 159, 0.1);
  border: 1px solid rgba(127, 217, 159, 0.35);
  color: var(--ok);
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
}
.msg-success code {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

/* —— Platform (jobs dashboard) —— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-wide,
.footer-wide {
  max-width: 1200px;
}

.hero-platform {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem 3.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-glow-wide {
  min-height: 220px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}

.pillar-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.pillar-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.pillar-live {
  border-color: rgba(232, 184, 74, 0.35);
}

.market-details {
  max-width: 720px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 1rem;
}

.market-details summary {
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  list-style: none;
}

.market-details summary::-webkit-details-marker {
  display: none;
}

.market-body {
  padding: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.market-body a {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, #c99a35, var(--accent));
  color: #1a1205;
  border: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-block {
  width: 100%;
}

.screen-auth {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: var(--bg);
}

.auth-card {
  width: min(440px, 100%);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem 1.5rem 2rem;
}

.auth-back {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.auth-title {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0.75rem 0 0.35rem;
  font-size: 1.85rem;
}

.auth-lead {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-stack label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.form-stack input:not([type="radio"]),
.form-stack textarea,
.form-stack select {
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.form-stack textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.role-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.role-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--text);
  font-size: 0.95rem;
}

.dash-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

@media (max-width: 800px) {
  .dash-shell {
    grid-template-columns: 1fr;
  }
  .dash-sidebar {
    position: sticky;
    top: 0;
    z-index: 40;
  }
}

.dash-sidebar {
  background: var(--bg-elevated);
  border-right: 1px solid var(--border);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dash-brand .brand-name {
  font-size: 1rem;
}

.dash-user {
  font-size: 0.75rem;
  display: block;
  margin-top: 0.35rem;
}

.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.dash-link {
  text-align: left;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.dash-link:hover,
.dash-link.is-active {
  background: var(--surface);
  color: var(--text);
}

.dash-link-a {
  text-decoration: none;
  display: block;
}

.dash-main {
  padding: 1.5rem 1.5rem 3rem;
  max-width: 900px;
}

.dash-title {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
}

.dash-intro {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.dash-cards {
  display: grid;
  gap: 0.75rem;
}

.quick-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.quick-card:hover {
  border-color: rgba(232, 184, 74, 0.35);
}

.quick-card strong {
  font-size: 1rem;
}

.form-job .form-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1rem;
}

.form-job .span-2 {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .form-job .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-job textarea,
.form-job select,
.form-job input {
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  width: 100%;
}

.form-job label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.btn-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.sub-title {
  margin: 2rem 0 0.75rem;
  font-size: 1.1rem;
}

.sub-title-tight {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
}

.dashboard-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 0.5rem;
}

@media (max-width: 960px) {
  .dashboard-split {
    grid-template-columns: 1fr;
  }
}

.dash-section {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.15rem 1.25rem 1.35rem;
  background: rgba(12, 10, 22, 0.45);
}

.dash-section-hiring {
  border-left: 4px solid var(--accent);
}

.dash-section-applying {
  border-left: 4px solid #5ec9a8;
}

.dash-section-title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 0.75rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.data-table th,
.data-table td {
  padding: 0.6rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  color: var(--muted);
  font-weight: 600;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.btn-text {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  padding: 0;
}

.btn-danger {
  color: var(--danger);
}

.status-pill {
  font-size: 0.75rem;
  text-transform: capitalize;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  background: var(--surface);
}

.status-open {
  color: var(--ok);
}

.status-draft {
  color: var(--muted);
}

.status-achieved {
  color: var(--accent);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}

.filter-bar label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.filter-bar .grow {
  flex: 1 1 200px;
}

.input-grow {
  width: 100%;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.filter-bar select,
.filter-bar input {
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.filter-bar-tight {
  margin-bottom: 0.75rem;
}

.job-id-code {
  font-size: 0.78rem;
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  color: var(--muted);
}

/* —— Network & feed —— */
.feed-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.feed-composer {
  margin-bottom: 1.25rem;
}

.feed-composer textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  resize: vertical;
  min-height: 4.5rem;
}

.feed-composer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.feed-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.feed-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.35rem;
}

.feed-author {
  font-weight: 600;
}

.vis-pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
}

.vis-public {
  background: rgba(90, 140, 255, 0.22);
  color: var(--text);
}

.vis-network {
  background: rgba(232, 184, 74, 0.22);
  color: var(--text);
}

.vis-private {
  background: rgba(140, 140, 160, 0.28);
  color: var(--muted);
}

.feed-body {
  line-height: 1.55;
  margin: 0.5rem 0;
  word-break: break-word;
}

.feed-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.feed-comments-wrap {
  margin-top: 0.75rem;
}

.feed-comment {
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
}

.feed-comment-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.network-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .network-split {
    grid-template-columns: 1fr;
  }
}

.network-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.net-dir-results {
  max-height: 340px;
  overflow-y: auto;
  margin-top: 0.5rem;
}

.net-dir-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}

.net-dir-row:last-child {
  border-bottom: none;
}

.net-mini-list {
  margin-bottom: 0.75rem;
}

.engagement-card .stat-val {
  font-size: 1.35rem;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.75rem;
}

.net-section {
  margin-top: 1rem;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-card-open {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.job-card-open:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 184, 74, 0.35);
}

.job-card-open h4 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.job-card-open .small {
  font-size: 0.82rem;
}

.job-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.5rem 0;
}

.placeholder-block {
  color: var(--muted);
  line-height: 1.6;
  max-width: 56ch;
}

.applicant-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.applicant-list li {
  margin-bottom: 0.85rem;
}

.msg-inline-err {
  color: var(--danger);
}

.modal-wide {
  width: min(560px, 100%);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-val {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.dashboard-body {
  max-width: 720px;
}

.subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
}

.subtab {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.subtab.is-active {
  background: var(--accent-dim);
  border-color: rgba(232, 184, 74, 0.45);
  color: var(--accent);
}

.svc-section {
  margin-top: 0.5rem;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.svc-card:hover {
  border-color: rgba(232, 184, 74, 0.35);
  transform: translateY(-2px);
}

.svc-cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.inbox-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 720px;
}

.inbox-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}

.inbox-meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.inbox-body {
  white-space: pre-wrap;
  font-family: ui-monospace, monospace;
  font-size: 0.85rem;
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.input-inline {
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  max-width: 11rem;
}

.profile-pre {
  font-size: 0.72rem;
  max-height: 120px;
  overflow: auto;
  margin: 0;
  color: var(--muted);
}

.applicant-table-wrap {
  overflow-x: auto;
}

.slot-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.status-hold {
  color: #8ab4ff;
}

.status-shortlisted {
  color: var(--ok);
}

.status-rejected {
  color: var(--danger);
}

.ad-strip {
  margin-bottom: 1rem;
}

.ad-slider {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}

.ad-slides {
  display: flex;
  transition: transform 420ms ease;
}

.ad-slide {
  position: relative;
  min-width: 100%;
  text-decoration: none;
  color: var(--text);
}

.ad-slide img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.ad-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.7rem 0.85rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ad-overlay strong {
  font-size: 0.95rem;
}

.ad-overlay span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.ad-kind {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.68rem;
  padding: 0.12rem 0.45rem;
}

.ad-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.45);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  cursor: pointer;
}

.ad-prev {
  left: 0.6rem;
}

.ad-next {
  right: 0.6rem;
}

.ad-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.6rem;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.ad-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.ad-dot.is-active {
  background: var(--accent);
}

.chip {
  display: inline-block;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
  border: 1px solid var(--border);
  margin-right: 0.3rem;
}

.chip-cat {
  color: #9ad7ff;
  border-color: rgba(154, 215, 255, 0.3);
}

.chip-type {
  color: #c5b3ff;
  border-color: rgba(197, 179, 255, 0.3);
}

.chip-price {
  color: #8ff0b0;
  border-color: rgba(143, 240, 176, 0.35);
}

.top-trend-ticker,
.bottom-mini-ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: rgba(12, 10, 16, 0.95);
}

.bottom-mini-ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  border-top: 1px solid var(--border);
  border-bottom: none;
}

.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  min-width: 200%;
  animation: mmcTicker 28s linear infinite;
}

.ticker-item {
  display: inline-block;
  padding: 0.45rem 1.2rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.ticker-item strong {
  color: var(--accent);
}

@keyframes mmcTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.dash-shell {
  grid-template-columns: 240px minmax(0, 1fr) 300px;
}

.dash-news-sidebar {
  border-left: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 1rem;
}

.news-title {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: calc(100vh - 170px);
  overflow: auto;
}

.news-item {
  display: block;
  text-decoration: none;
  color: var(--text);
  font-size: 0.86rem;
  padding: 0.55rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.news-item:hover {
  border-color: rgba(232, 184, 74, 0.35);
}

.ratings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.rating-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.rating-card h4 {
  margin: 0 0 0.35rem;
}

.provider-ratings {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0;
  display: grid;
  gap: 0.3rem;
}

.provider-ratings li {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 0.2rem;
}

.provider-ratings strong {
  color: var(--accent);
}

.personal-score {
  margin: 0.5rem 0 0.8rem;
}

@media (max-width: 1080px) {
  .dash-shell {
    grid-template-columns: 240px 1fr;
  }
  .dash-news-sidebar {
    display: none;
  }
}

@media (max-width: 800px) {
  .bottom-mini-ticker {
    position: static;
  }
}
