/* Behan Ji The Sarathi — Brand System */
:root {
  --magenta: #c2186b;
  --magenta-deep: #8e1050;
  --indigo: #3d1a6e;
  --indigo-deep: #24103f;
  --plum: #5b1f7a;
  --blush: #f8eef4;
  --cream: #faf7f5;
  --ink: #160e20;
  --muted: #493f53;
  --line: rgba(61, 26, 110, 0.18);
  --white: #ffffff;
  --grad: linear-gradient(135deg, #c2186b 0%, #8b2a8f 48%, #3d1a6e 100%);
  --grad-soft: linear-gradient(160deg, #fdf2f7 0%, #f3eaf8 45%, #ebe4f5 100%);
  --shadow: 0 18px 50px rgba(36, 16, 63, 0.12);
  --radius: 14px;
  --font-display: "Sora", "Noto Sans Devanagari", system-ui, sans-serif;
  --font-body: "Sora", "Noto Sans Devanagari", system-ui, sans-serif;
  --header-h: 122px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
}
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}
input::placeholder,
textarea::placeholder {
  font-family: inherit;
  font-weight: 400;
  color: #62576d;
  opacity: 1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-body);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 600;
  letter-spacing: -0.02em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--indigo); color: #fff; padding: 0.5rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 0; }

/* Site loading splash */
.site-loader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  background: var(--cream, #faf7f5);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.site-loader img {
  max-height: 88px; width: auto;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
.site-loader-bar {
  width: 120px; height: 3px; border-radius: 999px;
  background: rgba(61, 26, 110, 0.12); overflow: hidden;
}
.site-loader-bar span {
  display: block; height: 100%; width: 40%;
  background: var(--grad);
  animation: loaderSlide 1s ease-in-out infinite;
}
.site-loader.is-done {
  opacity: 0; visibility: hidden; pointer-events: none;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.85; }
}
@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(280%); }
}

/* Header — top bar + floating pill nav */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  box-shadow: 0 6px 22px rgba(36,16,63,.055);
}
.header-topbar {
  background: #fff;
  color: #4e4259;
  font-size: 0.74rem;
  border-bottom: 1px solid rgba(61,26,110,.09);
}
.header-topbar-inner {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: 0.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.header-top-left,
.header-top-right,
.header-top-social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.header-top-left a,
.header-top-right a {
  color: #4f435a;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.01em;
}
.header-top-left a svg {
  color: var(--magenta);
  opacity: 1;
  stroke-width: 1.7;
}
.header-top-left a:hover,
.header-top-social a:hover { color: var(--magenta); }
.header-top-tagline {
  color: #695d74;
  opacity: 1;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}
.header-top-social a {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #f8f1fb;
  border: 1px solid rgba(112,43,146,.12);
  color: #642781;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.header-top-social a:hover {
  color: #fff;
  background: linear-gradient(135deg, #c2186b, #702b92);
  border-color: transparent;
}

.header-shell {
  background: #fff;
  padding: 0.45rem 0.75rem 0.55rem;
}
.header-pill {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 7px 22px rgba(36, 16, 63, 0.07);
  border: 1px solid rgba(61, 26, 110, 0.09);
  padding: 0.4rem 0.75rem 0.4rem 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 72px;
  position: relative;
}
.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0.1rem 0.2rem;
}
.brand-logo {
  height: 56px;
  width: auto;
  max-width: min(260px, 32vw);
  object-fit: contain;
  object-position: left center;
  transition: transform 0.25s ease;
}
.brand:hover .brand-logo { transform: scale(1.02); }

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  margin-left: auto;
  margin-right: auto;
  flex: 1;
  min-width: 0;
}
.site-nav a {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 56px;
  padding: 0.28rem 0.4rem 0.4rem;
  border-radius: 12px;
  color: #4a4458;
  font-size: 0.64rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  transition: color 0.2s, background 0.2s;
  background: transparent;
}
.site-nav a::after { display: none; }
.site-nav .nav-ico {
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 9px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.site-nav a:hover {
  color: var(--indigo);
  background: transparent;
}
.site-nav a:hover .nav-ico {
  background: rgba(61, 26, 110, 0.07);
}
.site-nav a.is-active {
  background: transparent;
  color: var(--indigo-deep);
  font-weight: 600;
}
.site-nav a.is-active .nav-ico {
  background: var(--indigo);
  color: #fff;
  box-shadow: 0 6px 14px rgba(61, 26, 110, 0.28);
}
.site-nav a.is-active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--magenta);
  transform: translateX(-50%);
}

.header-actions {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-shrink: 0;
}
.btn-header {
  padding: 0.45rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 500;
  border-radius: 999px;
  gap: 0.28rem;
}
.btn-header .nav-ico {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-actions .btn-ghost {
  border-color: rgba(61, 26, 110, 0.18);
  color: var(--indigo);
  background: #fff;
}
.header-actions .btn-ghost:hover {
  border-color: rgba(61, 26, 110, 0.35);
  background: rgba(61, 26, 110, 0.04);
}
.header-actions .btn-primary {
  box-shadow: 0 6px 16px rgba(194, 24, 107, 0.24);
}

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; padding: 8px; flex-direction: column; justify-content: center; gap: 5px;
  margin-left: auto;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--indigo); border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Mobile drawer — hidden on desktop */
.mobile-drawer,
.mobile-drawer-backdrop,
.mobile-bottom-nav {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.7rem 1.25rem; border-radius: 999px; font-family: var(--font-body);
  font-weight: 600; font-size: 0.9rem; border: 1.5px solid transparent;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--grad); color: #fff; box-shadow: 0 8px 24px rgba(194, 24, 107, 0.28);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(61, 26, 110, 0.35); }
.btn-ghost {
  background: transparent; border-color: rgba(61, 26, 110, 0.25); color: var(--indigo);
}
.btn-ghost:hover { background: var(--blush); }
.btn-outline {
  background: #fff; border-color: var(--magenta); color: var(--magenta-deep);
}
.btn-block { width: 100%; }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.82rem; }

/* Flash */
.flash {
  max-width: 1200px; margin: 0.75rem auto 0; padding: 0.85rem 1.25rem;
  border-radius: var(--radius); font-weight: 500;
  animation: slideDown 0.4s ease;
}
.flash-success { background: #e8f6ef; color: #0f5c38; }
.flash-error { background: #fdecef; color: #8a1c3a; }
.flash-info { background: #efeaf8; color: var(--indigo); }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero — full bleed */
.hero {
  position: relative; min-height: calc(100vh - var(--header-h));
  display: grid; align-items: end;
  background:
    linear-gradient(105deg, rgba(26, 18, 36, 0.78) 0%, rgba(61, 26, 110, 0.55) 45%, rgba(194, 24, 107, 0.35) 100%),
    var(--grad-soft);
  color: #fff; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(255,255,255,0.14), transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(194, 24, 107, 0.35), transparent 55%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c2 8 8 14 16 16-8 2-14 8-16 16-2-8-8-14-16-16 8-2 14-8 16-16z' fill='%23fff'/%3E%3C/svg%3E");
  animation: drift 40s linear infinite;
}
@keyframes drift {
  from { background-position: 0 0; }
  to { background-position: 240px 120px; }
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; width: 100%; margin: 0 auto;
  padding: 4rem 1.25rem 5rem;
}
.hero-logo {
  width: min(420px, 88vw); margin-bottom: 1.75rem;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.25));
  animation: fadeUp 0.9s ease both;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 14ch; margin-bottom: 0.75rem;
  animation: fadeUp 0.9s 0.12s ease both;
}
.hero .lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 36ch; opacity: 0.92; margin-bottom: 1.75rem;
  animation: fadeUp 0.9s 0.22s ease both;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  animation: fadeUp 0.9s 0.32s ease both;
}
.hero .btn-primary { background: #fff; color: var(--indigo-deep); box-shadow: none; border: 1px solid #fff; }
.hero .btn-ghost { border-color: rgba(255,255,255,0.85); color: #fff; background: rgba(255,255,255,0.08); }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.16); }

/* Simple homepage hero (no banner image) */
.hero-simple {
  min-height: auto;
  align-items: center;
  text-align: center;
  background: linear-gradient(115deg, #2a1250 0%, #5b1f7a 38%, #a01f7a 72%, #c2186b 100%);
  padding: 3.25rem 1.25rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero-simple::before {
  background:
    radial-gradient(ellipse 50% 55% at 12% 18%, rgba(255,255,255,0.14), transparent 55%),
    radial-gradient(ellipse 40% 45% at 88% 80%, rgba(255,255,255,0.1), transparent 50%);
}
.hero-simple-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.55) 1px, transparent 0);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 85%);
}
.hero-simple-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.hero-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.hero-simple h1 {
  font-family: var(--font-body);
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.18;
  max-width: 16ch;
  margin: 0 auto 0.85rem;
  animation: none;
  color: #fff;
}
.hero-simple h1 em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(90deg, #fff 0%, #ffd0e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-simple .lead {
  margin: 0 auto 1.55rem;
  max-width: 44ch;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.9;
  animation: none;
  color: rgba(255, 255, 255, 0.92);
}
.hero-simple .hero-cta {
  justify-content: center;
  gap: 0.65rem;
  animation: none;
}
.hero-simple .btn {
  min-height: 44px;
  padding: 0.65rem 1.2rem;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: 999px;
}
.hero-simple .btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-simple .btn-primary {
  background: #fff;
  color: var(--indigo-deep);
  border: none;
  box-shadow: 0 10px 26px rgba(36, 16, 63, 0.22);
}
.hero-simple .btn-primary:hover {
  background: #fff7fb;
}
.hero-simple .btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}
.hero-simple .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Homepage photographic hero */
.page-home .hero-simple {
  width: min(100%, 1400px);
  min-height: 410px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(61,26,110,.06);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 10px 34px rgba(36,16,63,.045);
}
.page-home .hero-simple::before {
  display: none;
}
.page-home .hero-simple-bg {
  display: none;
}
.page-home .hero-simple-inner {
  min-height: 410px;
  max-width: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 2.15rem 3rem;
  isolation: isolate;
}
.page-home .hero-simple-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-home .hero-simple-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, #fff 38%, rgba(255,255,255,.94) 43%, rgba(255,255,255,.3) 48%, transparent 54%);
  pointer-events: none;
}
.page-home .hero-simple-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 1;
  filter: none;
  image-rendering: -webkit-optimize-contrast;
}
.hero-simple-copy {
  position: relative;
  z-index: 2;
  width: 49%;
  max-width: 610px;
}
.page-home .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem 0.35rem 0.4rem;
  color: #b41460;
  background: #fff0f6;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: .13em;
}
.page-home .hero-eyebrow span {
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta);
  background: #fff;
  border-radius: 50%;
}
.page-home .hero-eyebrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.page-home .hero-simple h1 {
  max-width: 11ch;
  margin: 0;
  color: #201048;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.055em;
}
.page-home .hero-simple h1 em {
  color: var(--magenta);
  background: linear-gradient(90deg, #d91775, #af218d);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-title-line {
  display: block;
  width: 50px;
  height: 3px;
  margin: 1rem 0 1.05rem;
  background: linear-gradient(90deg, #ee348c, #aa268c);
  border-radius: 999px;
}
.hero-title-line::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  margin-left: 58px;
  border-radius: 50%;
  background: #6e2593;
}
.hero-hindi {
  margin: 0 0 0.05rem;
  color: #4e3d61;
  font-size: 0.92rem;
  font-weight: 600;
}
.page-home .hero-simple .lead {
  max-width: 42ch;
  margin: 0 0 1.4rem;
  color: #51465d;
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 1;
}
.page-home .hero-simple .hero-cta {
  justify-content: flex-start;
  gap: 0.65rem;
}
.page-home .hero-simple .btn {
  min-height: 46px;
  gap: 0.65rem;
  padding: 0.68rem 1.15rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.page-home .hero-simple .btn span {
  margin-left: 0.25rem;
  font-size: 1rem;
}
.page-home .hero-simple .btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #ee147e, #67239f);
  box-shadow: 0 8px 19px rgba(126,33,143,.2);
}
.page-home .hero-simple .btn-primary:hover {
  color: #fff;
  background: linear-gradient(90deg, #d31270, #562087);
}
.page-home .hero-simple .btn-ghost {
  color: #4e2874;
  background: rgba(255,255,255,.85);
  border: 1px solid #8964aa;
  backdrop-filter: blur(6px);
}
.page-home .hero-simple .btn-ghost:hover {
  color: #fff;
  background: #64258b;
  border-color: #64258b;
}
@media (max-width: 900px) {
  .page-home .hero-simple {
    min-height: 390px;
  }
  .page-home .hero-simple-inner {
    min-height: 390px;
    padding: 1.8rem 1.5rem;
  }
  .page-home .hero-simple-visual img {
    object-position: 58% 28%;
  }
  .page-home .hero-simple h1 {
    font-size: clamp(2rem, 5.5vw, 3rem);
  }
}
@media (max-width: 680px) {
  .page-home .hero-simple {
    border-radius: 0 0 15px 15px;
  }
  .page-home .hero-simple-inner {
    display: block;
    padding: 1.5rem 1rem 0;
  }
  .hero-simple-copy {
    width: 100%;
    max-width: none;
    text-align: center;
  }
  .page-home .hero-eyebrow {
    margin-bottom: 0.75rem;
  }
  .page-home .hero-simple h1 {
    max-width: 12ch;
    margin: 0 auto;
    font-size: 2.15rem;
  }
  .hero-title-line {
    margin-left: auto;
    margin-right: auto;
  }
  .page-home .hero-simple .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .page-home .hero-simple .hero-cta {
    justify-content: center;
  }
  .page-home .hero-simple .btn {
    width: auto;
  }
  .page-home .hero-simple-visual {
    position: relative;
    height: 225px;
    margin: 0 -1rem;
  }
  .page-home .hero-simple-visual::after {
    display: none;
  }
  .page-home .hero-simple-visual img {
    object-position: 68% 25%;
  }
}
@media (max-width: 420px) {
  .page-home .hero-simple .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
  }
  .page-home .hero-simple .btn {
    width: 100%;
  }
  .page-home .hero-simple-visual {
    height: 240px;
  }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Homepage banner slider */
.banner-slider {
  position: relative;
  overflow: hidden;
  background: #f3eef8;
  max-width: 1200px;
  margin: 0.85rem auto 0;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(61, 26, 110, 0.1);
  border: 1px solid rgba(61, 26, 110, 0.06);
}
.banner-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 220px;
  max-height: 520px;
}
.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  z-index: 1;
}
.banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.banner-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.banner-slide-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.banner-slide-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  padding: 1.25rem 1.35rem 1.4rem;
  background: linear-gradient(180deg, transparent 0%, rgba(36, 16, 63, 0.72) 100%);
  color: #fff;
  pointer-events: none;
}
.banner-slide-copy {
  max-width: 520px;
  pointer-events: auto;
}
.banner-slide-copy h2 {
  margin: 0 0 0.3rem;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.banner-slide-copy p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  opacity: 0.92;
  font-weight: 400;
}
.banner-slide-copy .btn {
  pointer-events: auto;
  background: #fff;
  color: var(--indigo-deep);
  border: none;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
}
.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--indigo);
  box-shadow: 0 6px 18px rgba(36, 16, 63, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.banner-nav svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.banner-prev { left: 0.75rem; }
.banner-next { right: 0.75rem; }
.banner-nav:hover { background: #fff; color: var(--magenta); }
.banner-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.7rem;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}
.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 0.2s, background 0.2s;
}
.banner-dot.is-active {
  width: 22px;
  background: #fff;
}

@media (max-width: 720px) {
  .banner-slider {
    margin: 0.55rem 0.75rem 0;
    border-radius: 14px;
  }
  .banner-track {
    aspect-ratio: 16 / 10;
    min-height: 180px;
  }
  .banner-nav { width: 32px; height: 32px; }
  .banner-prev { left: 0.45rem; }
  .banner-next { right: 0.45rem; }
  .banner-slide-overlay { padding: 0.9rem 1rem 1.1rem; }
  .banner-slide-copy h2 { font-size: 1rem; }
  .banner-slide-copy p { font-size: 0.8rem; margin-bottom: 0.55rem; }
}

/* Sections */
.section {
  max-width: 1200px; margin: 0 auto; padding: 3rem 1.25rem;
}
.section-head {
  max-width: 580px; margin-bottom: 1.5rem;
}
.eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  color: transparent; margin-bottom: 0.35rem;
}
.section-head h2 {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
  color: var(--indigo-deep);
}
.section-head p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
}

.band {
  background: var(--grad-soft);
  border-block: 1px solid var(--line);
}
.band .section { padding-top: 2.25rem; padding-bottom: 2.25rem; }
.band-dark {
  background: var(--indigo-deep);
  color: #fff;
}
.band-dark .section { padding-top: 2.75rem; padding-bottom: 2.75rem; }
.band-dark .section-head p { color: rgba(255,255,255,0.75); }

/* Compact professional CTA strip */
.cta-strip {
  max-width: 1200px;
  margin: 0 auto 0.5rem;
  padding: 0 1.25rem 2.5rem;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #fdf2f7 100%);
  border: 1px solid rgba(194, 24, 107, 0.12);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(61, 26, 110, 0.06);
}
.cta-strip-copy {
  flex: 1 1 280px;
  min-width: 0;
  max-width: 560px;
}
.cta-strip-copy .eyebrow {
  margin-bottom: 0.25rem;
}
.cta-strip-copy h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
  color: var(--indigo-deep);
  line-height: 1.25;
}
.cta-strip-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
}
.cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  flex-shrink: 0;
}
.cta-strip-actions .btn {
  padding: 0.58rem 1.1rem;
  font-size: 0.84rem;
  font-weight: 600;
}

