/* =====================================================
   COPILOT INNOVATIONS — HOMEPAGE STYLES
   Design tokens from Figma: c3bLMBvXtFvmA7Yfka2SwI
   ===================================================== */

/* ─── SEASONMIX TRIAL (self-hosted display serif) ─── */
@font-face {
  font-family: 'SeasonMix Trial';
  src: url('https://assets.cdn.filesafe.space/TUW0jDExSTpOFLN069CH/media/6a3ec4d5163e40d862659554.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SeasonMix Trial';
  src: url('https://assets.cdn.filesafe.space/TUW0jDExSTpOFLN069CH/media/6a3ec4d6e2763b2eec174991.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'SeasonMix Trial';
  src: url('https://assets.cdn.filesafe.space/TUW0jDExSTpOFLN069CH/media/6a3ec4d814a2b82bfeefe54d.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SeasonMix Trial';
  src: url('https://assets.cdn.filesafe.space/TUW0jDExSTpOFLN069CH/media/6a3ec4d8cb92c4e0c8a28600.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'SeasonMix Trial';
  src: url('https://assets.cdn.filesafe.space/TUW0jDExSTpOFLN069CH/media/6a3ec4d7c492ddc24c7459ec.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SeasonMix Trial';
  src: url('https://assets.cdn.filesafe.space/TUW0jDExSTpOFLN069CH/media/6a3ec4d7163e40d862659592.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'SeasonMix Trial';
  src: url('https://assets.cdn.filesafe.space/TUW0jDExSTpOFLN069CH/media/6a3ec4d914a2b82bfeefe553.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SeasonMix Trial';
  src: url('https://assets.cdn.filesafe.space/TUW0jDExSTpOFLN069CH/media/6a3ec4da5aefbd076b9def3d.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'SeasonMix Trial';
  src: url('https://assets.cdn.filesafe.space/TUW0jDExSTpOFLN069CH/media/6a3ec4d25aefbd076b9dee5f.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SeasonMix Trial';
  src: url('https://assets.cdn.filesafe.space/TUW0jDExSTpOFLN069CH/media/6a3ec4d3e2763b2eec174911.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'SeasonMix Trial';
  src: url('https://assets.cdn.filesafe.space/TUW0jDExSTpOFLN069CH/media/6a3ec4d4e2763b2eec17493b.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SeasonMix Trial';
  src: url('https://assets.cdn.filesafe.space/TUW0jDExSTpOFLN069CH/media/6a3ec4d5d50c4ff184de0692.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --navy: #2d3e4f;
  --dark-navy: #24313d;
  --coral: #e97a62;
  --coral-2: #f17e64;
  --green: #78be20;
  --blue-light: #d4e3f1;
  --bg-light: #f6f5f4;
  --black: #0a0a0a;
  --white: #fff;
  --text-dark: #232121;
  --text-muted: rgba(255,255,255,0.8);

  --font-serif: 'SeasonMix Trial', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Manrope', system-ui, sans-serif;

  --radius: 8px;
  --radius-lg: 20px;
  --radius-xl: 40px;

  --max-w: 1440px;
  --px: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.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;
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─── LAYOUT ─── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
  width: 100%;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-icon { width: 24px; height: 24px; object-fit: contain; }
.btn-white  { background: var(--white); color: var(--black); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid var(--white); }
.btn-primary { background: var(--coral); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 73px;
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { margin-left: auto; }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: calc(100vh - 24px);
  min-height: 786px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.2px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  animation: fadeUp 1s ease 0.2s both;
}
.hero-heading em { font-style: normal; }
.accent-upper { text-transform: uppercase; }
.highlight { color: var(--coral); }
.hero-heading .highlight { color: #FFBAAC; }
.hero-sub {
  font-size: clamp(16px, 1.8vw, 26px);
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 640px;
  text-align: center;
  animation: fadeUp 1s ease 0.4s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s ease 0.6s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── CLIENT HERO (clients.html) ─── */
.client-hero {
  position: relative;
  min-height: 760px;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(233,122,98,0.14) 0%, rgba(233,122,98,0) 34%),
    linear-gradient(135deg, #0b0b0b 0%, #15130f 52%, #24201a 100%);
  padding-top: 104px;
  padding-bottom: 126px;
}
.client-hero-image {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: max(var(--px), calc((100vw - var(--max-w)) / 2 + var(--px)));
  bottom: auto;
  width: min(38vw, 560px);
  height: clamp(360px, 52vh, 500px);
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 32px 90px rgba(0,0,0,0.42);
  transform: translateY(-50%);
  transition: opacity 0.24s ease, transform 0.7s ease;
}
.client-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.44) 0%, rgba(0,0,0,0.2) 46%, rgba(0,0,0,0.02) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0) 42%, rgba(0,0,0,0.46) 100%);
}
.client-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  animation: fadeUp 0.9s ease 0.2s both;
}
.client-hero-copyblock {
  width: min(48vw, 600px);
  max-width: 600px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(10,10,10,0.78);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
  backdrop-filter: blur(16px);
}
.client-hero-watermark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--coral);
  filter: none;
}
.ch-watermark-name {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.6px;
  line-height: 1.2;
  text-transform: uppercase;
}
.ch-watermark-sub {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-top: 0;
  opacity: 0.78;
}
.ch-watermark-sub:not(:empty)::before {
  content: '/';
  margin-right: 10px;
  color: rgba(255,255,255,0.35);
}
.client-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.8vw, 58px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: 0;
  max-width: 640px;
  margin: 0 0 18px;
  text-wrap: balance;
}
.client-hero-heading .ch-line { display: block; }
.client-hero-heading .ch-accent {
  display: block;
  font-style: italic;
  font-weight: 500;
}
.client-hero-copy {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255,255,255,0.76);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
}
.client-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.client-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
}
.client-hero-cta svg { width: 14px; height: 14px; }

/* Tabs strip pinned to bottom of hero */
.client-hero-tabs {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 24px;
  width: min(calc(100% - (var(--px) * 2)), 920px);
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(13,13,13,0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(0,0,0,0.3);
}
.client-hero-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 18px 16px;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.95);
  cursor: pointer;
  opacity: 0.32;
  filter: grayscale(0.6);
  transition: opacity 0.3s ease, filter 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.client-hero-tab:first-child { border-left: 0; }
.client-hero-tab:hover {
  opacity: 0.7;
  filter: grayscale(0.2);
  background: rgba(255,255,255,0.03);
}
.client-hero-tab.is-active {
  opacity: 1;
  filter: none;
  background: rgba(255,255,255,0.04);
}
.client-hero-tab.is-active .client-tab-mark {
  text-shadow: 0 0 24px rgba(233,122,98,0.35);
}
.client-hero-tab.is-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: var(--coral);
  border-radius: 0 0 3px 3px;
  box-shadow: 0 0 18px rgba(233,122,98,0.6);
}
.client-hero-tab.is-active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(233,122,98,0.08) 0%, rgba(233,122,98,0) 60%);
  pointer-events: none;
}
.client-tab-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
}
.ctm-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
}
.ctm-name--lower {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0;
  font-size: 26px;
  text-transform: lowercase;
}
.ctm-name--bold {
  letter-spacing: 4px;
  font-weight: 800;
}
.ctm-sub {
  display: none;
}
.client-hero-tab .ctm-name + .ctm-sub,
.client-hero-tab .client-tab-mark { flex-wrap: wrap; }
.client-hero-tab .client-tab-mark {
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.client-hero-tab .client-tab-mark .ctm-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.85;
}
.ctm-heart {
  color: var(--coral);
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 768px) {
  .client-hero { display: block; min-height: auto; height: auto; padding: 118px 0 32px; }
  .client-hero-image {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    display: block;
    width: calc(100% - (var(--px) * 2));
    height: 310px;
    margin: 0 auto 22px;
    transform: none;
  }
  .client-hero-overlay { display: none; }
  .client-hero-content { padding-top: 0; }
  .client-hero-copyblock {
    width: 100%;
    max-width: none;
    padding: 28px 22px;
  }
  .client-hero-copy { max-width: 100%; margin-bottom: 28px; }
  .client-hero-tabs {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - (var(--px) * 2));
    margin: 22px auto 0;
    transform: none;
  }
  .client-hero-tab { min-height: 78px; padding: 16px 8px; }
  .ctm-name { font-size: 16px; letter-spacing: 2px; }
  .ctm-name--lower { font-size: 20px; }
  .client-hero-tab.is-active::before { width: 44px; }
  .client-hero-heading { font-size: clamp(36px, 12vw, 52px); }
  .ch-watermark-name { font-size: 11px; }
}

@media (max-width: 560px) {
  .client-hero-tabs { grid-template-columns: 1fr; }
  .client-hero-tab {
    min-height: 64px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .client-hero-tab:first-child { border-top: 0; }
}

/* ─── INTRO (editorial dark inset) ─── */
.intro {
  background: #0a0a0a;
  padding: 80px 24px 100px;
}
.intro-inner {
  max-width: 1280px;
  margin: 0 auto;
  background: #131313;
  border-radius: 4px;
  padding: 72px clamp(40px, 6vw, 96px) 64px;
  position: relative;
}
.intro-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 48px;
}
.intro-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.78);
  margin: 0 0 28px;
  max-width: 920px;
  text-wrap: pretty;
}
.intro-watch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.intro-watch svg {
  width: 22px;
  height: 22px;
  color: #fff;
  transition: transform 0.3s ease;
}
.intro-watch:hover {
  border-bottom-color: rgba(255,255,255,0.5);
}
.intro-watch:hover svg {
  transform: translateY(4px);
}

.intro-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-top: 140px;
}
.intro-videos {
  display: flex;
  gap: 14px;
}
.intro-video {
  position: relative;
  width: 140px;
  height: 92px;
  border-radius: 4px;
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
.intro-video:hover { transform: translateY(-3px); }
.intro-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #131313;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.intro-video__play svg { width: 14px; height: 14px; margin-left: 2px; }
.intro-video:hover .intro-video__play {
  transform: translate(-50%, -50%) scale(1.08);
}

.intro-note {
  justify-self: end;
  max-width: 360px;
}
.intro-note h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}
.intro-note p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

