/* ============================================================
   MATCHFOLIO — Design Tokens (identidade 2026 — logo 03)
============================================================ */
:root {
  /* Identidade Matchfolio v2.0 — Manual de Marca (julho/2026) */
  --color-primary:    #450291; /* Roxo Match — acao e profundidade */
  --color-primary-dark: #360173;
  --color-blue:       #0171DD; /* Azul Folio — leveza e evidencia */
  --color-blue-dark:  #015CB4;
  --color-bg:         #F4F3F9; /* Nuvem — fundo suave */
  --color-secondary:  #C9B6EE; /* lavanda derivada (apoio sobre roxo) */
  --color-accent:     #0171DD; /* links, estados interativos, icones */
  --color-cyan:       #06D5DF; /* apoio — categorias e realces */
  --color-yellow:     #F7FF99; /* apoio — destaques leves */
  --color-orange:     #FF922E; /* apoio — alertas e prazos */
  --color-highlight:  #F7FF99;
  --color-surface:    #FFFFFF;
  --color-text:       #1C1433; /* Tinta */
  --color-muted:      #5C5273;
  --color-border:     #E6E3F1;
  --gradient-match:   linear-gradient(135deg, #450291 0%, #0171DD 100%);

  --font-display: 'Krub', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;

  --shadow-card: 0 2px 12px rgba(28, 20, 51, 0.08);
  --shadow-card-hover: 0 4px 16px rgba(28, 20, 51, 0.14);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px; /* espaço para bottom nav mobile */
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: var(--space-2xl) 0; }
.section-alt { background: var(--color-surface); }

.text-center { text-align: center; }
.text-muted { color: var(--color-muted); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.hidden { display: none !important; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--color-primary); font-weight: 700; line-height: 1.25; }
h1 { font-size: 32px; }
h2 { font-size: 26px; }
h3 { font-size: 20px; }
h4 { font-size: 16px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

/* ============================================================
   HEADER / NAV
============================================================ */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--color-primary); }
.logo img { height: 26px; width: auto; display: block; }
.site-footer .logo img { height: 30px; }

.nav-links { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--color-primary); }

.perfil-toggle {
  display: inline-flex;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 3px;
}
.perfil-toggle button {
  border: none;
  background: transparent;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
}
.perfil-toggle button.active {
  background: var(--color-primary);
  color: var(--color-surface);
}

.header-actions { display: flex; align-items: center; gap: 12px; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: all 0.15s ease-out;
}
.btn-primary { background: var(--color-primary); color: var(--color-surface); }
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-secondary { background: transparent; border: 1.5px solid var(--color-primary); color: var(--color-primary); }
.btn-secondary:hover { background: rgba(69,2,145,0.06); }
.btn-blue { background: var(--color-blue); color: var(--color-surface); }
.btn-blue:hover { background: var(--color-blue-dark); }
.btn-highlight { background: var(--gradient-match); color: var(--color-surface); }
.btn-highlight:hover { filter: brightness(1.12); }
.btn-white { background: var(--color-surface); color: var(--color-primary); }
.btn-white:hover { background: #EFEAFA; }
.btn-block { width: 100%; }
.btn-sm { min-height: 36px; padding: 8px 16px; font-size: 13px; }
.btn:disabled { background: var(--color-border); color: var(--color-muted); cursor: not-allowed; }
.btn-ghost { background: transparent; color: var(--color-muted); border: 1px solid var(--color-border); }

/* ============================================================
   CARD
============================================================ */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
}

