:root {
  --bg: #f4f7fc;
  --bg-deep: #e8eef8;
  --ink: #0f1b33;
  --muted: #5b6b86;
  --line: rgba(15, 40, 90, 0.12);
  --surface: #ffffff;
  --accent: #007afb;
  --accent-soft: rgba(0, 122, 251, 0.1);
  --accent-2: #e6a000;
  --wa: #007afb;
  --max: 68rem;
  --radius: 14px;
  --font: "Source Sans 3", "Segoe UI", sans-serif;
  --display: "Bricolage Grotesque", Georgia, serif;
  --shadow: 0 18px 40px rgba(15, 40, 90, 0.07);
  --makely-sarkari-topbar-h: 2.25rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1100px 520px at 8% -8%, rgba(0, 122, 251, 0.1), transparent 58%),
    radial-gradient(900px 420px at 100% 0%, rgba(252, 178, 3, 0.07), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg-deep) 48%, var(--bg));
  line-height: 1.55;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #005fcc; }
h1, h2, h3 { font-family: var(--display); line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(1.85rem, 5vw, 3rem); margin: 0 0 0.6rem; }
h2 { font-size: clamp(1.35rem, 3vw, 1.75rem); margin: 0 0 0.75rem; }
.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.muted { color: var(--muted); }
.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;
}

.makely-sarkari-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #1d3c5d;
  color: #fff;
  text-align: center;
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
}
.makely-sarkari-topbar-spacer {
  height: var(--makely-sarkari-topbar-h);
}
.makely-sarkari-topbar__link {
  color: #fff;
  text-decoration: none;
}
.makely-sarkari-topbar__link:hover,
.makely-sarkari-topbar__link:focus-visible,
.makely-sarkari-topbar__link:active,
.makely-sarkari-topbar__link:visited {
  color: #fff;
  text-decoration: underline;
  outline: none;
}

.site-header {
  position: sticky; top: var(--makely-sarkari-topbar-h, 0); z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(244, 247, 252, 0.94);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  padding-top: 0.35rem;
  padding-bottom: 0.45rem;
}
.site-header--has-strip .site-header__inner {
  padding-bottom: 0.55rem;
}
.site-header--member-active .site-header__inner {
  padding-bottom: 0.5rem;
}
.header-row,
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 4.5rem;
  position: relative;
}
.header-row__end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  margin-left: auto;
  min-width: 0;
}
.header-row__cta {
  flex-shrink: 0;
}
.brand img {
  width: auto;
  height: 52px;
  border-radius: 10px;
}
.brand-footer img { height: 64px; }
.site-nav { display: flex; gap: 1.1rem; align-items: center; flex-wrap: nowrap; justify-content: flex-end; }
.site-nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.site-nav a:hover { color: var(--accent); }
.site-nav__member {
  color: #0f766e !important;
}
.header-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.58rem 0.95rem 0.58rem 0.65rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f766e 0%, #059669 55%, #10b981 100%);
  color: #fff !important;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  box-shadow:
    0 8px 20px rgba(15, 118, 110, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.header-cta-btn__discount {
  display: inline-flex;
  align-items: center;
  padding: 0.16rem 0.42rem;
  border-radius: 999px;
  background: #fff;
  color: #dc2626;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.header-cta-btn__text {
  line-height: 1;
}
.header-cta-btn:hover,
.header-cta-btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 12px 26px rgba(15, 118, 110, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  outline: none;
}
.header-cta-btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.8rem;
  line-height: 1;
}
.member-active-bar {
  width: 100%;
  margin-top: 0.1rem;
  border-radius: 10px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.95), rgba(209, 250, 229, 0.88));
}
.member-active-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.48rem 0.85rem;
}
.member-active-bar__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #065f46;
}
.member-active-bar__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22);
}
.member-active-bar__link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f766e;
  text-decoration: none;
  white-space: nowrap;
}
.member-active-bar__link:hover {
  color: var(--accent);
}
.membership-dash {
  max-width: 52rem;
}
.membership-dash__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.membership-dash__head h1 {
  margin: 0 0 0.35rem;
}
.membership-dash__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #e2e8f0;
  color: #475569;
}
.membership-dash__badge.is-active {
  background: #d1fae5;
  color: #065f46;
}
.membership-dash__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 860px) {
  .membership-dash__grid {
    grid-template-columns: 1fr 1fr;
  }
.membership-dash__card--actions {
    grid-column: 1 / -1;
    position: relative;
  }
}
.membership-dash__card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow);
}
.membership-dash__card h2 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}
.membership-dash__meta {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}
.membership-dash__meta div {
  display: grid;
  gap: 0.15rem;
}
.membership-dash__meta dt {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.membership-dash__meta dd {
  margin: 0;
  font-weight: 600;
}
.membership-dash__code {
  font-size: 0.82rem;
  word-break: break-all;
}
.membership-dash__benefits {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--muted);
}
.membership-dash__benefits li + li {
  margin-top: 0.35rem;
}
.membership-actions {
  display: grid;
  gap: 0.75rem;
}
.membership-action {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfcfe, #f6f8fb);
}
.membership-action--danger {
  border-color: #fecaca;
  background: linear-gradient(180deg, #fffafa, #fff5f5);
}
.membership-action__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 10px;
  background: #e8eef8;
  color: #1e40af;
  font-size: 0.95rem;
  font-weight: 800;
  flex-shrink: 0;
}
.membership-action--danger .membership-action__icon {
  background: #fee2e2;
  color: #b42318;
}
.membership-action__title {
  display: block;
  font-size: 0.94rem;
  margin-bottom: 0.2rem;
}
.membership-action__text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--muted);
}
.membership-action__form {
  margin: 0;
  flex-shrink: 0;
}
.membership-action__btn {
  white-space: nowrap;
  padding: 0.55rem 0.9rem;
  font-size: 0.86rem;
}
.membership-action__btn--danger {
  background: #fff;
  color: #b42318 !important;
  border: 1px solid #fecdca;
}
.membership-action__btn--danger:hover {
  background: #fef3f2;
  border-color: #fda29b;
  color: #912018 !important;
}
.membership-dash__paypal-note,
.membership-dash__note {
  margin: 1rem 0 0;
  font-size: 0.84rem;
  color: var(--muted);
}
.membership-dash__paypal-note a {
  font-weight: 700;
}
.membership-dash--cancelled .btn + .btn {
  margin-left: 0.5rem;
}
@media (max-width: 640px) {
  .membership-dash__head {
    flex-direction: column;
  }
  .member-active-bar__inner {
    flex-wrap: wrap;
  }
  .membership-action {
    grid-template-columns: auto 1fr;
  }
  .membership-action__form {
    grid-column: 1 / -1;
  }
  .membership-action__btn {
    width: 100%;
  }
}
.wa-link { color: var(--accent) !important; }
.nav-toggle {
  display: none; border: 1px solid var(--line); background: var(--surface);
  width: 2.6rem; height: 2.6rem; border-radius: 10px; padding: 0; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 1.1rem; height: 2px; background: var(--ink); margin: 0.28rem auto;
}

