/* ── Reset & Base ──────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --blue:   #116DFF;
      --orange: #FA9600;
      --dark:   #181818;
      --mid:    #E6E6E6;
      --light:  #FAF9F5;
      --gray:   #545454;
      --lgray:  #F5F5F5;
      --white:  #FFFFFF;
      --navy:   #141413;
      --font:   Arial, Helvetica, sans-serif;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font);
      color: var(--dark);
      background: var(--white);
      line-height: 1.65;
      font-size: 16px;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; }

    /* ── Site header: logo + menus in one row, orange line below ─── */
    .site-header {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000;
      background: var(--dark);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px;
      height: 76px;
      border-bottom: 3px solid var(--orange);
    }
    .header-logo-row { display: flex; align-items: center; }
    .header-logo { cursor: pointer; display: flex; align-items: center; }
    .header-logo img { height: 50px; width: auto; display: block; }
    .header-logo-fallback {
      display: none; font-size: 1.4rem; font-weight: 800;
      color: var(--white); letter-spacing: 0.06em;
    }
    .header-logo-fallback span { color: var(--orange); }
    .header-nav-row { display: flex; align-items: center; }
    .nav-links {
      display: flex; gap: 24px; list-style: none; align-items: center;
    }
    .nav-links a {
      color: var(--orange);
      font-size: 0.825rem; font-weight: 600;
      letter-spacing: 0.03em;
      transition: opacity 0.2s;
      cursor: pointer;
    }
    .nav-links a:hover { opacity: 0.7; }
    .nav-links a.active {
      border-bottom: 2px solid var(--orange);
      padding-bottom: 2px;
    }
    .nav-cta {
      background: var(--blue) !important;
      color: var(--white) !important;
      padding: 7px 16px !important;
      border-radius: 4px !important;
      font-weight: 600 !important;
      font-size: 0.8rem !important;
      transition: background 0.2s !important;
      border-bottom: none !important;
    }
    .nav-cta.active { border-bottom: none !important; }
    .nav-cta:hover { background: #0a5fd9 !important; opacity: 1 !important; }

    /* ── Page Sections (router) ───────────────────────────────── */
    .page { padding-top: 76px; }
    

    /* ── Profile Modal ─────────────────────────────────────────── */
    .profile-modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 2000;
      background: rgba(0,0,0,0.65); backdrop-filter: blur(3px);
      align-items: flex-start; justify-content: center;
      overflow-y: auto; padding: 40px 16px 60px;
    }
    .profile-modal-overlay.open { display: flex; }
    .profile-modal {
      background: var(--white); border-radius: 8px; width: 100%;
      max-width: 820px; position: relative; overflow: hidden;
      box-shadow: 0 24px 80px rgba(0,0,0,0.35);
      animation: modalIn 0.25s ease;
    }
    @keyframes modalIn {
      from { opacity:0; transform: translateY(24px); }
      to   { opacity:1; transform: translateY(0); }
    }
    .profile-modal-header {
      background: var(--dark); padding: 36px 44px;
      display: flex; gap: 28px; align-items: flex-start;
      border-bottom: 3px solid var(--orange);
    }
    .profile-modal-photo {
      width: 110px; height: 110px; border-radius: 50%;
      object-fit: cover; flex-shrink: 0;
      border: 3px solid var(--orange);
    }
    .profile-modal-photo-placeholder {
      width: 110px; height: 110px; border-radius: 50%; flex-shrink: 0;
      background: var(--orange); display: flex; align-items: center;
      justify-content: center; font-size: 2rem; font-weight: 800; color: var(--dark);
    }
    .profile-modal-identity { flex: 1; }
    .profile-modal-name {
      font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 4px;
    }
    .profile-modal-title {
      font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
    }
    .profile-modal-headline {
      font-size: 0.925rem; color: rgba(255,255,255,0.75); line-height: 1.5;
    }
    .profile-modal-body { padding: 36px 44px; }
    .profile-modal-section-label {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
    }
    .profile-modal-bio {
      font-size: 0.92rem; line-height: 1.75; color: #333; margin-bottom: 28px;
    }
    .profile-modal-expertise {
      background: var(--lgray); border-radius: 6px; padding: 18px 22px;
      font-size: 0.855rem; line-height: 1.7; color: #444; margin-bottom: 24px;
      white-space: pre-line;
    }
    .profile-modal-actions {
      display: flex; gap: 14px; align-items: center;
    }
    .profile-modal-linkedin {
      display: inline-flex; align-items: center; gap: 8px;
      background: #0A66C2; color: #fff; padding: 9px 18px;
      border-radius: 4px; font-size: 0.8rem; font-weight: 700;
      text-decoration: none; transition: background 0.2s;
    }
    .profile-modal-linkedin:hover { background: #004182; }
    .profile-modal-close {
      position: absolute; top: 16px; right: 20px;
      background: none; border: none; cursor: pointer;
      color: rgba(255,255,255,0.6); font-size: 1.5rem; line-height: 1;
      transition: color 0.2s; padding: 4px 8px;
    }
    .profile-modal-close:hover { color: #fff; }

    /* ── Section base ─────────────────────────────────────────── */
    section { padding: 88px 0; }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
    .container-wide { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

    /* ── Typography helpers ───────────────────────────────────── */
    .eyebrow {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--orange);
      margin-bottom: 12px;
    }
    h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; line-height: 1.15; color: var(--dark); }
    h2 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); font-weight: 700; color: var(--dark); line-height: 1.2; }
    h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); }
    p  { color: #333333; }
    .lead { font-size: 1.15rem; line-height: 1.7; color: #333333; }
    .section-title { margin-bottom: 48px; }
    .section-title h2 { margin-bottom: 16px; }
    .divider { width: 48px; height: 4px; background: var(--orange); border-radius: 2px; margin: 16px 0 24px; }

    /* ── Buttons ──────────────────────────────────────────────── */
    .btn {
      display: inline-block;
      padding: 13px 30px;
      border-radius: 4px;
      font-weight: 700; font-size: 0.9rem;
      cursor: pointer; transition: all 0.2s ease;
      letter-spacing: 0.02em;
      border: none;
    }
    .btn-primary { background: var(--blue); color: var(--white); }
    .btn-primary:hover { background: #0a5fd9; box-shadow: 0 4px 20px rgba(17,109,255,0.35); }
    .btn-orange { background: var(--orange); color: var(--white); }
    .btn-orange:hover { background: #d98100; box-shadow: 0 4px 20px rgba(250,150,0,0.35); }
    .btn-outline { border: 2px solid var(--dark); color: var(--dark); }
    .btn-outline:hover { background: var(--dark); color: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
    .btn-outline-white { border: 2px solid rgba(255,255,255,0.5); color: white; }
    .btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.12); }
    .btn-white { background: var(--white); color: var(--dark); font-weight: 700; }
    .btn-white:hover { background: var(--lgray); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }

    /* ── Cards ────────────────────────────────────────────────── */
    .card {
      background: var(--white);
      border: 1px solid var(--mid);
      border-radius: 8px;
      padding: 28px;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .card[onclick]:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
    a.card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-3px); }
    .card-blue  { border-top: 4px solid var(--blue); }
    .card-orange { border-top: 4px solid var(--orange); }

    /* ── Grid ─────────────────────────────────────────────────── */
    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    @media (max-width: 960px) {
      .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
      .grid-2 { grid-template-columns: 1fr; }
    }
    .hamburger { display:none; flex-direction:column; justify-content:center; gap:5px; cursor:pointer; padding:8px; background:none; border:none; z-index:1100; }
    .hamburger span { display:block; width:22px; height:2px; background:var(--orange); border-radius:2px; transition:all 0.25s; }
    .hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity:0; }
    .hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
    @media (max-width: 1024px) {
      .hamburger { display:flex; }
      .nav-links {
        display:none; flex-direction:column; gap:0;
        position:fixed; top:76px; left:0; right:0; bottom:0;
        background:var(--dark); z-index:999;
        padding:32px 40px; overflow-y:auto;
        border-top:1px solid rgba(255,255,255,0.08);
      }
      .nav-links.mobile-open { display:flex; }
      .nav-links li { border-bottom:1px solid rgba(255,255,255,0.07); }
      .nav-links a { display:block; padding:18px 0; font-size:1.05rem; color:var(--orange); }
      .nav-cta {
        background:var(--blue) !important; border-radius:4px !important;
        padding:16px 24px !important; margin-top:20px;
        text-align:center; display:block; width:100%; box-sizing:border-box;
        border-bottom:none !important;
      }
    }
    @media (max-width: 600px) {
      .grid-3, .grid-4 { grid-template-columns: 1fr; }
      nav { padding: 0 20px; }
      .container, .container-wide { padding: 0 20px; }
      section { padding: 56px 0; }
    }

    /* ── Quote / Pull ─────────────────────────────────────────── */
    .pull-quote {
      border-left: 5px solid var(--orange);
      background: var(--light);
      padding: 24px 28px;
      border-radius: 0 8px 8px 0;
      margin: 32px 0;
    }
    .pull-quote p { font-size: 1.1rem; font-style: italic; color: var(--dark); line-height: 1.7; }
    .pull-quote cite { display: block; margin-top: 10px; font-size: 0.825rem; font-weight: 700; color: var(--blue); font-style: normal; }

    /* ── Stat strip ───────────────────────────────────────────── */
    .stat-strip {
      display: grid; grid-template-columns: repeat(4, 1fr);
      background: var(--dark); border-radius: 8px; overflow: hidden;
    }
    .stat-item {
      padding: 36px 20px; text-align: center;
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .stat-item:last-child { border-right: none; }
    .stat-item:nth-child(even) { background: var(--blue); }
    .stat-number { font-size: 2.5rem; font-weight: 800; color: var(--white); line-height: 1; }
    .stat-label  { font-size: 0.775rem; color: rgba(255,255,255,0.7); margin-top: 8px; letter-spacing: 0.04em; }

    /* ── Phase strip ──────────────────────────────────────────── */
    .phase-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .phase-item { padding: 32px 28px; border-radius: 8px; background: var(--white); border: 1px solid var(--mid); transition: box-shadow 0.2s; }
    .phase-item:nth-child(1) { border-top: 4px solid var(--orange); }
    .phase-item:nth-child(2) { border-top: 4px solid var(--blue); }
    .phase-item:nth-child(3) { border-top: 4px solid var(--dark); }
    .phase-num { display: none; }
    .phase-label { font-size: 0.72rem; font-weight: 700; color: var(--orange); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.14em; display: block; }
    .phase-item:nth-child(2) .phase-label { color: var(--blue); }
    .phase-item:nth-child(3) .phase-label { color: var(--gray); }
    .phase-desc { font-size: 0.875rem; color: var(--gray); line-height: 1.75; margin-bottom: 20px; }
    .phase-tags { display: flex; flex-direction: column; gap: 10px; }
    .phase-tags span {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.875rem; color: var(--dark); line-height: 1.5;
    }
    .phase-tags span::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
      background: var(--orange); margin-top: 5px;
    }
    .phase-item:nth-child(2) .phase-tags span::before { background: var(--blue); }
    .phase-item:nth-child(3) .phase-tags span::before { background: var(--gray); }
    @media (max-width: 900px) {
      .phase-strip { grid-template-columns: 1fr 1fr; }
      .stat-strip  { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .phase-strip { grid-template-columns: 1fr; }
      .phase-item { padding: 28px 24px; }
    }

    /* ── Table ────────────────────────────────────────────────── */
    .styled-table { width: 100%; border-collapse: collapse; }
    .styled-table th {
      background: var(--dark); color: var(--white);
      padding: 13px 18px; text-align: left;
      font-size: 0.8rem; letter-spacing: 0.04em;
    }
    .styled-table td { padding: 13px 18px; border-bottom: 1px solid var(--mid); font-size: 0.875rem; }
    .styled-table tr:nth-child(even) td { background: var(--lgray); }
    .styled-table tr:hover td { background: var(--light); }
    .td-label { font-weight: 700; color: var(--dark); white-space: nowrap; }

    /* ── Tag ──────────────────────────────────────────────────── */
    .tag {
      display: inline-block;
      background: var(--light); color: var(--blue);
      border: 1px solid var(--mid);
      padding: 4px 12px; border-radius: 20px;
      font-size: 0.775rem; font-weight: 600;
      margin: 4px 4px 4px 0;
    }

    /* ── Arrow flow ───────────────────────────────────────────── */
    .arrow-flow { display: flex; align-items: center; gap: 0; margin-bottom: 48px; }
    .arrow-step {
      flex: 1; background: var(--dark); color: var(--white);
      padding: 18px 24px; text-align: center;
      position: relative; font-weight: 700; font-size: 0.95rem;
      clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 20px 50%);
    }
    .arrow-step:first-child { clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%); }
    .arrow-step:last-child  { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20px 50%); }
    .arrow-step:nth-child(2) { background: var(--blue); }
    .arrow-step:nth-child(3) { background: #0a5fd9; }
    .arrow-step span { display: block; font-size: 0.68rem; font-weight: 400; opacity: 0.8; margin-top: 2px; }

    /* ── Hero ─────────────────────────────────────────────────── */
    .hero {
      min-height: calc(100vh - 64px);
      background: linear-gradient(135deg, #0d0d0d 0%, #181818 50%, #0a2a6b 100%);
      display: flex; align-items: center;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 65% 50%, rgba(17,109,255,0.2) 0%, transparent 65%);
    }
    .hero-content { position: relative; z-index: 1; max-width: 820px; }
    .hero-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
    .hero h1 { color: var(--white); margin-bottom: 24px; }
    .hero h1 em { color: var(--blue); font-style: normal; }
    .hero .lead { color: rgba(255,255,255,0.8); margin-bottom: 40px; }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

    /* ── Differentiators ──────────────────────────────────────── */
    .diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--mid); border-radius: 8px; overflow: hidden; }
    .diff-item { background: var(--white); padding: 32px 24px; }
    .diff-icon { font-size: 1.75rem; margin-bottom: 14px; }
    .diff-item h3 { margin-bottom: 8px; }
    @media (max-width: 800px) { .diff-grid { grid-template-columns: 1fr; } }

    /* ── Testimonials ─────────────────────────────────────────── */
    .testimonial-card {
      background: var(--white);
      border: 1px solid var(--mid);
      border-radius: 8px;
      padding: 32px;
    }
    /* testimonial-card: not clickable — no hover */
    .testimonial-quote { display:none; }
    .testimonial-text { position:relative; font-size:0.925rem; line-height:1.7; color:#333; font-style:italic; }
    .testimonial-text::before { content:'“'; font-size:2.2rem; color:var(--orange); font-weight:800; font-style:normal; line-height:0.8; display:block; margin-bottom:8px; }
    .testimonial-text::after { content:'”'; font-size:2.2rem; color:var(--orange); font-weight:800; font-style:normal; line-height:0; display:inline; margin-left:4px; vertical-align:-0.5rem; }
    .testimonial-text { font-size: 0.925rem; line-height: 1.7; color: #333; font-style: italic; }
    .testimonial-author { margin-top: 20px; }
    .testimonial-author strong { font-size: 0.875rem; color: var(--dark); display: block; }
    .testimonial-author span { font-size: 0.8rem; color: var(--gray); }

    /* ── Partner cards ────────────────────────────────────────── */
    .partner-card {
      background: var(--white);
      border: 1px solid var(--mid);
      border-radius: 8px;
      padding: 24px;
      transition: box-shadow 0.2s, transform 0.2s;
      display: flex; flex-direction: column;
      cursor: pointer;
    }
    .partner-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-3px); }
    .partner-card-wrap { cursor: pointer; }
    .partner-name { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
    .partner-bio  { font-size: 0.825rem; color: var(--gray); line-height: 1.55; flex: 1; }
    .partner-link { margin-top: 14px; font-size: 0.775rem; font-weight: 700; color: var(--blue); cursor: pointer; }
    .partner-link:hover { text-decoration: underline; }
    .leadership-card { border-top: 4px solid var(--blue); }
    .partner-badge {
      display: inline-block;
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; padding: 2px 8px; border-radius: 3px;
      background: var(--orange); color: white; margin-bottom: 10px;
    }

    /* ── Case Studies ─────────────────────────────────────────── */
    .case-card {
      background: var(--white); border: 1px solid var(--mid);
      border-top: 3px solid var(--orange);
      border-radius: 8px; overflow: hidden;
    }
    .case-card-header { padding: 28px 28px 16px; background: var(--white); }
    .case-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: var(--lgray); color: var(--gray); border: 1px solid var(--mid); padding: 3px 9px; border-radius: 20px; }
    .case-card-header h3 { font-size: 1.15rem; line-height: 1.35; color: var(--dark); margin-top:4px; }
    .case-card-body { padding: 0 28px 28px; }
    .case-result { font-size: 0.875rem; line-height: 1.75; color: var(--gray); }
    .case-metric { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
    .metric-chip {
      background: var(--lgray); border: 1px solid var(--mid);
      border-radius: 6px; padding: 10px 14px; text-align: center; min-width: 90px;
    }
    .metric-chip strong { display: block; font-size: 1.3rem; color: var(--blue); font-weight: 800; line-height: 1; }
    .metric-chip span { font-size: 0.7rem; color: var(--gray); display: block; margin-top: 3px; }

    /* ── Insights / Blog ──────────────────────────────────────── */
    .insight-card {
      background: var(--white); border: 1px solid var(--mid);
      border-radius: 8px; overflow: hidden;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .insight-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
    .insight-img {
      height: 180px;
      display: flex; align-items: center; justify-content: center;
      font-size: 3rem; color: white;
    }
    .insight-body { padding: 24px; }
    .insight-meta { font-size: 0.75rem; color: var(--gray); margin-bottom: 10px; }
    .insight-meta span { color: var(--blue); font-weight: 600; }
    .insight-body h3 { font-size: 1rem; line-height: 1.4; margin-bottom: 10px; }
    .insight-body p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }
    .insight-read { margin-top: 16px; font-size: 0.8rem; font-weight: 700; color: var(--blue); }

    /* ── Ventures page ─────────────────────────────────────────── */
    .ventures-hero { background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%); padding: 80px 0; }
    .ventures-hero h2 { color: var(--white); }
    .ventures-hero .lead { color: rgba(255,255,255,0.8); }
    .track-card { border-radius: 8px; overflow: hidden; }
    .track-card-header { padding: 24px 28px; }
    .track-card-body { padding: 24px 28px; background: var(--white); border: 1px solid var(--mid); border-top: none; border-radius: 0 0 8px 8px; }
    .track-a .track-card-header { background: var(--dark); color: var(--white); }
    .track-b .track-card-header { background: var(--blue); color: var(--white); }
    .track-card-header h3 { color: var(--white); font-size: 1.2rem; }
    .track-card-header p  { color: rgba(255,255,255,0.8); margin-top: 6px; font-size: 0.875rem; }

    /* ── Problem page ──────────────────────────────────────────── */
    .problem-hero { background: var(--lgray); padding: 80px 0; }

    /* ── Contact ─────────────────────────────────────────────── */
    .contact-hero {
      background: var(--lgray);
      padding: 80px 0; text-align: left; color: var(--dark);
    }
    .contact-hero h2 { color: var(--dark); margin-bottom: 16px; }
    .contact-hero .lead { color: var(--gray); margin-bottom: 40px; }
    .contact-form { background: var(--white); border-radius: 12px; padding: 44px; max-width: 640px; margin: 0 auto; }
    .form-group { margin-bottom: 18px; }
    .form-group label { display: block; font-size: 0.825rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 11px 14px;
      border: 1px solid var(--mid); border-radius: 4px;
      font-family: var(--font); font-size: 0.925rem; color: var(--dark);
      transition: border-color 0.2s; background: var(--white);
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(17,109,255,0.12);
    }
    .form-group textarea { height: 120px; resize: vertical; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-success { display: none; text-align: center; padding: 40px; }
    .form-success h3 { color: var(--dark); margin-bottom: 12px; }
    .form-success p { color: var(--gray); }

    /* ── Collective page ─────────────────────────────────────── */
    .collective-hero { background: var(--lgray); padding: 80px 0; color: var(--dark); }
    .collective-hero h2 { color: var(--dark); }
    .tenet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .tenet-item { display: flex; gap: 16px; }
    .tenet-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
    .tenet-item h3 { margin-bottom: 5px; }

    /* ── Audience cards ─────────────────────────────────────── */
    .audience-card { background: var(--white); border: 1px solid var(--mid); border-radius: 8px; padding: 32px; transition: box-shadow 0.2s, transform 0.2s; }
    /* audience-card: not clickable — no hover */
    .audience-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
    .audience-card .audience-need { font-size: 0.825rem; color: var(--gray); margin-bottom: 16px; }
    .audience-card ul { list-style: none; padding: 0; margin: 16px 0 0; }
    .audience-card ul li { font-size: 0.85rem; padding: 6px 0; color: #333; border-bottom: 1px dashed var(--mid); }
    .audience-card ul li:last-child { border-bottom: none; }
    .audience-card .audience-cta { margin-top: 18px; font-size: 0.825rem; font-weight: 700; color: var(--blue); }

    /* ── Footer ───────────────────────────────────────────────── */
    .site-footer {
      background: var(--dark);
      color: rgba(255,255,255,0.7);
      border-top: 3px solid var(--orange);
    }
    .footer-main {
      padding: 52px 0 36px;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .footer-left { display: flex; flex-direction: column; gap: 18px; }
    .footer-logo img { height: 50px; width: auto; cursor: pointer; }
    .footer-tagline {
      font-size: 1.05rem; font-weight: 700;
      color: var(--white); line-height: 1.4; max-width: 360px;
    }
    .footer-social { display: flex; gap: 10px; align-items: center; margin-top: 4px; }
    .footer-social a { display: inline-block; transition: opacity 0.2s; }
    .footer-social a:hover { opacity: 0.7; }
    .footer-social img { width: 32px; height: 32px; display: block; }
    .footer-right { display: flex; flex-direction: column; gap: 20px; align-items: flex-end; }
    .footer-nav { display: flex; flex-wrap: wrap; gap: 6px 20px; justify-content: flex-end; }
    .footer-nav a {
      font-size: 0.825rem; color: rgba(255,255,255,0.6);
      cursor: pointer; transition: color 0.2s; font-weight: 500;
    }
    .footer-nav a:hover { color: var(--white); }
    .footer-cities {
      font-size: 0.875rem; font-weight: 600;
      color: rgba(255,255,255,0.9); text-align: right; line-height: 1.8;
    }
    .footer-cities .sep { color: var(--orange); margin: 0 6px; }
    .footer-contact { text-align: right; font-size: 0.85rem; }
    .footer-contact a { color: var(--blue); transition: color 0.2s; }
    .footer-contact a:hover { color: white; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 18px 0;
      text-align: center;
      font-size: 0.775rem; color: rgba(255,255,255,0.38);
    }
    @media (max-width: 720px) {
      .footer-main { grid-template-columns: 1fr; gap: 32px; }
      .footer-right { align-items: flex-start; }
      .footer-cities, .footer-contact, .footer-nav { text-align: left; justify-content: flex-start; }
    }

    /* ── Dark section helpers ─────────────────────────────────── */
    .bg-dark { background: var(--dark); }
    .bg-light { background: var(--light); }
    .bg-lgray { background: var(--lgray); }
    .text-white { color: var(--white) !important; }
    .eyebrow-blue { color: var(--blue) !important; }

    /* ── Brand Icons (replace emoji) ──────────────────────────── */
    .brand-icon {
      display: inline-flex; align-items: center; justify-content: center;
      width: 48px; height: 48px; border-radius: 10px;
      background: rgba(250,150,0,0.10);
      color: var(--orange);
      margin-bottom: 14px;
      flex-shrink: 0;
    }
    .brand-icon.icon-blue { background: rgba(17,109,255,0.10); color: var(--blue); }
    .brand-icon.icon-dark { background: var(--dark); color: var(--orange); }
    .brand-icon svg { width: 24px; height: 24px; }
    .brand-icon-sm { width: 40px; height: 40px; }
    .brand-icon-sm svg { width: 20px; height: 20px; }
    .brand-icon-lg { width: 64px; height: 64px; border-radius: 14px; }
    .brand-icon-lg svg { width: 30px; height: 30px; }
    .brand-icon-circle { border-radius: 50%; }
    .brand-icon-inline { width: 32px; height: 32px; margin: 0; }
    .brand-icon-inline svg { width: 16px; height: 16px; }

    /* ── Domain filter (Collective page) ──────────────────────── */
    .domain-filter-wrap { text-align: center; }
    .domain-filter-help {
      font-size: 0.825rem; color: var(--gray); font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px;
    }
    .domain-filter {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
      max-width: 980px; margin: 0 auto;
    }
    .domain-chip {
      display: inline-block;
      background: var(--white); color: var(--dark);
      border: 1.5px solid var(--mid);
      padding: 7px 14px; border-radius: 20px;
      font-size: 0.8rem; font-weight: 600;
      cursor: pointer; transition: all 0.2s ease;
      user-select: none;
    }
    .domain-chip:hover { border-color: var(--orange); color: var(--orange); }
    .domain-chip.active {
      background: var(--orange); color: var(--white); border-color: var(--orange);
    }
    .domain-chip.all-chip.active { background: var(--blue); border-color: var(--blue); }
    .domain-count {
      font-size: 0.7rem; opacity: 0.65; margin-left: 6px;
      background: rgba(0,0,0,0.06); padding: 1px 6px; border-radius: 10px;
    }
    .domain-chip.active .domain-count { background: rgba(255,255,255,0.22); opacity: 0.95; }
    .filter-status {
      font-size: 0.875rem; color: var(--gray);
      margin: 24px 0 8px; text-align: center;
    }
    .filter-status strong { color: var(--dark); }
    .partner-card { transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; }
    .partner-card.dimmed { opacity: 0.22; pointer-events: none; }
    .partner-card.matched { box-shadow: 0 0 0 2px var(--orange), 0 6px 20px rgba(250,150,0,0.18); }
    .partner-domain-tags { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 4px; }
    .partner-domain-tag {
      font-size: 0.65rem; font-weight: 600;
      background: var(--lgray); color: var(--gray);
      padding: 2px 7px; border-radius: 10px;
      border: 1px solid var(--mid);
    }
    .partner-domain-tag.match { background: var(--orange); color: var(--white); border-color: var(--orange); }
    /* ── Logo slider ─────────────────────────────────────────── */
    @keyframes logoScroll { 0% { transform:translateX(0); } 100% { transform:translateX(-25%); } }
    .logo-strip { overflow:hidden; white-space:nowrap; background:var(--white); border-bottom:1px solid var(--mid); padding:24px 0; }
    .logo-track { display:inline-flex; gap:40px; align-items:center; animation:logoScroll 36s linear infinite; }
    .logo-track:hover { animation-play-state:paused; }
    .logo-badge { display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; width:64px; height:64px; border-radius:50%; background:var(--lgray); border:1px solid var(--mid); transition:transform 0.2s, box-shadow 0.2s; text-decoration:none; }
    .logo-badge:hover { transform:scale(1.08); box-shadow:0 4px 16px rgba(0,0,0,0.12); }
    .logo-badge .li { display:block; width:34px; height:34px; -webkit-mask-size:contain; mask-size:contain; -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat; -webkit-mask-position:center; mask-position:center; }
  
/* ── Article Modals ── */
.modal-overlay {
  display:none;position:fixed;inset:0;z-index:9999;
  background:rgba(0,0,0,0.65);overflow-y:auto;padding:40px 20px;
}
.modal-overlay.open { display:flex;align-items:flex-start;justify-content:center; }
.modal-box {
  background:var(--white);border-radius:12px;max-width:800px;width:100%;
  padding:56px 64px;position:relative;margin:auto;
}
.modal-close {
  position:absolute;top:20px;right:24px;background:none;border:none;
  font-size:1.4rem;cursor:pointer;color:var(--gray);line-height:1;padding:4px 8px;
}
.modal-close:hover { color:var(--dark); }
.modal-article-eyebrow {
  font-size:0.7rem;font-weight:700;letter-spacing:0.1em;
  text-transform:uppercase;color:var(--orange);margin-bottom:14px;
}
.modal-title { font-size:1.9rem;color:var(--dark);margin-bottom:8px;line-height:1.2; }
.modal-meta { font-size:0.78rem;color:var(--gray);margin-bottom:36px; }
.modal-body p { color:var(--gray);line-height:1.85;margin-bottom:18px;font-size:0.95rem; }
.modal-body h2 { color:var(--dark);font-size:1.2rem;margin:36px 0 12px;font-weight:700; }
.modal-body ul { color:var(--gray);line-height:1.8;margin-bottom:18px;padding-left:24px;font-size:0.95rem; }
.modal-body li { margin-bottom:10px; }
.modal-body strong { color:var(--dark); }
.modal-footer { margin-top:40px;padding-top:24px;border-top:1px solid var(--mid);font-size:0.85rem;color:var(--gray);font-style:italic; }
@media(max-width:768px){
  .modal-box{padding:40px 24px;}
  .modal-title{font-size:1.4rem;}
}


    /* ══ RESPONSIVE: Tablet & Mobile ══════════════════════════ */

    /* Hero two-column operator section */
    @media (max-width: 860px) {
      .hero-content { max-width: 100% !important; }
      .hero-content > div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
      }
    }

    /* Why Techquity: 2fr 1fr grid */
    @media (max-width: 860px) {
      div[style*="grid-template-columns:2fr 1fr"] {
        display: block !important;
      }
      div[style*="grid-template-columns:2fr 1fr"] > div {
        margin-bottom: 32px;
      }
    }

    /* Home: 1fr 1fr grids */
    @media (max-width: 768px) {
      div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
      }
    }

    /* Profile pages: 260px sidebar */
    @media (max-width: 768px) {
      div[style*="grid-template-columns:260px 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
      }
      div[style*="grid-template-columns:260px 1fr"] > div:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    }

    /* Phase strip */
    @media (max-width: 768px) {
      /* phase handled by main breakpoints */
    }

    /* Form grid */
    @media (max-width: 600px) {
      .form-grid { grid-template-columns: 1fr !important; }
    }

    /* Footer */
    @media (max-width: 720px) {
      .footer-main { grid-template-columns: 1fr !important; gap: 32px !important; }
    }

    /* Featured article block */
    @media (max-width: 600px) {
      div[style*="background:var(--blue)"][style*="border-radius:12px"] {
        padding: 32px 24px !important;
      }
    }

    /* Header on mobile */
    @media (max-width: 768px) {
      .site-header { padding: 0 20px; }
    }

    /* Hero padding on mobile */
    @media (max-width: 600px) {
      .hero .container {
        padding-top: 64px !important;
        padding-bottom: 64px !important;
      }
      .hero h1 { font-size: 1.9rem !important; }
    }

    /* Testimonial grid */
    @media (max-width: 768px) {
      .grid-3 { grid-template-columns: 1fr !important; }
    }
    @media (max-width: 600px) {
      .grid-2 { grid-template-columns: 1fr !important; }
      .grid-4 { grid-template-columns: 1fr 1fr !important; }
    }

    /* Case study cards: full-width stack already, just padding */
    @media (max-width: 600px) {
      .case-card-header { padding: 20px 20px 12px; }
      .case-card-body { padding: 0 20px 20px; }
    }

    /* Logo badge strip */
    @media (max-width: 600px) {
      .logo-badge { width: 52px !important; height: 52px !important; }
      .logo-badge .li { width: 28px !important; height: 28px !important; }
      .logo-track { gap: 24px; }
    }

    /* Partner card grid: 2 cols on tablet, 1 on mobile */
    @media (max-width: 768px) {
      #partners-grid.grid-4,
      #leadership-grid.grid-4 {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (max-width: 480px) {
      #partners-grid.grid-4,
      #leadership-grid.grid-4 {
        grid-template-columns: 1fr;
      }
    }

    /* Profile page hero section */
    @media (max-width: 600px) {
      div[style*="padding:48px 0;border-bottom:3px solid var(--orange)"] {
        padding: 32px 0 !important;
      }
    }

    /* Hero operator statement: single column on tablet */
    @media (max-width: 860px) {
      .hero-content div[style*="display:grid;grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
      }
    }

    /* General section padding reduction on mobile */
    @media (max-width: 600px) {
      section { padding: 48px 0 !important; }
      .bg-lgray section, section.bg-lgray { padding: 48px 0 !important; }
      h1 { font-size: clamp(1.75rem, 6vw, 2.5rem) !important; }
      h2 { font-size: clamp(1.4rem, 5vw, 2rem) !important; }
      .lead { font-size: 1rem !important; }
    }

    /* Contact form */
    @media (max-width: 600px) {
      .contact-form { padding: 24px !important; }
      .contact-hero .container { padding: 0 20px !important; }
    }

    /* CTA sections */
    @media (max-width: 600px) {
      .bg-dark { padding: 48px 0 !important; }
      .bg-dark h2 { font-size: 1.5rem !important; }
    }