:root {
  /* ─── Design Mirror: McKinsey.com palette ────────────── */
  --bg-main: #ffffff;
  --bg-card: #ffffff;
  --bg-soft: #f5f5f5;
  --text-main: #1d2b33;
  --text-muted: #42535c;
  --text-light: #5e6e76;
  --navy: #051c2c;
  --deep-blue: #005eb8;
  --teal: #005eb8;
  --consulting-green: #051c2c;
  --accent-gold: #2251ff;
  --accent-gold-hover: #1a3fd9;
  --line-soft: #dfe3e6;
  --line-softer: #eef1f2;
  --border-card: #dfe3e6;

  /* ─── Legacy variable names retained for existing pages ─ */
  --ink: var(--text-main);
  --muted: var(--text-muted);
  --paper: var(--bg-main);
  --soft: var(--bg-soft);
  --cream: #f5f5f5;
  --line: var(--line-soft);
  --green: var(--deep-blue);
  --green-mid: #003a73;
  --green-dark: var(--navy);
  --green-light: #e7eef7;
  --gold: var(--accent-gold);
  --gold-light: #e7eef7;
  --teal: var(--teal);
  --charcoal: #051c2c;

  /* ─── Shadow ─────────────────────────────────────────── */
  --shadow:    0 18px 54px rgba(17, 24, 39, 0.13);
  --shadow-sm: 0 8px 24px  rgba(17, 24, 39, 0.07);

  /* ─── Layout ─────────────────────────────────────────── */
  --max:      1320px;
  --max-text: 760px;

  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes mmk-slide-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mmk-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button,
.path-card,
.service-card,
.output-card,
.offer-card,
.article-card,
.home-card,
.proof-point,
.mission-card,
.credential-card,
.expertise-list article,
.contact-links a,
.contact-links button {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 12px max(28px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 253, 248, 0.96);  /* warm white — matches --paper */
  border-bottom: 1px solid rgba(5, 28, 44, 0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mmk-header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 100;
  display: block;
  min-height: 72px;
  padding: 0;
  background: rgba(247, 248, 246, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.92);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
}

.mmk-header .header-inner {
  width: 100%;
  max-width: var(--max);
  height: 72px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mmk-header + main {
  padding-top: 72px;
}

.mmk-header .brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: calc(100% - 58px);
  color: var(--green-dark);
  flex-shrink: 0;
}

.mmk-header .brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.mmk-header .brand-logo-img,
.brand-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: transform 180ms ease;
}

.mmk-header .brand:hover .brand-logo-img {
  transform: scale(1.04);
}

.mmk-header .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.mmk-header .brand-text strong {
  color: var(--green-dark);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 13px;
  font-weight: 700;
}

.mmk-header .brand-text span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mmk-header .site-nav {
  position: static;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mmk-header .site-nav a {
  min-height: 0;
  padding: 8px 10px;
  color: var(--muted);
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
}

.mmk-header .site-nav a:hover,
.mmk-header .site-nav a:focus-visible,
.mmk-header .site-nav a[aria-current="page"] {
  color: var(--green-dark);
  background: rgba(11, 31, 58, 0.055);
}

.mmk-header .site-nav .nav-cta {
  min-height: 38px;
  margin-left: 12px;
  padding: 9px 20px;
  color: #ffffff;
  background: var(--navy);
  border-radius: 8px;
}

.mmk-header .site-nav .nav-cta:hover,
.mmk-header .site-nav .nav-cta:focus-visible {
  color: #ffffff;
  background: var(--deep-blue);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.14);
}

@media (max-width: 1024px) {
  .mmk-header {
    min-height: 66px;
  }

  .mmk-header .header-inner {
    height: 66px;
    padding: 0 max(18px, env(safe-area-inset-left)) 0 max(18px, env(safe-area-inset-right));
  }

  .mmk-header + main {
    padding-top: 66px;
  }

  .mmk-header .nav-toggle {
    display: grid;
  }

  .mmk-header .site-nav {
    position: fixed;
    inset: 66px 16px auto;
    display: none;
    max-height: calc(100dvh - 82px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(247, 248, 246, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .mmk-header .site-nav.is-open {
    display: flex;
  }

  .mmk-header .site-nav a {
    width: 100%;
    min-height: 44px;
    padding: 12px 0;
    color: var(--green-dark);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 18px;
  }

  .mmk-header .site-nav .nav-cta {
    justify-content: center;
    margin: 14px 0 0;
    padding: 12px 18px;
    font-family: Inter, "DM Sans", ui-sans-serif, system-ui, sans-serif;
    font-size: 14px;
    border-bottom: 0;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  max-width: calc(100% - 58px);
  text-decoration: none;
}

.brand-logo {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 3px;
  object-fit: contain;
  background: var(--green-light);
  border: 1px solid rgba(5, 28, 44, 0.14);
  border-radius: 6px;
  transition: border-color 200ms ease, background 200ms ease;
}

.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
  background: var(--green-light);
  border-color: rgba(5, 28, 44, 0.3);
}

.brand-text {
  display: grid;
  min-width: 0;
  gap: 0;
}

.brand-text strong {
  font-size: 14.5px;
  font-weight: 820;
  line-height: 1.15;
  color: var(--ink);
  overflow-wrap: break-word;
}

.brand-text span {
  color: var(--green);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  color: #2f3b4f;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 680;
  letter-spacing: 0.01em;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.site-nav .is-active {
  color: var(--green-dark);
  background: var(--green-light);
  outline: none;
}

main > section {
  animation: mmk-slide-up 640ms ease both;
}

main > section:nth-child(2) {
  animation-delay: 80ms;
}

main > section:nth-child(3) {
  animation-delay: 140ms;
}

main > section:nth-child(4) {
  animation-delay: 200ms;
}

.hero-media,
.team-member-photo img {
  animation: mmk-fade-in 820ms ease both;
}

.site-nav .nav-cta {
  color: #eef1f5;
  background: var(--green-dark);
  border-radius: 6px;
  font-weight: 780;
  padding: 9px 18px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #eef1f5;
  background: var(--green);
  outline: 2px solid rgba(31, 78, 121, 0.3);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  background: #eef8f3;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
}

.mobile-menu-toggle {
  display: none !important;
  align-items: center !important;
  gap: 0.55rem !important;
  min-width: 0 !important;
  width: auto !important;
  height: auto !important;
  margin-left: auto;
  padding: 0.72rem 0.95rem !important;
  border: 1px solid rgba(5, 28, 44, 0.16) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #111827 !important;
  box-shadow: 0 10px 26px rgba(5, 28, 44, 0.08) !important;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.mobile-menu-icon {
  width: 18px !important;
  height: 12px !important;
  position: relative;
  display: inline-block !important;
  margin: 0 !important;
  border-top: 2px solid var(--navy);
  background: transparent !important;
}

.mobile-menu-icon::before,
.mobile-menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  border-top: 2px solid var(--navy);
}

.mobile-menu-icon::before {
  top: -7px;
}

.mobile-menu-icon::after {
  top: 5px;
}

.mobile-menu-text {
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  background: transparent !important;
  color: inherit !important;
  line-height: 1 !important;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: clamp(620px, 72vh, 820px);
  display: grid;
  align-items: center;
  color: #ffffff;
  background: var(--charcoal);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/welcome-hero-team.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  opacity: 1;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 13, 12, 0.98) 0%, rgba(4, 13, 12, 0.9) 36%, rgba(4, 13, 12, 0.36) 64%, rgba(4, 13, 12, 0.1) 100%),
    linear-gradient(0deg, rgba(4, 13, 12, 0.26), rgba(4, 13, 12, 0));
}

.hero-inner,
.section-inner {
  width: calc(100% - 32px);
  max-width: var(--max);
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  padding: 92px 0 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Accent line before eyebrow labels — applied on sections */
.section .eyebrow::before,
.section-soft .eyebrow::before,
.section-dark .eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
  flex-shrink: 0;
}

.hero h1,
.page-hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: 62px;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy,
.page-hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  max-width: 100%;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 780;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease,
    transform 200ms ease, box-shadow 200ms ease;
}

/* Arrow nudge — matches homepage h-btn behaviour */
.button .arrow {
  display: inline-block;
  transition: transform 200ms ease;
}

.button:hover .arrow,
.button:focus-visible .arrow {
  transform: translateX(3px);
}

/* Primary — deep MMK green, cream text (matches homepage) */
.button-primary {
  color: #eef1f5;
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(5, 28, 44, 0.22);
  outline: none;
}

/* Secondary — outlined green, readable on both light and dark backgrounds */
.button-secondary {
  color: var(--green-dark);
  border-color: rgba(5, 28, 44, 0.32);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--green-light);
  border-color: rgba(5, 28, 44, 0.5);
  outline: none;
}

/* Dark variant — white outlined, for dark section backgrounds */
.button-secondary-dark {
  color: #eef1f5;
  border-color: rgba(255, 253, 248, 0.38);
  background: rgba(255, 253, 248, 0.06);
}

.button-secondary-dark:hover,
.button-secondary-dark:focus-visible {
  background: rgba(255, 253, 248, 0.14);
  border-color: rgba(255, 253, 248, 0.6);
  outline: none;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #eef1f5;
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 108px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip span,
.registration-details dt {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
}

.proof-strip strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.28;
}

.page-hero {
  padding: 92px 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f4faf7, #ffffff);
}

.page-hero p {
  color: var(--muted);
}

.dark-page-hero {
  color: #ffffff;
  background: var(--charcoal);
}

.dark-page-hero p {
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(64px, 8vw, 100px) 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: #eef1f5;
  background: var(--green-dark);   /* deep MMK forest — replaces generic charcoal */
}

.section-dark .eyebrow {
  color: var(--gold);
}

.section-dark .eyebrow::before {
  background: var(--gold);
}

.section-booking,
.section-contact {
  color: #eef1f5;
  background:
    radial-gradient(circle at 78% 30%, rgba(31, 78, 121, 0.14), transparent 44%),
    linear-gradient(90deg, rgba(5, 28, 44, 0.98), rgba(5, 28, 44, 0.92)),
    url("assets/mmk-logo-symbol.png") right max(24px, calc((100vw - var(--max)) / 2)) bottom 52px / min(360px, 32vw) auto no-repeat,
    var(--green-dark);
}

.section-booking {
  background: var(--green-dark);
}

.section-reference {
  background: var(--cream);
}

.section-commerce {
  background: linear-gradient(180deg, #ffffff 0%, #f4faf7 100%);
}

.mission-hero {
  background: #f7faf9;
}

.section-lead {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-lead-wide {
  max-width: 900px;
}

.section-lead.compact {
  margin-bottom: 0;
}

.section-lead h2,
.welcome-copy h2,
.team-preview-copy h2,
.closing-inner h2,
.registration-card h2,
.community-panel h2,
.contact-copy h1,
.narrow h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-lead p,
.welcome-copy p,
.why-copy p,
.team-preview-copy p,
.closing-inner p,
.intro-copy p,
.narrow p,
.registration-card p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.72;
  max-width: var(--max-text);
}

.intro-grid,
.welcome-layout,
.split,
.registration-layout,
.reference-layout,
.booking-layout,
.contact-layout,
.insights-layout {
  display: grid;
  gap: 52px;
  align-items: start;
}

.intro-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.welcome-layout {
  grid-template-columns: minmax(0, 0.84fr) minmax(440px, 1.16fr);
  align-items: center;
}

.welcome-copy h2,
.team-preview-copy h2,
.closing-inner h2 {
  margin: 0;
}

.welcome-copy p {
  margin: 22px 0 0;
}

.home-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(16, 19, 21, 0.1);
}

.home-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-card-grid {
  display: grid;
  gap: 18px;
}

.home-card-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-card-grid.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-card,
.proof-point {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.home-card:hover,
.proof-point:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(10, 10, 12, 0.08);
  border-color: rgba(31, 78, 121, 0.2);
}

.home-card {
  min-height: 260px;
  padding: 28px;
}

.home-card.compact {
  min-height: 190px;
}

.home-card span,
.proof-point span {
  display: block;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 880;
  text-transform: uppercase;
}

.home-card h3 {
  margin: 16px 0 0;
  font-size: 24px;
  line-height: 1.16;
}

.home-card p,
.proof-point p {
  margin: 16px 0 0;
  color: var(--muted);
}

.why-layout {
  align-items: center;
}

.why-copy p {
  margin: 22px 0 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.proof-point {
  min-height: 170px;
  padding: 24px;
}

.team-band {
  padding: 96px 0;
}

.team-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.team-preview .home-image {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.team-preview-copy p {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.team-preview-copy .button {
  margin-top: 30px;
}

.section-actions {
  display: flex;
  margin-top: 30px;
}

.closing-section {
  color: #eef1f5;
  background:
    radial-gradient(ellipse at 85% 10%, rgba(166, 124, 82, 0.22), transparent 50%),
    linear-gradient(135deg, rgba(4, 17, 12, 0.97) 0%, rgba(7, 40, 29, 0.95) 100%),
    var(--green-dark);
}

.closing-inner {
  max-width: 900px;
}

.closing-inner p {
  max-width: 760px;
  margin: 22px 0 0;
}

/* Warm white on deep green */
.closing-section .closing-inner p {
  color: rgba(255, 253, 248, 0.72);
}

.split,
.registration-layout,
.reference-layout,
.booking-layout,
.contact-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.insights-layout {
  grid-template-columns: minmax(0, 1.36fr) minmax(300px, 0.64fr);
}

.path-grid,
.service-grid,
.work-grid,
.output-grid,
.offer-grid,
.article-grid,
.visual-showcase,
.booking-actions {
  display: grid;
  gap: 18px;
}

.path-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid,
.work-grid,
.visual-showcase {
  grid-template-columns: repeat(3, 1fr);
}

.output-grid {
  grid-template-columns: repeat(3, 1fr);
}

.offer-grid {
  grid-template-columns: repeat(3, 1fr);
}

.compact-offers {
  grid-template-columns: repeat(3, 1fr);
}

.article-grid {
  grid-template-columns: 1fr;
}

.booking-actions {
  grid-template-columns: repeat(2, 1fr);
}

.path-card,
.service-card,
.work-card,
.output-card,
.offer-card,
.article-card,
.value-list article,
.reference-list article,
.process article,
.registration-card,
.community-panel,
.contact-form {
  border-radius: 8px;
}

.path-card,
.service-card,
.output-card,
.offer-card,
.article-card,
.value-list article,
.reference-list article {
  background: #eef1f5;
  border: 1px solid var(--line);
}

.path-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.path-card:hover,
.path-card:focus-visible,
.service-card:hover,
.output-card:hover,
.offer-card:hover,
.article-card:hover,
.home-card:hover,
.proof-point:hover,
.mission-card:hover,
.credential-card:hover,
.expertise-list article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(16, 19, 21, 0.08);
}

.path-card span,
.value-list span,
.offer-card span,
.article-card span,
.output-card span,
.work-meta {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 880;
  text-transform: uppercase;
}

.path-card h3,
.service-card h2,
.work-card h2,
.output-card h2,
.offer-card h2,
.article-card h2,
.value-list h3,
.reference-list h3 {
  margin: 14px 0 0;
  font-size: 22px;
  line-height: 1.18;
}

.path-card p,
.service-card p,
.work-card p,
.output-card p,
.offer-card p,
.article-card p,
.value-list p,
.reference-list p,
.process p {
  margin: 14px 0 0;
  color: var(--muted);
}

.service-card,
.output-card,
.offer-card,
.article-card,
.value-list article,
.reference-list article {
  padding: 26px;
}

.service-card {
  min-height: 260px;
  box-shadow: 0 10px 24px rgba(16, 19, 21, 0.04);
}

.large-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
}

.service-card ul,
.work-card ul {
  margin: 20px 0 0;
  padding-left: 19px;
}

.service-card li + li,
.output-card li + li,
.work-card li + li {
  margin-top: 8px;
}

.output-section {
  background: #f7faf9;
}

.output-hero h1 {
  max-width: 980px;
}

.library-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.library-intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
}

.library-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.output-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(16, 19, 21, 0.04);
}

.output-card.feature-output {
  color: #ffffff;
  background: var(--charcoal);
  border-color: rgba(255, 255, 255, 0.16);
}

.output-card.feature-output span {
  color: var(--green);
}

.output-card.feature-output h2 {
  color: #ffffff;
}

.output-card.feature-output p,
.output-card.feature-output li {
  color: rgba(247, 244, 239, 0.74);
}

.output-card ul {
  margin: 20px 0 0;
  padding-left: 19px;
}

.mission-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.team-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 92px;
  color: #ffffff;
  background: var(--charcoal);
}

.team-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: min(420px, 32vw);
  aspect-ratio: 1;
  background: url("assets/mmk-logo-symbol.png") center / contain no-repeat;
  opacity: 0.12;
  transform: translate(10%, 18%);
  pointer-events: none;
}

.team-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.54fr);
  gap: 56px;
  align-items: center;
}

.team-copy h1 {
  max-width: 780px;
  margin: 0;
  font-size: 66px;
  line-height: 1.02;
}

.team-copy p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(247, 244, 239, 0.78);
  font-size: 21px;
}

.team-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.team-hero-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.team-hero-panel span,
.team-member-body span {
  color: var(--green);
  font-size: 13px;
  font-weight: 880;
  text-transform: uppercase;
}

.team-hero-panel strong {
  display: block;
  margin-top: 14px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.18;
}

.team-hero-panel p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.team-member-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.team-member-card {
  overflow: hidden;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 19, 21, 0.05);
}

.team-member-photo {
  margin: 0;
  background: #eef8f3;
}

.team-member-photo img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: center top;
}

.team-member-body {
  padding: 28px;
}

.team-member-body span {
  color: var(--green-dark);
}

.team-member-body h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}

.team-member-body span + h2 {
  margin-top: 12px;
}

.team-member-body p {
  margin: 16px 0 0;
  color: var(--muted);
}

.team-capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.team-profile,
.expertise-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 44px;
}

.team-bio p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.team-bio p + p {
  margin-top: 18px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.credential-card,
.expertise-list article {
  padding: 26px;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.credential-card span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 880;
  text-transform: uppercase;
}

.credential-card h2,
.expertise-list h3 {
  margin: 14px 0 0;
  font-size: 22px;
  line-height: 1.18;
}

.credential-card p,
.expertise-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.expertise-list {
  display: grid;
  gap: 16px;
}

.mission-card {
  min-height: 420px;
  padding: 34px;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 19, 21, 0.05);
}

.mission-card span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 880;
  text-transform: uppercase;
}

.mission-card h2 {
  max-width: 580px;
  margin: 20px 0 0;
  font-size: 36px;
  line-height: 1.08;
}

.mission-card p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.dark-mission-card {
  color: #ffffff;
  background: var(--charcoal);
  border-color: rgba(255, 255, 255, 0.14);
}

.dark-mission-card span {
  color: var(--accent-gold);
}

.dark-mission-card p {
  color: rgba(255, 255, 255, 0.86);
}

.legal-note-section {
  padding-top: 0;
  background: #eef1f5;
}

.legal-endnote {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-endnote p {
  max-width: 880px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.work-card {
  min-height: 368px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.section-dark .work-card p,
.section-dark .work-card li {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .work-card h2 {
  color: #ffffff;
}

.offer-card {
  position: relative;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--green);
}

.offer-card.accent-gold::before {
  background: var(--gold);
}

.offer-card.accent-blue::before {
  background: var(--teal);
}

.text-button {
  align-self: flex-start;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  margin-top: auto;
  padding: 0;
  color: var(--green-dark);
  background: transparent;
  border: 0;
  border-bottom: 2px solid currentColor;
  font-weight: 900;
  cursor: pointer;
}

.text-button:hover,
.text-button:focus-visible,
.reference-list a:hover,
.reference-list a:focus-visible {
  color: #033c25;
  outline: none;
}

.value-list,
.reference-list {
  display: grid;
  gap: 16px;
}

.reference-list a {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.registration-card,
.community-panel {
  color: #ffffff;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.registration-card p,
.community-panel p,
.section-booking .section-lead p,
.contact-copy p {
  color: rgba(247, 244, 239, 0.74);
}

.registration-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.registration-details div {
  min-height: 118px;
  padding: 22px;
  background: #eef1f5;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.registration-details div:nth-child(2n) {
  border-right: 0;
}

.registration-details div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.registration-details dd {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 760;
  line-height: 1.28;
}

.visual-showcase figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef1f5;
}

.visual-showcase img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 12px;
  background: #eef1f5;
}

.visual-showcase figcaption {
  min-height: 74px;
  padding: 16px;
  color: rgba(247, 244, 239, 0.78);
  background: #202729;
  font-size: 14px;
}

.light-showcase figcaption {
  color: var(--ink);
  background: var(--soft);
}

.community-panel,
.contact-form,
.registration-card {
  padding: 30px;
}

.mini-form,
.contact-form {
  display: grid;
  gap: 16px;
}

.mini-form {
  margin-top: 24px;
}

.mini-form label,
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 820;
}

.mini-form label {
  color: rgba(255, 255, 255, 0.86);
}

.contact-form label {
  color: #344054;
}

.mini-form input,
.mini-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form {
  color: var(--ink);
  background: #eef1f5;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a,
.contact-links button,
.contact-links span {
  padding: 10px 12px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 760;
}

.contact-links button {
  width: 44px;
  min-height: 42px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.email-contact svg,
.whatsapp-contact svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-links a:hover,
.contact-links a:focus-visible,
.contact-links button:hover,
.contact-links button:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.narrow {
  max-width: 780px;
}

.narrow .button {
  margin-top: 20px;
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM FOOTER — multi-column advisory layout
   ═══════════════════════════════════════════════════════════ */

.site-footer {
  color: rgba(255, 253, 248, 0.72);
  background:
    radial-gradient(ellipse at 90% 0%, rgba(34, 81, 255, 0.13) 0%, transparent 48%),
    radial-gradient(ellipse at 8% 20%, rgba(15, 118, 110, 0.10) 0%, transparent 46%),
    linear-gradient(180deg, #06111f 0%, #030a1400 100%),
    #06111f;
  border-top: 1px solid rgba(34, 81, 255, 0.18);
}

/* Shared container */
.footer-inner {
  width: calc(100% - 56px);
  max-width: var(--max);
  margin: 0 auto;
}

/* ── Main grid ─────────────────────────────────────────── */
.footer-main {
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px 48px;
  align-items: start;
}

/* ── Brand column ──────────────────────────────────────── */
.footer-brand-col {
  display: grid;
  gap: 16px;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #eef1f5;
}

.footer-brand-link img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
  opacity: 0.9;
  flex-shrink: 0;
}

.footer-brand-link strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: #eef1f5;
}

.footer-brand-mission {
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.88rem;
  line-height: 1.68;
  max-width: 26ch;
}

.footer-brand-reg {
  display: block;
  margin-top: 4px;
  color: rgba(255, 253, 248, 0.32);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

/* ── Link columns ──────────────────────────────────────── */
.footer-col-label {
  margin: 0 0 14px;
  color: rgba(255, 253, 248, 0.38);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer-col ul a {
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.9rem;
  font-weight: 560;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-col ul a:hover,
.footer-col ul a:focus-visible {
  color: #eef1f5;
  outline: none;
}

/* ── CTA column ────────────────────────────────────────── */
.footer-col-cta p:not(.footer-col-label) {
  color: rgba(255, 253, 248, 0.54);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0 0 18px;
  max-width: 22ch;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 20px;
  background: var(--deep-blue);
  color: #eef1f5;
  font-size: 0.88rem;
  font-weight: 760;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 200ms ease, transform 200ms ease;
}

.footer-cta-btn:hover,
.footer-cta-btn:focus-visible {
  background: var(--navy);
  transform: translateY(-1px);
  outline: none;
}

/* ── Bottom bar ────────────────────────────────────────── */
.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-left {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(255, 253, 248, 0.36);
  font-size: 0.8rem;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-bottom-right a {
  color: rgba(255, 253, 248, 0.46);
  font-size: 0.8rem;
  font-weight: 680;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-bottom-right a:hover {
  color: rgba(255, 253, 248, 0.82);
}

/* ── Social icons ──────────────────────────────────────── */
.footer-socials {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
  max-width: 520px;
}

.footer-links a {
  color: rgba(255, 253, 248, 0.78);
  font-size: 14px;
  font-weight: 760;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #eef1f5;
  outline: none;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.social-icon-link:hover,
.social-icon-link:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
  outline: none;
}

.social-icon-link svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

@media (max-width: 1120px) {
  .domain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .domain-card:nth-child(1),
  .domain-card:nth-child(2),
  .domain-card:nth-child(3),
  .domain-card:nth-child(4),
  .domain-card:nth-child(5) {
    grid-column: span 1;
  }

  .hero h1,
  .page-hero h1,
  .team-copy h1 {
    font-size: 48px;
  }

  .path-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-grid,
  .work-grid,
  .output-grid,
  .offer-grid,
  .home-card-grid.three-up,
  .home-card-grid.four-up,
  .compact-offers,
  .team-capabilities {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip div:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 66px;
    padding: 11px 18px;
  }

  .nav-toggle {
    display: grid;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
  }

  .site-nav {
    position: fixed;
    inset: 66px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #eef1f5;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    min-height: 640px;
  }

  .hero-media {
    background-size: auto 100%;
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 13, 12, 0.98) 0%, rgba(4, 13, 12, 0.88) 62%, rgba(4, 13, 12, 0.52) 100%),
      linear-gradient(0deg, rgba(4, 13, 12, 0.32), rgba(4, 13, 12, 0.1));
  }

  .hero-inner,
  .section-inner,
  .footer-inner {
    width: calc(100% - 34px);
  }

  .hero h1,
  .page-hero h1,
  .team-copy h1 {
    font-size: 38px;
  }

  .hero-copy,
  .page-hero p,
  .section-lead p,
  .welcome-copy p,
  .why-copy p,
  .team-preview-copy p,
  .closing-inner p,
  .intro-copy p,
  .narrow p,
  .registration-card p,
  .contact-copy p {
    font-size: 16px;
  }

  .section,
  .page-hero {
    padding: 66px 0;
  }

  .section-lead h2,
  .welcome-copy h2,
  .team-preview-copy h2,
  .closing-inner h2,
  .registration-card h2,
  .community-panel h2,
  .contact-copy h1,
  .narrow h2 {
    font-size: 32px;
  }

  .intro-grid,
  .welcome-layout,
  .split,
  .registration-layout,
  .reference-layout,
  .booking-layout,
  .contact-layout,
  .insights-layout,
  .mission-layout,
  .team-preview,
  .team-hero-grid,
  .team-profile,
  .team-member-grid,
  .credentials-grid,
  .team-capabilities,
  .expertise-layout,
  .library-intro,
  .path-grid,
  .home-card-grid.three-up,
  .home-card-grid.four-up,
  .proof-grid,
  .service-grid,
  .work-grid,
  .output-grid,
  .offer-grid,
  .compact-offers,
  .visual-showcase {
    grid-template-columns: 1fr;
  }

  .library-intro {
    align-items: start;
  }

  .library-intro h2 {
    font-size: 32px;
  }

  .mission-card {
    min-height: 0;
  }

  .mission-card h2 {
    font-size: 30px;
  }

  .mission-card p {
    font-size: 16px;
  }

  .team-hero {
    padding: 62px 0 70px;
  }

  .team-band {
    padding: 70px 0;
  }

  .team-copy p,
  .team-bio p {
    font-size: 16px;
  }

  .team-member-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .section-lead.compact {
    margin-bottom: 28px;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-text strong {
    font-size: 14px;
    max-width: 190px;
  }

  .brand-text span {
    font-size: 11px;
  }

  .hero-actions,
  .booking-actions,
  .section-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .section-actions {
    display: grid;
  }

  .hero-actions .button,
  .section-actions .button,
  .booking-actions .button,
  .contact-form .button,
  .mini-form .button {
    width: 100%;
  }

  .proof-strip,
  .registration-details {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .registration-details div,
  .registration-details div:nth-child(2n),
  .registration-details div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child,
  .registration-details div:last-child {
    border-bottom: 0;
  }

  .contact-form,
  .community-panel,
  .registration-card {
    padding: 22px;
  }

  .footer-inner {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* ─── Domain navigation cards (hub page) ─── */
.domain-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.domain-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 24px rgba(16, 19, 21, 0.04);
}

.domain-card:nth-child(1),
.domain-card:nth-child(2),
.domain-card:nth-child(3) {
  grid-column: span 2;
}

.domain-card:nth-child(4),
.domain-card:nth-child(5) {
  grid-column: span 3;
}

.domain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(16, 19, 21, 0.08);
}

.domain-card-count {
  display: block;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 880;
  text-transform: uppercase;
}

.domain-card h3 {
  margin: 12px 0 0;
  font-size: 24px;
  line-height: 1.16;
}

.domain-card p {
  margin: 12px 0 0;
  color: var(--muted);
  flex: 1;
}

.domain-card-arrow {
  display: block;
  margin-top: 20px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 880;
}

/* ─── Cluster sub-pages: breadcrumb & stat ─── */
.cluster-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.cluster-breadcrumb:hover {
  color: rgba(255, 255, 255, 0.92);
}

.cluster-stat {
  display: inline-block;
  margin-top: 18px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 760;
}

/* ─── Cluster sub-pages: bottom navigation ─── */
.cluster-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.cluster-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
  color: var(--ink);
  text-decoration: none;
}

.cluster-nav a:hover {
  background: var(--soft);
  border-color: var(--green);
}

.cluster-nav a.cluster-nav-next {
  margin-left: auto;
}

/* ─── Output page: hero two-column layout ─── */
.output-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.output-hero-grid h1 {
  max-width: 560px;
}

.output-hero-figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.output-hero-figure img {
  width: 100%;
  display: block;
}

/* ─── Output page: overview and note-structure images ─── */
.output-overview-image {
  margin: 36px 0 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(16, 19, 21, 0.07);
}

.output-overview-image img {
  width: 100%;
  display: block;
}

/* ─── Output page: cluster sections ─── */
.cluster-header {
  margin-bottom: 0;
}

.cluster-header h2 {
  max-width: 760px;
  margin: 8px 0 0;
  font-size: 40px;
  line-height: 1.1;
}

.cluster-header p {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.cluster-visual {
  margin: 36px 0 32px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(16, 19, 21, 0.07);
}

.cluster-visual img {
  width: 100%;
  display: block;
}

/* ─── Output page: CTA section ─── */
.output-cta-figure {
  margin: 0 0 44px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.output-cta-figure img {
  width: 100%;
  display: block;
}

@media (max-width: 820px) {
  .domain-grid {
    grid-template-columns: 1fr;
  }

  .domain-card:nth-child(1),
  .domain-card:nth-child(2),
  .domain-card:nth-child(3),
  .domain-card:nth-child(4),
  .domain-card:nth-child(5) {
    grid-column: span 1;
  }

  .cluster-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .cluster-nav a,
  .cluster-nav a.cluster-nav-next {
    justify-content: center;
    margin-left: 0;
  }

  .output-hero-grid {
    grid-template-columns: 1fr;
  }

  .output-hero-figure {
    display: none;
  }

  .cluster-header h2 {
    font-size: 30px;
  }
}

/* Premium evidence-led consulting layer */
:root {
  --ink: #1d2b33;
  --muted: #42535c;
  --paper: #ffffff;
  --soft: #f5f5f5;
  --cream: #f5f5f5;
  --line: #dfe3e6;
  --green: #005eb8;
  --green-mid: #003a73;
  --green-dark: #051c2c;
  --green-light: #e7eef7;
  --gold: #2251ff;
  --gold-light: #e7eef7;
  --teal: #005eb8;
  --charcoal: #051c2c;
  --navy: #051c2c;
  --shadow: 0 8px 24px rgba(5, 28, 44, 0.10);
}

[hidden] {
  display: none !important;
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
}

.site-nav .nav-cta,
.button-primary {
  background: var(--gold);
}

.button-outline {
  color: var(--ink);
  border-color: var(--line);
  background: #eef1f5;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: #f8faf9;
  border-color: #c6d0d4;
  outline: none;
}

.button-text {
  color: var(--green-dark);
  background: transparent;
  border-color: transparent;
  padding-left: 4px;
  padding-right: 4px;
}

.button-text:hover,
.button-text:focus-visible {
  color: var(--ink);
  outline: none;
}

.premium-hero {
  padding: 88px 0 96px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9f8 100%);
  border-bottom: 1px solid var(--line);
}

.premium-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.82fr);
  gap: 58px;
  align-items: center;
}

.premium-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: 60px;
  line-height: 1.03;
}

.premium-hero-copy p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.decision-visual {
  padding: 24px;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.decision-visual-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.decision-visual-header span,
.offer-topline span,
.trust-strip span,
.buyer-card span,
.signature-card span,
.proof-card > span,
.work-proof-card > span,
.diagram-card > span,
.team-mini-grid span,
.insight-card span,
.academy-card span,
.team-cred-card span,
.team-value-grid span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 880;
  text-transform: uppercase;
}

.decision-visual-header strong {
  color: var(--navy);
  text-align: right;
}

.evidence-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.evidence-node {
  min-height: 132px;
  padding: 16px;
  background: #f8faf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.evidence-node span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  color: #ffffff;
  background: var(--green-dark);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.evidence-node strong {
  display: block;
  color: var(--ink);
}

.evidence-node p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.evidence-node.recommendation,
.evidence-node.output {
  background: #fff8e8;
  border-color: rgba(201, 154, 49, 0.36);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--charcoal);
  color: #ffffff;
}

.trust-strip div {
  min-height: 104px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.62);
}

.trust-strip strong {
  display: block;
  margin-top: 7px;
  font-size: 17px;
  line-height: 1.25;
}

.buyer-grid,
.signature-grid,
.proof-card-grid,
.sector-grid,
.visual-intelligence-grid,
.insight-preview-grid,
.academy-grid,
.insight-hub-grid,
.team-value-grid {
  display: grid;
  gap: 18px;
}

.buyer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.buyer-card,
.signature-card,
.proof-card,
.work-proof-card,
.sector-grid article,
.diagram-card,
.insight-preview-grid article,
.academy-card,
.insight-card,
.team-value-grid article {
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.buyer-card {
  min-height: 240px;
  padding: 28px;
}

.buyer-card p,
.signature-card p,
.proof-card dd,
.work-proof-card p,
.sector-grid p,
.insight-preview-grid p,
.academy-card p,
.insight-card p,
.team-value-grid p {
  color: var(--muted);
}

.buyer-card a,
.signature-card a,
.proof-card a,
.work-proof-card a,
.insight-preview-grid a,
.academy-card a,
.insight-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-dark);
  font-weight: 860;
}

.signature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signature-card {
  padding: 26px;
}

.signature-card h3 {
  margin: 14px 0 0;
  font-size: 22px;
  line-height: 1.16;
}

.signature-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.signature-card li + li {
  margin-top: 7px;
}

.proof-card-grid,
.work-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-card,
.work-proof-card {
  padding: 24px;
}

.proof-card dl,
.team-cred-card dl {
  margin: 18px 0 0;
}

.proof-card dt,
.team-cred-card dt {
  margin-top: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.proof-card dd,
.team-cred-card dd {
  margin: 5px 0 0;
}

.work-filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(4, minmax(160px, 1fr));
  gap: 12px;
  padding: 18px;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.05);
}

.work-filter-panel label,
.contact-form label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 13px;
  font-weight: 860;
}

.work-filter-panel input,
.work-filter-panel select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.work-proof-card h3,
.insight-card h2,
.academy-card h2 {
  margin: 14px 0 0;
  font-size: 22px;
  line-height: 1.16;
}

.work-proof-card p {
  margin: 12px 0 0;
  font-size: 14px;
}

.academic-card {
  background: #fbfcfc;
}

.method-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.method-flow article {
  position: relative;
  min-height: 190px;
  padding: 20px;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.method-flow span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #ffffff;
  background: var(--navy);
  border-radius: 999px;
  font-weight: 900;
}

.method-flow h3 {
  margin: 16px 0 0;
  font-size: 18px;
}

.method-flow p {
  color: var(--muted);
}

.sector-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sector-grid article {
  padding: 24px;
}

.sector-grid h3 {
  margin: 0 0 16px;
  font-size: 22px;
}

.visual-intelligence-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.diagram-card {
  min-height: 220px;
  padding: 18px;
}

.diagram-card div {
  margin-top: 18px;
}

.diagram-card b {
  display: block;
  margin: 7px 0;
  padding: 8px 10px;
  background: #f4f6f7;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
}

.diagram-card strong {
  display: block;
  margin-top: 10px;
  padding: 10px;
  color: #ffffff;
  background: var(--green-dark);
  border-radius: 6px;
  font-size: 12px;
}

.funnel b:nth-child(1) { width: 100%; }
.funnel b:nth-child(2) { width: 82%; }
.funnel b:nth-child(3) { width: 64%; }
.funnel b:nth-child(4) { width: 46%; }

.heatmap div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.heatmap i {
  min-height: 38px;
  background: #e9f1ee;
  border-radius: 6px;
}

.heatmap i.warm {
  background: #5a82ff;
}

.heatmap i.hot {
  background: #c77844;
}

.sensitivity div {
  min-height: 150px;
  display: flex;
  align-items: end;
  gap: 9px;
  padding: 12px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sensitivity i {
  flex: 1;
  background: var(--green-dark);
  border-radius: 6px 6px 0 0;
}

.team-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
}

.team-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.team-mini-grid article {
  min-height: 240px;
  padding: 24px;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.05);
}

.team-mini-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.insight-preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.insight-preview-grid article,
.insight-card {
  padding: 24px;
}

.insight-preview-grid h3 {
  margin: 14px 0 0;
  font-size: 21px;
  line-height: 1.16;
}

.premium-page-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8f8 100%);
}