.lede { font-size: 1.05rem; color: var(--muted); max-width: 40rem; }
.page-intro {
  margin-bottom: 1.35rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.page-intro-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.page-intro-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
}
.page-intro h1 {
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  margin: 0;
  flex: 1;
  min-width: 0;
  line-height: 1.12;
}
.page-intro-lede { margin: 0 0 0.5rem; max-width: 40rem; }
.page-intro-cadence { margin: 0; }
.membership-strip {
  width: 100%;
  margin-top: 0.15rem;
  border-radius: 10px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 253, 245, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.membership-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.15rem;
  padding: 0.5rem 0.85rem;
}
.membership-strip__lead {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 1 1 auto;
  min-width: 0;
}
.membership-strip__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.22rem 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #14b8a6);
  color: #fff;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.28);
}
.membership-strip__badge::before {
  content: "✦";
  font-size: 0.55rem;
  opacity: 0.95;
}
.membership-strip__rotate {
  flex: 1 1 auto;
  min-width: 0;
}
.membership-strip__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.membership-strip__price {
  font-size: 0.76rem;
  font-weight: 500;
  color: #64748b;
  white-space: nowrap;
}
.membership-strip__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f766e 0%, #059669 55%, #10b981 100%);
  color: #fff !important;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  box-shadow:
    0 6px 16px rgba(15, 118, 110, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.membership-strip__btn:hover,
.membership-strip__btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 10px 22px rgba(15, 118, 110, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  outline: none;
}
.membership-strip__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  line-height: 1;
}
.membership-rotate {
  position: relative;
  display: block;
  min-height: 1.35em;
}
.membership-rotate__line {
  position: absolute;
  inset: 0 auto auto 0;
  right: 0;
  opacity: 0;
  transform: translateY(0.3em);
  transition: opacity 0.45s ease, transform 0.45s ease;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.membership-rotate__line.is-active {
  opacity: 1;
  transform: translateY(0);
}
.membership-rotate__line.is-leaving {
  opacity: 0;
  transform: translateY(-0.3em);
}
.job-drop-prompt {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  max-width: 100%;
  margin: 0.15rem 0 0;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.38);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.14), rgba(0, 122, 251, 0.07));
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.35;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.job-drop-prompt__badge {
  flex-shrink: 0;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.18rem 0.48rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  animation: job-drop-pulse 2.4s ease-in-out infinite;
}
.job-drop-prompt__cta {
  font-weight: 800;
  color: #0f766e;
  white-space: nowrap;
}
@keyframes job-drop-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.72; }
}
@media (max-width: 768px) {
  .membership-strip__inner {
    flex-wrap: wrap;
    padding: 0.55rem 0.75rem;
  }
  .membership-strip__lead {
    flex: 1 1 100%;
  }
  .membership-strip__actions {
    flex: 1 1 100%;
    justify-content: space-between;
  }
  .membership-rotate__line {
    white-space: normal;
  }
}
@media (max-width: 760px) {
  .site-header--has-strip .header-row {
    min-height: 4rem;
  }
  .site-header--has-strip .membership-strip {
    margin-top: 0.05rem;
  }
  .membership-strip__price {
    font-size: 0.72rem;
  }
}
@media (max-width: 480px) {
  .membership-strip__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }
  .membership-strip__price {
    text-align: center;
  }
  .membership-strip__btn {
    width: 100%;
    padding: 0.68rem 1rem;
    font-size: 0.9rem;
  }
}