@media (max-width: 760px) {
  .intro { padding: 60px 16px 70px; }
  .intro-inner { padding: 52px 28px 44px; }
  .intro-eyebrow { margin-bottom: 32px; }
  .intro-bottom {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 80px;
    align-items: start;
  }
  .intro-note { justify-self: start; }
}
.showcase {
  background: var(--white);
  padding: 100px 0 110px;
}
.showcase .section-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}
.showcase-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}
.client-list li {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 48px);
  color: rgba(35,33,33,0.25);
  line-height: 1.3;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
  padding: 2px 0;
  letter-spacing: -0.01em;
}
.client-list li.client-active { color: var(--green); }
.client-list li:nth-child(2).client-active { color: #2BAAE1; }
.client-list li:nth-child(3).client-active { color: #E97C25; }
.client-list li:nth-child(4).client-active { color: #FF763D; }
.client-list li:nth-child(5).client-active { color: #4F65D4; }
.client-list li:nth-child(6).client-active { color: #2D8FB8; }
.client-list li:hover:not(.client-active) {
  color: rgba(35,33,33,0.55);
  transform: translateX(4px);
}

.showcase-card {
  background: var(--bg-light);
  border: 1px solid rgba(35,33,33,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(35,33,33,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(35,33,33,0.10);
}
.showcase-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #ece8e2;
}
.showcase-img-wrap img,
.showcase-img-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
  content-visibility: auto;
}
.showcase-img-wrap video[hidden],
.showcase-img-wrap img[hidden] { display: none; }
.showcase-card:hover .showcase-img-wrap img { transform: scale(1.04); }
.showcase-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.92);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 2;
}
.showcase-play svg { width: 28px; height: 28px; margin-left: 3px; }
.showcase-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--white);
}
.showcase-play[hidden] { display: none; }
.showcase-meta { padding: 28px 32px; }
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 0;
  margin-bottom: 12px;
}
.tag-green { color: var(--green); }
.tag-humana { color: var(--green); }
.tag-ohio { color: #2BAAE1; }
.tag-star { color: #E97C25; }
.tag-handful { color: #FF763D; }
.tag-nasa { color: #7E93FC; }
.tag-lab { color: #55BAE2; }
.showcase-meta h3 {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.showcase-meta p {
  font-size: 15.5px;
  color: rgba(35,33,33,0.65);
  line-height: 1.6;
}
.showcase-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
  padding-bottom: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.showcase-link:hover {
  color: var(--coral);
  transform: translateX(3px);
}

/* ─── VALUE PROPS (REDESIGN: tall portrait statement cards) ─── */
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 64px;
}
.value-props {
  background: #f2f8f9;
  padding: 100px 0 120px;
}
.vp-intro {
  margin-bottom: 56px;
}
.value-props .section-heading { margin-bottom: 0; }
.vp-dot { color: var(--coral); }

.vp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.vp-card {
  position: relative;
  border-radius: 22px;
  padding: 32px 28px 32px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.vp-card:hover { transform: translateY(-6px); }

/* Card colorways */
.vp-card--black {
  background: #0c0c0c;
  color: #f4efe2;
}
.vp-card--cream {
  background: #f3ecd9;
  color: #1f2c2a;
}
.vp-card--sage {
  background: #c8d6c0;
  color: #1f2c2a;
}
.vp-card--navy {
  background: #24313d;
  color: #f4efe2;
}

.vp-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.vp-card__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.75;
}

.vp-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: currentColor;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: 4px;
}
.vp-card__icon svg { width: 28px; height: 28px; }
.vp-card--cream .vp-card__icon,
.vp-card--sage .vp-card__icon {
  background: rgba(31,44,42,0.06);
  border-color: rgba(31,44,42,0.14);
}

.vp-card__heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-top: 0;
  margin-bottom: 18px;
  text-wrap: balance;
}

/* Accent words */
.vp-card--black .vp-card__accent { color: #FFA38B; }
.vp-card--cream .vp-card__accent,
.vp-card--sage .vp-card__accent { color: var(--coral); }
.vp-card--navy .vp-card__accent { color: #f3a78f; }

.vp-card__body {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.55;
  opacity: 0.75;
  max-width: 26ch;
  align-self: flex-start;
  text-align: left;
}
.vp-card--cream .vp-card__body,
.vp-card--sage .vp-card__body { opacity: 0.68; }

/* Responsive */
@media (max-width: 1100px) {
  .vp-grid { grid-template-columns: repeat(2, 1fr); }
  .vp-card { min-height: 460px; }
}
@media (max-width: 640px) {
  .vp-grid { grid-template-columns: 1fr; gap: 14px; }
  .vp-card { min-height: 420px; padding: 28px 24px; }
}

/* ─── FEATURES ─── */
.features {
  background: var(--bg-light);
  padding: 0 0 100px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.1); }
.feature-icon-wrap {
  width: 58px; height: 58px;
  border-radius: 100px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.bg-blue { background: var(--blue-light); }
.feature-icon-wrap img { width: 30px; height: 30px; object-fit: contain; }
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  line-height: 1.3;
}
.check-list li {
  font-size: 15px;
  color: var(--text-dark);
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid #f0eeee;
  line-height: 1.5;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  background: url('https://www.figma.com/api/mcp/asset/479c00fc-087a-4327-9d22-7441786c7260') center/contain no-repeat;
}

/* ─── OUR APPROACH (STICKY STACKING CARDS) ─── */
.approach {
  background: #0a0a0a;
  padding: 110px 0 110px;
  position: relative;
  overflow: visible;
}
.approach-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.approach-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 60px;
  max-width: 900px;
}
.approach-heading .highlight { color: var(--coral); }

/* ─── Approach: left title + right 2x2 card grid ─── */
.approach { padding: 110px 0 130px; }
.approach-eyebrow { margin-bottom: 56px; }

.approach-stage {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 72px;
  align-items: start;
  margin: 0 auto 72px;
}

.approach-stage__overline {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin: 0 0 16px;
  padding-bottom: 14px;
  position: relative;
}
.approach-stage__overline::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 2px;
  background: var(--coral);
}
.approach-stage__title {
  font-family: var(--font-serif);
  font-size: clamp(56px, 6.2vw, 96px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
}
.approach-stage__dot { color: var(--coral); }

.approach-cta {
  margin-top: 68px;
  text-align: left;
}

.approach-stage__right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ap-card {
  background: #D4E3F1;
  border: 1px solid rgba(35,33,33,0.06);
  border-radius: 20px;
  padding: 32px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, background 0.35s ease;
}
.ap-card--cream { background: #f1ead5; }
.ap-card--blue  { background: #D4E3F1; }
.ap-card--white { background: #ffffff; }
.ap-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 122, 98, 0.4);
}
.ap-card--cream:hover { background: #ebe2c4; }
.ap-card--blue:hover  { background: #c5d6e8; }
.ap-card--white:hover { background: #f4efe2; }
.ap-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--coral);
}
.ap-card__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 1.9vw, 26px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: #0a0a0a;
  margin: 0;
  text-wrap: balance;
}
.ap-card__desc {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(10,10,10,0.68);
  margin: 0;
}

@media (max-width: 1000px) {
  .approach-stage { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .approach-stage__right { grid-template-columns: 1fr; }
  .ap-card { min-height: 0; }
}
/* ─── INTERACTIVE AI CANVAS ─── */
.solutions {
  position: relative;
  background: var(--white);
  padding: 110px 0 120px;
  overflow: hidden;
}
.solutions-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(217,196,108,0.18) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(217,196,108,0.18) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 100%);
}
.solutions-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 42px;
}
.solutions-heading {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0 auto 18px;
  max-width: 1080px;
  text-wrap: balance;
}
.solutions-heading__accent { color: var(--coral); }
.solutions-explorer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 4px auto 14px;
  color: rgba(35,33,33,0.8);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.solutions-explorer__select {
  min-width: 220px;
  appearance: auto;
  border: 1px solid rgba(35,33,33,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  color: var(--text-dark);
  font: 700 13px/1 var(--font-sans);
  letter-spacing: 0;
  text-transform: none;
  padding: 12px 42px 12px 16px;
  box-shadow: 0 12px 30px rgba(40,30,10,0.08);
  cursor: pointer;
}
.solutions-explorer__select:focus-visible {
  outline: 3px solid rgba(233,122,98,0.35);
  outline-offset: 3px;
}
.solutions-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(35,33,33,0.65);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.ai-canvas-wrap {
  position: relative;
  z-index: 2;
}
.ai-canvas-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: rgba(35,33,33,0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.ai-canvas-viewport {
  position: relative;
  height: clamp(520px, 58vw, 720px);
  border: 1px solid rgba(35,33,33,0.12);
  border-radius: 8px;
  overflow: hidden;
  background: #efece6;
  box-shadow: 0 28px 70px rgba(40,30,10,0.16);
  cursor: grab;
  isolation: isolate;
  touch-action: none;
  user-select: none;
}
.ai-canvas-viewport:focus-visible {
  outline: 3px solid rgba(233,122,98,0.42);
  outline-offset: 4px;
}
.ai-canvas-viewport.is-dragging {
  cursor: grabbing;
}
.ai-canvas-stage {
  position: absolute;
  top: 0;
  left: 0;
  width: min(1823px, 190vw);
  min-width: 1180px;
  aspect-ratio: 1823 / 863;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.ai-canvas-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  pointer-events: none;
  user-select: none;
}
.ai-hotspot {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 4;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 0 0 9px rgba(255,186,172,0.22), 0 0 34px rgba(233,122,98,0.72);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.ai-hotspot::before,
.ai-hotspot::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  background: var(--coral);
}
.ai-hotspot::after {
  inset: -10px;
  border: 1px solid rgba(233,122,98,0.58);
  background: transparent;
  animation: aiHotspotPulse 1.8s ease-out infinite;
}
.ai-hotspot__pulse {
  position: absolute;
  inset: -18px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255,186,172,0.28) 0%, rgba(255,186,172,0) 64%);
  opacity: 0.85;
}
@keyframes aiHotspotPulse {
  from { opacity: 0.75; transform: scale(0.72); }
  to { opacity: 0; transform: scale(1.65); }
}
.ai-hotspot:focus-visible {
  outline: 3px solid rgba(35,33,33,0.72);
  outline-offset: 6px;
}
.ai-hotspot-card {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 6;
  width: 300px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(35,33,33,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  color: var(--text-dark);
  box-shadow: 0 22px 55px rgba(25,20,12,0.22);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 30px)) scale(0.96);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.ai-hotspot-card::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.94);
  border-right: 1px solid rgba(35,33,33,0.12);
  border-bottom: 1px solid rgba(35,33,33,0.12);
  transform: translateX(-50%) rotate(45deg);
}
.ai-hotspot-card.is-active,
.ai-hotspot:hover + .ai-hotspot-card,
.ai-hotspot:focus-visible + .ai-hotspot-card {
  opacity: 1;
  transform: translate(-50%, calc(-100% - 24px)) scale(1);
}
.ai-hotspot-card.is-active.is-card-left,
.ai-hotspot:hover + .ai-hotspot-card.is-card-left,
.ai-hotspot:focus-visible + .ai-hotspot-card.is-card-left {
  transform: translate(-16px, calc(-100% - 24px)) scale(1);
}
.ai-hotspot-card.is-active.is-card-right,
.ai-hotspot:hover + .ai-hotspot-card.is-card-right,
.ai-hotspot:focus-visible + .ai-hotspot-card.is-card-right {
  transform: translate(calc(-100% + 16px), calc(-100% - 24px)) scale(1);
}
.ai-hotspot-card.is-active.is-card-below,
.ai-hotspot:hover + .ai-hotspot-card.is-card-below,
.ai-hotspot:focus-visible + .ai-hotspot-card.is-card-below {
  transform: translate(-50%, 28px) scale(1);
}
.ai-hotspot-card.is-active.is-card-below.is-card-left,
.ai-hotspot:hover + .ai-hotspot-card.is-card-below.is-card-left,
.ai-hotspot:focus-visible + .ai-hotspot-card.is-card-below.is-card-left {
  transform: translate(-16px, 28px) scale(1);
}
.ai-hotspot-card.is-active.is-card-below.is-card-right,
.ai-hotspot:hover + .ai-hotspot-card.is-card-below.is-card-right,
.ai-hotspot:focus-visible + .ai-hotspot-card.is-card-below.is-card-right {
  transform: translate(calc(-100% + 16px), 28px) scale(1);
}
.ai-hotspot-card.is-card-left::after { left: 24px; }
.ai-hotspot-card.is-card-right::after { left: calc(100% - 24px); }
.ai-hotspot-card.is-card-below::after {
  top: -9px;
  bottom: auto;
  border: 0;
  border-left: 1px solid rgba(35,33,33,0.12);
  border-top: 1px solid rgba(35,33,33,0.12);
}
.ai-hotspot-card__eyebrow {
  display: flex;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.ai-hotspot-card h3 {
  margin: 0 0 8px;
  color: var(--text-dark);
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.ai-hotspot-card p {
  margin: 0;
  color: rgba(35,33,33,0.7);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .solutions { padding: 88px 0 96px; }
  .solutions-inner { padding-bottom: 34px; }
  .solutions-explorer { flex-wrap: wrap; gap: 10px; }
  .ai-canvas-topline { font-size: 10px; letter-spacing: 1.3px; }
  .ai-canvas-viewport { height: 520px; }
  .ai-canvas-stage { min-width: 1180px; width: 1180px; }
  .ai-hotspot-card { width: 260px; padding: 16px; }
  .ai-hotspot-card h3 { font-size: 22px; }
}

@media (max-width: 600px) {
  .solutions-explorer { width: 100%; align-items: stretch; flex-direction: column; }
  .solutions-explorer__select { width: 100%; min-width: 0; }
  .ai-canvas-topline { align-items: flex-start; flex-direction: column; gap: 6px; }
  .ai-canvas-viewport { height: 470px; margin-left: calc(var(--px) * -1); margin-right: calc(var(--px) * -1); border-radius: 0; border-left: 0; border-right: 0; }
  .ai-canvas-stage { min-width: 1080px; width: 1080px; }
  .ai-hotspot { width: 34px; height: 34px; }
  .ai-hotspot-card { width: 240px; }
}

/* ─── TEAM ─── */
.team {
  background: var(--dark-navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.team-bg-graphic {
  position: absolute;
  right: 0; top: 0;
  width: 50%;
  height: 100%;
  opacity: 0.2;
  pointer-events: none;
}
.team-bg-graphic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}
.team-intro {
  margin-bottom: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.team-intro__copy { flex: 1 1 460px; }
.team-sub {
  font-size: clamp(16px, 1.5vw, 22px);
  color: rgba(255,255,255,0.75);
  margin-top: 12px;
  max-width: 600px;
}
@media (max-width: 700px) {
  .team-intro { flex-direction: column; align-items: flex-start; }
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 24px;
  align-items: start;
}
.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blue-light);
  position: relative;
  transition: transform 0.3s;
}
.team-card:hover { transform: scale(1.02); }
.team-card-img { height: 300px; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body {
  padding: 20px;
  background: linear-gradient(to top, rgba(45,62,79,0.95), rgba(45,62,79,0.3));
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.team-card-body h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.team-card-body p { font-size: 14px; color: rgba(35,33,33,0.72); }

.stats-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stats-row.mt { margin-top: 20px; }
.stat-item {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 20px;
}
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.stat-item-wide {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 20px;
}
.val-row { display: flex; gap: 14px; align-items: flex-start; }
.val-icon { font-size: 22px; line-height: 1; flex-shrink: 0; }
.val-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.val-sub {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.45;
}

/* ─── RESOURCES ─── */
.resources {
  background: var(--white);
  padding: 100px 0;
}
.resources-header {
  margin-bottom: 56px;
}
.resources-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.highlight-dark { color: var(--coral); }
.resources-header p {
  font-size: clamp(16px, 1.5vw, 22px);
  color: rgba(35,33,33,0.7);
  max-width: 700px;
  line-height: 1.55;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.res-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  background: var(--text-dark);
  transition: transform 0.3s, box-shadow 0.3s;
  aspect-ratio: 3 / 4;
  min-height: 420px;
  isolation: isolate;
}
.res-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
.res-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.res-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.res-card:hover .res-img img { transform: scale(1.05); }
.res-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  z-index: 1;
  color: var(--text-dark);
}
.res-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}
.res-body h4 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.35;
}
.res-body h4 .sub-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
}
.res-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 2px solid var(--text-dark);
  transition: color 0.2s, border-color 0.2s;
}
.res-download:hover { color: var(--coral); border-color: var(--coral); }
.dl-icon { width: 18px; height: 18px; }

/* ─── FOOTER (MODERN REDESIGN) ─── */
.footer {
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 0;
}
.footer-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px var(--px) 24px;
  width: 100%;
}

/* Big CTA */
.footer-cta {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 64px 0 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 24px 40px;
  align-items: end;
}
.footer-cta__eyebrow {
  grid-column: 1 / -1;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.footer-cta__heading {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
.footer-cta__heading em {
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}
.footer-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #fff;
  text-decoration: none;
  padding: 18px 28px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.footer-cta__link:hover {
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-2px);
}
.footer-cta__link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.footer-cta__link:hover svg { transform: translateX(4px); }

/* Brand + links grid */
.footer-grid {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 64px 0 56px;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 64px;
}
.footer-brand__logo img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 24px;
}
.footer-brand__tagline {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
  margin: 0 0 28px;
  max-width: 360px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
}
.footer-contact a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  width: fit-content;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-contact a:hover { color: var(--coral); border-bottom-color: var(--coral); }
.footer-contact span { color: rgba(255,255,255,0.5); }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: space-between;
  gap: 64px;
  width: 100%;
}
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 22px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  letter-spacing: 0;
  text-transform: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.footer-col ul li a:hover {
  color: #fff;
  transform: translateX(3px);
}

/* Connect strip */
.footer-connect {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.footer-social a:hover {
  color: #fff;
  border-color: var(--coral);
  background: rgba(233, 122, 98, 0.12);
  transform: translateY(-2px);
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-totop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}
.footer-totop:hover { color: #fff; }
.footer-totop svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.footer-totop:hover svg { transform: translateY(-3px); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.footer-bottom span {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  letter-spacing: 0;
}
.footer-legal { display: flex; gap: 28px; }
.footer-legal a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: #fff; }

/* Giant background wordmark */
.footer-watermark {
  position: absolute;
  left: 50%;
  bottom: -2vw;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

@media (max-width: 1000px) {
  .footer-inner { padding: 64px var(--px) 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 56px; padding: 48px 0 40px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
}
@media (max-width: 640px) {
  .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .footer-connect { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}


/* ─── RESPONSIVE ─── */
@media (max-width: 1440px) {
  :root { --max-w: 100%; }
}
@media (max-width: 1100px) {
  :root { --px: 40px; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .vp-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stats-card { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  :root { --px: 24px; }
  .nav-links { display: none; }
  .showcase .section-inner { grid-template-columns: 1fr; }
  .vp-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  :root { --px: 16px; }
  .resources-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ─── NAV DROPDOWN ─── */
.nav-links .has-dropdown { position: relative; }
.nav-link-with-arrow { display: flex; align-items: center; gap: 6px; }
.nav-arrow { width: 10px; height: 6px; transition: transform 0.25s; flex-shrink: 0; }
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -20px;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 248px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
  list-style: none;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.has-dropdown:hover .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown li a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

/* ─── HAMBURGER & MOBILE NAV ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  position: fixed;
  top: 73px; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(18px);
  z-index: 98;
  overflow-y: auto;
  padding: 24px var(--px);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile-links { list-style: none; }
.nav-mobile-links > li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-mobile-links > li:last-child { border-bottom: none; }
.nav-mobile-links a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav-mobile-links a:hover { color: var(--white); }
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
}
.mobile-dropdown-toggle svg { width: 14px; height: 9px; transition: transform 0.3s; flex-shrink: 0; }
.mobile-dropdown-toggle.open svg { transform: rotate(180deg); }
.mobile-dropdown { list-style: none; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.mobile-dropdown.open { max-height: 400px; }
.mobile-dropdown li a { padding: 10px 16px; font-size: 15px; color: rgba(255,255,255,0.6); }
.nav-mobile-links .btn { margin-top: 12px; width: 100%; justify-content: center; }
body.nav-open { overflow: hidden; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ─── INNER PAGE HERO ─── */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--black);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://www.figma.com/api/mcp/asset/bfd812f2-f555-4a34-820a-497eabf409c4') center/cover;
  opacity: 0.05;
}
.page-hero-content { position: relative; z-index: 2; }
.page-tag {
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--coral);
  display: block; margin-bottom: 20px;
}
.page-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 600; color: var(--white);
  line-height: 1.1; max-width: 860px; margin-bottom: 24px;
}
.page-hero-sub {
  font-size: clamp(16px, 1.8vw, 22px);
  color: rgba(255,255,255,0.78);
  max-width: 640px; line-height: 1.6; margin-bottom: 36px;
}

/* ─── CONTACT PAGE ─── */
.contact-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--dark-navy); overflow: hidden;
}
@media (max-width: 700px) {
  .contact-hero { min-height: auto; }
}
.contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://www.figma.com/api/mcp/asset/bfd812f2-f555-4a34-820a-497eabf409c4') center/cover;
  opacity: 0.06;
}
.contact-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,62,79,0.95) 0%, rgba(10,10,10,0.9) 100%);
}
.contact-hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 140px var(--px) 80px; width: 100%;
}
.contact-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600; color: var(--white); margin-bottom: 24px; line-height: 1.1;
}
.contact-hero-sub {
  font-size: clamp(16px, 1.8vw, 22px);
  color: rgba(255,255,255,0.8);
  max-width: 800px; margin: 0 auto 36px; line-height: 1.6;
}
.contact-phone {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: fit-content;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700; color: var(--coral); margin: 0 auto 16px;
  transition: opacity 0.2s;
}
.contact-phone:hover { opacity: 0.85; }
.contact-phone svg { width: 26px; height: 26px; flex-shrink: 0; }
.contact-badge {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: fit-content;
  max-width: min(100%, 560px);
  padding: 14px 24px;
  border: 1.5px solid rgba(233,122,98,0.4);
  background: rgba(233,122,98,0.08);
  border-radius: 100px;
  font-size: 15px; color: var(--white);
  text-align: center;
  margin: 0 auto;
}
.contact-badge svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--coral); }
.contact-chat-section {
  background: var(--black); padding: 80px 0 100px; text-align: center;
}
.contact-chat-heading {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600; color: var(--white); margin-bottom: 14px;
}
.contact-chat-intro {
  max-width: 720px;
  margin: 0 auto 44px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}