/* Homepage journey CTA */
.cta-strip {
  max-width: 1400px;
  padding: 0 1.25rem 2.5rem;
}
.cta-strip-inner {
  display: block;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(61,26,110,.08);
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(36,16,63,.065);
}
.cta-strip-main {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 280px;
}
.cta-strip-copy {
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2.25rem;
  border-right: 1px solid rgba(61,26,110,.08);
}
.cta-strip-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.55rem;
  color: var(--magenta);
  background: none;
  -webkit-text-fill-color: currentColor;
  font-size: 0.66rem;
  letter-spacing: .12em;
}
.cta-strip-copy .eyebrow svg {
  width: 22px;
  height: 22px;
  padding: 4px;
  overflow: visible;
  color: var(--magenta);
  background: #fff2f8;
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cta-strip-copy h2 {
  max-width: 410px;
  margin: 0.8rem 0 0;
  color: #18113f;
  font-size: clamp(1.8rem, 3.4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.045em;
}
.cta-strip-copy h2 em {
  display: block;
  color: var(--magenta);
  font-style: normal;
}
.cta-title-line {
  width: 36px;
  height: 3px;
  margin: 0.75rem 0 0.8rem;
  background: linear-gradient(90deg, #ef5aa6, #d71e7a);
  border-radius: 999px;
}
.cta-title-line::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  margin-left: 43px;
  border-radius: 50%;
  background: #702b92;
}
.cta-strip-copy p {
  max-width: 45ch;
  color: #6e647a;
  font-size: 0.79rem;
  line-height: 1.55;
}
.cta-strip-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.8rem 2rem 1.6rem;
}
.cta-journey-art {
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cta-journey-art svg {
  display: block;
  width: min(100%, 430px);
  height: auto;
}
.cta-strip-actions {
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 0.75rem;
  flex-wrap: nowrap;
}
.cta-strip-actions .btn {
  min-height: 49px;
  display: inline-flex;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-size: 0.73rem;
  white-space: nowrap;
}
.cta-strip-actions .btn svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cta-strip-actions .btn span {
  margin-left: auto;
  font-size: 1rem;
}
.cta-strip-actions .btn-primary {
  background: linear-gradient(90deg, #eb1680, #6725a1);
  box-shadow: 0 8px 18px rgba(126,33,143,.2);
}
.cta-strip-actions .btn-ghost {
  color: #5b1f7a;
  background: #fff;
  border: 1px solid #8960ae;
}
.cta-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  padding: 1rem 1.8rem;
  background: linear-gradient(100deg, #fff2f8, #fbf5fb 55%, #faf2fa);
  border-top: 1px solid rgba(194,24,107,.06);
}
.cta-trust-row > div {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.15rem 1rem;
}
.cta-trust-row > div:not(:last-child) {
  border-right: 1px solid rgba(61,26,110,.11);
}
.cta-trust-row > div > span {
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta);
  background: rgba(255,255,255,.62);
  border-radius: 50%;
}
.cta-trust-row svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cta-trust-row p {
  min-width: 0;
  margin: 0;
}
.cta-trust-row strong,
.cta-trust-row small {
  display: block;
}
.cta-trust-row strong {
  color: #261d4a;
  font-size: 0.7rem;
  font-weight: 600;
}
.cta-trust-row small {
  margin-top: 0.12rem;
  color: #81768c;
  font-size: 0.58rem;
}
@media (max-width: 860px) {
  .cta-strip-main {
    grid-template-columns: 1fr;
  }
  .cta-strip-copy {
    padding: 1.6rem 1.25rem 0.5rem;
    border-right: 0;
    text-align: center;
    align-items: center;
  }
  .cta-strip-copy .eyebrow {
    align-self: center;
  }
  .cta-strip-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-strip-side {
    padding: 0 1.25rem 1.25rem;
  }
  .cta-journey-art {
    min-height: 150px;
  }
}
@media (max-width: 600px) {
  .cta-strip {
    padding: 0 0.65rem 1.5rem;
  }
  .cta-strip-copy h2 {
    font-size: 1.65rem;
  }
  .cta-strip-actions {
    grid-template-columns: 1fr;
  }
  .cta-trust-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
  }
  .cta-trust-row > div {
    justify-content: flex-start;
    padding: 0.1rem;
  }
  .cta-trust-row > div:not(:last-child) {
    padding-bottom: 0.65rem;
    border-right: 0;
    border-bottom: 1px solid rgba(61,26,110,.09);
  }
}

/* Feature grid — professional panes */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.why-section .section-head {
  margin-bottom: 1.35rem;
}
.feature {
  padding: 1.15rem 1.25rem 0.35rem 0;
  border-top: none;
  border-image: none;
  border-right: 1px solid var(--line);
  animation: fadeUp 0.7s ease both;
}
.feature:last-child {
  border-right: 0;
  padding-right: 0;
}
.feature:nth-child(2) { animation-delay: 0.08s; padding-left: 1.25rem; }
.feature:nth-child(3) { animation-delay: 0.16s; padding-left: 1.25rem; }
.feature-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  margin-bottom: 0.7rem;
  background: rgba(194, 24, 107, 0.08);
  color: var(--magenta);
}
.feature-ico svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature h3 {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--indigo-deep);
  letter-spacing: -0.01em;
}
.feature p {
  color: var(--muted);
  margin: 0;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 32ch;
}

/* Stats strip */
.stats-band .section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat {
  padding: 0.35rem 0.75rem;
  position: relative;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(61, 26, 110, 0.14);
}
.stat strong {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.15;
  margin-bottom: 0.2rem;
}
.stat span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Homepage journey showcase */
.why-showcase {
  max-width: 1400px;
  margin: 2rem auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 2% 2%, rgba(194,24,107,.025), transparent 18%),
    #fff;
  border: 1px solid rgba(61,26,110,.07);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(36,16,63,.035);
}
.why-showcase .section {
  padding: 2.1rem 2rem 1.7rem;
}
.why-showcase-intro {
  min-height: 150px;
  display: grid;
  grid-template-columns: minmax(0,1.4fr) minmax(260px,.8fr);
  align-items: center;
  gap: 2rem;
}
.why-showcase .section-head {
  max-width: 600px;
  margin: 0;
}
.why-showcase .section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--magenta);
  background: none;
  -webkit-text-fill-color: currentColor;
  font-size: 0.65rem;
  letter-spacing: .1em;
}
.why-showcase .section-head .eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--magenta);
}
.why-showcase .section-head h2 {
  margin: 0.55rem 0 0;
  color: #17113f;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.04em;
}
.why-title-line {
  display: block;
  width: 32px;
  height: 2px;
  margin: 0.55rem 0 0.65rem;
  border-radius: 999px;
  background: var(--magenta);
}
.why-showcase .section-head p {
  max-width: 58ch;
  color: #6f657d;
  font-size: 0.77rem;
  line-height: 1.55;
}
.why-journey-art {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.why-journey-art svg {
  width: min(100%, 340px);
  height: auto;
  display: block;
}
.why-showcase .feature-grid {
  gap: 2.8rem;
  margin-top: 0.6rem;
}
.why-showcase .feature {
  min-height: 150px;
  display: grid;
  grid-template-columns: 48px minmax(0,1fr);
  grid-template-rows: auto 1fr;
  align-content: center;
  column-gap: 0.9rem;
  padding: 1.2rem 1.15rem !important;
  background: #fff;
  border: 1px solid rgba(61,26,110,.09);
  border-radius: 13px;
  box-shadow: 0 8px 22px rgba(36,16,63,.055);
}
.why-showcase .feature-ico {
  width: 48px;
  height: 48px;
  grid-row: 1 / 3;
  margin: 0;
  color: #c2186b;
  background: linear-gradient(135deg, #fff0f7, #faf4fc);
  border: 1px solid rgba(194,24,107,.15);
  border-radius: 50%;
}
.why-showcase .feature:nth-child(2) .feature-ico {
  color: #7130a1;
  background: linear-gradient(135deg, #f3eaff, #faf7fd);
  border-color: rgba(113,48,161,.18);
}
.why-showcase .feature:nth-child(3) .feature-ico {
  color: #c2186b;
}
.why-showcase .feature-ico svg {
  width: 22px;
  height: 22px;
}
.why-showcase .feature h3 {
  position: relative;
  margin: 0 0 0.85rem;
  color: #21184a;
  font-size: 0.82rem;
  font-weight: 600;
}
.why-showcase .feature h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.48rem;
  width: 25px;
  height: 2px;
  background: var(--magenta);
  border-radius: 999px;
}
.why-showcase .feature:nth-child(2) h3::after {
  background: #7130a1;
}
.why-showcase .feature p {
  max-width: 31ch;
  margin: 0;
  color: #70667c;
  font-size: 0.64rem;
  line-height: 1.55;
}
.why-showcase .stats-band {
  margin-top: 1.6rem;
  padding: 1rem 0.7rem;
  background: linear-gradient(100deg, #fff0f7 0%, #fbf2fb 46%, #f4effd 100%);
  border: 1px solid rgba(194,24,107,.1);
  border-radius: 13px;
}
.why-showcase .stat {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
}
.why-showcase .stat-ico {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
  color: #c2186b;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(194,24,107,.16);
  border-radius: 50%;
}
.why-showcase .stat:nth-child(even) .stat-ico {
  color: #7130a1;
  border-color: rgba(113,48,161,.16);
}
.why-showcase .stat-ico svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-showcase .stat strong {
  margin: 0;
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
}
.why-showcase .stat > span:last-child {
  margin-top: 0.2rem;
  color: #6d6379;
  font-size: 0.62rem;
  font-weight: 400;
}
@media (max-width: 960px) {
  .why-showcase {
    margin: 1.5rem 1rem;
  }
  .why-showcase-intro {
    grid-template-columns: minmax(0,1fr) 260px;
  }
  .why-showcase .feature-grid {
    gap: 0.8rem;
  }
  .why-showcase .feature {
    min-height: 145px;
  }
}
@media (max-width: 768px) {
  .why-showcase {
    margin: 1.25rem 0.65rem;
  }
  .why-showcase .section {
    padding: 1.45rem 0.85rem 1rem;
  }
  .why-showcase-intro {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .why-showcase .section-head {
    text-align: left;
  }
  .why-showcase .section-head h2 {
    font-size: 1.45rem;
  }
  .why-journey-art {
    justify-content: center;
  }
  .why-journey-art svg {
    width: min(100%, 300px);
  }
  .why-showcase .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 0.5rem;
  }
  .why-showcase .feature {
    min-height: 0;
    border-bottom: 1px solid rgba(61,26,110,.09);
  }
  .why-showcase .stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 0;
  }
  .why-showcase .stat {
    min-height: 82px;
  }
  .why-showcase .stat:nth-child(2)::after {
    display: none;
  }
}

/* Job list */
.job-list { display: flex; flex-direction: column; gap: 0; }
.job-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 1.05rem 0.15rem;
  border-bottom: 1px solid rgba(61, 26, 110, 0.08);
  transition: background 0.2s, padding 0.2s;
}
.job-row:hover {
  background: rgba(61, 26, 110, 0.025);
  padding-left: 0.55rem;
  padding-right: 0.55rem;
  border-radius: 12px;
}
.job-row-main { min-width: 0; }
.job-row-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin-bottom: 0.4rem;
}
.job-row h3 {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.015em;
  color: var(--indigo-deep);
}
.job-row h3 a:hover { color: var(--magenta); }
.job-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 400;
}
.job-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}
.job-meta-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--indigo);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.7;
}
.job-row-btn {
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.78rem;
  padding: 0.4rem 0.95rem;
}
.jobs-home-cta {
  margin: 1.15rem 0 0;
}

/* Homepage latest jobs panel */
.section.jobs-home {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 2rem 2.25rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(61,26,110,.07);
  border-radius: 16px;
  box-shadow: 0 9px 30px rgba(36,16,63,.04);
}
.jobs-home .jobs-home-head {
  max-width: none;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}
