:root {
	--primary-color: #0A6EFA;
	--primary-hover: #0858C8;
	--secondary-color: #436489;
	--primary60: #0A6EFA;
	--primary70: #0858C8;
	--secondary60: #436489;
}

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Barlow:wght@400;500;600&display=swap');

  :root {
    --accent:         #E8620A;
    --accent-dark:    #C04F06;
    --accent-light:   #FDF0E8;
    --accent-border:  #F4C9A8;

    --bg:             #FFFFFF;
    --bg-subtle:      #F8F7F5;
    --bg-surface:     #F2F1EE;
    --border:         #E4E2DD;
    --border-strong:  #CCCAC4;
    --text-primary:   #1A1916;
    --text-secondary: #6B6A65;
    --text-muted:     #A09F9A;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    line-height: 1.65;
  }

  .container { max-width: 860px; margin: 0 auto; padding: 0 24px; }

  .label-tag {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    border: 1px solid var(--accent-border);
    margin-bottom: 14px;
  }

  /* ---- TOP BAR ---- */
  .topbar {
    background: var(--accent);
    text-align: center;
    padding: 10px 24px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
  }

  /* ---- HERO ---- */
  .hero {
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--border);
    padding: 52px 24px 48px;
    position: relative;
    overflow: hidden;
  }
  .hero::after {
    content: '';
    position: absolute;
    top: 0; right: -80px;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 30%, rgba(232,98,10,0.04) 100%);
    pointer-events: none;
  }
  .hero-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }

  .company-row {
    margin-bottom: 28px;
    line-height: 1.25;
  }
  .company-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
  }
  .company-location { font-size: 13px; color: var(--text-secondary); margin-top: 3px; }

  .hero-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(44px, 7.5vw, 68px);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 22px;
    color: var(--text-primary);
  }
  .hero-headline span {
    display: block;
    color: var(--accent);
  }

  .hero-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.55;
  }

  /* ---- SHARED SECTION STYLES ---- */
  section { padding: 52px 0; }
  section + section { border-top: 1px solid var(--border); }

  .section-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    color: var(--text-primary);
  }
  .section-body {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    max-width: 620px;
  }
  .section-body p + p { margin-top: 14px; }

  /* ---- PILLARS ---- */
  .pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
  }
  @media (max-width: 560px) {
    .pillars { grid-template-columns: 1fr; }
  }
  .pillar {
    background: var(--bg);
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent);
    border-radius: 0 0 4px 4px;
    padding: 22px 20px;
  }
  .pillar-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 8px;
  }
  .pillar-body { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }

  /* ---- WHY WORK HERE ---- */
  .reasons { list-style: none; margin-top: 28px; }
  .reason {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
  }
  .reason:first-child { border-top: 1px solid var(--border); }
  .reason-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.25;
    min-width: 36px;
    line-height: 1;
    padding-top: 2px;
    flex-shrink: 0;
  }
  .reason-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: var(--text-primary);
  }
  .reason-body { font-size: 15px; color: var(--text-secondary); line-height: 1.55; }

  /* ---- OPEN POSITIONS ---- */
  .positions { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }

  .position {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
  }
  .position:hover { border-color: var(--accent); background: var(--accent-light); }
  .position-left { flex: 1; min-width: 0; }
  .position-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 7px;
    line-height: 1.1;
  }
  .position-details { display: flex; flex-wrap: wrap; gap: 14px; }
  .detail-pill {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .detail-pill::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
  }
  .position-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
  .position-pay {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
  }
  .arrow-icon {
    color: var(--text-muted);
    font-size: 20px;
    transition: color 0.15s, transform 0.15s;
    line-height: 1;
  }
  .position:hover .arrow-icon { color: var(--accent); transform: translateX(4px); }

  @media (max-width: 560px) {
    .position { flex-direction: column; align-items: flex-start; }
    .position-right { margin-top: 10px; }
  }

  /* ---- QUOTE ---- */
  .quote-wrap { margin-top: 36px; }
  .quote-card {
    background: var(--bg-subtle);
    border-left: 3px solid var(--accent);
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-radius: 0 4px 4px 0;
    padding: 26px 28px;
  }
  .quote-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.55;
    margin-bottom: 14px;
  }
  .quote-byline { font-size: 13px; color: var(--text-secondary); }
  .quote-byline strong { color: var(--text-primary); font-weight: 600; }

  /* ---- FOOTER CTA ---- */
  .footer-cta {
    background: var(--bg-subtle);
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 60px 24px;
  }
  .footer-cta-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(30px, 5vw, 42px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 12px;
    color: var(--text-primary);
  }
  .footer-cta-sub {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 420px;
    margin: 0 auto 28px;
    line-height: 1.55;
  }
  .btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 34px;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.15s;
  }
  .btn-primary:hover { background: var(--accent-dark); }

  /* ---- FOOTER BAR ---- */
  .footer-bar {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 18px 24px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
  }
  .footer-bar a { color: var(--text-muted); text-decoration: none; }
  .footer-bar a:hover { color: var(--text-secondary); }