.chat-widget {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; overflow: hidden;
  max-width: 800px; margin: 0 auto; text-align: left;
}
.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 0 24px; height: 72px;
  background: rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.chat-avatar {
  width: 40px; height: 40px; background: var(--coral); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--black); flex-shrink: 0;
}
.chat-name { font-size: 15px; font-weight: 600; color: var(--white); }
.chat-online {
  font-size: 12px; color: var(--green); margin-left: auto;
  display: flex; align-items: center; gap: 5px;
}
.chat-online::before {
  content: ''; width: 7px; height: 7px;
  background: var(--green); border-radius: 50%;
}
.chat-body {
  background: #0c0c0c; min-height: 280px;
  padding: 28px 24px; display: flex; flex-direction: column; gap: 16px;
  max-height: 360px; overflow-y: auto;
}
.chat-msg { display: flex; gap: 12px; align-items: flex-start; }
.chat-msg.user-msg { flex-direction: row-reverse; }
.chat-msg-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(233,122,98,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.chat-msg-avatar svg { width: 18px; height: 18px; }
.chat-bubble {
  background: rgba(255,255,255,0.13); border-radius: 16px;
  padding: 12px 16px; max-width: 580px;
  font-size: 14.5px; color: var(--white); line-height: 1.6;
}
.chat-bubble a { color: var(--coral); }
.user-msg .chat-bubble {
  background: rgba(233,122,98,0.2);
  border-radius: 16px 16px 4px 16px;
}
.chat-quick-replies {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.chat-quick-btn {
  padding: 10px 16px;
  border: 1px solid rgba(233,122,98,0.45); border-radius: 6px;
  background: none; color: rgba(255,255,255,0.9);
  font-size: 13px; font-family: var(--font-sans);
  cursor: pointer; transition: background 0.2s, border-color 0.2s; text-align: left;
}
.chat-quick-btn:hover { background: rgba(233,122,98,0.12); border-color: var(--coral); }
.chat-input-row {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.chat-input {
  flex: 1; background: none; border: none; outline: none;
  font-size: 15px; font-family: var(--font-sans);
  color: rgba(255,255,255,0.8);
}
.chat-input::placeholder { color: rgba(255,255,255,0.35); }
.chat-send-btn {
  width: 40px; height: 40px; background: var(--coral);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.2s; flex-shrink: 0;
}
.chat-send-btn:hover { opacity: 0.85; }
.chat-send-btn svg { width: 16px; height: 16px; }
.contact-locations { background: var(--bg-light); padding: 100px 0; }
.location-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 32px; margin-top: 56px;
}
.location-card { text-align: center; }
.location-icon {
  width: 52px; height: 52px; background: var(--blue-light);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
}
.location-icon svg { width: 22px; height: 22px; }
.location-city {
  font-family: var(--font-serif); font-size: 22px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 4px;
}
.location-country {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--coral); margin-bottom: 10px;
}
.location-address { font-size: 14px; color: rgba(35,33,33,0.65); line-height: 1.6; }
.contact-cta-section { background: var(--black); padding: 80px 0; text-align: center; }
@media (max-width: 768px) {
  .location-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .contact-hero-content { padding: 120px var(--px) 60px; }
  .chat-quick-replies { padding-left: 16px; }
}
@media (max-width: 480px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* ─── SERVICE PAGES ─── */
.service-overview { background: var(--bg-light); padding: 100px 0; }
.service-overview-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.service-overview-img {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; background: var(--dark-navy);
  display: flex; align-items: center; justify-content: center;
}
.service-overview-img img { width: 100%; height: 100%; object-fit: cover; }
.service-overview-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600; color: var(--text-dark); line-height: 1.2; margin-bottom: 20px;
}
.service-overview-content p {
  font-size: 17px; color: rgba(35,33,33,0.72); line-height: 1.72; margin-bottom: 16px;
}
.service-deliverables { background: var(--dark-navy); padding: 100px 0; }
.deliverables-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 56px;
}
.deliverable-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 36px 28px;
  color: var(--white); transition: transform 0.3s, background 0.3s;
}
.deliverable-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.deliverable-num {
  font-size: 52px; font-weight: 700;
  color: rgba(255,255,255,0.1); line-height: 1; margin-bottom: 16px;
}
.deliverable-card h3 {
  font-family: var(--font-serif); font-size: 21px; font-weight: 600;
  margin-bottom: 12px; line-height: 1.3;
}
.deliverable-card p { font-size: 14.5px; color: rgba(255,255,255,0.7); line-height: 1.65; }
.service-process { background: var(--bg-light); padding: 100px 0; }
.process-steps { margin-top: 56px; }
.process-step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 32px; padding: 36px 0;
  border-bottom: 1px solid rgba(35,33,33,0.1); align-items: start;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-serif); font-size: 48px; font-weight: 700;
  color: var(--coral); line-height: 1;
}
.step-content h3 {
  font-family: var(--font-sans); font-size: 20px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px;
}
.step-content p { font-size: 16px; color: rgba(35,33,33,0.7); line-height: 1.65; }
.service-cta {
  background: var(--dark-navy); padding: 100px 0;
  text-align: center; position: relative; overflow: hidden;
}
.service-cta::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://www.figma.com/api/mcp/asset/bfd812f2-f555-4a34-820a-497eabf409c4') center/cover;
  opacity: 0.05;
}
.service-cta-inner { position: relative; z-index: 1; }
.service-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600; color: var(--white); margin-bottom: 20px; line-height: 1.2;
}
.service-cta p {
  font-size: clamp(16px, 1.5vw, 20px); color: rgba(255,255,255,0.72);
  max-width: 580px; margin: 0 auto 40px; line-height: 1.6;
}
@media (max-width: 768px) {
  .service-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 56px 1fr; gap: 20px; }
}

/* ─── CLIENTS PAGE ─── */
.clients-grid-section { background: var(--bg-light); padding: 100px 0; }
.clients-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; margin-top: 56px;
}
.client-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.client-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.client-card-img {
  height: 220px; background: var(--dark-navy); overflow: hidden;
}
.client-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.client-card:hover .client-card-img img { transform: scale(1.06); }
.client-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.client-card-industry {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--coral); margin-bottom: 10px;
}
.client-card-body h3 {
  font-family: var(--font-serif); font-size: 21px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px; line-height: 1.3;
}
.client-card-body p { font-size: 14.5px; color: rgba(35,33,33,0.68); line-height: 1.6; flex: 1; margin-bottom: 22px; }
.client-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--text-dark);
  border-bottom: 2px solid var(--text-dark); padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s; width: fit-content;
}
.client-card-link:hover { color: var(--coral); border-color: var(--coral); }
.clients-logos { background: var(--white); padding: 72px 0; }
.logos-heading {
  text-align: center; font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(35,33,33,0.38); margin-bottom: 40px;
}
.logos-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 52px;
}
.logos-strip img {
  height: 28px; width: auto; object-fit: contain;
  filter: grayscale(1) opacity(0.35); transition: filter 0.3s;
}
.logos-strip img:hover { filter: grayscale(0) opacity(0.85); }
@media (max-width: 1100px) { .clients-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .clients-grid { grid-template-columns: 1fr; } }

/* ─── SINGLE CLIENT / CASE STUDY ─── */
.case-hero {
  position: relative; min-height: 560px;
  display: flex; align-items: flex-end; overflow: hidden; background: var(--black);
}
.case-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.case-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.35) 65%, rgba(0,0,0,0.15) 100%);
}
.case-hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--px) 72px; width: 100%;
  max-width: var(--max-w); margin: 0 auto;
}
.case-hero-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--green); margin-bottom: 16px; display: block;
}
.case-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 600; color: var(--white); max-width: 860px; line-height: 1.15; margin-bottom: 32px;
}
.case-hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.case-stat-num {
  display: block; font-family: var(--font-serif);
  font-size: 40px; font-weight: 700; color: var(--coral); line-height: 1;
}
.case-stat-label { display: block; font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; }
.case-content { background: var(--white); padding: 100px 0; }
.case-layout {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 72px; align-items: start;
}
.case-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600; color: var(--text-dark); margin-bottom: 16px; margin-top: 48px;
}
.case-body h2:first-child { margin-top: 0; }
.case-body p { font-size: 17px; color: rgba(35,33,33,0.73); line-height: 1.75; margin-bottom: 16px; }
.case-body ul { list-style: none; margin-bottom: 24px; }
.case-body ul li {
  font-size: 16px; color: rgba(35,33,33,0.73);
  padding: 8px 0 8px 28px; position: relative; line-height: 1.6;
}
.case-body ul li::before {
  content: ''; position: absolute; left: 0; top: 15px;
  width: 12px; height: 12px; background: var(--coral); border-radius: 50%;
}
.case-sidebar { position: sticky; top: 100px; }
.case-sidebar-card {
  background: var(--bg-light); border-radius: var(--radius-lg);
  padding: 28px; margin-bottom: 20px;
}
.case-sidebar-card h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(35,33,33,0.45); margin-bottom: 16px;
}
.case-sidebar-stat {
  padding: 12px 0; border-bottom: 1px solid rgba(35,33,33,0.08);
  display: flex; flex-direction: column; gap: 4px;
}
.case-sidebar-stat:last-child { border-bottom: none; }
.case-sidebar-stat strong {
  font-family: var(--font-serif); font-size: 28px;
  font-weight: 700; color: var(--coral);
}
.case-sidebar-stat span { font-size: 13px; color: rgba(35,33,33,0.58); }
@media (max-width: 1000px) { .case-layout { grid-template-columns: 1fr; } .case-sidebar { position: static; } }

/* ─── CASE STUDY DETAIL PAGE ─── */
.cs-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 22px;
}
.cs-tag--coral { color: var(--coral); }
.cs-tag--small { font-size: 10px; letter-spacing: 3px; margin-bottom: 10px; }
.cs-h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.4px;
}
.cs-h2--light { color: var(--white); }
.cs-h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.cs-body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(35,33,33,0.72);
}
.cs-body--strong {
  font-size: 19px;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 18px;
}
.cs-body + .cs-body { margin-top: 14px; }

.cs-hero {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.cs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(233,122,98,0.08) 0%, rgba(0,0,0,0) 60%);
}
.cs-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.cs-hero-text .cs-tag { color: var(--coral); }
.cs-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.4px;
  max-width: 640px;
}
.cs-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #111;
}
.cs-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.cs-hero-image--wide { aspect-ratio: 16/9; }
.cs-hero-image--dark img {
  filter: brightness(0.68) contrast(1.08) saturate(0.95);
}
@media (max-width: 900px) {
  .cs-hero { padding: 130px 0 70px; }
  .cs-hero-inner { grid-template-columns: 1fr; gap: 36px; }
}

.cs-about {
  background: var(--bg-light);
  padding: 120px 0;
}
.cs-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.cs-about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cs-about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #ddd;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}
.cs-about-img img { width: 100%; height: 100%; object-fit: cover; }
.cs-engagement {
  margin-top: 36px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  border: 1px solid rgba(0,0,0,0.06);
}
.cs-engagement-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(35,33,33,0.5);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cs-engagement-grid {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  gap: 24px 36px;
  align-items: start;
}
.cs-engagement-grid--three { grid-template-columns: auto auto 1fr 1fr; }
.cs-eng-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-eng-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(35,33,33,0.5);
}
.cs-eng-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}
.cs-eng-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.cs-pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(233,122,98,0.10);
  color: var(--coral);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-align: center;
}
.cs-pill--mono {
  background: rgba(13,13,13,0.06);
  color: var(--text-dark);
  font-family: var(--font-sans);
  border-radius: 6px;
}
.cs-pill--dark {
  background: var(--text-dark);
  color: var(--white);
  border-radius: 6px;
  font-size: 11px;
  padding: 7px 12px;
}
@media (max-width: 1000px) {
  .cs-about { padding: 80px 0; }
  .cs-about-grid { grid-template-columns: 1fr; gap: 56px; }
  .cs-engagement-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cs-engagement-grid { grid-template-columns: 1fr; }
  .cs-eng-tags { grid-template-columns: 1fr; }
}

.cs-block {
  background: var(--white);
  padding: 110px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.cs-block--alt { background: var(--bg-light); }
.cs-block--dark { background: var(--black); border-top: 0; }
.cs-block--dark .cs-h2 { color: var(--white); }
.cs-block--dark .cs-h3 { color: var(--white); }
.cs-block--dark .cs-body { color: rgba(255,255,255,0.72); }
.cs-block--dark .cs-body--strong { color: var(--white); }
.cs-block--dark .cs-pill--mono {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.cs-block-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.cs-block-left .cs-h2 { margin-bottom: 24px; }
.cs-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
@media (max-width: 900px) {
  .cs-block { padding: 80px 0; }
  .cs-block-grid { grid-template-columns: 1fr; gap: 36px; }
}

.cs-results {
  background: var(--black);
  padding: 120px 0;
  color: var(--white);
}
.cs-results-head { margin-bottom: 56px; max-width: 720px; }
.cs-results-head .cs-h2--light { margin-top: 6px; }
.cs-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cs-result-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.cs-result-card:hover {
  border-color: rgba(233,122,98,0.45);
  background: rgba(233,122,98,0.06);
  transform: translateY(-4px);
}
.cs-result-num {
  font-family: var(--font-serif);
  font-size: clamp(54px, 6vw, 80px);
  font-weight: 700;
  color: var(--coral);
  line-height: 0.95;
  letter-spacing: -1px;
}
.cs-result-unit {
  font-size: 0.6em;
  font-weight: 600;
  margin-left: 2px;
}
.cs-result-word {
  font-family: var(--font-serif);
  font-size: clamp(27px, 2.8vw, 38px);
  font-weight: 700;
  color: var(--coral);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.cs-result-card--qualitative {
  min-height: 220px;
}
.cs-result-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.cs-result-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.66);
  line-height: 1.6;
}
@media (max-width: 1100px) { .cs-results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .cs-results { padding: 80px 0; }
  .cs-results-grid { grid-template-columns: 1fr; }
}

.cs-testimonial {
  background: var(--bg-light);
  padding: 120px 0;
}
.cs-testimonial-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}
.cs-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  letter-spacing: -0.2px;
  margin: 14px 0 36px;
  font-style: italic;
}
.cs-quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cs-author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}
.cs-author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
}
.cs-author-role {
  font-size: 13px;
  color: rgba(35,33,33,0.6);
  margin-top: 2px;
}
.cs-insight .cs-quote {
  font-style: normal;
  margin-bottom: 0;
}
@media (max-width: 700px) { .cs-testimonial { padding: 80px 0; } }

.cs-more {
  background: var(--white);
  padding: 110px 0;
}
.cs-more--dark { background: var(--black); color: var(--white); }
.cs-more--dark .cs-more-heading { text-align: center; }
.cs-more-heading { margin-bottom: 40px; }
.cs-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cs-more-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.cs-more-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  border-color: rgba(233,122,98,0.3);
}
.cs-more--dark .cs-more-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: var(--white);
}
.cs-more--dark .cs-more-card:hover {
  border-color: rgba(233,122,98,0.45);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.cs-more-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eee;
}
.cs-more-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.cs-more-card:hover .cs-more-img img { transform: scale(1.05); }
.cs-more-body { padding: 22px 24px 26px; }
.cs-more-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 6px 0 10px;
}
.cs-more--dark .cs-more-title { color: var(--white); }
.cs-more-body p {
  font-size: 14px;
  color: rgba(35,33,33,0.65);
  line-height: 1.5;
}
.cs-more--dark .cs-more-body p { color: rgba(255,255,255,0.66); }
@media (max-width: 1000px) { .cs-more-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .cs-more { padding: 80px 0; }
  .cs-more-grid { grid-template-columns: 1fr; }
}

.cs-cta {
  background: var(--bg-light);
  padding: 100px 0 120px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.cs-cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cs-cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}
.cs-cta-sub {
  font-size: 17px;
  color: rgba(35,33,33,0.66);
  margin-bottom: 32px;
  line-height: 1.6;
}
.cs-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 26px;
  background: var(--white);
  color: var(--text-dark);
  border: 1.5px solid rgba(35,33,33,0.16);
  font-weight: 600;
}
.cs-cta-btn:hover {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}
.cs-cta-btn svg { width: 14px; height: 14px; }

/* ─── COMPANY PAGE ─── */
.company-intro { background: var(--bg-light); padding: 100px 0; }
.company-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.company-intro-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 600; color: var(--text-dark); line-height: 1.2; margin-bottom: 24px;
}
.company-intro-content p { font-size: 17px; color: rgba(35,33,33,0.72); line-height: 1.75; margin-bottom: 16px; }
.company-stats-bar {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(35,33,33,0.1);
  border-radius: var(--radius); overflow: hidden; margin-top: 56px;
}
.company-stat { background: var(--white); padding: 32px 20px; text-align: center; }
.company-stat strong {
  display: block; font-family: var(--font-serif);
  font-size: 42px; font-weight: 700; color: var(--coral); margin-bottom: 8px; line-height: 1;
}
.company-stat span { font-size: 14px; color: rgba(35,33,33,0.58); line-height: 1.4; }
.company-mission { background: var(--dark-navy); padding: 100px 0; }
.mission-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 56px; }
.mission-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 40px 36px;
}
.mission-card h3 {
  font-family: var(--font-serif); font-size: 26px; font-weight: 600;
  color: var(--coral); margin-bottom: 16px;
}
.mission-card p { font-size: 16px; color: rgba(255,255,255,0.78); line-height: 1.7; }
.company-values { background: var(--bg-light); padding: 100px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.value-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 36px 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.value-icon { font-size: 32px; margin-bottom: 16px; line-height: 1; }
.value-card h3 {
  font-family: var(--font-sans); font-size: 18px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px;
}
.value-card p { font-size: 15px; color: rgba(35,33,33,0.68); line-height: 1.65; }
.company-team-section { background: var(--dark-navy); padding: 100px 0; position: relative; overflow: hidden; }
.company-team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 56px; }
.team-member { border-radius: var(--radius); overflow: hidden; transition: transform 0.3s; }
.team-member:hover { transform: scale(1.02); }
.team-member-img { height: 280px; overflow: hidden; background: var(--blue-light); }
.team-member-img img { width: 100%; height: 100%; object-fit: cover; }
.team-member-info { padding: 18px 20px; background: var(--white); }
.team-member-info h4 { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.team-member-info p { font-size: 13px; color: var(--coral); font-weight: 600; }
@media (max-width: 1100px) { .company-team-grid { grid-template-columns: repeat(2,1fr); } .values-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) { .company-intro-grid { grid-template-columns: 1fr; gap: 40px; } .mission-grid { grid-template-columns: 1fr; } .company-stats-bar { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .company-team-grid { grid-template-columns: 1fr; } .values-grid { grid-template-columns: 1fr; } }

/* ─── RESOURCES PAGE ─── */
.resources-page-section { background: var(--white); padding: 100px 0; }
.resources-filter { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  padding: 8px 20px; border-radius: 100px;
  border: 1.5px solid rgba(35,33,33,0.18);
  background: none; font-size: 14px; font-weight: 600;
  color: rgba(35,33,33,0.6); cursor: pointer;
  transition: all 0.2s; font-family: var(--font-sans);
}
.filter-btn:hover, .filter-btn.active { background: var(--text-dark); border-color: var(--text-dark); color: var(--white); }
.resources-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.resource-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.resource-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.13); }
.resource-card-img { height: 210px; overflow: hidden; }
.resource-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.resource-card:hover .resource-card-img img { transform: scale(1.05); }
.resource-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.resource-card-type { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--coral); margin-bottom: 10px; }
.resource-card-body h3 { font-family: var(--font-sans); font-size: 18px; font-weight: 700; color: var(--text-dark); line-height: 1.35; margin-bottom: 10px; flex: 1; }
.resource-card-body p { font-size: 14px; color: rgba(35,33,33,0.65); line-height: 1.6; margin-bottom: 20px; }
.resource-dl-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--text-dark);
  border-bottom: 2px solid var(--text-dark); padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s; width: fit-content;
}
.resource-dl-btn:hover { color: var(--coral); border-color: var(--coral); }
.resources-newsletter { background: var(--dark-navy); padding: 100px 0; text-align: center; }
.newsletter-form { display: flex; gap: 12px; max-width: 520px; margin: 32px auto 0; }
.newsletter-input {
  flex: 1; padding: 14px 20px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); background: rgba(255,255,255,0.07);
  font-size: 15px; font-family: var(--font-sans); color: var(--white); outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.38); }
