:root {
    --ink: #1f2937;
    --ink-2: #111827;
    --slate: #374151;
    --slate-2: #6b7280;
    --blue: #4c8bae;
    --cyan: #1eafe0;
    --paper: #f5f7fa;
    --paper-2: #eef2f7;
    --line: rgba(31, 41, 55, 0.1);
    --line-dark: rgba(255, 255, 255, 0.15);
    --white: #ffffff;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body { overflow-x: hidden !important; max-width: 100% !important; width: 100% !important; }
  html { scroll-behavior: smooth; }
  body.mrp-site-page, body.mrp-vacancy-page {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }

  .wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
  }

  /* ---------- NAV ---------- */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(1.4) blur(14px);
    -webkit-backdrop-filter: saturate(1.4) blur(14px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
  }
  .nav-logo img {
    height: 48px;
    width: auto;
  }
  .nav-menu {
    display: flex;
    gap: 38px;
    align-items: center;
  }
  .nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--slate);
    letter-spacing: 0.01em;
    transition: color 0.15s ease;
  }
  .nav-menu a:hover { color: var(--ink); }
  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: var(--white) !important;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
    transition: background 0.15s ease;
  }
  .nav-cta:hover { background: var(--cyan); color: var(--ink) !important; }
  .nav-cta .arrow { font-size: 16px; line-height: 1; }

  /* ---------- HERO ---------- */
  .hero {
    background: var(--ink);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 85% 15%, rgba(30, 175, 224, 0.32), transparent 55%),
      radial-gradient(ellipse at 5% 95%, rgba(76, 139, 174, 0.42), transparent 50%);
    pointer-events: none;
  }
  .hero-inner {
    position: relative;
    padding-top: 110px;
    padding-bottom: 120px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 80px;
    align-items: end;
  }
  .hero-top {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
  }
  .pill {
    border: 1.5px solid rgba(255, 255, 255, 0.32);
    padding: 16px 30px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.92);
  }
  .pill .dot {
    width: 10px; height: 10px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 14px var(--cyan);
  }
  .hero-loc {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
  }
  .hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 124px;
    line-height: 0.94;
    letter-spacing: -0.035em;
    color: var(--white);
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 500;
    color: var(--cyan);
  }
  .hero-side {
    padding-bottom: 8px;
  }
  .hero-sub {
    font-size: 24px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    max-width: 460px;
  }
  .hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
    border: none;
  }
  .btn-primary {
    background: var(--cyan);
    color: var(--ink);
    box-shadow: 0 0 0 0 rgba(30, 175, 224, 0);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    background: #4ec3e8;
    box-shadow: 0 0 0 6px rgba(30, 175, 224, 0.18), 0 12px 36px -6px rgba(30, 175, 224, 0.65), 0 0 60px rgba(30, 175, 224, 0.4);
  }
  .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
  }
  .btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-2px);
    box-shadow: 0 0 0 4px rgba(30, 175, 224, 0.14), 0 0 50px rgba(30, 175, 224, 0.35);
  }
  /* Universal button glow for any rounded CTA */
  .nav-cta, .aud-cta, .submit, .bf-read, .sf-cta, .view-all, .apply, .contacts a {
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.3s ease, border-color 0.2s ease;
  }
  .nav-cta:hover, .submit:hover, .sf-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 5px rgba(30, 175, 224, 0.16), 0 10px 36px -4px rgba(30, 175, 224, 0.55), 0 0 50px rgba(30, 175, 224, 0.35);
  }

  .hero-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 56px;
    margin-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .hero-bottom .scroll-cue {
    color: var(--cyan);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
  }
  .hero-bottom .scroll-cue .arrow-circle {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--cyan);
    display: grid;
    place-items: center;
    font-size: 16px;
  }

  /* ---------- SECTION SHELL ---------- */
  section.band { padding: 130px 0; position: relative; }
  .kicker {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--slate);
    opacity: 0.55;
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }
  .kicker .index { display: none; }
  .kicker .index-hidden-keep-spec {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--blue);
    opacity: 1;
    letter-spacing: 0.04em;
    text-transform: none;
    font-size: 16px;
  }
  .title {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 84px;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-top: 28px;
    text-wrap: balance;
  }
  .title em {
    font-style: italic;
    font-weight: 500;
    color: var(--blue);
  }
  .lead {
    font-size: 20px;
    line-height: 1.55;
    color: var(--slate);
    max-width: 720px;
    margin-top: 28px;
    font-weight: 400;
  }

  /* ---------- APPROACH (stats) ---------- */
  .approach { background: var(--paper); }
  .approach .title { font-size: 76px; }
  .stats {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .stat {
    background: var(--white);
    padding: 44px 36px 40px;
    border-radius: 6px;
    border-top: 3px solid var(--cyan);
    min-height: 240px;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    overflow: hidden;
  }
  .stat .label {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-wrap: break-word !important;
    word-break: normal !important;
    display: block !important;
  }
  .stat .num {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }
  .stat .num {
    font-family: 'Fraunces', serif;
    font-size: 84px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .stat .num .plus { color: var(--blue); }
  .stat .label {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.4;
    color: var(--slate);
    font-weight: 500;
  }

  /* ---------- HOW WE WORK (numbered list) ---------- */
  .how { background: var(--white); }
  .how .head-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .how .head-aside {
    font-size: 17px;
    color: var(--slate);
    line-height: 1.55;
    padding-bottom: 10px;
    max-width: 460px;
  }
  .how .grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 56px;
  }
  .do-item {
    display: flex;
    gap: 26px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
  }
  .do-item .n {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-style: italic;
    font-weight: 500;
    color: var(--blue);
    min-width: 48px;
    line-height: 1.3;
  }
  .do-item .txt {
    font-size: 19px;
    line-height: 1.45;
    color: var(--ink);
    font-weight: 500;
    text-wrap: pretty;
  }

  /* ---------- AUDIENCES (two-up dark) ---------- */
  .audiences {
    background: var(--ink);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .audiences::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 80% 10%, rgba(30, 175, 224, 0.22), transparent 55%);
    pointer-events: none;
  }
  .audiences > .wrap { position: relative; }
  .audiences .title { color: var(--white); }
  .audiences .title em { color: var(--cyan); }
  .audiences .kicker { color: rgba(255, 255, 255, 0.55); }
  .audiences .kicker .index { color: var(--cyan); }
  .audiences .lead { color: rgba(255, 255, 255, 0.72); }

  .aud-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
  }
  .aud-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.03);
    padding: 44px 40px 40px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
  }
  .aud-card .tag {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    font-weight: 700;
  }
  .aud-card h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 44px;
    line-height: 1.05;
    margin-top: 16px;
    letter-spacing: -0.025em;
    color: var(--white);
  }
  .aud-card h3 em { font-style: italic; font-weight: 500; color: var(--cyan); }
  .aud-card .desc {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
  }
  .aud-list {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .aud-list li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.45;
  }
  .aud-list li .check {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--cyan);
    color: var(--ink);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .aud-card .aud-cta {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--cyan);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    align-self: stretch;
  }
  .aud-card .aud-list { margin-bottom: 36px; }

  /* ---------- SECTORS ---------- */
  .sectors { background: var(--paper); }
  .sectors .head-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .sectors .head-aside {
    font-size: 17px;
    color: var(--slate);
    line-height: 1.55;
    max-width: 460px;
    padding-bottom: 10px;
  }
  .sector-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
  }
  .sector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0;
    border-top: 1px solid rgba(31, 41, 55, 0.14);
    transition: padding-left 0.2s ease;
    cursor: pointer;
  }
  .sector:hover { padding-left: 12px; }
  .sector:last-child { border-bottom: 1px solid rgba(31, 41, 55, 0.14); }
  .sector .name {
    font-family: 'Fraunces', serif;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
  }
  .sector .meta {
    display: flex;
    align-items: center;
    gap: 26px;
  }
  .sector .meta .num {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.05em;
  }
  .sector .meta .count {
    font-size: 14px;
    color: var(--slate-2);
    font-weight: 500;
  }
  .sector .meta .arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 16px;
    transition: transform 0.2s ease;
  }
  .sector:hover .meta .arrow { transform: translateX(4px); background: var(--cyan); color: var(--ink); }

  /* ---------- WHY MRP (blue gradient) ---------- */
  .why {
    background: linear-gradient(135deg, var(--blue) 0%, #3a6f8e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .why::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 92% 8%, rgba(30, 175, 224, 0.45), transparent 50%);
    pointer-events: none;
  }
  .why > .wrap { position: relative; }
  .why .kicker { color: rgba(255, 255, 255, 0.7); }
  .why .kicker .index { color: var(--cyan); }
  .why .title { color: var(--white); }
  .why .title em { color: var(--cyan); }
  .why .pull {
    font-size: 20px;
    line-height: 1.6;
    margin-top: 30px;
    max-width: 780px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 400;
  }
  .why .pull span { color: var(--cyan); font-style: italic; }

  .why-stats {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 36px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .wn .wn-num {
    font-family: 'Fraunces', serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    color: var(--white);
    letter-spacing: -0.02em;
  }
  .wn .wn-num em { color: var(--cyan); font-style: italic; font-weight: 500; }
  .wn .wn-lbl {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
  }

  .perks {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 56px;
  }
  .perk {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 19px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
  }
  .perk .check {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--cyan);
    color: var(--ink);
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 800;
    flex-shrink: 0;
  }

  /* ---------- JOBS ---------- */
  .jobs { background: var(--white); }
  .jobs .head-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
  }
  .jobs .head-row .view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--blue);
    padding-bottom: 12px;
  }
  .jobs-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
  .job {
    background: var(--paper);
    padding: 32px 30px 28px;
    border-radius: 6px;
    border-left: 3px solid var(--cyan);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .job:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(31, 41, 55, 0.08); }
  .job .job-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
  }
  .job .job-meta .new {
    background: var(--cyan);
    color: var(--ink);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .job h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-top: 4px;
  }
  .job .job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
  }
  .job .job-tags span {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--white);
    color: var(--slate);
    border: 1px solid var(--line);
    font-weight: 500;
  }
  .job .job-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    margin-top: auto;
  }
  .job .job-foot .date {
    font-size: 13px;
    color: var(--slate-2);
    font-weight: 500;
  }
  .job .job-foot .apply {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  /* ---------- TESTIMONIALS ---------- */
  .testimonials { background: var(--paper); }
  .quote-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
  }
  .quote {
    background: var(--white);
    padding: 50px 44px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .quote .mark {
    font-family: 'Fraunces', serif;
    font-size: 100px;
    font-weight: 500;
    line-height: 0.8;
    color: var(--cyan);
    height: 50px;
    background: transparent !important;
    background-color: transparent !important;
    padding: 0 !important;
  }
  .quote p {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.3;
    color: var(--ink);
    letter-spacing: -0.015em;
    margin-top: 24px;
    text-wrap: pretty;
  }
  .quote.small p { font-size: 22px; }
  .quote .who {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .quote .who .name {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0;
  }
  .quote .who .role {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--slate-2);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  /* ---------- CTA / SANJAY SIGN-OFF ---------- */
  .cta {
    background: var(--ink);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 18% 85%, rgba(30, 175, 224, 0.3), transparent 50%),
      radial-gradient(circle at 92% 15%, rgba(76, 139, 174, 0.42), transparent 55%);
    pointer-events: none;
  }
  .cta > .wrap { position: relative; }
  .cta-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: center;
  }
  .cta .kicker { color: rgba(255, 255, 255, 0.6); }
  .cta .kicker .index { color: var(--cyan); }
  .cta-headline {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin-top: 30px;
    color: var(--white);
  }
  .cta-headline em { font-style: italic; font-weight: 500; color: var(--cyan); }
  .cta-sub {
    margin-top: 26px;
    font-size: 19px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
  }
  .contacts {
    margin-top: 42px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .contacts a {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
    font-size: 19px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 14px;
    width: fit-content;
    transition: color 0.15s ease;
  }
  .contacts a:hover { color: var(--cyan); }
  .contacts .ico {
    width: 20px; height: 20px;
    color: var(--cyan);
    flex-shrink: 0;
  }

  .portrait-card {
    text-align: center;
  }
  .portrait-card img {
    width: 320px; height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--cyan);
    background: #fff;
    margin: 0 auto;
  }
  .portrait-name {
    margin-top: 22px;
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
  }
  .portrait-title {
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--ink-2);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .foot-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
  }
  .foot-logo {
    display: inline-block;
    margin-bottom: 22px;
  }
  .foot-logo img { height: 56px; display: block; filter: none; }
  .foot-blurb {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
  }
  .foot-col h5 {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 22px;
  }
  .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .foot-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.15s ease;
  }
  .foot-col a:hover { color: var(--cyan); }
  .foot-col li { color: rgba(255, 255, 255, 0.72); }
  .foot-bottom .web { display: none; }
  /* ---------- ELEGANT ANIMATIONS ---------- */
  @keyframes mrp-shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
  }
  @keyframes mrp-rise {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes mrp-glow-pulse {
    0%, 100% { text-shadow: 0 0 0 rgba(30, 175, 224, 0); }
    50%      { text-shadow: 0 0 22px rgba(30, 175, 224, 0.55); }
  }
  /* Animated gradient on every italic accent word */
  h1 em, h2 em, .title em, .cta-headline em, .page-hero h1 em, .hero h1 em, .sector-feature .sf-name em {
    background: linear-gradient(90deg,
      var(--cyan) 0%,
      #7fe0ff 25%,
      var(--cyan) 50%,
      #4ec3e8 75%,
      var(--cyan) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: mrp-shimmer 6s ease-in-out infinite;
    display: inline-block;
    padding-left: 0.04em;
    padding-right: 0.16em;
  }
  /* On dark sections keep visibility but still shimmer */
  .why .title em, .audiences .title em, .cta-headline em, .page-hero h1 em, .hero h1 em, .newsletter .title em {
    background: linear-gradient(90deg,
      var(--cyan) 0%,
      #b8eeff 35%,
      var(--cyan) 50%,
      #4ec3e8 65%,
      var(--cyan) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: mrp-shimmer 7s ease-in-out infinite;
  }
  /* Reveal-on-scroll for sections, kickers, titles, leads, cards */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
  .reveal.is-in { opacity: 1; transform: translateY(0); }
  /* CSS-only scroll-driven reveals (modern browsers) */
  @supports (animation-timeline: view()) {
    section.band > .wrap > .kicker,
    section.band > .wrap > .title,
    section.band > .wrap > .lead,
    section.band > .wrap > .head-row,
    section.band .stats,
    section.band .aud-grid,
    section.band .grid,
    section.band .jobs-grid,
    section.band .jobs-list,
    section.band .blog-grid,
    section.band .why-stats,
    section.band .perks,
    section.band .quote-grid,
    section.band .contact-grid,
    section.band .faq-list,
    section.band .sector-list,
    section.band .sector-feature,
    section.band .coming-soon,
    .blog-featured {
      animation: mrp-rise linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 25%;
    }
  }
  /* Subtle floating cyan dot on hero pill */
  .hero .pill .dot {
    animation: mrp-glow-pulse 2.4s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(30, 175, 224, 0.45);
  }
  /* Hover lift on cards */
  .job, .aud-card, .stat, .wn, .post-card, .sector, .quote, .faq-item, .job-row {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
  }
  .job:hover, .aud-card:hover, .post-card:hover, .sector:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px -20px rgba(30, 175, 224, 0.25), 0 8px 24px -12px rgba(0,0,0,0.12);
  }
  /* Nav link underline reveal */
  .nav-menu a:not(.nav-cta) { position: relative; }
  .nav-menu a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 1.5px;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-menu a:not(.nav-cta):hover::after { transform: scaleX(1); }
  .foot-bottom {
    justify-content: center !important;
    color: var(--cyan) !important;
    letter-spacing: 0.06em;
    font-weight: 600;
    text-align: center;
    margin-top: 60px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
  }
  .foot-bottom .web {
    color: var(--cyan);
    letter-spacing: 0.06em;
    font-weight: 600;
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 960px) {
    .wrap { padding: 0 28px; }
    .nav-menu a:not(.nav-cta) { display: none; }
    .hero-inner { grid-template-columns: 1fr; gap: 50px; padding-top: 80px; padding-bottom: 90px; }
    .hero h1 { font-size: 72px; }
    .hero-top { margin-bottom: 30px; }
    section.band { padding: 90px 0; }
    .title { font-size: 56px; }
    .approach .title, .sectors .head-row, .how .head-row { font-size: 56px; }
    .stats, .aud-grid, .jobs-grid, .perks, .why-stats, .how .grid, .foot-grid { grid-template-columns: 1fr; }
    .how .head-row, .sectors .head-row { grid-template-columns: 1fr; gap: 30px; }
    .sector .name { font-size: 34px; }
    .quote-grid { grid-template-columns: 1fr; }
    .quote p { font-size: 24px; }
    .cta-grid { grid-template-columns: 1fr; gap: 50px; }
    .cta-headline { font-size: 60px; }
    .portrait-card img { width: 220px; height: 220px; }
  }

/* ================================================================
   ADDITIONAL STYLES FOR INNER PAGES
   ================================================================ */

/* ---------- INNER PAGE HERO ---------- */
.page-hero {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(30, 175, 224, 0.28), transparent 55%),
    radial-gradient(ellipse at 5% 95%, rgba(76, 139, 174, 0.35), transparent 50%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  padding-top: 90px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: end;
}
.page-hero .crumbs {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 50px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}
.page-hero .crumbs a { color: rgba(255, 255, 255, 0.55); }
.page-hero .crumbs a:hover { color: var(--cyan); }
.page-hero .crumbs .sep { color: var(--cyan); }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 96px;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--white);
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--cyan);
}
.page-hero .ph-side {
  padding-bottom: 12px;
}
.page-hero .ph-lead {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 420px;
}
.page-hero .ph-meta {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.page-hero .ph-meta b {
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  display: block;
  margin-bottom: 2px;
}

/* ---------- ABOUT — STORY ---------- */
.story { background: var(--paper); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 70px;
  align-items: start;
}
.story-text p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 22px;
  text-wrap: pretty;
}
.story-text p em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
  font-size: 22px;
}
.story-callout {
  background: var(--white);
  padding: 44px 40px;
  border-radius: 6px;
  border-top: 3px solid var(--cyan);
  position: sticky;
  top: 110px;
}
.story-callout h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.story-callout h4 em { font-style: italic; font-weight: 500; color: var(--blue); }
.story-callout .principles {
  list-style: none;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.story-callout .principles li {
  display: flex;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.45;
  color: var(--slate);
}
.story-callout .principles li:last-child { border-bottom: 0; padding-bottom: 0; }
.story-callout .principles .pn {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
  min-width: 30px;
  font-size: 18px;
}

/* ---------- TEAM ---------- */
.team { background: var(--white); }
.team-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.team-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  background: var(--paper);
  padding: 48px 48px;
  border-radius: 6px;
  align-items: center;
}
.team-card .tc-img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--cyan);
  background: var(--white);
}
.team-card .tc-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}
.team-card .tc-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: 10px;
}
.team-card .tc-bio {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 620px;
}
.team-card .tc-links {
  margin-top: 24px;
  display: flex;
  gap: 22px;
}
.team-card .tc-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--cyan);
}