.premium-page-hero h1 {
  max-width: 980px;
  color: var(--ink);
}

.premium-page-hero p {
  max-width: 820px;
  color: var(--muted);
}

.service-offer-grid {
  display: grid;
  gap: 22px;
}

.service-offer-card {
  padding: 30px;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.05);
}

.offer-topline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.offer-topline span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: var(--navy);
  border-radius: 999px;
}

.service-offer-card h2 {
  max-width: 880px;
  margin: 18px 0 0;
  font-size: 30px;
  line-height: 1.1;
}

.offer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.offer-columns div {
  padding: 16px;
  background: #f8faf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.offer-columns h3 {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
}

.offer-columns p {
  margin: 10px 0 0;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: #ffffff;
  background: var(--charcoal);
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-note {
  margin: 14px 18px 18px;
  color: rgba(41, 53, 47, 0.72);
  font-size: 0.94rem;
  line-height: 1.55;
}

.contact-hero-grid,
.contact-path-grid {
  display: grid;
  gap: 42px;
}

.contact-hero-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.contact-icon-panel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.email-contact,
.whatsapp-contact {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.email-contact svg,
.whatsapp-contact svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-icon-panel span {
  color: var(--muted);
  font-weight: 800;
}

.contact-path-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: start;
}

.contact-path-card {
  padding: 28px;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.05);
}

.project-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-form label:nth-child(6),
.project-form label:nth-child(7),
.project-form label:nth-child(11) {
  grid-column: 1 / -1;
}

.project-form button,
.knowledge-form button {
  grid-column: 1 / -1;
}

.knowledge-card {
  position: sticky;
  top: 92px;
}

.academy-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.academy-card {
  padding: 24px;
}

.insight-hub-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.insight-card small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
}

.team-cred-grid {
  display: grid;
  gap: 24px;
}

.team-cred-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  padding: 24px;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.team-cred-card figure {
  margin: 0;
}

.team-cred-card img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}

.team-cred-card h2 {
  margin: 12px 0 0;
  font-size: 34px;
}

.team-value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-value-grid article {
  padding: 24px;
}

.team-organogram-section {
  overflow: hidden;
}

.team-organogram {
  margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(250, 247, 238, 0.92)),
    var(--paper);
  border: 1px solid rgba(10, 10, 12, 0.09);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(5, 28, 44, 0.1);
}

.team-organogram img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  background: #f7f8f6;
  object-fit: contain;
}

/* ─── Consultant cards and profile pages ────────────────── */

.consultant-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: 24px;
}

.consultant-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  min-height: 360px;
  padding: 24px;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 19, 21, 0.06);
  transition:
    transform 220ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 220ms cubic-bezier(0.23, 1, 0.32, 1),
    background-color 220ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

.consultant-card:hover,
.consultant-card:focus-within {
  transform: translateY(-4px);
  background: #fbfcfb;
  border-color: rgba(31, 78, 121, 0.28);
  box-shadow: 0 16px 38px rgba(16, 19, 21, 0.09);
}

.consultant-card-aura {
  position: absolute;
  right: -86px;
  bottom: -96px;
  z-index: -1;
  width: 220px;
  height: 220px;
  opacity: 0.14;
  background:
    radial-gradient(circle at 38% 32%, rgba(0, 191, 99, 0.92), transparent 0),
    linear-gradient(135deg, rgba(0, 191, 99, 0.72), rgba(245, 179, 0, 0.42));
  border-radius: 42% 58% 52% 48% / 44% 42% 58% 56%;
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 700ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.consultant-card:hover .consultant-card-aura,
.consultant-card:focus-within .consultant-card-aura {
  opacity: 0.2;
  transform: translate(-18px, -18px) scale(1.08) rotate(8deg);
  border-radius: 56% 44% 42% 58% / 52% 60% 40% 48%;
}

.consultant-card-aura.nansat-aura {
  background: linear-gradient(135deg, rgba(6, 166, 200, 0.72), rgba(245, 179, 0, 0.46));
}

.consultant-card-media {
  margin: 0;
}

.consultant-card-media-link {
  display: block;
  height: 100%;
}

.consultant-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  filter: saturate(0.96) contrast(1.02);
}

.consultant-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.consultant-role,
.profile-kicker {
  margin: 0;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 860;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.consultant-role-link {
  text-decoration: none;
}

.consultant-role-link:hover,
.consultant-role-link:focus-visible {
  color: var(--green);
}

.consultant-card h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.consultant-card p:not(.consultant-role) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.profile-link,
.inline-profile-link {
  color: var(--green-dark);
  font-weight: 860;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 22px;
}

.profile-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.profile-link:hover::after,
.profile-link:focus-visible::after {
  transform: translateX(4px);
}

.inline-profile-link {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.profile-hero {
  padding: 92px 0 76px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 62%, #f7faf8 100%);
  border-bottom: 1px solid var(--line);
}

.profile-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 72px;
  align-items: center;
}

.profile-hero h1 {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(50px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.profile-subheadline {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2.1vw, 26px);
  line-height: 1.42;
}

.profile-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.profile-visual {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.profile-morph {
  position: absolute;
  inset: 28px;
  z-index: -1;
  opacity: 0.2;
  background: linear-gradient(135deg, rgba(0, 191, 99, 0.72), rgba(6, 166, 200, 0.42), rgba(245, 179, 0, 0.38));
  border-radius: 46% 54% 60% 40% / 52% 44% 56% 48%;
  animation: profile-morph 10s ease-in-out infinite alternate;
}

.profile-portrait,
.profile-initials {
  width: min(100%, 320px);
  aspect-ratio: 4 / 4.8;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(16, 19, 21, 0.16);
}

.profile-portrait {
  object-fit: cover;
  object-position: center top;
  background: #eef1f5;
  border: 1px solid var(--line);
}

.profile-initials {
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--charcoal), var(--green-dark));
  font-size: 78px;
  font-weight: 900;
}

.profile-body {
  background: #eef1f5;
}

.profile-narrative {
  max-width: 930px;
  margin: 0 auto;
}

.profile-narrative p {
  color: #2f3739;
  font-size: 20px;
  line-height: 1.74;
}

.profile-narrative p + p {
  margin-top: 22px;
}

.profile-narrative h2 {
  margin: 42px 0 18px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
}

.profile-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.profile-panel {
  padding: 30px;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(16, 19, 21, 0.05);
}

.profile-panel h2,
.profile-panel h3 {
  color: var(--ink);
}

.profile-panel h2 {
  font-size: clamp(32px, 4.5vw, 52px);
}

.profile-panel h3 {
  margin: 0;
  font-size: 26px;
}

.profile-panel p,
.profile-panel li {
  color: var(--muted);
}

.profile-panel a {
  color: var(--green-dark);
  font-weight: 780;
}

.profile-panel ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.profile-panel li {
  position: relative;
  padding-left: 24px;
}

.profile-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-dark);
}

.profile-wide {
  grid-column: 1 / -1;
}

.profile-focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.profile-focus-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--deep-blue);
  background: #eef8f3;
  border: 1px solid rgba(31, 78, 121, 0.14);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 820;
}

.profile-cta {
  text-align: center;
  background: #f7faf8;
}

.profile-cta .closing-inner {
  max-width: 860px;
}

@keyframes profile-morph {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    border-radius: 46% 54% 60% 40% / 52% 44% 56% 48%;
  }

  100% {
    transform: translate3d(-8px, 12px, 0) rotate(8deg);
    border-radius: 58% 42% 44% 56% / 42% 58% 42% 58%;
  }
}

@media (max-width: 1120px) {
  .consultant-card-grid,
  .profile-hero-grid,
  .profile-section-grid {
    grid-template-columns: 1fr;
  }

  .profile-visual {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .consultant-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px;
  }

  .consultant-card-media img {
    min-height: 0;
    aspect-ratio: 4 / 3.7;
  }

  .profile-hero {
    padding: 64px 0 56px;
  }

  .profile-hero-grid {
    gap: 34px;
  }

  .profile-hero h1 {
    font-size: 46px;
  }

  .profile-subheadline,
  .profile-narrative p {
    font-size: 17px;
  }

  .profile-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .profile-hero-actions .button {
    width: 100%;
  }

  .profile-visual {
    min-height: 320px;
  }

  .profile-portrait,
  .profile-initials {
    width: min(100%, 280px);
  }

  .profile-panel {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .profile-morph,
  .consultant-card-aura {
    animation: none !important;
    transition: none !important;
  }

  .consultant-card:hover,
  .consultant-card:focus-within {
    transform: none;
  }
}

@media (max-width: 1120px) {
  .premium-hero-grid,
  .welcome-layout,
  .team-preview,
  .contact-path-grid,
  .team-cred-card {
    grid-template-columns: 1fr;
  }

  .decision-visual {
    max-width: 720px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .signature-grid,
  .proof-card-grid,
  .work-proof-grid,
  .sector-grid,
  .visual-intelligence-grid,
  .academy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-flow,
  .insight-preview-grid,
  .team-value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-filter-panel,
  .offer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knowledge-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .premium-hero {
    padding: 58px 0 68px;
  }

  .premium-hero-copy h1,
  .premium-page-hero h1 {
    font-size: 38px;
  }

  .premium-hero-copy p,
  .premium-page-hero p {
    font-size: 16px;
  }

  .hero-actions,
  .section-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .section-actions .button {
    width: 100%;
  }

  .evidence-flow,
  .trust-strip,
  .buyer-grid,
  .signature-grid,
  .proof-card-grid,
  .work-proof-grid,
  .method-flow,
  .sector-grid,
  .visual-intelligence-grid,
  .team-mini-grid,
  .insight-preview-grid,
  .service-offer-grid,
  .work-filter-panel,
  .offer-columns,
  .contact-hero-grid,
  .contact-path-grid,
  .project-form,
  .academy-grid,
  .insight-hub-grid,
  .team-value-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .contact-icon-panel {
    justify-content: flex-start;
    width: 100%;
  }

  .contact-path-card,
  .service-offer-card {
    padding: 22px;
  }

  .team-cred-card {
    padding: 18px;
  }
}

/* ─── Card cover images ─────────────────────────────────── */

.insight-card {
  overflow: hidden;
}

.card-cover {
  display: block;
  margin: -24px -24px 20px;
  width: calc(100% + 48px);
  height: 220px;
  overflow: hidden;
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.insight-card:hover .card-cover img {
  transform: scale(1.05);
}

/* ─── Visual split (image + copy side by side) ──────────── */

.visual-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.visual-split-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visual-split-copy h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.25;
  color: var(--ink);
}

.visual-split-copy p {
  color: var(--charcoal);
  line-height: 1.7;
  max-width: 46ch;
}

.visual-split-figure {
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

.visual-split-figure img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.visual-split-figure:hover img {
  transform: scale(1.04);
}

/* flip order on alternating splits */
.visual-split.flip .visual-split-copy  { order: 2; }
.visual-split.flip .visual-split-figure { order: 1; }

/* ─── Visual strip (full-width banner image) ────────────── */

.visual-strip {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 auto;
}

.visual-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Value list ────────────────────────────────────────── */

.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.value-list li {
  padding-left: 22px;
  position: relative;
  color: var(--charcoal);
  line-height: 1.6;
}

.value-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* ─── Work page hero ────────────────────────────────────── */

.work-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}

.work-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.work-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.32;
}

.work-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(18,26,22,0.88) 40%, rgba(20,58,40,0.60) 100%);
}

.work-hero-aura {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(52,199,89,0.10) 0%, transparent 70%);
  animation: work-aura 7s ease-in-out infinite alternate;
}

@keyframes work-aura {
  from { opacity: 0.6; }
  to   { opacity: 1;   }
}

.work-hero .section-inner {
  position: relative;
  z-index: 3;
  padding-top: 80px;
  padding-bottom: 80px;
}

.work-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  max-width: 18ch;
  margin-bottom: 16px;
}

.work-hero .hero-copy {
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 32px;
}

.work-hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.work-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.work-stat strong {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1;
}

.work-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Domain dashboard ──────────────────────────────────── */

.domain-chart {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

.domain-bar-row {
  display: grid;
  grid-template-columns: 180px 1fr 52px;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.domain-bar-row:hover {
  opacity: 0.82;
}

.domain-bar-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.domain-bar-info strong {
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 600;
}

.domain-bar-info small {
  font-size: 0.76rem;
  color: var(--muted);
}

.domain-bar-track {
  height: 10px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
}

.domain-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: var(--green);
  width: 0%;
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.domain-bar-num {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--charcoal);
  text-align: right;
}

/* ─── Card filter animation ─────────────────────────────── */

[data-proof-card] {
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.card-out {
  opacity: 0 !important;
  transform: scale(0.96) !important;
  pointer-events: none;
}

@keyframes card-enter {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1);    }
}

/* ─── Cluster page heroes ───────────────────────────────── */

.cluster-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.cluster-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cluster-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.28;
}

.cluster-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(18,26,22,0.90) 40%, rgba(20,58,40,0.65) 100%);
}

.cluster-hero .section-inner {
  position: relative;
  z-index: 2;
}

.cluster-hero h1,
.cluster-hero .eyebrow,
.cluster-hero p {
  color: #fff;
}

.cluster-hero .eyebrow {
  opacity: 0.72;
}

.cluster-hero p {
  opacity: 0.80;
}

.cluster-hero .hero-actions .button-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.cluster-hero .hero-actions .button-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ─── Responsive: visual-split, work-hero, domain chart ─── */

@media (max-width: 820px) {

  .visual-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .visual-split.flip .visual-split-copy  { order: unset; }
  .visual-split.flip .visual-split-figure { order: unset; }

  .visual-split-figure img {
    height: 280px;
  }

  .visual-strip {
    height: 220px;
  }

  .work-hero {
    min-height: auto;
  }

  .work-hero .section-inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .work-hero-stats {
    gap: 24px;
  }

  .domain-bar-row {
    grid-template-columns: 130px 1fr 44px;
    gap: 10px;
  }

  .domain-bar-info strong {
    font-size: 0.85rem;
  }
}

/* ─── Reduced motion ────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {

  .card-cover img,
  .visual-split-figure img,
  [data-proof-card],
  .domain-bar-fill,
  .work-hero-aura {
    transition: none !important;
    animation: none !important;
  }

  .card-out {
    display: none !important;
  }
}

/* ─── Footer: social icon links + legal tooltip ─────────── */

.footer-links.footer-socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-legal {
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #888;
  background: transparent;
  transition: color 0.25s ease, background 0.25s ease, transform 0.3s ease;
  text-decoration: none;
}

.social-icon-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.10);
  transform: translateY(-3px);
}

.social-icon-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  pointer-events: none;
}

.legal-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.20);
  background: transparent;
  color: #888;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
  flex-shrink: 0;
}

.legal-icon-btn:hover,
.legal-icon-btn:focus-visible {
  border-color: rgba(255,255,255,0.50);
  color: #ccc;
  outline: none;
}

.legal-trigger-wrap {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.legal-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  left: auto;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 0.78rem;
  line-height: 1.6;
  color: #aaa;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  white-space: normal;
  width: 280px;
  max-width: 90vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  transform: translateY(6px);
  z-index: 200;
  text-align: left;
  font-weight: 400;
}

.legal-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 6px;
  left: auto;
  border: 6px solid transparent;
  border-top-color: #1a1a1a;
}

.legal-trigger-wrap.active .legal-tooltip,
.legal-trigger-wrap:hover .legal-tooltip,
.legal-trigger-wrap:focus-within .legal-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

@media (pointer: coarse) {
  .legal-trigger-wrap:hover .legal-tooltip {
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    pointer-events: none;
  }
  .legal-trigger-wrap.active .legal-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL MORPH-REVEAL SYSTEM  (.mr / .mr-stagger)
   ═══════════════════════════════════════════════════════════ */

.mr {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.mr.mr-in {
  opacity: 1;
  transform: none;
  filter: none;
}

.mr-stagger > *:nth-child(1)  { transition-delay: 0.04s; }
.mr-stagger > *:nth-child(2)  { transition-delay: 0.13s; }
.mr-stagger > *:nth-child(3)  { transition-delay: 0.22s; }
.mr-stagger > *:nth-child(4)  { transition-delay: 0.31s; }
.mr-stagger > *:nth-child(5)  { transition-delay: 0.40s; }
.mr-stagger > *:nth-child(6)  { transition-delay: 0.49s; }

/* scale variant */
.mr-scale {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.mr-scale.mr-in { opacity: 1; transform: none; }

/* slide-left variant */
.mr-left {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}
.mr-left.mr-in { opacity: 1; transform: none; }

/* slide-right variant */
.mr-right {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}
.mr-right.mr-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .mr, .mr-scale, .mr-left, .mr-right {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   CINEMATIC PAGE HERO  (.cinematic-hero)
   ═══════════════════════════════════════════════════════════ */

.cinematic-hero {
  position: relative;
  min-height: 78vh;           /* was 92vh — less aggressive height */
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-dark);
}

/* Gold accent line along the bottom of every hero */
.cinematic-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(34, 81, 255, 0.7) 50%, transparent 95%);
  z-index: 3;
}

.cinematic-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cinematic-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.28;              /* was 0.38 — deeper, darker, more premium */
  transform: scale(1.04);
  transition: transform 9s ease, opacity 1.4s ease;
}

.cinematic-hero.loaded .cinematic-hero-media img {
  transform: scale(1);
  opacity: 0.32;
}

.cinematic-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(31, 78, 121, 0.18) 0%, transparent 55%),
    linear-gradient(to top, rgba(4, 17, 12, 0.98) 0%, rgba(4, 17, 12, 0.72) 40%, rgba(4, 17, 12, 0.28) 100%),
    linear-gradient(135deg, rgba(5, 28, 44, 0.55) 0%, transparent 65%);
}

.cinematic-hero .section-inner {
  position: relative;
  z-index: 2;
  padding-top: 56px;
  padding-bottom: 88px;
  width: 100%;
}

.cinematic-hero .eyebrow {
  color: var(--gold);
  opacity: 1;
}

/* Remove accent line from eyebrow inside cinematic-hero (dark bg) */
.cinematic-hero .eyebrow::before {
  background: var(--gold);
}

.cinematic-hero h1 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 400;
  color: #eef1f5;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin: 18px 0 22px;
}

.cinematic-hero .hero-sub {
  color: rgba(255, 253, 248, 0.65);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  max-width: 46ch;
  line-height: 1.7;
  margin-bottom: 38px;
}

/* ═══════════════════════════════════════════════════════════
   IMAGE BREAK SECTION  (.image-break)
   ═══════════════════════════════════════════════════════════ */

.image-break {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.5;
  transform: scale(1.06);
  transition: transform 0.8s ease;
}

.image-break:hover img { transform: scale(1); }

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,12,0.80) 0%, rgba(10,14,12,0.50) 100%);
  z-index: 1;
}

.image-break-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.image-break-content p {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  max-width: 22ch;
  margin: 0 auto 16px;
  letter-spacing: -0.02em;
}

