
  *, *::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;
  }

  /* ── NAV ── */

  .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-outline-navy { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
  .btn-outline-navy:hover { background: var(--navy); color: var(--white); }
  .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 */
  .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, big '30' numeral ── */
  .hero {
    background: linear-gradient(135deg, #0e2240 0%, #1c3a5f 55%, #1f4774 100%);
    color: var(--white);
    padding: 100px 40px 110px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 18% 30%, rgba(46,196,168,0.16) 0%, transparent 35%),
      radial-gradient(circle at 82% 70%, rgba(75,168,232,0.12) 0%, transparent 40%);
    pointer-events: none;
  }
  .hero-inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
  }
  .hero-label {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 11px;
    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(40px, 5.8vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.5px;
    margin-bottom: 28px;
    text-wrap: balance;
  }
  .hero h1 em { color: var(--accent); font-style: normal; }
  .hero-body {
    font-size: 17px;
    color: rgba(255,255,255,0.82);
    max-width: 560px;
    line-height: 1.75;
  }

  /* big numeric column */
  .hero-numeric {
    position: relative;
    text-align: center;
  }
  .hero-num {
    font-family: var(--font-head);
    font-size: clamp(180px, 22vw, 280px);
    font-weight: 800;
    color: var(--white);
    line-height: 0.85;
    letter-spacing: -10px;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.4) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
  }
  .hero-num .plus {
    font-size: 0.45em;
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
    vertical-align: top;
    line-height: 1;
    margin-left: 4px;
    letter-spacing: 0;
  }
  .hero-num-caption {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 12px;
  }
  .hero-num-rings {
    position: absolute;
    inset: -8% -2%;
    pointer-events: none;
  }
  .hero-num-rings svg { width: 100%; height: 100%; }

  /* ── 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.4vw, 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; }

  /* ── WHAT DRIVES US (editorial narrative) ── */
  .drives {
    background: var(--white);
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .drives-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
  }
  .drives-head h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.15;
  }
  .drives-head .accent-rule {
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin-top: 28px;
  }
  .drives-body p {
    font-size: 16.5px;
    line-height: 1.85;
    margin-bottom: 22px;
    color: var(--text);
  }
  .drives-body p.muted { color: var(--text-muted); }
  .drives-closing {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    letter-spacing: -0.4px;
    border-left: 4px solid var(--accent);
    padding: 8px 0 8px 28px;
    margin-top: 30px;
    font-style: italic;
  }

  /* ── MILESTONE STRIP (comment 0: same family as SLA blocks) ── */
  .milestones-strip {
    background: var(--navy-deep);
    padding: 60px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .milestones-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
    opacity: 0.5;
  }
  .milestones-head {
    text-align: center;
    margin-bottom: 36px;
  }
  .milestones-head .section-label { color: var(--accent); }
  .milestones-head h2 { color: var(--white); font-size: clamp(22px, 2.6vw, 30px); }
  .milestones-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .milestone {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .milestone:last-child { border-right: none; }
  .milestone .m-num {
    font-family: var(--font-head);
    font-size: clamp(38px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    letter-spacing: -1.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
  }
  .milestone .m-num .plus { font-size: 0.5em; color: var(--accent); font-weight: 700; }
  .milestone .m-num .small { font-size: 0.4em; color: var(--accent); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
  .milestone .m-label {
    font-family: var(--font-head);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
  }

  /* ── TIMELINE (comment 1: horizontal editorial) ── */
  .timeline-section { background: var(--off-white); }
  .tl-track {
    position: relative;
    margin-top: 64px;
    padding: 0 0 40px;
  }
  .tl-line {
    position: absolute;
    left: 6%;
    right: 6%;
    top: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--navy-light) 60%, var(--accent) 100%);
    border-radius: 2px;
    opacity: 0.5;
  }
  .tl-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    position: relative;
  }
  .tl-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px;
  }
  .tl-year {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 16px;
    line-height: 1;
  }
  .tl-year.now { color: var(--navy); }
  .tl-node {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--accent);
    box-shadow: 0 0 0 5px var(--off-white), 0 0 0 6px rgba(46,196,168,0.18);
    position: relative;
    margin-bottom: 24px;
  }
  .tl-node::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--accent);
  }
  .tl-step.now .tl-node {
    border-color: var(--navy);
    box-shadow: 0 0 0 5px var(--off-white), 0 0 0 6px rgba(28,58,95,0.18);
  }
  .tl-step.now .tl-node::after { background: var(--navy); }
  .tl-title {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
    text-wrap: balance;
  }
  .tl-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* ── TEAM (Tabs on desktop, accordion on mobile) ── */
  .team-section { background: var(--white); }
  .team-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--gray-light);
    margin: 48px 0 0;
    overflow-x: auto;
  }
  .team-tab {
    flex: 1;
    min-width: 160px;
    padding: 18px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: var(--font-head);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    white-space: nowrap;
    text-align: center;
  }
  .team-tab:hover { color: var(--navy); background: var(--off-white); }
  .team-tab.active { color: var(--navy); border-bottom-color: var(--accent); }
  .team-tab .count {
    display: inline-block;
    margin-left: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 2px 8px;
    border-radius: 10px;
    vertical-align: 1px;
  }
  .team-panel { display: none; padding: 48px 0 0; }
  .team-panel.active { display: block; }
  .team-panel-trigger { display: none; }

  .team-list { display: flex; flex-direction: column; gap: 32px; }
  .tm-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 36px;
    align-items: start;
    padding: 0 0 32px;
    border-bottom: 1px solid var(--gray-light);
  }
  .tm-card:last-child { border-bottom: none; padding-bottom: 0; }
  .tm-photo {
    width: 200px;
    aspect-ratio: 1 / 1.15;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--gray-light) 100%);
    position: relative;
  }
  .tm-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .tm-photo-placeholder {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-transform: uppercase;
  }
  .tm-photo-placeholder::before {
    content: '';
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    width: 36%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(28,58,95,0.16) 0%, rgba(28,58,95,0.08) 100%);
  }
  .tm-photo-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 72%;
    height: 42%;
    border-radius: 50% 50% 0 0 / 70% 70% 0 0;
    background: linear-gradient(180deg, rgba(28,58,95,0.16) 0%, rgba(28,58,95,0.08) 100%);
  }
  .tm-body { padding-top: 4px; }
  .tm-name {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.4px;
    line-height: 1.2;
  }
  .tm-title {
    font-family: var(--font-head);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 6px;
    margin-bottom: 18px;
  }
  .tm-bio p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
  }
  .tm-bio p:last-child { margin-bottom: 0; }
  .team-placeholder-note {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
  }

  /* Mobile: accordion */
  @media (max-width: 720px) {
    .team-tabs { display: none; }
    .team-panel {
      display: block;
      padding: 0;
    }
    .team-panel-trigger {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between;
      padding: 22px 4px;
      background: transparent;
      border: none;
      border-top: 1px solid var(--gray-light);
      font-family: var(--font-head);
      font-size: 16px;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.2px;
      cursor: pointer;
      text-align: left;
    }
    .team-panel:last-of-type .team-panel-trigger {
      border-bottom: 1px solid var(--gray-light);
    }
    .team-panel.open:last-of-type .team-panel-trigger { border-bottom: none; }
    .team-panel-trigger .chev {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--off-white);
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.25s, background 0.25s;
      color: var(--navy);
      font-size: 14px;
      font-weight: 800;
      flex-shrink: 0;
    }
    .team-panel.open .team-panel-trigger .chev {
      transform: rotate(180deg);
      background: var(--accent-soft);
      color: var(--accent-hover);
    }
    .team-panel-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .team-panel.open .team-panel-body {
      max-height: 12000px;
      padding: 12px 0 32px;
    }
    .tm-card { grid-template-columns: 1fr; gap: 14px; padding-bottom: 24px; }
    .tm-photo { width: 140px; }
  }

  /* ── CCS PARENT CONNECTION (comment 2: brand lockup) ── */
  .ccs-section {
    background: var(--off-white);
  }
  .ccs-card {
    max-width: 980px;
    margin: 56px auto 0;
    background: var(--white);
    border-radius: 18px;
    padding: 56px 56px;
    border: 1px solid var(--gray-light);
    box-shadow: 0 8px 32px rgba(28,58,95,0.07);
    position: relative;
    overflow: hidden;
  }
  .ccs-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--navy));
  }
  .ccs-lockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin-bottom: 36px;
    flex-wrap: wrap;
  }
  .ccs-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .ccs-logo-img {
    height: 84px;
    width: auto;
    display: block;
  }
  .ccs-logo-placeholder {
    width: 200px;
    height: 84px;
    border-radius: 8px;
    background: var(--off-white);
    border: 1.5px dashed var(--gray-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
  }
  .ccs-logo-caption {
    font-family: var(--font-head);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  .ccs-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    padding: 0 8px;
  }
  .ccs-connector .line {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--navy));
  }
  .ccs-connector .label {
    font-family: var(--font-head);
    font-size: 9.5px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  .ccs-tagline {
    text-align: center;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.3px;
    margin-bottom: 24px;
  }
  .ccs-body {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    color: var(--text);
    max-width: 720px;
    margin: 0 auto 28px;
  }
  .ccs-link {
    text-align: center;
  }
  .ccs-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    padding: 12px 22px;
    border: 2px solid var(--accent);
    border-radius: 4px;
    transition: all 0.2s;
  }
  .ccs-link a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-1px);
  }
  .ccs-link a .arrow { transition: transform 0.2s; }
  .ccs-link a:hover .arrow { transform: translateX(3px); }

  /* ── WHAT SETS US APART (narrative w/ accent border) ── */
  .apart-section {
    background: var(--white);
  }
  .apart-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
  }
  .apart-body p {
    font-size: 16.5px;
    line-height: 1.85;
    margin-bottom: 22px;
    color: var(--text);
  }
  .apart-body p.muted { color: var(--text-muted); font-size: 16px; }
  .apart-body p.closing {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.2px;
    line-height: 1.5;
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid var(--gray-light);
  }

  /* ── CTA ── */
  .cta-section {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
    padding: 90px 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    border: 1px solid rgba(46,196,168,0.18);
    border-radius: 50%;
    top: -120px;
    right: -80px;
  }
  .cta-section::after {
    content: '';
    position: absolute;
    width: 220px; height: 220px;
    border: 1px solid rgba(46,196,168,0.12);
    border-radius: 50%;
    bottom: -80px;
    left: -60px;
  }
  .cta-section .section-inner { position: relative; z-index: 2; }
  .cta-section .section-label { color: var(--accent); }
  .cta-section h2 { color: var(--white); font-size: clamp(28px, 4vw, 42px); margin-bottom: 22px; letter-spacing: -0.7px; }
  .cta-section p { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 720px; margin: 0 auto 36px; text-wrap: balance; line-height: 1.7; }
  .cta-section .btn { font-size: 15px; padding: 14px 32px; }
  .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* ── FOOTER ── */

  /* ── Responsive ── */
  @media (max-width: 1080px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .hero-body { margin: 0 auto; }
    .drives-grid, .apart-grid { grid-template-columns: 1fr; gap: 36px; }
  }
  @media (max-width: 980px) {
    .milestones-grid { grid-template-columns: repeat(2, 1fr); }
    .milestone:nth-child(2) { border-right: none; }
    .tl-grid { grid-template-columns: 1fr; gap: 32px; }
    .tl-line { display: none; }
    .ccs-card { padding: 36px 24px; }
  }
  @media (max-width: 640px) {
    .milestones-grid { grid-template-columns: 1fr; }
    .milestone { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
  }

  /* ── TWEAKS PANEL ── */
  #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; }
