  :root {
    --bg: #fafafa;
    --bg-2: #f0f0f0;
    --bg-3: #e8e8e8;
    --fg: #1a1a1a;
    --fg-2: #4a4a4a;
    --fg-mute: #888888;
    --rule: #e0e0e0;
    --accent: #0066cc;
    --accent-light: #3399ff;
    --accent-dark: #004499;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  main { position: relative; z-index: 1; }

  /* ===== HEADER ===== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 36px;
    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
  }

  .header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  }

  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .header-logo img {
    height: 60px;
    width: auto;
  }

  .header-logo span {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--fg);
    letter-spacing: -0.02em;
  }

  .header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .header-nav a {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--fg-2);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
  }

  .header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
  }

  .header-nav a:hover {
    color: var(--accent);
  }

  .header-nav a:hover::after {
    width: 100%;
  }

  .header-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--accent);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
  }

  .header-btn:hover {
    background: transparent;
    color: var(--accent);
  }

  /* ===== HAMBURGER MENU ===== */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 101;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg);
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    display: flex;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .mobile-nav.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav a {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--fg);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
  }

  .mobile-nav.active a {
    opacity: 1;
  }

  /* .mobile-nav.active a:nth-child(1) { transition-delay: 0.1s; }
  .mobile-nav.active a:nth-child(2) { transition-delay: 0.15s; }
  .mobile-nav.active a:nth-child(3) { transition-delay: 0.2s; }
  .mobile-nav.active a:nth-child(4) { transition-delay: 0.25s; }
  .mobile-nav.active a:nth-child(5) { transition-delay: 0.3s; } */

  .mobile-nav .mobile-btn {
    margin-top: 16px;
    font-size: 16px;
    padding: 14px 32px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    border: 2px solid var(--accent);
  }

  .mobile-nav .mobile-btn:hover {
    background: transparent;
    color: var(--accent);
  }
  
  .mobile-btn:focus-visible{
    outline: none;
  }

  /* .mobile-nav.active a:nth-child(6) { transition-delay: 0.35s; } */

  .mobile-nav a:hover {
    color: var(--accent);
  }

  @media (max-width: 900px) {
    .hamburger {
      display: flex;
    }
    .header .header-btn {
      display: none;
    }
  }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    padding: 140px 36px 100px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  }

  .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .hero-content {
    position: relative;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50px;
    margin-bottom: 24px;
  }

  .hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }

  .hero-badge span {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .hero-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 8vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.03em;
        /* color: var(--accent); */
    color: var(--fg);
    margin-bottom: 24px;
  }

  .hero-title .highlight {
    color: var(--accent);
        /* color: var(--fg); */
    /* font-family: 'Instrument Serif', serif; */
        font-family: 'Bricolage Grotesque', sans-serif;
    font-style: normal;
    font-weight: 400;
  }

  .hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--fg-2);
    margin-bottom: 40px;
    /* max-width: 500px; */
  }

  .hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--rule);
  }

  .stat-item {
    text-align: left;
  }

  .stat-value {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
  }

  .stat-label {
    font-size: 14px;
    color: var(--fg-mute);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .hero-image {
    position: relative;
  }

  .hero-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  }

  .hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 8px;
    opacity: 0.1;
    z-index: -1;
  }

  .hero-image-decoration-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 180px;
    height: 180px;
    border: 2px solid var(--accent);
    border-radius: 8px;
    opacity: 0.2;
    z-index: -1;
  }

  /* ===== MARQUEE ===== */
  .marquee {
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 24px 0;
    overflow: hidden;
    background: var(--bg-2);
  }

  .marquee-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: scroll 10s linear infinite;
    font-family: 'Instrument Serif', serif;
    /* font-style: italic; */
    font-weight: 400;
    font-size: clamp(1.4rem, 2.6vw, 2.2rem);
    color: var(--fg);
  }

  .marquee-track span:nth-child(even) {
    color: var(--accent);
  }

  .marquee-track .star {
    color: var(--accent);
    font-style: normal;
    font-family: 'Manrope', sans-serif;
  }

  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ===== ABOUT ===== */
  .about {
    padding: 120px 36px;
    background: #fff;
  }

  .about-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 32px;
  }

  .section-label .num {
    color: var(--fg-mute);
    font-weight: 500;
    letter-spacing: 0.08em;
  }

  .section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
  }

  .about-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
    align-items: end;
  }

  .about-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(28px, 5.5vw, 57px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--fg);
  }

  .about-title em {
    /* font-family: 'Instrument Serif', serif; */
        font-family: 'Bricolage Grotesque', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: var(--accent);
  }

  .about-intro {
    font-size: 18px;
    line-height: 1.55;
    color: var(--fg-2);
    max-width: 480px;
  }

  .about-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .about-body p {
    font-size: 18px;
    line-height: 1.65;
    color: var(--fg-2);
    margin-bottom: 22px;
  }

  .about-body p:last-child {
    margin-bottom: 0;
  }

  .about-body p strong {
    color: var(--fg);
    font-weight: 600;
  }

  /* ===== EXPERIENCE ===== */
  .experience {
    padding: 120px 36px;
    background: var(--bg-2);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .experience-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .exp-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
  }

  .exp-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(28px, 5.5vw, 56px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--fg);
    max-width: 800px;
  }

  .exp-title em {
    /* font-family: 'Instrument Serif', serif; */
        font-family: 'Bricolage Grotesque', sans-serif;
    font-style: normal;
    color: var(--accent);
    font-weight: 400;
  }

  .exp-card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 50px;
  }

  .exp-card-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 40px;
    align-items: end;
  }

  .exp-role {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--fg);
    margin-bottom: 4px;
  }

  .exp-org {
    font-size: 16px;
    font-weight: 500;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .exp-org::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
  }

  .exp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
  }

  .exp-tag {
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    background: var(--bg-2);
    border: 1px solid var(--rule);
    border-radius: 999px;
    color: var(--fg-2);
  }

  .exp-list {
    list-style: none;
    counter-reset: ach;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 60px;
  }

  .exp-list li {
    counter-increment: ach;
    padding-left: 50px;
    position: relative;
    font-size: 16px;
    line-height: 1.55;
    color: var(--fg-2);
  }

  .exp-list li::before {
    content: counter(ach, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(0, 102, 204, 0.1);
    padding: 4px 8px;
    border-radius: 999px;
    letter-spacing: 0.04em;
  }

  .exp-list li strong {
    color: var(--fg);
    font-weight: 600;
  }

  /* ===== DOCTRINE ===== */
  .doctrine {
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    background: #fff;
    position: relative;
    overflow: hidden;
  }

  .doctrine-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 120px 36px;
  }

  .doctrine-label {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
  }

  /* .doctrine-label .line {
    height: 1px;
    background: var(--fg-mute);
    opacity: 0.4;
  } */

  .doctrine-label .text {
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
  }

  .quote-1 {
    /* font-family: 'Instrument Serif', serif; */
        font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(40px, 8vw, 90px);
    line-height: 0.95;
        color: var(--accent);
    letter-spacing: -0.025em;
        font-style: italic;
    color: var(--fg);
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }

  .quote-1 .mark {
    display: inline-block;
    /* background: var(--accent); */
    /* color: #fff; */
        color: var(--accent);
    /* padding: 0 0.18em; */
    font-style: italic;
    font-weight: 400;
    /* transform: rotate(-1.5deg); */
    /* margin: 0 0.06em; */
    /* padding-bottom: 7px; */
  }

  .quote-1 .mark.alt {
    /* background: transparent; */
    /* color: var(--accent); */
    /* border-bottom: 4px solid var(--accent); */
    /* padding: 0; */
        font-style: italic;
    transform: none;
  }

  /* ===== CAPABILITIES ===== */
  .capabilities {
    padding: 120px 36px;
    background: var(--bg-2);
    border-bottom: 1px solid var(--rule);
  }

  .capabilities-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .capabilities-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 70px;
    align-items: end;
  }

  .cap-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(28px, 5.5vw, 56px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--fg);
  }

  .cap-title em {
    /* font-family: 'Instrument Serif', serif; */
        font-family: 'Bricolage Grotesque', sans-serif;
    font-style: normal;
    color: var(--accent);
    font-weight: 400;
  }

  .cap-intro {
    font-size: 17px;
    color: var(--fg-2);
    line-height: 1.55;
    max-width: 460px;
  }

  .cap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
    border-radius: 8px;
  }

  .cap-cell {
    padding: 36px 30px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    background: #fff;
    transition: background 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 200px;
    position: relative;
  }

  .cap-cell:hover {
    background: var(--bg);
  }

  .cap-cell:hover .cap-num {
    color: var(--accent);
  }

  /* Corner border-radius for grid */
  .cap-cell:first-child {
    border-top-left-radius: 8px;
  }
  .cap-cell:nth-child(4) {
    border-top-right-radius: 8px;
  }
  .cap-cell:nth-child(5) {
    border-bottom-left-radius: 8px;
  }
  .cap-cell:last-child {
    border-bottom-right-radius: 8px;
  }

  /* .cap-cell:hover .cap-arrow {
    opacity: 1;
    transform: translate(0, 0);
  } */

  .cap-num {
    font-size: 13px;
    font-weight: 600;
    color: var(--fg-mute);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
  }

  .cap-name {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.018em;
    color: var(--fg);
    flex: 1;
  }

  .cap-desc {
    font-size: 13px;
    color: var(--fg-2);
    line-height: 1.45;
  }

  /* .cap-arrow {
    position: absolute;
    top: 32px;
    right: 28px;
    font-size: 16px;
    color: var(--accent);
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: all 0.3s ease;
  } */

  /* ===== PERSONAL ===== */
  .personal {
    padding: 120px 36px;
    background: #fff;
    border-bottom: 1px solid var(--rule);
  }

  .personal-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .personal-head {
    margin-bottom: 60px;
  }

  .personal-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(28px, 5.5vw, 56px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--fg);
    max-width: 800px;
  }

  .personal-title em {
    /* font-family: 'Instrument Serif', serif; */
        font-family: 'Bricolage Grotesque', sans-serif;
    font-style: normal;
    color: var(--accent);
    font-weight: 400;
  }

  .personal-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .panel {
    border: 1px solid var(--rule);
    padding: 50px 40px;
    position: relative;
    background: #fff;
    transition: border-color 0.4s ease;
    border-radius: 8px;
  }

  .panel:hover {
    border-color: var(--accent);
  }

  .panel-tag {
    position: absolute;
    top: -1px;
    left: 30px;
    background: #fff;
    padding: 0 14px;
    transform: translateY(-50%);
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
  }

  .panel h3 {
    /* font-family: 'Instrument Serif', serif; */
        font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--fg);
  }

  .panel p {
    font-size: 18px;
    line-height: 1.55;
    color: var(--fg-2);
  }

  .panel ul {
    list-style: none;
    margin-top: 12px;
  }

  .panel ul li {
    padding: 12px 0;
    font-size: 18px;
    color: var(--fg-2);
    border-bottom: 1px dotted var(--rule);
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 14px;
  }

  .panel ul li:last-child {
    border-bottom: none;
  }

  .panel ul li::before {
    content: 'â†’';
    color: var(--accent);
    font-family: 'Manrope', sans-serif;
  }

  /* ===== ENGAGEMENTS ===== */
  .engagements {
    padding: 120px 36px;
    background: var(--bg-2);
    border-bottom: 1px solid var(--rule);
  }

  .engagements-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .engagements-head {
    text-align: center;
    margin-bottom: 60px;
  }

  .engagements-eyebrow {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
  }

  .engagements-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 5.5vw, 56px);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    color: var(--fg);
  }

  .engagements-title em {
    /* font-family: 'Instrument Serif', serif; */
    font-style: normal;
        font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 400;
    color: var(--accent);
  }

  .engagements-intro {
    color: var(--fg-2);
    font-size: 18px;
    line-height: 1.55;
    max-width: 540px;
    margin: 0 auto;
  }

  .engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  a.engagement-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }

  .engagement-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    padding: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid var(--rule);
  }

  .engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }

  .engagement-card .visual {
    height: 200px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
  }

  .engagement-card .visual img {
    max-width: 140px;
    max-height: 140px;
    object-fit: contain;
  }

    .engagement-card:nth-child(3) .visual img {
      border-radius: 50%;
  }

      .engagement-card:nth-child(1) .visual img {
    max-width: 100px;
    max-height: 100px;
    }

    
      .engagement-card:nth-child(3) .visual img {
    max-width: 100px;
    max-height: 100px;
    }

  .engagement-card.e1 .visual {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
  }

  .engagement-card.e2 .visual {
    background: linear-gradient(135deg, #64748b, #475569);
    color: #fff;
  }

  .engagement-card.e3 .visual {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
  }

  .engagement-card .copy {
    padding: 24px 8px 8px;
  }

  .engagement-card .copy h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: var(--fg);
  }

  .engagement-card .copy p {
    font-size: 15px;
    color: var(--fg-2);
    line-height: 1.55;
  }

  .engagement-card .corner-arr {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    display: grid;
    place-items: center;
    z-index: 3;
    font-weight: 600;
    color: var(--fg);
    transition: all 0.25s;
  }

  .engagement-card:hover .corner-arr {
    background: var(--accent);
    color: #fff;
    transform: rotate(-45deg);
  }

  /* ===== CTA / CONTACT ===== */
  .cta-section {
    text-align: center;
    padding: 140px 36px;
    background: #fff;
    /* border-bottom: 1px solid var(--rule); */
  }

  .cta-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .cta-section h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(36px, 7vw, 64px);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: var(--fg);
    margin-bottom: 30px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-section h2 em {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-style: normal;
    color: var(--accent);
    font-weight: 400;
  }

  .cta-sub {
    font-size: 19px;
    color: var(--fg-2);
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.55;
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 36px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .cta-btn:hover {
    background: var(--accent-dark);
    gap: 20px;
  }

  .cta-btn .arrow {
    transition: transform 0.3s ease;
  }

  .cta-btn:hover .arrow {
    transform: translateX(4px);
  }

  .cta-meta {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--fg-mute);
  }

  .cta-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .cta-meta-item .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
  }

  /* ===== FOOTER ===== */
  footer {
    padding: 80px 36px 40px;
    text-align: center;
    background: #fff;
    border-top: 1px solid var(--rule);
  }

  .footer-logo {
    margin-bottom: 30px;
  }

  .footer-logo img {
    height: 80px;
    width: auto;
  }

  .footer-logo span {
    display: block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: var(--fg);
    letter-spacing: -0.02em;
    /* margin-top: 10px; */
  }

  .footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
  }

  .footer-nav a {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--fg-2);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-nav a:hover {
    color: var(--accent);
  }

  .footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
  }

  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg);
    border-radius: 8px;
    color: var(--fg-2);
    transition: all 0.3s ease;
  }

  .footer-social a:hover {
    background: var(--accent);
    color: #fff;
  }

  .footer-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--rule);
    font-size: 14px;
    color: var(--fg-mute);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .hero-main {
      grid-template-columns: 1fr;
      gap: 60px;
    }
    .hero-image {
      max-width: 450px;
      margin: 0 auto;
    }
  }

  @media (max-width: 900px) {
    .header {
      padding: 15px 20px;
    }
    .header-nav {
      display: none;
    }
    .hero { padding: 120px 20px 80px; }
    .hero-stats { flex-direction: column; gap: 24px; }
    .marquee-track { font-size: 1.2rem; }
    .about { padding: 80px 20px; }
    .about-head { grid-template-columns: 1fr; gap: 24px; }
    .about-body { grid-template-columns: 1fr; gap: 32px; }
    .experience { padding: 80px 20px; }
    .doctrine-inner { padding: 60px 20px; }
    .doctrine-label { grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
    .quote-1 { font-size: clamp(40px, 7vw, 80px);  }
    .capabilities { padding: 80px 20px; }
    .capabilities-head { grid-template-columns: 1fr; gap: 24px; }
    .cap-grid { grid-template-columns: 1fr 1fr; }
    .personal { padding: 80px 20px; }
    .personal-split { grid-template-columns: 1fr; gap: 40px; }
    .panel { padding: 40px 30px; }
    .engagements { padding: 80px 20px; }
    .engagements-grid { grid-template-columns: 1fr; gap: 20px; }
    .engagement-card { min-height: auto; }
    .cta-section { padding: 100px 20px; }
    .cta-meta { gap: 24px; }
    .exp-card { padding: 32px 24px; }
    .exp-card-head { grid-template-columns: 1fr; gap: 20px; }
    .exp-tags { justify-content: flex-start; }
    .exp-list { grid-template-columns: 1fr; gap: 20px; }
    footer { padding: 60px 20px 30px; }
    .footer-nav { flex-wrap: wrap; gap: 20px 30px; }
  }

  @media (max-width: 540px) {
    .footer-nav { gap: 15px; }
    .cap-grid { grid-template-columns: 1fr; }

    .hero-description{
      font-size: 18px;
      line-height: 1.4;
    }
    
      .panel h3 {
        font-size: 20px;
      }

      .exp-role{
        font-size: 24px;
      }
    
    .about-intro, .about-body p, .cap-intro, .panel p, .engagements-intro, .cta-sub{
      font-size: 18px;
      line-height: 1.4;
    }

    .exp-list li{
      line-height: 1.4;
    }

    /* Reset desktop corner radius */
    .cap-cell:nth-child(4) { border-top-right-radius: 0; }
    .cap-cell:nth-child(5) { border-bottom-left-radius: 0; }

    /* Mobile single-column corners */
    .cap-cell:first-child {
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
    }
    .cap-cell:last-child {
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }
  }