.image-break-content span {
  color: rgba(255,255,255,0.52);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   STAT GIANTS  (.stat-giants)
   ═══════════════════════════════════════════════════════════ */

.stat-giants {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-giant-item {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-giant-item:last-child { border-right: none; }

.stat-giant-item strong {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-giant-item span {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* dark variant */
.section-dark .stat-giant-item strong { color: #fff; }
.section-dark .stat-giant-item span   { color: rgba(255,255,255,0.45); }
.section-dark .stat-giants            { border-color: rgba(255,255,255,0.10); }
.section-dark .stat-giant-item        { border-color: rgba(255,255,255,0.10); }

/* ═══════════════════════════════════════════════════════════
   VISUAL SERVICE CARDS  (.svc-grid / .svc-card)
   ═══════════════════════════════════════════════════════════ */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
}

.svc-card {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  transition: background 0.3s ease;
}

.svc-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.svc-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-card:hover .svc-card-media { opacity: 1; }

.svc-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10,14,12,0.88);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.svc-card:hover .svc-card-overlay { opacity: 1; }

.svc-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.svc-card-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.svc-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  transition: color 0.3s ease;
}

.svc-card:hover h3 { color: #fff; }

.svc-card p {
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.6;
  transition: color 0.3s ease;
  flex: 1;
}

.svc-card:hover p { color: rgba(255,255,255,0.68); }

.svc-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease;
}

.svc-card a::after { content: '→'; }
.svc-card a:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════════════
   CINEMATIC SPLIT  (.cin-split)
   ═══════════════════════════════════════════════════════════ */

.cin-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.cin-split-media {
  position: relative;
  overflow: hidden;
}

.cin-split-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.cin-split-media:hover img { transform: scale(1.04); }

.cin-split-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 72px 60px;
}

.cin-split-body h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.cin-split-body p {
  color: var(--charcoal);
  line-height: 1.7;
  max-width: 42ch;
}

/* dark variant */
.cin-split.dark .cin-split-body {
  background: var(--ink);
}
.cin-split.dark .cin-split-body h2 { color: #fff; }
.cin-split.dark .cin-split-body p  { color: rgba(255,255,255,0.62); }

/* ═══════════════════════════════════════════════════════════
   SCROLL-TICKER  (.ticker)
   ═══════════════════════════════════════════════════════════ */

.ticker-wrap {
  overflow: hidden;
  background: var(--green);
  padding: 14px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ticker-item::after {
  content: '·';
  font-size: 1.2rem;
  opacity: 0.5;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 820px) {
  .cinematic-hero { min-height: 85vh; }
  .cinematic-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .image-break { height: 300px; }
  .stat-giants { grid-template-columns: repeat(2, 1fr); }
  .stat-giant-item:nth-child(2) { border-right: none; }
  .stat-giant-item:nth-child(3) { border-right: 1px solid var(--line); }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .cin-split { grid-template-columns: 1fr; }
  .cin-split-media { height: 300px; position: relative; }
  .cin-split-body { padding: 48px 24px; }
}

@media (max-width: 560px) {
  .stat-giants { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
}

.member-bio {
    margin-top: 18px;
    color: #4a4a4a;
    font-size: 0.96rem;
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   BREADCRUMB NAV
   ═══════════════════════════════════════════════════════════ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.80rem;
  color: rgba(255,255,255,0.50);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255,255,255,0.50);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.breadcrumb strong { color: rgba(255,255,255,0.70); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   DOMAIN BADGE
   ═══════════════════════════════════════════════════════════ */

.domain-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(74,193,108,0.12);
  border: 1px solid rgba(74,193,108,0.30);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE / INSIGHT PAGE
   ═══════════════════════════════════════════════════════════ */

.article-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0b111c;
}

.article-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.30;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(10,14,12,0.99) 0%, rgba(10,14,12,0.65) 55%, rgba(10,14,12,0.25) 100%),
    linear-gradient(135deg, rgba(18,26,22,0.55) 0%, transparent 70%);
}

.article-hero .section-inner {
  position: relative;
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 72px;
  width: 100%;
}

.article-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  max-width: 22ch;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}

.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-meta strong { color: rgba(255,255,255,0.70); font-weight: 500; }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}

.article-body {
  font-size: 1.04rem;
  line-height: 1.80;
  color: var(--ink);
}

.article-body h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
  color: var(--ink);
}

.article-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--ink);
}

.article-body p { margin-bottom: 20px; }

.article-body ul, .article-body ol {
  margin: 0 0 20px 24px;
}

.article-body li { margin-bottom: 8px; }

.article-body blockquote {
  border-left: 3px solid var(--green);
  margin: 28px 0;
  padding: 16px 24px;
  background: var(--soft);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: var(--muted);
}

.article-key-lessons {
  margin-top: 48px;
  padding: 32px;
  background: var(--soft);
  border-radius: 12px;
  border-left: 4px solid var(--green);
}

.article-key-lessons h3 {
  margin-top: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.article-key-lessons ul { margin-left: 20px; }

.article-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: var(--soft);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--line);
}

.sidebar-card h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 12px;
}

.sidebar-card p { font-size: 0.90rem; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }

.sidebar-card a.button {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  padding: 12px 16px;
}

.sidebar-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-related-list li a {
  font-size: 0.88rem;
  color: var(--green-dark);
  text-decoration: none;
  line-height: 1.45;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}

.sidebar-related-list li:last-child a { border-bottom: none; }
.sidebar-related-list li a:hover { color: var(--green); }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; gap: 32px; }
  .article-sidebar { position: static; }
}

/* ═══════════════════════════════════════════════════════════
   CASE-STORY SLIDESHOW
   ═══════════════════════════════════════════════════════════ */

.slideshow-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0b111c;
}

.slideshow-hero-media { position: absolute; inset: 0; z-index: 0; }
.slideshow-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.28;
}
.slideshow-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,14,12,0.99) 0%, rgba(10,14,12,0.60) 60%, rgba(10,14,12,0.25) 100%);
}
.slideshow-hero .section-inner {
  position: relative; z-index: 2;
  padding-top: 48px; padding-bottom: 64px; width: 100%;
}
.slideshow-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.022em;
  max-width: 24ch;
  margin-bottom: 16px;
}
.slideshow-hero p.hero-sub {
  color: rgba(255,255,255,0.55);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  max-width: 48ch;
  line-height: 1.65;
  margin-bottom: 32px;
}

.slideshow-wrapper {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.10);
  position: relative;
  min-height: 520px;
}

.slideshow-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 24px 0;
  background: #fff;
}

.progress-dot {
  width: 28px;
  height: 3px;
  border-radius: 100px;
  background: var(--line);
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
}
.progress-dot.active { background: var(--green); width: 44px; }

.slides-track {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}

.slide {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  padding: 40px 48px 32px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.slide.active {
  display: flex;
  opacity: 1;
}

.slide-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.slide h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.25;
}

.slide p {
  font-size: 0.97rem;
  color: #444;
  line-height: 1.72;
  flex: 1;
}

.slide ul {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.72;
  margin: 0 0 0 20px;
  flex: 1;
}

.slide ul li { margin-bottom: 6px; }

.slide-takeaway {
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(74,193,108,0.08);
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-dark);
}

.slideshow-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px 24px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.slide-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.slide-btn:hover { background: var(--soft); border-color: var(--green); color: var(--green); }
.slide-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.slide-counter {
  font-size: 0.82rem;
  color: var(--muted);
}

.slideshow-kbd-hint {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  padding: 8px;
  background: #fff;
}

@media (max-width: 640px) {
  .slide { padding: 28px 24px 24px; }
  .slideshow-nav { padding: 14px 24px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   CONTENT HUB (upgraded insights.html)
   ═══════════════════════════════════════════════════════════ */

.content-hub-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.content-hub-search {
  flex: 1;
  min-width: 220px;
  position: relative;
}

.content-hub-search input {
  width: 100%;
  padding: 11px 16px 11px 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.90rem;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.content-hub-search input:focus { border-color: var(--green); }

.content-hub-search::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") center/contain no-repeat;
}

.content-type-toggle {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.type-btn {
  padding: 10px 18px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  border: none;
  cursor: pointer;
  border-right: 1px solid var(--line);
  transition: background 0.2s, color 0.2s;
}
.type-btn:last-child { border-right: none; }
.type-btn.active { background: var(--green); color: #fff; }
.type-btn:hover:not(.active) { background: var(--soft); }

.domain-filter-select {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--ink);
  background: #fff;
  outline: none;
  cursor: pointer;
}

.featured-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.featured-article-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
}
.featured-article-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); }

.featured-article-card .card-cover {
  height: 260px;
  overflow: hidden;
  margin: 0;
}
.featured-article-card .card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.featured-article-card:hover .card-cover img { transform: scale(1.04); }

.featured-article-card .card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-article-card .card-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 8px 0 12px;
  line-height: 1.3;
}

.featured-article-card .card-body p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.60;
  flex: 1;
  margin-bottom: 20px;
}

.featured-slideshow-card {
  background: var(--ink);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 360px;
  transition: box-shadow 0.25s;
}
.featured-slideshow-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.22); }

.featured-slideshow-card .card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.featured-slideshow-card .card-media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.28;
}
.featured-slideshow-card .card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,14,12,0.95) 0%, rgba(10,14,12,0.50) 100%);
}
.featured-slideshow-card .card-body {
  position: relative; z-index: 2;
  padding: 28px;
  margin-top: auto;
}
.featured-slideshow-card .type-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}
.featured-slideshow-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}
.featured-slideshow-card p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.featured-slideshow-card a.button-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  border: 1px solid rgba(74,193,108,0.35);
  border-radius: 6px;
  padding: 8px 14px;
  transition: background 0.2s, border-color 0.2s;
}
.featured-slideshow-card a.button-ghost:hover {
  background: rgba(74,193,108,0.10);
  border-color: var(--green);
}

.hub-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hub-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s;
}
.hub-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-2px); }

.hub-card .card-cover { height: 180px; overflow: hidden; margin: 0; }
.hub-card .card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.hub-card:hover .card-cover img { transform: scale(1.05); }

.hub-card.slideshow-card-dark {
  background: var(--ink);
  position: relative;
}
.hub-card.slideshow-card-dark .card-media {
  position: absolute; inset: 0; z-index: 0;
}
.hub-card.slideshow-card-dark .card-media img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.22;
}
.hub-card.slideshow-card-dark .card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,14,12,0.95) 0%, rgba(10,14,12,0.40) 100%);
}
.hub-card.slideshow-card-dark .card-body { position: relative; z-index: 2; }
.hub-card.slideshow-card-dark h3 { color: #fff; }
.hub-card.slideshow-card-dark p { color: rgba(255,255,255,0.50); }
.hub-card.slideshow-card-dark .domain-badge { background: rgba(74,193,108,0.15); }

.hub-card .card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hub-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 8px 0 10px;
  line-height: 1.35;
}

.hub-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.58;
  flex: 1;
  margin-bottom: 14px;
}

.hub-card a.read-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.hub-card a.read-link:hover { color: var(--green); }
.hub-card small { font-size: 0.76rem; color: var(--muted); margin-bottom: 6px; }

.hub-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  color: var(--muted);
  display: none;
}

@media (max-width: 900px) {
  .featured-row { grid-template-columns: 1fr; }
  .hub-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hub-cards-grid { grid-template-columns: 1fr; }
  .content-hub-controls { flex-direction: column; align-items: stretch; }
  .content-hub-search { min-width: 0; }
}

/* ═══════════════════════════════════════════════════════════
   CONFIDENTIALITY NOTICE
   ═══════════════════════════════════════════════════════════ */

.confidentiality-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(74,193,108,0.06);
  border: 1px solid rgba(74,193,108,0.20);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 40px;
}

.confidentiality-notice svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--green);
}

.confidentiality-notice p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.confidentiality-notice strong { color: var(--ink); }

/* ═══════════════════════════════════════════════════════════
   PROFILE PERSONAL SOCIAL (team profile pages)
   ═══════════════════════════════════════════════════════════ */

.profile-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.profile-social-row a.social-icon-link {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--soft);
  border: 1px solid var(--line);
  transition: background 0.2s, border-color 0.2s;
}

.profile-social-row a.social-icon-link:hover {
  background: rgba(74,193,108,0.10);
  border-color: var(--green);
}

.profile-social-row a.social-icon-link svg {
  width: 16px; height: 16px;
  fill: var(--ink);
}

/* ═══════════════════════════════════════════════════════════
   INDEX "INSIGHTS FROM COMPLETED WORK" SECTION
   ═══════════════════════════════════════════════════════════ */

.home-insights-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.home-insight-main {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s;
}
.home-insight-main:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.08); }
.home-insight-main .card-cover { height: 220px; overflow: hidden; margin: 0; }
.home-insight-main .card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.home-insight-main:hover .card-cover img { transform: scale(1.04); }
.home-insight-main .card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.home-insight-main .card-body h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.018em; margin: 8px 0 10px; line-height: 1.3; color: var(--ink); }
.home-insight-main .card-body p { font-size: 0.88rem; color: var(--muted); flex: 1; margin-bottom: 16px; }

.home-insight-side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s;
}
.home-insight-side:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.07); }
.home-insight-side .card-cover { height: 140px; overflow: hidden; margin: 0; }
.home-insight-side .card-cover img { width: 100%; height: 100%; object-fit: cover; }
.home-insight-side .card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.home-insight-side .card-body h3 { font-size: 0.92rem; font-weight: 700; letter-spacing: -0.015em; margin: 6px 0 8px; line-height: 1.3; color: var(--ink); }
.home-insight-side .card-body p { font-size: 0.83rem; color: var(--muted); flex: 1; margin-bottom: 12px; }

.home-insight-slideshow {
  background: var(--ink);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s;
}
.home-insight-slideshow:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.22); }
.home-insight-slideshow .card-media { position: absolute; inset: 0; z-index: 0; }
.home-insight-slideshow .card-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.home-insight-slideshow .card-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(10,14,12,0.96) 0%, rgba(10,14,12,0.45) 100%); }
.home-insight-slideshow .card-body { position: relative; z-index: 2; padding: 22px; margin-top: auto; }
.home-insight-slideshow .type-tag { font-size: 0.70rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; display: block; }
.home-insight-slideshow h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.home-insight-slideshow p { font-size: 0.83rem; color: rgba(255,255,255,0.50); margin-bottom: 14px; }

@media (max-width: 960px) {
  .home-insights-grid { grid-template-columns: 1fr 1fr; }
  .home-insight-main { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .home-insights-grid { grid-template-columns: 1fr; }
  .home-insight-main { grid-column: auto; }
}

/* ═══════════════════════════════════════════════════════════
   "FROM OUTPUT TO INSIGHT" FLOW (homepage)
   ═══════════════════════════════════════════════════════════ */

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  position: relative;
}

.flow-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.flow-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.flow-step h4 {
  font-size: 0.90rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.flow-step p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 720px) {
  .flow-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .flow-steps::before { display: none; }
}
@media (max-width: 440px) {
  .flow-steps { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM HOME HERO  (.home-hero)
   ═══════════════════════════════════════════════════════════ */

.home-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #07101b;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.home-hero-media video,
.home-hero-media .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-hero-media video {
  z-index: 1;
}

.home-hero-media .hero-img {
  z-index: 0;
  animation: kenBurns 18s ease-in-out infinite;
}

@keyframes kenBurns {
  0%   { transform: scale(1.0) translate(0, 0); }
  33%  { transform: scale(1.07) translate(-1.2%, -0.8%); }
  66%  { transform: scale(1.04) translate(0.8%, -0.4%); }
  100% { transform: scale(1.0) translate(0, 0); }
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(6,10,8,0.97) 0%, rgba(6,10,8,0.62) 45%, rgba(6,10,8,0.22) 100%),
    linear-gradient(100deg, rgba(6,10,8,0.70) 0%, transparent 55%);
}

.home-hero .section-inner {
  position: relative;
  z-index: 3;
  padding-bottom: 96px;
  padding-top: 40px;
  width: 100%;
}

.home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFade 0.7s 0.2s forwards;
}

.home-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--green);
  flex-shrink: 0;
}

.home-hero h1 {
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #fff;
  max-width: 14ch;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroSlide 0.85s 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home-hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255,255,255,0.58);
  max-width: 38ch;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroFade 0.7s 0.65s forwards;
}

.home-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFade 0.7s 0.85s forwards;
}

.home-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.70rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: heroFade 1s 1.2s forwards;
  opacity: 0;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

.home-hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.40), transparent);
  animation: scrollPulse 2.2s 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

@keyframes heroFade {
  to { opacity: 1; }
}

@keyframes heroSlide {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
  .home-hero { align-items: flex-end; }
  .home-hero .section-inner { padding-bottom: 72px; }
  .home-hero h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); }
}

/* ═══════════════════════════════════════════════════════════
   WHAT WE DO TILES  (.wwd-grid / .wwd-tile)
   ═══════════════════════════════════════════════════════════ */

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 3px;
  margin-top: 48px;
}

.wwd-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  background: #0b111c;
}

.wwd-tile-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wwd-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 0.65s cubic-bezier(0.22,1,0.36,1), opacity 0.45s;
  will-change: transform;
}

.wwd-tile:hover .wwd-tile-media img {
  transform: scale(1.06);
  opacity: 0.40;
}

.wwd-tile-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(4,8,6,0.92) 0%, rgba(4,8,6,0.45) 55%, rgba(4,8,6,0.10) 100%);
  transition: background 0.4s;
}

.wwd-tile:hover .wwd-tile-overlay {
  background: linear-gradient(to top, rgba(4,8,6,0.95) 0%, rgba(4,8,6,0.65) 55%, rgba(4,8,6,0.22) 100%);
}

.wwd-tile-body {
  position: relative;
  z-index: 2;
  padding: 28px;
  width: 100%;
}

.wwd-tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(74,193,108,0.15);
  border: 1px solid rgba(74,193,108,0.30);
  margin-bottom: 14px;
  transition: background 0.3s, border-color 0.3s;
}

.wwd-tile:hover .wwd-tile-icon {
  background: rgba(74,193,108,0.25);
  border-color: rgba(74,193,108,0.60);
}

.wwd-tile-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wwd-tile h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.wwd-tile p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.35s;
  opacity: 0;
}

.wwd-tile:hover p {
  max-height: 60px;
  opacity: 1;
}

.wwd-tile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.80rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  margin-top: 12px;
  letter-spacing: 0.04em;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s 0.05s;
}

.wwd-tile:hover .wwd-tile-link {
  max-height: 40px;
  opacity: 1;
}

@media (max-width: 900px) {
  .wwd-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 260px); }
}
@media (max-width: 560px) {
  .wwd-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 220px); }
  .wwd-tile p, .wwd-tile-link { max-height: 60px; opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════
   CASE STORY TRIO  (.case-trio)
   ═══════════════════════════════════════════════════════════ */

.case-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.case-card-v2 {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 440px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  background: #0b111c;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
  will-change: transform;
}

.case-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}

.case-card-v2-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.case-card-v2-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: transform 0.65s cubic-bezier(0.22,1,0.36,1), opacity 0.45s;
}

.case-card-v2:hover .case-card-v2-media img {
  transform: scale(1.05);
  opacity: 0.35;
}

.case-card-v2-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(4,8,6,0.98) 0%, rgba(4,8,6,0.55) 55%, rgba(4,8,6,0.10) 100%);
}

.case-card-v2-body {
  position: relative;
  z-index: 2;
  padding: 28px;
  width: 100%;
}

.case-card-v2-tag {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}

.case-card-v2-body h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.30;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.case-card-v2-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.55;
  margin-bottom: 16px;
}

.case-card-v2-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.80rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
  transition: gap 0.25s;
}

.case-card-v2:hover .case-card-v2-cta { gap: 10px; }

@media (max-width: 900px) {
  .case-trio { grid-template-columns: 1fr 1fr; }
  .case-card-v2:last-child { grid-column: 1 / -1; height: 320px; }
}
@media (max-width: 560px) {
  .case-trio { grid-template-columns: 1fr; }
  .case-card-v2 { height: 320px; }
  .case-card-v2:last-child { grid-column: auto; }
}

/* ═══════════════════════════════════════════════════════════
   VIDEO PROOF STRIP  (.video-strip-v2)
   ═══════════════════════════════════════════════════════════ */

.video-strip-v2 {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #07101b;
}

.video-strip-v2-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-strip-v2-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.video-strip-v2-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(4,8,6,0.90) 0%, rgba(4,8,6,0.65) 100%);
}

.video-strip-v2 .section-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

.video-strip-v2 h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 18ch;
}

.video-strip-v2 h2 em {
  font-style: normal;
  color: var(--green);
}

.video-play-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid rgba(74,193,108,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74,193,108,0.08);
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  text-decoration: none;
  position: relative;
}

.video-play-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(74,193,108,0.20);
  animation: ripple 2.4s ease-in-out infinite;
}

@keyframes ripple {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.18); opacity: 0; }
}

.video-play-ring:hover {
  background: rgba(74,193,108,0.18);
  border-color: rgba(74,193,108,0.80);
  transform: scale(1.06);
}

.video-play-ring svg {
  width: 32px;
  height: 32px;
  fill: var(--green);
  margin-left: 4px; /* optical play icon offset */
}

.video-strip-v2-sub {
  color: rgba(255,255,255,0.45);
  font-size: 0.92rem;
  margin-top: 16px;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .video-strip-v2 .section-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 32px;
  }
}

/* ═══════════════════════════════════════════════════════════
   TEAM STRIP  (.team-strip-v2)
   ═══════════════════════════════════════════════════════════ */

.team-strip-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.team-card-v2 {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 480px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  background: #0b111c;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
}

.team-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}

.team-card-v2-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.team-card-v2-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.75;
  transition: transform 0.65s cubic-bezier(0.22,1,0.36,1);
  filter: grayscale(20%);
}

.team-card-v2:hover .team-card-v2-media img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.team-card-v2-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(4,8,6,0.95) 0%, rgba(4,8,6,0.35) 55%, transparent 100%);
}

.team-card-v2-body {
  position: relative;
  z-index: 2;
  padding: 32px;
  width: 100%;
}

.team-card-v2-role {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
  display: block;
}

.team-card-v2-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.020em;
  margin-bottom: 12px;
}

.team-card-v2-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s, gap 0.25s;
}

.team-card-v2:hover .team-card-v2-link {
  color: var(--green);
  gap: 10px;
}

@media (max-width: 640px) {
  .team-strip-v2 { grid-template-columns: 1fr; }
  .team-card-v2 { height: 380px; }
}

/* ═══════════════════════════════════════════════════════════
   STAT ACCENT BAND  (.stat-band)
   ═══════════════════════════════════════════════════════════ */

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  border-radius: 0;
}

.stat-band-item {
  padding: 48px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.stat-band-item:last-child { border-right: none; }

.stat-band-item strong {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat-band-item .stat-suffix {
  color: var(--green);
  font-size: 0.75em;
}

.stat-band-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 720px) {
  .stat-band { grid-template-columns: 1fr 1fr; }
  .stat-band-item:nth-child(2) { border-right: none; }
  .stat-band-item { padding: 36px 24px; }
}

/* ═══════════════════════════════════════════════════════════
   PARALLAX WRAPPER
   ═══════════════════════════════════════════════════════════ */

.parallax-img {
  will-change: transform;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-media .hero-img { animation: none; }
  .home-hero-scroll-line { animation: none; }
  .video-play-ring::before { animation: none; }
  .parallax-img { transform: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   COMPACT HOMEPAGE REFRESH
   ═══════════════════════════════════════════════════════════ */

.compact-home-hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: clamp(36px, 5vw, 62px) 0 clamp(34px, 4vw, 56px);
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 64%, #f6faf8 100%);
  border-bottom: 1px solid var(--line);
}

.compact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.compact-hero-copy {
  max-width: 650px;
}

.compact-hero-copy h1 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 4.7vw, 5rem);
  line-height: 1;
  font-weight: 920;
  letter-spacing: 0;
}

.compact-hero-copy p:not(.eyebrow) {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.5;
}

.compact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.compact-hero-visual {
  position: relative;
  isolation: isolate;
  margin: 0;
}

.compact-hero-visual picture {
  display: block;
}

.feature-image-glow {
  position: absolute;
  inset: 18px -10px -18px 26px;
  z-index: -1;
  border: 1px solid rgba(31, 78, 121, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 191, 99, 0.07), rgba(245, 179, 0, 0.05)),
    repeating-linear-gradient(135deg, rgba(31, 78, 121, 0.06) 0 1px, transparent 1px 14px);
  transform: rotate(1.2deg);
}

.home-feature-img {
  display: block;
  width: 100%;
  max-height: min(56vh, 520px);
  object-fit: contain;
  border: 1px solid rgba(16, 19, 21, 0.08);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(16, 19, 21, 0.12);
  background: #eef1f5;
}

.compact-section-head {
  margin-bottom: 30px;
}

.compact-section-head h2 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.compact-section-head .eyebrow {
  margin-bottom: 12px;
}

.compact-services-section {
  padding-top: clamp(54px, 7vw, 82px);
}

.compact-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.compact-service-card {
  position: relative;
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 19, 21, 0.04);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.compact-service-card:hover,
.compact-service-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(31, 78, 121, 0.28);
  background: #fbfdfc;
  box-shadow: 0 18px 42px rgba(16, 19, 21, 0.08);
  outline: none;
}

.service-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: #eef8f3;
  border: 1px solid rgba(31, 78, 121, 0.16);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 880;
}

.compact-service-card strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.15;
}

.compact-service-card small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.compact-map-section {
  overflow: hidden;
}

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.coverage-copy h2 {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.coverage-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.coverage-legend {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.coverage-legend span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 760;
}

.legend-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(0, 191, 99, 0.1);
}

.legend-dot.core {
  background: var(--green-dark);
}

.legend-dot.network {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(245, 179, 0, 0.14);
}

.coverage-map-card {
  overflow: hidden;
  padding: 10px;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(16, 19, 21, 0.08);
}

.coverage-map {
  display: block;
  width: 100%;
  height: auto;
}

.continent {
  fill: #e8f1ed;
  stroke: #d6e4df;
  stroke-width: 1.6;
}

.africa-core {
  fill: #dff5eb;
  stroke: rgba(31, 78, 121, 0.4);
  stroke-width: 2;
}

.coverage-map line {
  stroke: rgba(166, 124, 82, 0.22);
  stroke-width: 1.5;
  stroke-dasharray: 5 7;
}

.reach-ring {
  fill: none;
  stroke: rgba(0, 191, 99, 0.45);
  stroke-width: 2;
}

.reach-ring-wide {
  stroke: rgba(245, 179, 0, 0.34);
}

.map-marker {
  fill: var(--green);
  stroke: #ffffff;
  stroke-width: 3;
}

.marker-base {
  fill: var(--green-dark);
}

.marker-network {
  fill: var(--gold);
}

.coverage-map text {
  fill: var(--ink);
  font-size: 16px;
  font-weight: 820;
}

.compact-proof-band {
  color: #ffffff;
  background: var(--ink);
}

.compact-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-proof-item {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-height: 160px;
  padding: 36px 22px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.compact-proof-item:last-child {
  border-right: none;
}

.compact-proof-item strong {
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 920;
  letter-spacing: 0;
}

.compact-proof-item span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
}

.compact-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.compact-case-card {
  display: grid;
  min-height: 260px;
  align-content: end;
  gap: 14px;
  padding: 28px;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), #ffffff),
    var(--soft);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green-dark);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(16, 19, 21, 0.05);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.compact-case-card:hover,
.compact-case-card:focus-visible {
  transform: translateY(-5px);
  border-left-color: var(--gold);
  box-shadow: 0 22px 56px rgba(16, 19, 21, 0.1);
  outline: none;
}

.compact-case-card span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 860;
  text-transform: uppercase;
}

.compact-case-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.compact-case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.compact-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.compact-process-grid::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--line);
}

.compact-process-step {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 24px;
  background: #eef1f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16, 19, 21, 0.04);
}

.compact-process-step span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--green-dark);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 880;
}

.compact-process-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
}

.compact-process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.compact-final-cta {
  padding-block: clamp(64px, 8vw, 96px);
}

@media (max-width: 1120px) {
  .compact-hero-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .compact-hero-copy {
    max-width: 780px;
  }

  .compact-hero-visual {
    max-width: 760px;
  }

  .compact-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .compact-home-hero {
    min-height: 0;
    padding-top: 48px;
  }

  .compact-section-head {
    display: block;
  }

  .compact-services-grid,
  .compact-case-grid,
  .compact-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compact-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compact-proof-item:nth-child(2) {
    border-right: none;
  }

  .compact-process-grid::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .compact-hero-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3.15rem);
  }

  .compact-home-hero {
    padding-top: 34px;
  }

  .home-feature-img {
    max-height: 430px;
  }

  .compact-actions {
    display: grid;
  }

  .compact-actions .button {
    width: 100%;
  }

  .compact-services-grid,
  .compact-case-grid,
  .compact-process-grid {
    grid-template-columns: 1fr;
  }

  .compact-service-card {
    min-height: 126px;
  }

  .coverage-map-card {
    padding: 4px;
  }

  .coverage-map text {
    font-size: 18px;
  }

  .compact-proof-item {
    min-height: 132px;
    padding: 28px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .compact-service-card,
  .compact-case-card {
    transition: none;
  }

  .compact-service-card:hover,
  .compact-service-card:focus-visible,
  .compact-case-card:hover,
  .compact-case-card:focus-visible {
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE PREMIUM POLISH (May 2026)
   ═══════════════════════════════════════════════════════════ */

/* Trust chips below hero CTAs */
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.trust-chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  color: var(--green-dark);
  background: #eef8f3;
  border: 1px solid rgba(31, 78, 121, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.02em;
}

.trust-chips li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 191, 99, 0.18);
}

/* Premium hero image frame */
.hero-frame {
  position: relative;
  padding: 14px;
  background: #eef1f5;
  border: 1px solid rgba(16, 19, 21, 0.08);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(16, 19, 21, 0.12);
}

.hero-frame .home-feature-img {
  border: none;
  border-radius: 12px;
  box-shadow: none;
}

/* Floating mini-cards around the hero image */
.hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-float {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  background: #eef1f5;
  border: 1px solid rgba(16, 19, 21, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(16, 19, 21, 0.12);
  animation: heroFloatBob 6s ease-in-out infinite;
  will-change: transform;
}

.hero-float strong {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 880;
  line-height: 1;
  letter-spacing: 0;
}

.hero-float span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
}

.hero-float-a {
  top: -16px;
  left: -22px;
  animation-delay: 0s;
}

.hero-float-b {
  top: 44%;
  right: -28px;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  animation-delay: -2s;
}

.hero-float-b span {
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 820;
}

