/* Single-page lander — warm editorial / ember-teal */
:root {
  --bg: #141210;
  --bg-elev: #1f1c18;
  --bg-soft: #2a2620;
  --text: #f5f2eb;
  --muted: #a8a095;
  --ember: #e85d04;
  --ember-dim: #c2410c;
  --teal: #2dd4bf;
  --teal-dim: #0d9488;
  --sand: #d6c4a8;
  --line: rgba(214, 196, 168, 0.14);
  --glow-e: rgba(232, 93, 4, 0.35);
  --glow-t: rgba(45, 212, 191, 0.28);
  --radius: 20px;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-display: "Fraunces", "Georgia", serif;
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: #0c1a18;
  padding: 0.5rem 1rem;
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

#particle-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.ambient-ribbons {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.ribbon {
  position: absolute;
  width: 120%;
  height: 3px;
  left: -10%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--ember),
    var(--teal),
    transparent
  );
  opacity: 0.12;
  animation: ribbon-drift 28s ease-in-out infinite;
  transform: rotate(-8deg);
}

.ribbon:nth-child(2) {
  top: 35%;
  animation-delay: -9s;
  opacity: 0.08;
  transform: rotate(5deg);
}

.ribbon:nth-child(3) {
  top: 62%;
  animation-delay: -18s;
  opacity: 0.1;
}

@keyframes ribbon-drift {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg) translateX(0);
  }
  50% {
    transform: translateY(-30vh) rotate(-4deg) translateX(5%);
  }
}

.site-shell {
  position: relative;
  z-index: 1;
}

.top-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  font-size: 0.8125rem;
  color: var(--muted);
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  border-bottom: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 18, 16, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand:hover {
  text-decoration: none;
  color: var(--sand);
}

.nav-toggle {
  display: none;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.5rem 0.85rem;
  border-radius: 12px;
  font-size: 0.875rem;
  cursor: pointer;
}

.nav-main ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.nav-main a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--muted);
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: var(--teal);
  text-decoration: none;
}

.wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 8vw, 5rem);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(42, 38, 32, 0.6);
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  animation: badge-pulse 4s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(45, 212, 191, 0.12);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.12;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.hl-ember {
  color: var(--ember);
  text-shadow: 0 0 40px var(--glow-e);
}

.hl-teal {
  color: var(--teal);
  text-shadow: 0 0 36px var(--glow-t);
}

.hero-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 52ch;
}

.hero-lead strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--ember), var(--ember-dim));
  color: #fff;
  box-shadow: 0 8px 32px var(--glow-e);
}

.btn-primary:hover {
  text-decoration: none;
  box-shadow: 0 12px 40px var(--glow-e);
}

.btn-ghost {
  background: transparent;
  color: var(--sand);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  text-decoration: none;
  border-color: var(--teal);
  color: var(--teal);
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.75rem;
  font-size: 0.875rem;
  color: var(--muted);
  animation: hint-bob 2.8s ease-in-out infinite;
}

.scroll-hint svg {
  width: 1.1rem;
  height: 1.1rem;
}

@keyframes hint-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.hero-visual {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: spin-ccw 22s linear infinite;
}

.orbit-o1 {
  width: min(280px, 70vw);
  height: min(280px, 70vw);
}

.orbit-o2 {
  width: min(200px, 55vw);
  height: min(200px, 55vw);
  animation-direction: reverse;
  animation-duration: 16s;
  border-color: rgba(232, 93, 4, 0.25);
}

.orbit-o3 {
  width: min(140px, 40vw);
  height: min(140px, 40vw);
  animation-duration: 11s;
  border-color: rgba(45, 212, 191, 0.3);
}

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

.hero-chip {
  position: relative;
  z-index: 2;
  max-width: 16rem;
  padding: 1.1rem 1.2rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  font-size: 0.875rem;
  color: var(--muted);
  animation: chip-float 6s ease-in-out infinite;
}

.hero-chip strong {
  display: block;
  color: var(--teal);
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
}

@keyframes chip-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--line);
}

.section-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.offer-card {
  max-width: 26rem;
  margin: 0 auto;
  padding: 1.75rem;
  background: linear-gradient(165deg, var(--bg-elev), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px rgba(232, 93, 4, 0.12);
}

.offer-card img {
  margin: 0 auto 1rem;
  max-height: 56px;
  width: auto;
  object-fit: contain;
}

.offer-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
}

.offer-meta {
  margin: 0 0 1.25rem;
  color: var(--sand);
  font-weight: 600;
  font-size: 1.05rem;
}

.btn-offer {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-dim), var(--teal));
  color: #042f2e;
  font-weight: 700;
  box-shadow: 0 10px 36px var(--glow-t);
}

.btn-offer:hover {
  text-decoration: none;
  filter: brightness(1.06);
}

.offer-foot {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

.grid-3 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 1.5rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.card:hover {
  border-color: rgba(232, 93, 4, 0.35);
  transform: translateY(-3px);
}

.card-icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.65rem;
  filter: grayscale(0.2);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.prose {
  max-width: 48rem;
  margin: 0 auto;
}

.prose h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-top: 0;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-top: 2rem;
}

