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

    :root {
      --orange:       #B35000;
      --orange-dark:  #9E4800;
      --orange-light: #FEF3EC;
      --orange-faint: #FDF9F6;
      --charcoal:     #111111;
      --charcoal-2:   #1C1C1C;
      --slate:        #1B2A3B;
      --slate-2:      #243446;
      --white:        #FFFFFF;
      --off-white:    #FAFAF8;
      --warm-gray:    #F3F0EB;
      --border:       #E6E1D9;
      --border-mid:   #D1CBBC;
      --text-primary: #111111;
      --text-body:    #3A3530;
      --text-muted:   #6B6560;
      --text-subtle:  #9B9590;
      --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --max-w: 1160px;
      --r:    8px;
      --r-lg: 16px;
      --r-xl: 24px;
      --sh-sm: 0 1px 4px rgba(0,0,0,0.07);
      --sh-md: 0 4px 20px rgba(0,0,0,0.09);
      --sh-lg: 0 12px 40px rgba(0,0,0,0.11);
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--font); color: var(--text-primary); background: var(--white); -webkit-font-smoothing: antialiased; line-height: 1.5; }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; font-family: var(--font); }
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

    /* ─── UTILITY BAR ─── */
    .util-bar .container { display: flex; align-items: center; justify-content: space-between; }
    .util-bar a { color: rgba(255,255,255,0.55); transition: color .15s; }
    .util-bar a:hover { color: #fff; }
    .status-pill { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.25); color: #4ade80; padding: 0.2rem 0.6rem; border-radius: 20px; font-size: 0.68rem; font-weight: 600; }
    .status-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 6px #22c55e; }

    
/* ── SYSTEM BAR ── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #111111 0%, #1a1a2e 50%, #111111 100%);
  color: #fff;
  padding: 4.5rem 3rem 4rem;
}
.hero-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 90% at 85% 50%, rgba(191,87,0,0.18) 0%, transparent 65%),
                  radial-gradient(ellipse 50% 70% at 10% 80%, rgba(191,87,0,0.1) 0%, transparent 55%);
    }
    .hero-mesh {
      position: absolute; inset: 0; opacity: 0.04;
      background-image: linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px);
      background-size: 36px 36px;
    }
    .hero-inner {
      max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    }
    .hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(191,87,0,0.2); border: 1px solid rgba(191,87,0,0.35); color: #f9a875; padding: 0.35rem 0.9rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 1.25rem; }
    .hero-title { font-size: 2.8rem; font-weight: 800; color: #fff; line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 1.25rem; }
    .hero-title span { color: #f9a875; }
    .hero-mission { font-size: 1.1rem; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 2rem; }
    .hero-stats { display: flex; gap: 1rem; flex-wrap: wrap; }
    .stat-chip { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 0.75rem 1.25rem; text-align: center; }
    .stat-chip-num { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
    .stat-chip-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); margin-top: 0.25rem; font-weight: 500; }

    /* Hero right: visual value mosaic */
    .hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .hero-value-card {
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--r-lg); padding: 1.25rem;
      transition: background .2s;
    }
    .hero-value-card:hover { background: rgba(255,255,255,0.11); }
    .hero-value-num { font-size: 1.5rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 0.4rem; }
    .hero-value-name { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
    .hero-value-desc { font-size: 0.73rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
    .hero-value-card.accent {
      background: rgba(191,87,0,0.2); border-color: rgba(191,87,0,0.4);
      grid-column: span 2;
    }

    /* ─── STICKY SUB-NAV ─── */
    .sub-nav { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 63px; z-index: 100; }
    .sub-nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; display: flex; gap: 0; overflow-x: auto; }
    .sub-nav-link { padding: 0.85rem 1.1rem; font-size: 0.835rem; font-weight: 500; color: var(--text-muted); border-bottom: 2px solid transparent; white-space: nowrap; transition: color .15s, border-color .15s; }
    .sub-nav-link:hover { color: var(--text-primary); }
    .sub-nav-link.active { color: var(--orange); border-bottom-color: var(--orange); font-weight: 600; }

    /* ─── SECTION BASE ─── */
    section { padding: 5rem 0; }
    .section-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.75rem; }
    .section-title { font-size: 2rem; font-weight: 800; color: var(--text-primary); line-height: 1.2; letter-spacing: -0.025em; margin-bottom: 1rem; }
    .section-body { font-size: 1rem; color: var(--text-body); line-height: 1.7; max-width: 680px; }
    .section-header { margin-bottom: 3rem; }
    .section-header-split { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }

    /* ─── MISSION SECTION ─── */
    section.mission-section { background: var(--white); }
    .mission-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .mission-quote {
      font-size: 1.65rem; font-weight: 700; color: var(--text-primary); line-height: 1.35;
      letter-spacing: -0.02em; position: relative; padding-left: 1.75rem;
    }
    .mission-quote::before {
      content: '';
      position: absolute; left: 0; top: 0.1em; bottom: 0.1em;
      width: 4px; background: var(--orange); border-radius: 4px;
    }
    .mission-attribution { margin-top: 1.5rem; font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
    .mission-pillars { display: flex; flex-direction: column; gap: 1rem; }
    .mission-pillar { display: flex; gap: 1rem; align-items: flex-start; }
    .pillar-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--orange-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
    .pillar-text h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.2rem; }
    .pillar-text p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }

    /* ─── CORE BELIEFS (dark feature band) ─── */
    section.beliefs-section {
      background: var(--charcoal);
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
    }
    .beliefs-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 100% at 100% 50%, rgba(191,87,0,0.12) 0%, transparent 60%);
    }
    .beliefs-section .section-label { color: #f9a875; }
    .beliefs-section .section-title { color: #fff; }
    .beliefs-section .section-body { color: rgba(255,255,255,0.65); }
    .beliefs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; z-index: 2; }
    .belief-card {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--r-xl); padding: 2rem;
      transition: background .2s, transform .2s;
    }
    .belief-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }
    .belief-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; }
    .belief-icon.orange { background: rgba(191,87,0,0.25); }
    .belief-icon.blue { background: rgba(59,130,246,0.2); }
    .belief-icon.green { background: rgba(34,197,94,0.15); }
    .belief-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; line-height: 1.3; }
    .belief-card p { font-size: 0.87rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

    /* ─── CORE VALUES ─── */
    section.values-section { background: var(--warm-gray); }
    .values-intro { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; margin-bottom: 3rem; }
    .values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .value-item {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--r-lg); padding: 1.5rem;
      display: flex; gap: 1.25rem; align-items: flex-start;
      transition: box-shadow .15s, transform .15s;
    }
    .value-item:hover { box-shadow: var(--sh-md); transform: translateY(-1px); }
    .value-num {
      width: 38px; height: 38px; border-radius: 10px;
      background: var(--orange); color: #fff;
      font-size: 0.82rem; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .value-content h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.35rem; }
    .value-content p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

    /* ─── STRATEGIC PRIORITIES ─── */
    section.strategy-section { background: var(--white); }
    .strategy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    .strategy-card {
      border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.75rem;
      transition: box-shadow .15s, border-color .15s;
    }
    .strategy-card:hover { box-shadow: var(--sh-md); border-color: var(--border-mid); }
    .strategy-badge { display: inline-block; padding: 0.2rem 0.65rem; border-radius: 20px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; }
    .badge-ai { background: rgba(191,87,0,0.12); color: var(--orange); }
    .badge-infra { background: rgba(59,130,246,0.1); color: #2563eb; }
    .badge-sec { background: rgba(220,38,38,0.1); color: #dc2626; }
    .badge-data { background: rgba(124,58,237,0.1); color: #7c3aed; }
    .badge-cx { background: rgba(5,150,105,0.1); color: #059669; }
    .badge-people { background: rgba(245,158,11,0.1); color: #d97706; }
    .strategy-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.6rem; }
    .strategy-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
    .strategy-progress { margin-top: 1.25rem; }
    .progress-label { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.4rem; }
    .progress-bar { height: 5px; background: var(--border); border-radius: 10px; overflow: hidden; }
    .progress-fill { height: 100%; border-radius: 10px; background: var(--orange); }

    /* ─── LEADERSHIP ─── */
    section.leadership-section { background: var(--off-white); }
    .leadership-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
    .leader-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--r-xl); overflow: hidden;
      transition: box-shadow .2s, transform .2s, border-color .2s;
      text-decoration: none; display: block; cursor: pointer;
    }
    .leader-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); border-color: var(--orange); }
    .leader-cio-card:hover { box-shadow: var(--sh-lg) !important; border-color: var(--orange) !important; }
    .leader-avatar {
      height: 160px; display: flex; align-items: center; justify-content: center;
      font-size: 2.5rem; font-weight: 800; color: #fff; letter-spacing: -0.02em;
    }
    .leader-avatar.av-1 { background: linear-gradient(135deg, var(--slate) 0%, #2d4a6b 100%); }
    .leader-avatar.av-2 { background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%); }
    .leader-avatar.av-3 { background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%); }
    .leader-avatar.av-4 { background: linear-gradient(135deg, #065f46 0%, #059669 100%); }
    .leader-avatar.av-5 { background: linear-gradient(135deg, #92400e 0%, #b45309 100%); }
    .leader-avatar.av-6 { background: linear-gradient(135deg, #831843 0%, #be185d 100%); }
    .leader-avatar.av-7 { background: linear-gradient(135deg, #134e4a 0%, #0d9488 100%); }
    .leader-avatar.av-8 { background: linear-gradient(135deg, #1e3a5f 0%, #1B2A3B 100%); }
    .leader-info { padding: 1.25rem; }
    .leader-name { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.2rem; }
    .leader-title { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }
    .leader-dept { display: inline-block; margin-top: 0.6rem; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange); background: var(--orange-light); padding: 0.2rem 0.55rem; border-radius: 20px; }

    /* ─── ORG / DEPARTMENTS ─── */
    section.org-section { background: var(--white); }
    .org-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    .org-card {
      border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.75rem;
      transition: box-shadow .15s, border-color .15s;
    }
    .org-card:hover { box-shadow: var(--sh-md); border-color: var(--orange); }
    .org-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1rem; background: var(--orange-light); }
    .org-card h3 { font-size: 0.97rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
    .org-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }
    .org-staff { margin-top: 0.85rem; font-size: 0.75rem; color: var(--text-subtle); font-weight: 600; }

    /* ─── CAREERS CTA ─── */
    section.careers-band {
      background: var(--slate);
      padding: 4.5rem 0;
      position: relative; overflow: hidden;
    }
    .careers-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 120% at 50% 100%, rgba(191,87,0,0.15) 0%, transparent 60%);
    }
    .careers-inner { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
    .careers-inner h2 { font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: -0.025em; margin-bottom: 0.75rem; }
    .careers-inner p { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.65; max-width: 560px; }
    .careers-stats { display: flex; gap: 2rem; margin-top: 1.5rem; }
    .careers-stat { text-align: center; }
    .careers-stat-num { font-size: 1.8rem; font-weight: 800; color: #f9a875; line-height: 1; }
    .careers-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; font-weight: 500; }
    .careers-cta-group { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
    .btn-primary-lg { background: var(--orange); color: #fff; padding: 0.9rem 2rem; border-radius: 8px; font-size: 0.9rem; font-weight: 700; transition: background .15s; display: inline-block; }
    .btn-primary-lg:hover { background: var(--orange-dark); }
    .btn-outline-white { border: 1.5px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); padding: 0.9rem 2rem; border-radius: 8px; font-size: 0.9rem; font-weight: 600; transition: border-color .15s, color .15s; display: inline-block; }
    .btn-outline-white:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

    /* ─── SUPPORT ─── */
    section.support-section { background: var(--warm-gray); padding: 4rem 0; }
    .support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    .support-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 2rem; text-align: center; transition: box-shadow .15s; }
    .support-card:hover { box-shadow: var(--sh-md); }
    .support-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 1rem; }
    .support-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
    .support-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; }
    .btn-link { color: var(--orange); font-weight: 600; font-size: 0.85rem; }
    .btn-link:hover { text-decoration: underline; }

    /* ─── FOOTER ─── */
    /* ─── ANIMATIONS ─── */
    .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
    .fade-up.visible { opacity: 1; transform: none; }
    .fade-up:nth-child(2) { transition-delay: 0.08s; }
    .fade-up:nth-child(3) { transition-delay: 0.16s; }
    .fade-up:nth-child(4) { transition-delay: 0.24s; }