/* ---------- JOBS PAGE ---------- */
.jobs-page { background: var(--paper); }
.jobs-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.jobs-toolbar .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--slate);
  cursor: pointer;
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.jobs-toolbar .count {
  font-size: 14px;
  color: var(--slate-2);
  font-weight: 500;
}
.jobs-toolbar .count b {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
  font-size: 18px;
}

.jobs-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
}
.job-row {
  display: grid;
  grid-template-columns: 60px 1fr auto auto auto;
  gap: 36px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding-left 0.2s ease;
}
.job-row:hover { padding-left: 16px; }
.job-row .jr-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
  font-size: 22px;
}
.job-row .jr-title h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.job-row .jr-title .jr-sub {
  margin-top: 6px;
  font-size: 14px;
  color: var(--slate-2);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.job-row .jr-loc, .job-row .jr-type {
  font-size: 14px;
  color: var(--slate);
  font-weight: 500;
}
.job-row .jr-loc b, .job-row .jr-type b {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 4px;
}
.job-row .jr-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: all 0.2s ease;
}
.job-row:hover .jr-arrow {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateX(4px);
}

.jobs-empty {
  margin-top: 80px;
  background: var(--white);
  border-radius: 6px;
  padding: 70px 60px;
  text-align: center;
  border: 1px dashed var(--line);
}
.jobs-empty h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.jobs-empty p {
  margin-top: 14px;
  font-size: 17px;
  color: var(--slate);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

/* ---------- BLOG ---------- */
.blog-page { background: var(--white); }
.blog-featured {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  background: var(--paper);
  border-radius: 6px;
  padding: 56px 56px;
  align-items: center;
}
.blog-featured .bf-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue), var(--ink));
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.blog-featured .bf-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(30, 175, 224, 0.5), transparent 60%);
}
.blog-featured .bf-thumb .bf-glyph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 120px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: -0.04em;
}
.blog-featured .bf-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.blog-featured .bf-tag::before {
  content: "";
  width: 24px; height: 1.5px;
  background: var(--cyan);
}
.blog-featured h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: 16px;
}
.blog-featured p {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate);
}
.blog-featured .bf-meta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  color: var(--slate-2);
  font-weight: 500;
}
.blog-featured .bf-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--slate-2); }
.blog-featured .bf-read {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--cyan);
}