.newsletter-input:focus { border-color: var(--coral); }
@media (max-width: 1100px) { .resources-page-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .resources-page-grid { grid-template-columns: 1fr; } .newsletter-form { flex-direction: column; } }

/* ─── RESOURCES PAGE (redesign) ─── */
.rs-hero {
  background: var(--black);
  min-height: 100vh;
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.rs-hero-inner { max-width: 920px; margin: 0 auto; width: 100%; }
@media (max-width: 700px) {
  .rs-hero { min-height: auto; padding: 130px 0 80px; }
}
.rs-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.4px;
  margin-bottom: 18px;
}
.rs-hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 36px;
}
.rs-topic-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.rs-topic-btn {
  padding: 9px 20px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.rs-topic-btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.32);
}
.rs-topic-btn.is-active {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--white);
}

.rs-imagine {
  background: var(--bg-light);
  padding: 80px 0;
}
.rs-imagine-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  min-height: 320px;
}
.rs-imagine-left {
  background: #1a1a1a;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(233,122,98,0.10) 0%, transparent 50%),
    linear-gradient(180deg, #1f1f1f 0%, #0e0e0e 100%);
  color: var(--white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.rs-imagine-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 4px);
  pointer-events: none;
}
.rs-imagine-word {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
}
.rs-imagine-pron {
  font-family: var(--font-sans);
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  letter-spacing: 1px;
  position: relative;
}
.rs-imagine-def {
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  line-height: 1.6;
  max-width: 240px;
  position: relative;
}
.rs-imagine-right {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rs-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.rs-imagine-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
}
.rs-imagine-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(35,33,33,0.7);
  margin-bottom: 28px;
  max-width: 540px;
}
.rs-imagine-cta {
  align-self: flex-start;
  background: var(--white);
  color: var(--text-dark);
  border: 1.5px solid rgba(35,33,33,0.16);
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14px;
  gap: 8px;
}
.rs-imagine-cta:hover {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}
.rs-imagine-cta svg { width: 13px; height: 13px; }
@media (max-width: 900px) {
  .rs-imagine-card { grid-template-columns: 1fr; }
  .rs-imagine-left { padding: 48px 32px; min-height: 240px; }
  .rs-imagine-right { padding: 40px 32px; }
}

.rs-library {
  background: var(--bg-light);
  padding: 60px 0 100px;
}
.rs-library-heading {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.4vw, 50px);
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: -0.3px;
  margin-bottom: 28px;
}
.rs-library-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.rs-library-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.rs-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.rs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.10);
}
.rs-card-body {
  padding: 22px 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rs-card-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 4px;
}
.rs-card-body h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: -0.1px;
}
.rs-card-body p {
  font-size: 13px;
  color: rgba(35,33,33,0.62);
  line-height: 1.5;
}
.rs-card-img {
  margin-top: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ddd;
}
.rs-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.rs-card:hover .rs-card-img img { transform: scale(1.05); }
@media (max-width: 1100px) { .rs-library-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .rs-library-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .rs-library-grid { grid-template-columns: 1fr; } }

.rs-readiness {
  background: var(--black);
  padding: 100px 0;
  color: var(--white);
}
.rs-readiness-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.rs-readiness-heading {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
  max-width: 520px;
}
.rs-readiness-body {
  font-size: 15.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 540px;
}
.rs-readiness-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--text-dark);
  border-radius: 6px;
  padding: 12px 22px;
  font-size: 14px;
}
.rs-readiness-cta:hover { background: var(--bg-light); }
.rs-readiness-cta svg { width: 13px; height: 13px; }
.rs-readiness-donut {
  display: flex;
  justify-content: center;
}
.rs-donut-wrap {
  position: relative;
  width: 240px;
  height: 240px;
}
.rs-donut-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.rs-donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.rs-donut-num {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}
.rs-donut-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  max-width: 120px;
}
@media (max-width: 900px) {
  .rs-readiness { padding: 80px 0; }
  .rs-readiness-grid { grid-template-columns: 1fr; gap: 48px; }
  .rs-donut-wrap { width: 200px; height: 200px; }
  .rs-donut-num { font-size: 52px; }
}

.rs-newsletter {
  background: var(--bg-light);
  padding: 90px 0 70px;
  text-align: center;
}
.rs-newsletter-inner { max-width: 640px; margin: 0 auto; }
.rs-newsletter-heading {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.rs-newsletter-sub {
  font-size: 16px;
  color: rgba(35,33,33,0.66);
  margin-bottom: 28px;
}
.rs-newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 540px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 6px;
  padding: 6px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.rs-newsletter-input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 12px 16px;
  font-size: 14.5px;
  font-family: var(--font-sans);
  color: var(--text-dark);
  outline: none;
}
.rs-newsletter-input::placeholder { color: rgba(35,33,33,0.42); }
.rs-newsletter-btn {
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 14px;
}
@media (max-width: 600px) {
  .rs-newsletter-form { flex-direction: column; padding: 8px; }
  .rs-newsletter-btn { width: 100%; justify-content: center; }
}

.rs-blog {
  background: var(--bg-light);
  padding: 30px 0 110px;
}
.rs-blog-heading {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: -0.3px;
  margin-bottom: 36px;
}
.rs-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rs-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 24px 24px 0;
}
.rs-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.10);
}
.rs-blog-card .rs-card-type { margin-bottom: 8px; }
.rs-blog-card h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 6px;
}
.rs-blog-date {
  font-size: 13px;
  color: rgba(35,33,33,0.55);
  margin-bottom: 18px;
}
.rs-blog-img {
  margin: 0 -24px;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #ddd;
}
.rs-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.rs-blog-card:hover .rs-blog-img img { transform: scale(1.05); }
@media (max-width: 900px) { .rs-blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .rs-blog-grid { grid-template-columns: 1fr; } }

.rs-cta {
  background: var(--black);
  padding: 100px 0 110px;
  color: var(--white);
}
.rs-cta-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.rs-cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}
.rs-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 32px;
}
.rs-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.rs-cta-btn {
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 14px;
  gap: 8px;
}
.rs-cta-btn svg { width: 13px; height: 13px; }
@media (max-width: 600px) {
  .rs-cta-actions { flex-direction: column; align-items: stretch; }
  .rs-cta-btn { justify-content: center; }
}

/* ─── RESOURCE TOOLS + CANVAS LANDING ─── */
.resource-tool-hero,
.canvas-landing-hero {
  background: var(--black);
  min-height: 76vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.resource-tool-hero::before,
.canvas-landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 24%, rgba(233,122,98,0.18) 0%, transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(217,196,108,0.14) 0%, transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 46%);
  pointer-events: none;
}
.resource-tool-hero__inner,
.canvas-landing-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
}
.resource-tool-eyebrow,
.canvas-landing-eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.resource-tool-hero h1,
.canvas-landing-hero h1 {
  margin: 0 0 20px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(44px, 6.4vw, 82px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}
.resource-tool-hero p,
.canvas-landing-hero p {
  max-width: 720px;
  margin: 0 0 34px;
  color: rgba(255,255,255,0.74);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
}
.resource-tool-actions,
.canvas-landing-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.resource-tool-actions .btn,
.canvas-landing-actions .btn {
  border-radius: 6px;
}
.canvas-landing-section {
  position: relative;
  background: var(--bg-light);
  padding: 100px 0;
  overflow: hidden;
}
.canvas-landing-section .solutions-grid-bg {
  opacity: 0.82;
}
.canvas-landing-intro {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto 42px;
}
.canvas-landing-intro h2 {
  margin: 0 0 14px;
  color: var(--text-dark);
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 600;
  line-height: 1.08;
}
.canvas-landing-intro p {
  margin: 0 auto;
  max-width: 680px;
  color: rgba(35,33,33,0.66);
  font-size: 17px;
  line-height: 1.7;
}
.canvas-landing-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.canvas-landing-card {
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(35,33,33,0.1);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(40,30,10,0.08);
}
.canvas-landing-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.canvas-landing-card h3 {
  margin: 0 0 8px;
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.3;
}
.canvas-landing-card p {
  margin: 0;
  color: rgba(35,33,33,0.66);
  font-size: 14px;
  line-height: 1.6;
}
.canvas-landing-cta {
  background: var(--black);
  color: var(--white);
  padding: 90px 0 100px;
  text-align: center;
}
.canvas-landing-cta h2 {
  margin: 0 auto 16px;
  max-width: 720px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 600;
  line-height: 1.08;
}
.canvas-landing-cta p {
  margin: 0 auto 30px;
  max-width: 620px;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.7;
}
.resource-tool-section {
  background: var(--bg-light);
  padding: 90px 0 110px;
}
.resource-tool-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 28px;
  align-items: start;
}
.resource-tool-card,
.resource-tool-results,
.resource-tool-context {
  border: 1px solid rgba(35,33,33,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 18px 48px rgba(35,33,33,0.08);
}
.resource-tool-card {
  padding: clamp(24px, 3.2vw, 38px);
}
.resource-tool-card h2,
.resource-tool-results h2 {
  margin: 0 0 12px;
  color: var(--text-dark);
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.1vw, 40px);
  font-weight: 600;
  line-height: 1.12;
}
.resource-tool-card > p,
.resource-tool-results > p {
  margin: 0 0 28px;
  color: rgba(35,33,33,0.66);
  font-size: 15px;
  line-height: 1.65;
}
.resource-tool-form {
  display: grid;
  gap: 24px;
}
.tool-field {
  display: grid;
  gap: 10px;
}
.tool-field label,
.tool-group-label {
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.tool-field select,
.tool-field input[type="number"],
.tool-field input[type="text"],
.tool-field input[type="email"] {
  width: 100%;
  border: 1.5px solid rgba(35,33,33,0.16);
  border-radius: 8px;
  background: var(--white);
  color: var(--text-dark);
  font: 600 15px/1.3 var(--font-sans);
  padding: 14px 16px;
}
.tool-field select:focus-visible,
.tool-field input[type="number"]:focus-visible,
.tool-field input[type="text"]:focus-visible,
.tool-field input[type="email"]:focus-visible,
.tool-choice input:focus-visible + span {
  outline: 3px solid rgba(233,122,98,0.35);
  outline-offset: 3px;
}
.tool-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.tool-choice {
  cursor: pointer;
}
.tool-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tool-choice span {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1.5px solid rgba(35,33,33,0.13);
  border-radius: 8px;
  background: rgba(255,255,255,0.78);
  color: rgba(35,33,33,0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  padding: 12px;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.tool-choice input:checked + span {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(35,33,33,0.14);
}
.tool-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.tool-actions .btn {
  border-radius: 6px;
}
.tool-reset {
  border: 1.5px solid rgba(35,33,33,0.16);
  background: transparent;
  color: var(--text-dark);
}
.resource-tool-results {
  position: sticky;
  top: 104px;
  padding: clamp(24px, 3vw, 34px);
  min-height: 520px;
}
.resource-tool-results__empty {
  display: grid;
  place-items: center;
  min-height: 440px;
  text-align: center;
  color: rgba(35,33,33,0.54);
}
.resource-tool-results__empty strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
}
.resource-tool-results.has-results .resource-tool-results__empty {
  display: none;
}
.tool-score-grid {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.tool-score-card {
  border: 1px solid rgba(35,33,33,0.1);
  border-radius: 8px;
  background: rgba(250,247,240,0.82);
  padding: 16px;
}
.tool-score-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}
.tool-score-card h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.3;
}
.tool-score-card strong {
  color: var(--coral);
  font-size: 28px;
  line-height: 1;
}
.tool-score-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(35,33,33,0.1);
}
.tool-score-bar span {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
}
.tool-result-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}
.tool-result-list li {
  padding: 14px 14px 14px 42px;
  border: 1px solid rgba(35,33,33,0.09);
  border-radius: 8px;
  background: rgba(255,255,255,0.76);
  color: rgba(35,33,33,0.72);
  font-size: 14px;
  line-height: 1.55;
  position: relative;
}
.tool-result-list li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 19px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--coral);
}
.tool-summary-card {
  border-radius: 8px;
  background: var(--text-dark);
  color: var(--white);
  padding: 20px;
  margin-bottom: 20px;
}
.tool-summary-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.tool-summary-card h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
}
.tool-summary-card p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.6;
}
.tool-disclaimer {
  margin: 18px 0 0;
  color: rgba(35,33,33,0.5);
  font-size: 12px;
  line-height: 1.6;
}
.readiness-assessment {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 28px;
  align-items: start;
}
.readiness-form-card {
  overflow: hidden;
}
.readiness-progress {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(35,33,33,0.04);
}
.readiness-progress > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(35,33,33,0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.readiness-progress strong {
  color: var(--text-dark);
  text-align: right;
}
.readiness-progress__track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(35,33,33,0.1);
}
.readiness-progress__track span {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
  transition: width 0.25s ease;
}
.readiness-step {
  display: none;
  gap: 22px;
}
.readiness-step.is-active {
  display: grid;
}
.readiness-step__eyebrow {
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.readiness-step h2 {
  margin: 0;
  color: var(--text-dark);
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.3vw, 42px);
  font-weight: 600;
  line-height: 1.1;
}
.readiness-step p {
  margin: -8px 0 0;
  color: rgba(35,33,33,0.64);
  font-size: 15px;
  line-height: 1.65;
}
.readiness-scale {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.readiness-scale label {
  cursor: pointer;
}
.readiness-scale input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.readiness-scale span {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1.5px solid rgba(35,33,33,0.13);
  border-radius: 8px;
  background: rgba(255,255,255,0.78);
  color: rgba(35,33,33,0.72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  padding: 10px;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.readiness-scale input:checked + span {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(35,33,33,0.14);
}
.readiness-scale input:focus-visible + span {
  outline: 3px solid rgba(233,122,98,0.35);
  outline-offset: 3px;
}
.readiness-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 6px;
}
.readiness-actions .btn {
  border-radius: 6px;
}
.readiness-actions .btn[disabled] {
  cursor: not-allowed;
  opacity: 0.45;
}
.readiness-results {
  min-height: 640px;
}
.readiness-report-header {
  display: grid;
  gap: 16px;
}
.readiness-overall {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-radius: 8px;
  background: var(--text-dark);
  color: var(--white);
  padding: 20px;
}
.readiness-score-ring {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, var(--text-dark) 0 57%, transparent 58%),
    conic-gradient(var(--coral) var(--score), rgba(255,255,255,0.14) 0);
}
.readiness-score-ring strong {
  color: var(--white);
  font-size: 34px;
  line-height: 1;
}
.readiness-overall span,
.readiness-locked span {
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.readiness-overall h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
}
.readiness-overall p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.55;
}
.readiness-chart {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}
.readiness-pillar-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
  color: rgba(35,33,33,0.68);
  font-size: 13px;
  font-weight: 700;
}
.readiness-pillar-row__bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(35,33,33,0.1);
}
.readiness-pillar-row__bar span {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
}
.readiness-insight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.readiness-mini-card {
  border: 1px solid rgba(35,33,33,0.1);
  border-radius: 8px;
  background: rgba(250,247,240,0.82);
  padding: 16px;
}
.readiness-mini-card h3 {
  margin: 0 0 10px;
  color: var(--text-dark);
  font-size: 15px;
}
.readiness-mini-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(35,33,33,0.68);
  font-size: 13px;
  line-height: 1.45;
}
.readiness-locked {
  margin-top: 22px;
  border: 1px solid rgba(233,122,98,0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(233,122,98,0.12), rgba(217,196,108,0.12));
  padding: 20px;
}
.readiness-locked h3 {
  margin: 0 0 8px;
  color: var(--text-dark);
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
}
.readiness-locked p {
  margin: 0 0 18px;
  color: rgba(35,33,33,0.66);
  font-size: 14px;
  line-height: 1.6;
}
.readiness-lead-form {
  display: grid;
  gap: 14px;
}
.readiness-lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.readiness-lead-message {
  min-height: 20px;
  margin: 0;
  color: rgba(35,33,33,0.68);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}