.jobs-head-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta);
  background: #fff0f7;
  border-radius: 50%;
}
.jobs-head-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.jobs-home-head .eyebrow {
  margin: 0 0 0.15rem;
  color: var(--magenta);
  background: none;
  -webkit-text-fill-color: currentColor;
  font-size: 0.64rem;
  letter-spacing: .12em;
}
.jobs-home-head h2 {
  margin: 0 0 0.25rem;
  color: #18113f;
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -.035em;
}
.jobs-home-head p {
  color: #51475d;
  font-size: 0.72rem;
  font-weight: 450;
}
.home-job-list {
  gap: 0.8rem;
}
.job-row.home-job-card {
  display: grid;
  grid-template-columns: 52px minmax(0,1fr) auto;
  align-items: center;
  gap: 0.9rem;
  min-height: 88px;
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid rgba(61,26,110,.12);
  border-radius: 12px;
  box-shadow: 0 7px 19px rgba(36,16,63,.045);
}
.job-row.home-job-card:hover {
  padding-left: 1rem;
  background: #fff;
  border-color: rgba(194,24,107,.14);
  box-shadow: 0 10px 24px rgba(36,16,63,.075);
}
.home-job-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7b2da0;
  background: linear-gradient(135deg, #f2e7fb, #fbf7fd);
  border-radius: 11px;
}
.home-job-card:nth-child(2) .home-job-icon {
  color: #df5a41;
  background: linear-gradient(135deg, #fff0ea, #fff9f5);
}
.home-job-card:nth-child(3) .home-job-icon {
  color: #3977d5;
  background: linear-gradient(135deg, #eaf2ff, #f6f9ff);
}
.home-job-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-job-card .job-row-top {
  justify-content: flex-start;
  gap: 0.75rem;
}
.home-job-card .job-row-top h3 {
  margin: 0;
  color: #160d38;
  font-size: 0.88rem;
  font-weight: 650;
}
.home-job-card .job-row-top h3 a {
  color: inherit;
}
.home-job-card .pill {
  padding: 0.18rem 0.5rem;
  color: #a90f58;
  background: #fde7f1;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.home-job-card:nth-child(2) .pill {
  color: #b23e28;
  background: #fde8e1;
}
.home-job-card:nth-child(3) .pill {
  color: #245fac;
  background: #e2edfc;
}
.home-job-card .job-meta {
  gap: 0.85rem;
  margin-top: 0.45rem;
}
.home-job-card .job-meta-item {
  color: #51475c;
  font-size: 0.62rem;
  font-weight: 450;
}
.home-job-card .job-meta-item svg {
  width: 12px;
  height: 12px;
  color: #4c3c5e;
  stroke: currentColor;
  opacity: 1;
}
.home-job-card .job-row-btn {
  min-width: 88px;
  min-height: 37px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: #a2165b;
  background: #fff;
  border: 1px solid #dc4c91;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 500;
}
.home-job-card .job-row-btn span {
  font-size: 0.9rem;
}
.home-job-card .job-row-btn:hover {
  color: #fff;
  background: var(--magenta);
}
.jobs-home .jobs-home-cta {
  margin: 1.15rem 0 0;
}
.jobs-home .jobs-home-cta .btn {
  min-width: 145px;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.6rem 1rem;
  background: linear-gradient(90deg, #e9167d, #65239f);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 17px rgba(126,33,143,.18);
  font-size: 0.67rem;
}
@media (max-width: 768px) {
  .section.jobs-home {
    margin: 1.25rem 0.65rem;
    padding: 1.35rem 0.85rem 1.1rem;
  }
  .job-row.home-job-card {
    grid-template-columns: 46px minmax(0,1fr);
    gap: 0.75rem;
    padding: 0.8rem;
  }
  .home-job-icon {
    width: 44px;
    height: 44px;
  }
  .home-job-card .job-row-btn {
    grid-column: 2;
    justify-self: start;
  }
}
@media (max-width: 480px) {
  .home-job-card .job-row-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }
  .home-job-card .job-meta {
    gap: 0.45rem 0.7rem;
  }
}

/* Site-wide readability and contrast pass */
.section-head p,
.cta-strip-copy p,
.why-showcase .section-head p,
.why-showcase .feature p,
.nearby-showcase .nearby-head p,
.jobs-home-head p,
.story-author span,
.story-author small,
.story-outcome p,
.newsletter-card > p,
.footer-contact li,
.footer-contact a,
.tagline-en,
.auth-card-head p,
.auth-field-hint,
.auth-switch,
.form-shell .sub,
.job-meta,
.job-meta-item,
.card p,
.seeker-profile-heading p,
.seeker-profile-section-head p,
.seeker-profile-actions p,
.seeker-quick-copy small,
.seeker-strength-copy p {
  color: var(--muted);
}

.form-group label,
.jobs-filter-field label,
.auth-field-body label {
  color: #352a40;
}

.form-group input,
.form-group select,
.form-group textarea,
.newsletter-input input,
.jobs-field-box input,
.jobs-field-box select {
  color: #211829;
}

.footer-bottom p,
.footer-legal-mini,
.footer-legal-mini a {
  color: #51465d;
}

.mobile-bottom-nav a,
.seeker-mobile-bottom a {
  color: #5b5066;
}

/* Professional job detail */
.section.job-detail-page {
  max-width: 1200px;
  padding-top: 1.25rem;
  padding-bottom: 3rem;
}
.job-detail-breadcrumb {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  color: #6a5f75;
  font-size: 0.68rem;
}
.job-detail-breadcrumb a {
  color: var(--magenta);
  font-weight: 550;
}
.job-detail-breadcrumb > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.job-detail-hero {
  min-height: 150px;
  display: grid;
  grid-template-columns: 68px minmax(0,1fr) auto;
  align-items: center;
  gap: 1.15rem;
  padding: 1.4rem 1.5rem;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 90% 20%, rgba(194,24,107,.1), transparent 28%),
    linear-gradient(105deg, #fff 0%, #fdf5f9 60%, #f5effb 100%);
  border: 1px solid rgba(61,26,110,.09);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(36,16,63,.055);
}
.job-detail-logo {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #762a99;
  background: #fff;
  border: 1px solid rgba(61,26,110,.1);
  border-radius: 15px;
  box-shadow: 0 7px 18px rgba(36,16,63,.07);
}
.job-detail-logo svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.job-detail-title {
  min-width: 0;
}
.job-detail-category {
  display: inline-flex;
  padding: 0.24rem 0.55rem;
  color: #a90f58;
  background: #fde8f2;
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 650;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.job-detail-title h1 {
  margin: 0.45rem 0 0.35rem;
  color: #170e39;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -.035em;
}
.job-detail-title p {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: #554a60;
  font-size: 0.72rem;
}
.job-detail-title p strong {
  color: #392d45;
  font-weight: 600;
}
.job-detail-title p span {
  color: #b4aabc;
}
.job-detail-top-apply {
  min-width: 125px;
  min-height: 43px;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: linear-gradient(90deg, #e8177d, #67249e);
  box-shadow: 0 8px 19px rgba(126,33,143,.2);
}
.job-already-applied {
  min-width: 135px;
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  color: #176b3d;
  background: #eaf8ef;
  border: 1px solid #caead6;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 650;
}
.job-already-applied > span {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #22a957;
  border-radius: 50%;
  font-size: 0.58rem;
}
.job-detail-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0.7rem;
  margin: 0.85rem 0;
}
.job-detail-facts > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  background: #fff;
  border: 1px solid rgba(61,26,110,.09);
  border-radius: 11px;
  box-shadow: 0 5px 15px rgba(36,16,63,.03);
}
.job-detail-facts > div > span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #752d98;
  background: #f3ebf9;
  border-radius: 9px;
}
.job-detail-facts > div:nth-child(even) > span {
  color: #bd1765;
  background: #fdeaf3;
}
.job-detail-facts svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.job-detail-facts p {
  min-width: 0;
  margin: 0;
}
.job-detail-facts small,
.job-detail-facts strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.job-detail-facts small {
  margin-bottom: 0.12rem;
  color: #6c6176;
  font-size: 0.56rem;
}
.job-detail-facts strong {
  color: #30263a;
  font-size: 0.68rem;
  font-weight: 600;
}
.job-detail-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  align-items: start;
  gap: 1rem;
}
.job-detail-content {
  display: grid;
  gap: 0.8rem;
}
.job-detail-card {
  padding: 1.2rem 1.3rem;
  background: #fff;
  border: 1px solid rgba(61,26,110,.09);
  border-radius: 13px;
  box-shadow: 0 6px 18px rgba(36,16,63,.035);
}
.job-detail-section-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.job-detail-section-head > span {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta);
  background: #fff0f7;
  border-radius: 8px;
}
.job-detail-section-head svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.job-detail-section-head h2 {
  margin: 0;
  color: #24183d;
  font-size: 0.88rem;
  font-weight: 650;
}
.job-detail-card > p {
  margin: 0;
  color: #51475b;
  font-size: 0.76rem;
  line-height: 1.72;
}
.job-detail-apply-card {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: 1.15rem;
  background: #fff;
  border: 1px solid rgba(61,26,110,.1);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(36,16,63,.07);
  scroll-margin-top: 1rem;
}
.job-apply-modal[hidden] {
  display: none;
}
.job-apply-modal {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.job-apply-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(24,14,37,.58);
  border: 0;
  backdrop-filter: blur(4px);
  cursor: default;
}
body.job-apply-open {
  overflow: hidden;
}
.job-apply-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding-bottom: 0.85rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid #eee9f1;
}
.job-apply-heading > span {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #d91a75, #712997);
  border-radius: 10px;
}
.job-apply-heading svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.job-apply-heading h2 {
  margin: 0 0 0.16rem;
  color: #21163b;
  font-size: 0.86rem;
  font-weight: 650;
}
.job-apply-heading > div {
  min-width: 0;
  flex: 1;
}
.job-apply-close {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 0;
  color: #5f526a;
  background: #f8f4fa;
  border: 1px solid #e8e0ec;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}
.job-apply-close:hover {
  color: #fff;
  background: var(--magenta);
  border-color: var(--magenta);
}
.job-apply-heading p {
  margin: 0;
  color: #665b71;
  font-size: 0.58rem;
  line-height: 1.4;
}
.job-detail-apply-card .form-group {
  margin-bottom: 0.75rem;
}
.job-applicant-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 0.6rem;
}
.job-applicant-fields .form-group:nth-child(3),
.job-applicant-fields .form-group:nth-child(4) {
  grid-column: 1 / -1;
}
.job-detail-apply-card .form-group label {
  display: flex;
  justify-content: space-between;
  color: #392e43;
  font-size: 0.66rem;
  font-weight: 550;
}
.job-detail-apply-card .form-group label i {
  color: var(--magenta);
  font-style: normal;
}
.job-detail-apply-card .form-group label small {
  color: #756b80;
  font-size: 0.55rem;
  font-weight: 450;
}
.job-detail-apply-card textarea {
  min-height: 100px;
  padding: 0.7rem;
  color: #2b2233;
  border: 1px solid #ded7e3;
  border-radius: 9px;
  font-size: 0.7rem;
  resize: vertical;
}
.job-detail-apply-card input:not([type="file"]),
.job-detail-apply-card select,
.job-detail-apply-card input[type="file"] {
  width: 100%;
  min-height: 39px;
  padding: 0.55rem 0.65rem;
  color: #2b2233;
  background: #fff;
  border: 1px solid #ded7e3;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.66rem;
}
.job-detail-apply-card input[type="file"] {
  padding: 0.4rem;
  font-size: 0.58rem;
}
.job-detail-apply-card input:focus,
.job-detail-apply-card select:focus,
.job-detail-apply-card textarea:focus {
  outline: 0;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(194,24,107,.09);
}
.job-file-hint {
  display: block;
  margin-top: 0.28rem;
  color: #6b6075;
  font-size: 0.54rem;
}
.job-detail-apply-card .btn-block {
  min-height: 43px;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 9px;
  background: linear-gradient(90deg, #e8177d, #67249e);
  font-size: 0.7rem;
}
.job-apply-message {
  margin-bottom: 0.75rem;
  padding: 0.7rem;
  color: #554a60;
  background: #faf7fc;
  border: 1px solid #ece5f0;
  border-radius: 9px;
  font-size: 0.66rem;
  line-height: 1.5;
}
.job-save-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.65rem;
  color: #6d2b8e;
  font-size: 0.65rem;
  font-weight: 550;
}
.job-save-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.job-apply-trust {
  display: grid;
  gap: 0.42rem;
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid #eee9f1;
}
.job-apply-trust li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #5b5065;
  font-size: 0.6rem;
}
.job-apply-trust li span {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #167441;
  background: #eaf8ef;
  border-radius: 50%;
  font-size: 0.52rem;
  font-weight: 700;
}
@media (max-width: 900px) {
  .job-detail-facts {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .section.job-detail-page {
    padding: 1rem 0.75rem 2rem;
  }
  .job-detail-hero {
    grid-template-columns: 52px minmax(0,1fr);
    min-height: 0;
    padding: 1rem;
  }
  .job-detail-logo {
    width: 50px;
    height: 50px;
  }
  .job-detail-top-apply {
    grid-column: 1 / -1;
    width: 100%;
  }
  .job-already-applied {
    grid-column: 1 / -1;
    width: 100%;
  }
  .job-detail-layout {
    grid-template-columns: 1fr;
  }
  .job-detail-apply-card {
    max-height: calc(100vh - 1.25rem);
  }
}
@media (max-width: 480px) {
  .job-detail-facts {
    grid-template-columns: 1fr;
  }
  .job-detail-title h1 {
    font-size: 1.25rem;
  }
  .job-detail-title p {
    flex-wrap: wrap;
  }
  .job-applicant-fields {
    grid-template-columns: 1fr;
  }
  .job-applicant-fields .form-group {
    grid-column: auto;
  }
}

/* Dedicated job application page */
.section.job-application-page {
  max-width: 1050px;
  padding-top: 1.25rem;
  padding-bottom: 3rem;
}
.job-application-page-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding: 1.1rem 1.2rem;
  background:
    radial-gradient(circle at 90% 20%, rgba(194,24,107,.09), transparent 28%),
    linear-gradient(105deg, #fff, #fbf5fa);
  border: 1px solid rgba(61,26,110,.09);
  border-radius: 14px;
  box-shadow: 0 7px 22px rgba(36,16,63,.04);
}
.job-application-page-head > span {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #d91a75, #712997);
  border-radius: 12px;
}
.job-application-page-head svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.job-application-page-head p {
  margin: 0 0 0.12rem;
  color: var(--magenta);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.job-application-page-head h1 {
  margin: 0;
  color: #1d123b;
  font-size: 1.2rem;
  font-weight: 650;
}
.job-application-page-head small {
  display: block;
  margin-top: 0.22rem;
  color: #5e5369;
  font-size: 0.62rem;
}
.job-apply-page-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 300px;
  align-items: start;
  gap: 1rem;
}
.job-apply-page-card {
  padding: 1.2rem;
  background: #fff;
  border: 1px solid rgba(61,26,110,.1);
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(36,16,63,.055);
}
.job-apply-page-card .form-group {
  margin-bottom: 0.9rem;
}
.job-apply-page-card .form-group label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.35rem;
  color: #352a40;
  font-size: 0.68rem;
  font-weight: 550;
}
.job-apply-page-card .form-group label i {
  color: var(--magenta);
  font-style: normal;
}
.job-apply-page-card .form-group label small {
  color: #6d6177;
  font-size: 0.56rem;
  font-weight: 450;
}
.job-apply-page-card input:not([type="file"]),
.job-apply-page-card select,
.job-apply-page-card textarea,
.job-apply-page-card input[type="file"] {
  width: 100%;
  min-height: 43px;
  padding: 0.62rem 0.72rem;
  color: #241b2c;
  background: #fff;
  border: 1px solid #ddd5e2;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 0.72rem;
}
.job-apply-page-card input[type="file"] {
  padding: 0.5rem;
  font-size: 0.62rem;
}
.job-apply-page-card textarea {
  min-height: 115px;
  resize: vertical;
}
.job-apply-page-card input:focus,
.job-apply-page-card select:focus,
.job-apply-page-card textarea:focus {
  outline: 0;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(194,24,107,.09);
}
.job-apply-page-card .btn-block {
  min-height: 46px;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  border-radius: 9px;
  background: linear-gradient(90deg, #e8177d, #67249e);
  font-size: 0.72rem;
}
.job-apply-account-link {
  margin-top: 0.75rem;
  text-align: center;
}
.job-apply-account-link a {
  color: #6e288e;
  font-size: 0.66rem;
  font-weight: 550;
}
.job-apply-summary {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1.15rem;
  background: #fff;
  border: 1px solid rgba(61,26,110,.1);
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(36,16,63,.055);
}
.job-apply-summary h2 {
  margin: 0.6rem 0 0.25rem;
  color: #1d123b;
  font-size: 1rem;
  font-weight: 650;
}
.job-apply-summary > p {
  margin: 0;
  color: #53485e;
  font-size: 0.68rem;
}
.job-apply-summary ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0;
  padding: 0.85rem 0;
  border-block: 1px solid #eee9f1;
}
.job-apply-summary li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #51465b;
  font-size: 0.64rem;
}
.job-apply-summary li svg {
  width: 15px;
  height: 15px;
  color: #762c98;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.job-apply-summary-trust {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem;
  background: #eef9f2;
  border-radius: 9px;
}
.job-apply-summary-trust > span {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #22a957;
  border-radius: 50%;
  font-size: 0.65rem;
}
.job-apply-summary-trust p {
  margin: 0;
}
.job-apply-summary-trust strong,
.job-apply-summary-trust small {
  display: block;
}
.job-apply-summary-trust strong {
  color: #245638;
  font-size: 0.63rem;
}
.job-apply-summary-trust small {
  margin-top: 0.1rem;
  color: #4d6c59;
  font-size: 0.54rem;
}
.job-apply-summary > a {
  display: block;
  margin-top: 0.85rem;
  color: #6d2b8e;
  font-size: 0.63rem;
  font-weight: 550;
  text-align: center;
}
@media (max-width: 760px) {
  .section.job-application-page {
    padding: 1rem 0.75rem 2rem;
  }
  .job-apply-page-grid {
    grid-template-columns: 1fr;
  }
  .job-apply-summary {
    position: static;
    order: -1;
  }
}
@media (max-width: 520px) {
  .job-application-page-head {
    align-items: flex-start;
    padding: 0.9rem;
  }
  .job-application-page-head h1 {
    font-size: 1rem;
  }
  .job-apply-page-card {
    padding: 0.9rem;
  }
}

/* Application success celebration */
.application-success-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
}
.application-success-card {
  width: min(100%, 660px);
  position: relative;
  overflow: hidden;
  padding: 2.4rem 2rem 1.5rem;
  text-align: center;
  background:
    radial-gradient(circle at 10% 10%, rgba(194,24,107,.07), transparent 25%),
    radial-gradient(circle at 90% 12%, rgba(112,43,146,.08), transparent 24%),
    #fff;
  border: 1px solid rgba(61,26,110,.1);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(36,16,63,.1);
}
.application-success-icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #ed177d, #6b269d);
  border: 7px solid #fde8f2;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(126,33,143,.22);
  animation: successPop .55s ease both;
}
.application-success-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.application-success-eyebrow {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--magenta);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.application-success-card h1 {
  margin: 0;
  color: #1c1239;
  font-size: clamp(1.8rem, 4vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -.04em;
}
.application-success-card > p {
  max-width: 52ch;
  margin: 0.65rem auto 1.2rem;
  color: #554a60;
  font-size: 0.78rem;
  line-height: 1.6;
}
.application-success-card > p strong {
  color: #2f2241;
  font-weight: 650;
}
.application-success-note {
  max-width: 520px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 auto 1.25rem;
  padding: 0.85rem 1rem;
  text-align: left;
  background: #eef9f2;
  border: 1px solid #d7f0e0;
  border-radius: 12px;
}
.application-success-note > span {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #22a957;
  border-radius: 50%;
  font-weight: 700;
}
.application-success-note strong,
.application-success-note small {
  display: block;
}
.application-success-note strong {
  color: #245638;
  font-size: 0.7rem;
}
.application-success-note small {
  margin-top: 0.14rem;
  color: #496755;
  font-size: 0.6rem;
  line-height: 1.45;
}
.application-success-actions {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.application-success-actions .btn {
  min-width: 165px;
  min-height: 44px;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
}
.application-success-actions .btn-primary {
  background: linear-gradient(90deg, #e8177d, #67249e);
  box-shadow: 0 8px 18px rgba(126,33,143,.2);
}
.application-success-actions .btn-ghost {
  color: #572275;
  background: #fff;
  border: 1px solid #d8cde0;
}
.application-success-card .application-success-safe {
  margin: 1.15rem auto 0;
  padding-top: 0.85rem;
  border-top: 1px solid #eee9f1;
  color: #6b6075;
  font-size: 0.62rem;
}
.application-success-safe span {
  color: var(--magenta);
}
.application-success-confetti i {
  width: 7px;
  height: 12px;
  position: absolute;
  top: 18%;
  border-radius: 2px;
  background: var(--magenta);
  transform: rotate(25deg);
  opacity: .6;
}
.application-success-confetti i:nth-child(1) { left: 10%; }
.application-success-confetti i:nth-child(2) { left: 20%; top: 8%; background: #7c3ead; transform: rotate(-35deg); }
.application-success-confetti i:nth-child(3) { left: 31%; top: 15%; background: #efaa2f; transform: rotate(50deg); }
.application-success-confetti i:nth-child(4) { right: 10%; transform: rotate(-25deg); }
.application-success-confetti i:nth-child(5) { right: 20%; top: 8%; background: #7c3ead; transform: rotate(35deg); }
.application-success-confetti i:nth-child(6) { right: 31%; top: 15%; background: #efaa2f; transform: rotate(-50deg); }
@keyframes successPop {
  from { opacity: 0; transform: scale(.55) rotate(-8deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}
@media (max-width: 560px) {
  .application-success-page {
    min-height: 65vh;
    padding: 1rem 0.75rem 2rem;
  }
  .application-success-card {
    padding: 1.8rem 1rem 1.15rem;
    border-radius: 16px;
  }
  .application-success-actions {
    display: grid;
  }
  .application-success-actions .btn {
    width: 100%;
  }
}

.pill {
  display: inline-block;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 500;
  font-family: var(--font-body);
  background: rgba(194, 24, 107, 0.08);
  color: var(--magenta-deep);
  letter-spacing: 0.01em;
}

/* Stories */
.story-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.story {
  padding-top: 0.9rem;
  border-top: 2px solid var(--magenta);
}
.story-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0 0.75rem;
  background: rgba(194, 24, 107, 0.1);
  flex-shrink: 0;
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-photo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--magenta);
  letter-spacing: 0.02em;
}
.story blockquote {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-style: normal;
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.5;
}
.story cite {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  color: var(--plum);
  font-size: 0.88rem;
}
.story .city { color: var(--muted); font-size: 0.78rem; font-weight: 400; }

/* Dark band stories — high contrast light text */
.band-dark .section-head h2 { color: #fff; }
.band-dark .section-head .eyebrow {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #f5b8d4;
}
.band-dark .story {
  border-top-color: #e91e8c;
}
.band-dark .story-photo {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
}
.band-dark .story-photo-fallback {
  color: #ffb0d4;
}
.band-dark .story blockquote {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
}
.band-dark .story cite {
  color: #ff8fc8;
}
.band-dark .story .city {
  color: rgba(255, 255, 255, 0.62);
}
.band-dark .stories-cta {
  margin-top: 1.35rem;
}
.band-dark .stories-cta .btn {
  background: #fff;
  color: var(--indigo-deep);
  box-shadow: 0 8px 22px rgba(194, 24, 107, 0.22);
  border: none;
}
.band-dark .stories-cta .btn:hover {
  background: #fdf2f7;
}

/* Homepage success stories showcase */
.stories-showcase {
  position: relative;
  margin: 2rem auto;
  max-width: 1400px;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 8%, rgba(194,24,107,.035), transparent 18%),
    radial-gradient(circle at 96% 5%, rgba(194,24,107,.045), transparent 18%),
    #fff;
  border: 1px solid rgba(61,26,110,.07);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(36,16,63,.035);
}
.stories-showcase::before,
.stories-showcase::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 70px;
  pointer-events: none;
  opacity: .35;
  background-image: radial-gradient(circle, rgba(194,24,107,.22) 1.2px, transparent 1.5px);
  background-size: 10px 10px;
}
.stories-showcase::before {
  top: 18px;
  left: 18px;
}
.stories-showcase::after {
  right: 18px;
  bottom: 18px;
}
.stories-showcase .section {
  position: relative;
  z-index: 1;
  padding-top: 2.2rem;
  padding-bottom: 1.6rem;
}
.stories-showcase .section-head {
  margin-bottom: 1.35rem;
  text-align: center;
}
.stories-showcase .section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--magenta);
  background: none;
  -webkit-text-fill-color: currentColor;
  font-size: 0.66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.stories-showcase .section-head .eyebrow::before,
.stories-showcase .section-head .eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--magenta);
}
.stories-showcase .section-head h2 {
  margin: 0.55rem 0 0.3rem;
  color: #16113d;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -.035em;
}
.stories-showcase .section-head p {
  margin: 0 auto;
  color: #756b82;
  font-size: 0.78rem;
}
.story-showcase-grid {
  gap: 1.2rem;
}
.story-feature-card {
  min-width: 0;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.15rem 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(61,26,110,.1);
  border-top: 1px solid rgba(61,26,110,.1);
  border-bottom: 3px solid #742b9b;
  border-radius: 13px;
  box-shadow: 0 9px 24px rgba(36,16,63,.065);
  transition: transform .22s ease, box-shadow .22s ease;
}
.story-feature-card:nth-child(2) {
  border-bottom-color: #ed2786;
}
.story-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(36,16,63,.1);
}
.story-card-top {
  min-height: 38px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.story-person-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #8c3ac0, #5d2290);
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(91,31,122,.2);
}
.story-feature-card:nth-child(2) .story-person-icon,
.story-person-icon.is-pink {
  background: linear-gradient(135deg, #f54399, #d91972);
}
.story-person-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}
.story-quote-mark {
  height: 38px;
  color: #e9def7;
  font-family: Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: .85;
}
.story-feature-card:nth-child(2) .story-quote-mark,
.story-quote-mark.is-pink {
  color: #fde0ed;
}
.story-feature-card blockquote {
  min-height: 88px;
  margin: 0.65rem 0 0.65rem;
  color: #241d2d;
  font-size: 0.77rem;
  line-height: 1.58;
}
.story-card-line {
  width: 34px;
  height: 2px;
  margin-bottom: 0.8rem;
  background: #e351a0;
  border-radius: 999px;
}
.story-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}
.story-feature-card .story-photo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  margin: 0;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(61,26,110,.16), 0 4px 10px rgba(36,16,63,.1);
}
.story-feature-card .story-photo-fallback {
  color: #fff;
  background: linear-gradient(135deg, #8c3ac0, #5d2290);
}
.story-feature-card .story-photo-fallback.is-pink,
.story-feature-card:nth-child(2) .story-photo-fallback {
  background: linear-gradient(135deg, #f54399, #d91972);
}
.story-author > div:last-child {
  min-width: 0;
}
.story-feature-card .story-author cite {
  display: block;
  overflow: hidden;
  color: #702b92;
  font-size: 0.78rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.story-feature-card:nth-child(2) .story-author cite {
  color: #d91c75;
}
.story-author span {
  display: block;
  margin-top: 0.08rem;
  color: #665b73;
  font-size: 0.62rem;
}
.story-author small {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.22rem;
  color: #766b82;
  font-size: 0.58rem;
}
.story-author small svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: #e82a83;
  stroke-width: 2;
}
.story-outcome {
  min-height: 51px;
  display: grid;
  grid-template-columns: 31px minmax(0,1fr);
  align-items: center;
  gap: 0.6rem;
  margin: auto -0.25rem 0.85rem;
  padding: 0.55rem 0.65rem;
  background: linear-gradient(100deg, #f8f4fc, #fbf8fd);
  border-radius: 9px;
}
.story-outcome.is-pink,
.story-feature-card:nth-child(2) .story-outcome {
  background: linear-gradient(100deg, #fff4f8, #fdf7fa);
}
.story-outcome > span {
  width: 29px;
  height: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #742b9b;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(36,16,63,.05);
}
.story-outcome.is-pink > span,
.story-feature-card:nth-child(2) .story-outcome > span {
  color: #dd247b;
}
.story-outcome svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.story-outcome p {
  margin: 0;
  color: #4e435b;
  font-size: 0.58rem;
  line-height: 1.4;
}
.stories-showcase .stories-cta {
  margin-top: 1.25rem;
  text-align: center;
}
.stories-showcase .stories-cta .btn {
  min-width: 185px;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  background: linear-gradient(90deg, #e72485, #6222a0);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(130,31,132,.22);
  font-size: 0.72rem;
}
@media (max-width: 768px) {
  .stories-showcase {
    margin: 1.25rem 0.65rem;
  }
  .stories-showcase .section {
    padding: 1.6rem 0.85rem 1.25rem;
  }
  .story-feature-card {
    min-height: 0;
  }
  .story-feature-card blockquote {
    min-height: 0;
  }
}

/* Forms */
.form-shell {
  max-width: 460px; margin: 3rem auto; padding: 2rem 1.5rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-shell.wide { max-width: 720px; }
.form-shell h1 { font-size: 1.6rem; text-align: center; }
.form-shell .sub { text-align: center; color: var(--muted); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 0.35rem; color: var(--indigo);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 0.95rem;
  background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(194, 24, 107, 0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.role-tabs {
  display: flex; gap: 0.5rem; margin-bottom: 1.25rem;
}
.role-tabs a, .role-tabs button {
  flex: 1; text-align: center; padding: 0.65rem;
  border-radius: 10px; border: 1.5px solid var(--line);
  background: #fff; font-weight: 600; cursor: pointer; font-family: var(--font-body);
}
.role-tabs .is-active {
  background: var(--grad); color: #fff; border-color: transparent;
}
.dev-otp {
  margin: 0.75rem 0; padding: 0.75rem;
  background: #fff8e6; border: 1px dashed #c9a227; border-radius: 8px;
  font-size: 0.9rem; text-align: center;
}

/* ===== Auth / Register (desktop split) ===== */
.page-auth .site-footer { display: none; }
.page-auth .bottom-nav { display: none; }
.page-auth .cookie-banner { bottom: 1rem; }
body:has(.seeker-portal) main#main,
body:has(.dash-layout) main#main {
  padding-bottom: 0 !important;
}
.auth-stage {
  background:
    radial-gradient(circle at 12% 18%, rgba(194, 24, 107, 0.06), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(61, 26, 110, 0.07), transparent 26%),
    #f6f3fa;
  padding: 0.65rem 1.15rem 1rem;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
}
.auth-layout {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(300px, 1.08fr);
  gap: 0.85rem 1.5rem;
  align-items: center;
}
.auth-aside {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.15rem 0.15rem 0.15rem 0.25rem;
}
.auth-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.auth-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(61, 26, 110, 0.08);
}
.auth-brand strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--indigo-deep);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.auth-brand span {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 0.05rem;
}
.auth-aside-copy h1 {
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--indigo-deep);
  margin: 0 0 0.35rem;
}
.auth-aside-copy h1 span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.auth-aside-copy p {
  margin: 0;
  color: #6b6280;
  font-size: 0.86rem;
  line-height: 1.45;
  max-width: 34ch;
  font-weight: 400;
}
.auth-illus {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0.1rem 0 0.05rem;
}
.auth-illus svg {
  width: min(100%, 240px);
  height: auto;
  display: block;
}
.auth-trust {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0.55rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(61, 26, 110, 0.07);
  border-radius: 14px;
}
.auth-trust li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}
.auth-trust-ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(61, 26, 110, 0.08);
  color: var(--indigo);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  overflow: hidden;
  vertical-align: top;
}
.auth-trust-ico svg {
  width: 17px !important;
  height: 17px !important;
  display: block !important;
  flex: none;
  margin: auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.auth-trust strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--indigo-deep);
  line-height: 1.25;
}
.auth-trust li > div span {
  display: block;
  font-size: 0.66rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.3;
  margin-top: 0.1rem;
}
.auth-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 18px;
  padding: 1.15rem 1.2rem 1rem;
  box-shadow: 0 14px 40px rgba(61, 26, 110, 0.1);
  border: 1px solid rgba(61, 26, 110, 0.06);
  position: relative;
  overflow: hidden;
}
.auth-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 40px;
  background: radial-gradient(ellipse at 50% 120%, rgba(194, 24, 107, 0.08), transparent 60%);
  pointer-events: none;
}
.auth-card-head {
  text-align: center;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
}
.auth-avatar {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.45rem;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(194, 24, 107, 0.26);
}
.auth-avatar svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.auth-card-head h2 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  color: var(--indigo-deep);
  letter-spacing: -0.02em;
}
.auth-card-head p {
  margin: 0.25rem 0 0;
  color: #7a6f8f;
  font-size: 0.78rem;
  font-weight: 400;
}
.auth-card-head em {
  font-style: normal;
  color: var(--magenta);
  font-weight: 500;
}
.auth-role-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
}
.auth-role-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.55rem;
  border-radius: 999px;
  border: 1.5px solid rgba(61, 26, 110, 0.12);
  background: #fff;
  color: var(--indigo);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}