.hero-float-c {
  bottom: -18px;
  left: 12%;
  animation-delay: -4s;
}

.float-dot {
  width: 10px !important;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(0, 191, 99, 0.18);
  flex: 0 0 auto;
}

@keyframes heroFloatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* Section subtitle below H2 */
.compact-section-head .section-sub {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

/* Inline SVG icons inside service cards */
.compact-service-card .service-icon {
  font-size: 0;
}

.compact-service-card .service-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green-dark);
}

.compact-service-card:hover .service-icon,
.compact-service-card:focus-visible .service-icon {
  background: #e3f5ec;
  border-color: rgba(31, 78, 121, 0.32);
}

/* Green accent line that grows on hover */
.compact-service-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms ease;
}

.compact-service-card:hover::after,
.compact-service-card:focus-visible::after {
  transform: scaleX(1);
}

/* Case card icon accent */
.compact-case-card .case-accent {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green-dark);
  background: #eef8f3;
  border: 1px solid rgba(31, 78, 121, 0.18);
  border-radius: 10px;
}

.compact-case-card .case-accent svg {
  width: 22px;
  height: 22px;
}

/* Final CTA paragraph styling */
.compact-final-cta .closing-inner > p {
  max-width: 640px;
  margin: 18px auto 0;
  color: rgba(247, 244, 239, 0.78);
  font-size: 1.08rem;
  line-height: 1.55;
}

/* Proof number plus sign */
.compact-proof-item strong i {
  font-style: normal;
  margin-left: 2px;
  color: var(--green);
  font-weight: 920;
}

/* Pulse on Nigeria marker */
.marker-pulse {
  fill: rgba(31, 78, 121, 0.4);
  transform-box: fill-box;
  transform-origin: center;
  animation: nigeriaPulse 2.6s ease-out infinite;
}

@keyframes nigeriaPulse {
  0%   { transform: scale(0.6); opacity: 0.55; }
  80%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* Responsive tweaks for floating cards */
@media (max-width: 1120px) {
  .hero-float-a { left: 6px; }
  .hero-float-b { right: 6px; }
  .hero-float-c { left: 18px; }
}

@media (max-width: 820px) {
  .compact-hero-grid {
    /* On tablet/mobile the brief asks: text first, image second */
    grid-auto-flow: row;
  }

  .compact-hero-copy { order: 1; }
  .compact-hero-visual { order: 2; }
}

@media (max-width: 720px) {
  .hero-float-a { top: -10px; left: 4px; padding: 10px 12px; }
  .hero-float-b { right: 4px; padding: 8px 12px; }
  .hero-float-c { bottom: -10px; left: 6px; padding: 10px 12px; }
  .hero-float strong { font-size: 0.95rem; }
  .hero-float span { font-size: 0.72rem; }
}

@media (max-width: 480px) {
  .hero-floats { display: none; }
}

/* Premium scale-up for the final CTA heading */
.compact-final-cta .closing-inner h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 920;
}

.compact-final-cta .closing-inner {
  text-align: left;
}

/* Reduced motion respect for new animations */
@media (prefers-reduced-motion: reduce) {
  .hero-float { animation: none; }
  .marker-pulse { animation: none; opacity: 0; }
  .compact-service-card::after { transition: none; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES + CONTACT PREMIUM EXPERIENCE
   Scoped to the two upgraded pages only.
   ═══════════════════════════════════════════════════════════ */

body.services-premium,
body.contact-premium {
  --lux-green: var(--deep-blue);
  --lux-green-deep: var(--navy);
  --lux-gold: var(--accent-gold);
  --lux-ink: #111827;
  --lux-muted: #374151;
  --lux-line: rgba(31, 78, 121, 0.16);
  --lux-radius: 28px;
  --lux-shadow: 0 26px 78px rgba(17, 24, 39, 0.14), 0 1px 0 rgba(255, 255, 255, 0.66) inset;
  background: linear-gradient(180deg, #f7f8f6 0%, #eef1f5 38%, rgba(232, 223, 212, 0.62) 100%);
}

body.services-premium .cinematic-hero .section-inner,
body.contact-premium .contact-cinematic .section-inner {
  width: calc(100% - 32px);
  max-width: 1440px;
  margin-inline: auto;
}

body.services-premium .service-gallery-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fbfcfa 0%, #ffffff 36%, #f4faf6 100%),
    linear-gradient(135deg, rgba(31, 78, 121, 0.08), transparent 42%);
}

body.services-premium .service-gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(31, 78, 121, 0.055) 58% 59%, transparent 59%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 40%);
}

body.services-premium .service-gallery-section > .section-inner {
  position: relative;
  z-index: 1;
}

body.services-premium .service-gallery-lead {
  max-width: 820px;
  margin-bottom: 20px;
}

body.services-premium .service-gallery-lead h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(2.15rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

body.services-premium .service-gallery-lead p {
  max-width: 62ch;
  color: var(--lux-muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

body.services-premium .service-slider-controls {
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 clamp(24px, 4vw, 44px);
  padding: 9px;
  border: 1px solid rgba(31, 78, 121, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(9, 18, 14, 0.08);
  backdrop-filter: blur(16px) saturate(1.05);
}

body.services-premium .service-slider-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(31, 78, 121, 0.16);
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 44%),
    linear-gradient(135deg, var(--lux-green-deep), var(--lux-green));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 12px 30px rgba(31, 78, 121, 0.18);
  cursor: pointer;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

body.services-premium .service-slider-button:hover,
body.services-premium .service-slider-button:focus-visible {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(31, 78, 121, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 16px 38px rgba(31, 78, 121, 0.24);
  outline: none;
}

body.services-premium .service-slider-status {
  min-width: 0;
  color: var(--lux-muted);
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  font-weight: 750;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

body.services-premium .service-gallery-grid {
  display: flex;
  gap: clamp(20px, 2.4vw, 34px);
  margin: -10px -12px 0;
  padding: 10px 12px 34px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 12px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

body.services-premium .service-gallery-grid::-webkit-scrollbar {
  height: 10px;
}

body.services-premium .service-gallery-grid::-webkit-scrollbar-track {
  background: rgba(8, 44, 32, 0.08);
  border-radius: 999px;
}

body.services-premium .service-gallery-grid::-webkit-scrollbar-thumb {
  background: rgba(31, 78, 121, 0.36);
  border-radius: 999px;
}

body.services-premium .service-gallery-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(31, 78, 121, 0.54);
}

body.services-premium .service-gallery-card {
  position: relative;
  box-sizing: border-box;
  flex: 0 0 min(1040px, calc(100% - 26px));
  min-width: 0;
  scroll-snap-align: start;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--lux-radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--lux-shadow);
  backdrop-filter: blur(18px) saturate(1.08);
  isolation: isolate;
  transition:
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.services-premium .service-gallery-card:nth-child(1),
body.services-premium .service-gallery-card:nth-child(2),
body.services-premium .service-gallery-card:nth-child(3),
body.services-premium .service-gallery-card:nth-child(4),
body.services-premium .service-gallery-card:nth-child(5),
body.services-premium .service-gallery-card:nth-child(6) {
  grid-column: auto;
}

body.services-premium .service-gallery-card:hover,
body.services-premium .service-gallery-card:focus-within {
  transform: translateY(-7px) scale(1.01);
  border-color: rgba(31, 78, 121, 0.28);
  box-shadow: 0 34px 96px rgba(9, 18, 14, 0.18), 0 0 0 1px rgba(31, 78, 121, 0.08);
}

body.services-premium .service-gallery-link {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  min-width: 0;
  min-height: 100%;
  color: var(--lux-ink);
  text-decoration: none;
}

body.services-premium .service-gallery-media {
  position: relative;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(31, 78, 121, 0.10), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 244, 0.92));
}

body.services-premium .service-gallery-card:nth-child(2) .service-gallery-media,
body.services-premium .service-gallery-card:nth-child(5) .service-gallery-media {
  min-height: 0;
}

body.services-premium .service-gallery-card:nth-child(6) .service-gallery-media {
  min-height: 0;
}

body.services-premium .service-gallery-media::after {
  content: none;
}

body.services-premium .service-gallery-media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: clamp(8px, 1.5vw, 18px);
  background: rgba(255, 255, 255, 0.76);
  box-sizing: border-box;
  transform: none;
  transition:
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 480ms ease;
}

body.services-premium .service-gallery-card:hover img,
body.services-premium .service-gallery-card:focus-within img {
  transform: scale(1.012);
  filter: saturate(1.03) contrast(1.02);
}

body.services-premium .service-gallery-media figcaption {
  position: static;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 58px;
  padding: 13px clamp(18px, 2.5vw, 28px);
  color: #ffffff;
  border-top: 1px solid rgba(31, 78, 121, 0.12);
  background:
    linear-gradient(135deg, rgba(3, 32, 22, 0.96), rgba(8, 82, 52, 0.92)),
    var(--lux-green-deep);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body.services-premium .service-gallery-media figcaption span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--navy);
  background: linear-gradient(135deg, #f8fff9, #9ff0bb);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

body.services-premium .service-gallery-media figcaption strong {
  color: #ffffff;
  font-size: clamp(0.9rem, 1.25vw, 1.05rem);
  line-height: 1.1;
}

body.services-premium .service-gallery-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px 22px;
  padding: clamp(20px, 2.6vw, 30px);
}

body.services-premium .service-gallery-copy h3 {
  margin: 0;
  max-width: 28ch;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

body.services-premium .service-gallery-copy p {
  max-width: 38ch;
  margin: 0;
  color: var(--lux-muted);
  font-size: 1rem;
  grid-column: 1;
}

body.services-premium .service-gallery-cta {
  width: fit-content;
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--lux-green);
  font-weight: 850;
  padding: 10px 14px;
  border: 1px solid rgba(31, 78, 121, 0.18);
  border-radius: 999px;
  background: rgba(31, 78, 121, 0.07);
  opacity: 1;
  transform: none;
  transition:
    background 280ms ease,
    border-color 280ms ease,
    opacity 280ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.services-premium .service-gallery-card:hover .service-gallery-cta,
body.services-premium .service-gallery-card:focus-within .service-gallery-cta {
  opacity: 1;
  transform: translateX(4px);
  border-color: rgba(31, 78, 121, 0.28);
  background: rgba(31, 78, 121, 0.11);
}

body.services-premium .finance-model-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 820px;
  margin: clamp(34px, 5vw, 60px) auto 0;
  padding: clamp(20px, 3vw, 30px);
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(169, 241, 190, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 58%, #416f9f 100%);
  box-shadow: 0 26px 72px rgba(31, 78, 121, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease;
}

body.services-premium .finance-model-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.22) 50%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.services-premium .finance-model-cta:hover,
body.services-premium .finance-model-cta:focus-visible {
  transform: translateY(-4px) scale(1.025);
  border-color: rgba(214, 255, 225, 0.7);
  box-shadow: 0 34px 86px rgba(31, 78, 121, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.36);
  outline: none;
}

body.services-premium .finance-model-cta:hover::after,
body.services-premium .finance-model-cta:focus-visible::after {
  transform: translateX(120%);
}

body.services-premium .finance-model-cta-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: inset 0 -10px 20px rgba(31, 78, 121, 0.1);
}

body.services-premium .finance-model-cta-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

body.services-premium .finance-model-cta strong,
body.services-premium .finance-model-cta small {
  position: relative;
  z-index: 1;
  display: block;
}

body.services-premium .finance-model-cta strong {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.1;
}

body.services-premium .finance-model-cta small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

body.services-premium .finance-model-cta-arrow {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  transition: transform 260ms ease;
}

body.services-premium .finance-model-cta:hover .finance-model-cta-arrow,
body.services-premium .finance-model-cta:focus-visible .finance-model-cta-arrow {
  transform: translateX(5px);
}

body.services-premium .table-wrap {
  border-color: rgba(8, 44, 32, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 54px rgba(9, 18, 14, 0.08);
}

body.contact-premium .contact-glass-stage {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  padding-top: clamp(84px, 10vw, 136px);
  background:
    linear-gradient(180deg, #0b111c 0%, #102f4f 14%, #f6f8fb 54%, #ffffff 100%);
}

body.contact-premium .contact-cinematic .contact-icon-panel {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

body.contact-premium .contact-cinematic .contact-icon-panel span {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

body.contact-premium .contact-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

body.contact-premium .contact-ambient span {
  position: absolute;
  display: block;
  width: min(52vw, 720px);
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 44px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(16, 167, 95, 0.13), transparent);
  filter: blur(18px);
  opacity: 0.58;
  transform: rotate(-12deg);
  animation: contactGlassDrift 14s ease-in-out infinite alternate;
}

body.contact-premium .contact-ambient span:nth-child(1) {
  top: 5%;
  left: -12%;
}

body.contact-premium .contact-ambient span:nth-child(2) {
  top: 28%;
  right: -16%;
  width: min(46vw, 640px);
  animation-delay: -5s;
  transform: rotate(9deg);
}

body.contact-premium .contact-ambient span:nth-child(3) {
  bottom: 12%;
  left: 18%;
  width: min(38vw, 520px);
  opacity: 0.34;
  animation-delay: -8s;
}

@keyframes contactGlassDrift {
  from { transform: translate3d(0, 0, 0) rotate(-10deg); }
  to { transform: translate3d(18px, 16px, 0) rotate(-6deg); }
}

body.contact-premium .contact-glass-shell {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.66)),
    linear-gradient(180deg, rgba(16, 167, 95, 0.07), transparent);
  box-shadow:
    0 36px 110px rgba(9, 18, 14, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -1px 0 rgba(31, 78, 121, 0.08);
  backdrop-filter: blur(24px) saturate(1.14);
}

body.contact-premium .contact-stage-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 56px);
}

body.contact-premium .contact-stage-lead h2 {
  margin: 12px 0 0;
  max-width: 12ch;
  font-size: clamp(2.1rem, 4.8vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

body.contact-premium .contact-stage-lead p:last-child {
  max-width: 54ch;
  margin: 0;
  color: rgba(9, 18, 14, 0.68);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}

body.contact-premium .contact-glass-grid {
  gap: clamp(24px, 4vw, 44px);
}

body.contact-premium .contact-glass-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3.7vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.54)),
    linear-gradient(180deg, rgba(31, 78, 121, 0.04), transparent);
  box-shadow:
    0 22px 70px rgba(9, 18, 14, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

body.contact-premium .contact-glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.44), transparent 28%, transparent 72%, rgba(31, 78, 121, 0.055));
}

body.contact-premium .contact-glass-card > * {
  position: relative;
  z-index: 1;
}

body.contact-premium .contact-glass-card .section-lead.compact {
  margin-bottom: clamp(26px, 4vw, 40px);
}

body.contact-premium .contact-glass-card .section-lead h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  letter-spacing: -0.04em;
}