/* ============================================================
   TAG / BADGE / PILL
============================================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EBE6F7; /* lavanda clara */
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.tag-outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-muted);
}
.badge-highlight { background: var(--color-yellow); color: var(--color-text); }
.tag-cyan   { background: #D3F9FB; color: #075A5F; }
.tag-yellow { background: #F7FF99; color: #4A4A12; }
.tag-orange { background: #FFE4C7; color: #7A3F05; }

/* ============================================================
   HERO
============================================================ */
.hero { padding: 56px 0 48px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-2xl); align-items: center; }
.hero h1 { font-size: 40px; margin-bottom: var(--space-md); }
.hero p.lead { font-size: 17px; color: var(--color-muted); margin-bottom: var(--space-lg); max-width: 480px; }
.hero-ctas { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.hero-visual {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg);
  font-family: var(--font-display);
  font-size: 14px;
  padding: var(--space-lg);
  text-align: center;
}

/* ============================================================
   STATS STRIP
============================================================ */
.stats-strip {
  background: var(--gradient-match);
  color: var(--color-surface);
  padding: var(--space-xl) 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); text-align: center; }
.stat-value { font-family: var(--font-display); font-size: 30px; font-weight: 700; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.85); margin-top: 4px; }

/* ============================================================
   GRID / STEPS / DIFERENCIAIS
============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }

.step-card { text-align: left; }
.step-number {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  margin-bottom: var(--space-sm);
  border: 1px solid var(--color-border);
}
.diferencial-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: #E7F1FC;
  color: var(--color-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: var(--space-sm);
}

/* ============================================================
   CHALLENGE CARD
============================================================ */
.challenge-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: box-shadow 0.15s ease-out;
  position: relative;
}
.challenge-card::before {
  content: '';
  display: block;
  width: 56px; height: 4px;
  border-radius: var(--radius-pill);
  background: var(--gradient-match);
}
.challenge-card:hover { box-shadow: var(--shadow-card-hover); }
.challenge-company { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--color-muted); font-weight: 600; }
.challenge-company .company-logo {
  width: 24px; height: 24px; border-radius: 6px; background: var(--color-bg);
  display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--color-primary); font-weight: 700;
}
.challenge-card h3 { font-size: 17px; }
.challenge-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.challenge-meta { display: flex; justify-content: space-between; font-size: 13px; color: var(--color-muted); margin-top: 4px; }
.challenge-meta strong { color: var(--color-primary); }

.filter-bar { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-lg); }
.filter-bar select {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 13px;
  background: var(--color-surface);
  color: var(--color-text);
}

/* ============================================================
   TIMELINE
============================================================ */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: ''; position: absolute; left: 11px; top: 4px; bottom: 4px; width: 2px; background: var(--color-border);
}
.timeline-item { position: relative; padding-bottom: var(--space-lg); }
.timeline-item::before {
  content: ''; position: absolute; left: -28px; top: 2px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--color-cyan);
}
.timeline-item .timeline-title { font-weight: 700; font-size: 14px; }
.timeline-item .timeline-date { font-size: 12px; color: var(--color-muted); }

/* ============================================================
   RUBRIC / SCORE
============================================================ */
.rubric-row { margin-bottom: var(--space-md); }
.rubric-row-head { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.progress-bar { background: var(--color-border); border-radius: var(--radius-pill); height: 6px; overflow: hidden; }
.progress-bar-fill { background: var(--color-cyan); height: 100%; border-radius: var(--radius-pill); transition: width 0.4s ease-in-out; }
.rubric-row input[type="range"] { width: 100%; accent-color: var(--color-primary); }

/* ============================================================
   FORM
============================================================ */
.form-group { margin-bottom: var(--space-md); }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--color-primary); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-surface);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--color-primary); border-width: 2px;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: 12px; color: var(--color-muted); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.checkbox-row { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--color-muted); }

/* ============================================================
   AUTH CARD
============================================================ */
.auth-wrap { min-height: calc(100vh - 64px); display: flex; align-items: center; justify-content: center; padding: var(--space-2xl) 0; }
.auth-card { max-width: 420px; width: 100%; margin: 0 auto; }
.auth-tabs { display: flex; border: 1px solid var(--color-border); border-radius: var(--radius-pill); padding: 3px; margin-bottom: var(--space-lg); }
.auth-tabs button { flex: 1; border: none; background: transparent; padding: 10px; border-radius: var(--radius-pill); font-weight: 600; font-size: 14px; color: var(--color-muted); }
.auth-tabs button.active { background: var(--color-primary); color: var(--color-surface); }