.blog-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.post-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.post-card:hover { transform: translateY(-3px); }
.post-card .pc-thumb {
  aspect-ratio: 4/3;
  background: var(--paper);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.post-card .pc-thumb.cyan { background: linear-gradient(135deg, var(--cyan), #1a8fb8); }
.post-card .pc-thumb.ink  { background: linear-gradient(135deg, var(--ink), #2c3e50); }
.post-card .pc-thumb.blue { background: linear-gradient(135deg, var(--blue), #3a6f8e); }
.post-card .pc-glyph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 96px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: -0.04em;
}
.post-card .pc-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}
.post-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.post-card .pc-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--slate-2);
  font-weight: 500;
}
.post-card .pc-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--slate-2); }

/* ---------- NEWSLETTER ---------- */
.newsletter { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 10%, rgba(30, 175, 224, 0.25), transparent 50%);
  pointer-events: none;
}
.newsletter > .wrap { position: relative; }
.newsletter .nl-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.newsletter .title { color: var(--white); }
.newsletter .title em { color: var(--cyan); }
.newsletter .kicker { color: rgba(255, 255, 255, 0.55); }
.newsletter .kicker .index { color: var(--cyan); }
.newsletter .nl-sub {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  max-width: 460px;
}
.nl-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 44px 40px;
}
.nl-form label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  display: block;
  margin-bottom: 14px;
}
.nl-form input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-family: inherit;
  font-size: 19px;
  padding: 14px 0;
  outline: none;
}
.nl-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.nl-form input:focus { border-color: var(--cyan); }
.nl-form .nl-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
.nl-form .nl-actions small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 240px;
  line-height: 1.4;
}