.auth-role-tabs a svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.auth-role-tabs a.is-active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(194, 24, 107, 0.28);
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}
.auth-field {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.5rem;
  align-items: start;
}
.auth-field-ico {
  width: 36px;
  height: 36px;
  margin-top: 1.2rem;
  border-radius: 9px;
  border: 1.5px solid rgba(61, 26, 110, 0.16);
  background: #faf7fd;
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.auth-field-ico svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.auth-field-body label {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--indigo-deep);
  margin-bottom: 0.22rem;
}
.auth-field-body label i {
  color: #e11d48;
  font-style: normal;
  font-weight: 600;
}
.auth-field-body input {
  width: 100%;
  padding: 0.58rem 0.8rem;
  border: 1.5px solid rgba(61, 26, 110, 0.12);
  border-radius: 10px;
  font-family: var(--font-body) !important;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: normal;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.auth-field-body input::placeholder {
  font-family: var(--font-body) !important;
  font-weight: 400;
  color: #a39bb3;
  letter-spacing: normal;
  opacity: 1;
}
.auth-field-body input:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(194, 24, 107, 0.12);
}
.auth-submit {
  width: 100%;
  margin-top: 0.2rem;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  box-shadow: 0 10px 22px rgba(194, 24, 107, 0.28);
  cursor: pointer;
}
.auth-submit svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.auth-submit:hover { filter: brightness(1.04); }
.auth-or {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.8rem 0 0.55rem;
  color: #a39bb3;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}
.auth-or::before,
.auth-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(61, 26, 110, 0.1);
}
.auth-switch {
  text-align: center;
  margin: 0;
  color: #6b6280;
  font-size: 0.82rem;
  position: relative;
  z-index: 1;
}
.auth-switch a {
  color: var(--indigo);
  font-weight: 500;
  text-decoration: none;
}
.auth-switch a:hover { color: var(--magenta); }

@media (max-width: 900px) {
  .auth-stage {
    align-items: flex-start;
    min-height: auto;
    padding: 0.75rem 0.9rem 1.25rem;
  }
  .auth-layout {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .auth-aside {
    text-align: center;
    align-items: center;
    gap: 0.65rem;
    padding: 0;
  }
  .auth-aside-copy p { max-width: none; }
  .auth-illus { display: none; }
  .auth-trust {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    text-align: left;
  }
  .auth-brand { justify-content: center; }
  .auth-card { max-width: none; padding: 1.1rem 1rem 0.95rem; }
}

@media (max-width: 520px) {
  .auth-stage { padding: 0.7rem 0.75rem 1rem; }
  .auth-role-tabs a { font-size: 0.74rem; padding: 0.48rem 0.4rem; }
}

/* ===== Login page ===== */
.login-stage {
  position: relative;
  overflow: hidden;
  padding: 0.65rem 1.15rem 1rem;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 80% 50% at 0% 100%, rgba(194, 24, 107, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(61, 26, 110, 0.09), transparent 50%),
    #f5f2fa;
}
.login-stage::before,
.login-stage::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  background-image: radial-gradient(circle, rgba(61, 26, 110, 0.14) 1.4px, transparent 1.6px);
  background-size: 12px 12px;
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}
.login-stage::before { top: 18px; right: 8%; }
.login-stage::after { bottom: 24px; left: 6%; }
.login-layout {
  width: 100%;
  position: relative;
  z-index: 1;
}
.login-welcome {
  margin: 0 0 0.2rem !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--indigo-deep) !important;
  max-width: none !important;
}
.login-aside-copy h1 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
}
.login-aside-copy h1 span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.login-illus svg {
  width: min(100%, 280px);
}
.login-card {
  max-width: 420px;
  padding: 1.35rem 1.25rem 1.15rem;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(61, 26, 110, 0.1);
}
.login-avatar {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.55rem;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.1);
  color: #6d28d9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
.login-avatar svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.login-card .auth-card-head h2 {
  font-size: 1.4rem;
  font-weight: 600;
}
.login-card .auth-card-head p {
  font-size: 0.8rem;
  color: #8a8299;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}
.login-role-tabs {
  margin-bottom: 1rem;
}
.login-role-tabs a {
  padding: 0.65rem 0.55rem;
  font-size: 0.82rem;
  border-radius: 12px;
}
.login-role-tabs a.is-active {
  border-radius: 12px;
}
.login-form {
  gap: 0.9rem;
}
.login-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--indigo-deep);
  margin-bottom: 0.35rem;
}
.login-field label i {
  color: #e11d48;
  font-style: normal;
  font-weight: 600;
}
.phone-input {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  border: 1.5px solid rgba(61, 26, 110, 0.14);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  min-height: 46px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.phone-input:focus-within {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(194, 24, 107, 0.12);
}
.phone-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0 0.55rem 0 0.7rem;
  border-right: 1px solid rgba(61, 26, 110, 0.1);
  height: 100%;
  min-height: 46px;
}
.phone-flag svg:first-child {
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.phone-chevron {
  stroke: #8a8299;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.phone-code {
  padding: 0 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--indigo-deep);
  border-right: 1px solid rgba(61, 26, 110, 0.1);
  white-space: nowrap;
}
.phone-input input {
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0.7rem 0.8rem;
  font-size: 0.9rem;
  min-width: 0;
  background: transparent;
}
.phone-input input:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.login-otp-input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid rgba(61, 26, 110, 0.14);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-align: center;
  min-height: 46px;
}
.login-otp-input:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(194, 24, 107, 0.12);
}
.password-field {
  position: relative;
  display: block;
  width: 100%;
}
.password-field input {
  width: 100%;
  padding: 0.7rem 2.75rem 0.7rem 0.9rem;
  border: 1.5px solid rgba(61, 26, 110, 0.14);
  border-radius: 12px;
  font-family: var(--font-body) !important;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: normal;
  text-align: left;
  min-height: 46px;
  background: #fff;
  color: var(--indigo-deep);
  box-sizing: border-box;
}
.password-field input::placeholder {
  font-family: var(--font-body) !important;
  font-weight: 400;
  letter-spacing: normal;
  color: #a39bb3;
  opacity: 1;
}
.password-field input:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(194, 24, 107, 0.12);
}
.password-toggle {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #8a8299;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0;
}
.password-toggle:hover,
.password-toggle:focus-visible {
  color: var(--indigo);
  background: rgba(61, 26, 110, 0.06);
  outline: none;
}
.password-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: none;
}
.password-toggle .eye-open { display: block; }
.password-toggle.is-visible .eye-open { display: none; }
.password-toggle.is-visible .eye-off { display: block; }
.auth-field-body .password-field input {
  border: none;
  border-radius: 0;
  min-height: 0;
  padding: 0.15rem 2.4rem 0.15rem 0;
  box-shadow: none;
  background: transparent;
  font-family: var(--font-body) !important;
  font-size: 0.86rem !important;
  font-weight: 400;
  letter-spacing: normal;
}
.auth-field-body .password-field input:focus {
  box-shadow: none;
  border: none;
}
.auth-field-body .password-toggle {
  right: 0;
  width: 32px;
  height: 32px;
}
.login-card .auth-submit {
  margin-top: 0.1rem;
  padding: 0.8rem 1.1rem;
  font-size: 0.92rem;
  border-radius: 999px;
}
.login-card .auth-or { margin: 1rem 0 0.7rem; }
.login-card .auth-switch { font-size: 0.86rem; }

@media (max-width: 900px) {
  .page-login .login-layout {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 0.85rem;
    width: 100%;
  }
  .page-login .login-stage {
    justify-content: center;
    align-items: flex-start;
    min-height: auto;
    padding: 0.85rem 0.9rem 1rem;
  }
  .page-login .login-aside {
    display: flex;
    text-align: center;
    align-items: center;
    gap: 0.55rem;
    padding: 0.1rem 0 0;
  }
  .page-login .login-welcome {
    font-size: 0.88rem !important;
    margin-bottom: 0.15rem !important;
  }
  .page-login .login-aside-copy h1 {
    font-size: clamp(1.35rem, 4.8vw, 1.65rem);
    margin-bottom: 0.25rem;
  }
  .page-login .login-aside-copy > p:last-child {
    font-size: 0.82rem;
    line-height: 1.4;
  }
  .page-login .login-illus {
    display: flex;
    justify-content: center;
    margin: 0.1rem 0;
  }
  .page-login .login-illus svg {
    width: min(100%, 150px);
  }
  .page-login .auth-trust {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    padding: 0.5rem 0.45rem;
    text-align: left;
    border-radius: 12px;
  }
  .page-login .auth-trust li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .page-login .auth-trust-ico {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-login .auth-trust-ico svg {
    width: 15px;
    height: 15px;
    display: block;
  }
  .page-login .auth-trust strong {
    font-size: 0.68rem;
    line-height: 1.2;
  }
  .page-login .auth-trust li > div span {
    font-size: 0.58rem;
    line-height: 1.25;
  }
  .page-login .login-card {
    max-width: none;
    padding: 1.15rem 1rem 1rem;
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(61, 26, 110, 0.1);
  }
  .page-login .login-avatar {
    width: 48px;
    height: 48px;
    margin-bottom: 0.45rem;
  }
  .page-login .login-avatar svg {
    width: 22px;
    height: 22px;
  }
  .page-login .login-card .auth-card-head h2 {
    font-size: 1.3rem;
    margin: 0 0 0.2rem;
  }
  .page-login .login-card .auth-card-head p {
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
  }
  .page-login .login-role-tabs {
    margin-bottom: 0.85rem;
  }
  .page-login .login-role-tabs a {
    padding: 0.55rem 0.4rem;
    font-size: 0.78rem;
    gap: 0.28rem;
    border-radius: 11px;
  }
  .page-login .login-form {
    gap: 0.75rem;
  }
  .page-login .login-field label {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }
  .page-login .phone-input,
  .page-login .phone-flag {
    min-height: 44px;
  }
  .page-login .login-card .auth-submit {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  .page-login .login-card .auth-or {
    margin: 0.85rem 0 0.55rem;
  }
  .page-login .login-card .auth-switch {
    font-size: 0.84rem;
  }
}

@media (max-width: 520px) {
  .page-login .login-stage {
    padding: 0.75rem 0.8rem 0.9rem;
  }
  .page-login .login-illus svg {
    width: min(100%, 130px);
  }
  .page-login .login-card {
    padding: 1.05rem 0.95rem 0.95rem;
  }
}

@media (max-width: 380px) {
  .page-login .auth-trust li {
    flex-direction: column;
  }
}

/* Register page — login-like layout, content top-aligned on mobile */
.register-stage {
  position: relative;
  overflow: hidden;
  padding: 0.65rem 1.15rem 1rem;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 80% 50% at 0% 100%, rgba(194, 24, 107, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(61, 26, 110, 0.09), transparent 50%),
    #f5f2fa;
}
.register-layout {
  width: 100%;
  position: relative;
  z-index: 1;
}
.register-welcome {
  margin: 0 0 0.2rem !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--indigo-deep) !important;
  max-width: none !important;
}
.register-aside-copy h1 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
}
.register-illus svg {
  width: min(100%, 260px);
}
.register-card {
  max-width: 420px;
  padding: 1.35rem 1.25rem 1.15rem;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(61, 26, 110, 0.1);
}
.register-avatar {
  background: rgba(124, 58, 237, 0.1);
  color: #6d28d9;
  box-shadow: none;
}
.register-avatar svg { stroke: currentColor; }

@media (max-width: 900px) {
  .page-register .register-layout {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 0.85rem;
  }
  .page-register .register-stage {
    justify-content: center;
    align-items: flex-start;
    min-height: auto;
    padding: 0.85rem 0.9rem 1rem;
  }
  .page-register .register-aside {
    display: flex;
    text-align: center;
    align-items: center;
    gap: 0.55rem;
    padding: 0.1rem 0 0;
  }
  .page-register .register-welcome {
    font-size: 0.88rem !important;
  }
  .page-register .register-aside-copy h1 {
    font-size: clamp(1.35rem, 4.8vw, 1.65rem);
    margin-bottom: 0.25rem;
  }
  .page-register .register-aside-copy > p:last-child {
    font-size: 0.82rem;
    line-height: 1.4;
  }
  .page-register .register-illus {
    display: flex;
    justify-content: center;
    margin: 0.1rem 0;
  }
  .page-register .register-illus svg {
    width: min(100%, 150px);
  }
  .page-register .auth-trust {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    padding: 0.5rem 0.45rem;
    text-align: left;
    border-radius: 12px;
  }
  .page-register .auth-trust li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .page-register .auth-trust-ico {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-register .auth-trust-ico svg {
    width: 15px;
    height: 15px;
    display: block;
  }
  .page-register .auth-trust strong {
    font-size: 0.68rem;
    line-height: 1.2;
  }
  .page-register .auth-trust li > div span {
    font-size: 0.58rem;
    line-height: 1.25;
  }
  .page-register .register-card {
    max-width: none;
    padding: 1.15rem 1rem 1rem;
    border-radius: 18px;
  }
  .page-register .register-avatar {
    background: rgba(124, 58, 237, 0.1);
    color: #6d28d9;
    box-shadow: none;
  }
}

@media (max-width: 520px) {
  .page-register .register-stage {
    padding: 0.75rem 0.8rem 0.9rem;
  }
  .page-register .register-illus svg {
    width: min(100%, 130px);
  }
}

/* Page hero (inner) */
.page-hero {
  background: var(--grad);
  color: #fff; padding: 2.75rem 1.25rem 2.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.12), transparent 40%);
}
.page-hero-inner,
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}
.page-hero p {
  max-width: 520px;
  margin: 0.55rem auto 0;
  opacity: 0.92;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
}

