    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --primary:   #f05c62;
      --secondary: #2f3440;
      --white:     #ffffff;
      --light-bg:  #fafafa;
      --mid-gray:  #e8e8e8;
      --text-body: #444;
      --text-muted:#666;
      --radius:    16px;
      --shadow:    0 8px 40px rgba(0,0,0,0.08);
      --shadow-strong: 0 16px 60px rgba(240,92,98,0.15);
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--secondary);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp  { from{opacity:0;transform:translateY(32px);} to{opacity:1;transform:none;} }
    @keyframes slideL  { from{opacity:0;transform:translateX(-44px);} to{opacity:1;transform:none;} }
    @keyframes slideR  { from{opacity:0;transform:translateX(44px);}  to{opacity:1;transform:none;} }
    @keyframes fadeIn  { from{opacity:0;} to{opacity:1;} }
    @keyframes pulse-ring {
      0%  { box-shadow:0 0 0 0 rgba(240,92,98,.35); }
      70% { box-shadow:0 0 0 18px rgba(240,92,98,0); }
      100%{ box-shadow:0 0 0 0 rgba(240,92,98,0); }
    }
    @keyframes floatY  { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
    @keyframes marqueX { from{transform:translateX(0);} to{transform:translateX(-50%);} }
    @keyframes drawLine{ from{width:0;} to{width:100%;} }

    /* scroll reveal */
    .th-reveal {
      opacity:0; transform:translateY(30px);
      transition:opacity .7s ease, transform .7s ease;
    }
    .th-reveal.visible { opacity:1; transform:none; }
    .th-delay-1{transition-delay:.08s;} .th-delay-2{transition-delay:.17s;}
    .th-delay-3{transition-delay:.26s;} .th-delay-4{transition-delay:.35s;}
    .th-delay-5{transition-delay:.44s;} .th-delay-6{transition-delay:.53s;}

    /* ────────────────────────────────
       HERO BANNER  (matches reference)
    ──────────────────────────────────*/
    .teamhome-careerpage-hero {
      display: grid;
      grid-template-columns: 46% 54%;
      min-height: 420px;
      border: 1.5px solid var(--mid-gray);
      border-radius: var(--radius);
      overflow: hidden;
      margin: 48px auto;
      max-width: 1160px;
      width: calc(100% - 48px);
      box-shadow: var(--shadow);
    }

    /* LEFT – illustration panel */
    .teamhome-careerpage-hero-illustration {
      background: var(--white);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: stretch;
      border-right: 1.5px solid var(--mid-gray);
    }
    .teamhome-careerpage-hero-illustration svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    /* RIGHT – text panel */
    .teamhome-careerpage-hero-content {
      padding: 44px 52px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 18px;
      background: var(--white);
    }

    .teamhome-careerpage-hero-tag {
      font-size: .82rem;
      font-weight: 600;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: .5px;
      line-height: 1.55;
      animation: slideR .7s .2s both;
    }

    .teamhome-careerpage-hero-sub {
      font-size: .95rem;
      font-weight: 700;
      color: var(--secondary);
      text-transform: uppercase;
      letter-spacing: .3px;
      line-height: 1.55;
      animation: fadeUp .7s .35s both;
    }

    .teamhome-careerpage-hero-heading {
      font-size: 2.2rem;
      font-weight: 600;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: -.3px;
      line-height: 1.1;
      animation: fadeUp .75s .45s both;
    }

    .teamhome-careerpage-hero-email {
      font-size: .9rem;
      font-weight: 700;
      color: var(--secondary);
      text-transform: uppercase;
      letter-spacing: .3px;
      animation: fadeUp .75s .55s both;
    }
    .teamhome-careerpage-hero-email a {
      color: var(--primary);
      text-decoration: none;
      transition: color .2s;
    }
    .teamhome-careerpage-hero-email a:hover { color: var(--secondary); text-decoration: underline; }

    .teamhome-careerpage-hero-eoe {
      font-size: .82rem;
      font-weight: 600;
      color: var(--secondary);
      text-transform: uppercase;
      letter-spacing: .3px;
      padding-top: 12px;
      border-top: 1.5px solid var(--mid-gray);
      animation: fadeUp .75s .65s both;
    }

    /* ────────────────────────────────
       MARQUEE TICKER
    ──────────────────────────────────*/
    .teamhome-careerpage-ticker {
      background: var(--primary);
      overflow: hidden;
      padding: 13px 0;
    }
    .teamhome-careerpage-ticker-track {
      display: flex;
      width: max-content;
      animation: marqueX 28s linear infinite;
      white-space: nowrap;
    }
    .teamhome-careerpage-ticker-track span {
      font-size: .78rem;
      font-weight: 700;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 0 36px;
    }
    .teamhome-careerpage-ticker-track span i {
      color: rgba(255,255,255,.5);
      font-size: .5rem;
      margin-right: 36px;
      vertical-align: middle;
    }

    /* ────────────────────────────────
       SECTION WRAPPER
    ──────────────────────────────────*/
    .teamhome-careerpage-section {
      padding: 88px 0;
    }
    .teamhome-careerpage-container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 36px;
    }
    .teamhome-careerpage-eyebrow {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: .74rem; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--primary);
      background: rgba(240,92,98,.1); padding: 6px 16px;
      border-radius: 100px; margin-bottom: 14px;
    }
    .teamhome-careerpage-h2 {
      font-size: 2.2rem; font-weight: 600; letter-spacing: .4px;
      line-height: 1.15; color: var(--secondary);
      margin-bottom: 14px;
    }
    .teamhome-careerpage-h2 span { color: var(--primary); }
    .teamhome-careerpage-divider {
      width: 60px; height: 3px;
      background: linear-gradient(90deg, var(--primary), rgba(240,92,98,.2));
      border-radius: 4px; margin-bottom: 40px;
    }

    /* ────────────────────────────────
       WHY WORK WITH US  – cards
    ──────────────────────────────────*/
    .teamhome-careerpage-why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .teamhome-careerpage-why-card {
      background: #fafafa;
      border: 1.5px solid var(--mid-gray);
      border-radius: var(--radius);
      padding: 36px 28px;
      position: relative;
      overflow: hidden;
      transition: all .32s ease;
      cursor: default;
    }
    .teamhome-careerpage-why-card::before {
      content: '';
      position: absolute; bottom: 0; left: 0;
      width: 100%; height: 3px;
      background: var(--primary);
      transform: scaleX(0); transform-origin: left;
      transition: transform .35s ease;
    }
    .teamhome-careerpage-why-card:hover::before { transform: scaleX(1); }
    .teamhome-careerpage-why-card:hover {
      border-color: transparent;
      box-shadow: var(--shadow-strong);
      transform: translateY(-8px);
      background: var(--white);
    }
    .teamhome-careerpage-why-icon {
      width: 52px; height: 52px;
      background: rgba(240,92,98,.1);
      border-radius: 13px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      transition: background .28s;
    }
    .teamhome-careerpage-why-card:hover .teamhome-careerpage-why-icon { background: rgba(240,92,98,.18); }
    .teamhome-careerpage-why-icon i { color: var(--primary); font-size: 1.3rem; }
    .teamhome-careerpage-why-card h3 {
      font-size: 1rem; font-weight: 600;
      color: var(--secondary); margin-bottom: 10px;
    }
    .teamhome-careerpage-why-card p {
      font-size: .87rem; color: var(--text-muted); line-height: 1.72;
    }

    /* ────────────────────────────────
       OPEN POSITIONS
    ──────────────────────────────────*/
    .teamhome-careerpage-jobs-section {
      background: #fafafa;
    }
    .teamhome-careerpage-jobs-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }
    .teamhome-careerpage-job-card {
      background: var(--white);
      border-radius: var(--radius);
      border: 1.5px solid var(--mid-gray);
      padding: 28px 30px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      transition: all .3s ease;
      cursor: default;
    }
    .teamhome-careerpage-job-card:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-strong);
      transform: translateY(-5px);
    }
    .teamhome-careerpage-job-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      background: rgba(240,92,98,.1);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
    }
    .teamhome-careerpage-job-icon i { color: var(--primary); font-size: 1.15rem; }
    .teamhome-careerpage-job-body { flex: 1; }
    .teamhome-careerpage-job-body h4 {
      font-size: 1rem; font-weight: 600;
      color: var(--secondary); margin-bottom: 5px;
    }
    .teamhome-careerpage-job-meta {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin-bottom: 10px;
    }
    .teamhome-careerpage-job-tag {
      font-size: .7rem; font-weight: 700;
      letter-spacing: .5px; text-transform: uppercase;
      padding: 3px 10px; border-radius: 100px;
    }
    .tag-dept  { background: rgba(240,92,98,.1); color: var(--primary); }
    .tag-type  { background: rgba(47,52,64,.08); color: var(--secondary); }
    .tag-loc   { background: #f0f0f0; color: var(--text-muted); }
    .teamhome-careerpage-job-body p {
      font-size: .84rem; color: var(--text-muted); line-height: 1.65;
    }
    .teamhome-careerpage-job-apply {
      display: inline-flex; align-items: center; gap: 7px;
      margin-top: 14px;
      font-size: .78rem; font-weight: 600;
      color: var(--primary); text-decoration: none;
      text-transform: uppercase; letter-spacing: .5px;
      transition: gap .2s;
    }
    .teamhome-careerpage-job-apply:hover { gap: 12px; }

    /* ────────────────────────────────
       CTA / APPLY BAND
    ──────────────────────────────────*/
    .teamhome-careerpage-cta {
      background: var(--secondary);
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .teamhome-careerpage-cta::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
      background-size: 24px 24px;
    }
    .teamhome-careerpage-cta::after {
      content: '';
      position: absolute; top: -80px; right: -80px;
      width: 340px; height: 340px; border-radius: 50%;
      background: radial-gradient(circle, rgba(240,92,98,.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .teamhome-careerpage-cta-inner { position: relative; z-index: 1; }
    .teamhome-careerpage-cta h2 {
      font-size: 2.2rem; font-weight: 600; letter-spacing: .4px;
      line-height: 1.2; color: var(--white); margin-bottom: 12px;
    }
    .teamhome-careerpage-cta h2 span { color: var(--primary); }
    .teamhome-careerpage-cta p {
      font-size: .97rem; color: rgba(255,255,255,.55);
      margin-bottom: 32px; line-height: 1.75;
    }
    .teamhome-careerpage-cta-email {
      display: inline-flex; align-items: center; gap: 12px;
      background: var(--primary);
      color: var(--white); text-decoration: none;
      padding: 16px 40px; border-radius: 100px;
      font-size: .92rem; font-weight: 600;
      letter-spacing: .5px; text-transform: uppercase;
      transition: all .28s ease;
      animation: pulse-ring 2.4s ease infinite;
      box-shadow: 0 8px 28px rgba(240,92,98,.4);
    }
    .teamhome-careerpage-cta-email:hover {
      background: var(--white); color: var(--primary);
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(240,92,98,.35);
    }
    .teamhome-careerpage-eoe-note {
      margin-top: 28px;
      font-size: .78rem; font-weight: 700;
      color: rgba(255,255,255,.35);
      letter-spacing: .8px; text-transform: uppercase;
    }

    /* ── RESPONSIVE ── */
    @media(max-width:900px){
      .teamhome-careerpage-hero { grid-template-columns:1fr; width:calc(100% - 32px); margin:32px auto; }
      .teamhome-careerpage-hero-illustration { min-height:280px; border-right:none; border-bottom:1.5px solid var(--mid-gray); }
      .teamhome-careerpage-hero-content { padding:36px 28px; }
      .teamhome-careerpage-hero-heading { font-size:1.9rem; }
      .teamhome-careerpage-why-grid { grid-template-columns:1fr 1fr; }
      .teamhome-careerpage-jobs-grid { grid-template-columns:1fr; }
    }
    @media(max-width:580px){
      .teamhome-careerpage-why-grid { grid-template-columns:1fr; }
      .teamhome-careerpage-container { padding:0 20px; }
      .teamhome-careerpage-hero-heading { font-size:1.6rem; }
    }