.readiness-lead-message.is-success {
  color: #2f6d4a;
}
.readiness-report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.readiness-report-actions .btn,
.readiness-locked .btn {
  border-radius: 6px;
}
.resource-tool-context {
  margin-top: 28px;
  padding: 28px;
}
.resource-tool-context h2 {
  margin: 0 0 18px;
  color: var(--text-dark);
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
}
.resource-tool-context-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.resource-tool-context-card {
  border-radius: 8px;
  background: rgba(250,247,240,0.8);
  padding: 18px;
}
.resource-tool-context-card h3 {
  margin: 0 0 8px;
  color: var(--text-dark);
  font-size: 15px;
}
.resource-tool-context-card p {
  margin: 0;
  color: rgba(35,33,33,0.64);
  font-size: 13px;
  line-height: 1.55;
}
@media (max-width: 980px) {
  .resource-tool-hero,
  .canvas-landing-hero { min-height: auto; padding: 130px 0 76px; }
  .resource-tool-grid { grid-template-columns: 1fr; }
  .readiness-assessment { grid-template-columns: 1fr; }
  .resource-tool-results { position: static; min-height: auto; }
  .canvas-landing-cards,
  .resource-tool-context-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .resource-tool-actions,
  .canvas-landing-actions,
  .tool-actions { flex-direction: column; align-items: stretch; }
  .resource-tool-actions .btn,
  .canvas-landing-actions .btn,
  .tool-actions .btn { justify-content: center; }
  .tool-choice-grid { grid-template-columns: 1fr; }
  .readiness-progress > div:first-child,
  .readiness-overall,
  .readiness-insight-grid,
  .readiness-lead-grid { grid-template-columns: 1fr; }
  .readiness-progress strong { text-align: left; }
  .readiness-scale { grid-template-columns: 1fr; }
  .readiness-pillar-row { grid-template-columns: 1fr; gap: 6px; }
  .readiness-report-actions,
  .readiness-actions { flex-direction: column; align-items: stretch; }
  .readiness-report-actions .btn,
  .readiness-actions .btn,
  .readiness-locked .btn { justify-content: center; }
  .resource-tool-section,
  .canvas-landing-section { padding: 72px 0; }
}

/* ─────────────────────────────────────────────────────────
   HUMANS IN THE LOOP — scrapbook redesign
   Scoped under .team to avoid leaking into other sections.
   ───────────────────────────────────────────────────────── */
.team {
  --paper: #f4ecdb;
  --paper-warm: #ead9b8;
  --paper-shadow: rgba(0,0,0,0.45);
  --ink: #232121;
  --tape: rgba(244,236,219,0.55);
}

/* ── Hand-scribbled stat callout — inline variant beside the section heading ── */
.team .scribble-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 6px;
  transform: rotate(-1.5deg);
  z-index: 2;
  flex: 0 0 auto;
}
.team .scribble-stat__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.95;
  color: #fff;
  letter-spacing: -0.02em;
}
.team .scribble-stat__label {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--coral);
  margin-top: 2px;
}
.team .scribble-stat__underline {
  width: 200px;
  height: 14px;
  margin-top: 4px;
  margin-left: -6px;
}

/* ── 3-column layout: gallery | founder video | values carousel ── */
.team .team-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 24px;
}

/* ── LEFT: image gallery slider ── */
.team .team-gallery {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px -22px rgba(0,0,0,0.55);
  min-height: 480px;
  isolation: isolate;
}
.team .team-gallery__stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.team .team-gallery__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.7s ease, transform 1.6s ease;
}
.team .team-gallery__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.team .team-gallery::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0) 45%);
  z-index: 1;
  pointer-events: none;
}
.team .team-gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
}
.team .team-gallery__btn:hover { background: rgba(0,0,0,0.7); transform: translateY(-50%) scale(1.06); }
.team .team-gallery__btn svg { width: 18px; height: 18px; }
.team .team-gallery__btn--prev { left: 12px; }
.team .team-gallery__btn--next { right: 12px; }
.team .team-gallery__dots {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  z-index: 2;
}
.team .team-gallery__dot {
  width: 8px; height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  border: 0;
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}
.team .team-gallery__dot.is-active {
  background: #fff;
  width: 22px;
}

/* ── CENTER: founder video feature card ── */
.team .team-feature {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 20px 40px -22px rgba(0,0,0,0.55);
}
.team .team-feature__media {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #1c1c1c;
  flex: 1;
  min-height: 360px;
}
.team .team-feature__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team .team-feature__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: var(--coral);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.55);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s;
  z-index: 2;
}
.team .team-feature__play:hover { transform: translate(-50%, -50%) scale(1.08); background: #ec8a74; }
.team .team-feature__play svg { width: 28px; height: 28px; margin-left: 4px; }
.team .team-feature__runtime {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(0,0,0,0.55);
  padding: 4px 8px;
  border-radius: 3px;
}
.team .team-feature__caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 8px 8px;
}
.team .team-feature__eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
}
.team .team-feature__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
}
.team .team-feature__role {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  color: rgba(255,255,255,0.75);
}

/* ── RIGHT: improved values carousel ── */
.team .belief-deck {
  position: relative;
  background: linear-gradient(155deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px 28px 18px;
  box-shadow: 0 20px 40px -22px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  min-height: 480px;
  overflow: hidden;
  isolation: isolate;
}
.team .belief-deck::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--slide-accent, var(--coral));
  z-index: 1;
  transition: background 0.4s ease;
}
.team .belief-deck__track {
  position: relative;
  flex: 1;
  min-height: 320px;
  margin-bottom: 14px;
}
.team .belief-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.team .belief-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.team .belief-deck:has(.belief-slide.is-active) {
  --slide-accent: inherit;
}
.team .belief-deck .belief-slide.is-active {
  --pass-accent: var(--slide-accent);
}
.team .belief-slide__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--slide-accent, var(--coral));
  background: color-mix(in srgb, var(--slide-accent, var(--coral)) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--slide-accent, var(--coral)) 40%, transparent);
}
.team .belief-slide__icon svg { width: 28px; height: 28px; }
.team .belief-slide__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slide-accent, var(--coral));
  margin-bottom: 14px;
}
.team .belief-slide h4 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.team .belief-slide p {
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.team .belief-deck__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.team .belief-deck__btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.team .belief-deck__btn:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.3);
  transform: scale(1.06);
}
.team .belief-deck__btn svg { width: 16px; height: 16px; }
.team .belief-deck__dots { display: flex; gap: 8px; }
.team .belief-deck__dot {
  width: 8px; height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.3);
  border: 0;
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}
.team .belief-deck__dot.is-active {
  background: #fff;
  width: 22px;
}

/* ── Responsive: tablet (2 columns) ── */
@media (max-width: 1100px) {
  .team .team-layout {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .team .belief-deck { grid-column: 1 / span 2; }
}

/* ── Responsive: mobile (stacked) ── */
@media (max-width: 700px) {
  .team .team-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .team .belief-deck { grid-column: 1; min-height: 420px; }
  .team .team-gallery { min-height: 360px; }
  .team .team-feature__media { min-height: 300px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .team .team-gallery__slide,
  .team .belief-slide,
  .team .belief-deck__btn,
  .team .belief-deck__dot,
  .team .team-gallery__btn,
  .team .team-feature__play { transition: none; }
}


/* =====================================================
   AI STRATEGY PAGE
   ===================================================== */

/* ─── HERO ─── */
.strategy-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding: 120px 0 60px;
}
.strategy-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(233,122,98,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(45,62,79,0.55) 0%, transparent 60%),
    var(--black);
}
.strategy-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(transparent 95%, rgba(255,255,255,0.04) 95%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.04) 95%);
  background-size: 80px 80px;
  opacity: 0.5;
}
.strategy-hero-inner {
  position: relative; z-index: 2;
  width: 100%;
}
.strategy-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6.5vw, 84px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
  max-width: 880px;
}
.strategy-hero-sub {
  font-size: clamp(16px, 1.5vw, 21px);
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 40px;
}
.strategy-hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* ─── SHARED CENTERED HEADINGS ─── */
.section-heading-center {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 18px;
}
.section-sub-center {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(35,33,33,0.65);
  line-height: 1.6;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-heading-white-center {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 18px;
}
.section-sub-white-center {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

/* ─── FOUR PILLARS ─── */
.pillars {
  background: var(--bg-light);
  padding: 100px 0;
}
.pillars-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 32px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.1);
}
.pillar-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(233,122,98,0.12);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.pillar-card h3 {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.pillar-card p {
  font-size: 14.5px;
  color: rgba(35,33,33,0.7);
  line-height: 1.65;
}
.pillars-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.pillars-center-circle {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2px;
  box-shadow: 0 0 0 8px rgba(246,245,244,1), 0 0 0 9px rgba(233,122,98,0.2);
}

/* ─── WHY STRATEGY BEFORE ENGINEERING ─── */
.why-strategy {
  background: var(--bg-light);
  padding: 40px 0 100px;
}
.why-strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 56px auto 0;
}
.why-strategy-item {
  text-align: center;
}
.why-strategy-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(233,122,98,0.12);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.why-strategy-item p {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}

/* ─── MATURITY MATRIX ─── */
.maturity {
  background: var(--dark-navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.maturity::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(233,122,98,0.06) 0%, transparent 60%);
}
.maturity > .section-inner { position: relative; z-index: 1; }
.maturity-matrix {
  max-width: 980px;
  margin: 0 auto;
}
.matrix-grid {
  display: grid;
  grid-template-columns: 180px repeat(5, 1fr);
  gap: 6px;
}
.matrix-corner { }
.matrix-col-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding-bottom: 12px;
}
.matrix-row-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  display: flex; align-items: center;
  padding-right: 16px;
}
.matrix-cell {
  height: 36px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.matrix-cell.filled-3 { background: var(--coral); border-color: transparent; }
.matrix-cell.filled-2 { background: rgba(233,122,98,0.55); border-color: transparent; }
.matrix-cell.filled-1 { background: rgba(233,122,98,0.28); border-color: transparent; }
.maturity-cta {
  display: flex; justify-content: center;
  margin-top: 56px;
}

/* ─── FEATURED RESOURCE ─── */
.featured-resource {
  background: var(--bg-light);
  padding: 100px 0;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.featured-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-navy);
}
.featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.featured-content .page-tag {
  margin-bottom: 16px;
}
.featured-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.featured-content p {
  font-size: 16px;
  color: rgba(35,33,33,0.7);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 460px;
}
.featured-btn { width: fit-content; }

/* ─── WORKSHOPS ─── */
.workshops {
  background: var(--dark-navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.workshops::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(233,122,98,0.08) 0%, transparent 58%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}
.workshops > .section-inner { position: relative; z-index: 1; }
.workshop-experience {
  max-width: 1100px;
  margin: 56px auto 0;
}
.workshop-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
}
.workshop-tab {
  appearance: none;
  border: 0;
  border-radius: 8px;
  min-height: 72px;
  padding: 14px 18px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  font: inherit;
  text-align: left;
  transition: background 0.22s, color 0.22s, transform 0.22s;
}
.workshop-tab:hover,
.workshop-tab:focus-visible {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.workshop-tab:focus-visible {
  outline: 2px solid rgba(233,122,98,0.75);
  outline-offset: 3px;
}
.workshop-tab.is-active {
  background: var(--white);
  color: var(--text-dark);
  transform: translateY(-1px);
}
.workshop-tab span {
  font-size: 15px;
  font-weight: 700;
}
.workshop-tab strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.workshop-panel {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05)),
    rgba(255,255,255,0.04);
  box-shadow: 0 30px 90px rgba(0,0,0,0.25);
  overflow: hidden;
}
.workshop-panel[hidden] {
  display: none;
}
.workshop-panel-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.workshop-kicker {
  display: inline-flex;
  padding: 7px 11px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(233,122,98,0.14);
  color: #ffb19d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.workshop-panel h3 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 18px;
}
.workshop-panel-copy > p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 440px;
}
.workshop-included {
  margin-bottom: 28px;
}
.workshop-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.workshop-list {
  display: flex; flex-direction: column; gap: 10px;
}
.workshop-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.workshop-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(233,122,98,0.18);
  border: 1.5px solid var(--coral);
}
.workshop-list li::after {
  content: '';
  position: absolute;
  left: 4px; top: 8px;
  width: 8px; height: 4px;
  border-left: 1.5px solid var(--coral);
  border-bottom: 1.5px solid var(--coral);
  transform: rotate(-45deg);
}
.btn-dark { background: var(--dark-navy); color: var(--white); }
.workshop-cta {
  width: fit-content;
  margin-top: auto;
}
.workshop-preview {
  position: relative;
  min-height: 430px;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(233,122,98,0.22), transparent 32%),
    radial-gradient(circle at 82% 15%, rgba(255,255,255,0.12), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.055));
  border: 1px solid rgba(255,255,255,0.14);
}
.workshop-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.95), rgba(0,0,0,0.28));
}
.workshop-slide {
  position: absolute;
  width: min(72%, 330px);
  padding: 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.93);
  box-shadow: 0 18px 46px rgba(0,0,0,0.24);
}
.workshop-slide span,
.agenda-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  min-width: 26px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(233,122,98,0.14);
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}
.workshop-slide h4 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.workshop-slide p,
.agenda-step p {
  font-size: 13px;
  color: rgba(35,33,33,0.68);
  line-height: 1.55;
}
.workshop-slide--brief {
  top: 34px;
  left: 34px;
  z-index: 3;
}
.workshop-slide--map {
  top: 138px;
  right: 34px;
  z-index: 2;
}
.workshop-slide--prioritize {
  left: 70px;
  bottom: 34px;
  z-index: 4;
}
.workshop-preview--agenda {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 38px;
}
.agenda-line {
  position: absolute;
  left: 66px;
  top: 82px;
  bottom: 82px;
  width: 2px;
  background: linear-gradient(180deg, rgba(233,122,98,0.2), rgba(233,122,98,0.85), rgba(233,122,98,0.2));
}
.agenda-step {
  position: relative;
  z-index: 1;
  max-width: 420px;
  padding: 22px 24px 22px 62px;
  border-radius: 14px;
  background: rgba(255,255,255,0.93);
  box-shadow: 0 18px 46px rgba(0,0,0,0.18);
}
.agenda-step span {
  position: absolute;
  left: 22px;
  top: 22px;
  margin: 0;
  min-width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.agenda-step p {
  margin-top: 24px;
}

/* ─── RESULTS ─── */
.results {
  background: var(--bg-light);
  padding: 100px 0;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.result-stat {
  text-align: center;
}
.result-num {
  font-family: var(--font-serif);
  font-size: clamp(56px, 6.5vw, 84px);
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 18px;
}
.result-stat h4 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 10px;
}
.result-stat p {
  font-size: 15px;
  color: rgba(35,33,33,0.78);
  line-height: 1.55;
  max-width: 240px;
  margin: 0 auto;
}

/* ─── FAQ ─── */
.faq-section {
  background: var(--dark-navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(233,122,98,0.05) 0%, transparent 60%);
}
.faq-section > .section-inner { position: relative; z-index: 1; }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s;
}
.faq-item.open {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-q svg {
  flex-shrink: 0;
  color: rgba(255,255,255,0.55);
  transition: transform 0.25s;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* ─── FINAL CTA ─── */
.strategy-final-cta {
  background: var(--dark-navy);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.strategy-final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(233,122,98,0.08) 0%, transparent 60%);
}
.strategy-final-cta-inner {
  position: relative; z-index: 1;
}
.strategy-final-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.strategy-final-cta p {
  font-size: clamp(15px, 1.4vw, 19px);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  .pillars-grid { grid-template-columns: 1fr; max-width: 520px; }
  .pillars-center { display: none; }
  .why-strategy-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: 1fr; gap: 40px; }
  .workshop-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .workshop-preview {
    min-height: 390px;
  }
  .results-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .matrix-grid { grid-template-columns: 130px repeat(5, 1fr); }
  .matrix-row-label { font-size: 12px; }
  .matrix-col-label { font-size: 11px; }
}
@media (max-width: 600px) {
  .strategy-hero { padding: 100px 0 60px; }
  .why-strategy-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .workshops { padding: 78px 0; }
  .workshop-tabs {
    grid-template-columns: 1fr;
  }
  .workshop-tab {
    min-height: 62px;
  }
  .workshop-panel {
    padding: 24px;
    border-radius: 16px;
  }
  .workshop-preview {
    min-height: 470px;
  }
  .workshop-slide {
    width: calc(100% - 36px);
    padding: 18px;
  }
  .workshop-slide--brief {
    top: 18px;
    left: 18px;
  }
  .workshop-slide--map {
    top: 166px;
    right: 18px;
  }
  .workshop-slide--prioritize {
    left: 18px;
    bottom: 18px;
  }
  .workshop-preview--agenda {
    min-height: 430px;
    padding: 24px;
  }
  .agenda-line {
    left: 44px;
    top: 58px;
    bottom: 58px;
  }
  .agenda-step {
    padding: 18px 18px 18px 48px;
  }
  .agenda-step span {
    left: 16px;
    top: 18px;
  }
  .matrix-grid { grid-template-columns: 100px repeat(5, 1fr); gap: 4px; }
  .matrix-row-label { font-size: 11px; padding-right: 8px; }
  .matrix-col-label { font-size: 10px; }
  .matrix-cell { height: 28px; }
}