/* ---------- CONTACT FORM ---------- */
.contact-page { background: var(--white); }
.contact-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
}
.contact-form {
  background: var(--paper);
  padding: 56px 50px;
  border-radius: 6px;
}
.contact-form .field { margin-bottom: 28px; }
.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 10px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 16px 18px;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--cyan); }
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
}
.contact-form .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form .row-2 .field { margin-bottom: 0; }
.contact-form .submit {
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 18px 36px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.15s ease;
  font-family: inherit;
  margin-top: 12px;
}
.contact-form .submit:hover { background: var(--cyan); color: var(--ink); }

.contact-side .ci-block {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.contact-side .ci-block:first-child { padding-top: 0; }
.contact-side .ci-block:last-child { border-bottom: none; }
.contact-side .ci-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.contact-side .ci-value {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.contact-side .ci-value a { color: inherit; border-bottom: 1.5px solid var(--cyan); padding-bottom: 2px; }
.contact-side .ci-meta {
  margin-top: 10px;
  font-size: 14px;
  color: var(--slate-2);
  line-height: 1.55;
}
.contact-side .ci-socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.contact-side .ci-socials a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: grid; place-items: center;
  transition: background 0.15s ease;
}
.contact-side .ci-socials a:hover { background: var(--cyan); color: var(--ink); }
.contact-side .ci-socials svg { width: 18px; height: 18px; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--blue);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: all 0.15s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.faq-item .faq-body {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 800px;
}

/* ---------- LEGAL-SECTOR HIGHLIGHT (homepage) ---------- */
.sector-feature {
  background: var(--white);
  border-radius: 6px;
  padding: 56px 56px;
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  border-top: 4px solid var(--cyan);
}
.sector-feature .sf-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 88px;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.sector-feature .sf-name em {
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.sector-feature .sf-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.sector-feature .sf-tag::before {
  content: "";
  width: 28px; height: 1.5px;
  background: var(--blue);
}
.sector-feature .sf-desc {
  font-size: 18px;
  line-height: 1.55;
  color: var(--slate);
  margin-top: 16px;
}
.sector-feature .sf-bullets {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sector-feature .sf-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.sector-feature .sf-bullets li::before {
  content: "—";
  color: var(--cyan);
  font-weight: 700;
}
.sector-feature .sf-cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.15s ease;
}
.sector-feature .sf-cta:hover { background: var(--cyan); color: var(--ink); }

.coming-soon {
  margin-top: 50px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: center;
  padding: 24px 28px;
  background: var(--white);
  border-radius: 6px;
  border: 1px dashed rgba(31, 41, 55, 0.18);
}
.coming-soon .cs-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--paper);
  padding: 10px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.coming-soon .cs-text {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.5;
}
.coming-soon .cs-text em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}