.prose h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.rg-strip {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg-elev));
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
}

.rg-strip h2 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
}

.rg-strip > .wrap > p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 65ch;
}

.rg-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  align-items: center;
}

.rg-logos a {
  display: block;
  opacity: 0.88;
  transition: opacity 0.2s;
  filter: brightness(0) invert(1);
}

.rg-logos a:hover {
  opacity: 1;
  text-decoration: none;
}

.rg-logos img {
  height: 36px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.site-footer {
  background: #0e0c0a;
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-grid h3 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  margin-bottom: 0.45rem;
}

.footer-list a {
  color: var(--text);
  font-size: 0.9375rem;
}

.footer-rg {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.footer-bottom {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(8, 7, 6, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal {
  width: min(100%, 420px);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  max-height: min(90vh, 640px);
  overflow-y: auto;
}

.modal-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.modal-brand img {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.modal p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

.btn-modal-decline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 0.65rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
}

.btn-modal-accept {
  background: linear-gradient(135deg, var(--teal-dim), var(--teal));
  border: none;
  color: #042f2e;
  padding: 0.65rem 1.1rem;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
}

/* Captcha */
.captcha-modal .modal {
  width: min(100%, 380px);
}

.captcha-wrap {
  margin-top: 0.5rem;
}

.captcha-canvas-wrap {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

#captchaCanvas,
#captchaPiece {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

#captchaPiece {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.captcha-track {
  position: relative;
  margin-top: 1rem;
  height: 48px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.captcha-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--ember), var(--ember-dim));
  box-shadow: 0 4px 16px var(--glow-e);
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  touch-action: none;
  user-select: none;
}

.captcha-slider:active {
  cursor: grabbing;
}

.captcha-hint {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0.65rem 0 0;
  text-align: center;
}

.captcha-status {
  min-height: 1.25rem;
  font-size: 0.8125rem;
  color: var(--teal);
  text-align: center;
  margin-top: 0.35rem;
}

/* Cookie bar */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8500;
  padding: 1rem;
  transform: translateY(110%);
  transition: transform 0.35s ease;
}

.cookie-bar.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 52rem;
  margin: 0 auto;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.4);
}

.cookie-inner .modal-brand {
  margin: 0;
  flex: 1 1 220px;
}

.cookie-inner .modal-brand p {
  margin: 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-main {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(20, 18, 16, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
  }

  .nav-main.is-open {
    display: block;
  }

  .nav-main ul {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* —— Editorial layout: kickers, split sections, lists —— */
.kicker {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 0.65rem;
}

.hero--editorial .hero-copy {
  min-width: 0;
}

.hero--editorial .kicker {
  margin-bottom: 0.5rem;
}

.hero-pull {
  margin: 0 0 1.25rem;
  padding: 0 0 0 1rem;
  border-left: 3px solid var(--teal-dim);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--sand);
}

.hero-pull p {
  margin: 0;
}

.hero-points {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 54ch;
}

.hero-points li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 10px var(--glow-e);
}

.hero-points strong {
  color: var(--text);
}

/* Split promo section */
.section--split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 860px) {
  .section--split {
    grid-template-columns: minmax(200px, 0.9fr) minmax(0, 1.4fr);
    gap: 3rem;
  }
}

.section-rail-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.15;
  margin: 0;
  font-weight: 700;
}

.lead-in {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 58ch;
}

.lead-in strong {
  color: var(--text);
}

.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.step-list > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.step-list__n {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--teal);
  line-height: 1.4;
}

.step-list__h {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.step-list p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

.step-list p strong {
  color: var(--text);
}

/* Pillars: definition list */
.section--pillars {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.pillars-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 0.5rem;
  text-align: left;
}

.pillars-lede {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 48ch;
}

.pillar-dl {
  margin: 0;
}

.pillar-dl__row {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.pillar-dl__row:last-child {
  border-bottom: 1px solid var(--line);
}

.pillar-dl dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 0.5rem;
}

.pillar-dl dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
}

.pillar-dl dd strong {
  color: var(--text);
}

/* Careers asymmetric grid */
.careers-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .careers-grid {
    grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1.25fr);
    gap: 2.5rem;
    align-items: start;
  }
}

.careers-aside {
  padding: 1.35rem 1.5rem;
  background: rgba(45, 212, 191, 0.06);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: var(--radius);
}

.careers-aside-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

.careers-aside-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}

.careers-main__h {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 1rem;
  color: var(--text);
}

.careers-bullets {
  margin: 0 0 1.5rem;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.9375rem;
}

.careers-bullets li {
  margin-bottom: 0.75rem;
}

.careers-bullets li:last-child {
  margin-bottom: 0;
}

.careers-bullets strong {
  color: var(--text);
}

/* RG strip two-column */
.rg-wrap {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .rg-wrap {
    grid-template-columns: 1fr minmax(260px, 1fr);
    align-items: start;
    gap: 2.5rem;
  }
}

.rg-intro h2 {
  margin: 0 0 1rem;
}

.rg-checklist {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.9375rem;
}

.rg-checklist li {
  margin-bottom: 0.5rem;
}

.rg-intro-note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  opacity: 0.9;
}

html.site-access-ok #ageModal {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