/* ─── TRAINING & ENABLEMENT PAGE ─── */
.training-hero .strategy-hero-heading {
  max-width: 1040px;
}
.training-hero .strategy-hero-sub {
  max-width: 760px;
}
.training-why {
  background: var(--bg-light);
  padding: 100px 0;
}
.training-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.training-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(35,33,33,0.06);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.training-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.1);
}
.training-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(233,122,98,0.12);
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}
.training-card h3,
.training-intel-card h3,
.training-package h3 {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}
.training-card h3,
.training-package h3 {
  color: var(--text-dark);
}
.training-card p,
.training-package p {
  font-size: 14.5px;
  color: rgba(35,33,33,0.68);
  line-height: 1.65;
}
.training-intelligence,
.training-plan {
  background: var(--dark-navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.training-intelligence::before,
.training-plan::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(233,122,98,0.07), transparent 58%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}
.training-intelligence > .section-inner,
.training-plan > .section-inner {
  position: relative;
  z-index: 1;
}
.training-intel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}
.training-intel-card {
  min-height: 220px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
}
.training-intel-card h3 {
  color: var(--white);
}
.training-intel-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
}
.training-packages,
.training-outcomes {
  background: var(--bg-light);
  padding: 100px 0;
}
.training-package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.training-package {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(35,33,33,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.training-package-tag,
.training-eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(233,122,98,0.12);
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.training-package-link {
  margin-top: auto;
  padding-top: 22px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  border-top: 1px solid rgba(35,33,33,0.08);
}
.training-platforms {
  background: var(--white);
  padding: 100px 0;
}
.training-platforms-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(42px, 6vw, 80px);
  align-items: center;
}
.training-platform-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 22px;
}
.training-platform-copy p {
  font-size: 15.5px;
  color: rgba(35,33,33,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 560px;
}
.training-tool-stack {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 15%, rgba(233,122,98,0.22), transparent 32%),
    linear-gradient(135deg, rgba(36,49,61,0.98), rgba(36,49,61,0.9));
  box-shadow: 0 24px 70px rgba(36,49,61,0.22);
  overflow: hidden;
}
.training-tool-stack::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.6;
}
.training-tool-row,
.training-tool-core {
  position: relative;
  z-index: 1;
}
.training-tool-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.training-tool-row--wide {
  grid-template-columns: 1fr;
}
.training-tool-row span,
.training-tool-core strong {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
}
.training-tool-core {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.training-tool-core strong {
  min-height: 72px;
  justify-content: center;
  text-align: center;
  color: #ffb19d;
  background: rgba(233,122,98,0.13);
}
.training-plan-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
}
.training-plan-list div {
  position: relative;
  padding: 18px 18px 18px 46px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}
.training-plan-list div::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 21px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(233,122,98,0.18);
  border: 1.5px solid var(--coral);
}
.training-outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 58px auto 0;
}
.training-outcome {
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(35,33,33,0.06);
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

@media (max-width: 1100px) {
  .training-why-grid,
  .training-intel-grid,
  .training-package-grid,
  .training-plan-list,
  .training-outcome-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .training-platforms-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .training-why,
  .training-intelligence,
  .training-packages,
  .training-platforms,
  .training-plan,
  .training-outcomes {
    padding: 78px 0;
  }
  .training-why-grid,
  .training-intel-grid,
  .training-package-grid,
  .training-plan-list,
  .training-outcome-grid,
  .training-tool-row,
  .training-tool-core {
    grid-template-columns: 1fr;
  }
  .training-tool-stack {
    padding: 22px;
  }
  .training-card,
  .training-package {
    padding: 24px;
  }
}

/* ─── COMPANY PAGE — V2 ─── */

/* Full-viewport page hero (intended to be reused across major pages) */
.page-hero--full {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
}
.page-hero--full .page-hero-content {
  width: 100%;
  padding-top: 73px;
  padding-bottom: 64px;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.page-hero-text .page-hero-heading {
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.page-hero-text .page-hero-sub {
  max-width: 520px;
  margin-bottom: 0;
}
.page-hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #15202b;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.page-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.about-hero-quote {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  padding: 16px;
  min-height: 430px;
  aspect-ratio: auto;
  border: 1px solid rgba(255,255,255,0.12);
  background: #111821;
}
.about-hero-quote::after {
  display: none;
}
.about-hero-quote img {
  position: relative;
  z-index: 1;
  height: 100%;
  border-radius: 8px;
  opacity: 1;
  object-position: 58% center;
}
.about-hero-quote__panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
  background: rgba(12,18,25,0.94);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 50px rgba(0,0,0,0.34);
  backdrop-filter: blur(10px);
}
.about-hero-quote__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
}
.about-hero-quote blockquote {
  margin: 0;
}
.about-hero-quote p {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.26;
  color: var(--white);
}
.about-hero-quote cite {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-style: normal;
}
.about-hero-quote cite strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
}
.about-hero-quote cite span {
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  line-height: 1.35;
}
.hero-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--black);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.hero-play-btn svg { width: 28px; height: 28px; margin-left: 3px; }
.hero-play-btn:hover { transform: translate(-50%, -50%) scale(1.06); background: var(--white); }

@media (max-width: 900px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero--full { min-height: auto; padding: 120px 0 80px; }
  .page-hero-media { aspect-ratio: 16 / 10; }
  .about-hero-quote { grid-template-columns: 1fr; aspect-ratio: auto; }
  .about-hero-quote img { min-height: 320px; }
  .about-hero-quote__panel { padding: 22px; }
}

/* Journey */
.company-journey { background: var(--bg-light); padding: 100px 0; }
.company-journey-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.journey-rail .page-tag {
  margin-bottom: 28px;
  color: var(--coral);
}
.journey-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.journey-timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(233, 122, 98, 0.25);
}
.journey-step {
  position: relative;
  padding-left: 44px;
  padding-bottom: 32px;
}
.journey-step:last-child { padding-bottom: 0; }
.journey-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--coral);
  box-shadow: 0 0 0 4px rgba(233, 122, 98, 0.12);
}
.journey-year {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.journey-step p {
  font-size: 15px;
  color: rgba(35,33,33,0.7);
  line-height: 1.6;
  margin: 0;
}
.journey-heading {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 24px;
}
.journey-content p {
  font-size: 16px;
  color: rgba(35,33,33,0.72);
  line-height: 1.75;
  margin-bottom: 18px;
}
.journey-content p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .company-journey-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Thesis */
.company-thesis {
  background: var(--black);
  padding: 110px 0;
  text-align: center;
}
.company-thesis-inner { text-align: center; }
.thesis-tag { color: var(--coral); display: block; margin: 0 auto 20px; text-align: center; }
.thesis-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 24px;
}
.thesis-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 760px;
  line-height: 1.7;
  margin: 0 auto 56px;
}
.thesis-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.thesis-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
}
.thesis-stat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(233, 122, 98, 0.12);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.thesis-stat-icon svg { width: 22px; height: 22px; }
.thesis-stat h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.thesis-stat p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .thesis-stats { grid-template-columns: 1fr; }
}

/* Center alignment helpers */
.section-tag.center,
.section-heading.center,
.section-heading-white.center {
  text-align: center;
  display: block;
}
.section-tag.center { color: var(--coral); opacity: 1; }

/* Values v2 — overrides existing card styles */
.company-values .values-grid { margin-top: 56px; }
.company-values .value-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(35,33,33,0.06);
}
.value-icon-line {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(233, 122, 98, 0.1);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.value-icon-line svg { width: 20px; height: 20px; }
.company-values .value-card h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.company-values .value-card p {
  font-size: 14.5px;
  color: rgba(35,33,33,0.65);
  line-height: 1.6;
}

/* Beliefs */
.company-beliefs {
  background:
    radial-gradient(circle at 18% 0%, rgba(233,122,98,0.12) 0%, transparent 34%),
    linear-gradient(180deg, #111821 0%, var(--dark-navy) 100%);
  padding: 100px 0;
}
.company-beliefs .section-tag { color: var(--coral); opacity: 1; }
.company-beliefs .section-heading-white {
  margin-bottom: 44px;
  color: var(--white);
  max-width: 760px;
}
.beliefs-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
}
.belief {
  position: relative;
  padding: 28px;
  margin: 0;
  border-radius: 8px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 20px 44px -32px rgba(0,0,0,0.75);
}
.belief::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: var(--coral);
  margin-bottom: 20px;
}
.belief h3 {
  font-family: var(--font-serif);
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.22;
}
.belief p {
  font-size: 15px;
  color: rgba(255,255,255,0.84);
  line-height: 1.68;
  margin: 0;
}
@media (max-width: 1000px) {
  .beliefs-list { grid-template-columns: 1fr; }
  .belief { padding: 24px; }
}

/* Ecosystem */
.company-ecosystem { background: var(--bg-light); padding: 100px 0; }
.ecosystem-sub {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 16px;
  color: rgba(35,33,33,0.65);
  line-height: 1.6;
}
.ecosystem-primary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.partner-card {
  background: var(--white);
  border: 1px solid rgba(35,33,33,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.partner-logo {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.partner-logo svg { width: 44px; height: 44px; }
.partner-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: #232F3E;
  letter-spacing: -1px;
}
.partner-aws .partner-wordmark::after {
  content: '';
  display: block;
  width: 32px; height: 8px;
  margin: 4px auto 0;
  background: #FF9900;
  border-radius: 6px;
}
.partner-card h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.partner-card p {
  font-size: 13px;
  color: rgba(35,33,33,0.55);
  line-height: 1.4;
  margin: 0;
}
.ecosystem-secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 56px;
  padding: 24px 16px;
}
.eco-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: rgba(35,33,33,0.55);
  letter-spacing: -0.3px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.eco-logo:hover { color: var(--text-dark); }

@media (max-width: 1100px) {
  .ecosystem-primary { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ecosystem-primary { grid-template-columns: 1fr; }
  .ecosystem-secondary { gap: 18px 28px; }
  .eco-logo { font-size: 15px; }
}

/* Careers */
.company-careers {
  background:
    linear-gradient(135deg, rgba(233,122,98,0.11) 0%, transparent 34%),
    #090b0f;
  padding: 100px 0;
  text-align: center;
}
.company-careers .section-tag { color: var(--coral); opacity: 1; }
.company-careers .section-heading-white {
  color: var(--white);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.careers-sub {
  max-width: 680px;
  margin: 0 auto 44px;
  font-size: 17px;
  color: rgba(255,255,255,0.84);
  line-height: 1.7;
}
.careers-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}
.career-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.085);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  padding: 20px 22px;
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.45;
  text-align: left;
  min-height: 96px;
}
.career-badge svg {
  width: 24px; height: 24px;
  color: var(--coral);
  flex-shrink: 0;
}
.careers-cta { display: flex; justify-content: center; }
.btn-with-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-with-arrow svg { width: 14px; height: 14px; }
@media (max-width: 900px) {
  .careers-badges { grid-template-columns: 1fr; }
  .career-badge { min-height: 0; }
}

/* Final CTA */
.company-final-cta {
  background: var(--bg-light);
  padding: 110px 0;
}
.company-final-cta-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.company-final-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.company-final-cta p {
  font-size: 17px;
  color: rgba(35,33,33,0.65);
  line-height: 1.65;
  margin: 0 auto 32px;
  max-width: 580px;
}
.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(35,33,33,0.25);
}
.btn-outline-dark:hover { border-color: var(--text-dark); }


/* =====================================================
   AI ENGINEERING PAGE
   ===================================================== */

/* ─── PHILOSOPHY (We build what's right) ─── */
.eng-philosophy {
  background: var(--bg-light);
  padding: 100px 0;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.philosophy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.1);
}
.philosophy-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(233,122,98,0.12);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.philosophy-card h3 {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.philosophy-card p {
  font-size: 14.5px;
  color: rgba(35,33,33,0.7);
  line-height: 1.65;
}

/* ─── HOW WE BUILD ─── */
.how-we-build {
  background: var(--black);
  padding: 100px 0;
}
.how-we-build-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.hwb-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hwb-left p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 420px;
}
.hwb-right {
  display: flex; flex-direction: column;
  gap: 16px;
}
.hwb-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  transition: background 0.3s, border-color 0.3s;
}
.hwb-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}
.hwb-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(233,122,98,0.15);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hwb-content h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.hwb-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ─── GLOBAL TEAM ─── */
.global-team {
  background: var(--bg-light);
  padding: 100px 0;
}
.global-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.global-team-item {
  text-align: center;
}
.gt-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(233,122,98,0.12);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.global-team-item h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.global-team-item p {
  font-size: 14px;
  color: rgba(35,33,33,0.65);
  line-height: 1.55;
  max-width: 240px;
  margin: 0 auto;
}

/* ─── PROOF IN PRACTICE ─── */
.proof-section {
  background: var(--dark-navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.proof-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(233,122,98,0.05) 0%, transparent 60%);
}
.proof-section > .section-inner { position: relative; z-index: 1; }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.proof-card {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column;
}
.proof-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.proof-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}
.proof-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  margin-bottom: 22px;
  align-items: start;
}
.proof-step-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(233,122,98,0.15);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.proof-step h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.proof-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.proof-cta {
  margin-top: 14px;
  width: fit-content;
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline-light:hover { border-color: var(--white); }

.proof-visual {
  display: flex; flex-direction: column;
  gap: 20px;
}
.proof-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1a242e;
}
.proof-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.proof-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}
.proof-badge--star {
  background: #E97C25;
}
.proof-quote {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.proof-quote p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 14px;
}
.proof-quote cite {
  font-style: normal;
  display: flex; flex-direction: column;
  gap: 2px;
}
.proof-quote cite strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.proof-quote cite span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ─── ENG STATS ─── */
.eng-stats {
  background: var(--bg-light);
  padding: 80px 0;
}
.eng-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.eng-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5.5vw, 70px);
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 12px;
}
.eng-stat-num .stat-num,
.result-num .stat-num {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
.eng-stat p {
  font-size: 15px;
  color: rgba(35,33,33,0.72);
  line-height: 1.5;
  max-width: 240px;
  margin: 0 auto;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  .philosophy-grid { grid-template-columns: 1fr; max-width: 560px; }
  .how-we-build-inner { grid-template-columns: 1fr; gap: 40px; }
  .global-team-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .proof-grid { grid-template-columns: 1fr; }
  .eng-stats-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .global-team-grid { grid-template-columns: 1fr; }
  .proof-card { padding: 28px 22px; }
}

/* ─── AI AGENTS PAGE ─── */

.agents-hero .page-hero-content { display: flex; align-items: center; }
.agents-hero-text { max-width: 760px; }
.agents-hero-text .page-hero-heading { letter-spacing: -0.5px; margin-bottom: 24px; }
.agents-hero-text .page-hero-sub { max-width: 620px; margin-bottom: 36px; }

/* Competitive necessity */
.agents-necessity { background: var(--bg-light); padding: 100px 0; }
.agents-necessity .section-heading {
  max-width: 920px;
  margin: 0 auto 56px;
  text-align: center;
}
.necessity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.necessity-card {
  background: var(--white);
  border: 1px solid rgba(35,33,33,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.necessity-card h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.necessity-card p {
  font-size: 14.5px;
  color: rgba(35,33,33,0.65);
  line-height: 1.6;
  margin: 0;
}
.necessity-footer {
  text-align: center;
  font-size: 14.5px;
  color: rgba(35,33,33,0.55);
  margin: 48px auto 0;
  max-width: 720px;
}
@media (max-width: 700px) { .necessity-grid { grid-template-columns: 1fr; } }

/* Pre-built / Tailored / Fast */
.agents-promise {
  background: var(--black);
  padding: 100px 0;
  text-align: center;
}
.agents-promise .section-heading-white { margin-bottom: 20px; }
.agents-promise-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 720px;
  margin: 0 auto 56px;
  line-height: 1.65;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.promise-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
}
.promise-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(233, 122, 98, 0.12);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.promise-icon svg { width: 22px; height: 22px; }
.promise-card h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.promise-card p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) { .promise-grid { grid-template-columns: 1fr; } }

/* Library */
.agents-library { background: var(--bg-light); padding: 100px 0; }
.agents-library .section-heading { margin-bottom: 12px; }
.library-sub {
  text-align: center;
  font-size: 16px;
  color: rgba(35,33,33,0.6);
  margin-bottom: 36px;
}
.library-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.library-filter {
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(35,33,33,0.15);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: rgba(35,33,33,0.65);
  cursor: pointer;
  transition: all 0.2s ease;
}
.library-filter:hover { color: var(--text-dark); border-color: rgba(35,33,33,0.4); }
.library-filter.is-active {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}
.library-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.library-card {
  background: var(--white);
  border: 1px solid rgba(35,33,33,0.06);
  border-radius: var(--radius-lg);
  padding: 24px 24px 22px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.library-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}
.library-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.library-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(233, 122, 98, 0.1);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
}
.library-icon svg { width: 20px; height: 20px; }
.library-badge {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: rgba(35,33,33,0.55);
  background: rgba(35,33,33,0.05);
  padding: 5px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.library-card h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.library-card p {
  font-size: 14px;
  color: rgba(35,33,33,0.6);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.library-tag {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--coral);
  padding-top: 14px;
  border-top: 1px solid rgba(35,33,33,0.08);
}
@media (max-width: 1000px) { .library-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .library-grid { grid-template-columns: 1fr; } }

/* By the numbers */
.agents-numbers { background: var(--bg-light); padding: 60px 0 100px; }
.agents-numbers .section-heading { margin-bottom: 56px; }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.number-stat { text-align: center; padding: 0 16px; }
.number-stat-value {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.number-stat h4 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.number-stat p {
  font-size: 14px;
  color: rgba(35,33,33,0.55);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 700px) { .numbers-grid { grid-template-columns: 1fr; } }

/* Proof in practice (uniquely scoped) */
.agents-proof {
  background: var(--dark-navy);
  padding: 100px 0;
}
.agents-proof .section-heading-white { margin-bottom: 12px; }
.agents-proof-sub {
  text-align: center;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 56px;
}
.agents-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}
.agents-case {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
}
.agents-case-eyebrow {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--coral);
  display: block;
  margin-bottom: 14px;
}
.agents-case h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  color: var(--coral);
  line-height: 1.2;
  margin-bottom: 24px;
}
.agents-case-block { margin-bottom: 18px; }
.agents-case-block-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.agents-case-dot {
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  display: inline-block;
}
.agents-case-block p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}
.agents-case-cta {
  align-self: flex-start;
  margin-top: 8px;
}
.agents-case-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.agents-case-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #15202b;
}
.agents-case-image img { width: 100%; height: 100%; object-fit: cover; }
.agents-case-image-tag {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--coral);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 6px 14px;
  border-radius: 100px;
}
.agents-case-quote {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
}
.agents-case-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16.5px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 16px;
}
.agents-case-quote footer { font-size: 13px; }
.agents-case-quote footer strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 2px;
}
.agents-case-quote footer span { color: rgba(255,255,255,0.55); }
@media (max-width: 1000px) { .agents-case-grid { grid-template-columns: 1fr; } }