/* ---------- RESPONSIVE EXTRAS ---------- */
@media (max-width: 960px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 30px; padding-top: 60px; padding-bottom: 70px; }
  .page-hero h1 { font-size: 56px; }
  .story-grid, .blog-featured, .blog-grid, .contact-grid, .newsletter .nl-inner, .sector-feature { grid-template-columns: 1fr; gap: 40px; }
  .team-card { grid-template-columns: 1fr; text-align: left; padding: 32px; }
  .team-card .tc-img { width: 180px; height: 180px; }
  .team-card .tc-name { font-size: 36px; }
  .job-row { grid-template-columns: 40px 1fr auto; }
  .job-row .jr-loc, .job-row .jr-type { display: none; }
  .job-row .jr-title h3 { font-size: 24px; }
  .blog-featured h2 { font-size: 34px; }
  .sector-feature .sf-name { font-size: 56px; }
  .contact-form .row-2 { grid-template-columns: 1fr; }
  .faq-item summary { font-size: 22px; }
}

/* ---------- MOBILE HAMBURGER NAV ---------- */
.nav-burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  margin-right: -10px;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

body.nav-locked { overflow: hidden; }

@media (max-width: 960px) {
  .nav-burger { display: block; }
  .nav-menu {
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 40px 28px;
    gap: 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 99;
    overflow-y: auto;
  }
  .nav-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-menu a:not(.nav-cta) {
    display: block;
    font-size: 28px;
    font-weight: 600;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .nav-menu a:not(.nav-cta)::after { display: none; }
  .nav-cta {
    margin-top: 28px;
    align-self: flex-start;
    font-size: 16px !important;
    padding: 14px 26px;
  }
}

/* ========================================================
   GRID OVERFLOW SAFETY — applied to ALL pages.
   `1fr` defaults to `minmax(auto, 1fr)`, which lets columns
   grow to content width and overflow the parent. Overriding
   with `minmax(0, 1fr)` lets columns shrink properly.
   Scoped to our pages so other plugins are untouched.
   ======================================================== */
.mrp-site-page .page-hero-inner,
.mrp-vacancy-page .page-hero-inner { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) !important; }
.mrp-site-page .story-grid       { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important; }
.mrp-site-page .team-card        { grid-template-columns: 280px minmax(0, 1fr) !important; }
.mrp-site-page .blog-featured    { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) !important; }
.mrp-site-page .blog-grid        { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.mrp-site-page .newsletter .nl-inner { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) !important; }
.mrp-site-page .contact-grid     { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) !important; }
.mrp-site-page .contact-form .row-2 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important; }
.mrp-site-page .cta-grid,
.mrp-vacancy-page .cta-grid      { grid-template-columns: minmax(0, 1fr) 380px !important; }
.mrp-site-page .quote-grid,
.mrp-vacancy-page .quote-grid    { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) !important; }
.mrp-site-page .head-row,
.mrp-vacancy-page .head-row      { display: flex; flex-wrap: wrap; gap: 30px; align-items: end; justify-content: space-between; }
.mrp-site-page .head-row > *,
.mrp-vacancy-page .head-row > *  { min-width: 0; max-width: 100%; }

