*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: #f7fbff; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

:root {
  --bg: #f7fbff;
  --bg2: #ffffff;
  --bg3: #eff8ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --border: rgba(14, 34, 54, 0.12);
  --border-strong: rgba(14, 34, 54, 0.22);
  --text: #102033;
  --text-muted: #51647b;
  --text-faint: #8796a8;
  --cyan: #29d8e8;
  --cyan-soft: #d7fbff;
  --pink: #ff7ac8;
  --pink-soft: #ffe0f2;
  --yellow: #ffe66d;
  --green: #21c78f;
  --orange: #ff9f43;
  --red: #ff5f7e;
  --accent: #00bfd6;
  --accent-hover: #009fb3;
  --accent-light: rgba(41, 216, 232, 0.16);
  --accent-2: #ff7ac8;
  --radius: 8px;
  --radius-sm: 6px;
  --shadow: 0 18px 50px rgba(41, 216, 232, 0.16), 0 10px 24px rgba(16, 32, 51, 0.08);
  --shadow-soft: 0 10px 30px rgba(16, 32, 51, 0.08);
  --sans: "Inter", "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", "Geist Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --gutter: clamp(14px, 2.2vw, 40px);
  --max: 1680px;
}

body {
  min-height: 100vh;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(41, 216, 232, 0.18) 0 20%, transparent 20% 100%),
    linear-gradient(315deg, rgba(255, 122, 200, 0.18) 0 18%, transparent 18% 100%),
    radial-gradient(circle at 12% 18%, rgba(255, 230, 109, 0.55), transparent 24%),
    radial-gradient(circle at 78% 8%, rgba(41, 216, 232, 0.28), transparent 26%),
    radial-gradient(circle at 80% 78%, rgba(255, 122, 200, 0.22), transparent 28%),
    var(--bg);
  background-attachment: fixed;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  z-index: 0;
  background-image:
    linear-gradient(rgba(16, 32, 51, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 51, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

body > * { position: relative; z-index: 1; }
::selection { background: var(--pink); color: #ffffff; }
:focus-visible { outline: 3px solid rgba(255, 122, 200, 0.55); outline-offset: 3px; }
button, select, input, .btn-search, .btn-apply, .header-link, .nav-link { min-height: 0; }
[hidden] { display: none !important; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  background: rgba(247, 251, 255, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03), 0 12px 24px -22px rgba(15, 23, 42, 0.18);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-inner > .site-nav {
  margin-left: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  grid-column: 1;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  grid-column: 1;
  color: inherit;
  text-decoration: none;
}

.logo-link .logo {
  grid-column: auto;
}

.logo-img {
  height: clamp(36px, 4.4vw, 48px);
  width: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
@media (max-width: 768px) {
  .logo-img { height: 34px; }
}

.header-actions {
  grid-column: 4;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-link,
.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.header-link:hover,
.back-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 122, 200, 0.55);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(255, 122, 200, 0.16);
}

.header-link-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 999px;
  color: var(--text);
  background: transparent;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.header-link-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.38);
  background: rgba(15, 23, 42, 0.04);
}

.header-link-ghost.active {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.28);
}

.overview-section {
  padding: clamp(24px, 3.6vw, 48px) var(--gutter) 16px;
  overflow: hidden;
}

.overview-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(320px, 0.48fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: stretch;
}

.overview-copy {
  max-width: 780px;
  align-self: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(41, 216, 232, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #077e8e;
  font-size: 12px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(33, 199, 143, 0.14);
}

.overview-copy h1 {
  font-family: var(--display);
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--text);
  max-width: 16ch;
}

.overview-copy h1 em,
.overview-copy h1 i {
  font-style: normal;
  color: transparent;
  background: linear-gradient(95deg, #00b8d0, #ff66be 60%, #ffb300);
  -webkit-background-clip: text;
  background-clip: text;
}

.overview-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-content: end;
}

.metric {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.metric-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.metric-value {
  display: block;
  font-family: var(--display);
  font-size: clamp(27px, 3.5vw, 42px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--text);
  font-feature-settings: "tnum";
}

.search-section {
  padding: 12px var(--gutter) 14px;
}

.search-box {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.search-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(220px, 0.8fr) minmax(140px, auto);
  gap: 10px;
  align-items: stretch;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: rotate(45deg);
}

.search-input-wrap:nth-child(2) .search-icon {
  border-radius: 12px 12px 12px 3px;
  border-color: var(--pink);
  transform: rotate(-45deg);
}

.search-input-wrap:nth-child(2) .search-icon::after {
  inset: 4px auto auto 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  transform: rotate(45deg);
}

.search-input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px 0 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
  outline: none;
  font-size: 16px;
  font-weight: 650;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.search-input:focus {
  border-color: rgba(41, 216, 232, 0.7);
  box-shadow: 0 0 0 4px rgba(41, 216, 232, 0.14);
}

.search-input::placeholder {
  color: var(--text-faint);
  font-weight: 520;
}

.btn-search,
.btn-apply,
.btn-apply-large {
  color: #082336;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  border: 0;
  box-shadow: 0 12px 26px rgba(41, 216, 232, 0.24);
}

.btn-search {
  min-height: 56px;
  padding: 0 24px;
  border-radius: var(--radius);
  color: #082336;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.btn-search:hover,
.btn-apply:hover,
.btn-apply-large:hover {
  filter: saturate(1.06) brightness(1.02);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(255, 122, 200, 0.22), 0 10px 24px rgba(41, 216, 232, 0.18);
}

.btn-search:active,
.btn-apply:active,
.btn-apply-large:active {
  transform: translateY(0) scale(0.99);
}

.quick-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.quick-filters::before {
  content: "Suggestions";
  align-self: center;
  margin-right: 2px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
}

.quick-filters button,
.source-pill,
.filter-chip,
.tag,
.meta-pill,
.source-badge-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.quick-filters button:nth-child(odd),
.tag:nth-child(odd) { background: var(--cyan-soft); border-color: rgba(41, 216, 232, 0.28); }
.quick-filters button:nth-child(even),
.tag:nth-child(even) { background: var(--pink-soft); border-color: rgba(255, 122, 200, 0.28); }
.quick-filters button:hover,
.source-pill:hover,
.filter-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(16, 32, 51, 0.2);
}

.filters-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr)) auto;
  align-items: stretch;
  gap: 10px;
  margin-top: 14px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-group label {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.filter-group select {
  width: 100%;
  min-height: 42px;
  padding: 0 34px 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(45deg, transparent 50%, var(--text-muted) 50%) calc(100% - 16px) 18px / 6px 6px no-repeat,
    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%) calc(100% - 11px) 18px / 6px 6px no-repeat,
    #ffffff;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  outline: none;
  appearance: none;
}

.filter-group select:focus {
  border-color: rgba(255, 122, 200, 0.62);
  box-shadow: 0 0 0 4px rgba(255, 122, 200, 0.12);
}

.btn-clear-filters {
  align-self: flex-end;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  border: 1px solid rgba(255, 122, 200, 0.34);
  background: var(--pink-soft);
  color: #9c286d;
}

.btn-clear-filters::before { content: "x"; font-family: var(--mono); }
.btn-clear-filters:hover { background: #ffd3eb; }

.stats-section {
  padding: 0 var(--gutter) 8px;
}

.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--text-muted);
}

