:root {
      --bg-dark: #030816;
      --card-bg: #061126;
      --card-border: #13274c;
      --card-border-hover: #1e4282;
      --accent-blue: #0070f3;
      --accent-cyan: #00d2ff;
      --btn-gradient: linear-gradient(90deg, #0070f3 0%, #0099ff 100%);
      --text-main: #ffffff;
      --text-muted: #94a3b8;
      --text-sub: #60a5fa;
      --badge-bg: rgba(0, 112, 243, 0.15);
      --badge-border: rgba(0, 112, 243, 0.35);
      --surface-hover: rgba(255, 255, 255, 0.03);
    }

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

    .career-root-section {
      width: 100%;
      min-height: 100vh;
      background-color: var(--bg-dark);
      color: var(--text-main);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      position: relative;
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .glow-overlay {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: min(1200px, 100vw);
      height: 460px;
      background: radial-gradient(circle at 50% 20%, rgba(0, 112, 243, 0.14) 0%, rgba(3, 8, 22, 0) 70%);
      pointer-events: none;
      z-index: 0;
    }

    .content-container {
      width: 100%;
      max-width: 1200px;
      padding: clamp(24px, 5vw, 64px) clamp(16px, 4vw, 32px);
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    .hero-section {
      text-align: center;
      max-width: 820px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 9999px;
      background: var(--badge-bg);
      border: 1px solid var(--badge-border);
      color: var(--accent-cyan);
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .hero-section h1 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.15;
      background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-section p {
      font-size: clamp(0.95rem, 2vw, 1.1rem);
      color: var(--text-muted);
      line-height: 1.65;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      margin-top: 8px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--btn-gradient);
      color: #ffffff;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      padding: 12px 24px;
      border-radius: 9999px;
      transition: all 0.25s ease;
      box-shadow: 0 4px 16px rgba(0, 112, 243, 0.4);
      border: none;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-primary:hover {
      box-shadow: 0 6px 24px rgba(0, 112, 243, 0.65);
      transform: translateY(-2px);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--card-border);
      color: var(--text-main);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      padding: 12px 24px;
      border-radius: 9999px;
      transition: all 0.2s ease;
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--card-border-hover);
    }

    .section-header {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 24px;
    }

    .section-header h2 {
      font-size: clamp(1.4rem, 3.5vw, 1.85rem);
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: -0.02em;
    }

    .section-header p {
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .perks-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
      gap: 20px;
    }

    .perk-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 16px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: transform 0.25s ease, border-color 0.25s ease;
    }

    .perk-card:hover {
      transform: translateY(-3px);
      border-color: var(--card-border-hover);
    }

    .perk-icon {
      width: 40px;
      height: 40px;
      background: var(--badge-bg);
      border: 1px solid var(--badge-border);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-cyan);
    }

    .perk-card h3 {
      font-size: 1.05rem;
      font-weight: 600;
    }

    .perk-card p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .open-positions-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .job-row-item {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 16px;
      padding: clamp(18px, 3vw, 24px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      transition: border-color 0.2s ease, transform 0.2s ease;
    }

    .job-row-item:hover {
      border-color: var(--card-border-hover);
      transform: translateX(4px);
    }

    .job-info-left {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .job-info-left h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-main);
    }

    .job-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 0.82rem;
      color: var(--text-muted);
      align-items: center;
    }

    .badge-pill {
      background: var(--badge-bg);
      border: 1px solid var(--badge-border);
      color: #93c5fd;
      font-size: 0.74rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 20px;
    }

    .job-action-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .compensation-text {
      font-size: 0.82rem;
      color: var(--accent-cyan);
      font-weight: 700;
      text-align: right;
      display: flex;
      flex-direction: column;
    }

    .compensation-text span:first-child {
      color: var(--text-muted);
      font-weight: 400;
      font-size: 0.72rem;
    }

    .footer-section {
      border-top: 1px solid var(--card-border);
      padding-top: 32px;
      text-align: center;
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    .footer-section a {
      color: var(--accent-cyan);
      text-decoration: none;
      font-weight: 600;
    }

    @media (max-width: 680px) {
      .job-row-item {
        flex-direction: column;
        align-items: flex-start;
      }
      .job-action-right {
        width: 100%;
        justify-content: space-between;
        margin-top: 8px;
      }
      .compensation-text {
        text-align: left;
      }
      .hero-actions {
        width: 100%;
      }
      .hero-actions a {
        width: 100%;
        justify-content: center;
      }
    }