/* Comparison */
.agents-compare { background: var(--bg-light); padding: 100px 0; }
.agents-compare .section-heading { margin-bottom: 16px; }
.compare-sub {
  text-align: center;
  font-size: 16px;
  color: rgba(35,33,33,0.6);
  margin: 0 auto;
  max-width: 720px;
}
.compare-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(35,33,33,0.06);
  overflow: hidden;
  max-width: 1100px;
  margin: 48px auto 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(35,33,33,0.07);
}
.compare-row:last-child { border-bottom: 0; }
.compare-cell {
  padding: 20px 28px;
  font-size: 15px;
  color: rgba(35,33,33,0.78);
  display: flex;
  align-items: center;
}
.compare-rowlabel {
  font-weight: 700;
  color: var(--text-dark);
  background: rgba(35,33,33,0.025);
}
.compare-head .compare-cell {
  background: rgba(35,33,33,0.04);
  padding-top: 18px;
  padding-bottom: 18px;
}
.compare-col-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(35,33,33,0.55);
}
.compare-col-highlight {
  background: rgba(233, 122, 98, 0.06);
  color: var(--text-dark);
  font-weight: 600;
}
.compare-head .compare-col-highlight {
  color: var(--coral);
  background: rgba(233, 122, 98, 0.1);
}
@media (max-width: 700px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-cell { padding: 14px 20px; font-size: 14px; }
  .compare-rowlabel { padding-top: 18px; padding-bottom: 8px; }
}

/* Agents FAQ — black background variant */
.agents-faq.faq-section { background: var(--black); }
.agents-faq.faq-section::before { display: none; }
.agents-faq .section-heading-white { margin-bottom: 48px; }

/* =====================================================
   AI AGENTS PAGE — V2
   ===================================================== */

/* Philosophy footer (under necessity grid) */
.philosophy-footer {
  text-align: center;
  font-size: 15px;
  color: rgba(35,33,33,0.6);
  max-width: 720px;
  margin: 56px auto 0;
  line-height: 1.65;
  font-style: italic;
}

/* ─── AGENT WORKFLOW DESIGN ─── */
.agent-workflow {
  background: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.agent-workflow::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(233,122,98,0.08), transparent 44%),
    linear-gradient(rgba(35,33,33,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,33,33,0.035) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}
.agent-workflow > .section-inner {
  position: relative;
  z-index: 1;
}
.agent-workflow-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(40px, 6vw, 76px);
  align-items: center;
  max-width: 1120px;
  margin: 58px auto 42px;
}
.agent-workflow-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.agent-workflow-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 8px;
  background: rgba(233,122,98,0.12);
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.agent-workflow-copy h3 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 20px;
}
.agent-workflow-copy p {
  font-size: 15.5px;
  color: rgba(35,33,33,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 500px;
}
.agent-workflow-cta {
  width: fit-content;
  margin-top: 12px;
}
.agent-path {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(36,49,61,0.96), rgba(36,49,61,0.9)),
    var(--dark-navy);
  border: 1px solid rgba(35,33,33,0.08);
  box-shadow: 0 24px 70px rgba(36,49,61,0.2);
}
.agent-path::before {
  content: '';
  position: absolute;
  left: 52px;
  top: 58px;
  bottom: 58px;
  width: 2px;
  background: linear-gradient(180deg, rgba(233,122,98,0.1), rgba(233,122,98,0.85), rgba(233,122,98,0.1));
}
.agent-path-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 74px;
  padding: 14px 18px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}
.agent-path-step:last-child {
  margin-bottom: 0;
}
.agent-path-step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}
.agent-path-step p {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}
.agent-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}
.agent-value-card {
  background: var(--bg-light);
  border: 1px solid rgba(35,33,33,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.agent-value-card h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.agent-value-card p {
  font-size: 14.5px;
  color: rgba(35,33,33,0.68);
  line-height: 1.6;
}

/* ─── PROMISE (Two ways to put agents to work) ─── */
.agents-promise-v2 {
  background: var(--black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.agents-promise-v2::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(233,122,98,0.06) 0%, transparent 60%);
}
.agents-promise-v2 > .section-inner { position: relative; z-index: 1; }
.promise-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.promise-card-v2 {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.promise-card-v2:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.promise-icon-v2 {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(233,122,98,0.15);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.promise-card-v2 h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.promise-card-v2 p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ─── LIBRARY V2 ─── */
.agents-library-v2 {
  background: var(--bg-light);
  padding: 100px 0;
}
.library-filters-v2 {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -32px auto 48px;
  max-width: 880px;
}
.library-filter-v2 {
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(35,33,33,0.15);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: rgba(35,33,33,0.65);
  cursor: pointer;
  transition: all 0.2s ease;
}
.library-filter-v2:hover {
  color: var(--text-dark);
  border-color: rgba(35,33,33,0.4);
}
.library-filter-v2.is-active {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}
.library-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.library-card-v2 {
  background: var(--white);
  border: 1px solid rgba(35,33,33,0.06);
  border-radius: var(--radius-lg);
  padding: 26px 26px 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.library-card-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.library-card-top-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.library-icon-v2 {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(233,122,98,0.12);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
}
.library-badge-v2 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: rgba(35,33,33,0.6);
  background: rgba(35,33,33,0.05);
  padding: 5px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.library-card-v2 h3 {
  font-family: var(--font-sans);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.library-card-v2 p {
  font-size: 14px;
  color: rgba(35,33,33,0.65);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.library-tag-v2 {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--coral);
  padding-top: 14px;
  border-top: 1px solid rgba(35,33,33,0.08);
}

/* ─── AGENTS NUMBERS ─── */
.agents-numbers-v2 {
  background: var(--bg-light);
  padding: 80px 0 100px;
  border-top: 1px solid rgba(35,33,33,0.06);
}
.agents-numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 980px;
  margin: 56px auto 0;
}
.agents-number-stat {
  text-align: center;
}
.agents-number-val {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.agents-number-val .stat-num {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
.agents-number-stat h4 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.agents-number-stat p {
  font-size: 14px;
  color: rgba(35,33,33,0.65);
  line-height: 1.55;
  max-width: 240px;
  margin: 0 auto;
}

/* ─── COMPARISON V2 ─── */
.agents-compare-v2 {
  background: var(--bg-light);
  padding: 100px 0;
}
.compare-table-v2 {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(35,33,33,0.06);
  overflow: hidden;
  max-width: 1080px;
  margin: 56px auto 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.compare-row-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(35,33,33,0.07);
}
.compare-row-v2:last-child { border-bottom: 0; }
.compare-cell-v2 {
  padding: 20px 28px;
  font-size: 15px;
  color: rgba(35,33,33,0.78);
  display: flex;
  align-items: center;
}
.compare-rowlabel-v2 {
  font-weight: 700;
  color: var(--text-dark);
  background: rgba(35,33,33,0.025);
}
.compare-head-v2 .compare-cell-v2 {
  background: rgba(35,33,33,0.04);
  padding-top: 18px;
  padding-bottom: 18px;
}
.compare-col-label-v2 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(35,33,33,0.55);
}
.compare-col-highlight-v2 {
  background: rgba(233,122,98,0.06);
  color: var(--text-dark);
  font-weight: 600;
}
.compare-head-v2 .compare-col-highlight-v2 {
  color: var(--coral);
  background: rgba(233,122,98,0.1);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1000px) {
  .agent-workflow-grid { grid-template-columns: 1fr; max-width: 640px; }
  .agent-value-grid { grid-template-columns: 1fr; max-width: 640px; }
  .promise-grid-v2 { grid-template-columns: 1fr; max-width: 520px; }
  .library-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .agents-numbers-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 700px) {
  .agent-workflow { padding: 78px 0; }
  .agent-path { padding: 20px; }
  .agent-path::before { left: 42px; }
  .agent-path-step {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 12px;
  }
  .agent-path-step span {
    width: 36px;
    height: 36px;
  }
  .agent-path-step p { font-size: 14.5px; }
  .agent-value-card { padding: 24px; }
  .library-grid-v2 { grid-template-columns: 1fr; }
  .compare-row-v2 { grid-template-columns: 1fr; }
  .compare-cell-v2 { padding: 14px 20px; font-size: 14px; }
  .compare-rowlabel-v2 { padding-top: 18px; padding-bottom: 8px; }
  .library-filters-v2 { margin-top: -16px; }
}


/* ═══════════════════════════════════════════════════════
   HUMANS IN THE LOOP — EDITORIAL REDESIGN
   Overrides the legacy .team styles above.
   ═══════════════════════════════════════════════════════ */
.team {
  background: #f4f1ea;
  padding: 120px 0 110px;
  position: relative;
  overflow: hidden;
}
.team::before { display: none; } /* nuke the old paper noise pattern */

.team .section-inner {
  max-width: 1280px;
  display: block;
}

/* HEADER */
.team-header {
  border-top: 1px solid rgba(35,33,33,0.18);
  padding-top: 28px;
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.team-header__eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(35,33,33,0.55);
  margin: 0;
}
.team-header__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 78px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #15201d;
  margin: 0;
  max-width: 1100px;
  text-wrap: balance;
}
.team-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 56px;
  padding-top: 14px;
  border-top: 1px solid rgba(35,33,33,0.12);
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(35,33,33,0.72);
}
.team-header__meta span { display: inline-flex; gap: 10px; }
.team-header__meta strong {
  font-weight: 600;
  color: rgba(35,33,33,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
  align-self: center;
}

/* HERO PHOTO */
.team-feature-photo {
  margin-bottom: 96px;
}
.team-feature-photo__img {
  width: 100%;
  aspect-ratio: 16 / 8.2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0.92);
}
.team-feature-photo__cap {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(35,33,33,0.55);
  margin: 18px 0 0;
  font-style: italic;
  max-width: 580px;
}

/* PULL QUOTE */
.team-quote {
  margin: 0 0 110px;
  padding: 0;
  max-width: 1080px;
}
.team-quote__text {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: #15201d;
  margin: 0 0 28px;
  text-wrap: balance;
}
.team-quote__text span {
  color: var(--coral);
  margin-right: 4px;
  margin-left: 2px;
}
.team-quote__cite {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(35,33,33,0.18);
  width: fit-content;
}
.team-quote__avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  background: #e8e5de;
  box-shadow: 0 0 0 3px #fff, 0 10px 28px rgba(35,33,33,0.18);
  flex: 0 0 auto;
}
.team-quote__cite-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.team-quote__cite strong {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: #15201d;
}
.team-quote__cite-copy span {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(35,33,33,0.55);
}

/* PRINCIPLES — 4-col, flat, no cards */
.team-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
  margin-bottom: 110px;
  padding-top: 64px;
  border-top: 1px solid rgba(35,33,33,0.18);
}
.team-principle { margin: 0; }
.team-principle__num {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--coral);
  display: block;
  margin-bottom: 14px;
}
.team-principle h4 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #15201d;
  margin: 0 0 12px;
  text-wrap: balance;
}
.team-principle p {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(35,33,33,0.66);
  margin: 0;
}

@media (max-width: 900px) {
  .team { padding: 80px 0 70px; }
  .team-header { margin-bottom: 48px; }
  .team-header__meta { gap: 16px 28px; }
  .team-feature-photo { margin-bottom: 64px; }
  .team-feature-photo__img { aspect-ratio: 4 / 3; }
  .team-quote { margin-bottom: 80px; }
  .team-principles {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 28px;
    margin-bottom: 80px;
    padding-top: 48px;
  }
}
@media (max-width: 540px) {
  .team-principles { grid-template-columns: 1fr; }
}


/* ─── SPLINE 3D SECTION (CENTERED, STACKED) ─── */
.spline-section {
  background: #0a0a0a;
  padding: 110px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.spline-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.spline-copy {
  color: #fff;
  max-width: 760px;
}
.spline-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 22px;
}
.spline-heading {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 22px;
  text-wrap: balance;
}
.spline-heading em {
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}
.spline-desc {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 28px;
}
.spline-stage {
  position: relative;
  width: 100%;
  max-width: 1080px;
  aspect-ratio: 16 / 11;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  margin-top: -52px;
}
.spline-stage spline-viewer {
  width: 160% !important;
  height: 200% !important;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: transparent !important;
}
.spline-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.spline-loader span {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: spline-spin 1s linear infinite;
}
@keyframes spline-spin { to { transform: rotate(360deg); } }

/* Hide the "Built with Spline" watermark badge */
.spline-watermark-mask {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  height: 60px;
  background: #0a0a0a;
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 900px) {
  .spline-section { padding: 80px 0 0; }
  .spline-stage { aspect-ratio: 4 / 3; }
  .spline-watermark-mask { width: 140px; height: 48px; }
}


/* ─── TEAM: image slider + founder video ─── */
.team-media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 96px;
}

/* Image slider */
.team-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1a1a;
  border-radius: 4px;
}
.team-slider__stage {
  position: absolute;
  inset: 0;
}
.team-slider__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.team-slider__slide.is-active { opacity: 1; }
.team-slider__slide--card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 5vw, 56px);
  color: #fff;
}
.team-slider__slide--coral { background: var(--coral); }
.team-slider__slide--green { background: #78be20; color: #102014; }
.team-slider__card {
  max-width: 520px;
}
.team-slider__card span {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  opacity: 0.78;
}
.team-slider__card h3 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 620px;
  text-wrap: balance;
}
.team-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.25s ease, transform 0.25s ease;
}
.team-slider__btn:hover {
  background: rgba(0,0,0,0.65);
  transform: translateY(-50%) scale(1.06);
}
.team-slider__btn svg { width: 18px; height: 18px; }
.team-slider__btn--prev { left: 16px; }
.team-slider__btn--next { right: 16px; }
.team-slider__counter {
  position: absolute;
  bottom: 18px;
  left: 22px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #fff;
  z-index: 3;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.team-slider__counter [data-team-current] { color: var(--coral); }
.team-slider__sep { margin: 0 6px; opacity: 0.5; }

/* Founder video */
.team-video {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.team-video__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1a1a;
  border-radius: 4px;
}
.team-video__el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--text-dark);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.25s ease, background 0.25s ease;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.team-video__play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: #fff;
}
.team-video__play svg { width: 26px; height: 26px; margin-left: 3px; }
.team-video__play[hidden] { display: none; }
.team-video__runtime {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #fff;
  z-index: 3;
  padding: 4px 10px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  border-radius: 4px;
}
.team-video__caption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 3;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.team-video__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 6px;
}
.team-video__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}
.team-video__role {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
}
.team-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 45%, rgba(0,0,0,0.75) 100%);
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 900px) {
  .team-media-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
}


/* ─── INTRO REVEAL ANIMATION ─── */
.intro-anim {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.intro.is-revealed .intro-anim { opacity: 1; transform: translateY(0); }

/* Eyebrow reveals first */
.intro.is-revealed .intro-anim[data-intro-step="0"] { transition-delay: 0.05s; }
/* Watch link */
.intro.is-revealed .intro-anim[data-intro-step="2"] { transition-delay: 1.6s; }
/* Bottom block */
.intro.is-revealed .intro-anim[data-intro-step="3"] { transition-delay: 1.85s; }

/* Word-by-word reveal of the heading */
.intro-heading .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.05em;
  line-height: inherit;
}
.intro-heading .word > span {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.intro.is-revealed .intro-heading .word > span { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .intro-anim,
  .intro-heading .word > span {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ─── HERO ART (interactive dot hands + spark) ─── */
.hero--art {
  background: #000;
}
.hero--art .hero-video { display: none; }
.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-art__canvas {
  display: block;
  width: 100%;
  height: 100%;
}
/* Soften the existing overlay so the dot hands stay visible behind the copy */
.hero--art .hero-overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.05) 70%, rgba(0,0,0,0.7) 100%);
}
.hero--art .hero-content {
  z-index: 2;
}
.hero--art .hero-heading {
  text-shadow: 0 2px 30px rgba(0,0,0,0.55);
}
.hero--art .hero-sub {
  text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}


.hero--art .hero-heading {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 30px rgba(0,0,0,0.7), 0 0 16px rgba(0,0,0,0.45);
}
.hero--art .hero-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 14px rgba(0,0,0,0.6);
}
.hero--art .hero-actions {
  justify-content: center;
}
/* Subtle radial vignette behind the copy so it reads on top of the dense art */
.hero--art .hero-overlay {
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 35%, rgba(0,0,0,0.05) 70%),
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
}