/* Universal min-width: 0 for all common grid/flex children — lets them shrink. */
.mrp-site-page .stat,
.mrp-site-page .aud-card,
.mrp-site-page .job,
.mrp-site-page .post-card,
.mrp-site-page .quote,
.mrp-site-page .wn,
.mrp-site-page .perk,
.mrp-site-page .team-card,
.mrp-site-page .ci-block,
.mrp-site-page .faq-item,
.mrp-site-page .job-row,
.mrp-site-page .nl-form,
.mrp-site-page .contact-form,
.mrp-site-page .contact-form .field,
.mrp-site-page .role-list,
.mrp-site-page .why-card,
.mrp-vacancy-page .role-list,
.mrp-vacancy-page .why-card,
.mrp-vacancy-page .apply-card,
.mrp-vacancy-page .recruiter-card { min-width: 0 !important; }

/* Long-text wrap safety on all card-like content */
.mrp-site-page .post-card h3,
.mrp-site-page .post-card .pc-tag,
.mrp-site-page .post-card .pc-meta,
.mrp-site-page .blog-featured h2,
.mrp-site-page .blog-featured p,
.mrp-site-page .ci-block .ci-value,
.mrp-site-page .ci-block .ci-meta,
.mrp-site-page .faq-item summary,
.mrp-site-page .faq-item .faq-body,
.mrp-site-page .team-card .tc-bio,
.mrp-site-page .story-text p,
.mrp-site-page .principles li,
.mrp-site-page .nl-sub,
.mrp-site-page .job-row h3,
.mrp-site-page .job-row .jr-sub,
.mrp-site-page .quote p,
.mrp-vacancy-page .quote p,
.mrp-vacancy-page .role-section p,
.mrp-vacancy-page .rl-txt,
.mrp-vacancy-page .wc-txt,
.mrp-vacancy-page .ac-sub,
.mrp-vacancy-page .ac-hint {
  overflow-wrap: anywhere !important;
  word-wrap: break-word !important;
  max-width: 100% !important;
}

/* Inputs/textareas that often blow out form layouts */
.mrp-site-page .contact-form input,
.mrp-site-page .contact-form select,
.mrp-site-page .contact-form textarea,
.mrp-site-page .nl-form input { max-width: 100% !important; min-width: 0 !important; box-sizing: border-box; }

/* ========================================================
   ARTICLE / SINGLE BLOG POST
   ======================================================== */
.article-page { background: var(--white); }
.article-hero {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 90px 0 110px;
}
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 90%, rgba(30, 175, 224, 0.28), transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(76, 139, 174, 0.4), transparent 55%);
  pointer-events: none;
}
.article-hero > .wrap { position: relative; max-width: 920px; }
.article-hero .crumbs {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.article-hero .crumbs a { color: rgba(255, 255, 255, 0.55); }
.article-hero .crumbs a:hover { color: var(--cyan); }
.article-hero .crumbs .sep { color: var(--cyan); }
.article-hero .tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 26px;
}
.article-hero .tag::before {
  content: "";
  width: 32px; height: 1.5px; background: var(--cyan);
}
.article-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  text-wrap: balance;
}
.article-hero h1 em { font-style: italic; font-weight: 500; color: var(--cyan); }
.article-hero .ah-meta {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.article-hero .ah-meta b {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 110px 0;
}
.article-body .lede,
.article-body > p:first-of-type {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: pretty;
  padding-bottom: 44px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.article-body h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: 70px;
  margin-bottom: 22px;
}
.article-body h2 em { font-style: italic; font-weight: 500; color: var(--blue); }
.article-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 44px;
  margin-bottom: 16px;
}
.article-body p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 22px;
  text-wrap: pretty;
}
.article-body p strong { color: var(--ink); font-weight: 700; }
.article-body a { color: var(--blue); border-bottom: 1.5px solid var(--cyan); padding-bottom: 1px; }
.article-body a:hover { color: var(--cyan); }
.article-body ul, .article-body ol { margin: 0 0 26px 0; padding: 0; list-style: none; }
.article-body ul li, .article-body ol li {
  position: relative;
  padding-left: 38px;
  font-size: 19px;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 14px;
}
.article-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 22px; height: 1.5px;
  background: var(--cyan);
}
.article-body ol { counter-reset: art-li; }
.article-body ol li {
  counter-increment: art-li;
  padding-left: 50px;
}
.article-body ol li::before {
  content: counter(art-li, decimal-leading-zero);
  position: absolute;
  left: 0; top: 4px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  color: var(--cyan);
}
.article-body img {
  max-width: 100%;
  height: auto;
  margin: 36px 0;
  border-radius: 6px;
}
.article-body blockquote, .article-body .callout {
  margin: 44px 0;
  padding: 36px 40px;
  background: var(--paper);
  border-left: 4px solid var(--cyan);
  border-radius: 4px;
}
.article-body .callout .c-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.article-body .callout p, .article-body blockquote p {
  font-family: 'Fraunces', serif; font-size: 24px; line-height: 1.4;
  color: var(--ink); margin: 0; font-weight: 500;
}
.article-body .callout p em, .article-body blockquote p em { font-style: italic; color: var(--blue); }
.article-body .two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
  margin: 36px 0;
}
.article-body .two-col .col {
  background: var(--paper);
  padding: 28px 28px 24px;
  border-radius: 6px;
  border-top: 3px solid var(--cyan);
}
.article-body .two-col .col h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.article-body .two-col .col ul { margin: 0; }
.article-body .two-col .col ul li { font-size: 16px; padding-left: 28px; margin-bottom: 10px; }
.article-body .two-col .col ul li::before { top: 12px; width: 16px; }
.article-body .article-end {
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--slate-2);
  text-align: center;
}
.author-card {
  max-width: 760px;
  margin: 0 auto 120px;
  background: var(--paper);
  border-radius: 6px;
  padding: 40px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}