body.contact-premium .contact-form {
  gap: clamp(20px, 2.5vw, 28px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.contact-premium .contact-form label {
  gap: 9px;
  color: rgba(9, 18, 14, 0.72);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.contact-premium .contact-form input,
body.contact-premium .contact-form select,
body.contact-premium .contact-form textarea {
  width: 100%;
  padding: 12px 2px 14px;
  color: var(--lux-ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(9, 18, 14, 0.2);
  border-radius: 0;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.45);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

body.contact-premium .contact-form textarea {
  min-height: 132px;
}

body.contact-premium .contact-form input::placeholder,
body.contact-premium .contact-form textarea::placeholder {
  color: rgba(9, 18, 14, 0.36);
}

body.contact-premium .contact-form input:focus,
body.contact-premium .contact-form select:focus,
body.contact-premium .contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--lux-green);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 1px 0 var(--lux-green), 0 12px 24px rgba(31, 78, 121, 0.07);
}

body.contact-premium .contact-form .button {
  min-height: 56px;
  margin-top: 6px;
  color: #ffffff;
  border: 1px solid rgba(144, 238, 174, 0.32);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(135deg, var(--navy), var(--deep-blue) 62%, #416f9f);
  box-shadow: 0 20px 46px rgba(31, 78, 121, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms ease;
}

body.contact-premium .contact-form .button:hover,
body.contact-premium .contact-form .button:focus-visible {
  color: #ffffff;
  transform: translateY(-2px) scale(1.012);
  border-color: rgba(214, 255, 225, 0.62);
  box-shadow: 0 26px 58px rgba(31, 78, 121, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  outline: none;
}

body.contact-premium .contact-form .button:active {
  transform: scale(0.99);
  box-shadow: 0 14px 32px rgba(31, 78, 121, 0.24), inset 0 3px 10px rgba(0, 0, 0, 0.16);
}

body.contact-premium .knowledge-form .button {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent),
    rgba(255, 255, 255, 0.35);
  color: var(--lux-green-deep);
  border-color: rgba(166, 124, 82, 0.26);
  box-shadow: 0 16px 38px rgba(9, 18, 14, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

body.contact-premium .knowledge-form .button:hover,
body.contact-premium .knowledge-form .button:focus-visible {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(135deg, var(--navy), var(--deep-blue) 62%, #416f9f);
}

body.contact-premium .knowledge-card {
  top: 104px;
}

@media (hover: none) {
  body.services-premium .service-gallery-cta {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  body.services-premium .service-gallery-grid,
  body.contact-premium .contact-stage-lead {
    grid-template-columns: 1fr;
  }

  body.services-premium .service-gallery-card {
    flex-basis: min(940px, calc(100% - 24px));
  }

  body.services-premium .service-gallery-card,
  body.services-premium .service-gallery-card:nth-child(1),
  body.services-premium .service-gallery-card:nth-child(2),
  body.services-premium .service-gallery-card:nth-child(3),
  body.services-premium .service-gallery-card:nth-child(4),
  body.services-premium .service-gallery-card:nth-child(5),
  body.services-premium .service-gallery-card:nth-child(6) {
    grid-column: auto;
  }

  body.contact-premium .knowledge-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 720px) {
  body.services-premium .service-gallery-section {
    padding-top: 72px;
  }

  body.services-premium .service-gallery-lead h2 {
    max-width: 11ch;
    font-size: clamp(2.25rem, 10vw, 2.75rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  body.services-premium .service-gallery-lead p {
    max-width: 27ch;
  }

  body.services-premium .service-slider-controls {
    width: fit-content;
    display: grid;
    grid-template-columns: 44px 44px;
    gap: 8px;
    padding: 8px;
    border-radius: 26px;
  }

  body.services-premium .service-slider-status {
    display: none;
  }

  body.services-premium .service-gallery-grid {
    gap: 16px;
    margin-inline: -18px;
    padding-inline: 18px;
    scroll-padding-inline: 18px;
  }

  body.services-premium .service-gallery-card {
    flex-basis: calc(100vw - 56px);
    max-width: calc(100vw - 56px);
    border-radius: 24px;
  }

  body.services-premium .service-gallery-media,
  body.services-premium .service-gallery-card:nth-child(2) .service-gallery-media,
  body.services-premium .service-gallery-card:nth-child(5) .service-gallery-media,
  body.services-premium .service-gallery-card:nth-child(6) .service-gallery-media {
    min-height: 0;
  }

  body.services-premium .service-gallery-media figcaption {
    align-items: center;
    border-radius: 0;
    min-height: 52px;
    padding-inline: 16px;
  }

  body.services-premium .service-gallery-copy {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body.services-premium .service-gallery-copy p,
  body.services-premium .service-gallery-cta {
    grid-column: auto;
    grid-row: auto;
  }

  body.services-premium .finance-model-cta {
    grid-template-columns: auto minmax(0, 1fr);
    border-radius: 28px;
  }

  body.services-premium .finance-model-cta-arrow {
    grid-column: 2;
    justify-self: start;
  }

  body.contact-premium .contact-glass-stage {
    padding-top: 64px;
  }

  body.contact-premium .contact-glass-shell {
    padding: 22px;
    border-radius: 28px;
  }

  body.contact-premium .contact-glass-card {
    padding: 24px 20px;
    border-radius: 26px;
  }

  body.contact-premium .contact-ambient span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.services-premium .service-gallery-card,
  body.services-premium .service-gallery-media img,
  body.services-premium .service-gallery-cta,
  body.services-premium .service-slider-button,
  body.services-premium .finance-model-cta,
  body.contact-premium .contact-ambient span,
  body.contact-premium .contact-form .button {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  body.services-premium .service-gallery-grid {
    scroll-behavior: auto;
  }
}

.gamma-showcase {
  padding: 70px 5%;
  background: #eef1f5;
}

.gamma-wrapper {
  width: 100%;
  max-width: 1360px;
  height: 650px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.gamma-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .gamma-showcase {
    padding: 45px 4%;
  }

  .gamma-wrapper {
    height: 520px;
    border-radius: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE IMAGE-LED REFRESH (05082026)
   Scoped to index.html body.home-05082026.
   ═══════════════════════════════════════════════════════════ */

body.home-v2.home-05082026 {
  --h-paper: #ffffff;
  --h-cream: #eef1f5;
  --h-paper-soft: #f0ebe3;
  --h26-ink: #141416;
  --h26-soft-ink: #3d3a36;
  --h26-muted: #7a756e;
  --h26-copper: #2251ff;
  --h26-copper-light: #eef1f2;
  --h26-forest: #141416;
  --h26-obsidian: #0a0a0c;
  --h26-ivory: #eef1f5;
  --h26-fog: #f0ebe3;
  --h26-line: rgba(20, 20, 22, 0.08);
  --h26-shadow: 0 26px 70px rgba(10, 10, 12, 0.08);
  background: #eef1f5;
  color: var(--h26-ink);
}

body.home-v2.home-05082026 .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--h26-line);
}

body.home-v2.home-05082026 main {
  background: #eef1f5;
}

body.home-v2.home-05082026 .h-wrap {
  width: min(calc(100% - 32px), 1440px);
  max-width: 1440px;
  margin-inline: auto;
}

body.home-v2.home-05082026 .h26-hero h1,
body.home-v2.home-05082026 .h26-quick h2,
body.home-v2.home-05082026 .h26-section-head h2,
body.home-v2.home-05082026 .h26-proof h2,
body.home-v2.home-05082026 .h26-closing h2,
body.home-v2.home-05082026 .h26-service-card h3,
body.home-v2.home-05082026 .h26-process-step h3 {
  letter-spacing: 0;
}

body.home-v2.home-05082026 .h26-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0 clamp(34px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px),
    linear-gradient(118deg, #0a0a0c 0%, #141416 52%, #1c1a18 100%);
  border-bottom: 0;
  color: #eef1f5;
}

body.home-v2.home-05082026 .h26-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 81, 255, 0.9), transparent);
  transform-origin: left;
  animation: heroGoldLine 1400ms ease-out both;
}

body.home-v2.home-05082026 .h26-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
}

body.home-v2.home-05082026 .h26-hero-copy {
  max-width: 680px;
  min-width: 0;
  animation: heroFadeIn 850ms ease-out both;
}

body.home-v2.home-05082026 .h26-hero .h-eyebrow {
  color: var(--h26-gold);
}

body.home-v2.home-05082026 .h26-hero .h-eyebrow::before {
  background: var(--h26-gold);
  transform-origin: left;
  animation: heroEyebrowLine 1100ms ease-out both;
}

body.home-v2.home-05082026 .h26-hero h1 {
  max-width: 12.5ch;
  margin: 20px 0 0;
  color: #eef1f5;
  font-size: clamp(3.25rem, 5.9vw, 5.8rem);
  font-weight: 650;
  line-height: 0.95;
  overflow-wrap: break-word;
}

body.home-v2.home-05082026 .h26-hero-sub {
  max-width: 55ch;
  margin: 26px 0 0;
  color: rgba(247, 244, 239, 0.78);
  font-size: clamp(1.06rem, 1.3vw, 1.2rem);
  line-height: 1.62;
  overflow-wrap: break-word;
}

body.home-v2.home-05082026 .h26-hero-actions,
body.home-v2.home-05082026 .h26-closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

body.home-v2.home-05082026 .h26-hero .h26-hero-actions {
  margin-top: 36px;
}

body.home-v2.home-05082026 .h26-hero .h-btn-primary {
  color: #0a0a0c;
  background: #eef1f2;
  border-color: #eef1f2;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

body.home-v2.home-05082026 .h26-hero .h-btn-primary:hover,
body.home-v2.home-05082026 .h26-hero .h-btn-primary:focus-visible {
  color: #0a0a0c;
  background: #5a82ff;
  border-color: #5a82ff;
}

body.home-v2.home-05082026 .h26-hero .h-btn-ghost {
  color: #eef1f5;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(247, 244, 239, 0.46);
  backdrop-filter: blur(12px);
}

body.home-v2.home-05082026 .h26-hero .h-btn-ghost:hover,
body.home-v2.home-05082026 .h26-hero .h-btn-ghost:focus-visible {
  color: #0a0a0c;
  background: #eef1f5;
  border-color: #ffffff;
}

body.home-v2.home-05082026 .h26-hero-media,
body.home-v2.home-05082026 .h26-quick-media,
body.home-v2.home-05082026 .h26-closing-media {
  margin: 0;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

body.home-v2.home-05082026 .h26-hero-media {
  position: relative;
  isolation: isolate;
  margin: 0;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border-radius: 0;
}

body.home-v2.home-05082026 .h26-hero-media::before {
  display: none;
}

body.home-v2.home-05082026 .h26-quick-media img,
body.home-v2.home-05082026 .h26-closing-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eef1f5;
}

body.home-v2.home-05082026 .h26-hero-showcase {
  overflow: visible;
}

body.home-v2.home-05082026 .hero-visual {
  position: relative;
  animation: heroFloatFrame 13s ease-in-out infinite alternate;
}

body.home-v2.home-05082026 .hero-visual-frame {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  background: #0a0a0c;
  border-radius: 0;
  aspect-ratio: 16 / 9;
}

body.home-v2.home-05082026 .hero-visual-frame picture,
body.home-v2.home-05082026 .h26-quick-media picture,
body.home-v2.home-05082026 .h26-closing-media picture,
body.home-v2.home-05082026 .h26-service-card picture,
body.home-v2.home-05082026 .h26-process-step picture,
body.home-v2.home-05082026 .h26-proof-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

body.home-v2.home-05082026 .hero-visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.home-v2.home-05082026 .hero-proof-bar {
  position: relative;
  z-index: 2;
  margin-top: clamp(34px, 5vw, 56px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(247, 244, 239, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

body.home-v2.home-05082026 .hero-proof-track {
  display: flex;
  width: max-content;
  animation: heroProofRail 34s linear infinite;
}

body.home-v2.home-05082026 .hero-proof-set {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 10px 12px;
  list-style: none;
}

body.home-v2.home-05082026 .hero-proof-set li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  white-space: nowrap;
  color: rgba(250, 247, 242, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(247, 244, 239, 0.10);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

body.home-v2.home-05082026 .hero-proof-set li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--h26-copper);
}

body.home-v2.home-05082026 .h26-quick,
body.home-v2.home-05082026 .h26-services,
body.home-v2.home-05082026 .h26-process {
  padding: 82px 0;
}

body.home-v2.home-05082026 .h26-quick-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
  align-items: center;
}

body.home-v2.home-05082026 .h26-quick-copy h2,
body.home-v2.home-05082026 .h26-section-head h2,
body.home-v2.home-05082026 .h26-proof h2,
body.home-v2.home-05082026 .h26-closing h2 {
  margin: 16px 0 0;
  color: var(--h26-ink);
  font-size: 3.05rem;
  font-weight: 630;
  line-height: 1.04;
}

body.home-v2.home-05082026 .h26-quick-copy p,
body.home-v2.home-05082026 .h26-section-head p,
body.home-v2.home-05082026 .h26-closing p {
  max-width: 51ch;
  margin: 22px 0 0;
  color: var(--h26-soft-ink);
  font-size: 1.05rem;
  line-height: 1.62;
}

body.home-v2.home-05082026 .h26-output-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  overflow: hidden;
  background: #eef1f5;
  border: 1px solid var(--h26-line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(10, 10, 12, 0.06);
}

body.home-v2.home-05082026 .h26-output-row div {
  display: grid;
  gap: 9px;
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid var(--h26-line);
}

body.home-v2.home-05082026 .h26-output-row div:last-child {
  border-right: 0;
}

body.home-v2.home-05082026 .h26-output-row span {
  color: var(--h26-copper);
  font-size: 0.78rem;
  font-weight: 800;
}

body.home-v2.home-05082026 .h26-output-row strong {
  color: var(--h26-ink);
  font-size: 1rem;
  line-height: 1.22;
}

body.home-v2.home-05082026 .h26-quick-media {
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.home-v2.home-05082026 .h26-quick-media img,
body.home-v2.home-05082026 .h26-closing-media img {
  display: block;
  border-radius: 0;
}

body.home-v2.home-05082026 .h26-services {
  background: var(--h26-ivory);
  border-top: 1px solid var(--h26-line);
  border-bottom: 1px solid var(--h26-line);
}

body.home-v2.home-05082026 .h26-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

body.home-v2.home-05082026 .h26-section-head h2 {
  max-width: 15ch;
}

body.home-v2.home-05082026 .h26-section-head p {
  margin: 0;
}

body.home-v2.home-05082026 .h26-section-head-narrow {
  display: block;
  max-width: 720px;
}

body.home-v2.home-05082026 .h26-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body.home-v2.home-05082026 .h26-service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  transition: transform 240ms ease, opacity 240ms ease;
}

body.home-v2.home-05082026 .h26-service-card:hover,
body.home-v2.home-05082026 .h26-service-card:focus-visible {
  transform: translateY(-4px);
  opacity: 0.92;
  outline: none;
}

body.home-v2.home-05082026 .h26-service-card figure,
body.home-v2.home-05082026 .h26-process-step figure {
  margin: 0;
  overflow: hidden;
  background: #eef1f5;
}

body.home-v2.home-05082026 .h26-service-card figure {
  aspect-ratio: 4 / 3;
}

body.home-v2.home-05082026 .h26-service-card img,
body.home-v2.home-05082026 .h26-process-step img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 650ms ease;
}

body.home-v2.home-05082026 .h26-service-card:hover img,
body.home-v2.home-05082026 .h26-service-card:focus-visible img,
body.home-v2.home-05082026 .h26-process-step:hover img,
body.home-v2.home-05082026 .h26-process-step:focus-within img {
  transform: scale(1.025);
}

body.home-v2.home-05082026 .h26-service-card div {
  display: grid;
  gap: 10px;
  padding: 22px 20px;
}

body.home-v2.home-05082026 .h26-service-card span {
  color: var(--h26-copper);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.home-v2.home-05082026 .h26-service-card h3 {
  margin: 0;
  color: var(--h26-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

body.home-v2.home-05082026 .h26-service-card p {
  margin: 0;
  color: var(--h26-muted);
  font-size: 0.94rem;
  line-height: 1.52;
}

body.home-v2.home-05082026 .h26-proof {
  padding: 86px 0;
  color: #eef1f5;
  background:
    linear-gradient(135deg, rgba(166, 124, 82, 0.08), transparent 45%),
    var(--h26-green-deep);
}

body.home-v2.home-05082026 .h26-proof-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 62px;
  align-items: center;
}

body.home-v2.home-05082026 .h26-proof .h-eyebrow,
body.home-v2.home-05082026 .h26-closing .h-eyebrow {
  color: #2251ff;
}

body.home-v2.home-05082026 .h26-proof .h-eyebrow::before,
body.home-v2.home-05082026 .h26-closing .h-eyebrow::before {
  background: #2251ff;
}

body.home-v2.home-05082026 .h26-proof h2,
body.home-v2.home-05082026 .h26-closing h2 {
  color: #ffffff;
}

body.home-v2.home-05082026 .h26-proof p {
  max-width: 48ch;
  margin: 22px 0 28px;
  color: rgba(247, 244, 239, 0.74);
  font-size: 1.05rem;
  line-height: 1.62;
}

body.home-v2.home-05082026 .h26-proof .h-link {
  color: #ffffff;
  border-bottom-color: rgba(247, 244, 239, 0.78);
}

body.home-v2.home-05082026 .h26-proof-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.home-v2.home-05082026 .h26-proof-visual {
  display: grid;
  gap: 16px;
  min-width: 0;
}

body.home-v2.home-05082026 .h26-proof-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.22);
}

body.home-v2.home-05082026 .h26-proof-media::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(6, 40, 29, 0.22), transparent 58%);
}

body.home-v2.home-05082026 .h26-proof-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
}

body.home-v2.home-05082026 .h26-proof-card {
  display: grid;
  gap: 11px;
  min-height: 158px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

body.home-v2.home-05082026 .h26-proof-card span {
  color: #2251ff;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.home-v2.home-05082026 .h26-proof-card strong {
  color: #ffffff;
  font-family: var(--h-serif);
  font-size: 1.28rem;
  font-weight: 580;
  line-height: 1.25;
}

body.home-v2.home-05082026 .h26-process {
  background: #eef1f5;
}

body.home-v2.home-05082026 .h26-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

body.home-v2.home-05082026 .h26-process-step {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 240ms ease, opacity 240ms ease;
}

body.home-v2.home-05082026 .h26-process-step:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}

body.home-v2.home-05082026 .h26-process-step figure {
  aspect-ratio: 4 / 3;
}

body.home-v2.home-05082026 .h26-process-step > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin: -20px 0 0 22px;
  position: relative;
  z-index: 2;
  color: #eef1f5;
  background: var(--green-dark);
  border: 3px solid var(--paper);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

body.home-v2.home-05082026 .h26-process-step h3 {
  margin: 16px 0 0;
  padding: 0 18px;
  color: var(--h26-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

body.home-v2.home-05082026 .h26-process-step p {
  margin: 10px 0 24px;
  padding: 0 18px;
  color: var(--h26-muted);
  font-size: 0.93rem;
  line-height: 1.58;
}

body.home-v2.home-05082026 .h26-closing {
  padding: 86px 0;
  color: #eef1f5;
  background:
    linear-gradient(135deg, #0a0a0c 0%, #141416 54%, #1c1a18 100%);
}

body.home-v2.home-05082026 .h26-closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 54px;
  align-items: center;
}

body.home-v2.home-05082026 .h26-closing p {
  color: rgba(247, 244, 239, 0.78);
}

body.home-v2.home-05082026 .h26-closing .h-btn-primary {
  color: var(--h26-green-deep);
  background: #eef1f5;
  border-color: #ffffff;
}

body.home-v2.home-05082026 .h26-closing .h-btn-primary:hover,
body.home-v2.home-05082026 .h26-closing .h-btn-primary:focus-visible {
  color: var(--h26-green-deep);
  background: #f0ebe3;
  border-color: #f0ebe3;
}

body.home-v2.home-05082026 .h26-closing .h-btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

body.home-v2.home-05082026 .h26-closing .h-btn-ghost:hover,
body.home-v2.home-05082026 .h26-closing .h-btn-ghost:focus-visible {
  color: var(--h26-green-deep);
  background: #eef1f5;
  border-color: #ffffff;
}

body.home-v2.home-05082026 .h26-closing-media {
  overflow: hidden;
  padding: 10px;
  background: #eef1f5;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
}

body.home-v2.home-05082026 .h26-closing-media img {
  border-radius: 5px;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroEyebrowLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes heroGoldLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes heroCrossfade {
  0%,
  28% {
    opacity: 1;
    transform: scale(1.035) translateY(0);
  }
  36%,
  92% {
    opacity: 0;
    transform: scale(1.08) translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: scale(1.035) translateY(0);
  }
}

@keyframes heroFloatFrame {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

@keyframes heroProofRail {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1320px) {
  body.home-v2.home-05082026 .h26-hero-grid,
  body.home-v2.home-05082026 .h26-quick-grid,
  body.home-v2.home-05082026 .h26-proof-grid,
  body.home-v2.home-05082026 .h26-closing-grid {
    grid-template-columns: 1fr;
  }

  body.home-v2.home-05082026 .h26-hero-media,
  body.home-v2.home-05082026 .h26-quick-media,
  body.home-v2.home-05082026 .h26-closing-media {
    max-width: min(760px, 100%);
  }

  body.home-v2.home-05082026 .h26-hero-showcase {
    max-width: min(940px, 100%);
  }

  body.home-v2.home-05082026 .h26-service-grid,
  body.home-v2.home-05082026 .h26-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.home-v2.home-05082026 .h26-hero {
    padding: 64px 0 46px;
  }

  body.home-v2.home-05082026 .h26-quick,
  body.home-v2.home-05082026 .h26-services,
  body.home-v2.home-05082026 .h26-process,
  body.home-v2.home-05082026 .h26-proof,
  body.home-v2.home-05082026 .h26-closing {
    padding: 64px 0;
  }

  body.home-v2.home-05082026 .h26-quick-copy h2,
  body.home-v2.home-05082026 .h26-section-head h2,
  body.home-v2.home-05082026 .h26-proof h2,
  body.home-v2.home-05082026 .h26-closing h2 {
    font-size: 2.45rem;
  }

  body.home-v2.home-05082026 .h26-section-head {
    display: block;
  }

  body.home-v2.home-05082026 .h26-section-head p {
    margin-top: 18px;
  }

  body.home-v2.home-05082026 .h26-proof-stack {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px) {
  body.home-v2.home-05082026 .h-wrap {
    width: calc(100% - 72px);
  }

  body.home-v2.home-05082026 .h26-hero-grid,
  body.home-v2.home-05082026 .h26-quick-grid,
  body.home-v2.home-05082026 .h26-proof-grid,
  body.home-v2.home-05082026 .h26-closing-grid {
    gap: 34px;
  }

  body.home-v2.home-05082026 .h26-hero h1 {
    max-width: 11.5ch;
  }

  body.home-v2.home-05082026 .h26-hero-copy,
  body.home-v2.home-05082026 .h26-quick-copy,
  body.home-v2.home-05082026 .h26-closing-copy {
    width: 100%;
    max-width: 100%;
  }

  body.home-v2.home-05082026 .h26-hero-sub,
  body.home-v2.home-05082026 .h26-hero-actions {
    width: 100%;
    max-width: 100%;
  }

  body.home-v2.home-05082026 .h26-quick-copy h2,
  body.home-v2.home-05082026 .h26-section-head h2,
  body.home-v2.home-05082026 .h26-proof h2,
  body.home-v2.home-05082026 .h26-closing h2 {
    font-size: 2.05rem;
  }

  body.home-v2.home-05082026 .h26-hero-actions,
  body.home-v2.home-05082026 .h26-closing-actions {
    display: grid;
  }

  body.home-v2.home-05082026 .h26-hero-actions .h-btn,
  body.home-v2.home-05082026 .h26-closing-actions .h-btn {
    justify-content: center;
    width: 100%;
  }

  body.home-v2.home-05082026 .h26-output-row,
  body.home-v2.home-05082026 .h26-service-grid,
  body.home-v2.home-05082026 .h26-process-grid {
    grid-template-columns: 1fr;
  }

  body.home-v2.home-05082026 .h26-output-row div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--h26-line);
  }

  body.home-v2.home-05082026 .h26-output-row div:last-child {
    border-bottom: 0;
  }

  body.home-v2.home-05082026 .h26-hero-media,
  body.home-v2.home-05082026 .h26-quick-media,
  body.home-v2.home-05082026 .h26-closing-media {
    justify-self: start;
    width: 100%;
    overflow: hidden;
    padding: 7px;
  }

  body.home-v2.home-05082026 .h26-hero-media::before {
    display: none;
  }

  body.home-v2.home-05082026 .hero-visual {
    animation: none;
  }

  body.home-v2.home-05082026 .hero-visual-frame {
    aspect-ratio: 4 / 3;
  }

  body.home-v2.home-05082026 .hero-proof-bar {
    border-radius: 18px;
    mask-image: none;
  }

  body.home-v2.home-05082026 .hero-proof-track {
    animation-duration: 42s;
  }

  body.home-v2.home-05082026 .hero-proof-set {
    gap: 8px;
  }

  body.home-v2.home-05082026 .h26-quick-media img,
  body.home-v2.home-05082026 .h26-closing-media img {
    width: 100%;
    margin-inline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-v2.home-05082026 *,
  body.home-v2.home-05082026 *::before,
  body.home-v2.home-05082026 *::after {
    animation: none !important;
    transition: none !important;
  }

  body.home-v2.home-05082026 .hero-proof-track {
    flex-wrap: wrap;
    width: 100%;
  }

  body.home-v2.home-05082026 .hero-proof-set {
    flex-wrap: wrap;
  }

  body.home-v2.home-05082026 .hero-proof-set[aria-hidden="true"] {
    display: none;
  }

  body.home-v2.home-05082026 .h26-service-card,
  body.home-v2.home-05082026 .h26-service-card img,
  body.home-v2.home-05082026 .h26-process-step img {
    transition: none;
  }

  body.home-v2.home-05082026 .h26-service-card:hover,
  body.home-v2.home-05082026 .h26-service-card:focus-visible,
  body.home-v2.home-05082026 .h26-service-card:hover img,
  body.home-v2.home-05082026 .h26-service-card:focus-visible img,
  body.home-v2.home-05082026 .h26-process-step:hover img,
  body.home-v2.home-05082026 .h26-process-step:focus-within img {
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE PREMIUM MOTION GRAPHIC REVAMP
   Scoped to index.html body.home-05082026. Built as an additive
   layer so existing navigation, content, forms, and URLs remain stable.
   ═══════════════════════════════════════════════════════════ */

body.home-v2.home-05082026 {
  --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --h26-obsidian: #071827;
  --h26-forest: #0f2b4d;
  --h26-copper: var(--accent-gold);
  --h26-ivory: #eef1f5;
  --h26-fog: #e8eef6;
  --pointer-x: 0;
  --pointer-y: 0;
  background:
    radial-gradient(circle at 14% 9%, rgba(34, 81, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 44%, #ffffff 100%);
}

body.home-v2.home-05082026::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(3, 18, 13, 0.92) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 18, 13, 0.92) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0, transparent 74%);
}

body.home-v2.home-05082026::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.028;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.9), transparent 0.14rem),
    radial-gradient(circle at 70% 60%, rgba(3, 18, 13, 0.9), transparent 0.11rem);
  background-size: 3px 3px, 4px 4px;
  mix-blend-mode: multiply;
}

body.home-v2.home-05082026 main,
body.home-v2.home-05082026 .site-header,
body.home-v2.home-05082026 .site-footer,
body.home-v2.home-05082026 .footer-newsletter-strip {
  position: relative;
}

body.home-v2.home-05082026 .wa-float {
  position: fixed;
  z-index: 120;
}

body.home-v2.home-05082026 main {
  z-index: 1;
}

body.home-v2.home-05082026 .site-header {
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 46px rgba(3, 18, 13, 0.055);
}

body.home-v2.home-05082026 .h-btn,
body.home-v2.home-05082026 .site-nav a,
body.home-v2.home-05082026 .footer-nl-btn {
  transition:
    transform 180ms var(--motion-ease),
    color 180ms var(--motion-smooth),
    background-color 180ms var(--motion-smooth),
    border-color 180ms var(--motion-smooth),
    box-shadow 220ms var(--motion-smooth);
}

body.home-v2.home-05082026 .h-btn:active,
body.home-v2.home-05082026 .site-nav a:active,
body.home-v2.home-05082026 .footer-nl-btn:active {
  transform: translateY(1px) scale(0.985);
}

body.home-v2.home-05082026 .h26-hero {
  min-height: min(860px, calc(100dvh - 72px));
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at calc(55% + (var(--pointer-x) * 12%)) calc(40% + (var(--pointer-y) * 10%)), rgba(34, 81, 255, 0.28), transparent 18rem),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.12), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 18px),
    linear-gradient(118deg, #06111f 0%, #102f4f 48%, var(--deep-blue) 100%);
}

body.home-v2.home-05082026 .h26-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 248, 235, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 248, 235, 0.04) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(circle at 70% 42%, #000, transparent 58%);
  transform: translate3d(calc(var(--pointer-x) * -10px), calc(var(--pointer-y) * -10px), 0);
}

body.home-v2.home-05082026 .h26-hero h1 {
  max-width: 11.4ch;
  font-size: clamp(3.65rem, 7vw, 7.15rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-wrap: balance;
}

body.home-v2.home-05082026 .kinetic-word {
  position: relative;
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 248, 235, 0.72);
  text-shadow: 0 0 34px rgba(34, 81, 255, 0.18);
}

body.home-v2.home-05082026 .kinetic-word::after {
  content: "decisions";
  position: absolute;
  inset: 0;
  color: #eef1f5;
  clip-path: inset(100% 0 0 0);
  animation: kineticFill 5.8s var(--motion-ease) infinite;
}

body.home-v2.home-05082026 .h26-hero-sub {
  max-width: 58ch;
  color: rgba(255, 248, 235, 0.76);
}

body.home-v2.home-05082026 .h26-hero-media {
  min-height: clamp(360px, 44vw, 560px);
  padding: clamp(10px, 1.2vw, 16px);
  border-color: rgba(255, 248, 235, 0.23);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 248, 235, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
  transform:
    perspective(1200px)
    rotateX(calc(var(--pointer-y) * -2deg))
    rotateY(calc(var(--pointer-x) * 3deg));
  transition: transform 280ms var(--motion-smooth);
}

body.home-v2.home-05082026 .hero-visual-frame {
  border-radius: 26px;
  box-shadow: inset 0 0 0 1px rgba(255, 248, 235, 0.12);
}

body.home-v2.home-05082026 .hero-visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(7, 24, 39, 0.12), transparent 34%, rgba(34, 81, 255, 0.18)),
    repeating-linear-gradient(0deg, rgba(255, 248, 235, 0.06) 0 1px, transparent 1px 11px);
  mix-blend-mode: screen;
}

body.home-v2.home-05082026 .evidence-orbit {
  position: absolute;
  inset: 7%;
  z-index: 4;
  pointer-events: none;
  transform: translate3d(calc(var(--pointer-x) * 18px), calc(var(--pointer-y) * 14px), 0);
  transition: transform 260ms var(--motion-smooth);
}

body.home-v2.home-05082026 .orbit-ring {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(255, 248, 235, 0.28);
  border-radius: 999px;
  opacity: 0.72;
}

body.home-v2.home-05082026 .orbit-ring-one {
  transform: rotate(-10deg);
  animation: orbitPulse 7s var(--motion-smooth) infinite;
}

body.home-v2.home-05082026 .orbit-ring-two {
  inset: 18% 4%;
  border-color: rgba(34, 81, 255, 0.34);
  transform: rotate(19deg);
  animation: orbitPulse 8.4s var(--motion-smooth) -2s infinite;
}

body.home-v2.home-05082026 .orbit-node {
  position: absolute;
  width: clamp(118px, 11vw, 152px);
  padding: 12px 13px;
  color: var(--h26-ivory);
  border: 1px solid rgba(255, 248, 235, 0.24);
  border-radius: 18px;
  background: rgba(3, 18, 13, 0.62);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  animation: nodeDrift 7s var(--motion-smooth) infinite;
}

body.home-v2.home-05082026 .orbit-node strong,
body.home-v2.home-05082026 .orbit-node em {
  display: block;
}

body.home-v2.home-05082026 .orbit-node strong {
  font-family: var(--h-serif);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 650;
  line-height: 1.05;
}

body.home-v2.home-05082026 .orbit-node em {
  margin-top: 5px;
  color: rgba(255, 248, 235, 0.64);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.home-v2.home-05082026 .orbit-node-one {
  top: 2%;
  left: -2%;
}

body.home-v2.home-05082026 .orbit-node-two {
  top: 36%;
  right: -5%;
  animation-delay: -2.2s;
}

body.home-v2.home-05082026 .orbit-node-three {
  right: 18%;
  bottom: -4%;
  animation-delay: -4s;
}

body.home-v2.home-05082026 .orbit-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 81, 255, 0.72), transparent);
  transform-origin: left;
  opacity: 0.8;
  animation: lineScan 4.8s var(--motion-ease) infinite;
}

body.home-v2.home-05082026 .orbit-line-one {
  top: 31%;
  left: 15%;
  width: 58%;
  transform: rotate(18deg);
}

body.home-v2.home-05082026 .orbit-line-two {
  right: 14%;
  bottom: 30%;
  width: 46%;
  transform: rotate(-28deg);
  animation-delay: -1.6s;
}

body.home-v2.home-05082026 .hero-proof-bar {
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body.home-v2.home-05082026 .hero-proof-set li {
  border-radius: 14px;
  transform: translateZ(0);
}

body.home-v2.home-05082026 .daily-insight {
  background:
    radial-gradient(circle at 84% 10%, rgba(34, 81, 255, 0.13), transparent 24rem),
    linear-gradient(180deg, #eef1f5 0%, #ffffff 100%);
}

body.home-v2.home-05082026 .daily-insight__stage {
  border-radius: 30px;
  box-shadow:
    0 34px 90px rgba(3, 18, 13, 0.16),
    0 0 0 1px rgba(6, 40, 29, 0.1);
}

body.home-v2.home-05082026 .h26-quick,
body.home-v2.home-05082026 .h26-services,
body.home-v2.home-05082026 .h26-process,
body.home-v2.home-05082026 .h26-closing,
body.home-v2.home-05082026 .h26-proof {
  position: relative;
  overflow: hidden;
}

body.home-v2.home-05082026 .h26-quick::before,
body.home-v2.home-05082026 .h26-services::before,
body.home-v2.home-05082026 .h26-process::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(31, 78, 121, 0.08), transparent 22rem),
    linear-gradient(90deg, transparent 0 49%, rgba(6, 40, 29, 0.06) 49% 49.12%, transparent 49.12% 100%);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms var(--motion-smooth), transform 800ms var(--motion-smooth);
}

body.home-v2.home-05082026 .premium-motion-in::before {
  opacity: 1;
  transform: translateY(0);
}

body.home-v2.home-05082026.premium-motion-ready .h26-quick,
body.home-v2.home-05082026.premium-motion-ready .h26-services,
body.home-v2.home-05082026.premium-motion-ready .h26-proof,
body.home-v2.home-05082026.premium-motion-ready .h26-process,
body.home-v2.home-05082026.premium-motion-ready .h26-closing,
body.home-v2.home-05082026.premium-motion-ready .daily-insight {
  transition: background-position 760ms var(--motion-ease);
}

body.home-v2.home-05082026.premium-motion-ready .premium-motion-in {
  background-position: 50% 0;
}

body.home-v2.home-05082026 .h26-service-grid {
  grid-template-columns: 1.1fr 0.95fr 1.15fr 0.9fr;
  align-items: stretch;
}

body.home-v2.home-05082026 .h26-service-card,
body.home-v2.home-05082026 .h26-process-step,
body.home-v2.home-05082026 .h26-output-row,
body.home-v2.home-05082026 .h26-quick-media {
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 253, 250, 0.82)),
    #ffffff;
  box-shadow:
    0 0 0 1px rgba(6, 40, 29, 0.06),
    0 22px 60px rgba(13, 24, 19, 0.075);
}

body.home-v2.home-05082026 .h26-service-card {
  position: relative;
  min-height: 100%;
  border-color: rgba(6, 40, 29, 0.11);
}

body.home-v2.home-05082026 .h26-service-card::after,
body.home-v2.home-05082026 .h26-process-step::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(135deg, rgba(34, 81, 255, 0.18), transparent 40%, rgba(31, 78, 121, 0.12));
  transition: opacity 260ms var(--motion-smooth);
}

body.home-v2.home-05082026 .h26-service-card:hover::after,
body.home-v2.home-05082026 .h26-service-card:focus-visible::after,
body.home-v2.home-05082026 .h26-process-step:hover::after,
body.home-v2.home-05082026 .h26-process-step:focus-within::after {
  opacity: 1;
}

body.home-v2.home-05082026 .h26-service-card:hover,
body.home-v2.home-05082026 .h26-service-card:focus-visible,
body.home-v2.home-05082026 .h26-process-step:hover,
body.home-v2.home-05082026 .h26-process-step:focus-within {
  transform: translateY(-7px);
  box-shadow:
    0 0 0 1px rgba(34, 81, 255, 0.18),
    0 34px 78px rgba(13, 24, 19, 0.13);
}

body.home-v2.home-05082026 .h26-service-card figure,
body.home-v2.home-05082026 .h26-process-step figure {
  border-radius: 18px 18px 4px 4px;
}

body.home-v2.home-05082026 .h26-proof {
  background:
    radial-gradient(circle at 75% 18%, rgba(34, 81, 255, 0.21), transparent 26rem),
    radial-gradient(circle at 6% 86%, rgba(255, 248, 235, 0.08), transparent 20rem),
    linear-gradient(135deg, #06111f 0%, var(--navy) 54%, #12365c 100%);
}

body.home-v2.home-05082026 .h26-proof-card {
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

body.home-v2.home-05082026 .h26-process-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: stretch;
}

body.home-v2.home-05082026 .h26-process-step {
  position: relative;
  transition:
    transform 240ms var(--motion-ease),
    box-shadow 240ms var(--motion-smooth),
    border-color 240ms var(--motion-smooth);
}

body.home-v2.home-05082026 .h26-closing {
  background:
    radial-gradient(circle at 80% 28%, rgba(34, 81, 255, 0.24), transparent 24rem),
    linear-gradient(135deg, #071827 0%, #102f4f 55%, var(--deep-blue) 100%);
}

@keyframes kineticFill {
  0%, 18% {
    clip-path: inset(100% 0 0 0);
  }
  38%, 72% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 100% 0);
  }
}

@keyframes orbitPulse {
  0%, 100% {
    opacity: 0.38;
    transform: rotate(-10deg) scale(0.96);
  }
  50% {
    opacity: 0.82;
    transform: rotate(8deg) scale(1.03);
  }
}

@keyframes nodeDrift {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes lineScan {
  0%, 100% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  20%, 72% {
    opacity: 0.86;
  }
  50% {
    clip-path: inset(0 0 0 0);
  }
}

@media (max-width: 1320px) {
  body.home-v2.home-05082026 .h26-service-grid,
  body.home-v2.home-05082026 .h26-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.home-v2.home-05082026 .h26-hero {
    min-height: auto;
  }

  body.home-v2.home-05082026 .h26-hero h1 {
    font-size: clamp(3.05rem, 17vw, 4.7rem);
    line-height: 0.9;
  }

  body.home-v2.home-05082026 .evidence-orbit {
    inset: 5%;
  }

  body.home-v2.home-05082026 .orbit-node {
    width: 112px;
    padding: 10px;
  }

  body.home-v2.home-05082026 .orbit-node-two {
    right: -3%;
  }
}

@media (max-width: 620px) {
  body.home-v2.home-05082026 .h26-service-grid,
  body.home-v2.home-05082026 .h26-process-grid {
    grid-template-columns: 1fr;
  }

  body.home-v2.home-05082026 .h26-service-card,
  body.home-v2.home-05082026 .h26-process-step,
  body.home-v2.home-05082026 .h26-output-row,
  body.home-v2.home-05082026 .h26-quick-media,
  body.home-v2.home-05082026 .daily-insight__stage {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-v2.home-05082026::before,
  body.home-v2.home-05082026::after,
  body.home-v2.home-05082026 .kinetic-word::after,
  body.home-v2.home-05082026 .orbit-ring,
  body.home-v2.home-05082026 .orbit-node,
  body.home-v2.home-05082026 .orbit-line {
    animation: none !important;
  }

  body.home-v2.home-05082026.premium-motion-ready .h26-quick,
  body.home-v2.home-05082026.premium-motion-ready .h26-services,
  body.home-v2.home-05082026.premium-motion-ready .h26-proof,
  body.home-v2.home-05082026.premium-motion-ready .h26-process,
  body.home-v2.home-05082026.premium-motion-ready .h26-closing,
  body.home-v2.home-05082026.premium-motion-ready .daily-insight {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   WORK PAGE PREMIUM REDESIGN
   Scoped to work.html body.work-premium.
   ═══════════════════════════════════════════════════════════ */

body.work-premium {
  --workx-ink: #111827;
  --workx-muted: #374151;
  --workx-paper: #fbfaf5;
  --workx-soft: #f1f6f0;
  --workx-green: var(--navy);
  --workx-green-2: var(--deep-blue);
  --workx-gold: var(--accent-gold);
  --workx-line: rgba(6, 40, 29, 0.13);
  --workx-shadow: 0 26px 70px rgba(13, 24, 19, 0.12);
  background: var(--workx-paper);
  color: var(--workx-ink);
}

body.work-premium main {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--workx-paper) 42%, #ffffff 100%);
}

body.work-premium .workx-wrap {
  width: min(calc(100% - 32px), 1440px);
  margin-inline: auto;
}

body.work-premium .workx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--workx-gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.work-premium .workx-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  animation: workxLineIn 1200ms ease-out both;
}

body.work-premium .workx-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 130px) 0 clamp(34px, 5vw, 58px);
  color: #eef1f5;
  background:
    radial-gradient(circle at 82% 18%, rgba(34, 81, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 18px),
    linear-gradient(118deg, #071827 0%, var(--navy) 54%, #12365c 100%);
}

body.work-premium .workx-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 81, 255, 0.9), transparent);
}

body.work-premium .workx-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: center;
}

body.work-premium .workx-hero-copy {
  max-width: 680px;
  animation: workxFadeUp 800ms ease-out both;
}

body.work-premium .workx-hero h1,
body.work-premium .workx-section-head h2,
body.work-premium .workx-question-copy h2,
body.work-premium .workx-closing h2 {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

body.work-premium .workx-hero h1 {
  max-width: 13ch;
  margin: 22px 0 0;
  color: #eef1f5;
  font-size: clamp(3rem, 5.8vw, 5.7rem);
  font-weight: 650;
  line-height: 0.96;
}

body.work-premium .workx-hero-copy > p:not(.workx-eyebrow) {
  max-width: 56ch;
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(1.04rem, 1.3vw, 1.18rem);
  line-height: 1.65;
}

body.work-premium .workx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}