.early-access-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(0.65rem, 2vw, 1.25rem);
  background: rgba(8, 18, 36, 0.58);
  backdrop-filter: blur(4px);
}
.early-access-modal[hidden] {
  display: none !important;
}
.early-access-modal.is-open {
  display: grid;
}
body.modal-open {
  overflow: hidden;
}
.early-access-modal__panel {
  position: relative;
  width: min(100%, 22.5rem);
  max-height: min(92vh, 40rem);
  overflow: auto;
  overflow-x: hidden;
  padding: 1rem 1rem 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  background: #fff;
  box-shadow: 0 24px 56px rgba(8, 18, 36, 0.2);
  -webkit-overflow-scrolling: touch;
}
.early-access-modal__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border: 0;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.early-access-modal__close:hover,
.early-access-modal__close:focus-visible {
  background: #e2e8f0;
  color: var(--ink);
  outline: none;
}
.early-access-modal__head {
  padding-right: 1.5rem;
  margin-bottom: 0.65rem;
}
.early-access-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.4rem;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.18rem 0.48rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #14b8a6);
  color: #fff;
}
.early-access-modal__badge::before {
  content: "✦";
  font-size: 0.5rem;
}
.early-access-modal__title {
  margin: 0 0 0.2rem;
  font-size: 1.28rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.early-access-modal__lede {
  margin: 0;
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.35;
}
.early-access-modal__highlights {
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.28rem;
}
.early-access-modal__highlights li {
  position: relative;
  padding-left: 1.05rem;
  color: #334155;
  font-size: 0.82rem;
  line-height: 1.3;
}
.early-access-modal__highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-size: 0.78rem;
  font-weight: 800;
}
.early-access-modal__checkout-box {
  padding: 0.7rem 0.75rem 0.55rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 118, 110, 0.1);
  background: #f8fbfb;
}
.early-access-modal__price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(15, 118, 110, 0.1);
}
.early-access-modal__price-deal {
  display: grid;
  gap: 0.35rem;
}
.early-access-modal__discount {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.25);
}
.early-access-modal__price-compare {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.early-access-modal__price-was {
  font-size: 0.95rem;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.early-access-modal__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f766e;
  letter-spacing: -0.03em;
  line-height: 1;
}
.early-access-modal__price small {
  font-size: 0.72em;
  font-weight: 700;
  color: #0f766e;
}
.early-access-modal__price-note {
  font-size: 0.76rem;
  color: #94a3b8;
  font-weight: 600;
}
.early-access-modal__checkout {
  min-height: 1.75rem;
}
.early-access-modal__paypal {
  margin: 0;
  max-width: 100%;
}
.early-access-modal__paypal iframe {
  max-width: 100% !important;
}
.early-access-modal__paypal-link {
  width: 100%;
  justify-content: center;
  border-radius: 999px;
  padding: 0.62rem 1rem;
}
.early-access-modal__note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}
.early-access-modal__restore {
  margin: 0.65rem 0 0;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(15, 118, 110, 0.08);
  font-size: 0.82rem;
  color: #64748b;
  text-align: center;
}
.early-access-modal__restore a {
  font-weight: 800;
  color: #0f766e;
  text-decoration: none;
}
.early-access-modal__restore a:hover {
  color: var(--accent);
}
@media (max-width: 480px) {
  .early-access-modal {
    padding: 0.5rem;
    align-items: flex-end;
  }
  .early-access-modal__panel {
    width: 100%;
    border-radius: 16px 16px 14px 14px;
    padding: 0.9rem 0.9rem 0.8rem;
  }
  .early-access-modal__title {
    font-size: 1.18rem;
  }
}
.member-restore-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 118, 110, 0.24);
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.98), rgba(224, 242, 254, 0.88));
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.member-restore-cta:hover,
.member-restore-cta:focus-visible {
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 8px 20px rgba(15, 118, 110, 0.12);
  transform: translateY(-1px);
  outline: none;
}
.member-restore-cta__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}
.member-restore-cta__action {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 118, 110, 0.3);
  color: #0f766e;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.12);
}
.member-restore-cta:hover .member-restore-cta__action,
.member-restore-cta:focus-visible .member-restore-cta__action {
  background: #0f766e;
  border-color: #0f766e;
  color: #fff;
}
.early-access-gate .member-restore-cta {
  max-width: 26rem;
  margin-top: 1rem;
}
.early-access-gate__browse {
  margin-top: 0.85rem;
}
.early-access-restore {
  max-width: 32rem;
}
.early-access-restore__help {
  margin-top: 1rem;
}
.early-access-restore__link {
  padding: 0;
  border: 0;
  background: none;
  color: #0f766e;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}
.early-access-restore__link:hover,
.early-access-restore__link:focus-visible {
  color: var(--accent);
  outline: none;
}
.early-access-welcome {
  max-width: 36rem;
}
.early-access-welcome__ref {
  font-size: 0.85rem;
  word-break: break-all;
}
.early-access-gate {
  max-width: 34rem;
}
.early-access-gate .btn {
  margin-top: 0.35rem;
}
.job-card-early-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.16);
  color: #0f766e;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}