.author-card img {
  width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--cyan);
}
.author-card .ac-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 8px;
}
.author-card .ac-name {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.author-card .ac-bio { font-size: 15px; line-height: 1.55; color: var(--slate); }
.author-card .ac-bio a { color: var(--blue); border-bottom: 1px solid var(--cyan); }

@media (max-width: 960px) {
  .article-hero { padding: 60px 0 70px; }
  .article-hero h1 { font-size: 44px; }
  .article-body { padding: 70px 0; }
  .article-body h2 { font-size: 30px; margin-top: 50px; }
  .article-body .lede, .article-body > p:first-of-type { font-size: 22px; }
  .article-body .two-col { grid-template-columns: 1fr; }
  .author-card { grid-template-columns: 1fr; text-align: center; padding: 28px; }
  .author-card img { margin: 0 auto; }
}

/* ========================================================
   TABLET (≤ 1024px) — between desktop and phone.
   ======================================================== */
@media (max-width: 1024px) {
  .wrap { padding: 0 36px; }
  .hero h1 { font-size: 96px; }
  .hero-inner { gap: 60px; }
  .hero-side { padding-bottom: 0; }
  .title { font-size: 68px; }
  .cta-headline { font-size: 72px; }
  section.band { padding: 110px 0; }
  .stats, .why-stats { gap: 18px; }
  .aud-card { padding: 36px 32px 32px; }
  .aud-card h3 { font-size: 36px; }
  .stat .num, .wn .wn-num { font-size: 64px; }
  .article-hero h1 { font-size: 56px; }
  .article-hero { padding: 70px 0 90px; }
  .article-hero .ah-meta { gap: 28px; }
  .blog-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important; }
  .jobs-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important; }
  .foot-grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr) !important; gap: 40px; }
  .foot-grid > div:nth-child(4) { grid-column: 2 / span 2; }
  .nav-inner { height: 76px; }
  .nav-logo img { height: 42px; }
  .page-hero h1 { font-size: 64px; }
  .page-hero-inner { gap: 50px; }
  .role-body .role-grid { grid-template-columns: minmax(0, 1fr) 320px !important; gap: 60px; padding: 80px 0 100px; }
  .job-hero h1 { font-size: 72px; }
}