body.work-premium .workx-hero .button-primary,
body.work-premium .workx-closing .button-primary {
  color: var(--workx-green);
  background: #fff8ea;
  border-color: #fff8ea;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

body.work-premium .workx-hero .button-primary:hover,
body.work-premium .workx-hero .button-primary:focus-visible,
body.work-premium .workx-closing .button-primary:hover,
body.work-premium .workx-closing .button-primary:focus-visible {
  color: var(--workx-green);
  background: #5a82ff;
  border-color: #5a82ff;
}

body.work-premium .workx-hero .button-outline {
  color: #eef1f5;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 250, 240, 0.42);
}

body.work-premium .workx-hero-visual {
  position: relative;
  min-width: 0;
  animation: workxFloat 12s ease-in-out infinite alternate;
}

body.work-premium .workx-workbook {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

body.work-premium .workx-workbook::before {
  content: "";
  position: absolute;
  inset: 28px -18px -22px 34px;
  z-index: -1;
  border: 1px solid rgba(34, 81, 255, 0.26);
  border-radius: 30px;
  background: repeating-linear-gradient(135deg, rgba(34, 81, 255, 0.08) 0 1px, transparent 1px 13px);
  transform: rotate(1deg);
}

body.work-premium .workx-workbook img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  transform: scale(1.01);
  animation: workxImageReveal 1200ms ease-out both;
}

body.work-premium .workx-visual-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: 350px;
  padding: 16px 18px;
  color: #eef1f5;
  background: rgba(6, 40, 29, 0.76);
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 18px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

body.work-premium .workx-visual-note span,
body.work-premium .workx-output-card span,
body.work-premium .workx-case-card > span {
  color: var(--workx-gold);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.work-premium .workx-visual-note strong {
  display: block;
  margin-top: 7px;
  font-size: 0.98rem;
  line-height: 1.35;
}

body.work-premium .workx-proof-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(38px, 5vw, 64px);
  overflow: hidden;
  background: rgba(255, 250, 240, 0.12);
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 24px;
  backdrop-filter: blur(14px);
}

body.work-premium .workx-proof-strip div {
  display: grid;
  gap: 4px;
  min-height: 108px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

body.work-premium .workx-proof-strip strong {
  color: #eef1f5;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 650;
  line-height: 1;
}

body.work-premium .workx-proof-strip span {
  color: rgba(255, 250, 240, 0.66);
  font-size: 0.86rem;
  line-height: 1.35;
}

body.work-premium .workx-map,
body.work-premium .workx-output-section,
body.work-premium .workx-questions,
body.work-premium .workx-selected,
body.work-premium .workx-method,
body.work-premium .workx-closing {
  padding: clamp(76px, 9vw, 126px) 0;
}

body.work-premium .workx-map {
  background: #eef1f5;
}

body.work-premium .workx-section-head {
  max-width: 780px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

body.work-premium .workx-section-head-wide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 44px;
  align-items: end;
  max-width: none;
}

body.work-premium .workx-section-head h2,
body.work-premium .workx-question-copy h2,
body.work-premium .workx-closing h2 {
  margin: 16px 0 0;
  color: var(--workx-ink);
  font-size: clamp(2.1rem, 4vw, 3.9rem);
  font-weight: 650;
  line-height: 1.02;
}

body.work-premium .workx-section-head p,
body.work-premium .workx-question-copy p,
body.work-premium .workx-closing p {
  margin: 20px 0 0;
  color: var(--workx-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

body.work-premium .workx-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

body.work-premium .workx-flow::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 81, 255, 0.9), transparent);
  transform-origin: left;
  animation: workxLineIn 1600ms ease-out both;
}

body.work-premium .workx-flow article {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 28px 22px 24px;
  background: var(--workx-paper);
  border: 1px solid var(--workx-line);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(10, 10, 12, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body.work-premium .workx-flow article:hover,
body.work-premium .workx-output-card:hover,
body.work-premium .workx-case-card:hover,
body.work-premium .workx-question-cards article:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 81, 255, 0.38);
  box-shadow: var(--workx-shadow);
}

body.work-premium .workx-flow span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--workx-green);
  background: #fff7e5;
  border: 1px solid rgba(34, 81, 255, 0.28);
  border-radius: 999px;
  font-weight: 850;
}

body.work-premium .workx-flow h3,
body.work-premium .workx-output-card h3,
body.work-premium .workx-case-card h3 {
  margin: 0;
  color: var(--workx-ink);
  font-size: 1.28rem;
  line-height: 1.12;
}

body.work-premium .workx-flow p,
body.work-premium .workx-output-card p,
body.work-premium .workx-case-card p {
  margin: 0;
  color: var(--workx-muted);
  line-height: 1.5;
}

body.work-premium .workx-output-section {
  background: var(--workx-soft);
  border-top: 1px solid var(--workx-line);
  border-bottom: 1px solid var(--workx-line);
}

body.work-premium .workx-output-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body.work-premium .workx-output-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
  background: #eef1f5;
  border: 1px solid var(--workx-line);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(13, 24, 19, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body.work-premium .workx-output-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

body.work-premium .workx-output-card figure {
  margin: 0;
  overflow: hidden;
  background: #eef1f5;
}

body.work-premium .workx-output-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

body.work-premium .workx-output-card-large img {
  aspect-ratio: 16 / 11;
  object-position: center top;
}

body.work-premium .workx-output-card:hover img {
  transform: scale(1.035);
}

body.work-premium .workx-output-card div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

body.work-premium .workx-questions {
  color: #eef1f5;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px),
    var(--workx-green);
}

body.work-premium .workx-question-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

body.work-premium .workx-questions h2,
body.work-premium .workx-questions p {
  color: #eef1f5;
}

body.work-premium .workx-questions p {
  color: rgba(255, 250, 240, 0.72);
}

body.work-premium .workx-question-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.work-premium .workx-question-cards article {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 24px;
  color: #eef1f5;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 250, 240, 0.15);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body.work-premium .workx-question-cards span {
  color: var(--workx-gold);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.work-premium .workx-question-cards strong {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  font-weight: 650;
  line-height: 1.05;
}

body.work-premium .workx-selected {
  background: #eef1f5;
}

body.work-premium .workx-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body.work-premium .workx-case-card {
  display: grid;
  gap: 16px;
  min-height: 340px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 248, 241, 0.98));
  border: 1px solid var(--workx-line);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(10, 10, 12, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body.work-premium .workx-case-card dl {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
}

body.work-premium .workx-case-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--workx-line);
}

body.work-premium .workx-case-card dt {
  color: var(--workx-muted);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.work-premium .workx-case-card dd {
  margin: 0;
  color: var(--workx-ink);
  font-weight: 720;
  text-align: right;
}

body.work-premium .workx-method {
  background: var(--workx-soft);
  border-top: 1px solid var(--workx-line);
  border-bottom: 1px solid var(--workx-line);
}

body.work-premium .workx-method-rail {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--workx-line);
}

body.work-premium .workx-method-rail li {
  position: relative;
  min-height: 156px;
  padding: 30px 18px;
  border-right: 1px solid var(--workx-line);
}

body.work-premium .workx-method-rail li:last-child {
  border-right: 0;
}

body.work-premium .workx-method-rail li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--workx-gold);
  box-shadow: 0 0 0 7px rgba(34, 81, 255, 0.14);
}

body.work-premium .workx-method-rail span {
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--workx-ink);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 650;
}

body.work-premium .workx-closing {
  color: #eef1f5;
  background:
    radial-gradient(circle at 80% 10%, rgba(34, 81, 255, 0.16), transparent 32%),
    var(--workx-green);
}

body.work-premium .workx-closing-inner {
  max-width: 920px;
}

body.work-premium .workx-closing h2 {
  max-width: 15ch;
  color: #eef1f5;
}

body.work-premium .workx-closing p {
  max-width: 56ch;
  color: rgba(255, 250, 240, 0.72);
}

body.work-premium .workx-closing .button-secondary-dark {
  color: #eef1f5;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 250, 240, 0.36);
}

body.work-premium .workx-flow article,
body.work-premium .workx-output-card,
body.work-premium .workx-question-cards article,
body.work-premium .workx-case-card,
body.work-premium .workx-method-rail li {
  animation: workxReveal both;
  animation-timeline: view();
  animation-range: entry 0% cover 28%;
}

@keyframes workxFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes workxFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

@keyframes workxImageReveal {
  from {
    opacity: 0.78;
    transform: scale(1.045) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1.01) translateY(0);
  }
}

@keyframes workxLineIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes workxReveal {
  from {
    opacity: 0.001;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  body.work-premium .workx-hero-grid,
  body.work-premium .workx-section-head-wide,
  body.work-premium .workx-question-grid {
    grid-template-columns: 1fr;
  }

  body.work-premium .workx-proof-strip,
  body.work-premium .workx-flow,
  body.work-premium .workx-output-grid,
  body.work-premium .workx-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.work-premium .workx-output-card-large {
    grid-column: span 2;
  }

  body.work-premium .workx-method-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.work-premium .workx-method-rail li {
    border-bottom: 1px solid var(--workx-line);
  }
}

@media (max-width: 700px) {
  body.work-premium .workx-wrap {
    width: min(calc(100% - 28px), 1440px);
  }

  body.work-premium .workx-hero {
    padding-top: 58px;
  }

  body.work-premium .workx-hero h1 {
    max-width: 11.5ch;
  }

  body.work-premium .workx-actions,
  body.work-premium .workx-actions .button {
    width: 100%;
  }

  body.work-premium .workx-actions {
    display: grid;
  }

  body.work-premium .workx-hero-visual {
    animation: none;
  }

  body.work-premium .workx-workbook {
    padding: 7px;
    border-radius: 20px;
  }

  body.work-premium .workx-workbook::before {
    display: none;
  }

  body.work-premium .workx-workbook img {
    aspect-ratio: 4 / 3;
    border-radius: 15px;
  }

  body.work-premium .workx-visual-note {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

  body.work-premium .workx-proof-strip,
  body.work-premium .workx-flow,
  body.work-premium .workx-output-grid,
  body.work-premium .workx-question-cards,
  body.work-premium .workx-case-grid,
  body.work-premium .workx-method-rail {
    grid-template-columns: 1fr;
  }

  body.work-premium .workx-output-card-large {
    grid-column: auto;
  }

  body.work-premium .workx-flow::before {
    display: none;
  }

  body.work-premium .workx-method-rail li,
  body.work-premium .workx-method-rail li:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--workx-line);
  }

  body.work-premium .workx-method-rail li:last-child {
    border-bottom: 0;
  }

  body.work-premium .workx-case-card dl div {
    display: grid;
    gap: 4px;
  }

  body.work-premium .workx-case-card dd {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.work-premium *,
  body.work-premium *::before,
  body.work-premium *::after {
    animation: none !important;
    transition: none !important;
  }

  body.work-premium .workx-flow article,
  body.work-premium .workx-output-card,
  body.work-premium .workx-question-cards article,
  body.work-premium .workx-case-card,
  body.work-premium .workx-method-rail li {
    animation: none !important;
  }
}

/* ─────────────────────────────────────────────────────────
   WORK PAGE — SELECTED OUTPUTS GALLERY
   ───────────────────────────────────────────────────────── */
body.work-gallery {
  /* Align with main MMK brand colors */
  --workg-ink: var(--ink);
  --workg-ink-2: #2c3134;
  --workg-muted: var(--muted);
  --workg-paper: var(--paper);
  --workg-soft: var(--soft);
  --workg-card: var(--paper);
  --workg-green: var(--green);
  --workg-green-2: var(--green-dark);
  --workg-gold: var(--gold);
  --workg-line: var(--line);
  --workg-shadow: var(--shadow);
  background: var(--paper);
  color: var(--ink);
}

body.work-gallery main {
  overflow: hidden;
  background: var(--paper);
}

body.work-gallery .workg-wrap {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
}

body.work-gallery .workg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.work-gallery .workg-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

body.work-gallery .workg-hero {
  position: relative;
  padding: clamp(68px, 8vw, 96px) 0;
  color: var(--paper);
  background: var(--charcoal);
}

body.work-gallery .workg-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

body.work-gallery .workg-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
}

body.work-gallery .workg-hero h1 {
  max-width: 100%;
  margin: 18px 0 0;
  color: var(--paper);
  font-family: inherit;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

body.work-gallery .workg-hero-copy > p:not(.workg-eyebrow) {
  max-width: 60ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.65;
}

body.work-gallery .workg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

body.work-gallery .workg-hero .button-primary,
body.work-gallery .workg-closing .button-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

body.work-gallery .workg-hero .button-primary:hover,
body.work-gallery .workg-hero .button-primary:focus-visible,
body.work-gallery .workg-closing .button-primary:hover,
body.work-gallery .workg-closing .button-primary:focus-visible {
  background: #2251ff;
  border-color: #2251ff;
  color: var(--charcoal);
}

body.work-gallery .workg-hero .button-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--paper);
}

body.work-gallery .workg-hero .button-outline:hover,
body.work-gallery .workg-hero .button-outline:focus-visible {
  border-color: var(--gold);
  background: rgba(245, 179, 0, 0.1);
}

body.work-gallery .workg-hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

body.work-gallery .workg-hero-media::before {
  content: none;
}

body.work-gallery .workg-hero-media figure {
  margin: 0;
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.work-gallery .workg-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

body.work-gallery .workg-hero-badge {
  position: absolute;
  right: clamp(14px, 3vw, 30px);
  bottom: clamp(14px, 3vw, 30px);
  min-width: auto;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

body.work-gallery .workg-hero-badge strong {
  display: inline;
  color: var(--paper);
  font-family: inherit;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
}

body.work-gallery .workg-hero-badge span {
  display: inline;
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.work-gallery .workg-proof {
  padding: clamp(52px, 6vw, 82px) 0;
  background: var(--paper);
}

body.work-gallery .workg-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.work-gallery .workg-proof-grid div {
  min-height: auto;
  padding: 0;
  background: transparent;
  border: none;
}

body.work-gallery .workg-proof-grid strong {
  display: block;
  color: var(--green);
  font-family: inherit;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1;
  font-weight: 700;
}

body.work-gallery .workg-proof-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.work-gallery .workg-gallery-section,
body.work-gallery .workg-reading,
body.work-gallery .workg-domains,
body.work-gallery .workg-archive,
body.work-gallery .workg-closing {
  padding: clamp(76px, 9vw, 126px) 0;
}

body.work-gallery .workg-section-head {
  max-width: 760px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

body.work-gallery .workg-section-head-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  max-width: none;
}

body.work-gallery .workg-section-head h2,
body.work-gallery .workg-reading h2,
body.work-gallery .workg-closing h2 {
  margin: 16px 0 0;
  color: var(--ink);
  font-family: inherit;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

body.work-gallery .workg-section-head p:not(.workg-eyebrow),
body.work-gallery .workg-reading-copy p:not(.workg-eyebrow),
body.work-gallery .workg-closing p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

body.work-gallery .workg-filter-tabs {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 30px;
  padding: 8px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  box-shadow: none;
}

body.work-gallery .workg-filter-tabs button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

body.work-gallery .workg-filter-tabs button:hover,
body.work-gallery .workg-filter-tabs button:focus-visible,
body.work-gallery .workg-filter-tabs button.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--paper);
  outline: none;
}

body.work-gallery .workg-gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

body.work-gallery .workg-output-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(16, 19, 21, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, opacity 220ms ease;
}

body.work-gallery .workg-output-card-featured {
  grid-column: span 2;
}

body.work-gallery .workg-output-card:hover,
body.work-gallery .workg-output-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 16px 34px rgba(16, 19, 21, 0.08);
}

body.work-gallery .workg-image-button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--soft);
  cursor: zoom-in;
}

body.work-gallery .workg-image-button img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 300ms ease;
}

body.work-gallery .workg-output-card:hover .workg-image-button img,
body.work-gallery .workg-output-card:focus-within .workg-image-button img {
  transform: scale(1.03);
}

body.work-gallery .workg-card-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

body.work-gallery .workg-domain-pill {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0, 191, 99, 0.08);
  color: var(--green-dark);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

body.work-gallery .workg-card-body h3 {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-family: inherit;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  font-weight: 600;
}

body.work-gallery .workg-card-body h3::after {
  content: none;
}

body.work-gallery .workg-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

body.work-gallery .workg-card-body small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  display: none;
}

body.work-gallery .workg-card-link {
  width: fit-content;
  margin-top: auto;
  padding-top: 8px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

body.work-gallery .workg-card-link:hover,
body.work-gallery .workg-card-link:focus-visible {
  color: var(--green-dark);
  outline: none;
}

body.work-gallery .workg-output-card.is-filtered-out {
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  pointer-events: none;
}

body.work-gallery .workg-reading {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

body.work-gallery .workg-reading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

body.work-gallery .workg-reading-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.work-gallery .workg-reading-cards article {
  min-height: auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: none;
}

body.work-gallery .workg-reading-cards span,
body.work-gallery .workg-note-card span {
  display: block;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.work-gallery .workg-reading-cards strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-family: inherit;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-weight: 600;
}

body.work-gallery .workg-reading-cards p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.9rem;
}

body.work-gallery .workg-domains {
  background: var(--paper);
}

body.work-gallery .workg-domain-scroll {
  display: grid;
  grid-template-columns: repeat(6, minmax(200px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

body.work-gallery .workg-domain-scroll a {
  position: relative;
  display: flex;
  min-height: 160px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  text-decoration: none;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

body.work-gallery .workg-domain-scroll a::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) var(--bar), rgba(0, 0, 0, 0.05) var(--bar));
}

body.work-gallery .workg-domain-scroll a:hover,
body.work-gallery .workg-domain-scroll a:focus-visible {
  transform: translateY(-3px);
  border-color: var(--green);
  outline: none;
}

body.work-gallery .workg-domain-scroll strong {
  max-width: 100%;
  font-family: inherit;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-weight: 600;
}

body.work-gallery .workg-domain-scroll span {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.work-gallery .workg-archive {
  background: var(--paper);
}

body.work-gallery .workg-archive-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: none;
}

body.work-gallery .workg-archive-filters label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.work-gallery .workg-archive-filters input,
body.work-gallery .workg-archive-filters select {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
}

body.work-gallery .workg-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.work-gallery .workg-note-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: none;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
}

body.work-gallery .workg-note-card:hover,
body.work-gallery .workg-note-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: 0 10px 24px rgba(16, 19, 21, 0.04);
}

body.work-gallery .workg-note-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  font-weight: 600;
}

body.work-gallery .workg-note-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

body.work-gallery .workg-note-card a {
  width: fit-content;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

body.work-gallery .workg-note-card.card-out {
  opacity: 0;
  transform: scale(0.98);
}

body.work-gallery .workg-closing {
  color: var(--paper);
  background: var(--charcoal);
}

body.work-gallery .workg-closing h2 {
  max-width: 100%;
  color: var(--paper);
}

body.work-gallery .workg-closing p {
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.72);
}

body.work-gallery .workg-closing .button-secondary-dark {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--paper);
}

body.work-gallery .workg-closing .button-secondary-dark:hover,
body.work-gallery .workg-closing .button-secondary-dark:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

body.work-gallery .workg-lightbox[hidden] {
  display: none;
}

body.work-gallery .workg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 19, 21, 0.8);
  backdrop-filter: blur(10px);
}

body.work-gallery .workg-lightbox-panel {
  position: relative;
  width: min(1000px, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

body.work-gallery .workg-lightbox-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body.work-gallery .workg-lightbox-copy {
  padding: 24px;
}

body.work-gallery .workg-lightbox-copy span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.work-gallery .workg-lightbox-copy h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-family: inherit;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 600;
}

body.work-gallery .workg-lightbox-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

body.work-gallery .workg-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  min-height: 36px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
}

body.work-gallery .workg-lightbox-close:hover {
  background: var(--paper);
  border-color: var(--green);
}

body.work-gallery .workg-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease, transform 500ms ease;
}

body.work-gallery .workg-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes workgFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-12px);
  }
}

@media (max-width: 1080px) {
  body.work-gallery .workg-hero-grid,
  body.work-gallery .workg-reading-grid,
  body.work-gallery .workg-section-head-split {
    grid-template-columns: 1fr;
  }

  body.work-gallery .workg-hero h1 {
    max-width: 12ch;
  }

  body.work-gallery .workg-proof-grid,
  body.work-gallery .workg-gallery-grid,
  body.work-gallery .workg-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.work-gallery .workg-output-card-featured {
    grid-column: span 1;
  }

  body.work-gallery .workg-archive-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body.work-gallery .workg-wrap {
    width: min(100% - 32px, 1440px);
  }

  body.work-gallery .workg-hero {
    padding-top: 58px;
  }

  body.work-gallery .workg-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  body.work-gallery .workg-actions,
  body.work-gallery .workg-hero .workg-actions,
  body.work-gallery .workg-closing .workg-actions {
    flex-direction: column;
    align-items: stretch;
  }

  body.work-gallery .workg-actions .button {
    justify-content: center;
    width: 100%;
  }

  body.work-gallery .workg-proof-grid,
  body.work-gallery .workg-gallery-grid,
  body.work-gallery .workg-reading-cards,
  body.work-gallery .workg-note-grid,
  body.work-gallery .workg-archive-filters {
    grid-template-columns: 1fr;
  }

  body.work-gallery .workg-proof-grid div {
    min-height: 92px;
  }

  body.work-gallery .workg-filter-tabs {
    border-radius: 22px;
  }

  body.work-gallery .workg-card-body,
  body.work-gallery .workg-reading-cards article,
  body.work-gallery .workg-note-card {
    padding: 20px;
  }

  body.work-gallery .workg-lightbox {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.work-gallery *,
  body.work-gallery *::before,
  body.work-gallery *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  body.work-gallery .workg-reveal {
    opacity: 1;
    transform: none;
  }
}

/* ─────────────────────────────────────────────────────────
   MMK Insights publication system
   ───────────────────────────────────────────────────────── */
.insights-publication {
  --insight-ink: #111827;
  --insight-muted: #374151;
  --insight-green: var(--navy);
  --insight-green-soft: #e8eef6;
  --insight-gold: #2251ff;
  --insight-paper: #f8f6ef;
  --insight-line: #ded6bf;
  background: var(--insight-paper);
  color: var(--insight-ink);
}

.insights-publication .site-header {
  background: rgba(248, 246, 239, 0.92);
  border-bottom: 1px solid var(--insight-line);
  backdrop-filter: blur(14px);
}

.insights-shell {
  width: calc(100% - 32px);
  max-width: 1440px;
  margin: 0 auto;
}

.insights-hero {
  padding: clamp(72px, 9vw, 124px) 0 clamp(56px, 7vw, 92px);
  border-bottom: 1px solid var(--insight-line);
  background:
    radial-gradient(circle at 86% 14%, rgba(184, 154, 91, 0.18), transparent 34%),
    linear-gradient(135deg, #f9f7ef 0%, #f1ecdd 100%);
}

.insights-hero-grid,
.article-publication-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.insights-kicker,
.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--insight-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.insights-kicker::before,
.article-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--insight-gold);
}

.insights-hero h1,
.article-publication-hero h1 {
  margin: 18px 0 0;
  color: var(--insight-ink);
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  font-size: clamp(2.65rem, 5.7vw, 5.45rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 11ch;
}

.insights-hero .lead,
.article-publication-hero .lead {
  max-width: 58ch;
  margin: 26px 0 0;
  color: #344054;
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.insights-actions,
.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.insights-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--insight-green);
  border-radius: 4px;
  font-weight: 750;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.insights-button.primary {
  background: var(--insight-green);
  color: #eef1f5;
}

.insights-button.secondary {
  background: transparent;
  color: var(--insight-green);
}

.insights-button:hover,
.insights-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.insights-button.secondary:hover,
.insights-button.secondary:focus-visible {
  background: var(--insight-green);
  color: #eef1f5;
}

.insights-hero-visual,
.article-feature-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 53, 41, 0.14);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 28px 76px rgba(18, 32, 29, 0.12);
}

.insights-hero-visual picture,
.insights-hero-visual img,
.article-feature-visual img {
  display: block;
  width: 100%;
}

.insights-hero-visual picture {
  height: 100%;
}

.insights-hero-visual img,
.article-feature-visual img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.insights-logo-visual {
  min-height: min(460px, 58vw);
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(239, 232, 210, 0.88)),
    #fffaf3;
}

.insights-logo-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(11, 53, 41, 0.12);
  border-radius: 6px;
}

.insights-logo-visual img {
  width: clamp(96px, 18vw, 176px);
  height: clamp(96px, 18vw, 176px);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 56px rgba(11, 53, 41, 0.18);
}

.insights-proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--insight-line);
  border-bottom: 1px solid var(--insight-line);
  background: var(--insight-line);
}

.insights-proof-row div {
  padding: 22px 24px;
  background: #fffaf3;
}

.insights-proof-row strong {
  display: block;
  color: var(--insight-green);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.1;
}