.stat-item {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #086b79;
  background: rgba(215, 251, 255, 0.88);
  font-size: 12px;
  font-weight: 900;
}

.sources-pills {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.source-pill.active {
  border-color: rgba(41, 216, 232, 0.26);
  background: rgba(255, 255, 255, 0.78);
}

.main-content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter) 70px;
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

#resultsCount {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: -0.045em;
}

#resultsCount:empty::before {
  content: "Toutes les offres";
  color: var(--text);
}

.active-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-chip {
  border-color: rgba(255, 122, 200, 0.28);
  background: var(--pink-soft);
}

.chip-remove {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #9c286d;
  line-height: 1;
}

.chip-remove:hover { background: rgba(255, 122, 200, 0.22); }

mark.highlight {
  background: linear-gradient(transparent 48%, rgba(255, 230, 109, 0.72) 48%);
  color: inherit;
  padding: 0 2px;
  border-radius: 3px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

.job-card {
  position: relative;
  min-height: 196px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 26px rgba(16, 32, 51, 0.06);
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.job-card:focus-visible {
  outline: 3px solid rgba(255, 122, 200, 0.55);
  outline-offset: 3px;
}

.job-card:hover {
  transform: translateY(-4px);
  border-color: rgba(41, 216, 232, 0.45);
  box-shadow: var(--shadow);
  background: #ffffff;
}

/* ===== Offre déjà vue ===== */
.job-card.is-seen {
  border-color: rgba(100, 116, 139, 0.22);
  box-shadow: none;
}

.job-card.is-seen::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(248, 250, 252, 0.44);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.job-card.is-seen::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(100, 116, 139, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(135deg, transparent 50%, rgba(100, 116, 139, 0.08) 50%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.job-card.is-seen .job-card-header::after {
  content: "";
  position: absolute;
  top: 21px;
  right: 20px;
  z-index: 3;
  width: 9px;
  height: 5px;
  border-left: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: rotate(-45deg);
  pointer-events: none;
}

.job-card.is-seen:hover::before,
.job-card.is-seen:hover::after,
.job-card.is-seen:hover .job-card-header::after {
  opacity: 0;
}

.job-card-header {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  min-width: 0;
}

.company-logo-wrap {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cyan-soft), var(--pink-soft));
}

.company-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  background: #ffffff;
  image-rendering: -webkit-optimize-contrast;
}

.company-logo-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #0d6b7b;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 900;
}

.job-card-info { flex: 1; min-width: 0; }

