body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.20'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: 0;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

.page {
  display: none;
  position: relative;
  z-index: 1;
}

.page.active {
  display: block;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(15, 93, 93, 0.5);
  z-index: 200;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 180;
  display: flex;
  align-items: center;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
  min-width: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-admin-btn {
  font-size: 13px;
  padding: 9px 14px;
  gap: 6px;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(224, 224, 224, 0.7);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(224, 224, 224, 0.8);
}

.brand span {
  font-family: "Instrument Serif", serif;
  font-size: 22px;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 42px);
  padding-bottom: 42px;
  position: relative;
  overflow: hidden;
}

.hero .bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 93, 93, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 93, 93, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 30% 20%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 65%);
  opacity: 0.95;
}

.orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(15, 93, 93, 0.26);
  filter: blur(80px);
  animation: orbFloat 10s ease-in-out infinite;
}

.orb.o1 {
  top: -160px;
  right: -140px;
}

.orb.o2 {
  bottom: -220px;
  left: -140px;
  width: 520px;
  height: 520px;
  animation-duration: 12s;
}

.orb.o3 {
  top: 45%;
  left: 55%;
  width: 380px;
  height: 380px;
  animation-duration: 14s;
  opacity: 0.55;
}

@keyframes orbFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(18px, -16px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--teal-mid);
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 13px;
  width: fit-content;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2e7d32;
  box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.6);
  animation: pulse 1.25s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(46, 125, 50, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 125, 50, 0);
  }
}

.hero-title {
  margin: 18px 0 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.4px;
}

.hero-title em {
  font-style: italic;
  color: var(--teal);
}

.hero-subtitle {
  margin: 14px 0 0;
  max-width: 54ch;
  font-weight: 300;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-ctas {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.float-card {
  position: absolute;
  width: min(360px, 100%);
  border-radius: 20px;
  border: 1px solid rgba(224, 224, 224, 0.85);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  padding: 18px 18px 16px;
}

.float-card .label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}

.float-card .value {
  font-size: 16px;
  font-weight: 600;
}

.float-card .meta {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

.float-card.fc1 {
  top: 34px;
  left: 12px;
  animation: float1 6s ease-in-out infinite;
}

.float-card.fc2 {
  bottom: 28px;
  right: 8px;
  width: 260px;
  animation: float2 7s ease-in-out infinite;
}

.float-card.fc3 {
  bottom: 28px;
  left: 22px;
  width: 300px;
  animation: float3 8s ease-in-out infinite;
}

@keyframes float1 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(14px, -10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes float2 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-10px, -14px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes float3 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(12px, 10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.trust {
  background: #fff;
  border-top: 1px solid rgba(224, 224, 224, 0.65);
  border-bottom: 1px solid rgba(224, 224, 224, 0.65);
  position: relative;
  z-index: 1;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 16px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--teal-pale);
  border: 1px solid var(--teal-mid);
  display: grid;
  place-items: center;
  color: var(--teal);
}

.trust-item .t-title {
  font-weight: 600;
  font-size: 14px;
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: var(--section-bg);
}

.section-title {
  font-family: "Instrument Serif", serif;
  font-size: 38px;
  letter-spacing: -0.2px;
  margin: 0;
}

.section-sub {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 64ch;
  line-height: 1.6;
}

.filters {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.search-wrap {
  position: relative;
}

.search-wrap .s-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.search-input {
  padding-left: 44px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.job-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  padding: 18px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.job-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.job-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(15, 93, 93, 0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  border-color: rgba(15, 93, 93, 0.2);
}

.job-card:hover::before {
  transform: scaleX(1);
}

.job-card:hover::after {
  opacity: 1;
}

.job-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.job-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--teal-mid);
  background: var(--teal-pale);
  display: grid;
  place-items: center;
  color: var(--teal);
  animation: spin 8s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.job-title {
  margin: 14px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.job-meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.job-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.job-card:hover .view-btn {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.skeleton {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #f0f0f0;
  height: 192px;
  position: relative;
  overflow: hidden;
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-40%);
  }
  100% {
    transform: translateX(40%);
  }
}

.center-state {
  grid-column: 1 / -1;
  border: 1px dashed rgba(224, 224, 224, 0.9);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  padding: 30px 18px;
  text-align: center;
  color: var(--muted);
}

.center-state .big {
  font-family: "Instrument Serif", serif;
  font-size: 22px;
  color: var(--ink);
}

.how-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.how-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  padding: 20px 18px;
  transition: transform 180ms ease, box-shadow 180ms ease;
  position: relative;
  overflow: hidden;
}

.how-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.10);
}

.how-num {
  font-family: "Instrument Serif", serif;
  font-size: 48px;
  opacity: 0.16;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(15, 93, 93, 0.4);
  color: transparent;
}

.how-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--teal-pale);
  border: 1px solid var(--teal-mid);
  color: var(--teal);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.how-card:hover .how-icon {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.how-title {
  margin: 12px 0 0;
  font-weight: 600;
}

.how-body {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.cta-band {
  background: var(--teal);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.22;
}

.cta-band .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}

.cta-title em {
  font-style: italic;
}

.cta-sub {
  margin: 12px auto 0;
  max-width: 72ch;
  opacity: 0.72;
  line-height: 1.6;
}

.cta-band .btn {
  margin-top: 18px;
  background: #fff;
  color: var(--teal);
  border-color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  font-size: 15px;
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.86);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 34px 0;
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer a:hover {
  color: #fff;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.detail-hero {
  padding-top: calc(var(--nav-h) + 34px);
  background: radial-gradient(520px circle at 92% 12%, rgba(15, 93, 93, 0.12), transparent 60%), #fff;
  border-bottom: 1px solid rgba(224, 224, 224, 0.75);
}

.detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(224, 224, 224, 0.9);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.detail-title {
  margin: 14px 0 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(32px, 4.4vw, 52px);
  letter-spacing: -0.2px;
  line-height: 1.04;
}

.detail-meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

.detail-grid {
  padding: 26px 0 64px;
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  gap: 18px;
}

.detail-main {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(224, 224, 224, 0.9);
  border-radius: 20px;
  padding: 18px 18px 22px;
}

.detail-block + .detail-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(224, 224, 224, 0.7);
}