/* Services page */
.services-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 2.75rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card {
  background: #fff;
  border: 1px solid rgba(61, 26, 110, 0.1);
  border-radius: 14px;
  padding: 1.25rem 1.2rem 1.2rem;
  box-shadow: 0 8px 22px rgba(36, 16, 63, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: rgba(194, 24, 107, 0.25);
  box-shadow: 0 12px 28px rgba(61, 26, 110, 0.08);
}
.service-card-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  margin-bottom: 0.85rem;
  background: rgba(194, 24, 107, 0.08);
  color: var(--magenta);
}
.service-card-ico svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: var(--indigo-deep);
  letter-spacing: -0.01em;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.55;
}
.services-cta {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(135deg, #fff 0%, #fdf2f7 100%);
  border: 1px solid rgba(194, 24, 107, 0.12);
  border-radius: 14px;
}
.services-cta h2 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
  color: var(--indigo-deep);
  letter-spacing: -0.01em;
}
.services-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 400;
}
.services-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.services-cta-actions .btn {
  padding: 0.55rem 1.05rem;
  font-size: 0.84rem;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-cta-actions { width: 100%; }
  .services-cta-actions .btn { flex: 1; justify-content: center; }
}

/* Training page */
.page-training .training-hero {
  padding: 1.65rem 1.15rem 1.5rem;
}
.page-training .training-hero h1 {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 600;
}
.page-training .training-hero p {
  font-size: 0.88rem;
  margin-top: 0.4rem;
}
.training-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.15rem 1.15rem 2.25rem;
}
.training-toolbar {
  margin-bottom: 0.85rem;
}
.training-count {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0;
  color: var(--indigo-deep);
  letter-spacing: -0.01em;
}
.training-empty {
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--muted);
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 14px;
  font-size: 0.9rem;
}
.training-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.training-card {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 0.65rem 0.85rem;
  align-items: start;
  background: #fff;
  border: 1px solid rgba(61, 26, 110, 0.08);
  border-radius: 12px;
  padding: 0.7rem 0.9rem 0.7rem 0.65rem;
  box-shadow: 0 4px 14px rgba(36, 16, 63, 0.045);
}
.training-card-accent {
  width: 3px;
  align-self: stretch;
  border-radius: 999px;
  background: var(--magenta);
}
.training-card.accent-purple .training-card-accent { background: #7c3aed; }
.training-card.accent-blue .training-card-accent { background: #3b82f6; }
.training-card.accent-purple .training-card-icon {
  background: rgba(124, 58, 237, 0.1);
  color: #6d28d9;
}
.training-card.accent-blue .training-card-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}
.training-card-icon {
  width: 36px;
  height: 36px;
  margin-top: 0.15rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(194, 24, 107, 0.08);
  color: var(--magenta);
  flex-shrink: 0;
}
.training-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.training-card-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  margin-bottom: 0.15rem;
}
.training-card-title-row h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  color: var(--indigo-deep);
  letter-spacing: -0.01em;
}
.training-status {
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--magenta);
  background: rgba(194, 24, 107, 0.08);
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  text-transform: capitalize;
}
.training-hi {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
}
.training-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 400;
}
.training-meta > span:not(:last-child)::after {
  content: "·";
  margin: 0 0.45rem;
  opacity: 0.45;
}
.training-seats {
  color: var(--indigo);
  background: rgba(61, 26, 110, 0.07);
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.7rem;
}
.training-seats.is-full {
  color: #8a1c3a;
  background: #fdecef;
}
.training-desc {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.45;
  max-width: 62ch;
}
.training-card-actions {
  align-self: center;
}
.training-card-actions .btn {
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.78rem;
  padding: 0.38rem 0.8rem;
}
.training-card-actions .is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

@media (max-width: 720px) {
  .training-card {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "accent icon"
      "accent body"
      "accent actions";
  }
  .training-card-accent { grid-area: accent; }
  .training-card-icon { grid-area: icon; }
  .training-card-body { grid-area: body; }
  .training-card-actions {
    grid-area: actions;
    justify-self: start;
  }
}

/* ===== Find Jobs page ===== */
.jobs-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding: 2.75rem 1.25rem 4.5rem;
  background: linear-gradient(120deg, #3d1a6e 0%, #8b2a8f 48%, #c2186b 100%);
}
.jobs-hero-inner { position: relative; z-index: 1; }
.jobs-hero h1 {
  font-family: var(--font-body);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
}
.jobs-hero p {
  margin: 0 auto;
  max-width: 420px;
  font-size: 0.98rem;
  font-weight: 400;
  opacity: 0.92;
}
.jobs-hero-line {
  display: block;
  width: 42px;
  height: 3px;
  margin: 0.9rem auto 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
}
.jobs-hero-deco { position: absolute; inset: 0; pointer-events: none; }
.jh-dots {
  position: absolute;
  left: 6%;
  top: 22%;
  width: 120px;
  height: 90px;
  opacity: 0.28;
  background-image: radial-gradient(circle, #fff 1.4px, transparent 1.6px);
  background-size: 14px 14px;
}
.jh-plane {
  position: absolute;
  right: 18%;
  top: 28%;
  width: 160px;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.55) 0 8px, transparent 8px 14px);
  transform: rotate(-12deg);
  opacity: 0.7;
}
.jh-plane::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -7px;
  width: 0;
  height: 0;
  border-left: 16px solid rgba(255,255,255,0.85);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.jh-search {
  position: absolute;
  right: 7%;
  bottom: 18%;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 14px;
  opacity: 0.55;
  transform: rotate(12deg);
}
.jh-search::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 50%;
}
.jh-search::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background: rgba(255,255,255,0.55);
  right: 10px;
  bottom: 14px;
  transform: rotate(40deg);
}

.jobs-page {
  max-width: 1080px;
  margin: -2.6rem auto 0;
  padding: 0 1.15rem 2.5rem;
  position: relative;
  z-index: 2;
}
.jobs-filter-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 0.85rem 1rem;
  align-items: end;
  background: #fff;
  border: 1px solid rgba(61, 26, 110, 0.08);
  border-radius: 18px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 16px 40px rgba(36, 16, 63, 0.12);
}
.jobs-filter-card:has(.jobs-filter-field:nth-child(5)) {
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr auto;
}

/* Location bar */
.jobs-location-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, #fff 0%, #fdf2f7 100%);
  border: 1px solid rgba(194, 24, 107, 0.12);
  border-radius: 14px;
}
.jobs-location-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 400;
  min-width: 0;
}
.jobs-location-info strong { color: var(--indigo-deep); font-weight: 600; }
.jobs-location-info svg {
  width: 16px;
  height: 16px;
  stroke: var(--magenta);
  fill: none;
  stroke-width: 1.9;
  flex-shrink: 0;
}
.jobs-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.jobs-location-actions .btn {
  border-radius: 999px;
  gap: 0.35rem;
}
.job-distance {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(61, 26, 110, 0.08);
  color: var(--indigo);
  font-size: 0.68rem;
  font-weight: 500;
}
.job-distance-pill {
  margin-left: 0.35rem;
  vertical-align: middle;
}
.nearby-empty {
  padding: 1.25rem 1.15rem;
  border: 1px dashed rgba(61, 26, 110, 0.18);
  border-radius: 14px;
  background: #fff;
}
.nearby-empty p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.nearby-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Homepage nearby job finder */
.section.nearby-showcase {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 2.3rem 2.75rem;
  background:
    radial-gradient(circle at 95% 10%, rgba(194,24,107,.035), transparent 20%),
    linear-gradient(110deg, #fffdfd, #fcf8f8);
  border: 1px solid rgba(61,26,110,.055);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(36,16,63,.025);
}
.nearby-showcase .nearby-head {
  margin-bottom: 1.35rem;
}
.nearby-showcase .nearby-head .eyebrow {
  color: var(--magenta);
  background: none;
  -webkit-text-fill-color: currentColor;
  font-size: 0.66rem;
  letter-spacing: .1em;
}
.nearby-showcase .nearby-head .eyebrow::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 0.55rem;
  background: linear-gradient(90deg, #e8388e, #ac2c91);
  border-radius: 999px;
}
.nearby-showcase .nearby-head h2 {
  margin: 0.7rem 0 0.35rem;
  color: #17113f;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.04em;
}
.nearby-showcase .nearby-head p {
  color: #6f6679;
  font-size: 0.78rem;
}
.nearby-finder {
  min-height: 170px;
  display: grid;
  grid-template-columns: minmax(0,1.55fr) minmax(230px,.7fr);
  align-items: stretch;
  overflow: hidden;
  padding: 1.25rem 1.4rem;
  background: #fff;
  border: 1px solid rgba(61,26,110,.08);
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(36,16,63,.055);
}
.nearby-finder-form {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nearby-finder-form > label {
  display: grid;
  grid-template-columns: 36px minmax(0,1fr) 42px;
  align-items: center;
  gap: 0.7rem;
  padding: 0 0 0.85rem;
  border-bottom: 1px solid #e8e2eb;
}
.nearby-field-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta);
  background: #fff2f8;
  border-radius: 50%;
}
.nearby-field-icon svg,
.nearby-locate-btn svg,
.nearby-finder-actions svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nearby-field-copy {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(120px,1fr);
  align-items: center;
  gap: 0.75rem;
}
.nearby-field-copy strong {
  color: #211944;
  font-size: 0.74rem;
  font-weight: 600;
  white-space: nowrap;
}
.nearby-field-copy select {
  min-width: 0;
  width: 100%;
  padding: 0.3rem 1.5rem 0.3rem 0;
  color: #81788a;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-family: var(--font-body);
  font-size: 0.7rem;
  cursor: pointer;
}
.nearby-locate-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--magenta);
  background: #fff7fb;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}
.nearby-locate-btn:hover {
  color: #fff;
  background: var(--magenta);
}
.nearby-finder-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.nearby-finder-actions .btn {
  min-width: 155px;
  min-height: 47px;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 11px;
  font-size: 0.72rem;
}
.nearby-finder-actions .btn-primary {
  background: linear-gradient(90deg, #e9167d, #6e249f);
  box-shadow: 0 8px 17px rgba(126,33,143,.17);
}
.nearby-finder-actions .btn-ghost {
  color: #332458;
  background: #fff;
  border: 1px solid #e1dce6;
}
.nearby-finder-art {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nearby-finder-art svg {
  width: min(100%, 300px);
  height: auto;
  display: block;
}
@media (max-width: 800px) {
  .section.nearby-showcase {
    margin: 1.25rem 0.65rem;
    padding: 1.5rem 1rem;
  }
  .nearby-finder {
    grid-template-columns: 1fr;
  }
  .nearby-finder-art {
    display: none;
  }
}
@media (max-width: 520px) {
  .section.nearby-showcase {
    padding: 1.25rem 0.8rem;
  }
  .nearby-field-copy {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
  .nearby-field-copy select {
    padding-left: 0;
  }
  .nearby-finder-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .nearby-finder-actions .btn {
    width: 100%;
  }
}

.jobs-filter-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--indigo-deep);
  margin-bottom: 0.35rem;
}
.jobs-field-box {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: 1.5px solid rgba(61, 26, 110, 0.14);
  border-radius: 12px;
  padding: 0.55rem 0.7rem;
  background: #fff;
  min-height: 46px;
}
.jobs-field-box:focus-within {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(194, 24, 107, 0.12);
}
.jobs-field-box svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--magenta);
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
}
.jobs-field-box input,
.jobs-field-box select {
  border: 0;
  outline: none;
  width: 100%;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
}
.jobs-filter-btn {
  border-radius: 12px;
  padding: 0.72rem 1.15rem;
  white-space: nowrap;
  gap: 0.4rem;
}

.jobs-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 1rem;
}
.jobs-count {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--indigo-deep);
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.jobs-count::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: var(--magenta);
}
.jobs-sort {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.jobs-sort label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}
.jobs-sort select {
  border: 1.5px solid rgba(61, 26, 110, 0.14);
  border-radius: 10px;
  padding: 0.4rem 0.65rem;
  font-family: inherit;
  font-size: 0.82rem;
  background: #fff;
  color: var(--ink);
}

.jobs-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.jobs-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 14px;
}
.job-card {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 0.85rem 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(61, 26, 110, 0.08);
  border-radius: 16px;
  padding: 1rem 1.1rem 1rem 0.85rem;
  box-shadow: 0 8px 24px rgba(36, 16, 63, 0.06);
  position: relative;
  overflow: hidden;
}
.job-card-accent {
  width: 4px;
  align-self: stretch;
  border-radius: 999px;
  background: var(--magenta);
}
.job-card.accent-blue .job-card-accent { background: #3b82f6; }
.job-card.accent-purple .job-card-accent { background: #7c3aed; }
.job-card.accent-pink .job-card-accent { background: #c2186b; }
.job-card.accent-blue .job-card-icon {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
}
.job-card.accent-purple .job-card-icon {
  background: rgba(124, 58, 237, 0.12);
  color: #6d28d9;
}
.job-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(194, 24, 107, 0.1);
  color: var(--magenta);
  flex-shrink: 0;
}
.job-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.job-card-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.6rem;
  margin-bottom: 0.4rem;
}
.job-card-title-row h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--indigo-deep);
}
.job-card-title-row h3 a:hover { color: var(--magenta); }
.job-featured {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(194, 24, 107, 0.1);
  color: var(--magenta);
  font-size: 0.68rem;
  font-weight: 600;
}
.job-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 400;
}
.job-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.job-card-meta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.7;
}
.job-card-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.job-save {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(61, 26, 110, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  background: #fff;
}
.job-save:hover {
  border-color: var(--magenta);
  color: var(--magenta);
  background: rgba(194, 24, 107, 0.05);
}
.job-save svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.job-apply {
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  gap: 0.35rem;
  box-shadow: none !important;
}
.job-apply.is-primary {
  background: var(--magenta);
  color: #fff;
  border: none;
}
.job-apply.is-primary:hover { background: var(--magenta-deep); }
.job-apply.is-outline {
  background: #fff;
  color: var(--magenta);
  border: 1.5px solid rgba(194, 24, 107, 0.45);
}
.job-apply.is-outline:hover {
  background: rgba(194, 24, 107, 0.06);
}

.jobs-pagination {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
}
.jp-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(61, 26, 110, 0.14);
  background: #fff;
  color: var(--indigo);
  font-size: 0.82rem;
  font-weight: 600;
}
.jp-btn.is-active {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}
.jp-btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

@media (max-width: 900px) {
  .jobs-filter-card {
    grid-template-columns: 1fr 1fr;
  }
  .jobs-filter-btn { grid-column: 1 / -1; width: 100%; justify-content: center; }
  .job-card {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "accent icon"
      "accent body"
      "accent actions";
  }
  .job-card-accent { grid-area: accent; }
  .job-card-icon { grid-area: icon; }
  .job-card-body { grid-area: body; }
  .job-card-actions {
    grid-area: actions;
    justify-content: flex-start;
    margin-top: 0.15rem;
  }
}
@media (max-width: 560px) {
  .jobs-filter-card { grid-template-columns: 1fr; }
  .jobs-hero { padding-bottom: 3.75rem; }
  .jobs-page { margin-top: -2.1rem; }
}

/* Content */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-top: 2rem;
  font-size: 1.25rem;
  color: var(--indigo-deep);
  letter-spacing: -0.02em;
}
.prose p, .prose li { color: var(--muted); font-weight: 400; }
.prose ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }

/* About page */
.page-about .about-hero {
  padding: 2.1rem 1.15rem 2rem;
  background: linear-gradient(115deg, #2a1250 0%, #5b1f7a 40%, #a01f7a 75%, #c2186b 100%);
}
.page-about .about-hero h1 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
}
.page-about .about-hero p {
  font-size: 0.9rem;
  max-width: 46ch;
}
.about-hero-eyebrow {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: #f5b8d4;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  letter-spacing: 0.12em;
}
.about-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}
.about-intro {
  margin-bottom: 1.75rem;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(61, 26, 110, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(36, 16, 63, 0.05);
}
.about-lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--indigo-deep);
  font-weight: 400;
}
.about-lead strong {
  font-weight: 600;
  color: var(--plum);
}
.about-block {
  margin-bottom: 1.75rem;
}
.about-block-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.about-block-head h2 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  color: var(--indigo-deep);
  letter-spacing: -0.02em;
}
.about-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(194, 24, 107, 0.08);
  color: var(--magenta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-ico svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-block > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 62ch;
}
.about-beliefs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.about-belief {
  background: #fff;
  border: 1px solid rgba(61, 26, 110, 0.08);
  border-radius: 14px;
  padding: 1rem 0.95rem 1.05rem;
  box-shadow: 0 6px 18px rgba(36, 16, 63, 0.04);
}
.about-belief-ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(61, 26, 110, 0.07);
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
}
.about-belief-ico svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-belief h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
  color: var(--indigo-deep);
  letter-spacing: -0.01em;
}
.about-belief p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 400;
}
.about-serve {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.about-serve-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(61, 26, 110, 0.07);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}
.about-serve-ico {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(194, 24, 107, 0.08);
  color: var(--magenta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about-serve-ico svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-serve-item h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
  color: var(--indigo-deep);
}
.about-serve-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}
.about-cta {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(115deg, #2a1250 0%, #8b2a8f 55%, #c2186b 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(194, 24, 107, 0.22);
}
.about-cta h2 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.about-cta p {
  margin: 0;
  font-size: 0.84rem;
  opacity: 0.88;
  font-weight: 400;
}
.about-cta .btn-primary {
  background: #fff;
  color: var(--indigo-deep);
  border: none;
  box-shadow: none;
  font-weight: 600;
  font-size: 0.84rem;
  padding: 0.55rem 1.05rem;
}

@media (max-width: 720px) {
  .about-beliefs { grid-template-columns: 1fr; }
  .about-cta { align-items: flex-start; }
  .about-cta .btn { width: 100%; justify-content: center; }
}

/* Employers page */
.page-employers .employers-hero {
  padding: 1.65rem 1.15rem 1.5rem;
  background: linear-gradient(115deg, #2a1250 0%, #5b1f7a 40%, #a01f7a 75%, #c2186b 100%);
}
.page-employers .employers-hero h1 {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.page-employers .employers-hero p {
  font-size: 0.86rem;
  margin-top: 0.4rem;
  max-width: 42ch;
  font-weight: 400;
}
.employers-hero-eyebrow {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: #f5b8d4;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 600;
}
.employers-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 1.15rem 2.5rem;
}
.employers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.employers-card {
  background: #fff;
  border: 1px solid rgba(61, 26, 110, 0.08);
  border-radius: 14px;
  padding: 1rem 0.95rem 1.05rem;
  box-shadow: 0 6px 18px rgba(36, 16, 63, 0.04);
}
.employers-card-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  background: rgba(194, 24, 107, 0.08);
  color: var(--magenta);
}
.employers-card-ico svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.employers-card h3 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  margin: 0 0 0.3rem;
  color: var(--indigo-deep);
  letter-spacing: -0.01em;
}
.employers-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.employers-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}
.employers-cta .btn {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  box-shadow: none;
}
.employers-cta .btn-primary {
  box-shadow: 0 8px 18px rgba(194, 24, 107, 0.2);
}
.employers-cta .btn-outline {
  border-color: rgba(61, 26, 110, 0.2);
  color: var(--indigo);
  background: #fff;
}
.employers-cta .btn-outline:hover {
  border-color: var(--magenta);
  color: var(--magenta-deep);
}