.insights-proof-row span {
  display: block;
  margin-top: 7px;
  color: var(--insight-muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.insights-section {
  padding: clamp(66px, 8vw, 110px) 0;
}

.insights-section.soft {
  background: #fffaf3;
  border-top: 1px solid var(--insight-line);
  border-bottom: 1px solid var(--insight-line);
}

.insights-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.insights-section-head h2 {
  margin: 14px 0 0;
  color: var(--insight-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.insights-section-head p:last-child {
  max-width: 38ch;
  margin: 0;
  color: var(--insight-muted);
  line-height: 1.65;
}

.insights-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
  border: 1px solid var(--insight-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 62px rgba(18, 32, 29, 0.08);
}

.insights-feature-card figure,
.insights-card figure {
  margin: 0;
  overflow: hidden;
}

.insights-feature-card img,
.insights-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.insights-feature-card:hover img,
.insights-feature-card:focus-within img,
.insights-card:hover img,
.insights-card:focus-within img {
  transform: scale(1.025);
}

.insights-feature-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 58px);
}

.insights-chip {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgba(11, 53, 41, 0.18);
  border-radius: 999px;
  color: var(--insight-green);
  background: var(--insight-green-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insights-feature-body h3,
.insights-card h3 {
  margin: 16px 0 0;
  color: var(--insight-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.insights-feature-body p,
.insights-card p {
  margin: 18px 0 0;
  color: #344054;
  line-height: 1.62;
}

.insights-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
  color: var(--insight-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.category-grid,
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.category-tile,
.insights-card {
  border: 1px solid var(--insight-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(18, 32, 29, 0.055);
}

.category-tile {
  padding: 24px;
}

.category-tile .mark {
  display: block;
  width: 38px;
  height: 3px;
  margin-bottom: 20px;
  background: var(--insight-gold);
}

.category-tile h3 {
  margin: 0;
  color: var(--insight-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.32rem;
  line-height: 1.15;
}

.category-tile p {
  margin: 12px 0 0;
  color: var(--insight-muted);
  line-height: 1.55;
}

.insights-card {
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.insights-card:hover,
.insights-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(11, 53, 41, 0.24);
  box-shadow: 0 24px 58px rgba(18, 32, 29, 0.1);
  outline: none;
}

.insights-card figure {
  aspect-ratio: 16 / 10;
  background: var(--insight-green-soft);
}

.insights-card-body {
  padding: 22px 22px 24px;
}

.insights-card h3 {
  font-size: 1.38rem;
}

.insights-card .read-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--insight-green);
  font-weight: 800;
  text-decoration: none;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 30px;
  background: var(--insight-green);
  color: #eef1f5;
}

.newsletter-panel h2 {
  margin: 0;
  color: #eef1f5;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
}

.newsletter-panel p {
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.78);
  line-height: 1.65;
}

.newsletter-panel .insights-button.primary {
  color: var(--insight-green);
  background: #eef1f5;
  border-color: #eef1f5;
}

.newsletter-panel .insights-button.secondary {
  color: #eef1f5;
  border-color: rgba(255, 250, 240, 0.5);
}

.article-publication-hero {
  padding: clamp(54px, 8vw, 96px) 0 clamp(44px, 6vw, 76px);
  border-bottom: 1px solid var(--insight-line);
  background: linear-gradient(135deg, #f9f7ef 0%, #f5f5f5 100%);
}

.article-publication-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 5.1vw, 4.9rem);
}

.article-publication-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 20px;
  color: var(--insight-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.article-feature-visual figcaption,
.article-figure figcaption {
  padding: 12px 16px;
  color: var(--insight-muted);
  background: #fff;
  border-top: 1px solid var(--insight-line);
  font-size: 0.82rem;
  line-height: 1.4;
}

.article-publication {
  padding: clamp(50px, 7vw, 96px) 0;
}

.article-publication-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: clamp(34px, 5vw, 74px);
  align-items: start;
}

.article-publication-body {
  max-width: 780px;
}

.article-publication-body p,
.article-publication-body li {
  color: #344054;
  font-size: 1.04rem;
  line-height: 1.82;
}

.article-publication-body > p:first-child {
  color: var(--insight-ink);
  font-size: clamp(1.15rem, 1.7vw, 1.32rem);
  line-height: 1.7;
}

.article-publication-body h2 {
  margin: 46px 0 14px;
  color: var(--insight-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.018em;
}

.article-publication-body h3 {
  margin: 34px 0 10px;
  color: var(--insight-green);
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.article-figure,
.evidence-note,
.decision-takeaway,
.mmk-lens,
.source-panel {
  margin: 34px 0;
  border: 1px solid var(--insight-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(18, 32, 29, 0.045);
}

.article-figure {
  overflow: hidden;
}

.article-figure img {
  display: block;
  width: 100%;
}

.evidence-note,
.decision-takeaway,
.mmk-lens,
.source-panel {
  padding: 24px;
}

.evidence-note {
  border-left: 5px solid var(--insight-gold);
}

.decision-takeaway {
  background: var(--insight-green);
  color: #eef1f5;
}

.decision-takeaway h3,
.decision-takeaway p,
.decision-takeaway li {
  color: #eef1f5;
}

.mmk-lens {
  background: #fffaf3;
}

.source-panel h2 {
  margin-top: 0;
}

.source-panel ol {
  margin: 14px 0 0;
  padding-left: 1.25rem;
}

.source-panel li {
  margin-bottom: 12px;
  color: var(--insight-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.source-panel a {
  color: var(--insight-green);
  font-weight: 700;
}

.article-sidebar-card {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--insight-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(18, 32, 29, 0.06);
}

.article-sidebar-card h2,
.article-sidebar-card h3 {
  margin: 0;
  color: var(--insight-ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.35rem;
}

.article-sidebar-card p {
  margin: 0;
  color: var(--insight-muted);
  line-height: 1.55;
}

.article-sidebar-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-sidebar-list a {
  color: var(--insight-green);
  font-weight: 750;
  text-decoration: none;
}

.article-sidebar-list a:hover,
.article-sidebar-list a:focus-visible {
  text-decoration: underline;
}

.breadcrumb.publication {
  margin-bottom: 20px;
  color: var(--insight-muted);
}

.breadcrumb.publication a {
  color: var(--insight-green);
}

.article-inline-chart {
  padding: 24px;
}

.chart-bars {
  display: grid;
  gap: 14px;
}

.chart-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  align-items: center;
}

.chart-row span {
  color: var(--insight-muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.chart-bar {
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--insight-green), var(--insight-gold));
}

@media (max-width: 980px) {
  .insights-hero-grid,
  .insights-feature-card,
  .newsletter-panel,
  .article-publication-grid,
  .article-publication-layout {
    grid-template-columns: 1fr;
  }

  .insights-proof-row,
  .category-grid,
  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-sidebar-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .insights-shell {
    width: calc(100% - 34px);
  }

  .insights-proof-row,
  .category-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insights-section-head {
    display: grid;
    align-items: start;
  }

  .insights-actions,
  .article-actions {
    flex-direction: column;
  }

  .insights-button {
    width: 100%;
  }

  .chart-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .insights-publication *,
  .insights-publication *::before,
  .insights-publication *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.image-frame {
  overflow: hidden;
  border-radius: 24px;
  background: #f4f6f3;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.image-frame:hover img {
  transform: scale(1.035);
}

body.services-premium .service-slider-button:active,
body.services-premium .finance-model-cta:active,
.consultant-card:active {
  transform: scale(0.98);
}

/* ─────────────────────────────────────────────────────────
   Premium motion polish
   ───────────────────────────────────────────────────────── */

.premium-motion-ready .site-header {
  box-shadow: 0 10px 32px rgba(5, 28, 44, 0.06);
}

.premium-motion-ready .image-frame,
.premium-motion-ready .hero-media,
.premium-motion-ready .cluster-visual,
.premium-motion-ready .cin-split-media,
.premium-motion-ready .article-hero-media,
.premium-motion-ready .slideshow-hero-media,
.premium-motion-ready .engagement-media,
.premium-motion-ready .engagement-media-collage,
.premium-motion-ready .publication-image-frame,
.premium-motion-ready .work-image-frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.premium-motion-ready .image-frame::after,
.premium-motion-ready .hero-media::after,
.premium-motion-ready .cluster-visual::after,
.premium-motion-ready .cin-split-media::after,
.premium-motion-ready .article-hero-media::after,
.premium-motion-ready .slideshow-hero-media::after,
.premium-motion-ready .engagement-media::after,
.premium-motion-ready .engagement-media-collage::after,
.premium-motion-ready .publication-image-frame::after,
.premium-motion-ready .work-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.18), transparent 34%),
    linear-gradient(0deg, rgba(4, 31, 22, 0.16), transparent 46%);
  opacity: 0.72;
  mix-blend-mode: soft-light;
}

.premium-motion-ready .image-frame img,
.premium-motion-ready .hero-media img,
.premium-motion-ready .cluster-visual img,
.premium-motion-ready .cin-split-media img,
.premium-motion-ready .article-hero-media img,
.premium-motion-ready .slideshow-hero-media img,
.premium-motion-ready .engagement-media img,
.premium-motion-ready .engagement-media-collage img,
.premium-motion-ready .publication-image-frame img,
.premium-motion-ready .work-image-frame img {
  transform-origin: center;
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-motion-ready .image-frame:hover img,
.premium-motion-ready .cluster-visual:hover img,
.premium-motion-ready .cin-split-media:hover img,
.premium-motion-ready .engagement-media:hover img,
.premium-motion-ready .engagement-media-collage:hover img,
.premium-motion-ready .publication-image-frame:hover img,
.premium-motion-ready .work-image-frame:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.premium-motion-ready .consultant-card,
.premium-motion-ready .team-member,
.premium-motion-ready .author-card,
.premium-motion-ready .insights-card,
.premium-motion-ready .publication-card,
.premium-motion-ready .category-tile,
.premium-motion-ready .path-card,
.premium-motion-ready .service-card,
.premium-motion-ready .output-card,
.premium-motion-ready .offer-card,
.premium-motion-ready .profile-panel,
.premium-motion-ready .profile-service-card {
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background-color 260ms ease;
}

.premium-motion-ready .consultant-card:hover,
.premium-motion-ready .team-member:hover,
.premium-motion-ready .author-card:hover,
.premium-motion-ready .insights-card:hover,
.premium-motion-ready .publication-card:hover,
.premium-motion-ready .category-tile:hover,
.premium-motion-ready .path-card:hover,
.premium-motion-ready .service-card:hover,
.premium-motion-ready .output-card:hover,
.premium-motion-ready .offer-card:hover,
.premium-motion-ready .profile-panel:hover,
.premium-motion-ready .profile-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 81, 255, 0.34);
  box-shadow: 0 24px 64px rgba(5, 28, 44, 0.13);
}

@media (prefers-reduced-motion: reduce) {
  .premium-motion-ready *,
  .premium-motion-ready *::before,
  .premium-motion-ready *::after {
    animation: none !important;
    transition: none !important;
  }
}

.aspect-16x9 {
  aspect-ratio: 16 / 9;
}

.aspect-4x3 {
  aspect-ratio: 4 / 3;
}

.work-card,
.insight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.work-card__body,
.insight-card__body {
  flex: 1;
}

.card-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* ─────────────────────────────────────────────────────────
   MMK Insights newsletter subscription system
   ───────────────────────────────────────────────────────── */

.newsletter-subscribe-section {
  padding: clamp(54px, 7vw, 86px) 20px;
  background: #f5f5f5;
  border-top: 1px solid #eef1f2;
  border-bottom: 1px solid #eef1f2;
}

.newsletter-subscribe-section .container,
.newsletter-subscribe-section .insights-shell {
  max-width: 1440px;
}

.newsletter-subscribe-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid #d9ceb5;
  border-radius: 8px;
  background: #f7f8f6;
  box-shadow: 0 18px 46px rgba(9, 47, 36, 0.08);
}

.newsletter-subscribe-panel h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.newsletter-subscribe-panel .mmk-insights-brand {
  margin-bottom: 16px;
}

.newsletter-subscribe-panel .mmk-insights-logo {
  display: block;
  width: clamp(72px, 9vw, 112px);
  height: auto;
  margin: 0 0 12px;
  object-fit: contain;
}

.newsletter-subscribe-copy {
  max-width: 58ch;
  margin: 16px 0 0;
  color: #344054;
  font-size: 1rem;
  line-height: 1.7;
}

.newsletter-subscribe-panel .newsletter-form {
  margin-top: 26px;
}

.newsletter-form {
  display: grid;
  gap: 12px;
}

.newsletter-form .form-group {
  display: grid;
  gap: 6px;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"],
.newsletter-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #dfe3e6;
  border-radius: 6px;
  color: var(--navy);
  background: #f7f8f6;
  font: inherit;
  font-size: 0.94rem;
}

.newsletter-form input:focus,
.newsletter-form select:focus {
  border-color: #2251ff;
  box-shadow: 0 0 0 3px rgba(185, 149, 78, 0.16);
  outline: none;
}

.newsletter-form input::placeholder {
  color: #8a948f;
}

.newsletter-form .form-checkbox label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #344054;
  font-size: 0.84rem;
  line-height: 1.5;
}

.newsletter-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--deep-blue);
}

.newsletter-form-btn {
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--navy);
  border-radius: 6px;
  color: #eef1f5;
  background: var(--navy);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.newsletter-form-btn:hover,
.newsletter-form-btn:focus-visible {
  transform: translateY(-1px);
  background: var(--deep-blue);
  border-color: var(--deep-blue);
  outline: none;
}

.newsletter-form-btn:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.newsletter-form-note {
  margin: 0;
  color: #374151;
  font-size: 0.78rem;
  line-height: 1.5;
}

.newsletter-form-feedback {
  display: none;
  padding: 11px 13px;
  border-radius: 6px;
  font-size: 0.86rem;
  line-height: 1.5;
}

.newsletter-form-feedback--success {
  display: block;
  border: 1px solid #b7d7c1;
  color: #2f5f8f;
  background: #edf7ef;
}

.newsletter-form-feedback--error {
  display: block;
  border: 1px solid #e3b7b7;
  color: #8a1f1f;
  background: #fff0ef;
}

@media (max-width: 560px) {
  .newsletter-subscribe-section {
    padding-inline: 14px;
  }

  .newsletter-subscribe-panel {
    width: calc(100% - 28px);
    padding: 24px;
  }

  .newsletter-form-btn {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   EXTENDED IMAGE & LAYOUT UTILITIES
   ═══════════════════════════════════════════════════════════ */

/* Image Aspect Ratios */
.aspect-square {
  aspect-ratio: 1;
}

.aspect-3x2 {
  aspect-ratio: 3 / 2;
}

.aspect-5x4 {
  aspect-ratio: 5 / 4;
}

/* Image Object Positioning */
.object-top {
  object-position: center top;
}

.object-center {
  object-position: center;
}

.object-bottom {
  object-position: center bottom;
}

/* Image Cards with Consistent Handling */
.image-card {
  overflow: hidden;
  border-radius: 12px;
  background: var(--soft);
  line-height: 0;
}

.image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-card:hover img {
  transform: scale(1.045);
}

/* Premium Image Frame (editorial) */
.editorial-frame {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(16, 19, 21, 0.12);
  background: #f0f4f1;
}

.editorial-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Spacing Utilities */
.space-xs { margin-bottom: 8px; }
.space-sm { margin-bottom: 12px; }
.space-md { margin-bottom: 16px; }
.space-lg { margin-bottom: 24px; }
.space-xl { margin-bottom: 32px; }
.space-2xl { margin-bottom: 48px; }

.gap-xs { gap: 8px; }
.gap-sm { gap: 12px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.gap-xl { gap: 32px; }

/* Animation Utilities */
.animate-fade-in {
  animation: fade-in 600ms ease forwards;
}

.animate-slide-up {
  animation: slide-up 500ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Grid Helpers */
.grid-auto-fit {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-2-cols {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.grid-3-cols {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .grid-3-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-2-cols,
  .grid-3-cols,
  .grid-auto-fit {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE POLISH — phone-first sweep (May 2026)
   Phones 360–430px, with graceful behaviour up to 720px.
   All rules are additive and scoped behind @media queries so
   desktop layouts remain untouched.
   ═══════════════════════════════════════════════════════════ */

/* Tap highlight + tap action — soft brand tint, no blue flash */
html {
  -webkit-tap-highlight-color: rgba(0, 191, 99, 0.18);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

a,
button,
[role="button"],
.button,
input,
select,
textarea {
  touch-action: manipulation;
}

/* Prevent any horizontal escape from transform/animation pieces */
html,
body {
  max-width: 100%;
}

@media (max-width: 820px) {
  /* iOS will zoom on inputs with font-size < 16px. Force 16px from tablet down. */
  input,
  select,
  textarea {
    font-size: 16px;
    line-height: 1.4;
  }

  /* Backdrop-filter is expensive on mid-range Android — soften it for the sticky header. */
  .site-header {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  /* Brand mark sits tight against the toggle on phones */
  .brand {
    gap: 10px;
    max-width: calc(100% - 56px);
  }

  /* Container side padding — make sure no section runs flush to the edge. */
  .hero-inner,
  .section-inner,
  .footer-inner {
    width: calc(100% - 32px);
  }

  /* Generic section vertical rhythm tightens up on phones. */
  .section,
  .page-hero {
    padding: 56px 0;
  }

  /* Soft images, no awkward stretching */
  img {
    height: auto;
  }

  /* Tables never overflow the page; allow horizontal scroll inside their wrapper. */
  .table-wrap,
  .work-table-wrap,
  .insights-table-wrap {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overscroll-behavior-x: contain;
  }

  /* Dialogs use the full mobile viewport with safe padding. */
  dialog {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    margin: 12px auto;
    padding: 18px;
    border-radius: 18px;
  }
}

@media (max-width: 720px) {
  /* Stack the homepage hero CTAs full-width without breaking other layouts. */
  .hero-actions,
  .section-actions,
  .booking-actions,
  .compact-actions,
  .h-hero-actions,
  .h-closing-actions,
  .h-week-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-actions > *,
  .section-actions > *,
  .booking-actions > *,
  .compact-actions > *,
  .h-hero-actions > *,
  .h-closing-actions > *,
  .h-week-actions > * {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Card grids that still try to render multi-column on small phones */
  .work-grid,
  .output-grid,
  .offer-grid,
  .article-grid,
  .visual-showcase,
  .compact-case-grid,
  .compact-process-grid,
  .compact-services-grid,
  .home-card-grid,
  .proof-grid,
  .domain-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Hero typography stays generous but never overflows a 360px viewport. */
  .hero h1,
  .page-hero h1,
  .team-copy h1 {
    font-size: clamp(2rem, 7.4vw, 2.5rem);
    line-height: 1.08;
  }

  /* Section H2 — fluid scale down to phones */
  .section-lead h2,
  .welcome-copy h2,
  .team-preview-copy h2,
  .closing-inner h2,
  .registration-card h2,
  .community-panel h2,
  .contact-copy h1,
  .narrow h2,
  .compact-section-head h2 {
    font-size: clamp(1.7rem, 6.6vw, 2.2rem);
    line-height: 1.1;
  }

  /* Buttons — comfortable touch target on phones */
  .button,
  button,
  .h-btn {
    min-height: 48px;
    padding: 12px 18px;
    font-size: 15px;
    line-height: 1.2;
  }

  /* Smaller nested buttons in tables/action rows still meet 44pt */
  .actions button,
  .actions a,
  .work-card-actions a,
  .work-card-actions button {
    min-height: 44px;
  }

  /* Insights publication body — drop double padding on phones */
  body.insights-publication .section,
  body.work-page .section {
    padding: 48px 0;
  }

  /* WhatsApp float — respect iOS home indicator + grow slightly */
  .wa-float {
    right: calc(16px + env(safe-area-inset-right));
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 60px;
    height: 60px;
  }
  .wa-float svg {
    width: 30px;
    height: 30px;
  }

  /* Footer collapses to a single readable column */
  .footer-inner,
  body.home-v2 .footer-inner {
    display: grid;
    gap: 22px;
    width: calc(100% - 32px);
  }

  body.home-v2 .h-footer-top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body.home-v2 .h-footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
  }

  /* Compact home — keep image flush with copy and never crop the face */
  .compact-hero-grid,
  .compact-cases-grid,
  .compact-section-head {
    grid-template-columns: 1fr;
  }

  /* Suppress hover-only floating effects that linger on touch */
  .compact-service-card:hover,
  .compact-case-card:hover,
  .home-card:hover,
  .article-card:hover,
  .output-card:hover,
  .quick a:hover {
    transform: none;
  }

  /* Inline social row in the footer wraps neatly */
  .footer-socials,
  .footer-links {
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  /* Header on small phones — slim brand, tappable burger */
  .site-header {
    min-height: 60px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .brand-text strong {
    font-size: 13.5px;
  }

  .brand-text span {
    font-size: 10.5px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  /* Page hero gets a touch more breathing room on phones */
  .hero-inner,
  .page-hero,
  .home-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Cards padding tightens to gain horizontal space */
  .home-card,
  .compact-service-card,
  .compact-case-card,
  .article-card,
  .output-card,
  .offer-card,
  .work-card,
  .insight-card,
  body.home-v2 .h-cluster,
  body.home-v2 .h-impact-card {
    padding: 22px 20px;
  }

  /* Hero CTA chips/badges wrap into rows */
  .trust-chips,
  .hero-floats,
  .compact-services-section .service-icon-row {
    flex-wrap: wrap;
    gap: 6px;
  }

  /* Forms — bigger comfortable inputs */
  input,
  select,
  textarea {
    min-height: 48px;
    padding: 12px 14px;
  }

  textarea {
    min-height: 132px;
  }

  /* Filter selects in Work archive panel stack one per row */
  .work-filter-panel,
  .workg-archive-filters,
  .insights-filter-panel {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Footer typography sizes down for legibility on cramped widths */
  .footer-inner small,
  .footer-inner span,
  body.home-v2 .h-footer-bottom small {
    font-size: 12px;
    line-height: 1.5;
  }

  /* Status pills + chips never break out of their row */
  .status,
  .compact-domain-pill,
  .workg-domain-pill,
  .insight-tag {
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
  }

  /* Long invoice/receipt numbers and emails wrap rather than overflow */
  .work-table td,
  .insights-table td {
    word-break: break-word;
  }

  /* Mobile home-v2 trust signals stack with proper rhythm */
  body.home-v2 .h-hero-trust {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Inline phone numbers/emails are tap-friendly */
  a[href^="tel:"],
  a[href^="mailto:"] {
    word-break: break-word;
  }
}

@media (max-width: 430px) {
  /* Very narrow phones — final safety net */
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-inner,
  .section-inner,
  .footer-inner {
    width: calc(100% - 28px);
  }

  .brand-text strong {
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  /* Big hero amount panels stack under their heading rather than colliding */
  body.home-v2 .h-footer-cols {
    grid-template-columns: 1fr;
  }

  /* Service grids and case cards already 1-col here, just tighten gaps */
  .compact-services-grid,
  .compact-case-grid,
  .compact-process-grid {
    gap: 12px;
  }

  /* Stretch eyebrows/labels readability */
  .eyebrow,
  .h-eyebrow,
  .workg-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
  }
}

/* Hover effects only on devices that actually support hover. Removes
   sticky "hover" states that get stuck on first tap on iOS/Android. */
@media (hover: none) {
  .home-card:hover,
  .compact-service-card:hover,
  .compact-case-card:hover,
  .article-card:hover,
  .output-card:hover,
  .offer-card:hover,
  .quick a:hover,
  .button:hover,
  .h-btn:hover {
    transform: none !important;
    box-shadow: inherit;
  }
}

/* Reduced motion users get an instant render */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .wa-float {
    transition: none;
  }
}

@media (min-width: 821px) {
  body.home-v2.home-05082026 .wa-float {
    right: clamp(28px, 3.5vw, 56px);
    bottom: clamp(28px, 3vw, 44px);
  }
}

/* Mobile nav drawer enhancements */
@media (max-width: 820px) {
  /* Drawer scrolls if the nav has many items on a short screen */
  .site-nav {
    max-height: calc(100dvh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    gap: 4px;
  }

  /* Nav links get a comfortable tap target inside the drawer */
  .site-nav a {
    min-height: 48px;
    padding: 12px 14px;
    font-size: 15px;
  }

  /* CTA button inside the drawer stays prominent */
  .site-nav .nav-cta {
    margin-top: 6px;
    justify-content: center;
  }
}

/* Lock background scroll while the nav drawer is open */
body.nav-locked {
  overflow: hidden;
  position: relative;
}

@media (min-width: 821px) {
  /* Safety net — never lock scroll on desktop */
  body.nav-locked {
    overflow: visible;
  }
}

/* ═══════════════════════════════════════════════════════════
   COMPACT FOOTER NEWSLETTER STRIP
   ═══════════════════════════════════════════════════════════ */
.footer-newsletter-strip {
  background: #071827;
  border-top: 1px solid rgba(197, 161, 93, 0.22);
  border-bottom: 1px solid rgba(255, 250, 240, 0.06);
  padding: 22px 0;
}
.footer-nl-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nl-text {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-nl-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-nl-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
}
.footer-nl-text strong {
  font-size: 0.9rem;
  font-weight: 850;
  color: #eef1f5;
  letter-spacing: 0.02em;
}
.footer-nl-text span {
  font-size: 0.8rem;
  color: rgba(255,250,240,0.62);
  line-height: 1.5;
}
.footer-nl-form {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
}
.footer-nl-email {
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,250,240,0.16);
  background: rgba(255,250,240,0.07);
  color: #eef1f5;
  font-size: 0.86rem;
  outline: none;
  min-width: 220px;
  transition: border-color 0.2s;
  font-family: inherit;
}
.footer-nl-email::placeholder { color: rgba(255,250,240,0.42); }
.footer-nl-email:focus { border-color: rgba(197,161,93,0.62); background: rgba(255,250,240,0.1); }
.footer-nl-btn {
  padding: 9px 20px;
  border-radius: 8px;
  background: #2251ff;
  border: 1px solid #2251ff;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  font-family: inherit;
}
.footer-nl-btn:hover { background: #2251ff; border-color: #2251ff; transform: translateY(-1px); }
.footer-nl-feedback {
  display: none;
  flex-basis: 100%;
  font-size: 0.78rem;
  line-height: 1.4;
}
.footer-nl-feedback--success {
  display: block;
  color: #bde3c8;
}
.footer-nl-feedback--error {
  display: block;
  color: #ffd2c9;
}
.footer-nl-note {
  font-size: 0.72rem;
  color: rgba(255,250,240,0.38);
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .footer-nl-inner { flex-direction: column; align-items: flex-start; }
  .footer-nl-form { width: 100%; }
  .footer-nl-email { min-width: 0; width: 100%; }
  .footer-nl-note { display: none; }
}

/* ── Staff footer link ──────────────────────────────────────── */
.footer-staff-link {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.footer-staff-link:hover { color: rgba(255,255,255,0.50); }

/* ── Contrast guard: keep light typography readable on image and split heroes ── */
:root {
  --mmk-contrast-cream: #eef1f5;
  --mmk-contrast-cream-soft: rgba(255, 250, 240, 0.86);
  --mmk-contrast-cream-muted: rgba(255, 250, 240, 0.76);
  --mmk-contrast-shadow: 0 2px 18px rgba(0, 0, 0, 0.54), 0 1px 2px rgba(0, 0, 0, 0.52);
}

.home-hero-overlay {
  background:
    linear-gradient(to top, rgba(7, 24, 39, 0.99) 0%, rgba(5, 28, 44, 0.76) 50%, rgba(31, 78, 121, 0.44) 100%),
    linear-gradient(100deg, rgba(3, 18, 12, 0.88) 0%, rgba(3, 18, 12, 0.64) 40%, transparent 76%) !important;
}

.cinematic-hero-overlay {
  background:
    linear-gradient(to top, rgba(6, 10, 8, 0.99) 0%, rgba(6, 10, 8, 0.72) 54%, rgba(6, 10, 8, 0.42) 100%),
    linear-gradient(135deg, rgba(6, 20, 14, 0.78) 0%, rgba(6, 20, 14, 0.42) 68%, transparent 100%) !important;
}

.work-hero-overlay,
.cluster-hero-overlay,
.image-break-overlay,
.slideshow-hero-overlay,
.video-strip-v2-overlay,
.home-insight-slideshow .card-overlay {
  background:
    linear-gradient(to top, rgba(5, 9, 7, 0.98) 0%, rgba(5, 9, 7, 0.74) 58%, rgba(5, 9, 7, 0.48) 100%),
    linear-gradient(135deg, rgba(5, 26, 18, 0.76), rgba(5, 26, 18, 0.36)) !important;
}

.engagement-hero {
  background:
    radial-gradient(circle at top right, rgba(34, 81, 255, 0.16), transparent 30rem),
    linear-gradient(138deg, var(--navy) 0%, #051c2c 66%, #f5f5f5 66%, #f7f8f6 100%) !important;
}

.profile-page .profile-hero {
  background:
    radial-gradient(circle at 78% 14%, rgba(34, 81, 255, .16), transparent 28%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy) 66%, #f7f8f6 66%, #ffffff 100%) !important;
}

.home-hero h1,
.home-hero-sub,
.cinematic-hero h1,
.cinematic-hero .eyebrow,
.cinematic-hero .hero-sub,
.slideshow-hero h1,
.slideshow-hero p.hero-sub,
.work-hero h1,
.work-hero .hero-copy,
.cluster-hero h1,
.cluster-hero p,
.engagement-title,
.engagement-copy,
.profile-page .profile-hero h1,
.profile-page .profile-subheadline,
.launch-hero h1,
.launch-hero p,
.workx-hero h1,
.workx-hero-copy > p:not(.workx-eyebrow),
.pub-hero h1,
.pub-hero-sub,
.pub-page-hero h1,
.pub-page-subtitle,
.author-profile-hero h1,
.author-profile-affil {
  text-shadow: var(--mmk-contrast-shadow);
}

.home-hero h1,
.cinematic-hero h1,
.slideshow-hero h1,
.work-hero h1,
.cluster-hero h1,
.engagement-title,
.profile-page .profile-hero h1,
.launch-hero h1,
.workx-hero h1,
.pub-hero h1,
.pub-page-hero h1,
.author-profile-hero h1 {
  color: var(--mmk-contrast-cream) !important;
}

.home-hero-sub,
.cinematic-hero .eyebrow,
.cinematic-hero .hero-sub,
.slideshow-hero p.hero-sub,
.work-hero .hero-copy,
.cluster-hero p,
.engagement-copy,
.profile-page .profile-subheadline,
.launch-hero p,
.workx-hero-copy > p:not(.workx-eyebrow),
.pub-hero-sub,
.pub-page-subtitle,
.author-profile-affil,
.home-insight-slideshow p,
.case-card-v2-body p,
.featured-slideshow-card p,
.hub-card.slideshow-card-dark p {
  color: var(--mmk-contrast-cream-soft) !important;
}

.cinematic-hero .eyebrow,
.work-hero .eyebrow,
.cluster-hero .eyebrow {
  color: var(--accent-gold) !important;
  opacity: 1 !important;
}

body.services-premium .finance-model-cta small {
  color: rgba(255, 255, 255, 0.9);
}

.engagement-eyebrow,
.profile-page .profile-kicker,
.launch-eyebrow-dark,
.workx-eyebrow,
.pub-hero-eyebrow,
.pub-page-kicker,
.home-hero-eyebrow {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.engagement-btn-secondary,
.button-secondary,
.button-secondary-dark,
.workx-hero .button-outline,
.workx-closing .button-secondary-dark,
.launch-hero-link,
.author-link-btn {
  color: var(--mmk-contrast-cream) !important;
  border-color: rgba(255, 250, 240, 0.44) !important;
  background: rgba(3, 24, 17, 0.66) !important;
  backdrop-filter: blur(12px);
}

.section-dark p,
.engagement-section-dark .engagement-section-head p,
.engagement-card-featured p,
.engagement-card-featured li,
.engagement-principle,
.launch-dark p,
.workx-questions p,
.workx-question-cards article,
.compact-proof-item span,
.footer-nl-text span {
  color: var(--mmk-contrast-cream-muted) !important;
}

.footer-nl-note,
.footer-staff-link {
  color: rgba(255, 250, 240, 0.58) !important;
}

@media (max-width: 900px) {
  .engagement-hero,
  .profile-page .profile-hero {
    background:
      radial-gradient(circle at top right, rgba(34, 81, 255, 0.12), transparent 20rem),
      linear-gradient(180deg, var(--navy) 0%, #051c2c 100%) !important;
  }
}

    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM DESIGN SYSTEM — Phase 1/2/3 additions
   Added 2026-05-30
   ═══════════════════════════════════════════════════════════ */

/* ── Per-page cinematic hero differentiation ──────────────
   Break the identical cinematic-hero across pages.
   Each page gets its own radial accent colour.
   ─────────────────────────────────────────────────────── */

/* About — warm gold left accent */
.cinematic-hero--about .cinematic-hero-overlay {
  background:
    radial-gradient(ellipse at 10% 60%, rgba(34, 81, 255, 0.20), transparent 48%),
    linear-gradient(to top, rgba(4, 17, 12, 0.97) 0%, rgba(4, 17, 12, 0.60) 45%, rgba(4, 17, 12, 0.22) 100%),
    linear-gradient(120deg, rgba(5, 28, 44, 0.62) 0%, transparent 60%);
}

/* Services — structured, centre-weighted */
.cinematic-hero--services .cinematic-hero-overlay {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(31, 78, 121, 0.15), transparent 55%),
    linear-gradient(to top, rgba(4, 17, 12, 0.98) 0%, rgba(4, 17, 12, 0.55) 50%, rgba(4, 17, 12, 0.18) 100%);
}

.cinematic-hero--services h1 {
  max-width: 20ch;  /* services headline is longer */
}

/* Team — portraits, subtle right light */
.cinematic-hero--team .cinematic-hero-overlay {
  background:
    radial-gradient(ellipse at 75% 20%, rgba(8, 90, 60, 0.22), transparent 50%),
    linear-gradient(to top, rgba(4, 17, 12, 0.97) 0%, rgba(4, 17, 12, 0.68) 38%, rgba(4, 17, 12, 0.20) 100%),
    linear-gradient(100deg, rgba(5, 28, 44, 0.70) 0%, transparent 55%);
}

/* Academy — forward-looking teal hint */
.cinematic-hero--academy .cinematic-hero-overlay {
  background:
    radial-gradient(ellipse at 80% 40%, rgba(10, 123, 140, 0.14), transparent 50%),
    linear-gradient(to top, rgba(4, 17, 12, 0.97) 0%, rgba(4, 17, 12, 0.60) 45%, rgba(4, 17, 12, 0.18) 100%),
    linear-gradient(130deg, rgba(5, 28, 44, 0.65) 0%, transparent 60%);
}

/* ── Footer responsive ──────────────────────────────────── */

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 32px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-bottom-right {
    flex-wrap: wrap;
    gap: 10px 14px;
  }
}

/* ── Insights cards — premium hover + serif heading ─────── */

.insights-card {
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  border-radius: 16px !important;
}

.insights-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(10, 10, 12, 0.08) !important;
  border-color: rgba(31, 78, 121, 0.2) !important;
}

.insights-card-body h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
}

/* ── Category tiles — evidence-branded ─────────────────── */

.category-tile {
  background: var(--paper) !important;
  border: 1px solid var(--line) !important;
  border-radius: 14px !important;
  border-left: 3px solid var(--green) !important;
  padding: 24px 22px !important;
  transition: transform 220ms ease, box-shadow 220ms ease !important;
}

.category-tile:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-sm) !important;
}

.category-tile h3 {
  font-family: "Source Serif 4", Georgia, serif !important;
  font-weight: 500 !important;
  font-size: 1.05rem !important;
  letter-spacing: -0.01em !important;
}

.category-tile .mark {
  display: none !important;   /* remove the generic dot marker */
}

/* ── Work page gallery cards — premium lift ─────────────── */

.service-gallery-card {
  border-radius: 18px !important;
  overflow: hidden !important;
  transition: transform 240ms ease, box-shadow 240ms ease !important;
}

.service-gallery-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 24px 60px rgba(10, 10, 12, 0.09) !important;
}

/* ── Social icon links — consistent across new footer ────── */

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.14);
  color: rgba(255, 253, 248, 0.7);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  text-decoration: none;
}

.social-icon-link:hover,
.social-icon-link:focus-visible {
  background: rgba(255, 253, 248, 0.16);
  border-color: rgba(255, 253, 248, 0.28);
  color: #eef1f5;
  transform: translateY(-1px);
  outline: none;
}

/* ── Homepage h26 footer override ───────────────────────── */

body.home-v2.home-05082026 .site-footer,
body.home-v2 .site-footer {
  background:
    radial-gradient(ellipse at 90% 0%, rgba(34, 81, 255, 0.13) 0%, transparent 48%),
    radial-gradient(ellipse at 8% 20%, rgba(15, 118, 110, 0.10) 0%, transparent 46%),
    linear-gradient(180deg, #06111f 0%, #030a14 100%),
    #06111f;
}

/* ── Proof section cards on homepage ────────────────────── */

body.home-v2.home-05082026 .h26-proof-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 253, 248, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: border-color 220ms ease, background 220ms ease;
}

body.home-v2.home-05082026 .h26-proof-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(34, 81, 255, 0.28);
}

/* ── Homepage h26 token corrections ─────────────────────── */

body.home-v2.home-05082026 {
  --h26-green: var(--deep-blue);
  --h26-green-deep: var(--navy);
  --h26-gold: var(--accent-gold);
}

/* ── Reduced motion: ensure new animations respect it ────── */

@media (prefers-reduced-motion: reduce) {
  .home-card,
  .proof-point,
  .insights-card,
  .category-tile,
  .service-gallery-card,
  body.home-v2.home-05082026 .h26-service-card,
  body.home-v2.home-05082026 .h26-process-step {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
}


/* ═══════════════════════════════════════════════════════════
   PREMIUM SYSTEM — Phase 1/2/3 additions (2026-05-30)
   ═══════════════════════════════════════════════════════════ */

/* ── Per-page cinematic hero differentiation ─────────────
   Each major page gets its own radial accent / overlay mood.
   ─────────────────────────────────────────────────────── */

/* About — warm gold left accent, deeper atmosphere */
.cinematic-hero--about .cinematic-hero-overlay {
  background:
    radial-gradient(ellipse at 10% 60%, rgba(34, 81, 255, 0.18), transparent 48%),
    linear-gradient(to top, rgba(4, 17, 12, 0.97) 0%, rgba(4, 17, 12, 0.60) 45%, rgba(4, 17, 12, 0.22) 100%),
    linear-gradient(120deg, rgba(5, 28, 44, 0.62) 0%, transparent 60%);
}

/* Services — structured, centre-weighted green glow */
.cinematic-hero--services .cinematic-hero-overlay {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(31, 78, 121, 0.15), transparent 55%),
    linear-gradient(to top, rgba(4, 17, 12, 0.98) 0%, rgba(4, 17, 12, 0.55) 50%, rgba(4, 17, 12, 0.18) 100%);
}

.cinematic-hero--services h1 {
  max-width: 20ch;
}

/* Team — portraits, subtle right-side light leak */
.cinematic-hero--team .cinematic-hero-overlay {
  background:
    radial-gradient(ellipse at 75% 20%, rgba(8, 90, 60, 0.22), transparent 50%),
    linear-gradient(to top, rgba(4, 17, 12, 0.97) 0%, rgba(4, 17, 12, 0.68) 38%, rgba(4, 17, 12, 0.20) 100%),
    linear-gradient(100deg, rgba(5, 28, 44, 0.70) 0%, transparent 55%);
}

/* Academy — forward-looking teal hint top-right */
.cinematic-hero--academy .cinematic-hero-overlay {
  background:
    radial-gradient(ellipse at 80% 40%, rgba(10, 123, 140, 0.14), transparent 50%),
    linear-gradient(to top, rgba(4, 17, 12, 0.97) 0%, rgba(4, 17, 12, 0.60) 45%, rgba(4, 17, 12, 0.18) 100%),
    linear-gradient(130deg, rgba(5, 28, 44, 0.65) 0%, transparent 60%);
}

/* ── Footer grid — responsive ────────────────────────────── */

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 32px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-bottom-right {
    flex-wrap: wrap;
    gap: 10px 14px;
  }
}

/* ── Insights cards (scoped to insights-publication context) ── */

.insights-publication .insights-card:hover,
.insights-publication .insights-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(11, 53, 41, 0.28);
  box-shadow: 0 26px 62px rgba(18, 32, 29, 0.12);
  outline: none;
}

.insights-card-body h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
}

/* ── Category tiles — left-accent evidence-branded ─────── */

.insights-publication .category-tile {
  border-left: 3px solid var(--insight-gold);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.insights-publication .category-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(18, 32, 29, 0.10);
}

/* ── Homepage h26 token corrections ─────────────────────── */

body.home-v2.home-05082026 {
  --h26-gold: var(--accent-gold);
}

/* ── Proof section cards — glassmorphism touch ──────────── */

body.home-v2.home-05082026 .h26-proof-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 253, 248, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 220ms ease, background 220ms ease;
}

body.home-v2.home-05082026 .h26-proof-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(34, 81, 255, 0.28);
}

/* ── Social icon links in new footer ─────────────────────── */

.footer-socials .social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.14);
  color: rgba(255, 253, 248, 0.64);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  text-decoration: none;
}

.footer-socials .social-icon-link:hover,
.footer-socials .social-icon-link:focus-visible {
  background: rgba(255, 253, 248, 0.16);
  border-color: rgba(255, 253, 248, 0.26);
  color: #eef1f5;
  transform: translateY(-1px);
  outline: none;
}

/* ── Reduced motion: cover all new hover/transitions ────── */

@media (prefers-reduced-motion: reduce) {
  .home-card,
  .proof-point,
  .insights-card,
  .category-tile,
  .service-gallery-card,
  body.home-v2.home-05082026 .h26-service-card,
  body.home-v2.home-05082026 .h26-process-step,
  body.home-v2.home-05082026 .h26-proof-card,
  .footer-cta-btn,
  .footer-socials .social-icon-link {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
}


/* ── Context-aware button colours ────────────────────────────
   Buttons inside dark or image sections need different colours
   so they remain readable without changing the HTML.
   ──────────────────────────────────────────────────────────── */

/* Dark sections: primary = lighter green, secondary = white outline */
.section-dark .button-primary,
.closing-section .button-primary {
  color: #eef1f5;
  background: var(--green);
  border-color: var(--green);
}

.section-dark .button-primary:hover,
.section-dark .button-primary:focus-visible,
.closing-section .button-primary:hover,
.closing-section .button-primary:focus-visible {
  background: var(--green-mid);
  border-color: var(--green-mid);
  box-shadow: 0 8px 24px rgba(255, 253, 248, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.section-dark .button-secondary,
.closing-section .button-secondary {
  color: #eef1f5;
  border-color: rgba(255, 253, 248, 0.38);
  background: rgba(255, 253, 248, 0.06);
}

.section-dark .button-secondary:hover,
.section-dark .button-secondary:focus-visible,
.closing-section .button-secondary:hover,
.closing-section .button-secondary:focus-visible {
  background: rgba(255, 253, 248, 0.14);
  border-color: rgba(255, 253, 248, 0.62);
  outline: none;
}

/* Cinematic hero: primary = warm cream, secondary = white outline */
.cinematic-hero .button-primary {
  color: var(--green-dark);
  background: #f7f8f6;
  border-color: #eef1f5;
}

.cinematic-hero .button-primary:hover,
.cinematic-hero .button-primary:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  outline: none;
}

.cinematic-hero .button-secondary {
  color: #eef1f5;
  border-color: rgba(255, 253, 248, 0.46);
  background: rgba(255, 253, 248, 0.06);
}

.cinematic-hero .button-secondary:hover,
.cinematic-hero .button-secondary:focus-visible {
  background: rgba(255, 253, 248, 0.14);
  border-color: rgba(255, 253, 248, 0.7);
  outline: none;
}

/* ── Consultant-template homepage adaptation ───────────────── */
body.home-v2.home-05082026 .h26-hero h1 {
  max-width: 13.2ch;
  font-size: clamp(3.05rem, 6.1vw, 6.35rem);
}

body.home-v2.home-05082026 .h26-hero-metric {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  max-width: 520px;
  margin-top: 32px;
  padding: 18px 20px;
  color: var(--h26-ivory);
  border: 1px solid rgba(255, 248, 235, 0.2);
  border-radius: 22px;
  background: rgba(255, 248, 235, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

body.home-v2.home-05082026 .h26-hero-metric strong {
  font-family: var(--h-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.9;
  color: var(--h26-copper);
}

body.home-v2.home-05082026 .h26-hero-metric span {
  display: block;
  max-width: 34ch;
  color: rgba(255, 248, 235, 0.72);
  font-size: 0.93rem;
  font-weight: 650;
  line-height: 1.45;
}

body.home-v2.home-05082026 .h26-hero-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 5;
  width: min(310px, calc(100% - 44px));
  padding: 16px 18px;
  color: var(--h26-ivory);
  border: 1px solid rgba(255, 248, 235, 0.22);
  border-radius: 20px;
  background: rgba(3, 18, 13, 0.68);
  backdrop-filter: blur(16px);
}

body.home-v2.home-05082026 .h26-hero-note span,
body.home-v2.home-05082026 .h26-insight-card > span {
  display: block;
  color: var(--h26-copper);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

body.home-v2.home-05082026 .h26-hero-note strong {
  display: block;
  margin-top: 7px;
  font-family: var(--h-serif);
  font-size: 1.08rem;
  line-height: 1.2;
}

body.home-v2.home-05082026 .h26-hero-showcase .hero-visual-frame,
body.home-v2.home-05082026 .h26-hero-showcase .hero-visual-frame picture,
body.home-v2.home-05082026 .h26-hero-showcase .hero-visual-frame img,
body.home-v2.home-05082026 .h26-hero-showcase .hero-visual-frame video {
  height: 100%;
}

body.home-v2.home-05082026 .h26-hero-grid,
body.home-v2.home-05082026 .h26-hero-media,
body.home-v2.home-05082026 .h26-hero-showcase,
body.home-v2.home-05082026 .h26-hero-showcase .hero-visual-frame {
  min-width: 0;
  max-width: 100%;
}

body.home-v2.home-05082026 .h26-hero-media,
body.home-v2.home-05082026 .h26-hero-showcase,
body.home-v2.home-05082026 .h26-hero-showcase .hero-visual-frame {
  overflow: hidden;
}

body.home-v2.home-05082026,
body.home-v2.home-05082026 main {
  overflow-x: hidden;
}

body.home-v2.home-05082026 .h26-hero-showcase .hero-visual-frame {
  position: relative;
  min-height: clamp(330px, 40vw, 528px);
}

body.home-v2.home-05082026 .h26-hero-showcase .hero-visual-frame picture,
body.home-v2.home-05082026 .h26-hero-showcase .hero-visual-frame img,
body.home-v2.home-05082026 .h26-hero-showcase .hero-visual-frame video {
  position: absolute;
  inset: 0;
}

body.home-v2.home-05082026 .h26-hero-showcase .hero-visual-frame img,
body.home-v2.home-05082026 .h26-hero-showcase .hero-visual-frame video {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

body.home-v2.home-05082026 .h26-testimonial {
  padding: clamp(72px, 8vw, 116px) 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(34, 81, 255, 0.12), transparent 24rem),
    #eef1f5;
  border-top: 1px solid rgba(6, 40, 29, 0.09);
  border-bottom: 1px solid rgba(6, 40, 29, 0.09);
}

body.home-v2.home-05082026 .h26-testimonial-inner {
  max-width: 980px;
}

body.home-v2.home-05082026 .h26-testimonial h2 {
  margin: 22px 0 0;
  max-width: 21ch;
  color: var(--h26-forest);
  font-size: clamp(2rem, 4vw, 4.05rem);
  line-height: 1.04;
  text-wrap: balance;
}

body.home-v2.home-05082026 .h26-testimonial p:last-child {
  margin: 24px 0 0;
  color: var(--h26-muted);
  font-weight: 700;
  letter-spacing: 0.03em;
}

body.home-v2.home-05082026 .h26-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(42px, 5vw, 70px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: rgba(247, 244, 239, 0.14);
}

body.home-v2.home-05082026 .h26-stat-grid div {
  min-height: 150px;
  padding: 26px 24px;
  background: rgba(247, 244, 239, 0.07);
}

body.home-v2.home-05082026 .h26-stat-grid strong {
  display: block;
  color: var(--h26-copper);
  font-family: var(--h-serif);
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  font-weight: 700;
  line-height: 1;
}

body.home-v2.home-05082026 .h26-stat-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(247, 244, 239, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

body.home-v2.home-05082026 .h26-insights {
  padding: clamp(84px, 9vw, 132px) 0;
  background: #eef1f5;
}

body.home-v2.home-05082026 .h26-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* Magazine-cover square tiles — image fills card, text overlaid on gradient */
body.home-v2.home-05082026 .h26-insight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
  padding: 22px 24px 26px;
  color: #fff;
  text-decoration: none;
  border: 0;
  background: var(--h26-fog);
  box-shadow: 0 8px 36px rgba(6, 20, 12, 0.18);
  transition: transform 320ms var(--motion-ease), box-shadow 320ms var(--motion-ease);
}

body.home-v2.home-05082026 .h26-insight-card:hover,
body.home-v2.home-05082026 .h26-insight-card:focus-visible {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 18px 54px rgba(6, 20, 12, 0.28);
  outline: none;
}

/* Image fills entire card */
body.home-v2.home-05082026 .h26-insight-card figure {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--h26-fog);
}

body.home-v2.home-05082026 .h26-insight-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  object-fit: cover;
  object-position: center top;
  transition: transform 620ms var(--motion-smooth);
}

body.home-v2.home-05082026 .h26-insight-card:hover img,
body.home-v2.home-05082026 .h26-insight-card:focus-visible img {
  transform: scale(1.06);
}

/* Gradient vignette — bottom-heavy, fades to dark for readable text */
body.home-v2.home-05082026 .h26-insight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top,
      rgba(4, 12, 8, 0.88) 0%,
      rgba(4, 12, 8, 0.52) 40%,
      rgba(4, 12, 8, 0.12) 68%,
      transparent 100%);
  pointer-events: none;
}

/* All text content sits above gradient */
body.home-v2.home-05082026 .h26-insight-card > span,
body.home-v2.home-05082026 .h26-insight-card h3,
body.home-v2.home-05082026 .h26-insight-card p {
  position: relative;
  z-index: 2;
}

body.home-v2.home-05082026 .h26-insight-card > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(201, 170, 100, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.home-v2.home-05082026 .h26-insight-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.12rem, 1.6vw, 1.42rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

body.home-v2.home-05082026 .h26-insight-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}


/* Featured single insight card */
body.home-v2.home-05082026 .h26-insight-grid--single {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

body.home-v2.home-05082026 .h26-insight-card--featured {
  aspect-ratio: 16 / 9;
  padding: 40px 52px 48px;
}

body.home-v2.home-05082026 .h26-insight-card--featured h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  margin-bottom: 12px;
}

body.home-v2.home-05082026 .h26-insight-card--featured p {
  font-size: 1.02rem;
  max-width: 540px;
}

body.home-v2.home-05082026 .h26-trust {
  padding: clamp(54px, 6vw, 86px) 0;
  background: #f5f0ea;
  border-top: 1px solid rgba(20, 20, 22, 0.06);
  border-bottom: 1px solid rgba(20, 20, 22, 0.06);
}

body.home-v2.home-05082026 .h26-trust-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

body.home-v2.home-05082026 .h26-trust h2 {
  margin: 0;
  max-width: 28ch;
  color: var(--h26-forest);
  font-size: clamp(1.4rem, 2.4vw, 2.35rem);
  line-height: 1.12;
}

body.home-v2.home-05082026 .h26-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

body.home-v2.home-05082026 .h26-trust-list span {
  padding: 12px 16px;
  color: var(--h26-forest);
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

@media (max-width: 980px) {
  body.home-v2.home-05082026 .h26-stat-grid,
  body.home-v2.home-05082026 .h26-insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-v2.home-05082026 .h26-trust-inner {
    grid-template-columns: 1fr;
  }

  body.home-v2.home-05082026 .h26-trust-list {
    justify-content: flex-start
/* ═══════════════════════════════════════════════════════════
   INSIGHTS FEATURED CARD — Brief 031 wide editorial tile
═══════════════════════════════════════════════════════════ */
.insights-card--featured {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  min-height: 340px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 8px;
}

.insights-card--featured figure {
  flex: 0 0 54%;
  aspect-ratio: unset;
  min-height: 340px;
  background: var(--navy);
}

.insights-card--featured figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 420ms ease;
}

.insights-card--featured:hover figure img {
  transform: scale(1.03);
}

.insights-card--featured .insights-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 52px) clamp(28px, 4vw, 52px);
  background: var(--navy);
}

.insights-card--featured .insights-chip {
  background: rgba(212, 175, 55, 0.18);
  color: #2251ff;
  border-color: rgba(212, 175, 55, 0.35);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.insights-card--featured h3 {
  color: #eef1f5;
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  line-height: 1.18;
  margin: 0 0 14px;
  font-family: "Source Serif 4", Georgia, serif;
}

.insights-card--featured p {
  color: rgba(250, 247, 242, 0.72);
  font-size: 0.97rem;
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 38ch;
}

.insights-card--featured .insights-meta {
  color: rgba(250, 247, 242, 0.45);
  font-size: 0.82rem;
  margin-bottom: 24px;
}

.insights-card--featured .insights-meta span + span::before {
  content: "·";
  margin: 0 8px;
}

.insights-card--featured .read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2251ff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.insights-card--featured .read-link::after {
  content: "→";
}

@media (max-width: 740px) {
  .insights-card--featured {
    flex-direction: column;
    min-height: auto;
  }
  .insights-card--featured figure {
    flex: 0 0 auto;
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }
  .insights-card--featured .insights-card-body {
    padding: 28px 24px 32px;
  }
}

/* ── Image-led hero clarity pass (2026-06-12) ───────────────
   Earlier contrast guards made background photography feel
   opaque. Keep copy protected, but let each page image breathe.
   ───────────────────────────────────────────────────────── */

.cinematic-hero-media img,
.work-hero-media img,
.cluster-hero-media img,
.article-hero-media img,
.slideshow-hero-media img,
.image-break img {
  filter: saturate(1.22) contrast(1.26) brightness(0.78);
}

.cinematic-hero-media img,
.cinematic-hero.loaded .cinematic-hero-media img,
.contact-cinematic.loaded .cinematic-hero-media img {
  opacity: 1 !important;
}

.work-hero-media img,
.cluster-hero-media img,
.article-hero-media img,
.slideshow-hero-media img {
  opacity: 1 !important;
}

.image-break img {
  opacity: 1 !important;
}

.cinematic-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 24, 39, 0.72) 0%, rgba(5, 28, 44, 0.34) 34%, rgba(31, 78, 121, 0.08) 64%, transparent 100%),
    linear-gradient(to top, rgba(7, 24, 39, 0.34) 0%, rgba(5, 28, 44, 0.10) 46%, transparent 100%) !important;
}

.work-hero-overlay,
.cluster-hero-overlay,
.article-hero-overlay,
.slideshow-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 24, 39, 0.66) 0%, rgba(5, 28, 44, 0.32) 40%, rgba(31, 78, 121, 0.08) 72%, transparent 100%),
    linear-gradient(to top, rgba(7, 24, 39, 0.42) 0%, rgba(5, 28, 44, 0.12) 50%, transparent 100%) !important;
}

.image-break-overlay {
  background:
    linear-gradient(90deg, rgba(7, 24, 39, 0.34) 0%, rgba(5, 28, 44, 0.18) 48%, rgba(31, 78, 121, 0.06) 100%),
    linear-gradient(to top, rgba(7, 24, 39, 0.34), rgba(5, 28, 44, 0.08)) !important;
}

.cinematic-hero--about .cinematic-hero-overlay {
  background:
    radial-gradient(ellipse at 12% 66%, rgba(34, 81, 255, 0.10), transparent 42%),
    linear-gradient(90deg, rgba(7, 24, 39, 0.74) 0%, rgba(5, 28, 44, 0.34) 35%, rgba(31, 78, 121, 0.08) 65%, transparent 100%),
    linear-gradient(to top, rgba(7, 24, 39, 0.34) 0%, rgba(5, 28, 44, 0.10) 50%, transparent 100%) !important;
}

.cinematic-hero--services .cinematic-hero-overlay {
  background:
    radial-gradient(ellipse at 58% 28%, rgba(31, 78, 121, 0.10), transparent 48%),
    linear-gradient(90deg, rgba(7, 24, 39, 0.72) 0%, rgba(5, 28, 44, 0.34) 38%, rgba(31, 78, 121, 0.08) 70%, transparent 100%),
    linear-gradient(to top, rgba(7, 24, 39, 0.34) 0%, rgba(5, 28, 44, 0.10) 52%, transparent 100%) !important;
}

.cinematic-hero--team .cinematic-hero-overlay,
.cinematic-hero--academy .cinematic-hero-overlay {
  background:
    radial-gradient(ellipse at 78% 24%, rgba(31, 78, 121, 0.10), transparent 46%),
    linear-gradient(90deg, rgba(7, 24, 39, 0.72) 0%, rgba(5, 28, 44, 0.34) 38%, rgba(31, 78, 121, 0.08) 70%, transparent 100%),
    linear-gradient(to top, rgba(7, 24, 39, 0.34) 0%, rgba(5, 28, 44, 0.10) 52%, transparent 100%) !important;
}

.cinematic-hero h1,
.cinematic-hero .hero-sub,
.work-hero h1,
.work-hero .hero-copy,
.cluster-hero h1,
.cluster-hero p,
.article-hero h1,
.article-hero .hero-sub,
.slideshow-hero h1,
.slideshow-hero p.hero-sub,
.image-break-content p {
  text-shadow:
    0 3px 20px rgba(0, 0, 0, 0.74),
    0 1px 3px rgba(0, 0, 0, 0.82) !important;
}

@media (max-width: 700px) {
  .cinematic-hero-media img,
  .work-hero-media img,
  .cluster-hero-media img,
  .article-hero-media img,
  .slideshow-hero-media img {
    filter: saturate(1.28) contrast(1.38) brightness(0.68);
  }

  .cinematic-hero--about .cinematic-hero-media img {
    object-position: 34% center;
  }

  .cinematic-hero-overlay,
  .work-hero-overlay,
  .cluster-hero-overlay,
  .article-hero-overlay,
  .slideshow-hero-overlay,
  .image-break-overlay {
    background:
      linear-gradient(to top, rgba(7, 24, 39, 0.34) 0%, rgba(5, 28, 44, 0.10) 56%, transparent 100%),
      linear-gradient(90deg, rgba(7, 24, 39, 0.42), rgba(31, 78, 121, 0.06)) !important;
  }
}

/* ── Blue/oxblood consulting palette final override (2026-06-12) ── */
.cinematic-hero,
.work-hero,
.cluster-hero,
.article-hero,
.slideshow-hero {
  background: linear-gradient(118deg, #06111f 0%, var(--navy) 48%, var(--deep-blue) 100%) !important;
}

.cinematic-hero::after,
.work-hero::after,
.cluster-hero::after,
.article-hero::after,
.slideshow-hero::after {
  background:
    radial-gradient(circle at 78% 20%, rgba(31, 78, 121, 0.24), transparent 34rem),
    radial-gradient(circle at 15% 72%, rgba(34, 81, 255, 0.14), transparent 26rem) !important;
}

.cinematic-hero-overlay,
.work-hero-overlay,
.cluster-hero-overlay,
.article-hero-overlay,
.slideshow-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 24, 39, 0.68) 0%, rgba(5, 28, 44, 0.34) 42%, rgba(31, 78, 121, 0.12) 74%, transparent 100%),
    linear-gradient(to top, rgba(7, 24, 39, 0.34) 0%, rgba(5, 28, 44, 0.10) 52%, transparent 100%) !important;
}