.early-access-hidden-note {
  margin: 0 0 0.85rem;
}
.early-access-hidden-note__btn {
  border: 0;
  background: transparent;
  padding: 0;
  color: #0f766e;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
.early-access-hidden-note__btn:hover,
.early-access-hidden-note__btn:focus-visible {
  color: #115e59;
  outline: none;
}
.home-active-pill {
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  min-height: 3.35rem;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 122, 251, 0.22);
  background: var(--accent-soft);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1.15;
  text-align: center;
}
.home-active-pill strong {
  color: var(--ink);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
@media (max-width: 640px) {
  .page-intro-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
  .page-intro h1 {
    font-size: 1.5rem;
    line-height: 1.15;
  }
  .page-intro-lede {
    font-size: 0.96rem;
    line-height: 1.55;
  }
  .home-active-pill {
    flex-direction: row;
    align-items: baseline;
    gap: 0.35rem;
    min-height: auto;
    padding: 0.38rem 0.8rem;
    font-size: 0.72rem;
  }
  .home-active-pill strong {
    font-size: 0.95rem;
  }
}
@media (max-width: 760px) {
  #main {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }
  .site-header:not(.site-header--member-active) ~ #main {
    padding-bottom: calc(7.25rem + env(safe-area-inset-bottom, 0px));
  }
}
.home-board { padding-top: 1.25rem; }
@media (min-width: 960px) {
  .home-board .jobs-layout { margin-top: 0.25rem; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; border-radius: 999px; padding: 0.7rem 1.15rem;
  font-weight: 700; text-decoration: none; border: 1px solid transparent;
  cursor: pointer; font-family: inherit; font-size: 0.95rem;
}
.btn-primary { background: var(--accent); color: #f5f9ff; }
.btn-primary:hover { background: #005fcc; color: #fff; }
.btn-wa {
  background: #25d366;
  color: #fff !important;
  border-color: #1ebe57;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.28);
  gap: 0.5rem;
}
.btn-wa:hover,
.btn-wa:focus-visible {
  background: #1ebe57;
  border-color: #19a84d;
  color: #fff !important;
  outline: none;
}
.btn-wa .wa-ico {
  flex-shrink: 0;
  display: block;
}
.btn-wa-block {
  width: 100%;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  justify-content: center;
  text-align: center;
}
.btn-wa-nav {
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  white-space: nowrap;
}
.wa-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow:
    0 10px 28px rgba(37, 211, 102, 0.38),
    0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.wa-float:hover,
.wa-float:focus-visible {
  background: #1ebe57;
  color: #fff;
  transform: scale(1.06);
  box-shadow:
    0 14px 32px rgba(37, 211, 102, 0.45),
    0 4px 10px rgba(0, 0, 0, 0.1);
  outline: none;
}
.wa-float__ico {
  display: block;
}
@media (max-width: 640px) {
  .wa-float {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 3.1rem;
    height: 3.1rem;
  }
  .wa-float__ico {
    width: 26px;
    height: 26px;
  }
}
.wa-inline {
  margin: 0.75rem 0 0;
}
.wa-inline .btn-wa {
  width: 100%;
}
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.section { padding: 1.75rem 0 2.25rem; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  margin-bottom: 1rem;
}
.section-head--jobs {
  align-items: flex-start;
}
.section-head__main {
  min-width: 0;
}
.section-head__main h2 {
  margin-bottom: 0.35rem;
}
.section-head__count {
  flex-shrink: 0;
  padding-top: 0.15rem;
}
.jobs-membership-nudge {
  margin: 0;
  max-width: 38rem;
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.45;
}
.jobs-membership-nudge__link {
  border: 0;
  background: transparent;
  padding: 0;
  color: #0f766e;
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(15, 118, 110, 0.35);
  text-underline-offset: 0.12em;
  cursor: pointer;
}
.jobs-membership-nudge__link:hover,
.jobs-membership-nudge__link:focus-visible {
  color: #115e59;
  text-decoration-color: currentColor;
  outline: none;
}
.jobs-membership-nudge__link.is-updated {
  animation: membership-count-pulse 0.65s ease;
}
@keyframes membership-count-pulse {
  0% { color: #0f766e; }
  35% { color: #047857; }
  100% { color: #0f766e; }
}
.section-head a { font-weight: 600; text-decoration: none; }

.filters {
  display: grid; gap: 0.65rem;
  grid-template-columns: 1fr;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0.85rem; box-shadow: var(--shadow);
}
.filters input, .filters select {
  width: 100%; border: 1px solid var(--line); border-radius: 10px;
  padding: 0.65rem 0.75rem; font: inherit; background: #fbfdff; color: var(--ink);
}
.filters .btn { width: 100%; }
@media (min-width: 840px) {
  .filters {
    grid-template-columns: 1.3fr repeat(5, minmax(0, 0.95fr)) auto;
    align-items: center;
  }
  .filters .btn { width: auto; }
}

.jobs-layout {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 960px) {
  .jobs-layout {
    grid-template-columns: minmax(16rem, 18.5rem) minmax(0, 1fr) minmax(12rem, 16rem);
  }
}
.jobs-banners {
  display: none;
  gap: 0.85rem;
}
@media (min-width: 960px) {
  .jobs-banners {
    display: grid;
    position: sticky;
    top: 4.75rem;
    align-self: start;
  }
}
.jobs-banners .cj-job-box {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding-bottom: 0;
}
.jobs-banners .cj-job-box iframe {
  display: block;
  max-width: 100%;
  margin-bottom: -2.5rem;
}
.cj-native-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.85rem 0.75rem 0.55rem;
  box-shadow: var(--shadow);
}
.cj-native-box__heading {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #428ee6;
  letter-spacing: -0.01em;
}
.cj-native-box__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cj-native-box__item {
  border-bottom: 1px solid #d4d6de;
}
.cj-native-box__item:last-child {
  border-bottom: 0;
}
.cj-native-box__link {
  position: relative;
  display: block;
  padding: 0.7rem 1.35rem 0.75rem 0;
  text-decoration: none;
  color: inherit;
}
.cj-native-box__title {
  display: block;
  color: #428ee6;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.35;
  margin-bottom: 0.25rem;
}
.cj-native-box__company {
  display: block;
  color: #12101c;
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}
.cj-native-box__loc {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #12101c;
  font-size: 0.78rem;
}
.cj-native-box__pin {
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 auto;
  background: #428ee6;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='%23000' d='M5.5 0C8.54 0 11 2.59 11 5.5c0 2.1-1.83 5.2-5.5 8.5C1.83 10.7 0 7.6 0 5.5 0 2.59 2.46 0 5.5 0Zm0 3.5a2 2 0 1 0 0 4 2 2 0 0 0 0-4z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14'%3E%3Cpath fill='%23000' d='M5.5 0C8.54 0 11 2.59 11 5.5c0 2.1-1.83 5.2-5.5 8.5C1.83 10.7 0 7.6 0 5.5 0 2.59 2.46 0 5.5 0Zm0 3.5a2 2 0 1 0 0 4 2 2 0 0 0 0-4z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.cj-native-box__chevron {
  position: absolute;
  right: 0.15rem;
  top: 0.85rem;
  width: 0.45rem;
  height: 0.7rem;
  background: #428ee6;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 10'%3E%3Cpath fill='%23000' d='M3.3 5L0 8.2 1.9 10 7 5 1.9 0 0 1.8z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 10'%3E%3Cpath fill='%23000' d='M3.3 5L0 8.2 1.9 10 7 5 1.9 0 0 1.8z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.cj-native-box__empty {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.85rem;
}
.cj-native-box__link:hover .cj-native-box__title {
  text-decoration: underline;
}
.jobs-banner-slider {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: transparent;
  box-shadow: var(--shadow);
  width: 100%;
}
.jobs-banner-viewport {
  position: relative;
  line-height: 0;
  width: 100%;
  background: transparent;
}
.jobs-banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s ease;
  text-decoration: none;
}
.jobs-banner-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.jobs-banner-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.jobs-banner-slide--hostinger {
  overflow: hidden;
}
.hostinger-offer-timer {
  position: absolute;
  top: 8.1%;
  right: 6.1%;
  width: 25.4%;
  height: 7.4%;
  padding: 0 0.45em;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #ff3b3b;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  line-height: 1;
  z-index: 2;
}
.hostinger-offer-timer__digits {
  color: #fff;
  font-size: clamp(0.58rem, 2.05vw, 0.82rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
@media (min-width: 960px) {
  .hostinger-offer-timer__digits {
    font-size: clamp(0.55rem, 0.78vw, 0.78rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .jobs-banner-slide {
    transition: none;
  }
}
.jobs-banner {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: transparent;
  line-height: 0;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.jobs-banner:hover,
.jobs-banner:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 40, 90, 0.12);
  outline: none;
}
.jobs-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.job-sidebar { position: relative; }
.sidebar-toggle {
  display: inline-flex; width: 100%; justify-content: center;
  border: 1px solid var(--line); background: var(--surface);
  border-radius: 12px; padding: 0.7rem 1rem; font: inherit; font-weight: 700;
  cursor: pointer; color: var(--ink);
}
@media (min-width: 960px) {
  .sidebar-toggle { display: none; }
  .job-sidebar {
    position: sticky;
    top: 4.75rem;
    align-self: start;
    max-height: calc(100vh - 5.5rem);
    overflow-y: auto;
  }
}
.sidebar-panel {
  display: none;
  margin-top: 0.65rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}
.sidebar-panel.is-open { display: block; animation: rise 0.2s ease; }
@media (min-width: 960px) {
  .sidebar-panel { display: block; margin-top: 0; }
}
.ad-container {
  text-align: center;
  margin: auto;
}
.adsterra-sidebar-ad {
  margin-bottom: 0.85rem;
  overflow: hidden;
  min-height: 250px;
}
.sidebar-form { display: grid; gap: 0.55rem; }
.sidebar-label, .sidebar-heading {
  margin: 0.35rem 0 0; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted);
}
.sidebar-form input, .sidebar-form select {
  width: 100%; border: 1px solid var(--line); border-radius: 10px;
  padding: 0.55rem 0.7rem; font: inherit; background: #fbfdff; color: var(--ink);
}
.sidebar-nav {
  list-style: none; padding: 0; margin: 0 0 0.35rem;
  display: grid; gap: 0.2rem; max-height: 14rem; overflow: auto;
}
.sidebar-nav a {
  display: flex; justify-content: space-between; gap: 0.5rem;
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.92rem;
  padding: 0.35rem 0.45rem; border-radius: 8px;
}
.sidebar-nav a span { color: var(--muted); font-weight: 500; }
.sidebar-nav a:hover, .sidebar-nav a.is-active {
  background: var(--accent-soft); color: var(--accent);
}
.sidebar-clear {
  text-align: center; font-weight: 600; text-decoration: none; color: var(--muted);
  font-size: 0.9rem;
}
.sidebar-clear:hover { color: var(--accent); }
.jobs-main { min-width: 0; }

.job-list {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
.adsterra-banner {
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.5rem;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.job-card-ad {
  background: var(--surface);
  border: 1px solid var(--line);
}
.job-card-ad .job-card-ad-title {
  color: var(--ink);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.job-card-ad-slot {
  margin: 0.65rem 0 0.35rem;
}
.adsterra-banner--job {
  background: transparent;
  border: 0;
  border-radius: 10px;
  padding: 0;
  min-height: 90px;
}
.adsterra-banner iframe,
.adsterra-sidebar-ad iframe,
.adsterra-job-detail iframe {
  display: block;
  max-width: 100%;
  margin: auto;
}
.adsterra-job-detail {
  margin: 0 0 1rem;
  min-height: 60px;
  overflow: hidden;
}
.job-card {
  min-width: 0;
  overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1rem 1.1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.job-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.job-card-partner {
  border-color: rgba(103, 61, 230, 0.35);
  background:
    linear-gradient(145deg, rgba(103, 61, 230, 0.1), rgba(254, 212, 33, 0.08)),
    var(--surface);
  box-shadow: 0 0 0 1px rgba(103, 61, 230, 0.12);
}
.job-card-partner:hover {
  border-color: rgba(103, 61, 230, 0.5);
  box-shadow: 0 0 0 1px rgba(103, 61, 230, 0.18), var(--shadow);
}
.job-card-partner .job-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.job-card-partner .job-card-title a {
  color: #4c1d95;
}
.job-card-partner .job-card-title a:hover {
  color: var(--accent);
}
.job-card-partner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  min-height: 2.6rem;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  background: #5b21b6;
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.25;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(91, 33, 182, 0.28);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.job-card-partner-btn:hover,
.job-card-partner-btn:focus-visible {
  background: #4c1d95;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(91, 33, 182, 0.34);
  outline: none;
}
.job-card-partner-systeme {
  border-color: rgba(37, 99, 235, 0.4);
  background:
    linear-gradient(145deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.08)),
    var(--surface);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.14);
}
.job-card-partner-systeme:hover {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2), var(--shadow);
}
.job-card-partner-systeme .job-card-title a {
  color: #1d4ed8;
}
.job-card-partner-systeme .job-card-title a:hover {
  color: #2563eb;
}
.job-card-partner-systeme .job-card-partner-btn {
  background: #2563eb;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.3);
}
.job-card-partner-systeme .job-card-partner-btn:hover,
.job-card-partner-systeme .job-card-partner-btn:focus-visible {
  background: #1d4ed8;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.36);
}
.job-card-title {
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.job-card-title a {
  color: var(--ink);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.job-card-title a:hover { color: var(--accent); }
.job-card-meta {
  display: flex; flex-wrap: wrap; gap: 0.45rem 0.85rem;
  margin: 0 0 0.55rem; color: var(--muted); font-size: 0.92rem;
  min-width: 0;
}
.job-card-meta span {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.job-card time { font-size: 0.82rem; color: var(--muted); }
.job-card-tags, .chip-cloud {
  list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.45rem;
  min-width: 0;
  max-width: 100%;
}
.chip-cloud > li {
  min-width: 0;
  max-width: 100%;
}
.tag, .chip-cloud a, .chip-cloud span {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.28rem 0.65rem; border-radius: 999px;
  background: var(--accent-soft); color: var(--ink);
  text-decoration: none; font-size: 0.86rem; font-weight: 600;
  border: 1px solid transparent;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.job-skills > li > span {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.25;
}
.chip-cloud a:hover { border-color: rgba(0, 122, 251, 0.35); }
.chip-cloud span:last-child, .tag span, .chip-cloud a span {
  color: var(--muted); font-weight: 500;
}
.tag-muted { background: rgba(120, 170, 255, 0.08); }

.pagination {
  display: flex;
  gap: 0.65rem 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.pagination-nav {
  font-weight: 700;
  text-decoration: none;
  color: var(--accent);
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
}
.pagination-nav.is-disabled {
  color: var(--muted);
  opacity: 0.55;
  pointer-events: none;
}
.pagination-pages {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.pagination-pages a,
.pagination-pages .is-current {
  display: inline-flex;
  min-width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.45rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.pagination-pages a:hover {
  border-color: rgba(0, 122, 251, 0.35);
  color: var(--accent);
}
.pagination-pages .is-current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.pagination-ellipsis {
  padding: 0 0.2rem;
  color: var(--muted);
  font-weight: 700;
}

.breadcrumbs ol {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0.35rem;
  padding: 1rem 0 0; margin: 0 auto; width: min(100% - 2rem, var(--max));
  font-size: 0.88rem; color: var(--muted);
}
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 0.35rem; color: var(--line); }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); }

.job-page { padding-top: 1.25rem; }
.job-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 960px) {
  .job-layout {
    grid-template-columns: minmax(0, 1fr) minmax(16.5rem, 19rem);
    gap: 1.75rem;
  }
}
.job-main { min-width: 0; display: grid; gap: 1.1rem; }
.job-hero {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.35rem 1.35rem 1.25rem;
  box-shadow: var(--shadow);
  animation: rise 0.35s ease;
}
.job-hero-tags {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
  margin-bottom: 0.85rem;
}
.job-pill {
  display: inline-flex; align-items: center;
  padding: 0.28rem 0.7rem; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  text-decoration: none; font-size: 0.82rem; font-weight: 700;
}
.job-pill:hover { color: #005fcc; }
.job-pill-muted {
  background: rgba(120, 170, 255, 0.08); color: var(--muted); font-weight: 600;
}
.job-title {
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  margin: 0 0 0.55rem;
  max-width: 40rem;
}
.job-company-line {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.35rem 0.45rem; margin: 0 0 1.1rem;
  color: var(--muted); font-size: 0.98rem;
}
.job-company-name { color: var(--ink); font-weight: 700; font-size: 1.05rem; }
.job-meta-dot { opacity: 0.5; }
.job-hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.job-seo-intro {
  margin: 0.85rem 0 0;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.55;
}
.job-seo-faq { margin-top: 1.5rem; }

.job-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.2rem 1.3rem 1.3rem;
  box-shadow: var(--shadow);
  min-width: 0;
  overflow-x: clip;
}
.job-section-title {
  font-size: 1.05rem;
  margin: 0 0 0.85rem;
  letter-spacing: -0.01em;
}
.job-description {
  max-width: 46rem;
  color: var(--ink);
}
.job-description :where(h1, h2, h3, h4) {
  font-family: var(--display);
  margin: 1.35rem 0 0.55rem;
  font-size: 1.15rem;
}
.job-description :where(p, ul, ol) {
  margin: 0 0 0.9rem;
  max-width: none;
}
.job-description :where(ul, ol) { padding-left: 1.2rem; }
.job-description a { word-break: break-word; }
.source-note {
  margin: 1.35rem 0 0;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--accent);
  background: rgba(0, 122, 251, 0.1);
  border-radius: 0 10px 10px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.job-aside {
  min-width: 0;
  display: grid;
  gap: 0.85rem;
}
.job-aside > .jobs-banners {
  display: grid;
  position: static;
  top: auto;
  width: 100%;
  min-width: 0;
}
.job-aside .adsterra-sidebar-ad {
  width: 100%;
  max-width: 100%;
  margin: 0 0 0.85rem;
  text-align: left;
}
.job-aside .adsterra-sidebar-ad > [id^="container-"] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0;
}
.job-aside .adsterra-sidebar-ad iframe,
.job-aside .adsterra-sidebar-ad img,
.job-aside .adsterra-sidebar-ad a {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}
.job-aside .adsterra-sidebar-ad img {
  height: auto !important;
  object-fit: cover;
}
@media (min-width: 960px) {
  .job-aside {
    position: sticky;
    top: 4.75rem;
  }
}
.inner-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 960px) {
  .inner-layout {
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 16rem);
    gap: 1.75rem;
  }
  .inner-layout > .jobs-banners {
    display: grid;
  }
}
.inner-main { min-width: 0; }
.job-aside-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.1rem 1.15rem 1.2rem;
  box-shadow: var(--shadow);
  animation: rise 0.4s ease;
}
.job-aside-secondary { box-shadow: none; }
.job-aside-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.job-aside-facts {
  margin: 0 0 1rem;
  display: grid;
  gap: 0.7rem;
}
.job-aside-facts div {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
}
.job-aside-facts div:last-child { border-bottom: 0; padding-bottom: 0; }
.job-aside-facts dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.job-aside-facts dd {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
  word-break: break-word;
}
.job-aside-apply,
.job-aside-wa { width: 100%; margin-bottom: 0.55rem; }
.job-aside-note {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  line-height: 1.4;
}
.job-aside-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}
.job-aside-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.job-aside-links a:hover { color: var(--accent); }

.job-related {
  margin-top: 0.35rem;
  padding-top: 0.5rem;
}

.prose :where(p, ul, ol) { max-width: 42rem; }

.contact-form {
  display: grid;
  gap: 0.85rem;
  max-width: 36rem;
  margin-top: 1.25rem;
}
.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font: inherit;
  background: #fbfdff;
  color: var(--ink);
}
.contact-form textarea { min-height: 9rem; resize: vertical; }
.contact-form .hp,
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}
.contact-alert {
  max-width: 36rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  margin: 0 0 1rem;
}
.contact-alert.is-ok { border-color: #9ad0b1; background: #f0faf4; }
.contact-alert.is-err { border-color: #e2a8a8; background: #fff5f5; }

.wa-band {
  text-align: center; background: var(--surface); border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px); padding: 2rem 1.25rem; box-shadow: var(--shadow);
}
.count-line { margin: 0.75rem 0 1rem; }

.site-footer {
  margin-top: 2rem; border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72); padding: 2.5rem 0 1.25rem;
}
.footer-grid {
  display: grid; gap: 1.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-heading { font-size: 0.95rem; margin: 0 0 0.65rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.35rem; }
.footer-links a { color: var(--ink); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.footer-base { margin-top: 1.75rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: 0.88rem; color: var(--muted); }
.footer-disclaimer { margin: 0.55rem 0 0; max-width: 42rem; font-size: 0.75rem; line-height: 1.45; color: var(--muted); opacity: 0.9; }

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .header-row__end {
    gap: 0.65rem;
  }
  .site-nav {
    display: none; position: absolute; left: 1rem; right: 1rem; top: 4.1rem;
    background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
    padding: 0.85rem; flex-direction: column; align-items: flex-start;
    box-shadow: var(--shadow);
    z-index: 2;
  }
  .site-nav.is-open { display: flex; animation: rise 0.25s ease; }
  .header-row__cta {
    position: fixed;
    right: 1.15rem;
    bottom: calc(1.15rem + 3.35rem + 0.75rem + env(safe-area-inset-bottom, 0px));
    z-index: 1099;
  }
  .header-row__cta .header-cta-btn {
    padding: 0.48rem 0.65rem 0.48rem 0.5rem;
    font-size: 0.74rem;
    gap: 0.32rem;
    max-width: calc(100vw - 1.7rem);
    box-shadow:
      0 10px 28px rgba(15, 118, 110, 0.38),
      0 2px 6px rgba(0, 0, 0, 0.08);
  }
  .header-row__cta .header-cta-btn__discount {
    font-size: 0.56rem;
    padding: 0.14rem 0.34rem;
  }
  .header-row__cta .header-cta-btn__arrow {
    width: 1.1rem;
    height: 1.1rem;
    font-size: 0.72rem;
  }
}
@media (max-width: 640px) {
  .header-row__cta {
    right: 0.85rem;
    bottom: calc(0.85rem + 3.1rem + 0.75rem + env(safe-area-inset-bottom, 0px));
  }
  .header-row__cta .header-cta-btn {
    max-width: calc(100vw - 1.7rem);
  }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.seo-copy, .seo-faq { margin-top: 2rem; max-width: 42rem; }
.seo-faq details {
  border: 1px solid var(--line); border-radius: 10px; padding: 0.75rem 0.9rem;
  margin-bottom: 0.5rem; background: var(--surface);
}
.seo-faq summary { cursor: pointer; font-weight: 700; }
.seo-faq p { margin: 0.5rem 0 0; color: var(--muted); }