@media (max-width: 720px) {
  .employers-grid { grid-template-columns: 1fr; }
  .employers-cta .btn { flex: 1; justify-content: center; min-width: 140px; }
}

/* Contact page */
.page-contact .contact-hero {
  padding: 1.65rem 1.15rem 1.5rem;
  background: linear-gradient(115deg, #2a1250 0%, #5b1f7a 40%, #a01f7a 75%, #c2186b 100%);
}
.page-contact .contact-hero h1 {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 500;
}
.page-contact .contact-hero p {
  font-size: 0.86rem;
  margin-top: 0.4rem;
}
.contact-hero-eyebrow {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: #f5b8d4;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 600;
}
.contact-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.15rem 2.75rem;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 1.15rem;
  align-items: start;
}
.contact-info {
  background: #fff;
  border: 1px solid rgba(61, 26, 110, 0.08);
  border-radius: 16px;
  padding: 1.25rem 1.2rem 1.3rem;
  box-shadow: 0 8px 24px rgba(36, 16, 63, 0.05);
}
.contact-info h2 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: var(--indigo-deep);
  letter-spacing: -0.02em;
}
.contact-info-lead {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}
.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.contact-details li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: flex-start;
}
.contact-detail-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(194, 24, 107, 0.08);
  color: var(--magenta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-ico svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-details strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--indigo-deep);
  margin-bottom: 0.15rem;
}
.contact-details span,
.contact-details a {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 400;
}
.contact-details a:hover { color: var(--magenta); }
.contact-social {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(61, 26, 110, 0.08);
}
.contact-social p {
  margin: 0 0 0.55rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--indigo-deep);
}
.contact-social-links {
  display: flex;
  gap: 0.45rem;
}
.contact-social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(61, 26, 110, 0.07);
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.contact-social-links a:hover {
  background: var(--grad);
  color: #fff;
}
.contact-form-card {
  background: #fff;
  border: 1px solid rgba(61, 26, 110, 0.08);
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.35rem;
  box-shadow: 0 8px 24px rgba(36, 16, 63, 0.05);
}
.contact-form-head {
  margin-bottom: 1rem;
}
.contact-form-head h2 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
  color: var(--indigo-deep);
  letter-spacing: -0.02em;
}
.contact-form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}
.contact-form .form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--indigo-deep);
}
.contact-form .form-group label i {
  color: #e11d48;
  font-style: normal;
  font-weight: 700;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
  font-size: 0.88rem;
  border-radius: 10px;
  padding: 0.62rem 0.85rem;
}
.contact-form .form-group { margin-bottom: 0.85rem; }
.contact-submit {
  margin-top: 0.25rem;
  font-weight: 500;
  font-size: 0.88rem;
  gap: 0.45rem;
  box-shadow: 0 8px 18px rgba(194, 24, 107, 0.22);
}
.contact-submit svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* Dashboard */
.dash-layout {
  display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - var(--header-h));
}
.dash-side {
  background: var(--indigo-deep); color: #fff; padding: 1.5rem 1rem;
}
.dash-side h2 {
  font-size: 1rem; padding: 0 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 1rem;
}
.dash-side a {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  padding: 0.65rem 0.75rem; border-radius: 8px;
  color: rgba(255,255,255,0.78); font-size: 0.9rem; margin-bottom: 0.15rem;
  transition: background 0.2s, color 0.2s;
}
.dash-side a:hover, .dash-side a.is-active {
  background: rgba(255,255,255,0.1); color: #fff;
}
.dash-nav-group {
  margin: 0.9rem 0.75rem 0.35rem;
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); font-weight: 600;
}
.nav-badge {
  min-width: 1.25rem; height: 1.25rem; padding: 0 0.35rem;
  border-radius: 999px; background: #e91e8c; color: #fff;
  font-size: 0.7rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.admin-toolbar {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: end;
  justify-content: space-between; margin-bottom: 1.25rem;
}
.admin-toolbar .filters { margin: 0; flex: 1; }
.chart-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.25rem; margin: 1.5rem 0;
}
.chart-panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.2rem; min-height: 280px;
}
.chart-panel h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.panel-split {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.25rem; margin-top: 1.25rem;
}
.detail-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem 1.25rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem; margin-bottom: 1.25rem;
}
.detail-grid dt { font-size: 0.78rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.detail-grid dd { margin: 0.15rem 0 0; font-weight: 500; }
.action-row { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.inline-forms { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.kpi a { color: inherit; }
.kpi:hover { border-color: var(--magenta); }
@media (max-width: 960px) {
  .chart-grid, .panel-split, .detail-grid { grid-template-columns: 1fr; }
}
.dash-main { padding: 1.75rem 1.5rem; background: var(--cream); }
.dash-main h1 { font-size: 1.6rem; margin-bottom: 1.25rem; }
.kpi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem;
  margin-bottom: 2rem;
}
.kpi {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}
.kpi strong {
  display: block; font-family: var(--font-display); font-size: 1.75rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.kpi span { font-size: 0.85rem; color: var(--muted); }

/* ===== Seeker portal (professional) ===== */
.seeker-portal {
  background: #f4f1f8;
}
.seeker-side {
  background: linear-gradient(180deg, #1c1230 0%, #24103f 55%, #1a0e2c 100%);
  padding: 1.25rem 0.85rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.seeker-side-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.35rem 0.65rem 1.1rem;
  margin-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.seeker-side-badge {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(194, 24, 107, 0.22);
  color: #f7d6e8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.seeker-side-badge svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.seeker-side-brand strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.seeker-side-brand span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  margin-top: 0.1rem;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.seeker-side .dash-nav-group {
  margin: 1rem 0.75rem 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 500;
}
.seeker-side-nav a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem;
  margin: 0 0.2rem 0.12rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 500;
  border-left: 2px solid transparent;
}
.seeker-side-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.seeker-side-nav a.is-active {
  background: rgba(194, 24, 107, 0.18);
  color: #fff;
  border-left-color: #e45a9a;
}
.seeker-nav-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.seeker-nav-ico svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.seeker-side-nav a.is-active .seeker-nav-ico {
  background: rgba(255, 255, 255, 0.12);
}
.seeker-main {
  padding: 1.75rem 1.75rem 2.25rem;
  background: #f4f1f8;
}
.seeker-dash-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin-bottom: 1.15rem;
}
.seeker-dash-eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8299;
}
.seeker-main h1,
.seeker-dash-head h1 {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--indigo-deep);
  margin: 0 0 0.35rem;
}
.seeker-dash-lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  max-width: 42ch;
  line-height: 1.45;
}
.seeker-dash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.seeker-dash-actions .btn {
  font-weight: 500;
}
.seeker-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.seeker-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--indigo-deep);
}
.seeker-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9a90ad;
}
.seeker-status-chip.is-ok .seeker-status-dot { background: #16a34a; }
.seeker-status-chip.is-warn .seeker-status-dot { background: #d97706; }
.seeker-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.95rem 1.1rem;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  background: #fff8ef;
  border: 1px solid rgba(217, 119, 6, 0.22);
}
.seeker-callout strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--indigo-deep);
  margin-bottom: 0.15rem;
}
.seeker-callout p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}
.seeker-kpi-grid {
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.seeker-kpi {
  display: block;
  text-decoration: none;
  padding: 1.15rem 1.15rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(61, 26, 110, 0.08);
  box-shadow: 0 8px 24px rgba(36, 16, 63, 0.04);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.seeker-kpi:hover {
  border-color: rgba(194, 24, 107, 0.28);
  box-shadow: 0 12px 28px rgba(36, 16, 63, 0.08);
}
.seeker-kpi-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(61, 26, 110, 0.07);
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.seeker-kpi-ico svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.seeker-kpi strong {
  font-family: var(--font-body);
  font-size: 1.55rem;
  font-weight: 600;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--indigo-deep);
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}
.seeker-kpi span {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--indigo-deep);
}
.seeker-kpi small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 400;
}
.seeker-quick {
  background: #fff;
  border: 1px solid rgba(61, 26, 110, 0.08);
  border-radius: 14px;
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: 0 8px 24px rgba(36, 16, 63, 0.04);
}
.seeker-quick h2 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.85rem;
  color: var(--indigo-deep);
}
.seeker-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}
.seeker-quick-grid a {
  display: block;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #faf8fc;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.seeker-quick-grid a:hover {
  border-color: rgba(194, 24, 107, 0.3);
  background: #fff;
}
.seeker-quick-grid strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--indigo-deep);
  margin-bottom: 0.2rem;
}
.seeker-quick-grid .seeker-quick-copy {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.35;
  font-weight: 400;
}
@media (max-width: 1100px) {
  .seeker-quick-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .seeker-portal.dash-layout {
    grid-template-columns: 1fr;
  }
  .seeker-side {
    display: block;
    padding: 1rem;
  }
  .seeker-side-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
  }
  .seeker-side .dash-nav-group {
    grid-column: 1 / -1;
    margin-top: 0.75rem;
  }
  .seeker-main { padding: 1.15rem 1rem 1.75rem; }
  .seeker-quick-grid { grid-template-columns: 1fr; }
}

