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

  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
  }

  .btn {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.4px;
    padding: 11px 26px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
  }
  .btn-accent { background: var(--accent); color: var(--white); }
  .btn-accent:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(46,196,168,0.35); }
  .btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
  .btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
  .btn-white { background: var(--white); color: var(--navy); }
  .btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

  .breadcrumb-strip {
    background: var(--navy-deep);
    padding: 16px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .breadcrumb {
    font-family: var(--font-head);
    font-size: 10.5px; font-weight: 600;
    letter-spacing: 1.3px; text-transform: uppercase;
    color: rgba(255,255,255,0.55);
  }
  .breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
  .breadcrumb a:hover { color: var(--white); }
  .breadcrumb .sep { margin: 0 12px; opacity: 0.4; color: rgba(255,255,255,0.5); }
  .breadcrumb .current { color: var(--accent); }

  /* ── HERO (split, with people illustration) ── */
  .hero {
    background: var(--off-white);
    padding: 0;
    position: relative;
    overflow: hidden;
  }
  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    padding: 80px 40px 100px;
    align-items: center;
    position: relative;
  }
  .hero-copy {
    position: relative;
    padding-left: 28px;
  }
  .hero-copy::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 4px; height: calc(100% - 16px);
    background: linear-gradient(180deg, var(--accent) 0%, var(--navy-light) 100%);
    border-radius: 2px;
  }
  .hero-eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 7px 18px;
    border-radius: 20px;
    margin-bottom: 26px;
  }
  .hero h1 {
    font-family: var(--font-head);
    font-size: clamp(38px, 5.6vw, 64px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    color: var(--navy);
    text-wrap: balance;
  }
  .hero h1 em { color: var(--accent); font-style: normal; }
  .hero-body {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 32px;
  }
  .hero-body strong { color: var(--navy); }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-ctas .btn { font-size: 15px; padding: 14px 28px; }
  .btn-navy-solid { background: var(--navy); color: var(--white); }
  .btn-navy-solid:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(28,58,95,0.25); }

  /* People illustration */
  .hero-illo {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 540px;
    margin-left: auto;
  }
  .hero-illo svg { width: 100%; height: 100%; }
  .hero-illo-badge {
    position: absolute;
    bottom: 6%;
    left: -6%;
    background: var(--white);
    border-radius: 14px;
    padding: 18px 24px;
    box-shadow: 0 12px 36px rgba(28,58,95,0.18);
    display: flex;
    align-items: center;
    gap: 14px;
    border-left: 4px solid var(--accent);
  }
  .hero-illo-badge .badge-num {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -1px;
  }
  .hero-illo-badge .badge-num span { color: var(--accent); }
  .hero-illo-badge .badge-text {
    font-family: var(--font-head);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.4;
  }
  .hero-illo-tag {
    position: absolute;
    top: 8%;
    right: -2%;
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 10px 30px rgba(14,34,64,0.3);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-illo-tag .pulse {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(46,196,168,0.6);
    animation: pulse 1.6s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(46,196,168,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(46,196,168,0); }
    100% { box-shadow: 0 0 0 0 rgba(46,196,168,0); }
  }

  /* ── SECTION SHARED ── */
  section { padding: 100px 40px; }
  .section-inner { max-width: 1140px; margin: 0 auto; }
  .section-label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }
  h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.7px;
    color: var(--navy);
    text-wrap: balance;
  }
  h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
  p { color: var(--text-muted); line-height: 1.75; }
  .section-head.centered { text-align: center; max-width: 760px; margin: 0 auto; }
  .section-head p { margin-top: 14px; font-size: 16px; }

  /* ── WHO WE ARE (editorial w/ stat pull-out) ── */
  .who-section { background: var(--white); }
  .who-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
  }
  .who-head h2 { line-height: 1.15; }
  .who-head .accent-rule {
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin-top: 28px;
  }
  .who-body p {
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 22px;
    color: var(--text);
  }
  .who-body p.muted { color: var(--text-muted); }
  .who-pullquote {
    border-left: 4px solid var(--accent);
    padding: 8px 0 8px 28px;
    margin-top: 32px;
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    letter-spacing: -0.4px;
    font-style: italic;
  }

  /* ── WHY CUSTOMER TRAAC (5 cards, asymmetric grid) — comment 0: icon-supported ── */
  .why-section {
    background: var(--off-white);
  }
  .why-section .section-head { text-align: center; margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
  .why-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 22px;
  }
  .why-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 32px;
    border: 1px solid var(--gray-light);
    box-shadow: 0 4px 16px rgba(28,58,95,0.05);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }
  .why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(28,58,95,0.12);
    border-color: rgba(46,196,168,0.3);
  }
  .why-card.feature {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    border-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
  }
  .why-card.feature::before {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,196,168,0.22) 0%, transparent 70%);
    pointer-events: none;
  }
  .why-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-mist) 0%, rgba(46,196,168,0.1) 100%);
    border: 1px solid rgba(46,196,168,0.25);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    flex-shrink: 0;
  }
  .why-icon svg { width: 28px; height: 28px; stroke: var(--accent-hover); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .why-card.feature .why-icon {
    background: rgba(46,196,168,0.18);
    border: 1px solid rgba(46,196,168,0.4);
  }
  .why-card.feature .why-icon svg { stroke: var(--white); }

  .why-tag {
    font-family: var(--font-head);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .why-card.feature .why-tag { color: var(--accent); }
  .why-card h3 {
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    letter-spacing: -0.3px;
    margin-bottom: 14px;
    text-wrap: balance;
  }
  .why-card.feature h3 {
    color: var(--white);
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }
  .why-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
  }
  .why-card.feature p {
    color: rgba(255,255,255,0.82);
    font-size: 15.5px;
    line-height: 1.75;
  }

  /* ── OPENINGS / FORM ── */
  .openings { background: var(--white); padding: 100px 40px; }
  .openings-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
  }
  .openings-copy h2 {
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .openings-copy p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--text);
  }
  .openings-callout {
    margin-top: 36px;
    padding: 24px 28px;
    background: var(--off-white);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
  }
  .openings-callout .callout-label {
    font-family: var(--font-head);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .openings-callout p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
  }
  .openings-process {
    margin-top: 36px;
    list-style: none;
    padding: 0;
  }
  .openings-process li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 18px;
    margin-bottom: 18px;
    align-items: start;
  }
  .openings-process li:last-child { margin-bottom: 0; }
  .openings-process .step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
  }
  .openings-process .step-body {
    padding-top: 6px;
  }
  .openings-process .step-body strong {
    font-family: var(--font-head);
    font-size: 14.5px;
    color: var(--navy);
    display: block;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
  }
  .openings-process .step-body span {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* Form */
  .application-form {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    padding: 40px 40px;
    box-shadow: 0 8px 28px rgba(28,58,95,0.06);
    position: relative;
  }
  .application-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--navy-light));
    border-radius: 16px 0 0 0;
  }
  .form-head {
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--gray-light);
  }
  .form-head .section-label { margin-bottom: 8px; }
  .form-head h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin-bottom: 6px;
  }
  .form-head p {
    font-size: 14px;
    color: var(--text-muted);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
  }
  .form-row.single { grid-template-columns: 1fr; }
  .form-row.triple { grid-template-columns: 1fr 1fr 100px; }
  .form-field { display: flex; flex-direction: column; }
  .form-field label {
    font-family: var(--font-head);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
  }
  .form-field label .req { color: var(--accent); margin-left: 2px; }
  .form-field input[type="text"],
  .form-field input[type="email"],
  .form-field input[type="tel"],
  .form-field select,
  .form-field textarea {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(46,196,168,0.12);
  }
  .form-field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
  .form-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%234a6278' stroke-width='1.5'><path d='M1 1l5 5 5-5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px 8px;
    padding-right: 38px;
    cursor: pointer;
  }

  /* File upload */
  .form-upload {
    border: 2px dashed var(--gray-light);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: var(--white);
  }
  .form-upload:hover { border-color: var(--accent); background: rgba(46,196,168,0.04); }
  .form-upload .upload-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
  }
  .form-upload .upload-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .form-upload .upload-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .form-upload .upload-title em {
    color: var(--accent-hover);
    font-style: normal;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 3px;
  }
  .form-upload .upload-sub {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-top: 8px;
  }

  .form-submit {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
  }
  .form-submit .legal {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 360px;
  }
  .form-submit .btn { font-size: 14px; padding: 14px 36px; }

  /* ── FOOTER ── */

  @media (max-width: 1080px) {
    .hero-inner { grid-template-columns: 1fr; gap: 56px; padding: 60px 24px 80px; }
    .hero-illo { max-width: 420px; margin: 0 auto; }
    .who-grid, .openings-inner { grid-template-columns: 1fr; gap: 48px; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .why-card.feature { grid-row: span 1; grid-column: span 2; }
  }
  @media (max-width: 760px) {
    .form-row { grid-template-columns: 1fr; gap: 14px; }
    .form-row.triple { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .why-card.feature { grid-column: span 1; }
    .application-form { padding: 28px 22px; }
  }

  /* TWEAKS */
  #tweaks-panel {
    display: none; position: fixed; bottom: 24px; right: 24px;
    background: white; border-radius: 12px; padding: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    z-index: 9999; width: 260px;
    font-family: var(--font-body); border: 1px solid #e0e8f0;
  }
  #tweaks-panel h4 { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 16px; letter-spacing: 0.5px; }
  .tweak-row { margin-bottom: 14px; }
  .tweak-row label { display: block; font-size: 11px; font-weight: 600; color: #6b7f90; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
  .tweak-row input[type=color] { width: 100%; height: 32px; border: 1px solid #dde5ee; border-radius: 6px; cursor: pointer; padding: 2px; }
  .tweak-row select { width: 100%; padding: 7px 10px; border: 1px solid #dde5ee; border-radius: 6px; font-size: 13px; color: var(--navy); background: white; }
