:root {
      --bg-main: #05050b;
      --bg-card: #0d0d16;
      --bg-card-soft: #151524;
      --accent: #f25cff;
      --accent-soft: #7030ff;
      --text-main: #f8f5ff;
      --text-muted: #a3a3c2;
      --border-subtle: #26263b;
      --radius-lg: 18px;
      --radius-pill: 999px;
      --shadow-soft: 0 22px 60px rgba(0,0,0,0.8);
      --transition: 0.2s ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
        "Segoe UI", sans-serif;
    }

    body {
      min-height: 100vh;
      background:
        radial-gradient(circle at top, #181824 0, #05050b 55%);
      color: var(--text-main);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px 16px;
    }

    .career-shell {
      width: 100%;
      max-width: 1100px;
      background: linear-gradient(135deg, #090912, #05050b);
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.04);
      box-shadow: var(--shadow-soft);
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      overflow: hidden;
    }

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

    /* Left: text */
    .career-info {
      padding: 32px 32px 28px;
      background:
        radial-gradient(circle at top left, #201934 0, #090910 55%);
      border-right: 1px solid var(--border-subtle);
    }

    .career-tag {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .career-title {
      font-size: 32px;
      font-weight: 650;
      margin-bottom: 12px;
    }

    .career-gradient {
      background: linear-gradient(135deg, var(--accent), var(--accent-soft));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .career-subtitle {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 420px;
      line-height: 1.5;
      margin-bottom: 24px;
    }

    .perks-list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 12px;
      margin-bottom: 24px;
    }

    .perk {
      background: rgba(255,255,255,0.02);
      border-radius: 14px;
      padding: 10px 12px;
      border: 1px solid rgba(255,255,255,0.04);
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .perk-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 10px rgba(242,92,255,0.9);
    }

    .career-footer {
      margin-top: 10px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .career-footer a {
      color: var(--accent);
      text-decoration: none;
    }

    .career-footer a:hover {
      text-decoration: underline;
    }

    /* Right: form */
    .career-form {
      padding: 32px 28px 28px;
      background: radial-gradient(circle at top, #151524 0, #05050b 70%);
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .form-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .form-subtitle {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 4px;
    }

    .field-label {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .field-label span {
      color: var(--accent);
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    input, textarea {
      width: 100%;
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid var(--border-subtle);
      background: #0d0d19;
      color: var(--text-main);
      font-size: 14px;
      outline: none;
      transition: var(--transition);
    }

    input::placeholder,
    textarea::placeholder {
      color: #66668a;
    }

    input:focus,
    textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px rgba(242,92,255,0.4);
    }

    textarea {
      resize: vertical;
      min-height: 90px;
      max-height: 200px;
      line-height: 1.4;
    }

    .btn-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-top: 4px;
    }

    .btn-primary {
      padding: 10px 20px;
      border-radius: var(--radius-pill);
      border: none;
      outline: none;
      cursor: pointer;
      background: linear-gradient(135deg, var(--accent), var(--accent-soft));
      color: #120814;
      font-weight: 600;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 14px 30px rgba(112,48,255,0.7);
      transition: transform 0.12s ease, box-shadow 0.12s ease;
      white-space: nowrap;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(112,48,255,0.85);
    }

    .btn-primary:active {
      transform: translateY(1px) scale(0.99);
      box-shadow: 0 8px 20px rgba(112,48,255,0.7);
    }

    .btn-primary svg {
      width: 15px;
      height: 15px;
    }

    .helper-text {
      font-size: 11px;
      color: var(--text-muted);
      max-width: 200px;
    }