/* ============================================================
   DASHBOARD LAYOUT (empresa)
============================================================ */
.dashboard-layout { display: grid; grid-template-columns: 240px 1fr; gap: var(--space-xl); align-items: start; }
.sidebar { position: sticky; top: 88px; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 500; color: var(--color-muted);
  margin-bottom: 4px;
}
.sidebar-nav a.active, .sidebar-nav a:hover { background: var(--color-surface); color: var(--color-primary); }
.summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-bottom: var(--space-xl); }
.summary-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-md); }
.summary-card .value { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--color-primary); }
.summary-card .label { font-size: 13px; color: var(--color-muted); }

.candidate-row {
  display: grid; grid-template-columns: 48px 1fr auto auto auto; gap: var(--space-md); align-items: center;
  padding: var(--space-md); background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); margin-bottom: var(--space-sm);
}
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--color-bg); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--color-primary); }

.status-select { border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 8px 12px; font-size: 13px; }

/* ============================================================
   FOTOS & AVATARES (identidade 2026 — protótipo V2)
============================================================ */
.avatar { position: relative; overflow: hidden; }
.avatar img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 50%;
}

/* Hero com foto */
.hero-visual.hero-foto { padding: 0; position: relative; overflow: hidden; }
.hero-visual.hero-foto > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-visual.hero-foto .hero-foto-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,20,51,0) 30%, rgba(28,20,51,0.85) 100%);
}
.hero-visual.hero-foto .hero-foto-badge {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  text-align: left;
  color: var(--color-text);
}
.hero-foto-badge .avatar { flex-shrink: 0; }
.hero-foto-badge strong { font-family: var(--font-display); font-size: 14px; color: var(--color-primary); display: block; }
.hero-foto-badge span { font-size: 12px; color: var(--color-muted); }

/* Bloco de vídeo de briefing */
.video-briefing {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--color-text); min-height: 260px;
}
.video-briefing > img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; display: block; opacity: 0.92; }
.video-briefing .vb-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.92); color: var(--color-text);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.video-briefing .vb-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.95); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  box-shadow: var(--shadow-card-hover);
}
.video-briefing .vb-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(180deg, rgba(36,21,51,0) 0%, rgba(36,21,51,0.75) 40%);
  padding: 24px 16px 14px; color: #fff;
}
.video-briefing .vb-caption strong { font-size: 14px; display: block; }
.video-briefing .vb-caption span { font-size: 12px; opacity: 0.8; }

/* Foto institucional (prova social) */
.foto-institucional {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.foto-institucional img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   AUTH SPLIT (login/onboarding — prototipo V2)
============================================================ */
.auth-split { display: grid; grid-template-columns: 1fr 1.1fr; min-height: calc(100vh - 65px); }
.auth-story { display: flex; flex-direction: column; }
.auth-story .story-foto { position: relative; flex: 1 1 52%; min-height: 300px; overflow: hidden; }
.auth-story .story-foto img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.auth-story .story-text { flex: 1 1 48%; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.auth-story .story-text h2 { font-size: 34px; line-height: 1.2; margin: 12px 0; }
.auth-story .story-text p { font-size: 15px; max-width: 380px; }
.auth-story--candidato .story-text { background: #E4DDF3; }
.auth-story--candidato .story-text h2 { color: var(--color-primary); }
.auth-story--candidato .story-text p { color: var(--color-muted); }
.auth-story--empresa .story-text { background: var(--color-primary); }
.auth-story--empresa .story-text h2, .auth-story--empresa .story-text p { color: var(--color-surface); }
.auth-story--empresa .story-text p { opacity: 0.85; }
.onboarding-pill {
  display: inline-flex; align-self: flex-start;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius-pill);
  background: var(--color-text); color: var(--color-surface);
}
.auth-form-col { display: flex; align-items: flex-start; justify-content: center; padding: 48px 24px; background: var(--color-surface); }
.auth-form { width: 100%; max-width: 420px; }
.auth-form h2 { font-size: 24px; }
.auth-form .form-sub { font-size: 14px; color: var(--color-muted); margin-bottom: var(--space-lg); }
.auth-links { text-align: center; font-size: 13px; color: var(--color-muted); margin-top: var(--space-lg); }
.auth-links a { color: var(--color-blue); font-weight: 500; }
.upload-box {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: var(--space-md);
}
.upload-box .upload-slot {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--color-bg); border: 1px dashed var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-muted); font-size: 18px; cursor: pointer;
}
.upload-box .upload-hint { font-size: 12px; color: var(--color-muted); }
.upload-box .upload-hint a { color: var(--color-blue); font-weight: 600; }
.section-label {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--color-primary); margin: var(--space-lg) 0 var(--space-md);
}
.section-label::before { content: ''; width: 4px; height: 18px; border-radius: 2px; background: var(--gradient-match); }