.cinematic-hero--about .cinematic-hero-overlay,
.cinematic-hero--services .cinematic-hero-overlay,
.cinematic-hero--team .cinematic-hero-overlay,
.cinematic-hero--academy .cinematic-hero-overlay {
  background:
    radial-gradient(ellipse at 20% 68%, rgba(34, 81, 255, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(7, 24, 39, 0.66) 0%, rgba(5, 28, 44, 0.32) 42%, rgba(31, 78, 121, 0.14) 76%, transparent 100%),
    linear-gradient(to top, rgba(7, 24, 39, 0.30) 0%, rgba(5, 28, 44, 0.08) 56%, transparent 100%) !important;
}

.cinematic-hero-media img,
.work-hero-media img,
.cluster-hero-media img,
.article-hero-media img,
.slideshow-hero-media img {
  filter: saturate(1.1) contrast(1.2) brightness(0.72) sepia(0.04) hue-rotate(178deg) !important;
}

@media (max-width: 700px) {
  .cinematic-hero-overlay,
  .work-hero-overlay,
  .cluster-hero-overlay,
  .article-hero-overlay,
  .slideshow-hero-overlay {
    background:
      radial-gradient(circle at 20% 68%, rgba(34, 81, 255, 0.15), transparent 18rem),
      linear-gradient(90deg, rgba(7, 24, 39, 0.62), rgba(31, 78, 121, 0.16)),
      linear-gradient(to top, rgba(7, 24, 39, 0.36), rgba(5, 28, 44, 0.10)) !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   Design Mirror — McKinsey sharp corners (see mmk-unified.css)
   ═══════════════════════════════════════════════════════════ */
.btn, button, [class*="btn"], input, textarea, select,
[class*="card"], [class*="panel"], [class*="tile"], [class*="box"],
[class*="hero"], [class*="cta"], [class*="tab"], [class*="chip"],
[class*="tag"], [class*="pill"], [class*="badge"], [class*="field"],
[class*="search"], [class*="media"], [class*="thumb"], [class*="cover"],
[class*="frame"], [class*="photo"], [class*="image"], [class*="img-"],
figure, blockquote, pre, code, table, img, picture, video {
  border-radius: 0 !important;
}
[class*="avatar"], [class*="circle"], [class*="round"], [class*="headshot"],
[class*="-pic"], [class*="profile-photo"], [class*="profile-img"],
[class*="social"], [class*="dot"], .wa-float,
.footer-socials a, .social-icon-link {
  border-radius: 50% !important;
}
