

  :root {
    --navy: #1B2A3B;
    --navy-deep: #0F1A26;
    --navy-soft: #243649;
    --red: #C0392B;
    --red-bright: #D94836;
    --white: #FFFFFF;
    --off-white: #F8F8F7;
    --text: #1B2A3B;
    --muted: #3D4654;
    --muted-light: #5A6373;
    --border: #E5E5E5;
    --border-strong: #D1D1D1;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Liberation Sans", sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--off-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  /* ========== SHELL ========== */
  .mockup-shell {
    display: block;
    min-height: 100vh;
  }

  /* Page switcher sidebar */
  /* Main viewport */
  .viewport {
    background: var(--white);
    min-height: 100vh;
  }

  /* ========== SITE COMPONENTS ========== */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 48px); }

  .eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
  }

  /* Site header (inside viewport) */
  header.site-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 40;
  }
  header.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
  .site-logo { cursor: pointer; }
  .site-logo img { height: 56px; width: auto; display: block; }
  .site-menu ul {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
  }
  .site-menu a {
    color: var(--navy);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
  }
  .site-menu a:hover { color: var(--red); }
  .site-menu .nav-cta {
    background: var(--navy);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 2px;
    font-size: 12px;
  }
  .site-menu .nav-cta:hover { background: var(--red); }
  .nav-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--navy);
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
  }
  .nav-linkedin svg { width: 20px; height: 20px; }
  .nav-linkedin:hover { color: var(--red); background: var(--off-white); }

  .site-menu .has-dropdown { position: relative; }
  .site-menu .has-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 14px;
  }
  .site-menu .dropdown-trigger { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
  .site-menu .caret { font-size: 9px; transition: transform 0.15s; }
  .site-menu .has-dropdown:hover .caret { transform: rotate(180deg); }
  .site-menu .dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: -16px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: 1px solid var(--border);
    border-radius: 4px;
    min-width: 240px;
    padding: 8px 0;
    flex-direction: column;
    gap: 0;
    z-index: 100;
  }
  .site-menu .has-dropdown:hover .dropdown,
  .site-menu .has-dropdown:focus-within .dropdown {
    display: flex;
  }
  .site-menu .dropdown li { width: 100%; }
  .site-menu .dropdown a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    color: var(--navy);
    border-left: 2px solid transparent;
    transition: all 0.15s;
  }
  .site-menu .dropdown a:hover {
    background: var(--off-white);
    color: var(--red);
    border-left-color: var(--red);
  }
  @media (max-width: 960px) {
    .site-menu ul li:not(:last-child) { display: none; }
  }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
  }
  .btn-primary { background: var(--red); color: var(--white); }
  .btn-primary:hover { background: var(--navy); }
  .btn-secondary { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
  .btn-secondary:hover { background: var(--navy); color: var(--white); }
  .btn .arrow { transition: transform 0.2s; }
  .btn:hover .arrow { transform: translateX(3px); }

  /* Sections */
  section.page-section { padding: clamp(56px, 7.5vw, 84px) 0; }
  section.page-section.tight { padding: clamp(40px, 5.4vw, 60px) 0; }
  .section-head {
    margin-bottom: clamp(26px, 3.2vw, 36px);
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
  }
  .section-num { display: none; }
  .section-title {
    font-weight: 600;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--navy);
    flex: 1;
  }
  .section-subtitle {
    font-size: 16px;
    color: var(--muted);
    max-width: 320px;
    text-align: right;
    line-height: 1.5;
  }
  @media (max-width: 768px) {
    .section-head { flex-direction: column; gap: 10px; }
    .section-subtitle { text-align: left; max-width: 100%; }
  }

  /* Page heros */
  .page-hero {
    padding: clamp(48px, 5.7vw, 64px) 0 clamp(40px, 5vw, 56px);
  }
  .page-hero.tall {
    padding: clamp(56px, 7.9vw, 88px) 0 clamp(60px, 8.6vw, 96px);
    background:
      radial-gradient(ellipse at 0% 0%, rgba(192,57,43,0.16) 0%, transparent 45%),
      radial-gradient(ellipse at 100% 100%, rgba(27,42,59,0.12) 0%, transparent 55%),
      var(--white);
    position: relative;
    overflow: hidden;
  }
  .page-hero h1 {
    font-weight: 600;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin: 18px 0 24px;
    max-width: 900px;
  }
  .page-hero .hero-sub {
    font-size: 19px;
    color: var(--muted);
    max-width: 720px;
    line-height: 1.6;
  }
  .page-hero .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

  /* HOME HERO with credentials card */
  .hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 72px;
    align-items: center;
  }
  @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
  .hero-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 26px;
  }
  .hero-card-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
  }
  .hero-card-title {
    font-weight: 600;
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--navy);
  }
  .cred-row {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
    font-size: 13px;
  }
  .cred-row:last-child { border-bottom: none; }
  .cred-row .name { font-weight: 500; }
  .cred-row .status {
    font-size: 10px;
    color: var(--red);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .hero-card-link {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    font-weight: 500;
    color: var(--red);
    text-decoration: none;
    display: inline-flex;
    gap: 6px;
  }
  .hero-card-link:hover { gap: 10px; }
  .cred-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: start;
    margin: 22px 0 20px;
  }
  .cred-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .cred-badge img, .cred-badge svg {
    width: 100%;
    max-width: 96px;
    height: auto;
    display: block;
  }
  .cred-badge-cap {
    font-size: 11px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
  }
  .cred-badge-cap span {
    font-weight: 500;
    color: var(--muted);
  }
  .cred-placeholders { margin-top: 8px; }
  .cred-row.placeholder { opacity: 0.5; }
  .cred-row.placeholder .status { color: var(--muted); }

  /* Pillars (Home) */
  .pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  @media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }
  .pillar {
    background: var(--white);
    padding: 44px 44px 40px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    min-height: 360px;
    transition: background 0.2s;
  }
  .pillar:hover { background: var(--off-white); }
  .pillar.featured { background: var(--navy); color: var(--white); }
  .pillar.featured:hover { background: var(--navy-deep); }
  .pillar-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 22px;
  }
  .pillar.featured .pillar-label { color: var(--red-bright); }
  .pillar-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
  }
  .pillar.featured .pillar-title { font-size: 32px; }
  .pillar-desc { font-size: 15px; line-height: 1.65; color: var(--muted); margin-bottom: auto; }
  .pillar.featured .pillar-desc { color: rgba(255,255,255,0.88); font-size: 15px; }
  .pillar-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 20px 0; }
  .tag {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 8px;
    border: 1px solid var(--border-strong);
    color: var(--muted);
    border-radius: 2px;
  }
  .pillar.featured .tag { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.85); }
  .pillar-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--red);
    text-decoration: none;
    display: inline-flex;
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .pillar.featured .pillar-link { color: var(--white); font-size: 16px; font-weight: 600; padding-top: 22px; border-color: rgba(255,255,255,0.25); }

  /* Services grid (5) */
  .services {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  @media (max-width: 700px) {
    .services { grid-template-columns: 1fr 1fr; }
  }
  .service {
    background: var(--white);
    padding: 30px 22px 26px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: background 0.2s;
  }
  .service:hover { background: var(--off-white); }
  .service-icon { width: 34px; height: 34px; color: var(--red); margin: 0 auto 18px; display: block; }
  .service-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 10px;
  }
  .service-desc { font-size: 15px; line-height: 1.6; color: var(--muted); }

  /* Industries (flat, all equal now) */
  .industries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  @media (max-width: 700px) { .industries { grid-template-columns: 1fr; } }
  .industry {
    background: var(--white);
    padding: 28px 24px;
    transition: background 0.2s;
    cursor: pointer;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .industry:hover { background: var(--off-white); }
  .industry-name {
    font-weight: 600;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -0.005em;
  }
  .industry-spec {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.02em;
  }

  /* Stats band */
  .stats-section { background: var(--navy); color: var(--white); padding: clamp(48px, 5.7vw, 64px) 0; }
  .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
  @media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; } }
  .stat { text-align: center; }
  .stat-num {
    font-weight: 600;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
  }
  .stat-num .plus { color: var(--red-bright); font-weight: 400; margin-left: -1px; }
  .stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }

  /* Method diagram */
  .method-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 900px) { .method-layout { grid-template-columns: 1fr; gap: 48px; } }
  .method-copy p { font-size: 16px; line-height: 1.7; color: var(--muted); margin-bottom: 18px; max-width: 480px; }
  .method-copy p strong { color: var(--navy); font-weight: 600; }
  .method-diagram { position: relative; aspect-ratio: 1; max-width: 440px; margin-left: auto; }
  .method-visual { display: block; }
  .innov6-img {
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
  }
  .method-execution {
    background: var(--navy);
    color: var(--white);
    padding: 22px 24px;
    border-radius: 4px;
  }
  .method-execution-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
  }
  .method-execution-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.15;
    color: var(--white);
    margin-top: 4px;
  }
  .method-execution-title .accent { color: var(--red-bright); }
  .method-execution .method-phases {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
  }
  .method-execution-foot {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    text-align: center;
  }
  .method-outer {
    position: absolute;
    inset: 0;
    border: 2px solid var(--navy);
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
  }
  .method-outer-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .method-outer-label { font-weight: 600; font-size: 17px; color: var(--navy); margin-top: 4px; }
  .method-inner {
    position: absolute;
    inset: 64px;
    background: var(--navy);
    color: var(--white);
    border-radius: 2px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .method-inner-title { font-weight: 600; font-size: 20px; line-height: 1.15; color: var(--white); margin-top: 4px; }
  .method-inner-title .accent { color: var(--red-bright); }
  .method-phases { display: flex; justify-content: space-between; gap: 6px; margin-top: 14px; }
  .phase { flex: 1; text-align: center; padding: 12px 6px; background: rgba(255,255,255,0.08); border-radius: 2px; }
  .phase-num { font-size: 9px; font-weight: 600; color: var(--red-bright); }
  .phase-name { font-size: 12px; font-weight: 500; margin-top: 2px; }

  /* Case studies */
  .cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  @media (max-width: 900px) { .cases { grid-template-columns: 1fr; } }
  .case {
    border: 1px solid var(--border);
    padding: 28px 24px 24px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 240px;
    transition: all 0.2s;
    cursor: pointer;
  }
  .case:hover { border-color: var(--navy); transform: translateY(-2px); }
  .case.case-navy,
  #page-proof .cases .case:nth-child(odd) {
    background: rgba(27, 42, 59, 0.05);
    border-color: rgba(27, 42, 59, 0.14);
  }
  .case-industry {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text);
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.5;
  }
  .case-industry .ci-industry { display: block; }
  .case-industry .ci-metrics { display: block; font-weight: 500; color: var(--text); }
  .case-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .case-outcome { font-size: 15px; line-height: 1.6; color: var(--muted); flex: 1; }
  .case-link {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    font-weight: 500;
    color: var(--red);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Case study modal */
  .case-modal {
    position: fixed; inset: 0; z-index: 1000;
    display: none; opacity: 0; transition: opacity 0.2s ease;
  }
  .case-modal.active { display: block; opacity: 1; }
  .case-modal-overlay {
    position: absolute; inset: 0;
    background: rgba(15, 26, 38, 0.82);
    cursor: pointer;
  }
  .case-modal-content {
    position: relative;
    max-width: 880px;
    margin: 40px auto;
    background: var(--white);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  }
  .case-modal-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: none; border-radius: 50%;
    cursor: pointer; font-size: 22px; line-height: 1;
    z-index: 2;
    transition: background 0.15s;
  }
  .case-modal-close:hover { background: rgba(255,255,255,0.25); }
  .modal-header {
    background: var(--navy-deep);
    color: var(--white);
    padding: 44px 56px 32px;
    position: relative;
  }
  .modal-header h2 {
    font-size: 28px; font-weight: 600;
    letter-spacing: -0.02em; line-height: 1.15;
    margin-bottom: 10px; max-width: 78%;
  }
  .modal-subhead {
    font-size: 14px; color: rgba(255,255,255,0.7);
    font-style: italic;
  }
  .modal-tag {
    position: absolute;
    top: 48px; right: 70px;
    font-size: 12px; color: rgba(255,255,255,0.7);
    font-style: italic;
  }
  .modal-brand {
    position: absolute;
    top: 32px; right: 48px;
    display: flex; flex-direction: column;
    align-items: flex-end; gap: 8px;
  }
  .modal-brand img {
    height: 44px; width: auto; display: block;
    background: var(--white);
    padding: 8px 12px;
    border-radius: 4px;
  }
  .modal-brand .modal-tag {
    position: static;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    font-style: italic;
  }
  .modal-divider { background: var(--red); height: 10px; }
  .modal-meta {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    padding: 26px 56px 14px;
    background: var(--off-white);
    gap: 24px;
  }
  .modal-meta label {
    display: block; font-size: 10px;
    letter-spacing: 0.15em; color: var(--red);
    font-weight: 700; text-transform: uppercase;
    margin-bottom: 6px;
  }
  .modal-meta span {
    font-size: 14px; font-weight: 700; color: var(--navy);
  }
  .modal-meta-row {
    padding: 0 56px 26px; background: var(--off-white);
  }
  .modal-meta-row label {
    display: block; font-size: 10px;
    letter-spacing: 0.15em; color: var(--red);
    font-weight: 700; text-transform: uppercase;
    margin-bottom: 6px;
  }
  .modal-meta-row span { font-size: 13px; color: var(--text); }
  .modal-outcomes {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  }
  .modal-outcomes.merged { grid-template-columns: 1fr; }
  .modal-outcomes.merged .outcome-header { margin-bottom: 10px; }
  .modal-outcome-col { padding: 18px 28px 22px; }
  .modal-outcome-sn { background: #EDF1F5; }
  .modal-outcome-biz { background: #FBEEEC; }
  .outcome-header {
    font-size: 11px; letter-spacing: 0.15em;
    font-weight: 700; color: var(--navy);
    text-transform: uppercase;
  }
  .modal-outcome-biz .outcome-header { color: var(--red); }
  .outcome-sub {
    font-size: 11px; color: var(--muted);
    font-style: italic; margin: 2px 0 14px;
  }
  .modal-outcome-col ul { list-style: none; padding: 0; }
  .modal-outcome-col li {
    font-size: 13px; font-weight: 600;
    color: var(--navy); line-height: 1.4;
    padding: 6px 0;
  }
  .modal-ps { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .ps-header {
    background: var(--navy-deep); color: var(--white);
    padding: 12px 28px; font-size: 11px;
    letter-spacing: 0.15em; font-weight: 700;
    text-transform: uppercase;
  }
  .ps-body {
    padding: 20px 28px 28px;
    background: var(--white);
  }
  .ps-body p {
    font-size: 13px; line-height: 1.55;
    color: var(--text); margin-bottom: 12px;
  }
  .ps-body p:last-child { margin-bottom: 0; }
  .modal-footer {
    background: var(--navy-deep); color: var(--white);
    padding: 22px 56px;
    display: flex; justify-content: space-between;
    align-items: center; gap: 24px;
  }
  .modal-cta {
    color: var(--white); text-decoration: none;
    font-size: 15px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    transition: color 0.15s;
  }
  .modal-cta:hover { color: var(--red-bright); }
  .modal-cta .arrow { transition: transform 0.15s; }
  .modal-cta:hover .arrow { transform: translateX(4px); }
  .modal-footer-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-align: right;
  }
  .modal-footer-meta small {
    display: block; font-size: 10px;
    margin-top: 2px; opacity: 0.7;
  }
  @media (max-width: 768px) {
    .case-modal-content { margin: 16px; }
    .modal-header { padding: 36px 28px 24px; }
    .modal-header h2 { font-size: 22px; max-width: 100%; }
    .modal-tag { top: 14px; right: 24px; }
    .modal-brand { top: 14px; right: 18px; gap: 6px; }
    .modal-brand img { height: 32px; padding: 6px 10px; }
    .modal-meta { grid-template-columns: 1fr; padding: 22px 28px 10px; }
    .modal-meta-row { padding: 0 28px 22px; }
    .modal-outcomes, .modal-ps { grid-template-columns: 1fr; }
    .modal-footer { padding: 20px 28px; flex-direction: column; align-items: flex-start; }
    .modal-footer-meta { text-align: left; }
  }

  /* Insights */
  .insights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
  @media (max-width: 900px) { .insights { grid-template-columns: 1fr; } }
  .insight { padding: 24px 28px 24px 0; border-right: 1px solid var(--border); cursor: pointer; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
  .insight:last-child { border-right: none; padding-right: 0; }
  .insight:not(:first-child) { padding-left: 28px; }
  @media (max-width: 900px) {
    .insight { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 0; }
    .insight:not(:first-child) { padding-left: 0; }
    .insight:last-child { border-bottom: none; }
  }
  .insight-date {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .insight-cat {
    font-size: 9px;
    padding: 3px 7px;
    background: var(--red);
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.15em;
    border-radius: 2px;
  }
  .insight-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 10px;
    transition: color 0.2s;
  }
  .insight:hover .insight-title { color: var(--red); }
  .insight-excerpt { font-size: 15px; line-height: 1.6; color: var(--muted); }
  .insight::after {
    content: "Read article \2192";
    margin-top: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--red);
  }
  .insight:hover::after { text-decoration: underline; }

  /* Article (insight detail) pages */
  .article-wrap { max-width: 760px; margin: 0 auto; }
  .article-back {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500; color: var(--red);
    text-decoration: none; margin-bottom: 30px;
  }
  .article-back:hover { gap: 12px; }
  .article-draft-flag {
    display: inline-block; font-size: 10px; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--muted-light); border: 1px solid var(--border-strong);
    padding: 4px 10px; border-radius: 2px; margin-bottom: 20px;
  }
  .article-meta {
    display: flex; align-items: center; gap: 12px;
    font-size: 12px; color: var(--muted); margin-bottom: 16px;
  }
  .article-title {
    font-weight: 600; font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12; letter-spacing: -0.025em; color: var(--navy);
    margin-bottom: 22px;
  }
  .article-byline {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--muted);
    padding-bottom: 26px; margin-bottom: 34px;
    border-bottom: 1px solid var(--border);
  }
  .article-byline strong { color: var(--navy); font-weight: 600; }
  .article-figure {
    width: 100%; aspect-ratio: 16 / 9;
    background-size: cover; background-position: center;
    background-color: var(--navy-soft);
    border-radius: 4px; margin-bottom: 38px;
  }
  .article-lead {
    font-size: 20px; line-height: 1.6; color: var(--text);
    margin-bottom: 28px;
  }
  .article-body h3 {
    font-weight: 600; font-size: 21px; color: var(--navy);
    margin: 34px 0 12px;
  }
  .article-body p {
    font-size: 17px; line-height: 1.75; color: var(--muted);
    margin-bottom: 20px;
  }

  /* CTA band */
  .cta-band { background: var(--navy); padding: clamp(52px, 6.4vw, 72px) 0; }
  .cta-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
  @media (max-width: 900px) { .cta-inner { grid-template-columns: 1fr; } }
  .cta-inner h2 {
    font-weight: 600;
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
  }
  .cta-side { text-align: right; }
  @media (max-width: 900px) { .cta-side { text-align: left; } }
  .cta-side p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 18px;
    max-width: 340px;
    margin-left: auto;
    line-height: 1.55;
  }
  @media (max-width: 900px) { .cta-side p { margin-left: 0; } }

  /* Footer */
  footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.85);
    padding: 56px 0 36px;
    font-size: 14px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
  }
  @media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
  footer h4 {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 14px;
    font-weight: 600;
  }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: 7px; }
  footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
  footer a:hover { color: var(--white); }
  .footer-logo {
    background: var(--white);
    padding: 10px 14px;
    border-radius: 3px;
    display: inline-block;
  }
  .footer-logo img { height: 28px; width: auto; display: block; }
  .footer-brand p { margin-top: 16px; max-width: 300px; font-size: 13px; line-height: 1.55; }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
  }
  .footer-bottom .copy { color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }

  /* ========== PAGE SPECIFIC ========== */

  /* ServiceNow Practice page product grid */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  @media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; } }
  .product {
    background: var(--white);
    padding: 26px 22px;
    transition: background 0.2s;
    cursor: pointer;
    position: relative;
  }
  .product:hover { background: var(--off-white); }
  .vp-logo { position: absolute; top: 20px; right: 20px; width: 30px; height: 30px; display: block; }
  .product-abbr {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--red);
    margin-bottom: 8px;
  }
  .product-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .product-desc { font-size: 14.5px; line-height: 1.55; color: var(--muted); }

  /* Infrastructure AI strategy block */
  .ai-strat-block {
    margin-top: 28px;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 30px 34px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--navy);
  }
  .ai-strat-block.ai-strat-lead { margin-top: 0; margin-bottom: 28px; }
  .ai-strat-eyebrow {
    flex: none;
    font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--red);
    padding-top: 4px;
    min-width: 120px;
  }
  .ai-strat-head { font-size: 20px; font-weight: 600; color: var(--navy); margin: 0 0 8px; }
  .ai-strat-body { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 680px; }
  @media (max-width: 700px) {
    .ai-strat-block { flex-direction: column; gap: 12px; }
  }

  /* Foundations flowing into the platform matrix */
  .flow-into { margin-top: 44px; }
  .flow-up { display: flex; justify-content: center; gap: 46px; margin-bottom: 20px; }
  .flow-up svg { width: 20px; height: 20px; color: var(--border-strong); }
  .flow-eyebrow { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
  .flow-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 860px; margin: 0 auto; }
  .flow-pill {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 11px 18px;
    background: var(--navy);
    border: 1px solid var(--navy);
    border-radius: 999px;
    font-size: 14px; font-weight: 500; color: var(--white);
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  }
  .flow-pill svg { width: 16px; height: 16px; flex: none; }
  .flow-pill:hover { background: var(--navy-deep); transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.16); }

  /* Big display text for single service/industry pages */
  .long-prose { max-width: 720px; margin: 0 auto; }
  .long-prose p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 22px;
  }
  .long-prose p strong { color: var(--navy); font-weight: 600; }
  .long-prose h3 {
    font-weight: 600;
    font-size: 22px;
    color: var(--navy);
    margin: 36px 0 14px;
    letter-spacing: -0.01em;
  }

  /* About page - team */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  @media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }
  .team-card { background: var(--off-white); padding: 28px 24px; border: 1px solid var(--border); }
  .team-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 17px;
    letter-spacing: 0.05em;
    overflow: hidden;
  }
  .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .team-name { font-weight: 600; color: var(--navy); font-size: 17px; }
  .team-role { font-size: 12px; color: var(--red); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
  .team-bio { font-size: 15px; line-height: 1.6; color: var(--muted); margin-top: 14px; }

  /* Contact page */
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
  @media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
  .contact-info h3 {
    font-weight: 600;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 14px;
    margin-top: 24px;
  }
  .contact-info h3:first-child { margin-top: 0; }
  .contact-info p { font-size: 14px; color: var(--muted); line-height: 1.6; }
  .contact-info a { color: var(--navy); font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--red); }
  .contact-info a:hover { color: var(--red); }

  .contact-form {
    background: var(--off-white);
    border: 1px solid var(--border);
    padding: 36px 32px;
    border-radius: 4px;
  }
  .contact-form-title { font-weight: 600; font-size: 20px; color: var(--navy); margin-bottom: 6px; }
  .contact-form-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
  @media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
  .form-field { margin-bottom: 14px; }
  .form-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--border-strong);
    background: var(--white);
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    border-radius: 2px;
    transition: border-color 0.15s;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--red);
  }
  .form-field textarea { min-height: 110px; resize: vertical; }
  .form-privacy { font-size: 11px; color: var(--muted); margin-top: 14px; line-height: 1.5; }



  .hero-single {
    max-width: 980px;
    margin: 0 auto;
    text-align: left;
  }
  .hero-single h1 {
    max-width: 100%;
  }

  


  .section-intro {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 820px;
    margin: -28px 0 40px;
  }

  .ai-steps { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 26px; }
  .ai-step { display: flex; gap: 22px; align-items: flex-start; }
  .ai-step-icon {
    flex: none;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--off-white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
  }
  .ai-step-icon svg { width: 26px; height: 26px; }
  .ai-step-body h3 { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
  .ai-step-body p { font-size: 16px; line-height: 1.65; color: var(--muted); }
  .ai-steps-foot {
    max-width: 760px;
    margin: 28px auto 0;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    font-size: 16px;
    color: var(--muted);
    text-align: center;
  }


  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
  }
  @media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } }
  .why-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 28px 28px 26px;
    border-radius: 2px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .why-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  }
  .why-card-head {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.005em;
    margin-bottom: 12px;
    line-height: 1.25;
  }
  .why-card-body {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
  }

  /* Section gradient accents: alternating red & navy corners for rhythm */
  .page-section {
    position: relative;
    overflow: hidden;
  }
  .page-section > .container { position: relative; z-index: 1; }
  .page-section:not([style*="off-white"])::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 100% 0%, rgba(192,57,43,0.08) 0%, transparent 40%),
      radial-gradient(ellipse at 0% 100%, rgba(27,42,59,0.06) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
  }
  .page-section[style*="off-white"]::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 0% 0%, rgba(27,42,59,0.10) 0%, transparent 45%),
      radial-gradient(ellipse at 100% 100%, rgba(192,57,43,0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
  }
  /* Hero on non-home pages also gets the treatment */
  .page-hero:not(.tall) {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(ellipse at 0% 0%, rgba(192,57,43,0.12) 0%, transparent 45%),
      radial-gradient(ellipse at 100% 100%, rgba(27,42,59,0.09) 0%, transparent 55%),
      var(--white);
  }
  .page-hero:not(.tall) > .container { position: relative; z-index: 1; }

    /* ========== HOME HERO ENHANCEMENTS ========== */
  .hero-partner-lockup {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    margin-bottom: 28px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  }
  .hero-sn-logo { height: 24px; width: auto; display: block; }
  .hero-partner-divider {
    width: 1px;
    height: 16px;
    background: var(--border-strong);
  }
  .hero-partner-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--navy);
    text-transform: uppercase;
  }
  .hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image:
      radial-gradient(circle at 1px 1px, rgba(27,42,59,0.18) 1px, transparent 0),
      radial-gradient(circle at 1px 1px, rgba(98,216,78,0.10) 1px, transparent 0);
    background-size: 28px 28px, 56px 56px;
    background-position: 0 0, 14px 14px;
    mask-image: linear-gradient(115deg, transparent 0%, transparent 25%, #000 75%, #000 100%);
    -webkit-mask-image: linear-gradient(115deg, transparent 0%, transparent 25%, #000 75%, #000 100%);
    opacity: 0.7;
  }
  .page-hero.tall .container { position: relative; z-index: 1; }
  .hero-single { position: relative; z-index: 1; }

    /* ========== STOCK IMAGE TREATMENT ========== */
  .tile-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-color: var(--navy);
    position: relative;
    filter: grayscale(100%);
    transition: filter 0.35s ease;
  }
  .tile-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27,42,59,0.55) 0%, rgba(27,42,59,0.80) 100%);
    transition: opacity 0.35s ease;
  }
  .industry-imaged {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--white);
    min-height: 0;
  }
  .industry-imaged .industry-body {
    padding: 22px 22px 24px;
  }
  .industry-imaged .industry-name { color: var(--navy); }
  .industry-imaged:hover .tile-image { filter: grayscale(0%) saturate(1.2) contrast(1.05); }
  .industry-imaged:hover .tile-image::after { opacity: 0.45; }

  .insight-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-color: var(--navy-soft);
    filter: grayscale(100%);
    transition: filter 0.35s ease;
    margin-bottom: 18px;
    position: relative;
  }
  .insight-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27,42,59,0.20) 0%, rgba(27,42,59,0.50) 100%);
    transition: opacity 0.35s ease;
  }
  .insight:hover .insight-image { filter: grayscale(0%) saturate(1.2) contrast(1.05); }
  .insight:hover .insight-image::after { opacity: 0.4; }

  .about-hero-image {
    width: 100%;
    height: 320px;
    background-image: url("/assets/3b350e66.jpg");
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    position: relative;
    margin-top: 32px;
    border-radius: 4px;
    overflow: hidden;
  }
  .about-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27,42,59,0.30) 0%, rgba(27,42,59,0.70) 100%);
  }


  /* ========== PILLAR CAPABILITIES ========== */
  .pillar-caps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 24px;
    margin: 32px 0 10px;
  }
  @media (max-width: 900px) { .pillar-caps { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .pillar-caps { grid-template-columns: 1fr; } }
  .cap {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 14px 14px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .cap-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--red-bright);
    display: inline-flex;
  }
  .cap-icon svg { width: 100%; height: 100%; }
  .cap-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    color: rgba(255,255,255,0.98);
    line-height: 1.25;
  }

  /* Page show/hide */
  .page { display: none; }
  .page.active { display: block; }