/* Etapas do desafio (fluxo da landing) */
.steps-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-md); counter-reset: etapa; }
.step-flow-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-md);
}
.step-flow-card .step-number { background: var(--gradient-match); color: var(--color-surface); border: none; }
.step-flow-card h4 { font-size: 14px; margin-bottom: 4px; }
.step-flow-card p { font-size: 12px; color: var(--color-muted); line-height: 1.5; }
.step-flow-card .tag { margin-top: 8px; }

/* Destaques do premio */
.stake-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.stake-card { text-align: center; padding: var(--space-lg) var(--space-md); }
.stake-card i { font-size: 22px; color: var(--color-blue); margin-bottom: 8px; }
.stake-card h4 { font-size: 14px; }
.stake-card p { font-size: 12px; color: var(--color-muted); }

@media (max-width: 900px) {
  .auth-split { grid-template-columns: 1fr; }
  .auth-story { display: none; }
  .steps-flow { grid-template-columns: 1fr 1fr; }
  .stake-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   EMPTY STATE
============================================================ */
.empty-state { text-align: center; padding: var(--space-2xl) var(--space-md); color: var(--color-muted); }
.empty-state i { font-size: 32px; color: var(--color-secondary); margin-bottom: var(--space-md); }

/* ============================================================
   TOAST
============================================================ */
.toast {
  position: fixed; bottom: 88px; left: 50%; transform: translateX(-50%);
  background: var(--color-primary); color: var(--color-surface);
  padding: 12px 20px; border-radius: var(--radius-md); font-size: 14px;
  box-shadow: var(--shadow-card-hover); z-index: 999;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease-out;
}
.toast.show { opacity: 1; }

/* ============================================================
   BOTTOM NAV (mobile)
============================================================ */
.bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--color-surface); border-top: 1px solid var(--color-border);
  height: 64px; z-index: 100;
  justify-content: space-around; align-items: center;
}
.bottom-nav a { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 11px; color: var(--color-muted); }
.bottom-nav a.active { color: var(--color-primary); }
.bottom-nav a.active i { color: var(--color-primary); }

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--color-primary); color: var(--color-bg); padding: var(--space-2xl) 0 var(--space-lg); }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-lg); margin-bottom: var(--space-xl); }
.site-footer a { color: rgba(255,255,255,0.75); font-size: 13px; }
.site-footer a:hover { color: var(--color-surface); }
.footer-bottom { font-size: 12px; color: rgba(255,255,255,0.65); border-top: 1px solid rgba(255,255,255,0.15); padding-top: var(--space-md); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 860px) {
  .hero-grid, .form-row, .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .summary-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .candidate-row { grid-template-columns: 40px 1fr; }
  .bottom-nav { display: flex; }
  body { padding-bottom: 72px; }
}