/* Seeker dashboard — reference layout */
.seeker-portal.dash-layout {
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: calc(100vh - var(--header-h));
}
.seeker-side {
  padding: 1rem 0.65rem 1.5rem;
}
.seeker-side-brand {
  gap: 0.55rem;
  padding: 0.15rem 0.35rem 0.9rem;
}
.seeker-side-avatar {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(135deg, #c2186b, #702b92);
  font-size: 0.95rem;
  font-weight: 600;
}
.seeker-side-identity {
  min-width: 0;
}
.seeker-side-identity strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 115px;
}
.seeker-side-identity em {
  display: inline-flex;
  margin-top: 0.35rem;
  padding: 0.14rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 500;
}
.seeker-side .dash-nav-group {
  margin: 0.85rem 0.55rem 0.28rem;
  font-size: 0.55rem;
}
.seeker-side-nav a {
  gap: 0.45rem;
  padding: 0.42rem 0.5rem;
  margin: 0 0 0.08rem;
  border-radius: 7px;
  font-size: 0.72rem;
}
.seeker-nav-ico {
  width: 23px;
  height: 23px;
  border-radius: 6px;
  background: transparent;
}
.seeker-nav-ico svg {
  width: 13px;
  height: 13px;
}
.seeker-main {
  padding: 1rem 1.25rem 1.5rem;
  background: #f7f5f9;
}
.seeker-welcome {
  min-height: 115px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  border: 1px solid rgba(61,26,110,.07);
  border-radius: 14px;
  background:
    radial-gradient(circle at 75% 30%, rgba(194,24,107,.08), transparent 25%),
    linear-gradient(105deg, #fff 0%, #fbf6fa 56%, #f3edf8 100%);
  padding: 1rem 1.15rem;
  box-shadow: 0 7px 24px rgba(36,16,63,.045);
  overflow: hidden;
}
.seeker-welcome-copy {
  position: relative;
  z-index: 1;
}
.seeker-welcome h1 {
  margin: 0 0 0.35rem;
  font-size: 1.3rem;
  font-weight: 600;
}
.seeker-welcome h1 span {
  font-size: 1.05rem;
}
.seeker-welcome p {
  margin: 0;
  font-size: 0.76rem;
  color: var(--muted);
}
.seeker-welcome-art {
  height: 108px;
  align-self: end;
}
.seeker-welcome-art svg {
  width: 100%;
  height: 100%;
  display: block;
}
.seeker-welcome .seeker-status-row {
  margin: 0.8rem 0 0;
}
.seeker-welcome .seeker-status-chip {
  padding: 0.3rem 0.55rem;
  border: 0;
  font-size: 0.62rem;
  box-shadow: 0 2px 8px rgba(36,16,63,.05);
}
.seeker-status-chip.is-verified .seeker-status-dot {
  background: #7c3aed;
}
.seeker-dash-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
}
.seeker-dash-actions .btn {
  padding: 0.52rem 0.85rem;
  font-size: 0.7rem;
}
.seeker-callout {
  margin-bottom: 0.75rem;
}
.seeker-kpi-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}
.seeker-kpi {
  min-height: 122px;
  padding: 0.8rem 0.9rem;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.seeker-kpi-ico {
  width: 30px;
  height: 30px;
  margin-bottom: 0.55rem;
  position: relative;
  z-index: 2;
}
.seeker-kpi.is-pink .seeker-kpi-ico { color: #c2186b; background: #fde9f3; }
.seeker-kpi.is-purple .seeker-kpi-ico { color: #7c3aed; background: #f1eaff; }
.seeker-kpi.is-blue .seeker-kpi-ico { color: #3977d5; background: #eaf2ff; }
.seeker-kpi.is-orange .seeker-kpi-ico { color: #f59e0b; background: #fff4dd; }
.seeker-kpi strong {
  font-size: 1.25rem;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.seeker-kpi span {
  font-size: 0.73rem;
  position: relative;
  z-index: 2;
}
.seeker-kpi small {
  margin-top: 0.12rem;
  font-size: 0.59rem;
  position: relative;
  z-index: 2;
}
.seeker-kpi-spark {
  position: absolute;
  right: -2px;
  bottom: 4px;
  width: 46%;
  height: 37px;
  opacity: .3;
}
.seeker-kpi-spark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}
.seeker-kpi.is-pink .seeker-kpi-spark { color: #d94c91; }
.seeker-kpi.is-purple .seeker-kpi-spark { color: #8b5fd0; }
.seeker-kpi.is-blue .seeker-kpi-spark { color: #5a91db; }
.seeker-kpi.is-orange .seeker-kpi-spark { color: #e9a83a; }
.seeker-quick {
  padding: 0.8rem 0.9rem 0.9rem;
  margin-bottom: 0.8rem;
  border-radius: 12px;
}
.seeker-quick h2 {
  margin-bottom: 0.55rem;
  font-size: 0.8rem;
}
.seeker-quick h2 span {
  color: var(--magenta);
}
.seeker-quick-grid {
  gap: 0.55rem;
}
.seeker-quick-grid a {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0,1fr) 20px;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem;
  border-radius: 10px;
  background: #fff;
}
.seeker-quick-ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  line-height: 0;
  overflow: hidden;
  font-size: 1rem;
  font-weight: 500;
}
.seeker-quick-ico svg {
  width: 17px;
  height: 17px;
  display: block;
  margin: auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.seeker-quick-grid .is-pink .seeker-quick-ico { color: #c2186b; background: #fde9f3; }
.seeker-quick-grid .is-purple .seeker-quick-ico { color: #7c3aed; background: #f1eaff; }
.seeker-quick-grid .is-blue .seeker-quick-ico { color: #3977d5; background: #eaf2ff; }
.seeker-quick-grid .is-orange .seeker-quick-ico { color: #e98c09; background: #fff2dd; }
.seeker-quick-copy {
  min-width: 0;
}
.seeker-quick-grid .seeker-quick-copy strong {
  font-size: 0.68rem;
  margin: 0 0 0.1rem;
}
.seeker-quick-copy small {
  display: block;
  color: var(--muted);
  font-size: 0.56rem;
  line-height: 1.3;
}
.seeker-quick-grid a > b {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--magenta);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 500;
}
.seeker-quick-grid .is-purple > b { background: #7c3aed; }
.seeker-quick-grid .is-blue > b { background: #3977d5; }
.seeker-quick-grid .is-orange > b { background: #f59e0b; }
.seeker-strength {
  display: grid;
  grid-template-columns: 52px 190px minmax(0,1fr) auto;
  align-items: center;
  gap: 0.8rem;
  background: #fff;
  border: 1px solid rgba(61,26,110,.08);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  box-shadow: 0 7px 22px rgba(36,16,63,.04);
}
.seeker-strength-score {
  --p: calc(var(--score) * 1%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(#702b92 var(--p), #eee8f3 0);
  position: relative;
}
.seeker-strength-score::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #fff;
}
.seeker-strength-score strong {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--indigo-deep);
}
.seeker-strength-copy h2 {
  margin: 0 0 0.15rem;
  font-size: 0.78rem;
  font-weight: 600;
}
.seeker-strength-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.55rem;
  line-height: 1.35;
}
.seeker-strength-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0;
}
.seeker-strength-items > span {
  min-width: 0;
  padding: 0 0.65rem;
  border-left: 1px solid var(--line);
  color: var(--indigo-deep);
  font-size: 0.55rem;
  line-height: 1.25;
}
.seeker-strength-items i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 14px;
  height: 14px;
  margin-right: 0.2rem;
  border-radius: 50%;
  background: #eee8f3;
  color: #7c3aed;
  font-size: 0.48rem;
  font-style: normal;
}
.seeker-strength-items .is-done i {
  color: #fff;
  background: #22a957;
}
.seeker-strength-items small {
  display: block;
  margin: 0.18rem 0 0 1.05rem;
  color: var(--muted);
  font-size: 0.5rem;
}
.seeker-strength .btn {
  white-space: nowrap;
  font-size: 0.62rem;
  padding: 0.55rem 0.8rem;
}
.seeker-mobile-header,
.seeker-mobile-drawer,
.seeker-menu-backdrop,
.seeker-mobile-bottom,
.seeker-mobile-dashboard {
  display: none;
}
@media (max-width: 1050px) {
  .seeker-strength {
    grid-template-columns: 52px minmax(0,1fr) auto;
  }
  .seeker-strength-items {
    grid-column: 1 / -1;
    order: 4;
  }
}
@media (max-width: 860px) {
  body:has(.seeker-portal) .site-header {
    display: none;
  }
  body:has(.seeker-portal) {
    background: #f7f5f9;
  }
  body:has(.seeker-portal) main#main {
    padding-bottom: calc(72px + env(safe-area-inset-bottom)) !important;
  }
  .seeker-portal.dash-layout {
    display: block;
    min-height: 100vh;
  }
  .seeker-side {
    display: none;
  }
  .seeker-mobile-header {
    height: 62px;
    padding: 0.55rem 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 320;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(61,26,110,.09);
    box-shadow: 0 5px 18px rgba(36,16,63,.06);
    backdrop-filter: blur(12px);
  }
  .seeker-mobile-logo {
    display: flex;
    align-items: center;
    height: 48px;
    max-width: 210px;
  }
  .seeker-mobile-logo img {
    display: block;
    width: auto;
    height: 46px;
    max-width: 200px;
    object-fit: contain;
  }
  .seeker-menu-button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--indigo);
    padding: 0;
    cursor: pointer;
  }
  .seeker-menu-button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
  }
  .seeker-menu-backdrop:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 410;
    background: rgba(25,13,43,.48);
  }
  body.seeker-menu-open {
    overflow: hidden;
  }
  .seeker-mobile-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(84vw, 330px);
    z-index: 420;
    padding: 1rem 0.9rem calc(1rem + env(safe-area-inset-bottom));
    background: #fff;
    box-shadow: -18px 0 45px rgba(25,13,43,.18);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform .24s ease, visibility .24s ease;
  }
  .seeker-mobile-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  .seeker-mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 0.2rem 0.8rem;
    border-bottom: 1px solid var(--line);
  }
  .seeker-mobile-drawer-head strong {
    display: block;
    color: var(--indigo-deep);
    font-size: 1rem;
    font-weight: 600;
  }
  .seeker-mobile-drawer-head span {
    display: block;
    color: var(--muted);
    font-size: 0.68rem;
    margin-top: 0.1rem;
  }
  .seeker-mobile-drawer-head button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--indigo);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
  }
  .seeker-mobile-drawer nav {
    flex: 1;
    overflow-y: auto;
    padding: 0.4rem 0;
  }
  .seeker-mobile-drawer nav p {
    margin: 0.75rem 0.5rem 0.25rem;
    color: #9b92aa;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .seeker-mobile-drawer nav a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.62rem 0.65rem;
    margin-bottom: 0.1rem;
    border-radius: 10px;
    color: #584c68;
    font-size: 0.78rem;
    font-weight: 500;
  }
  .seeker-mobile-drawer nav a.is-active {
    color: #fff;
    background: linear-gradient(135deg, #c2186b, #5b1f7a);
  }
  .seeker-mobile-drawer nav svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
  }
  .seeker-mobile-logout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 11px;
    color: #a71955;
    background: #fdf0f6;
    border: 1px solid #f6d3e3;
    font-size: 0.78rem;
    font-weight: 600;
  }
  .seeker-mobile-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 350;
    min-height: 64px;
    padding: 0.42rem 0.35rem calc(0.42rem + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.98);
    border-top: 1px solid rgba(61,26,110,.1);
    box-shadow: 0 -8px 28px rgba(36,16,63,.09);
  }
  .seeker-mobile-bottom a {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.22rem;
    padding: 0.3rem 0.2rem;
    border-radius: 11px;
    color: #746a82;
    font-size: 0.6rem;
    font-weight: 500;
  }
  .seeker-mobile-bottom a.is-active {
    color: var(--magenta);
    background: rgba(194,24,107,.08);
  }
  .seeker-mobile-bottom svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .seeker-desktop-dashboard {
    display: none;
  }
  .seeker-mobile-dashboard {
    display: block;
    padding: 0.75rem 0.7rem 1rem;
  }
  .seeker-mobile-profile-card {
    padding: 1rem;
    border-radius: 15px;
    color: #fff;
    background:
      radial-gradient(circle at 85% 20%, rgba(255,255,255,.14), transparent 24%),
      linear-gradient(135deg, #6c2392 0%, #b51b8a 100%);
    box-shadow: 0 10px 28px rgba(91,31,122,.2);
  }
  .seeker-mobile-profile-main {
    display: grid;
    grid-template-columns: 50px minmax(0,1fr) 62px;
    align-items: center;
    gap: 0.65rem;
  }
  .seeker-mobile-profile-avatar {
    width: 50px;
    height: 50px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #d1348b, #782d9d);
    border: 1px solid rgba(255,255,255,.24);
    font-size: 1.1rem;
    font-weight: 600;
  }
  .seeker-mobile-profile-avatar i {
    width: 10px;
    height: 10px;
    position: absolute;
    right: 0;
    bottom: 2px;
    border-radius: 50%;
    background: #25c463;
    border: 2px solid #fff;
  }
  .seeker-mobile-profile-name {
    min-width: 0;
  }
  .seeker-mobile-profile-name strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
  }
  .seeker-mobile-profile-name > span {
    display: block;
    font-size: 0.66rem;
    opacity: .82;
    margin-top: 0.08rem;
  }
  .seeker-mobile-profile-name em {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    margin-top: 0.4rem;
    padding: 0.18rem 0.45rem;
    border-radius: 999px;
    background: rgba(255,255,255,.13);
    font-size: 0.56rem;
    font-style: normal;
  }
  .seeker-mobile-profile-name em i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #35df6f;
  }
  .seeker-mobile-profile-score {
    text-align: center;
  }
  .seeker-mobile-profile-score > span {
    --p: calc(var(--score) * 1%);
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    position: relative;
    margin: 0 auto 0.25rem;
    border-radius: 50%;
    background: conic-gradient(#fff var(--p), rgba(255,255,255,.25) 0);
  }
  .seeker-mobile-profile-score > span::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: #a32691;
  }
  .seeker-mobile-profile-score strong {
    position: relative;
    z-index: 1;
    font-size: 0.72rem;
    font-weight: 600;
  }
  .seeker-mobile-profile-score small {
    display: block;
    font-size: 0.53rem;
    white-space: nowrap;
    opacity: .9;
  }
  .seeker-mobile-profile-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.8rem;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(255,255,255,.2);
  }
  .seeker-mobile-profile-foot p {
    margin: 0;
    font-size: 0.62rem;
    line-height: 1.35;
    opacity: .9;
  }
  .seeker-mobile-profile-foot a {
    flex: 0 0 auto;
    padding: 0.48rem 0.85rem;
    border-radius: 8px;
    background: #fff;
    color: #6b1c84;
    font-size: 0.65rem;
    font-weight: 600;
  }
  .seeker-mobile-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0 0.5rem;
  }
  .seeker-mobile-section-head h2 {
    margin: 0;
    color: var(--indigo-deep);
    font-size: 0.85rem;
    font-weight: 600;
  }
  .seeker-mobile-section-head a {
    color: #702b92;
    font-size: 0.65rem;
    font-weight: 500;
  }
  .seeker-mobile-overview,
  .seeker-mobile-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 0.5rem;
  }
  .seeker-mobile-overview a,
  .seeker-mobile-actions a {
    min-width: 0;
    border-radius: 12px;
    border: 1px solid rgba(61,26,110,.09);
    background: #fff;
    box-shadow: 0 5px 16px rgba(36,16,63,.035);
  }
  .seeker-mobile-overview a {
    padding: 0.65rem 0.55rem;
  }
  .seeker-mobile-overview a > span,
  .seeker-mobile-actions a > span,
  .seeker-mobile-link-panel a > span {
    width: 29px;
    height: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #7c3aed;
    background: #f1eaff;
  }
  .seeker-mobile-overview svg,
  .seeker-mobile-actions svg,
  .seeker-mobile-link-panel svg {
    width: 15px;
    height: 15px;
    display: block;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .seeker-mobile-overview .is-green > span,
  .seeker-mobile-actions .is-green > span,
  .seeker-mobile-link-panel .is-green > span { color: #20a85a; background: #eaf8ef; }
  .seeker-mobile-overview .is-orange > span,
  .seeker-mobile-link-panel .is-orange > span { color: #e99117; background: #fff4e5; }
  .seeker-mobile-overview .is-blue > span,
  .seeker-mobile-actions .is-blue > span,
  .seeker-mobile-link-panel .is-blue > span { color: #3977d5; background: #eaf2ff; }
  .seeker-mobile-actions .is-pink > span { color: #c2186b; background: #fdeaf3; }
  .seeker-mobile-overview strong {
    display: block;
    margin-top: 0.55rem;
    color: var(--indigo-deep);
    font-size: 1rem;
    line-height: 1;
    font-weight: 600;
  }
  .seeker-mobile-overview b {
    display: block;
    margin-top: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--indigo-deep);
    font-size: 0.58rem;
    font-weight: 500;
  }
  .seeker-mobile-overview small {
    display: block;
    margin-top: 0.18rem;
    color: var(--muted);
    font-size: 0.52rem;
  }
  .seeker-mobile-actions a {
    min-height: 82px;
    padding: 0.7rem 0.35rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.4rem;
  }
  .seeker-mobile-actions b {
    color: var(--indigo-deep);
    font-size: 0.58rem;
    line-height: 1.25;
    font-weight: 500;
  }
  .seeker-mobile-link-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0.35rem;
    border-radius: 13px;
    border: 1px solid rgba(61,26,110,.08);
    background: #fff;
  }
  .seeker-mobile-link-panel a {
    min-width: 0;
    display: grid;
    grid-template-columns: 30px minmax(0,1fr) 12px;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.45rem;
  }
  .seeker-mobile-link-panel a:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
  .seeker-mobile-link-panel a:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
  .seeker-mobile-link-panel a > span {
    width: 28px;
    height: 28px;
  }
  .seeker-mobile-link-panel div {
    min-width: 0;
  }
  .seeker-mobile-link-panel strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--indigo-deep);
    font-size: 0.62rem;
    font-weight: 500;
  }
  .seeker-mobile-link-panel small {
    display: block;
    margin-top: 0.12rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--muted);
    font-size: 0.51rem;
  }
  .seeker-mobile-link-panel a > b {
    color: #82798f;
    font-size: 1rem;
    font-weight: 400;
  }
  .seeker-mobile-support a {
    border-bottom: 0 !important;
  }
  .seeker-mobile-support .is-gray > span {
    color: #746a82;
    background: #f1eff4;
  }
  .seeker-mobile-notify {
    min-height: 105px;
    margin-top: 0.9rem;
    padding: 0.85rem 0.95rem;
    display: grid;
    grid-template-columns: minmax(0,1fr) 120px;
    align-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #f6effc, #eee7fa);
    overflow: hidden;
  }
  .seeker-mobile-notify strong {
    display: block;
    color: var(--indigo-deep);
    font-size: 0.8rem;
    font-weight: 600;
  }
  .seeker-mobile-notify p {
    margin: 0.2rem 0 0.6rem;
    color: var(--muted);
    font-size: 0.56rem;
    line-height: 1.4;
  }
  .seeker-mobile-notify a {
    display: inline-flex;
    padding: 0.48rem 0.65rem;
    border-radius: 7px;
    color: #fff;
    background: linear-gradient(135deg, #8a2bbb, #5b1f9a);
    font-size: 0.57rem;
    font-weight: 500;
  }
  .seeker-mobile-notify > span {
    align-self: end;
  }
  .seeker-mobile-notify > span svg {
    width: 100%;
    height: auto;
    display: block;
  }
  .seeker-welcome { grid-template-columns: 1fr 170px; }
  .seeker-kpi-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px) {
  .seeker-main { padding: 0; }
  .seeker-welcome {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .seeker-welcome-art { display: none; }
  .seeker-dash-toolbar > span { display: none; }
  .seeker-dash-toolbar { justify-content: flex-start; }
  .seeker-dash-actions { width: 100%; }
  .seeker-dash-actions .btn { flex: 1; }
  .seeker-quick-grid { grid-template-columns: 1fr; }
  .seeker-strength {
    grid-template-columns: 52px minmax(0,1fr);
  }
  .seeker-strength .btn { grid-column: 1 / -1; }
  .seeker-strength-items { grid-template-columns: 1fr 1fr; gap: 0.55rem 0; }
}

/* Seeker profile form */
.seeker-profile-page {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.seeker-profile-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(61,26,110,.08);
  border-radius: 14px;
  background:
    radial-gradient(circle at 90% 10%, rgba(194,24,107,.08), transparent 26%),
    #fff;
  box-shadow: 0 7px 22px rgba(36,16,63,.04);
}
.seeker-profile-eyebrow {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--magenta);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.seeker-profile-heading h1 {
  margin: 0;
  color: var(--indigo-deep);
  font-size: 1.25rem;
  font-weight: 600;
}
.seeker-profile-heading p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}
.seeker-profile-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.7rem;
  color: #167441;
  background: #eaf8ef;
  border: 1px solid #ceeeda;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 600;
}
.seeker-profile-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22a957;
}
.seeker-profile-form {
  display: grid;
  gap: 0.85rem;
}
.seeker-profile-section {
  display: grid;
  grid-template-columns: 190px minmax(0,1fr);
  gap: 1.4rem;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid rgba(61,26,110,.08);
  border-radius: 14px;
  box-shadow: 0 7px 22px rgba(36,16,63,.035);
}
.seeker-profile-section-head {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.seeker-profile-section-head > span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7a2e9c;
  background: #f4ecf9;
  border-radius: 9px;
}
.seeker-profile-section-head svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.seeker-profile-section-head h2 {
  margin: 0.05rem 0 0.2rem;
  color: var(--indigo-deep);
  font-size: 0.82rem;
  font-weight: 600;
}
.seeker-profile-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.4;
}
.seeker-profile-fields {
  min-width: 0;
}
.seeker-profile-form .form-row {
  gap: 0.85rem;
}
.seeker-profile-form .form-group {
  margin-bottom: 0.8rem;
}
.seeker-profile-form .form-group:last-child {
  margin-bottom: 0;
}
.seeker-profile-form .form-group label {
  margin-bottom: 0.35rem;
  color: #433650;
  font-size: 0.68rem;
  font-weight: 500;
}
.seeker-profile-form .form-group input:not([type="checkbox"]),
.seeker-profile-form .form-group select,
.seeker-profile-form .form-group textarea {
  min-height: 42px;
  padding: 0.62rem 0.75rem;
  color: #2f2737;
  border: 1px solid #e3dfe8;
  border-radius: 9px;
  font-size: 0.78rem;
  line-height: 1.4;
}
.seeker-profile-form .form-group textarea {
  min-height: 82px;
  resize: vertical;
}
.seeker-profile-form .form-group input:focus,
.seeker-profile-form .form-group select:focus,
.seeker-profile-form .form-group textarea:focus {
  border-color: rgba(194,24,107,.65);
  box-shadow: 0 0 0 3px rgba(194,24,107,.09);
}
.seeker-skill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0.55rem;
}
.seeker-skill-option {
  min-width: 0;
  min-height: 40px;
  display: flex !important;
  align-items: center;
  gap: 0.55rem;
  margin: 0 !important;
  padding: 0.55rem 0.65rem;
  color: #51445f !important;
  background: #fcfbfd;
  border: 1px solid #e7e2eb;
  border-radius: 9px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.seeker-skill-option:hover {
  border-color: rgba(194,24,107,.35);
  background: #fff8fb;
}
.seeker-skill-option input {
  appearance: none;
  width: 16px !important;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  padding: 0 !important;
  display: grid;
  place-content: center;
  border: 1.5px solid #b9afc2 !important;
  border-radius: 4px !important;
  background: #fff;
}
.seeker-skill-option input::before {
  content: "";
  width: 8px;
  height: 5px;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg) scale(0);
}
.seeker-skill-option input:checked {
  border-color: var(--magenta) !important;
  background: var(--magenta);
}
.seeker-skill-option input:checked::before {
  transform: rotate(-45deg) scale(1);
}
.seeker-skill-option span {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.68rem;
  font-weight: 500;
  white-space: nowrap;
}
.seeker-current-job {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  margin: 0 !important;
  cursor: pointer;
}
.seeker-current-job input {
  width: 16px !important;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  accent-color: var(--magenta);
}
.seeker-profile-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid rgba(61,26,110,.08);
  border-radius: 12px;
  box-shadow: 0 7px 22px rgba(36,16,63,.035);
}
.seeker-profile-actions p {
  margin: 0 auto 0 0;
  color: var(--muted);
  font-size: 0.66rem;
}
.seeker-profile-actions .btn {
  min-width: 140px;
  justify-content: center;
  padding: 0.65rem 1rem;
  font-size: 0.75rem;
}
@media (max-width: 860px) {
  .seeker-profile-page {
    padding: 0.85rem 0.75rem 1rem;
  }
  .seeker-profile-heading {
    margin-bottom: 0.75rem;
    padding: 0.9rem 1rem;
  }
  .seeker-profile-section {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 1rem;
  }
  .seeker-profile-section-head {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eeeaf1;
  }
  .seeker-skill-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .seeker-profile-actions {
    position: sticky;
    bottom: calc(64px + env(safe-area-inset-bottom));
    z-index: 20;
  }
}
@media (max-width: 560px) {
  .seeker-profile-heading {
    align-items: flex-start;
  }
  .seeker-profile-heading h1 {
    font-size: 1.05rem;
  }
  .seeker-profile-heading p {
    font-size: 0.66rem;
  }
  .seeker-profile-status {
    padding: 0.34rem 0.5rem;
    font-size: 0;
  }
  .seeker-profile-status::before {
    width: 8px;
    height: 8px;
  }
  .seeker-profile-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .seeker-profile-actions p {
    display: none;
  }
  .seeker-profile-actions .btn {
    width: 100%;
  }
}