.job-title {
  margin-bottom: 6px;
  color: var(--text);
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.14;
  font-weight: 850;
  letter-spacing: -0.035em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-company {
  margin-bottom: 8px;
  color: #008da0;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.job-meta {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.job-location,
.job-contract {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--text-muted);
  background: var(--bg3);
  font-size: 12px;
  font-weight: 750;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.job-contract {
  color: #9c286d;
  background: var(--pink-soft);
}

.job-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.tag {
  min-height: 26px;
  padding: 4px 9px;
  font-size: 11px;
}

.job-card-footer {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.job-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
  min-width: 0;
}

.job-date {
  min-width: 0;
  flex: 1 1 auto;
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-apply {
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #082336;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.loading-state,
.empty-state {
  grid-column: 1 / -1;
  min-height: 280px;
  padding: 56px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.spinner,
.spinner-sm {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(41, 216, 232, 0.2);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.spinner-sm {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-width: 2px;
  vertical-align: middle;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-state p {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
}

.empty-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cyan-soft), var(--pink-soft));
  color: transparent;
  font-size: 0 !important;
}

.empty-icon::before {
  content: "?";
  color: #0d6b7b;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 900;
}

.empty-state h3 {
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -0.035em;
  color: var(--text);
}

.empty-state p { max-width: 44ch; }
.empty-state code {
  padding: 2px 6px;
  border-radius: 5px;
  background: var(--bg3);
  font-family: var(--mono);
  font-size: 12px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.page-btn,
.nav-btn {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.page-btn:hover:not(:disabled),
.nav-btn:hover:not(.disabled) {
  transform: translateY(-1px);
  border-color: rgba(41, 216, 232, 0.5);
}

.page-btn.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  color: #082336;
}

.page-btn:disabled,
.nav-btn.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pagination > span {
  color: var(--text-muted);
  font-weight: 800;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  max-width: min(380px, calc(100vw - 40px));
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
  box-shadow: var(--shadow);
  font-weight: 800;
  animation: slideIn 0.24s ease both;
}

.toast.success { border-color: rgba(33, 199, 143, 0.35); }
.toast.error { border-color: rgba(255, 95, 126, 0.38); }

@keyframes slideIn {
  from { transform: translateY(12px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Shared detail page polish */
.job-detail-page {
  max-width: 920px !important;
  padding: 28px var(--gutter) 80px !important;
}

.job-detail-card {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.88) !important;
}

.job-detail-title {
  font-family: var(--display);
  letter-spacing: -0.035em;
}

.job-detail-company { color: #008da0 !important; }
.desc-preview { background: var(--bg3) !important; border-left-color: var(--pink) !important; }

@media (prefers-reduced-motion: no-preference) {
  .overview-copy,
  .overview-metrics,
  .search-box,
  .job-card {
    animation: rise 0.5s ease both;
  }
  .overview-metrics { animation-delay: 0.08s; }
  .search-box { animation-delay: 0.12s; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .logo,
  .logo-link { grid-column: 1; justify-self: start; }
  .header-actions { grid-column: 2; }
  .overview-inner { grid-template-columns: 1fr; align-items: start; }
  .overview-copy h1 { max-width: 18ch; }
  .overview-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric { padding: 14px; }
  .metric-value { font-size: 28px; }
  .search-row { grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr); }
  .btn-search { grid-column: 1 / -1; }
  .filters-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .btn-clear-filters { width: 100%; justify-content: center; align-self: stretch; }
}

@media (max-width: 760px) {
  .header-inner { padding-top: 10px; padding-bottom: 10px; }
  .overview-section { padding-top: 26px; }
  .overview-copy h1 { font-size: clamp(34px, 11vw, 52px); max-width: 12.5ch; }
  .overview-metrics { grid-template-columns: 1fr; }
  .search-row { grid-template-columns: 1fr; }
  .btn-search { width: 100%; justify-content: center; }
  .filters-row { display: grid; grid-template-columns: 1fr; }
  .btn-clear-filters { width: 100%; justify-content: center; align-self: stretch; }
  .stats-inner { align-items: flex-start; }
  .jobs-grid { grid-template-columns: 1fr; }
  .job-card-footer { align-items: flex-start; flex-direction: column; }
  .job-actions {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    justify-content: stretch;
  }
  .btn-apply { padding-left: 12px; padding-right: 12px; }
  .toast { left: 14px; right: 14px; bottom: 14px; max-width: none; }
}

@media (max-width: 430px) {
  :root { --gutter: 14px; }
  .header-actions .header-link { padding-left: 10px; padding-right: 10px; }
  .overview-copy h1 { letter-spacing: -0.055em; }
  .quick-filters::before { flex-basis: 100%; }
  .search-box { border-radius: 12px; }
  .search-input { min-height: 52px; font-size: 15px; }
  .job-card { padding: 15px; }
  .company-logo-wrap { width: 44px; height: 44px; }
  .pagination {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .page-btn {
    flex: 0 0 auto;
    min-width: 34px;
    padding: 7px 10px;
  }
}

/* Professional public site refresh */
body:not(.page-monitor) {
  --bg: #f6f7f9;
  --bg2: #ffffff;
  --bg3: #eef1f5;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --border: rgba(15, 23, 42, 0.11);
  --border-strong: rgba(15, 23, 42, 0.2);
  --text: #101828;
  --text-muted: #586174;
  --text-faint: #858d9d;
  --cyan: #1f6feb;
  --cyan-soft: #eef5ff;
  --pink: #7c3aed;
  --pink-soft: #f4f1ff;
  --yellow: #f2c94c;
  --green: #17a56b;
  --accent: #1f6feb;
  --accent-hover: #1759c7;
  --accent-light: rgba(31, 111, 235, 0.1);
  --accent-2: #0f172a;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.06);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: #f6f7f9;
}

body:not(.page-monitor)::before {
  display: none;
}

body:not(.page-monitor) .header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03), 0 14px 36px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

body:not(.page-monitor) .header-inner {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  min-height: 72px;
  padding-top: 6px;
  padding-bottom: 6px;
  gap: clamp(12px, 1.7vw, 24px);
  align-items: center;
}

body:not(.page-monitor) .logo-link {
  min-width: 0;
  padding: 4px 0;
}

body:not(.page-monitor) .logo {
  position: relative;
  min-width: 0;
}

body:not(.page-monitor) .logo-img {
  height: clamp(58px, 5.4vw, 76px);
  max-width: min(260px, 30vw);
  object-fit: contain;
  object-position: left center;
  transition: transform 0.22s ease, filter 0.22s ease;
}
body:not(.page-monitor) .logo-link:hover .logo-img {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 6px 14px rgba(15, 23, 42, 0.12));
}

.header-tagline {
  grid-column: 2;
  justify-self: start;
  font-family: "Caveat", "Bradley Hand", "Segoe Script", cursive;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(18px, 1.75vw, 24px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--text);
  opacity: 0.85;
  padding-left: 6px;
  white-space: nowrap;
  user-select: none;
  transform: rotate(-2deg);
  transform-origin: left center;
}
.header-tagline::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.95em;
  background: rgba(15, 23, 42, 0.18);
  vertical-align: -0.16em;
  margin-right: 14px;
}
@media (max-width: 960px) {
  .header-tagline { font-size: 22px; }
  .header-tagline::before { margin-right: 10px; }
}
@media (max-width: 760px) {
  .header-tagline { display: none; }
}

.site-nav {
  grid-column: 3;
  justify-self: end;
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 2px;
  border-radius: 0;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  transition: color 0.16s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: transparent;
  box-shadow: none;
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.header-link.active {
  color: var(--text);
}

body:not(.page-monitor) .header-link,
body:not(.page-monitor) .back-link {
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
  font-weight: 700;
}

body:not(.page-monitor) .header-link:hover,
body:not(.page-monitor) .back-link:hover {
  transform: translateY(-1px);
  background: #1e293b;
  border-color: #1e293b;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.24);
}

body:not(.page-monitor) .header-link.active {
  background: #ffffff;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.16);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.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;
}

.auth-layout,
.site-footer {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

body:not(.page-monitor) .eyebrow {
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:not(.page-monitor) .eyebrow::before {
  display: none;
}

.auth-copy h1 {
  max-width: 13ch;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--text);
}

.auth-copy p {
  max-width: 62ch;
  margin-top: 22px;
  color: var(--text-muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
}

.auth-card input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  outline: none;
}

.auth-card input:focus {
  border-color: rgba(31, 111, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(31, 111, 235, 0.12);
}

.auth-card button[type="submit"],
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  background: #0f172a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.auth-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: clamp(34px, 4vw, 50px) 0 28px;
  margin-top: clamp(32px, 5vw, 64px);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(120px, 18vw, 200px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.18), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) repeat(3, minmax(150px, 1fr));
  column-gap: clamp(22px, 4vw, 56px);
  row-gap: 28px;
  align-items: start;
}
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

.footer-brand {
  max-width: 340px;
  align-self: start;
}

.footer-logo {
  width: 148px;
  height: auto;
  margin-bottom: 12px;
  transition: transform 0.22s ease, filter 0.22s ease;
}
.footer-brand a:hover .footer-logo {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 6px 14px rgba(15, 23, 42, 0.12));
}

.footer-brand p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.55;
  font-size: 13px;
}

.footer-col {
  min-width: 0;
}

.footer-col-title {
  margin: 0 0 12px;
  font-family: var(--display, var(--sans));
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.16s ease, transform 0.16s ease;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  position: relative;
}
.footer-col a::before {
  content: "";
  width: 0;
  height: 1px;
  background: currentColor;
  margin-right: 0;
  transition: width 0.2s ease, margin-right 0.2s ease;
  opacity: 0.7;
}
.footer-col a:hover {
  color: var(--text);
}
.footer-col a:hover::before {
  width: 16px;
  margin-right: 8px;
}

.footer-meta {
  display: grid;
  grid-template-columns: minmax(180px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  margin-top: 4px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.footer-meta span:first-child {
  font-weight: 700;
  color: var(--text);
}
.footer-meta span:last-child {
  justify-self: end;
  text-align: right;
}

.auth-layout {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 7vw, 90px) 0;
}

.auth-copy h1 {
  font-size: clamp(38px, 5.4vw, 68px);
}

.auth-note {
  max-width: 520px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--text-muted);
}

.auth-note strong,
.auth-note span {
  display: block;
}

.auth-note strong {
  margin-bottom: 4px;
  color: var(--text);
}

.auth-card {
  padding: 28px;
}

.auth-card h2 {
  margin-bottom: 22px;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.auth-card form {
  display: grid;
  gap: 10px;
}

.auth-card label {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.auth-card input {
  padding: 0 12px;
}

.auth-card button[type="submit"] {
  width: 100%;
  margin-top: 12px;
}

.auth-status {
  min-height: 22px;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.auth-secondary {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.auth-secondary button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
}

.subscription-layout {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  min-height: calc(100vh - 68px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) 0;
}

.subscription-copy h1 {
  max-width: 13ch;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.subscription-copy p {
  max-width: 62ch;
  margin-top: 22px;
  color: var(--text-muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
}

.subscription-benefits {
  display: grid;
  gap: 10px;
  max-width: 540px;
  margin-top: 24px;
}

.subscription-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-weight: 700;
}

.subscription-benefits span::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(23, 165, 107, 0.12);
}

.pricing-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.pricing-kicker {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h2 {
  font-size: 28px;
  letter-spacing: -0.025em;
}

.price {
  margin: 20px 0;
  color: var(--text);
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price span {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.pricing-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  color: var(--text-muted);
  font-weight: 650;
}

.pricing-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
  vertical-align: 1px;
}

.pricing-card button {
  width: 100%;
  min-height: 48px;
  margin-top: 10px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
}

#subscribeBtn {
  background: #0f172a;
  color: #ffffff;
}

.secondary-plan {
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
}

.premium-lock {
  display: none;
}

.job-card.is-premium-locked {
  overflow: hidden;
  cursor: pointer;
}

.job-card.is-premium-locked > :not(.premium-lock) {
  filter: blur(4px);
  opacity: 0.42;
  user-select: none;
  pointer-events: none;
}

.job-card.is-premium-locked .premium-lock {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  background: linear-gradient(90deg, rgba(255,255,255,0.92), rgba(255,255,255,0.76));
}

.premium-lock-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.premium-lock strong {
  color: var(--text);
  font-size: 16px;
  line-height: 1.2;
}

.premium-lock span:not(.premium-lock-badge) {
  max-width: 34ch;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}
.premium-lock .premium-lock-line {
  color: var(--text);
  font-weight: 700;
  font-size: 13.5px;
}
.premium-lock .premium-lock-meta {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 12.5px;
  opacity: 0.9;
}

.premium-lock a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 2px;
  padding: 0 12px;
  border-radius: 8px;
  background: #0f172a;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.detail-lock-panel {
  margin: 18px;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 10px;
  background: #f8fafc;
}

.detail-lock-panel h2 {
  margin-top: 10px;
  font-size: 25px;
  letter-spacing: -0.025em;
}

.detail-lock-panel p {
  max-width: 68ch;
  margin: 8px 0 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

.is-premium-locked-detail .job-detail-body {
  position: relative;
  max-height: 280px;
  overflow: hidden;
}

.is-premium-locked-detail .job-detail-body > * {
  filter: blur(5px);
  opacity: 0.38;
  user-select: none;
}

.is-premium-locked-detail .job-detail-body::after {
  content: "Description complete reservee aux abonnes";
  position: absolute;
  inset: auto 24px 24px;
  display: grid;
  place-items: center;
  min-height: 46px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-weight: 800;
}

body:not(.page-monitor) .overview-section {
  padding-top: 34px;
}

body:not(.page-monitor) .overview-section.compact {
  padding-bottom: 8px;
}

body:not(.page-monitor) .overview-inner {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

body:not(.page-monitor) .overview-copy h1 {
  max-width: 16ch;
  font-family: var(--sans);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

body:not(.page-monitor) .metric,
body:not(.page-monitor) .search-box,
body:not(.page-monitor) .job-card,
body:not(.page-monitor) .loading-state,
body:not(.page-monitor) .empty-state {
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body:not(.page-monitor) .metric-value {
  font-family: var(--sans);
  letter-spacing: -0.03em;
}

body:not(.page-monitor) .search-box {
  padding: 14px;
}

body:not(.page-monitor) .search-input {
  min-height: 52px;
  border-radius: 8px;
  font-weight: 600;
}

body:not(.page-monitor) .search-icon {
  border-color: var(--text-faint);
}

body:not(.page-monitor) .search-icon::after,
body:not(.page-monitor) .search-input-wrap:nth-child(2) .search-icon::after {
  background: var(--text-faint);
}

body:not(.page-monitor) .search-input-wrap:nth-child(2) .search-icon {
  border-color: var(--text-faint);
}

body:not(.page-monitor) .btn-search,
body:not(.page-monitor) .btn-apply,
body:not(.page-monitor) .btn-apply-large {
  color: #ffffff;
  background: #0f172a;
  border-radius: 8px;
  box-shadow: none;
}

body:not(.page-monitor) .btn-search:hover,
body:not(.page-monitor) .btn-apply:hover,
body:not(.page-monitor) .btn-apply-large:hover {
  background: #1e293b;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
}
body:not(.page-monitor) .btn-apply.is-loading,
body:not(.page-monitor) .btn-apply-large.is-loading {
  opacity: 0.78;
  pointer-events: none;
}
body:not(.page-monitor) .btn-apply.is-applied,
body:not(.page-monitor) .btn-apply-large.is-applied {
  background: #15803d;
}

body:not(.page-monitor) .quick-filters button,
body:not(.page-monitor) .tag,
body:not(.page-monitor) .filter-chip,
body:not(.page-monitor) .job-location,
body:not(.page-monitor) .job-contract,
body:not(.page-monitor) .stat-item {
  border-color: var(--border);
  background: #f8fafc;
  color: var(--text-muted);
}

body:not(.page-monitor) .quick-filters button:nth-child(odd),
body:not(.page-monitor) .quick-filters button:nth-child(even),
body:not(.page-monitor) .tag:nth-child(odd),
body:not(.page-monitor) .tag:nth-child(even) {
  background: #f8fafc;
  border-color: var(--border);
}

body:not(.page-monitor) .filter-group select {
  border-radius: 8px;
}

body:not(.page-monitor) .btn-clear-filters {
  border-color: var(--border);
  background: #ffffff;
  color: var(--text);
}

body:not(.page-monitor) .btn-clear-filters::before {
  content: "";
}

body:not(.page-monitor) #resultsCount,
body:not(.page-monitor) .job-title,
body:not(.page-monitor) .empty-state h3 {
  font-family: var(--sans);
  letter-spacing: -0.025em;
}

body:not(.page-monitor) .job-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.24);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

body:not(.page-monitor) .job-card.is-seen {
  border-color: rgba(100, 116, 139, 0.22);
  background: #ffffff;
  box-shadow: none;
}

body:not(.page-monitor) .job-card.is-seen:hover {
  border-color: rgba(15, 23, 42, 0.24);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

body:not(.page-monitor) .company-logo-wrap {
  border-radius: 10px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
}

body:not(.page-monitor) .company-logo {
  padding: 9px;
  object-fit: contain;
  background: #ffffff;
}

body:not(.page-monitor) .job-company,
body:not(.page-monitor) .job-detail-company {
  color: var(--accent) !important;
}

body:not(.page-monitor) .page-btn.active {
  background: #0f172a;
  color: #ffffff;
}

@media (max-width: 960px) {
  .header-tagline { display: none; }
  body:not(.page-monitor) .header-inner {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 58px;
  }
  body:not(.page-monitor) .logo-img {
    height: 52px;
    max-width: 198px;
  }
  body:not(.page-monitor) .header-actions {
    grid-column: 2;
    justify-self: end;
    min-width: 0;
  }
  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: flex-start;
    margin-right: 0;
    overflow-x: auto;
    max-width: 100%;
    width: 100%;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .site-nav::-webkit-scrollbar { display: none; }
  .auth-layout,
  .subscription-layout {
    grid-template-columns: 1fr;
  }
  body:not(.page-monitor) .overview-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body:not(.page-monitor) .header {
    position: sticky;
  }
  body:not(.page-monitor) .header-inner {
    grid-template-columns: auto minmax(0, 1fr);
    row-gap: 10px;
    column-gap: 12px;
  }
  body:not(.page-monitor) .logo-img {
    display: none;
  }
  body:not(.page-monitor) .logo::before {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    background: url("/logo_qual.png") center / contain no-repeat;
  }
  body:not(.page-monitor) .header-actions {
    justify-self: end;
    gap: 6px;
  }
  body:not(.page-monitor) #navRegisterAction {
    display: none;
  }
  body:not(.page-monitor) .header-link {
    min-height: 32px;
    padding: 7px 11px;
    font-size: 13px;
    white-space: nowrap;
  }
  .site-nav {
    gap: 16px;
  }
  .nav-link {
    flex: 0 0 auto;
    font-size: 13.5px;
  }
  .auth-copy h1 {
    max-width: 12ch;
    font-size: clamp(38px, 12vw, 58px);
  }
  .site-footer {
    align-items: stretch;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-meta {
    grid-template-columns: 1fr;
    align-items: flex-start;
    text-align: left;
  }
  .footer-meta span:last-child {
    justify-self: start;
    text-align: left;
  }
  .primary-link {
    width: 100%;
  }
  .auth-card {
    padding: 22px;
  }
  .pricing-card {
    padding: 22px;
  }
  .subscription-copy h1 {
    max-width: 12ch;
    font-size: clamp(38px, 12vw, 58px);
  }
}

/* ===== Auth / Account / Pre-roll / Pricing v2 ===== */
.btn-google {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 12px 16px; margin-bottom: 12px;
  background: #fff; color: #1f2937; border: 1px solid #e5e7eb;
  border-radius: 10px; font-weight: 600; cursor: pointer; transition: background .15s;
}
.btn-google:hover { background: #f9fafb; }
.btn-google-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%; background: #4285F4; color: #fff;
  font-weight: 700; font-size: 14px;
}
.auth-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 16px 0; color: #9ca3af; font-size: 13px;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: #e5e7eb;
}
.auth-hint { color: #6b7280; font-size: 13px; margin-bottom: 12px; }
.auth-bullets { padding-left: 20px; color: #475569; line-height: 1.7; }
.auth-switch { text-align: center; margin-top: 16px; font-size: 14px; color: #475569; }
.auth-switch a { color: #2563eb; font-weight: 600; }
.auth-secondary-toggle { margin-top: 18px; }
.auth-secondary-toggle summary {
  cursor: pointer; color: #6b7280; font-size: 13px; padding: 6px 0;
}
.auth-secondary { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.auth-secondary button {
  flex: 1 1 auto; padding: 8px 12px; background: #f3f4f6;
  border: 1px solid #e5e7eb; border-radius: 8px; cursor: pointer; font-size: 13px;
}

/* Account page */
.account-layout {
  width: calc(100% - 64px);
  max-width: none;
  margin: 40px 32px;
  padding: 0;
}
.account-header {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
  margin-bottom: 28px;
}
.account-header h1 { margin: 4px 0 6px; font-size: clamp(28px, 4vw, 38px); }
.account-header-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.account-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 18px;
}
.account-card {
  min-width: 0;
  min-height: 0;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
}
.account-card header {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.account-card h2 { margin: 0; font-size: 18px; }
.account-card p,
.account-empty,
.account-meta {
  overflow-wrap: anywhere;
}
.account-badge {
  background: #f3f4f6; color: #475569; padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
}
.account-badge.is-premium { background: linear-gradient(135deg,#facc15,#f97316); color: #fff; }
.account-list {
  list-style: none;
  margin: 0;
  padding: 0 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 260px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.account-list:empty { display: none; }
.account-list::-webkit-scrollbar { width: 8px; }
.account-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}
.account-list::-webkit-scrollbar-track { background: transparent; }
.account-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px 10px;
  padding: 10px 12px; background: #f9fafb; border-radius: 8px;
  min-width: 0;
  flex: 0 0 auto;
}
.account-list li > a {
  min-width: 0;
  max-width: 100%;
  font-weight: 600;
  color: #0f172a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-list li .account-meta {
  grid-column: 1 / -1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-list li .btn-link {
  grid-row: 1;
  grid-column: 2;
  white-space: nowrap;
}
.account-meta { color: #64748b; font-size: 13px; }
.account-empty { color: #6b7280; font-size: 14px; }
.account-empty[hidden] + .account-empty-action {
  display: none;
}
.account-empty-action {
  align-self: flex-start;
  margin-top: auto;
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.account-empty-action:hover {
  text-decoration: underline;
}
.account-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Buttons partagés */
.btn-primary {
  display: inline-block; padding: 10px 18px; border-radius: 10px;
  background: #2563eb; color: #fff; font-weight: 600; border: 0; cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover { background: #1d4ed8; }
.btn-primary:disabled { background: #9ca3af; cursor: not-allowed; }
.btn-secondary {
  display: inline-block; padding: 10px 18px; border-radius: 10px;
  background: #fff; color: #2563eb; border: 1px solid #2563eb; font-weight: 600;
  cursor: pointer; text-decoration: none;
}
.btn-secondary:hover { background: #eff6ff; }
.btn-link {
  background: none; border: 0; color: #2563eb; cursor: pointer; padding: 4px 6px;
  font-size: 13px; font-weight: 500;
}
.btn-link:hover { text-decoration: underline; }

/* Bouton favori carte */
.btn-fav {
  background: none; border: 0; cursor: pointer; font-size: 18px; color: #cbd5e1;
  padding: 4px 8px; border-radius: 6px; transition: color .15s, background .15s;
}
.btn-fav:hover { background: #fef2f2; color: #ef4444; }
.btn-fav.is-active { color: #ef4444; }

/* Bouton "Suivre" sur card */
.btn-track {
  display: inline-flex; align-items: center; gap: 4px;
  background: transparent; border: 1px solid rgba(15, 23, 42, 0.14);
  color: var(--text-muted); cursor: pointer;
  font-size: 12px; font-weight: 700;
  padding: 5px 10px; border-radius: 999px;
  transition: background .15s, color .15s, border-color .15s;
}
.btn-track:hover {
  background: rgba(15, 23, 42, 0.04);
  color: var(--text);
  border-color: rgba(15, 23, 42, 0.28);
}
.btn-track.is-active {
  background: rgba(33, 199, 143, 0.12);
  color: #15803d;
  border-color: rgba(33, 199, 143, 0.45);
  cursor: default;
}
.btn-track:disabled { opacity: 0.85; cursor: default; }

/* ===== Tracker (espace candidat) ===== */
.tracker-section {
  margin-top: 32px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.tracker-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.tracker-header h2 { margin: 0 0 6px; font-size: 20px; }
.tracker-subtitle { margin: 0; color: var(--text-muted); font-size: 13.5px; line-height: 1.5; }
.tracker-stats {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; color: var(--text-muted);
}
.tracker-count strong {
  font-size: 22px; color: var(--text); font-weight: 800; margin-right: 4px;
}
.tracker-quota {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.04);
  font-weight: 700;
  font-size: 12px;
}
.tracker-empty {
  padding: 24px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  background: rgba(248, 250, 252, 0.7);
  text-align: center;
}
.tracker-empty p { margin: 4px 0; }

.tracker-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}
.tracker-summary[hidden] { display: none; }
.tracker-summary-chip,
.tracker-status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #f8fafc;
  color: #475569;
  font-size: 11.5px;
  font-weight: 800;
}
.tracker-summary-chip.s-applied,
.tracker-status-pill.s-applied { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.tracker-summary-chip.s-interview,
.tracker-status-pill.s-interview { background: #fffbeb; color: #b45309; border-color: #fde68a; }
.tracker-summary-chip.s-positive,
.tracker-status-pill.s-positive { background: #ecfdf5; color: #047857; border-color: #bbf7d0; }
.tracker-summary-chip.s-rejected,
.tracker-status-pill.s-rejected { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }
.tracker-summary-chip.s-ghosted,
.tracker-status-pill.s-ghosted { background: #f1f5f9; color: #64748b; border-color: #cbd5e1; }

.tracker-list {
  display: flex; flex-direction: column; gap: 12px;
}
.tracker-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 2.4fr);
  gap: 22px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
  transition: border-color .16s ease, box-shadow .16s ease;
  min-width: 0;
}
.tracker-row:hover {
  border-color: rgba(15, 23, 42, 0.2);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}

.tracker-row-main {
  display: flex; gap: 12px; align-items: flex-start; min-width: 0;
}
.tracker-logo {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 8px; background: #f1f5f9; padding: 4px;
  object-fit: contain; border: 1px solid var(--border);
}
.tracker-info { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.tracker-title {
  display: block; color: var(--text); font-weight: 700;
  text-decoration: none; font-size: 14.5px; line-height: 1.3;
  max-width: 100%;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.tracker-title:hover { color: var(--accent, #2563eb); }
.tracker-company,
.tracker-meta {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tracker-company { margin: 4px 0 0; font-size: 13px; color: var(--text-muted); font-weight: 600; }
.tracker-meta { margin: 2px 0 0; font-size: 12px; color: var(--text-faint, #94a3b8); }

.tracker-controls {
  display: grid;
  grid-template-columns: 150px 140px minmax(280px, 1fr) auto;
  gap: 12px;
  align-items: end;
}
.tracker-field {
  display: flex; flex-direction: column; gap: 4px; min-width: 0;
}
.tracker-field > span {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--text-muted);
}
.tracker-status,
.tracker-date,
.tracker-notes {
  width: 100%;
  min-width: 0;
  font-family: inherit;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 13px;
  color: var(--text);
  transition: border-color .15s;
}
.tracker-status:focus, .tracker-date:focus, .tracker-notes:focus {
  outline: none; border-color: var(--accent, #2563eb);
}
.tracker-notes {
  resize: vertical;
  min-height: 36px;
  max-height: 120px;
  font-size: 13px;
  line-height: 1.5;
}

/* Statut couleur sur la row */
.tracker-row.s-applied   { border-left: 4px solid #2563eb; }
.tracker-row.s-interview { border-left: 4px solid #f59e0b; }
.tracker-row.s-positive  { border-left: 4px solid #16a34a; background: rgba(34, 197, 94, 0.04); }
.tracker-row.s-rejected  { border-left: 4px solid #ef4444; opacity: 0.8; }
.tracker-row.s-ghosted   { border-left: 4px solid #94a3b8; opacity: 0.78; }
.tracker-row.s-tracked   { border-left: 4px solid #cbd5e1; }

.tracker-delete {
  align-self: center;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border); background: #fff;
  color: var(--text-muted); cursor: pointer;
  font-size: 18px; line-height: 1;
  transition: all .15s;
}
.tracker-delete:hover { background: #fef2f2; color: #ef4444; border-color: #fecaca; }

.tracker-upsell {
  margin-top: 16px; padding: 16px 18px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(254, 243, 199, 0.5);
  border-radius: var(--radius-sm);
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.tracker-upsell[hidden] { display: none; }
.tracker-upsell p { margin: 0; color: #92400e; font-size: 13.5px; }

@media (max-width: 980px) {
  .account-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tracker-row { grid-template-columns: 1fr; }
  .tracker-controls { grid-template-columns: 1fr 1fr; }
  .tracker-field-notes { grid-column: 1 / -1; }
  .tracker-delete { justify-self: end; }
}
@media (max-width: 720px) {
  .account-layout {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 28px;
  }
  .account-header {
    flex-direction: column;
    align-items: stretch;
  }
  .account-grid { grid-template-columns: 1fr; }
  .tracker-controls { grid-template-columns: 1fr; }
  .tracker-section { padding: 16px; }
  .tracker-row { padding: 14px; gap: 14px; }
  .tracker-row-main { gap: 10px; }
  .tracker-logo { width: 34px; height: 34px; border-radius: 7px; }
  .tracker-delete {
    justify-self: end;
    align-self: end;
  }
}

@media (max-width: 430px) {
  body:not(.page-monitor) .header-inner {
    padding-left: 12px;
    padding-right: 12px;
  }
  .site-nav {
    gap: 14px;
  }
  .nav-link {
    font-size: 13px;
  }
  .account-layout {
    width: calc(100% - 24px);
    margin-left: 12px;
    margin-right: 12px;
  }
  .account-card,
  .tracker-section {
    padding: 14px;
  }
}

/* ===== Modale upsell tracker ===== */
.tracking-upsell-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.tracking-upsell-backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}
.tracking-upsell-card {
  position: relative;
  max-width: 440px; width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.35);
}
.tracking-upsell-card h3 { margin: 0 0 10px; font-size: 22px; }
.tracking-upsell-card p { margin: 8px 0; font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.tracking-upsell-meta { font-size: 12.5px; color: var(--text-faint, #94a3b8); }
.tracking-upsell-close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: 0; font-size: 24px; line-height: 1;
  color: var(--text-muted); cursor: pointer;
}
.tracking-upsell-close:hover { color: var(--text); }
.tracking-upsell-actions {
  display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap;
}
.tracking-upsell-actions .btn-primary,
.tracking-upsell-actions .btn-secondary { flex: 1 1 140px; text-align: center; padding: 10px 16px; border-radius: 999px; }

.btn-save-search {
  margin-left: auto; align-self: center;
}
.saved-search-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.saved-search-actions .btn-save-search {
  margin-left: 0;
}
.btn-alert-search {
  color: #1d4ed8;
}

/* Admin clients */
.page-admin-customers {
  background: #f6f8fb;
}
.admin-shell {
  width: min(1440px, calc(100% - 32px));
  margin: 32px auto;
}
.admin-header,
.admin-token-row,
.admin-controls,
.admin-layout,
.admin-actions,
.admin-detail-head {
  display: flex;
  gap: 12px;
}
.admin-header {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.admin-header h1 {
  margin: 0;
  font-size: 34px;
}
.admin-token-panel,
.admin-table-wrap,
.admin-detail,
.admin-stats-grid > div,
.admin-controls {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.admin-token-panel {
  padding: 18px;
  margin-bottom: 16px;
}
.admin-token-panel label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}
.admin-token-row {
  align-items: center;
}
.admin-token-row input,
.admin-controls input,
.admin-controls select,
.admin-edit-grid input,
.admin-edit-grid select {
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
}
.admin-token-row input {
  flex: 1;
}
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0;
}
.admin-stats-grid > div {
  padding: 16px;
}
.admin-stats-grid span {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
}
.admin-stats-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
}
.admin-controls {
  align-items: center;
  padding: 12px;
  margin-bottom: 16px;
}
.admin-controls input {
  flex: 1;
}
.admin-layout {
  align-items: flex-start;
}
.admin-table-wrap {
  flex: 1 1 64%;
  overflow: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th,
.admin-table td {
  padding: 13px 14px;
  border-bottom: 1px solid #e8eef5;
  text-align: left;
  vertical-align: top;
}
.admin-table th {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  background: #f8fbff;
}
.admin-table tr {
  cursor: pointer;
}
.admin-table tr:hover,
.admin-table tr.is-selected {
  background: #eef8ff;
}
.admin-table td span,
.admin-table td small {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
}
.admin-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #edf2f7;
  color: #51647b;
  font-size: 12px;
  font-weight: 800;
}
.admin-badge.is-premium {
  background: #dcfce7;
  color: #16794a;
}
.admin-detail {
  flex: 0 0 420px;
  padding: 18px;
  position: sticky;
  top: 88px;
}
.admin-detail-head {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.admin-detail h2 {
  margin: 0;
  font-size: 20px;
  overflow-wrap: anywhere;
}
.admin-detail h3 {
  margin: 18px 0 8px;
  font-size: 14px;
}
.admin-edit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.admin-edit-grid label {
  display: grid;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
}
.admin-edit-grid .admin-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-actions {
  margin: 14px 0;
}
.admin-kv {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}
.admin-kv div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px;
}
.admin-kv dt {
  color: var(--text-muted);
  font-size: 12px;
}
.admin-kv dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.admin-detail-list ul {
  list-style: none;
  display: grid;
  gap: 8px;
}
.admin-detail-list li {
  padding: 9px 10px;
  border: 1px solid #e8eef5;
  border-radius: 8px;
  background: #f8fbff;
}
.admin-detail-list small {
  display: block;
  color: var(--text-muted);
}
.admin-empty {
  text-align: center;
  color: var(--text-muted);
}

@media (max-width: 980px) {
  .admin-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-layout { flex-direction: column; }
  .admin-detail { position: static; flex-basis: auto; width: 100%; }
}

/* Pricing v2 */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px; margin-top: 32px;
  align-items: stretch;
}
.pricing-card { padding: 28px; border-radius: 16px; background: #fff; border: 1px solid #e5e7eb; }
.pricing-card.pricing-premium {
  position: relative;
  border: 2px solid #2563eb; box-shadow: 0 12px 30px -10px rgba(37,99,235,.35);
}
.pricing-card.pricing-premium::before {
  content: "Le plus rapide";
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-kicker { color: #2563eb; font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
.pricing-card h2 { font-size: 28px; margin: 4px 0 12px; }
.pricing-card .price { font-size: 38px; font-weight: 800; margin: 0 0 18px; color: #0f172a; }
.pricing-card .price span { font-size: 14px; font-weight: 500; color: #6b7280; }
.pricing-card ul { margin: 0 0 22px; padding-left: 20px; line-height: 1.8; color: #334155; }
.pricing-fineprint { color: #94a3b8; font-size: 12px; margin-top: 12px; }
.subscription-promise {
  margin-top: 18px; color: #16a34a; font-weight: 600;
}
.subscription-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 12px;
  background: #eff6ff;
  color: #1e3a8a;
}
.subscription-note strong {
  flex: 0 0 auto;
  color: #1d4ed8;
}
.subscription-note span {
  color: #334155;
  line-height: 1.5;
}

/* ===== Pre-roll publicité — Joboscope aligné au site ===== */
.page-preroll {
  --pr-bg: #f3f7fb;
  --pr-panel: #ffffff;
  --pr-text: #0d2438;
  --pr-muted: #536678;
  --pr-line: rgba(13, 36, 56, 0.12);
  --pr-blue: #0ea5b7;
  --pr-green: #18a058;
  --pr-amber: #f59e0b;
  min-height: 100vh;
  color: var(--pr-text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    linear-gradient(135deg, rgba(14, 165, 183, 0.13), transparent 36%),
    linear-gradient(315deg, rgba(245, 158, 11, 0.11), transparent 34%),
    var(--pr-bg);
}

.preroll-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 5vw, 56px);
  border-bottom: 1px solid var(--pr-line);
  background: rgba(243, 247, 251, 0.88);
  backdrop-filter: blur(14px);
}

.preroll-brandmark {
  color: var(--pr-text);
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}

.preroll-brandmark-img {
  height: 32px;
  width: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.preroll-topbar-note {
  color: var(--pr-muted);
  font-size: 13px;
  font-weight: 700;
}

.preroll-paper {
  width: min(1080px, calc(100% - 36px));
  min-height: calc(100vh - 66px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  padding: clamp(32px, 7vw, 72px) 0 0;
}

.preroll-side {
  display: grid;
  gap: 18px;
}

.preroll-scope {
  position: relative;
  width: min(290px, 74vw);
  aspect-ratio: 1;
  border: 1px solid var(--pr-line);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(14, 165, 183, 0.24) 50%, transparent calc(50% + 1px)),
    linear-gradient(0deg, transparent calc(50% - 1px), rgba(14, 165, 183, 0.24) 50%, transparent calc(50% + 1px)),
    radial-gradient(circle, transparent 0 29%, rgba(14, 165, 183, 0.13) 29.5% 30.5%, transparent 31% 58%, rgba(14, 165, 183, 0.14) 58.5% 59.5%, transparent 60%),
    #ffffff;
  box-shadow: 0 24px 60px rgba(13, 36, 56, 0.1);
  overflow: hidden;
}

.preroll-scope::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(14, 165, 183, 0.34);
}

.preroll-scope::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 43%;
  height: 2px;
  background: linear-gradient(90deg, var(--pr-blue), transparent);
  transform-origin: left center;
  animation: preroll-sweep 5s linear infinite;
}

.preroll-scope span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pr-green);
  box-shadow: 0 0 0 6px rgba(24, 160, 88, 0.14);
}

.preroll-scope span:nth-child(1) { left: 33%; top: 30%; }
.preroll-scope span:nth-child(2) { left: 66%; top: 48%; background: var(--pr-amber); box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.16); }
.preroll-scope span:nth-child(3) { left: 46%; top: 69%; }

@keyframes preroll-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.preroll-company-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--pr-line);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(13, 36, 56, 0.08);
}

.preroll-logo-frame,
.preroll-logo,
.preroll-logo-fallback {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #e8f2f6;
  color: #fff;
  font-weight: 800;
}

.preroll-logo-frame {
  overflow: hidden;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(13, 36, 56, 0.1);
}

.preroll-logo {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.preroll-company-label,
.preroll-company-name,
.preroll-note {
  margin: 0;
}

.preroll-company-label {
  color: var(--pr-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preroll-company-name {
  margin-top: 3px;
  color: var(--pr-text);
  font-size: 18px;
  font-weight: 800;
}

.preroll-note {
  max-width: 340px;
  color: var(--pr-muted);
  font-size: 14px;
  line-height: 1.55;
}

.preroll-content {
  min-width: 0;
}

.preroll-kicker {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  margin: 0 0 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(14, 165, 183, 0.12);
  color: var(--pr-blue);
  font-size: 13px;
  font-weight: 800;
}

.preroll-headline {
  max-width: 10ch;
  margin: 0 0 14px;
  color: var(--pr-text);
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.preroll-headline-sub {
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--pr-muted);
  font-size: 16px;
  line-height: 1.6;
}

.preroll-headline-sub strong,
.preroll-headline-sub span {
  color: var(--pr-text);
  font-weight: 800;
}

.preroll-ad-slot {
  position: relative;
  margin: 0 0 24px;
  padding: 44px 16px;
  border: 1px dashed rgba(13, 36, 56, 0.22);
  border-radius: 10px;
  background:
    repeating-linear-gradient(-45deg, rgba(14, 165, 183, 0.035), rgba(14, 165, 183, 0.035) 8px, transparent 8px, transparent 16px),
    rgba(255, 255, 255, 0.86);
  text-align: center;
}

.preroll-ad-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 9px;
  border: 1px solid var(--pr-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--pr-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preroll-ad-placeholder {
  margin: 0;
  color: var(--pr-muted);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
}

.preroll-timer-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin: 0 0 24px;
  padding: 14px 16px;
  border: 1px solid var(--pr-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
}

.preroll-timer-digits {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.preroll-timer-num {
  color: var(--pr-blue);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 52px;
  line-height: 0.9;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.preroll-timer-unit {
  color: var(--pr-muted);
  font-size: 12px;
  font-weight: 800;
}

.preroll-timer-track {
  height: 10px;
  border-radius: 999px;
  background: #dce8ef;
  overflow: hidden;
}

.preroll-timer-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pr-blue), var(--pr-green));
  animation: pr-fill 5s linear forwards;
}

@keyframes pr-fill {
  to { width: 100%; }
}

.preroll-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;
}

.preroll-go {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  width: 100%;
  max-width: 320px;
  padding: 0 18px;
  border-radius: 8px;
  background: #dce8ef;
  color: var(--pr-muted);
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  cursor: not-allowed;
}

.preroll-go[aria-disabled="false"],
.preroll-go.is-ready {
  background: linear-gradient(135deg, #0d2438, #0ea5b7);
  color: #ffffff;
  cursor: pointer;
}

.preroll-foot {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: clamp(30px, 5vw, 54px);
  padding: 20px 0 28px;
  border-top: 1px solid var(--pr-line);
}

.preroll-foot-title {
  margin: 0 0 4px;
  color: var(--pr-text);
  font-size: 18px;
  font-weight: 800;
}

.preroll-foot-text {
  margin: 0;
  color: var(--pr-muted);
  font-size: 14px;
}

.preroll-foot-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--pr-line);
  color: var(--pr-text);
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 760px) {
  .preroll-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .preroll-paper {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 28px;
  }
  .preroll-scope {
    width: min(220px, 72vw);
    margin: 0 auto;
  }
  .preroll-timer-row {
    grid-template-columns: 1fr;
  }
  .preroll-go,
  .preroll-foot-cta {
    max-width: none;
    width: 100%;
    justify-content: center;
  }
  .preroll-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preroll-scope::after,
  .preroll-timer-fill {
    animation: none;
  }
}
/* ===== Auth — interactions enrichies (login/register) ===== */
.auth-already {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 18px; padding: 12px 14px;
  background: var(--accent-light); border: 1px solid rgba(0, 191, 214, 0.32);
  border-radius: 10px; color: var(--text); font-size: 14px;
}
.auth-already strong { font-weight: 700; }
.auth-link-button {
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--accent-hover); font-weight: 600; font-size: 14px; text-decoration: underline;
}
.auth-link-button:hover { color: var(--text); }

.auth-password-wrap {
  position: relative; display: block;
}
.auth-password-wrap input { padding-right: 44px; }
.auth-toggle-password {
  position: absolute; top: 50%; right: 8px; transform: translateY(-50%);
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: none; border: 0; border-radius: 6px; cursor: pointer;
  color: var(--text-muted); transition: background .15s, color .15s;
}
.auth-toggle-password:hover { background: rgba(14, 34, 54, 0.06); color: var(--text); }
.auth-toggle-password:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
}
.auth-eye { display: block; }

.auth-card input[aria-invalid="true"] {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}
.auth-field-error {
  margin: 4px 2px 0; color: #b91c1c; font-size: 12.5px; font-weight: 600;
}

.auth-forgot {
  margin: 4px 2px 0; text-align: right; font-size: 13px;
}
.auth-forgot a { color: var(--accent-hover); font-weight: 600; text-decoration: none; }
.auth-forgot a:hover { text-decoration: underline; }

.auth-status-error { color: #b91c1c !important; }
.auth-status-success { color: #047857 !important; }

.auth-strength {
  margin: 2px 2px 0; display: grid; gap: 6px;
}
.auth-strength-bar {
  width: 100%; height: 6px; background: #e5e7eb; border-radius: 999px; overflow: hidden;
}
.auth-strength-fill {
  display: block; height: 100%; width: 0%; background: #ef4444;
  transition: width .2s ease, background .2s ease;
}
.auth-strength-fill[data-level="2"] { background: #f59e0b; }
.auth-strength-fill[data-level="3"] { background: #10b981; }
.auth-strength-fill[data-level="4"] { background: var(--green); }
.auth-strength-label { margin: 0; color: var(--text-muted); font-size: 12px; font-weight: 600; }

/* ============ Pages statiques (CGU / À propos / Contact) ============ */
.static-page {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: clamp(28px, 5vw, 64px) auto clamp(48px, 8vw, 96px);
  padding: 0;
}

.static-page-head {
  max-width: 880px;
  margin: 0 auto clamp(28px, 4vw, 48px);
  text-align: left;
}

.static-page-head h1 {
  max-width: 22ch;
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--text);
}

.static-page-lead {
  margin-top: 18px;
  max-width: 62ch;
  color: var(--text-muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
}

.page-highlights,
.page-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.page-highlights span,
.page-toc a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.page-highlights strong {
  margin-right: 6px;
  color: var(--text);
  font-weight: 800;
}

.page-toc a:hover {
  border-color: rgba(15, 23, 42, 0.24);
  color: var(--text);
}

.static-page-body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px) clamp(20px, 3.5vw, 44px);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.static-page-body section + section {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px dashed var(--border);
}

.static-page-body h2 {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 12px;
}

.static-page-body p {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.7;
}

.static-page-body p + p {
  margin-top: 12px;
}

.static-page-body ul {
  margin: 14px 0 0;
  padding-left: 22px;
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.7;
}

.static-page-body ul li + li {
  margin-top: 8px;
}

.static-page-body a {
  color: var(--accent-hover);
  font-weight: 600;
  text-decoration: none;
}

.static-page-body a:hover {
  text-decoration: underline;
}

/* ============ Page Contact ============ */
.contact-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

.contact-info {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
}

.contact-info h2 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}

.contact-reasons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.contact-reasons li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.55;
}

.contact-reasons li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-light);
}

.contact-reasons li strong {
  color: var(--text);
  font-weight: 700;
}

.contact-delay {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.contact-shortcut {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 14px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.contact-shortcut:hover {
  border-color: rgba(15, 23, 42, 0.24);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.contact-form-card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.contact-form-card h2 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text);
}

.contact-form-card form {
  display: grid;
  gap: 6px;
}

.contact-form-card label {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

.contact-form-card textarea {
  min-height: 140px;
  padding-top: 12px;
  resize: vertical;
  font-family: var(--sans);
  line-height: 1.5;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: rgba(31, 111, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(31, 111, 235, 0.12);
}

.contact-form-card input[aria-invalid="true"],
.contact-form-card select[aria-invalid="true"],
.contact-form-card textarea[aria-invalid="true"] {
  border-color: #b91c1c;
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.12);
}

.contact-form-card button[type="submit"] {
  margin-top: 16px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: background .15s, opacity .15s;
}

.contact-form-card button[type="submit"]:hover {
  background: #1e293b;
}

.contact-form-card button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .subscription-note {
    align-items: flex-start;
    flex-direction: column;
  }
  .account-header-actions {
    justify-content: flex-start;
    width: 100%;
  }
  .account-header-actions .btn-secondary {
    flex: 1 1 160px;
    text-align: center;
  }
}
