      :root {
        --bg-dark: #0a0420;
        --bg-dark-2: #150932;
        --bg-dark-3: #1f0f47;
        --accent: #8b5cf6;
        --accent-strong: #7c3aed;
        --accent-soft: #ede9fe;
        --accent-tint: #f5f3fc;
        --text-on-dark: #ffffff;
        --text-on-dark-muted: #b8b0d6;
        --text-on-dark-subtle: #8b85a8;
        --text-body: #4a4a5e;
        --text-strong: #1a1530;
        --text-muted: #6b6680;
        --card-border: #e8e4f0;
        --divider: rgba(255, 255, 255, 0.1);
      }

      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Montserrat", sans-serif;
        color: var(--text-body);
        background: #ffffff;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }

      a {
        text-decoration: none;
        color: inherit;
      }

      .container-max {
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 60px;
        width: 100%;
      }

      /* ===== HERO ===== */
      .careers-hero {
        position: relative;
        background: var(--bg-dark);
        color: var(--text-on-dark);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        min-height: auto;
        padding: max(64px, 14vh) 0 5vh;
      }

      @media (min-width: 601px) and (max-width: 900px) {
        .careers-hero {
          padding: max(72px, 16vh) 0 6vh;
        }
      }

      @media (min-width: 901px) {
        .careers-hero {
          min-height: auto;
          flex-direction: row;
          align-items: flex-start;
          justify-content: flex-start;
          padding: 220px 0 80px;
        }
      }

      .careers-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 70% 65% at 62% 18%,
            rgba(124, 58, 237, 0.45) 0%,
            transparent 55%
          ),
          radial-gradient(
            ellipse 45% 45% at 92% 78%,
            rgba(76, 30, 141, 0.22) 0%,
            transparent 65%
          ),
          linear-gradient(
            180deg,
            var(--bg-dark) 0%,
            var(--bg-dark-2) 50%,
            var(--bg-dark) 100%
          );
        z-index: 0;
      }

      .hero-inner {
        position: relative;
        z-index: 1;
        width: 100%;
        text-align: left;
      }

      .hero-heading {
        display: block;
        font-weight: 200;
        letter-spacing: -0.02em;
        line-height: 1.05;
        margin-bottom: 32px;
        position: relative;
      }

      .hero-heading::before,
      .hero-heading::after {
        content: none;
        display: none;
      }

      .hero-line {
        display: block;
        font-size: clamp(40px, 7vw, 80px);
      }

      .hero-line--muted {
        font-weight: 300;
        color: var(--text-on-dark-subtle);
      }

      .hero-line--bold {
        font-weight: 800;
        color: var(--text-on-dark);
        letter-spacing: -0.03em;
      }

      .hero-divider {
        width: 64px;
        height: 2px;
        background: linear-gradient(
          90deg,
          rgba(255, 255, 255, 0.6) 0%,
          rgba(255, 255, 255, 0) 100%
        );
        margin-bottom: 24px;
        border-radius: 2px;
      }

      .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
        color: var(--text-on-dark-muted);
        max-width: 620px;
        margin-bottom: 36px;
        font-weight: 400;
      }

      .hero-cta {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        background: #ffffff;
        color: var(--text-strong);
        padding: 12px 28px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: -0.005em;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
        transition:
          transform 0.2s ease,
          box-shadow 0.2s ease;
      }

      .hero-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
        color: var(--text-strong);
      }

      .hero-cta svg {
        width: 16px;
        height: 16px;
        color: #6b6680;
        stroke-width: 1.75;
      }

      /* ===== ROLES SECTION ===== */
      .roles-section {
        background: #ffffff;
        position: relative;
      }

      .roles-search-bar {
        position: sticky;
        top: 80px;
        z-index: 10;
        background: #ffffff;
        border-bottom: 1px solid #f0ecf7;
        padding: 12px 0;
      }

      .search-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 60px;
      }

      .department-filters {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }

      .filter-pill {
        background: #ffffff;
        color: #5b2d9e;
        padding: 8px 18px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
        border: 1px solid #c8b8ee;
        cursor: pointer;
        transition:
          background 0.2s ease,
          color 0.2s ease,
          border-color 0.2s ease;
      }

      .filter-pill:hover {
        background: var(--accent-soft);
        border-color: #b9a8ed;
      }

      .filter-pill.active {
        background: var(--accent-strong);
        color: #ffffff;
        border-color: var(--accent-strong);
      }

      .roles-list {
        padding: 40px 0 80px;
      }

      .roles-list-inner {
        max-width: 760px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .role-card {
        background: #ffffff;
        border: 1px solid var(--card-border);
        border-radius: 14px;
        transition:
          box-shadow 0.2s ease,
          border-color 0.2s ease;
        overflow: hidden;
        scroll-margin-top: 220px;
      }

      .role-card:hover {
        border-color: #d6cdee;
        box-shadow: 0 6px 20px rgba(124, 58, 237, 0.08);
      }

      .role-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 22px 24px;
        cursor: pointer;
        user-select: none;
      }

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

      .role-card-info h3 {
        font-size: 15px;
        font-weight: 700;
        color: var(--text-strong);
        margin-bottom: 8px;
        line-height: 1.4;
      }

      .role-meta {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
      }

      .role-meta span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 12.5px;
        color: var(--text-muted);
        font-weight: 500;
      }

      .role-meta svg {
        width: 13px;
        height: 13px;
        color: var(--text-muted);
      }

      .role-expand-cluster {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
      }

      .role-expand-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--accent-tint);
        border: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-strong);
        cursor: pointer;
        transition:
          background 0.2s ease,
          color 0.2s ease;
        flex-shrink: 0;
      }

      .role-expand-btn:hover {
        background: var(--accent-soft);
      }

      .role-expand-btn svg {
        width: 14px;
        height: 14px;
        transition: transform 0.3s ease;
      }

      .role-expand-indicator {
        display: none;
      }

      .role-card.is-open {
        border-color: #c8b8ee;
        box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
      }

      .role-card.is-open .role-expand-btn {
        background: var(--accent-strong);
        color: #ffffff;
      }

      .role-card.is-open .role-expand-btn svg {
        transform: rotate(180deg);
      }

      .role-card-body {
        display: none;
        padding: 0 28px 28px;
      }

      .role-card.is-open .role-card-body {
        display: block;
      }

      .role-intro {
        font-size: 14.5px;
        line-height: 1.75;
        color: #57576b;
        padding: 22px 0 24px;
        border-top: 1px solid #ece6f7;
        margin: 0;
      }

      .role-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        padding: 22px 0 26px;
        border-top: 1px solid #ece6f7;
      }

      .role-eyebrow {
        display: block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.18em;
        color: #5b2d9e;
        text-transform: uppercase;
        margin-bottom: 18px;
      }

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

      .role-bullets li {
        position: relative;
        padding-left: 20px;
        font-size: 14px;
        line-height: 1.6;
        color: #57576b;
        margin-bottom: 12px;
      }

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

      .role-bullets li::before {
        content: "";
        position: absolute;
        left: 4px;
        top: 8px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #b9a8ed;
      }

      .role-quote {
        background: #efe9fb;
        border-left: 4px solid #5b2d9e;
        border-radius: 0 10px 10px 0;
        padding: 22px 24px;
      }

      .role-quote p {
        font-size: 14.5px;
        line-height: 1.7;
        color: #57576b;
        margin: 0;
      }

      .role-apply-wrap {
        display: flex;
        justify-content: flex-end;
        padding-top: 22px;
        border-top: 1px solid #ece6f7;
      }

      .role-apply-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #5b2d9e;
        color: #ffffff;
        padding: 13px 26px;
        border-radius: 10px;
        font-size: 13.5px;
        font-weight: 600;
        letter-spacing: -0.005em;
        box-shadow: 0 4px 14px rgba(91, 45, 158, 0.28);
        transition:
          background 0.2s ease,
          transform 0.2s ease,
          box-shadow 0.2s ease;
      }

      .role-apply-btn:hover {
        background: #4a2480;
        color: #ffffff;
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(91, 45, 158, 0.4);
      }

      .role-apply-btn svg {
        width: 15px;
        height: 15px;
        stroke-width: 1.75;
      }

      /* "More roles" notice card */
      .roles-notice {
        background: var(--accent-tint);
        border-radius: 14px;
        padding: 28px 24px;
        text-align: center;
        margin-top: 8px;
      }

      .roles-notice h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--text-strong);
        margin-bottom: 10px;
      }

      .roles-notice p {
        font-size: 13.5px;
        color: var(--text-muted);
        line-height: 1.6;
        max-width: 540px;
        margin: 0 auto;
      }

      .roles-notice a {
        color: #5b2d9e;
        font-weight: 600;
      }

      .roles-notice a:hover {
        text-decoration: underline;
      }

      .roles-empty {
        text-align: center;
        padding: 40px 20px;
        color: var(--text-muted);
        font-size: 14px;
        display: none;
      }

      /* ===== ABOUT SECTION ===== */
      .careers-about {
        background: #f5f3fa;
        padding: 80px 0;
      }

      .about-inner {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 120px;
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 64px;
        align-items: start;
      }

      .about-eyebrow {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.15em;
        color: #5b2d9e;
        text-transform: uppercase;
        margin-bottom: 20px;
      }

      .about-heading {
        font-size: clamp(28px, 3.4vw, 40px);
        line-height: 1.15;
        letter-spacing: -0.02em;
      }

      .about-heading--bold {
        display: block;
        font-weight: 800;
        color: var(--text-strong);
      }

      .about-heading--muted {
        display: block;
        font-weight: 300;
        color: #a89fc4;
      }

      .about-right p {
        font-size: 15px;
        line-height: 1.75;
        color: var(--text-body);
        margin-bottom: 20px;
      }

      .about-right p:last-child {
        margin-bottom: 0;
      }

      /* ===== DARK CTA ===== */
      .careers-cta {
        background: var(--bg-dark);
        color: var(--text-on-dark);
        padding: 70px 0;
        position: relative;
        overflow: hidden;
      }

      .careers-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 60% 80% at 85% 50%,
            rgba(124, 58, 237, 0.25) 0%,
            transparent 60%
          ),
          linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
        z-index: 0;
      }

      .cta-inner {
        position: relative;
        z-index: 1;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 120px;
        display: grid;
        grid-template-columns: 1.4fr auto;
        gap: 48px;
        align-items: center;
      }

      .cta-content h2 {
        font-size: clamp(22px, 2.4vw, 28px);
        font-weight: 700;
        color: var(--text-on-dark);
        margin-bottom: 14px;
        letter-spacing: -0.01em;
      }

      .cta-content p {
        font-size: 14px;
        line-height: 1.65;
        color: var(--text-on-dark-muted);
        max-width: 560px;
      }

      .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        background: #ffffff;
        color: var(--text-strong);
        padding: 17px 32px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: -0.005em;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
        transition:
          transform 0.2s ease,
          box-shadow 0.2s ease;
        white-space: nowrap;
      }

      .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
        color: var(--text-strong);
      }

      .cta-button svg {
        width: 16px;
        height: 16px;
        color: #6b6680;
        stroke-width: 1.75;
      }

      /* ===== FOOTER ===== */
      .careers-footer {
        background: var(--bg-dark);
        color: var(--text-on-dark-muted);
        padding: 36px 0;
      }

      .footer-inner {
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 60px;
        display: flex;
        flex-direction: column;
        gap: 32px;
      }

      .footer-logo-row {
        display: flex;
        align-items: center;
      }

      .footer-logo-row a {
        display: inline-flex;
        align-items: center;
      }

      .footer-logo-row img {
        height: 32px;
        width: auto;
        display: block;
      }

      .footer-bottom-row {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 32px;
        align-items: center;
      }

      .footer-left {
        display: flex;
        align-items: center;
      }

      .footer-left p {
        font-size: 12px;
        color: var(--text-on-dark-muted);
        opacity: 0.75;
        margin: 0;
        line-height: 1;
      }

      .footer-center {
        display: flex;
        gap: 32px;
        justify-content: center;
      }

      .footer-center a {
        font-size: 13px;
        color: var(--text-on-dark);
        font-weight: 500;
        transition: opacity 0.2s ease;
      }

      .footer-center a:hover {
        opacity: 0.7;
      }

      .footer-right {
        text-align: right;
        font-size: 12px;
        color: var(--text-on-dark-muted);
        opacity: 0.85;
      }

      .footer-right b {
        color: var(--text-on-dark);
        font-weight: 600;
      }

      /* ===== RESPONSIVE ===== */
      @media (max-width: 900px) {
        .role-card {
          scroll-margin-top: 190px;
        }

        .roles-search-bar {
          top: 70px;
        }

        .about-inner {
          grid-template-columns: 1fr;
          gap: 32px;
        }

        .cta-inner {
          grid-template-columns: 1fr;
          gap: 24px;
          text-align: left;
        }

        .footer-inner {
          gap: 20px;
        }

        .footer-bottom-row {
          grid-template-columns: 1fr;
          text-align: center;
          gap: 20px;
        }

        .footer-logo-row {
          justify-content: center;
        }

        .footer-left {
          justify-content: center;
        }

        .footer-center {
          justify-content: center;
        }

        .footer-right {
          text-align: center;
        }
      }

      @media (max-width: 600px) {
        .role-card {
          scroll-margin-top: 220px;
        }

        .careers-hero {
          padding: max(64px, 14vh) 0 5vh;
        }

        .hero-heading {
          margin-bottom: 24px;
        }

        .hero-subtitle {
          margin-bottom: 28px;
        }

        .search-inner {
          flex-direction: column;
          align-items: stretch;
        }

        .filter-pill {
          align-self: flex-start;
        }

        .role-card-header {
          padding: 18px 18px;
        }

        .role-card-body {
          padding: 0 18px 22px;
        }

        .role-details {
          grid-template-columns: 1fr;
          gap: 28px;
        }

        .role-apply-wrap {
          justify-content: stretch;
        }

        .role-apply-btn {
          width: 100%;
          justify-content: center;
        }

        .roles-list-inner {
          padding: 0 16px;
        }

        .container-max,
        .search-inner,
        .about-inner,
        .cta-inner,
        .footer-inner {
          padding-left: 16px;
          padding-right: 16px;
        }

        .hero-subtitle {
          font-size: 15px;
        }
      }