.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
th, td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
th { background: var(--blush); font-weight: 600; color: var(--indigo); }
.status {
  display: inline-block; padding: 0.15rem 0.55rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600; text-transform: capitalize;
}
.status-pending, .status-applied { background: #fff3cd; color: #856404; }
.status-approved, .status-verified, .status-hired, .status-offered { background: #d4edda; color: #155724; }
.status-rejected, .status-blocked { background: #f8d7da; color: #721c24; }
.status-shortlisted, .status-interview { background: #e2d9f3; color: #3d1a6e; }

/* Footer */
.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;
}
.site-footer {
  position: relative;
  margin-top: 2.25rem;
  color: rgba(255,255,255,0.82);
  font-weight: 400;
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(194, 24, 107, 0.22), transparent 55%),
    radial-gradient(ellipse 45% 50% at 0% 100%, rgba(91, 31, 122, 0.45), transparent 50%),
    linear-gradient(145deg, #1a0a2e 0%, #2a1048 42%, #3a1560 100%);
  overflow: hidden;
}
.footer-decor {
  position: absolute; pointer-events: none; z-index: 0;
}
.footer-decor-lotus {
  left: -40px; bottom: -30px; width: 180px; height: 180px; opacity: 0.07;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='%23fff'%3E%3Cellipse cx='100' cy='120' rx='18' ry='55'/%3E%3Cellipse cx='100' cy='120' rx='18' ry='55' transform='rotate(36 100 120)'/%3E%3Cellipse cx='100' cy='120' rx='18' ry='55' transform='rotate(72 100 120)'/%3E%3Cellipse cx='100' cy='120' rx='18' ry='55' transform='rotate(108 100 120)'/%3E%3Cellipse cx='100' cy='120' rx='18' ry='55' transform='rotate(144 100 120)'/%3E%3Ccircle cx='100' cy='120' r='14'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}
.footer-decor-dots {
  right: -20px; top: -20px; width: 240px; height: 240px; opacity: 0.1;
  background-image: radial-gradient(circle, rgba(255,255,255,0.55) 1.2px, transparent 1.4px);
  background-size: 14px 14px;
  mask-image: radial-gradient(circle at center, #000 20%, transparent 70%);
}
.footer-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 2rem 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 1.15fr;
  gap: 1.25rem 1.35rem;
  align-items: start;
}
.footer-logo-wrap {
  display: inline-block;
  background: #fff;
  border-radius: 10px;
  padding: 0.35rem 0.5rem;
  margin-bottom: 0.65rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.footer-logo { height: 48px; width: auto; }
.tagline-hi {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.12rem;
}
.tagline-en {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}
.footer-accent-line {
  display: block;
  width: 40px; height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e91e8c, #9b3dbf);
  margin-bottom: 0.7rem;
}
.footer-accent-line.short { width: 32px; margin: 0.25rem 0 0; }
.footer-social {
  display: flex; gap: 0.4rem; margin-bottom: 0.75rem;
}
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.footer-social a:hover {
  background: var(--grad);
  border-color: transparent;
  transform: translateY(-2px);
}
.footer-contact {
  list-style: none; margin: 0; padding: 0.7rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 0.45rem;
}
.footer-contact li {
  display: flex; gap: 0.5rem; align-items: flex-start;
  font-size: 0.78rem; font-weight: 400; line-height: 1.4;
  color: rgba(255,255,255,0.72);
}
.footer-contact a { color: rgba(255,255,255,0.82); font-weight: 400; }
.footer-contact a:hover { color: #ff8fc8; }
.fc-icon {
  flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(233, 30, 140, 0.18);
  color: #ff7eb8;
  margin-top: 1px;
}
.fc-icon svg { width: 12px; height: 12px; }
.footer-links-col {
  padding-top: 0.1rem;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 1.15rem;
}
.footer-links-col h4,
.newsletter-head h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.55rem;
  font-weight: 600;
}
.footer-link-list {
  display: flex; flex-direction: column;
}
.footer-link-list a {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 400;
  border-bottom: 1px dashed rgba(255,255,255,0.14);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-link-list a:last-child { border-bottom: 0; }
.footer-link-list a span {
  color: #ff6eb4; font-weight: 500; font-size: 0.9rem; line-height: 1;
}
.footer-link-list a:hover {
  color: #fff;
  padding-left: 0.2rem;
}
.newsletter-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 1rem 1rem 0.9rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.16);
}
.newsletter-head {
  display: flex; align-items: center; gap: 0.55rem;
  margin-bottom: 0.45rem;
}
.newsletter-head h4 {
  margin: 0; letter-spacing: 0.03em; text-transform: none;
  font-size: 0.95rem; font-weight: 600;
}
.newsletter-icon {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #9b3dbf, #5b1f7a);
  flex-shrink: 0;
}
.newsletter-icon svg { width: 16px; height: 16px; }
.newsletter-card > p {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin: 0 0 0.7rem;
  line-height: 1.4;
}
.newsletter-form { display: flex; flex-direction: column; gap: 0.5rem; }
.newsletter-input {
  display: flex; align-items: center; gap: 0.45rem;
  background: #fff;
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  color: var(--indigo);
}
.newsletter-input input {
  border: 0; outline: none; width: 100%;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 400;
  background: transparent; color: var(--ink);
}
.newsletter-input input::placeholder { color: #8a8096; }
.newsletter-btn {
  width: 100%;
  border-radius: 999px;
  justify-content: center;
  font-weight: 600;
  padding: 0.55rem 1rem;
  font-size: 0.84rem;
}
.newsletter-privacy {
  display: flex; align-items: center; gap: 0.35rem;
  margin: 0.55rem 0 0 !important;
  font-size: 0.7rem !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.5) !important;
}
.footer-bottom {
  position: relative; z-index: 1;
  background: rgba(10, 4, 20, 0.45);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.7rem 1.25rem 0.85rem;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  display: flex; align-items: center; justify-content: center; gap: 0.4rem; flex-wrap: wrap;
}
.footer-heart { color: #ff6eb4; flex-shrink: 0; }
.footer-legal-mini {
  margin-top: 0.3rem;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.48);
  display: flex; justify-content: center; gap: 0.4rem; flex-wrap: wrap;
}
.footer-legal-mini a { color: rgba(255,255,255,0.52); font-weight: 400; }
.footer-legal-mini a:hover { color: #ff8fc8; }

/* Footer — light brand layout */
.site-footer {
  max-width: 1400px;
  margin: 2.25rem auto 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 100%, rgba(194,24,107,.035), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fffdfd 100%);
  border: 1px solid rgba(61,26,110,.09);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 12px 38px rgba(36,16,63,.08);
}
.footer-decor-lotus {
  left: -28px;
  bottom: -40px;
  width: 170px;
  height: 170px;
  opacity: .055;
  filter: invert(25%) sepia(70%) saturate(3000%) hue-rotate(305deg);
}
.footer-decor-dots {
  right: -15px;
  top: auto;
  bottom: -15px;
  width: 220px;
  height: 150px;
  opacity: .16;
  background-image: radial-gradient(circle, rgba(91,31,122,.35) 1px, transparent 1.3px);
}
.footer-inner {
  max-width: 1300px;
  padding: 2.25rem 2rem 1.9rem;
  grid-template-columns: 1.35fr .85fr .85fr 1.15fr;
  gap: 1.5rem 2rem;
}
.footer-logo-wrap {
  padding: 0;
  margin-bottom: 0.8rem;
  background: transparent;
  box-shadow: none;
}
.footer-logo {
  height: 68px;
  max-width: 220px;
  object-fit: contain;
}
.tagline-hi {
  color: var(--indigo-deep);
  font-size: 1rem;
  font-weight: 600;
}
.tagline-en {
  max-width: 32ch;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}
.footer-accent-line {
  width: 34px;
  height: 2px;
  margin: 0.75rem 0;
  background: linear-gradient(90deg, var(--magenta), #8b2a8f);
}
.footer-follow {
  margin: 0 0 0.55rem;
  color: var(--indigo-deep);
  font-size: 0.76rem;
  font-weight: 600;
}
.footer-social {
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}
.footer-social a {
  width: 34px;
  height: 34px;
  color: var(--indigo);
  background: #fff;
  border: 1px solid rgba(61,26,110,.12);
  box-shadow: 0 3px 10px rgba(36,16,63,.04);
}
.footer-social a:hover {
  color: #fff;
  background: var(--grad);
}
.footer-contact {
  gap: 0.5rem;
  padding-top: 0.8rem;
  border-top-color: rgba(61,26,110,.1);
}
.footer-contact li {
  color: var(--muted);
  font-size: 0.72rem;
}
.footer-contact a {
  color: var(--muted);
}
.footer-contact a:hover {
  color: var(--magenta);
}
.fc-icon {
  width: 27px;
  height: 27px;
  color: var(--magenta);
  background: #fdf0f6;
}
.footer-links-col {
  min-height: 260px;
  padding: 0 0 0 1.5rem;
  border-left: 1px solid rgba(61,26,110,.1);
}
.footer-links-col h4,
.newsletter-head h4 {
  position: relative;
  color: var(--indigo-deep);
  font-size: 0.76rem;
  font-weight: 700;
}
.footer-links-col h4::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--magenta);
}
.footer-link-list {
  gap: 0.05rem;
}
.footer-link-list a {
  gap: 0.65rem;
  padding: 0.55rem 0;
  color: #40354e;
  font-size: 0.76rem;
  border-bottom: 1px dashed rgba(61,26,110,.12);
}
.footer-link-list a span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--magenta);
  background: #faf4fc;
  font-size: 1rem;
}
.footer-link-list a:hover {
  color: var(--magenta);
}
.newsletter-card {
  padding: 1.25rem 1.15rem 1.1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(61,26,110,.1);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(36,16,63,.08);
  backdrop-filter: none;
}
.newsletter-head {
  margin-bottom: 0.7rem;
}
.newsletter-head h4 {
  font-size: 0.95rem;
}
.newsletter-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #7d2aa1, #b52391);
}
.newsletter-card > p {
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.5;
}
.newsletter-input {
  min-height: 42px;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(61,26,110,.12);
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(36,16,63,.035);
}
.newsletter-btn {
  min-height: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d51a73, #7626a1);
}
.newsletter-privacy {
  color: #8a8299 !important;
}
.footer-bottom {
  padding: 0.85rem 1.25rem 1rem;
  color: var(--muted);
  background: rgba(250,247,252,.82);
  border-top: 1px solid rgba(61,26,110,.08);
}
.footer-bottom p {
  color: #665b73;
  font-size: 0.72rem;
}
.footer-legal-mini {
  color: #796e86;
  font-size: 0.68rem;
}
.footer-legal-mini a {
  color: #5b4174;
}
.footer-legal-mini a:hover {
  color: var(--magenta);
}
@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1.15fr 1fr 1fr;
  }
  .footer-newsletter {
    grid-column: 1 / -1;
  }
  .newsletter-card {
    max-width: 520px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .site-footer {
    margin-top: 1.5rem;
    border-radius: 16px 16px 0 0;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem 1rem 1.25rem;
  }
  .footer-brand-col {
    text-align: center;
  }
  .footer-logo {
    margin: 0 auto;
  }
  .tagline-en {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-accent-line {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-contact {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .footer-links-col {
    min-height: 0;
    padding: 0;
    border-left: 0;
  }
  .footer-link-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 .75rem;
  }
  .footer-newsletter {
    grid-column: auto;
  }
  .newsletter-card {
    max-width: none;
  }
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line); padding: 1.1rem 0;
}
.faq-item summary {
  font-weight: 600; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--magenta); font-size: 1.2rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0.75rem 0 0; color: var(--muted); }

/* Filters */
.filters {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem;
  align-items: end;
}
.filters .form-group { margin: 0; min-width: 140px; }

/* Reveal on scroll */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 500;
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.15rem;
  background: #fff;
  border: 1px solid rgba(61, 26, 110, 0.12);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(22, 11, 40, 0.18);
}
.cookie-banner-copy {
  flex: 1 1 240px;
  min-width: 0;
}
.cookie-banner-copy strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--indigo-deep);
  margin-bottom: 0.2rem;
}
.cookie-banner-copy p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.45;
}
.cookie-banner-copy a {
  color: var(--magenta);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
}
.cookie-banner-actions .btn {
  padding: 0.5rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 0.65rem;
    right: 0.65rem;
    bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }
}

/* Responsive */
@media (max-width: 960px) {
  .feature-grid, .story-grid, .stats { grid-template-columns: 1fr 1fr; }
  .feature {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 1rem 0 1rem !important;
  }
  .feature:nth-child(odd) { padding-right: 0.85rem !important; }
  .feature:nth-child(even) { padding-left: 0.85rem !important; }
  .feature:nth-last-child(-n+2) { border-bottom: 0; }
  .stat:nth-child(2)::after { display: none; }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-layout:not(.seeker-portal) .dash-side { display: flex; flex-wrap: wrap; gap: 0.25rem; padding: 1rem; }
  .dash-layout:not(.seeker-portal) .dash-side h2 { width: 100%; }
  .dash-layout:not(.seeker-portal) .dash-side a { padding: 0.45rem 0.65rem; font-size: 0.8rem; }
  .seeker-portal .seeker-side { display: none !important; }
}
@media (max-width: 1100px) {
  .site-nav a { min-width: 50px; padding: 0.3rem 0.3rem; font-size: 0.62rem; font-weight: 500; }
  .brand-logo { height: 54px; }
  .btn-header span { display: none; }
  .btn-header { padding: 0.55rem 0.7rem; }
}
@media (max-width: 768px) {
  :root { --header-h: 92px; }

  .header-topbar-inner {
    min-height: 30px;
    padding: 0.24rem 0.8rem;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }
  .header-top-left {
    gap: 0.55rem;
    min-width: 0;
    flex: 1;
  }
  .header-top-left a {
    font-size: 0.68rem;
    white-space: nowrap;
  }
  .header-top-left a span {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 42vw;
  }
  .header-top-tagline { display: none; }
  .header-top-right { flex-shrink: 0; }
  .header-top-social { gap: 0.3rem; }
  .header-top-social a {
    width: 24px;
    height: 24px;
  }

  .header-shell {
    padding: 0.45rem 0.65rem 0.55rem;
    background: #fff;
  }
  .header-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-radius: 14px;
    min-height: 0;
    padding: 0.38rem 0.55rem;
    box-shadow: 0 5px 16px rgba(36,16,63,.065);
  }
  .brand {
    padding: 0.1rem 0.2rem;
    min-width: 0;
  }
  .brand-logo {
    height: 46px;
    max-width: min(190px, 62vw);
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: 0;
    width: 40px;
    height: 40px;
    padding: 10px;
    gap: 5px;
    border-radius: 10px;
    flex-shrink: 0;
    color: #52216f;
    background: #faf5fc;
    border: 1px solid rgba(112,43,146,.12);
  }

  /* Hide desktop pill nav/actions on mobile — drawer handles them */
  .site-nav,
  .header-actions {
    display: none !important;
  }

  .mobile-drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 400;
    background: rgba(36, 16, 63, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }
  .mobile-drawer-backdrop:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 360px);
    z-index: 410;
    background: linear-gradient(180deg, #ffffff 0%, #fdf2f7 55%, #f8eef4 100%);
    color: var(--ink);
    padding:
      max(0.85rem, env(safe-area-inset-top))
      1rem
      max(1rem, env(safe-area-inset-bottom));
    box-shadow: -16px 0 40px rgba(61, 26, 110, 0.18);
    transform: translateX(105%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
  }
  .mobile-drawer.is-open {
    transform: translateX(0);
  }

  .mobile-drawer-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.65rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(194, 24, 107, 0.14);
    margin-bottom: 0.35rem;
  }
  .mobile-drawer-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
    padding: 0.2rem;
    border: 1px solid rgba(61, 26, 110, 0.1);
  }
  .mobile-drawer-title {
    min-width: 0;
    text-align: center;
  }
  .mobile-drawer-title strong {
    display: block;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: var(--indigo-deep);
  }
  .mobile-drawer-title span {
    display: inline-block;
    margin-top: 0.2rem;
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 500;
    border-bottom: 2px solid var(--magenta);
    padding-bottom: 0.12rem;
  }
  .mobile-drawer-close {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(61, 26, 110, 0.14);
    border-radius: 10px;
    background: #fff;
    color: var(--indigo);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .mobile-drawer-nav {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.25rem 0;
    display: flex;
    flex-direction: column;
  }
  .mobile-drawer-nav a {
    display: grid;
    grid-template-columns: 22px 1fr 16px;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.55rem;
    color: var(--indigo-deep);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(61, 26, 110, 0.08);
    border-radius: 10px;
    line-height: 1.2;
  }
  .mobile-drawer-nav a .nav-ico {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .mobile-drawer-nav a .drawer-chevron {
    opacity: 0.4;
    justify-self: end;
    color: var(--magenta);
  }
  .mobile-drawer-nav a:hover,
  .mobile-drawer-nav a:focus-visible {
    background: rgba(194, 24, 107, 0.06);
    color: var(--magenta-deep);
  }
  .mobile-drawer-nav a.is-active {
    background: rgba(194, 24, 107, 0.12);
    color: var(--magenta);
  }
  .mobile-drawer-nav a.is-active .drawer-chevron {
    opacity: 0.9;
    color: var(--magenta);
  }
  .mobile-drawer-nav a.is-active::before { display: none; }

  .mobile-drawer-foot {
    padding-top: 0.85rem;
    border-top: 1px solid rgba(194, 24, 107, 0.12);
    margin-top: 0.35rem;
  }
  .mobile-drawer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: var(--grad);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 22px rgba(194, 24, 107, 0.28);
  }
  .mobile-drawer-login {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.55rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1.5px solid rgba(61, 26, 110, 0.22);
    background: #fff;
    color: var(--indigo-deep);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(61, 26, 110, 0.06);
  }
  .mobile-drawer-login svg {
    flex-shrink: 0;
    stroke: currentColor;
  }
  .mobile-drawer-login:hover {
    color: var(--magenta);
    border-color: rgba(194, 24, 107, 0.35);
    background: rgba(194, 24, 107, 0.04);
  }
  .mobile-drawer-social-label {
    margin: 1rem 0 0.55rem;
    text-align: center;
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .mobile-drawer-social {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
  }
  .mobile-drawer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(194, 24, 107, 0.2);
    background: #fff;
    color: var(--magenta);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body.nav-open {
    overflow: hidden;
  }
  body.nav-open .mobile-bottom-nav {
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
  }

  /* Bottom nav — white + pink brand */
  .mobile-bottom-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 350;
    background: #fff;
    border-top: 1px solid rgba(194, 24, 107, 0.12);
    box-shadow: 0 -8px 28px rgba(61, 26, 110, 0.1);
    padding: 0.55rem 0.35rem calc(0.85rem + env(safe-area-inset-bottom));
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    padding: 0.45rem 0.25rem 0.4rem;
    border-radius: 14px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    min-width: 0;
  }
  .mobile-bottom-nav a svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .mobile-bottom-nav a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
  }
  .mobile-bottom-nav a.is-active {
    color: var(--magenta);
    background: rgba(194, 24, 107, 0.1);
  }
  .mobile-bottom-nav a.is-active svg {
    stroke-width: 2.15;
  }
  .mobile-bottom-nav a:hover,
  .mobile-bottom-nav a:focus-visible {
    color: var(--indigo);
    background: rgba(61, 26, 110, 0.05);
  }
  .mobile-bottom-nav a.is-active:hover,
  .mobile-bottom-nav a.is-active:focus-visible {
    color: var(--magenta);
    background: rgba(194, 24, 107, 0.14);
  }

  main#main,
  .site-footer {
    padding-bottom: calc(5.25rem + env(safe-area-inset-bottom));
  }

  .feature-grid, .story-grid, .stats, .form-row {
    grid-template-columns: 1fr;
  }
  .feature {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 1rem 0 !important;
  }
  .feature:last-child { border-bottom: 0; }
  .stat:not(:last-child)::after { display: none; }
  .stats { gap: 0.75rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.35rem; }
  .job-row { grid-template-columns: 1fr; }
  .job-row-btn { justify-self: start; }
  .hero { min-height: auto; }
  .hero-content { padding: 2.25rem 1.15rem 2.75rem; }
  .hero .lead { color: rgba(255,255,255,0.92); }
  .hero-simple { padding: 2.35rem 1.1rem 2.6rem; }
  .hero-simple h1 { font-size: 1.55rem; max-width: none; }
  .hero-simple .lead { font-size: 0.88rem; }
  .hero-simple .hero-cta { gap: 0.55rem; }
  .hero-simple .btn { width: 100%; justify-content: center; }
  .section { padding: 2.25rem 1.1rem; }
  .hero .btn-primary {
    background: #fff;
    color: #24103f;
    border: 1px solid #fff;
  }
  .hero .btn-ghost {
    border-color: rgba(255,255,255,0.9);
    color: #fff;
    background: rgba(255,255,255,0.08);
  }
}
@media (max-width: 480px) {
  .header-top-email span { display: none; }
  .header-top-left a span { max-width: 36vw; }
  .brand-logo { height: 36px; max-width: min(150px, 55vw); }
  .mobile-drawer {
    width: min(90vw, 340px);
  }
  .mobile-drawer-nav a {
    padding: 0.65rem 0.45rem;
    font-size: 0.78rem;
  }
}

/* Final contrast overrides for light surfaces */
.section-head p,
.why-showcase .section-head p,
.why-showcase .feature p,
.nearby-showcase .nearby-head p,
.jobs-home-head p,
.home-job-card .job-meta-item,
.story-author span,
.story-author small,
.story-outcome p,
.cta-strip-copy p,
.newsletter-card > p,
.footer-contact li,
.footer-contact a,
.tagline-en,
.auth-card-head p,
.auth-switch,
.form-shell .sub,
.seeker-profile-heading p,
.seeker-profile-section-head p,
.seeker-profile-actions p {
  color: var(--muted);
}

.form-group label,
.jobs-filter-field label,
.auth-field-body label {
  color: #352a40;
}

.form-group input,
.form-group select,
.form-group textarea,
.newsletter-input input,
.jobs-field-box input,
.jobs-field-box select {
  color: #211829;
}

.footer-bottom p,
.footer-legal-mini,
.footer-legal-mini a {
  color: #51465d;
}