/* ========================================================
   SMALL PHONE (≤ 640px) — below the 960px breakpoint, push tighter.
   ======================================================== */
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav-inner { height: 64px; }
  .nav-logo img { height: 36px; }
  .nav-cta { padding: 10px 16px; font-size: 13px !important; }
  .nav-burger { padding: 8px; }
  .nav-menu { inset: 64px 0 0 0; padding: 28px 20px; }
  .nav-menu a:not(.nav-cta) { font-size: 22px; padding: 14px 0; }
  body.nav-locked { overflow: hidden; }

  .hero h1 { font-size: 52px; line-height: 0.98; }
  .hero-sub { font-size: 18px; }
  .hero-actions { gap: 10px; }
  .btn { padding: 12px 20px; font-size: 14px; }
  .hero-bottom { font-size: 12px; }
  .hero-bottom .scroll-cue .arrow-circle { width: 32px; height: 32px; }
  .pill { font-size: 12px; padding: 8px 14px; }

  section.band { padding: 70px 0; }
  .kicker { font-size: 18px; margin-bottom: 18px; }
  .title { font-size: 40px; line-height: 1.05; }
  .lead { font-size: 17px; }
  .head-aside { font-size: 15px; }

  .stats, .why-stats, .perks, .aud-grid, .jobs-grid, .how .grid, .foot-grid,
  .blog-grid, .quote-grid, .contact-grid, .cta-grid, .nl-inner, .story-grid,
  .sector-feature, .blog-featured, .contact-form .row-2 { grid-template-columns: 1fr !important; gap: 18px !important; }

  .stat { padding: 32px 24px 28px; min-height: 0; }
  .stat .num { font-size: 56px; }
  .stat .label { font-size: 15px; }
  .aud-card { padding: 32px 24px 28px; }
  .aud-card h3 { font-size: 30px; }
  .aud-card .desc { font-size: 15px; }
  .aud-list li { font-size: 15px; gap: 10px; }
  .wn .wn-num { font-size: 48px; }
  .why .pull { font-size: 18px; }
  .perk { font-size: 15px; }
  .do-item { padding: 24px 0; gap: 18px; }
  .do-item .n { font-size: 22px; }
  .do-item .txt { font-size: 16px; }
  .sector-feature .sf-name { font-size: 44px; }
  .sector-feature .sf-desc, .sf-bullets li { font-size: 15px; }
  .coming-soon { padding: 32px 24px; }
  .coming-soon .cs-text { font-size: 18px; }

  .job { padding: 24px 22px 22px; }
  .job h4 { font-size: 19px; }
  .job-tags span { font-size: 11px; padding: 4px 10px; }
  .job-foot .date, .job-foot .apply { font-size: 12px; }

  .quote { padding: 36px 28px; }
  .quote p { font-size: 20px; }
  .quote .mark { font-size: 70px; height: 36px; }

  .cta-headline { font-size: 44px; line-height: 1.05; }
  .cta-sub { font-size: 16px; }
  .contacts a { font-size: 14px; gap: 10px; }
  .portrait-card img { width: 180px; height: 180px; }

  footer { padding: 50px 0 28px; }
  .foot-grid { gap: 36px; }
  .foot-blurb { font-size: 13px; max-width: none; }
  .foot-col h5 { font-size: 11px; margin-bottom: 16px; }
  .foot-col a { font-size: 13px; }
  .foot-bottom { margin-top: 36px; padding-top: 20px; font-size: 12px; flex-direction: column; gap: 8px; text-align: center; }
  .foot-logo { padding: 10px 14px; }
  .foot-logo img { height: 40px; }

  /* Page hero */
  .page-hero-inner { padding-top: 50px; padding-bottom: 60px; gap: 24px; grid-template-columns: 1fr !important; }
  .page-hero h1 { font-size: 44px; }
  .ph-lead { font-size: 16px; }
  .ph-meta div { font-size: 13px; }
  .crumbs { font-size: 11px; gap: 8px; margin-bottom: 24px; }

  /* About — story / team */
  .story-grid { gap: 32px !important; }
  .story-text p { font-size: 16px; line-height: 1.65; }
  .story-callout { padding: 28px 24px; }
  .story-callout h4 { font-size: 32px; }
  .principles li { font-size: 15px; padding: 16px 0; }
  .team-card { grid-template-columns: 1fr !important; padding: 24px !important; gap: 20px; text-align: left; }
  .team-card .tc-img { width: 140px; height: 140px; }
  .team-card .tc-name { font-size: 28px; }
  .team-card .tc-bio { font-size: 14px; }

  /* Jobs page */
  .jobs-toolbar { flex-direction: column; gap: 14px; align-items: flex-start; }
  .filters { flex-wrap: wrap; gap: 8px; }
  .filters .chip { font-size: 12px; padding: 8px 12px; }
  .count { font-size: 13px; }
  .job-row { grid-template-columns: 30px 1fr auto !important; gap: 14px !important; padding: 22px 0; }
  .job-row .jr-loc, .job-row .jr-type { display: none; }
  .job-row .jr-num { font-size: 18px; }
  .job-row .jr-title h3 { font-size: 18px; }
  .job-row .jr-sub { font-size: 12px; }
  .jobs-empty { padding: 40px 24px; }
  .jobs-empty h3 { font-size: 22px; }

  /* Blog page */
  .blog-featured { padding: 32px 24px !important; gap: 24px !important; }
  .bf-thumb { height: 160px; }
  .bf-glyph { font-size: 64px; }
  .blog-featured h2 { font-size: 28px; }
  .blog-featured p { font-size: 15px; }
  .post-card { padding: 0; }
  .pc-thumb { height: 140px; }
  .pc-glyph { font-size: 36px; }
  .post-card h3 { font-size: 18px; padding: 0 18px; }
  .pc-tag { font-size: 11px; padding: 0 18px; }
  .pc-meta { font-size: 12px; padding: 0 18px 18px; }

  /* Newsletter */
  .newsletter .nl-inner { gap: 28px; }
  .nl-form input { font-size: 15px; padding: 14px 16px; }
  .nl-form .btn { padding: 14px 20px; font-size: 14px; }

  /* Contact page */
  .contact-form { padding: 32px 24px; }
  .contact-form input, .contact-form textarea, .contact-form select { font-size: 15px !important; padding: 12px 14px !important; }
  .contact-form .submit { padding: 14px 24px; font-size: 14px; }
  .contact-side .ci-block { padding: 24px 0; }
  .contact-side .ci-value { font-size: 22px; }
  .contact-side .ci-meta { font-size: 13px; }
  .faq-item summary { font-size: 17px !important; padding: 22px 0; }
  .faq-item .faq-body { font-size: 15px; }

  /* Article (single blog post) */
  .article-hero { padding: 48px 0 56px; }
  .article-hero h1 { font-size: 32px; }
  .article-hero .crumbs { font-size: 11px; gap: 8px; margin-bottom: 24px; }
  .article-hero .tag { font-size: 11px; }
  .article-hero .ah-meta { gap: 18px; padding-top: 22px; margin-top: 32px; }
  .article-hero .ah-meta div { font-size: 12px; }
  .article-hero .ah-meta b { font-size: 10px; margin-bottom: 4px; }
  .article-body { padding: 48px 0; }
  .article-body .lede, .article-body > p:first-of-type { font-size: 19px; padding-bottom: 28px; margin-bottom: 28px; }
  .article-body h2 { font-size: 26px; margin-top: 40px; }
  .article-body h3 { font-size: 21px; margin-top: 32px; }
  .article-body p, .article-body ul li, .article-body ol li { font-size: 16px; line-height: 1.65; }
  .article-body ul li, .article-body ol li { padding-left: 28px; }
  .article-body ul li::before { width: 16px; }
  .article-body ol li { padding-left: 38px; }
  .article-body ol li::before { font-size: 15px; }
  .article-body .callout, .article-body blockquote { padding: 24px 22px; margin: 28px 0; }
  .article-body .callout p, .article-body blockquote p { font-size: 19px; }
  .article-body .article-end { font-size: 17px; margin-top: 44px; padding-top: 24px; }
  .author-card { padding: 24px !important; gap: 18px; margin-bottom: 70px; }
  .author-card img { width: 100px; height: 100px; }
  .author-card .ac-name { font-size: 22px; }
  .author-card .ac-bio { font-size: 14px; }

  /* Vacancy single page */
  .job-hero h1 { font-size: 44px; }
  .job-hero-inner { padding-top: 40px; padding-bottom: 50px; gap: 28px; }
  .jh-meta dl { gap: 16px 20px; }
  .jh-meta dd { font-size: 22px; }
  .quick-strip .qs-inner { padding-top: 16px; padding-bottom: 16px; gap: 14px; }
  .quick-strip .qs-left { gap: 14px; font-size: 12px; }
  .qs-btn { padding: 8px 14px; font-size: 12px; }
  .role-body .role-grid { padding: 50px 0 70px !important; gap: 40px; }
  .role-main h2 { font-size: 30px; }
  .role-main .role-section p { font-size: 17px; }
  .role-list .rl-item { grid-template-columns: 40px 1fr; gap: 16px; padding: 20px 0; }
  .role-list .rl-num { font-size: 18px; }
  .role-list .rl-txt { font-size: 16px; }
  .why-card { padding: 24px 22px 22px; min-height: 0; }
  .why-card .wc-num { font-size: 28px; }
  .why-card .wc-txt { font-size: 14px; }
  .process-block { padding: 28px 24px; }
  .process-block h3 { font-size: 28px; }
  .process-block .pb-step .pb-t { font-size: 14px; }
  .apply-card { padding: 28px 24px 24px; }
  .apply-card .ac-title { font-size: 26px; }
  .apply-card .ac-cta { padding: 14px 18px; font-size: 14px; }
  .recruiter-card { padding: 24px; }
  .recruiter-card .rc-name { font-size: 19px; }
}

/* Tighten the select so longer options fit on narrow column widths */
.mrp-site-page .contact-form select {
  padding: 14px 36px 14px 14px !important;
  font-size: 15px !important;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--slate) 50%), linear-gradient(135deg, var(--slate) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 13px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