.detail-block h3 {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.2px;
}

.detail-block p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  white-space: pre-wrap;
}

.sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
  border: 1px solid rgba(224, 224, 224, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.kv {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(224, 224, 224, 0.65);
}

.kv:last-of-type {
  border-bottom: 0;
}

.kv .k {
  color: var(--muted);
  font-size: 13px;
}

.kv .v {
  font-weight: 600;
  font-size: 13px;
  text-align: right;
}

.sidebar .btn-primary {
  width: 100%;
  margin-top: 14px;
}

.apply-shell {
  padding-top: calc(var(--nav-h) + 34px);
  padding-bottom: 70px;
}

.apply-card {
  width: min(760px, calc(100% - 64px));
  margin: 0 auto;
  border: 1px solid rgba(224, 224, 224, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.10);
  padding: 18px;
}

.apply-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.apply-title {
  margin: 10px 0 0;
  font-family: "Instrument Serif", serif;
  font-size: 32px;
  line-height: 1.05;
}

.apply-sub {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.apply-title small {
  display: block;
  margin-top: 6px;
  font-family: "DM Sans", sans-serif;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.req {
  color: #c62828;
  margin-left: 2px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid .span2 {
  grid-column: 1 / -1;
}

.submit-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.inline-error {
  margin-top: 10px;
  border: 1px solid rgba(198, 40, 40, 0.25);
  background: rgba(198, 40, 40, 0.08);
  color: #c62828;
  padding: 10px 12px;
  border-radius: 14px;
  display: none;
}

.inline-error.visible {
  display: block;
}

.success {
  padding: 20px 0 10px;
  display: none;
  text-align: center;
}

.success.visible {
  display: block;
}

.check {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(46, 125, 50, 0.35);
  background: rgba(46, 125, 50, 0.08);
  display: grid;
  place-items: center;
  margin: 0 auto;
  animation: popIn 360ms ease-out both;
}

@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.mono-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(224, 224, 224, 0.9);
  background: rgba(255, 255, 255, 0.86);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
}

.wa-btn {
  background: #25D366;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.wa-btn:hover {
  filter: brightness(0.98);
}

.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--teal);
  border: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 200ms ease, transform 200ms ease, background 200ms ease;
  z-index: 190;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(15, 93, 93, 0.35);
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--teal-light);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .apply-card {
    width: min(760px, calc(100% - 40px));
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  /* On small screens: hide "Apply Now", keep Admin button (icon only) */
  .nav-actions .btn-primary {
    display: none;
  }

  .nav-admin-btn span {
    display: none;
  }

  .nav-admin-btn {
    padding: 9px 10px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .cta-band {
    overflow: hidden;
  }

  .cta-band .container {
    padding: 0 4px;
  }

  .cta-title {
    font-size: clamp(26px, 8vw, 38px);
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 400px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    width: calc(100% - 32px);
  }
}

@media (hover: hover) {
  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 260;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 150ms ease, transform 150ms ease, width 150ms ease, height 150ms ease;
  }

  .cursor-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
  }

  .cursor-ring {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 2px solid rgba(15, 93, 93, 0.6);
  }

  body.cursor-on .cursor-dot,
  body.cursor-on .cursor-ring {
    opacity: 1;
  }

  body.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(1.5);
  }

  body.cursor-hover .cursor-ring {
    width: 52px;
    height: 52px;
  }
}

@media (hover: none) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ── Benefits list ───────────────────────────────────── */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.benefits-list li {
  background: var(--teal-pale, #e6f2f2);
  border: 1px solid var(--teal-mid, #c2dfdf);
  color: var(--teal, #0F5D5D);
  font-size: 13px;
  font-weight: 450;
  padding: 5px 14px;
  border-radius: 100px;
  line-height: 1.4;
}