/* ─── HERO ART: diagonal wireframe + dot hands ─── */
.hero--art {
  background: #050505;
}
.hero--art .hero-video { display: none; }
.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-art__canvas { display: block; width: 100%; height: 100%; }
.hero--art .hero-overlay {
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 35%, rgba(0,0,0,0.05) 70%),
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
}
.hero--art .hero-content {
  text-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero--art .hero-heading {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 30px rgba(0,0,0,0.7), 0 0 16px rgba(0,0,0,0.45);
}
.hero--art .hero-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 14px rgba(0,0,0,0.6);
}
.hero--art .hero-actions { justify-content: center; }



  .hero-stats { font-size: 10px; letter-spacing: 1.8px; gap: 6px 12px; }
  .hero-logos { gap: 18px 28px; margin-top: 56px; font-size: 13px; }
}



  .hero--type .hero-eyebrow { margin-bottom: 24px; }
  .hero--type .hero-heading { font-size: clamp(40px, 13vw, 80px); line-height: 0.98; margin-bottom: 22px; }
  .hero--type .hero-sub { margin-bottom: 36px; font-size: 16px; }
  .hero--type .hero-actions { flex-direction: column; align-items: flex-start; }
}


/* ─── HERO: typography-focused, merged with Why CoPilot ─── */
.hero--decagon { min-height: 920px; height: 100vh; }
.hero--decagon .hero-overlay { background: rgba(0,0,0,0.18); }
.hero--decagon .hero-content {
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  padding: 96px var(--px) 80px;
}

.hero-mark {
  display: inline-flex;
  width: 36px;
  height: 36px;
  color: #fff;
  margin-bottom: 40px;
  opacity: 0.96;
  animation: fadeUp 0.9s ease 0.05s both;
}
.hero-mark svg { width: 100%; height: 100%; }

.hero--decagon .hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 38px;
  max-width: 1200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-wrap: balance;
  animation: fadeUp 0.9s ease 0.15s both;
}
.hero--decagon .hero-heading em { font-style: italic; font-weight: 400; }
.hero--decagon .hero-heading .accent-upper { text-transform: uppercase; font-style: normal; }
.hero--decagon .hero-heading .highlight { color: #FFBAAC; font-style: normal; }

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0 0 44px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  animation: fadeUp 0.9s ease 0.3s both;
}
.hero-trust__item { white-space: nowrap; }
.hero-trust__item strong {
  color: #fff;
  font-weight: 700;
}
.hero-trust__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  display: inline-block;
}

.hero--decagon .hero-actions {
  justify-content: center;
  margin: 0;
  gap: 14px;
  animation: fadeUp 0.9s ease 0.45s both;
}

.hero-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px 56px;
  flex-wrap: wrap;
  margin-top: 96px;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: rgba(255,255,255,0.42);
  animation: fadeUp 0.9s ease 0.6s both;
}
.hero-logos__item {
  letter-spacing: -0.005em;
  transition: color 0.25s ease, transform 0.25s ease;
  cursor: default;
}
.hero-logos__item:hover {
  color: rgba(255,255,255,0.92);
}

@media (max-width: 900px) {
  .hero--decagon .hero-content { padding: 80px var(--px) 64px; }
  .hero-mark { margin-bottom: 28px; width: 30px; height: 30px; }
  .hero--decagon .hero-heading { font-size: clamp(40px, 11vw, 64px); margin-bottom: 28px; gap: 2px; }
  .hero-trust { font-size: 10px; letter-spacing: 1.8px; gap: 8px 14px; margin-bottom: 32px; }
  .hero--decagon .hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .hero-logos { gap: 14px 28px; margin-top: 64px; font-size: 16px; }
}
@media (max-width: 600px) {
  .hero-trust__dot { display: none; }
}


/* ─── HERO: WITHOUT-STYLE TYPOGRAPHY (merges hero + why copilot) ─── */
.hero--without {
  position: relative;
  height: auto;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: #000;
  padding: 120px 0 96px;
  overflow: hidden;
}
.hero--without .hero-video,
.hero--without .hero-overlay,
.hero--without .hero-content { display: none; }

.hero-without {
  display: flex;
  flex-direction: column;
  gap: 90px;
  width: 100%;
}
.hero-without__copy {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--px);
  width: 100%;
}

.hero-without__heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(56px, 9.5vw, 180px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 80px;
  text-wrap: balance;
}
.hero-without__heading em {
  font-style: italic;
  font-weight: 400;
}
.hero-without__line2 {
  display: block;
  text-align: center;
  margin-top: 0.05em;
}
.hero-without__dot {
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: middle;
  font-size: 0.45em;
  line-height: 1;
  color: #fff;
}
.hero-without__accent {
  font-style: italic;
  color: #FFBAAC;
}

.hero-without__sub {
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  text-wrap: pretty;
}

/* Horizontal scrolling strip — alternates stats and case-study images */
.hero-without__strip {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 56px 0;
  mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.hero-strip-track {
  display: flex;
  align-items: stretch;
  gap: 80px;
  width: max-content;
  animation: heroStripScroll 60s linear infinite;
}
.hero-without__strip:hover .hero-strip-track {
  animation-play-state: paused;
}
@keyframes heroStripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-strip-cell {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 22px;
  row-gap: 6px;
}
.hero-strip-cell--stat {
  max-width: 420px;
  padding: 8px 0;
}
.hero-strip-cell__icon {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  color: var(--coral);
  background: rgba(255,255,255,0.025);
  flex-shrink: 0;
}
.hero-strip-cell__icon svg { width: 48px; height: 48px; stroke-width: 1.3; }
.hero-strip-cell__num {
  grid-column: 2;
  align-self: end;
}
.hero-strip-cell__label {
  grid-column: 2;
  align-self: start;
}
.hero-strip-cell__num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(54px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #fff;
}
.hero-strip-cell__label {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255,255,255,0.62);
  max-width: 280px;
}
.hero-strip-cell--img {
  width: 180px;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1a1a;
}
.hero-strip-cell--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .hero--without { padding-top: 110px; }
  .hero-without { gap: 60px; }
  .hero-without__heading { font-size: clamp(48px, 13vw, 78px); margin-bottom: 56px; }
  .hero-without__sub { font-size: 17px; }
  .hero-without__strip { padding: 40px 0; }
  .hero-strip-track { gap: 48px; animation-duration: 48s; }
  .hero-strip-cell__num { font-size: 56px; }
  .hero-strip-cell--img { width: 130px; height: 130px; }
}


/* Icon-only stat cells in hero strip — overridden by grid layout above */


/* ─── HERO: custom cursor effect ─── */
.hero--without { cursor: none; }
.hero--without a, .hero--without button { cursor: none; }
.hero-cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease;
  mix-blend-mode: difference;
}
.hero-cursor.is-visible { opacity: 1; }
.hero-cursor.is-hover .hero-cursor__ring {
  width: 96px;
  height: 96px;
  border-color: rgba(255,255,255,0.95);
  background: rgba(255, 186, 172, 0.12);
}
.hero-cursor.is-hover .hero-cursor__label { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.hero-cursor.is-hover .hero-cursor__dot { transform: translate(-50%,-50%) scale(0); }

.hero-cursor__ring {
  position: absolute;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  transition: width 0.35s cubic-bezier(0.22,1,0.36,1), height 0.35s cubic-bezier(0.22,1,0.36,1), background 0.3s ease, border-color 0.3s ease;
  will-change: width, height, transform;
}
.hero-cursor__dot {
  position: absolute;
  top: 0; left: 0;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.hero-cursor__label {
  position: absolute;
  top: 0; left: 0;
  transform: translate(-50%, -50%) scale(0.7);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.22,1,0.36,1);
  white-space: nowrap;
}

@media (hover: none), (max-width: 760px) {
  .hero--without { cursor: auto; }
  .hero-cursor { display: none; }
}


/* Hero CTAs below the description */
.hero-without__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 0;
}
@media (max-width: 600px) {
  .hero-without__actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
}


/* ─── HERO HEADLINE — VARIATION 2 ─── */
.hero-headline-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  text-align: left;
  margin: 0 auto 64px;
  max-width: 1480px;
  padding: 0 var(--px);
  width: 100%;
}
.hl2-prefix {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(28px, 3.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.86);
  margin-bottom: 4px;
}
.hl2-prefix em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.6); }

.hl2-anchor {
  position: relative;
  display: block;
  line-height: 0.84;
  margin: 0;
  white-space: nowrap;
}
.hl2-anchor__word {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(96px, 19vw, 360px);
  letter-spacing: -0.04em;
  line-height: 0.84;
  /* Default: filled peach */
  color: #FFBAAC;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  transition: color 0.4s ease, -webkit-text-stroke 0.4s ease;
}
.hl2-anchor__word:hover {
  color: transparent;
  -webkit-text-stroke: 2px #FFBAAC;
  text-stroke: 2px #FFBAAC;
}
.hl2-anchor__word::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: rgba(255, 186, 172, 0.06);
  -webkit-text-stroke: 0;
  text-stroke: 0;
  z-index: -1;
  transform: translate(8px, 8px);
}
.hl2-anchor__dot {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(96px, 19vw, 360px);
  line-height: 0.84;
  color: #FFBAAC;
  margin-left: -0.04em;
  letter-spacing: -0.04em;
  vertical-align: baseline;
}

.hl2-aside {
  display: inline-block;
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.4;
  color: rgba(255,255,255,0.5);
  margin-top: 18px;
  padding-left: 4px;
  letter-spacing: 0;
  align-self: end;
}

@media (max-width: 900px) {
  .hl2-prefix { font-size: clamp(22px, 5vw, 32px); }
  .hl2-aside { font-size: 13px; margin-top: 12px; }
  .hl2-anchor__word { -webkit-text-stroke-width: 1.5px; }
}


/* ─── HUMANS letter animation ─── */
.hl2-anchor__word { perspective: 800px; }
.hl2-l {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.4s ease, -webkit-text-stroke-color 0.4s ease;
  will-change: transform;
  animation: none !important;
}

/* Continuous shimmer disabled — page-load animation removed */
.hl2-anchor__word {
  perspective: 800px;
}
@keyframes hl2Shimmer {
  0%   { background-position: 200% 0; }
  55%  { background-position: -120% 0; }
  100% { background-position: -120% 0; }
}

/* Hover: continuous wave — each letter bobs in sequence + shifts to white */
.hl2-anchor__word:hover .hl2-l {
  color: #fff;
  animation: hl2Wave 1.6s ease-in-out infinite !important;
}
.hl2-anchor__word:hover .hl2-l:nth-child(1) { animation-delay: 0s; }
.hl2-anchor__word:hover .hl2-l:nth-child(2) { animation-delay: 0.08s; }
.hl2-anchor__word:hover .hl2-l:nth-child(3) { animation-delay: 0.16s; }
.hl2-anchor__word:hover .hl2-l:nth-child(4) { animation-delay: 0.24s; }
.hl2-anchor__word:hover .hl2-l:nth-child(5) { animation-delay: 0.32s; }
.hl2-anchor__word:hover .hl2-l:nth-child(6) { animation-delay: 0.40s; }
@keyframes hl2Wave {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-14px) scale(1.03); }
}
.hl2-anchor__word .hl2-l:hover {
  transform: translateY(-22px) scale(1.06) !important;
  color: #fff !important;
}

/* Period blink-pulse — disabled to prevent any motion on initial load */
.hl2-anchor__dot {
  animation: none !important;
}
@keyframes hl2DotPulse {
  0%, 100% { opacity: 0.95; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.92); }
}

/* No initial animation on heading or letters — purely static on load */
.hero-without__heading,
.hero-without__heading * {
  animation: none !important;
}
.hl2-prefix, .hl2-aside {
  animation: none !important;
  transform: none !important;
}
/* No initial animation on heading or letters — purely static on load */
.hero-without__heading,
.hero-without__heading * {
  animation: none !important;
}
.hl2-prefix, .hl2-aside {
  animation: none !important;
  transform: none !important;
}
.hl2-l {
  animation: none !important;
}
.hl2-anchor__dot {
  animation: none !important;
}
/* Hover wave restored — letters bob in sequence + shift to white */
.hl2-anchor__word:hover .hl2-l {
  color: #fff;
  animation: hl2Wave 1.6s ease-in-out infinite !important;
}
.hl2-anchor__word:hover .hl2-l:nth-child(1) { animation-delay: 0s !important; }
.hl2-anchor__word:hover .hl2-l:nth-child(2) { animation-delay: 0.08s !important; }
.hl2-anchor__word:hover .hl2-l:nth-child(3) { animation-delay: 0.16s !important; }
.hl2-anchor__word:hover .hl2-l:nth-child(4) { animation-delay: 0.24s !important; }
.hl2-anchor__word:hover .hl2-l:nth-child(5) { animation-delay: 0.32s !important; }
.hl2-anchor__word:hover .hl2-l:nth-child(6) { animation-delay: 0.40s !important; }
@keyframes hl2Cursor {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes hl2CursorHide {
  to { opacity: 0; visibility: hidden; }
}


/* ─── HUMANS hover: floating portrait stack ─── */
.hl2-portraits {
  position: fixed;
  top: 0; left: 0;
  width: 160px;
  height: 200px;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.hl2-portraits.is-on { opacity: 1; }
.hl2-portraits img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  box-shadow: 0 14px 40px rgba(0,0,0,0.5);
  transition: transform 0.18s ease;
  will-change: opacity, transform;
}
.hl2-portraits img.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(var(--r, 0deg));
}

@media (hover: none), (max-width: 760px) {
  .hl2-portraits { display: none; }
}


/* ─── HERO STRIP: improved styling ─── */
.hero-without__strip {
  padding: 64px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.015) 0%, transparent 100%);
}
.hero-strip-track {
  gap: 0;
  animation-duration: 80s;
}
.hero-strip-cell {
  grid-template-columns: auto 1fr;
  column-gap: 24px;
  row-gap: 8px;
  padding: 14px 56px;
  position: relative;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.4s ease;
}
.hero-strip-cell:hover {
  background: rgba(255, 186, 172, 0.04);
}
.hero-strip-cell__icon { display: none; }
.hero-strip-cell {
  grid-template-columns: 1fr;
}
.hero-strip-cell__num {
  font-size: clamp(60px, 6vw, 92px);
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-strip-cell__live {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(233,122,98,0.6);
  display: inline-block;
  flex-shrink: 0;
  animation: heroLiveBlink 2.2s ease-in-out infinite;
}
@keyframes heroLiveBlink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233,122,98,0.6); }
  60%      { box-shadow: 0 0 0 10px rgba(233,122,98,0); }
}
.hero-strip-cell__label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  max-width: 260px;
  line-height: 1.5;
  letter-spacing: 0.005em;
}

@media (max-width: 900px) {
  .hero-strip-cell { padding: 10px 32px; column-gap: 18px; }
  .hero-strip-cell__num { font-size: 54px; gap: 10px; }
  .hero-strip-cell__live { width: 8px; height: 8px; }
}

/* Final responsive pass: preserve desktop interactions while giving phones a cleaner reading layout. */
@media (max-width: 700px) {
  .ai-canvas-topline {
    display: none;
  }

  .ai-canvas-viewport {
    height: auto;
    margin-left: 0;
    margin-right: 0;
    border: 0;
    border-radius: 8px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    cursor: auto;
    touch-action: pan-y;
    user-select: auto;
  }

  .ai-canvas-stage {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    min-width: 0;
    aspect-ratio: auto;
    transform: none !important;
    will-change: auto;
  }

  .ai-canvas-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    object-fit: cover;
    object-position: 35% center;
    max-width: 100%;
    box-shadow: 0 18px 42px rgba(40,30,10,0.14);
  }

  .ai-hotspot {
    display: none;
  }

  .ai-hotspot-card,
  .ai-hotspot-card.is-active,
  .ai-hotspot:hover + .ai-hotspot-card,
  .ai-hotspot:focus-visible + .ai-hotspot-card,
  .ai-hotspot-card.is-active.is-card-left,
  .ai-hotspot-card.is-active.is-card-right,
  .ai-hotspot-card.is-active.is-card-below,
  .ai-hotspot:hover + .ai-hotspot-card.is-card-left,
  .ai-hotspot:hover + .ai-hotspot-card.is-card-right,
  .ai-hotspot:hover + .ai-hotspot-card.is-card-below,
  .ai-hotspot:focus-visible + .ai-hotspot-card.is-card-left,
  .ai-hotspot:focus-visible + .ai-hotspot-card.is-card-right,
  .ai-hotspot:focus-visible + .ai-hotspot-card.is-card-below {
    position: static;
    width: 100%;
    max-width: none;
    padding: 18px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: 0 10px 24px rgba(40,30,10,0.08);
    backdrop-filter: none;
  }

  .ai-hotspot-card::after {
    display: none;
  }

  .ai-hotspot-card h3 {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .hero-headline-v2 {
    max-width: 100%;
    margin-bottom: 44px;
  }

  .hl2-prefix {
    display: block;
    max-width: 100%;
    font-size: clamp(20px, 5.4vw, 28px);
    line-height: 1.16;
    text-wrap: balance;
  }

  .hl2-anchor {
    max-width: 100%;
    white-space: nowrap;
  }

  .hl2-anchor__word,
  .hl2-anchor__dot {
    font-size: clamp(64px, 17.5vw, 96px);
  }

  .hl2-anchor__word::before {
    transform: translate(4px, 4px);
  }

  .hero-without__strip {
    padding: 44px 0;
  }

  .hero-strip-cell {
    padding: 10px 24px;
  }

  .rs-imagine-card {
    overflow: visible;
  }

  .rs-imagine-left,
  .rs-imagine-right {
    padding-left: 24px;
    padding-right: 24px;
  }

  .rs-imagine-word {
    font-size: clamp(34px, 11vw, 44px);
    overflow-wrap: anywhere;
  }
}
