/* ==========================================================================
   STYLES V2 — Homepage 2.0 (Editorial × Diocesan-warm)
   Scoped to body.home so other pages keep using styles.css unchanged.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600&display=swap');

/* ==========================================================================
   HOMEPAGE PALETTE — warm parchment, scoped to body.home only
   ========================================================================== */
body.home {
  --bg: #f7f5f1;
  --bg-alt: #efece6;
  --paper: #fbfaf6;
  --ink: #1a1d24;
  --ink-2: #3d4250;
  --ink-3: #6b6f7d;
  --ink-4: #a4a7b1;
  --rule: #d9d4ca;
  --rule-soft: #e8e4dc;
  --navy-deep: #16263d;
  --teal-deep: #4ba8c4;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--bg);
  overflow-x: hidden;
}

/* ==========================================================================
   TYPOGRAPHY OVERRIDES (homepage only)
   ========================================================================== */
body.home .h-display {
  font-family: var(--sans);
  font-size: clamp(48px, 7.6vw, 100px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.038em;
  color: var(--ink);
}
body.home .h-display em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--navy);
}
body.home .h2 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144;
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--ink);
}
body.home .h2 em { font-style: italic; font-weight: 300; color: var(--navy); }

body.home .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
}
body.home .eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* ==========================================================================
   HERO (homepage only) — overrides live .hero rules
   ========================================================================== */
body.home .hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 80px 0 120px;
  background: linear-gradient(180deg, #f3f0ea 0%, var(--bg) 70%);
}
/* disable live's atmospheric ::after wash and shield-watermark ::before */
body.home .hero::after { content: none; }
body.home .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  width: auto;
  height: auto;
  top: 0; left: 0;
  transform: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(108, 195, 221, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 15% 85%, rgba(35, 58, 89, 0.12) 0%, transparent 60%);
  background-image:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(108, 195, 221, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 15% 85%, rgba(35, 58, 89, 0.12) 0%, transparent 60%);
  opacity: 1;
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}
.hero-photo svg { width: 100%; height: 100%; }

.hero-shield {
  position: absolute;
  top: 50%;
  right: -8%;
  width: min(720px, 85vw);
  height: min(720px, 85vw);
  transform: translateY(-50%);
  z-index: -1;
  pointer-events: none;
  opacity: 0.07;
  background-image: url('/assets/logo-shield.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: hero-shield-float 18s ease-in-out infinite;
}
@keyframes hero-shield-float {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50%      { transform: translateY(-52%) translateX(-1.5%); }
}

body.home .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: center;
}

body.home .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 32px;
  padding: 8px 18px 8px 14px;
  border: 1px solid rgba(35, 58, 89, 0.18);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 980px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.home .hero-eyebrow .cross {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--navy);
}

body.home .hero h1 {
  max-width: 980px;
  margin: 0 0 32px;
  text-align: left;
}
body.home .hero .lead {
  max-width: 620px;
  margin: 0 0 48px;
  font-size: clamp(18px, 1.5vw, 21px);
  text-align: left;
}
body.home .hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

/* hero metadata stripe */
.hero-meta {
  margin-top: 96px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-item .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero-meta-item .value {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero-meta-item .value em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.015em;
}

@media (max-width: 760px) {
  body.home .hero { padding: 56px 0 80px; }
  .hero-meta { grid-template-columns: 1fr 1fr; margin-top: 56px; gap: 20px; }
  .hero-meta-item .value { font-size: 14px; }
  .hero-shield { right: -30%; opacity: 0.05; }
}

/* ==========================================================================
   SECTION HEADER (shared)
   ========================================================================== */
.sec-head { max-width: 880px; margin-bottom: 80px; }
.sec-head .h2 { margin-bottom: 24px; }
.sec-head .lead { max-width: 720px; }
@media (max-width: 720px) { .sec-head { margin-bottom: 56px; } }

/* ==========================================================================
   Shared editorial primitives
   ========================================================================== */
.vision-rule {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 64px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.vision-rule-label {
  font-weight: 600;
  color: var(--navy);
  font-variant-numeric: oldstyle-nums;
}
.vision-rule-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--rule-soft) 0%, var(--rule) 50%, var(--rule-soft) 100%);
}
.vision-rule-line.on-dark {
  background: linear-gradient(90deg, rgba(251,250,246,0.08) 0%, rgba(251,250,246,0.25) 50%, rgba(251,250,246,0.08) 100%);
}
.vision-rule-meta {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  color: var(--ink-3);
}
.vision-rule-meta.on-dark { color: rgba(251,250,246,0.6); }

body.home .eyebrow.on-dark { color: var(--teal); }
.sec-sub.on-dark { color: rgba(251,250,246,0.7); }
.sec-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 680px;
  margin-top: 24px;
  text-wrap: balance;
}

/* ==========================================================================
   VISION V2 — Editorial chapter opener
   ========================================================================== */
.vision-v2 {
  background: var(--paper);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  padding: 140px 0 160px;
  position: relative;
  overflow: hidden;
}
.vision-v2::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,244,214,0.4) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}
.vision-v2 > * { position: relative; }

.vision-grid-v2 {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 100px;
  align-items: start;
  margin-bottom: 96px;
}

.vision-aside { position: sticky; top: 120px; }
.vision-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 32px;
}
.vision-figure { margin: 0; }
.vision-figure svg { width: 100%; height: auto; max-width: 280px; }
.vision-figure figcaption {
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: var(--ink-3);
  max-width: 240px;
  line-height: 1.5;
}

.vision-main { position: relative; }
.vision-pull-v2 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144;
  font-weight: 300;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 56px;
  padding-bottom: 8px;
  text-wrap: balance;
  position: relative;
}
.vision-pull-v2::before {
  content: '\201C';
  font-family: var(--serif);
  font-style: italic;
  position: absolute;
  left: -0.45em;
  top: -0.15em;
  font-size: 1.2em;
  color: var(--technology);
  opacity: 0.85;
}
.vision-pull-v2 em { font-style: italic; color: var(--navy); font-weight: 400; }
.vision-attr-v2 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule-soft);
}

.vision-body-v2 p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 24px;
  max-width: 620px;
}
.vision-body-v2 p em { color: var(--navy); font-style: italic; }
.vision-body-v2 .vision-lede { font-size: 22px; line-height: 1.55; color: var(--ink); }
.vision-body-v2 .dropcap {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  line-height: 0.9;
  float: left;
  margin: 6px 12px 0 0;
  color: var(--navy);
}
.vision-body-v2 .vision-pithy {
  margin-top: 40px;
  padding: 24px 0 0;
  border-top: 1px solid var(--rule-soft);
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  line-height: 1.45;
  color: var(--navy);
}
.vision-body-v2 .vision-pithy br { display: block; content: ''; margin-top: 4px; }

.vision-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.vision-meta-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 32px;
  border-left: 1px solid var(--rule-soft);
}
.vision-meta-item:first-child { padding-left: 0; border-left: none; }
.vision-meta-item .label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.vision-meta-item .value {
  font-family: var(--serif);
  font-variation-settings: "opsz" 14;
  font-size: 19px;
  line-height: 1.35;
  color: var(--ink);
  font-weight: 400;
}
.vision-meta-item .value em { font-style: italic; font-weight: 300; color: var(--navy); }

@media (max-width: 920px) {
  .vision-v2 { padding: 80px 0 96px; }
  .vision-grid-v2 { grid-template-columns: 1fr; gap: 56px; margin-bottom: 64px; }
  .vision-aside { position: static; }
  .vision-figure svg { max-width: 200px; }
  .vision-meta { grid-template-columns: 1fr; gap: 24px; padding-top: 32px; }
  .vision-meta-item { padding: 0; border-left: none; padding-top: 24px; border-top: 1px solid var(--rule-soft); }
  .vision-meta-item:first-child { padding-top: 0; border-top: none; }
}

/* ==========================================================================
   BEFORE / WITH SETON — editorial split-view infographic
   ========================================================================== */
.bw-section {
  background: var(--bg);
  padding: 140px 0;
  position: relative;
}
.bw-section .sec-head {
  text-align: center;
  margin: 0 auto 72px;
  max-width: 880px;
}
.bw-section .sec-head .h2 em {
  color: var(--navy);
  font-style: italic;
  font-weight: 300;
}
.bw-section .sec-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-3);
  line-height: 1.6;
  margin-top: 18px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.bw-grid {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
}

.bw-col {
  position: relative;
  padding: 56px 56px 48px;
  background: #fbfaf6;
  border: 1px solid #e7e2d6;
  display: flex;
  flex-direction: column;
}
.bw-col.bw-before {
  border-radius: 4px 0 0 4px;
  border-right: none;
  background: linear-gradient(180deg, #f5f1e7 0%, #fbfaf6 70%);
}
.bw-col.bw-with {
  border-radius: 0 4px 4px 0;
  border-left: none;
  background: linear-gradient(180deg, #f7faf9 0%, #fbfaf6 70%);
}

.bw-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.bw-before::before { background: #b8532a; }
.bw-with::before { background: #233a59; }

.bw-col-head {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e7e2d6;
}
.bw-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.bw-tag-before {
  color: #b8532a;
  background: rgba(184,83,42,0.08);
  border: 1px solid rgba(184,83,42,0.25);
}
.bw-tag-with {
  color: var(--paper);
  background: var(--navy);
}

.bw-col-title {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.bw-col-title em { font-style: italic; font-weight: 300; color: var(--navy); }
.bw-before .bw-col-title em { color: #8a3d1f; }
.bw-col-sub {
  font-size: 14px;
  line-height: 1.55;
  color: #6b6f7d;
  max-width: 380px;
}

.bw-list { display: flex; flex-direction: column; gap: 28px; flex: 1; }
.bw-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}
.bw-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid #e7e2d6;
  flex-shrink: 0;
}
.bw-icon svg { width: 28px; height: 28px; }
.bw-before .bw-icon { color: #b8532a; }
.bw-with .bw-icon { color: var(--navy); border-color: rgba(35,58,89,0.18); }

.bw-item-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.bw-item p {
  font-size: 14px;
  line-height: 1.55;
  color: #555a68;
}

.bw-col-foot {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #e7e2d6;
}
.bw-foot-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b6f7d;
  margin-bottom: 10px;
}
.bw-foot-line {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--ink);
}
.bw-with .bw-foot-line { color: var(--navy); }

.bw-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.bw-divider-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, #d9d4ca 30%, #d9d4ca 70%, transparent 100%);
  min-height: 60px;
}
.bw-divider-mark {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(35,58,89,0.08));
}

.bw-placeholder-note {
  margin-top: 48px;
  text-align: center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #8a8e99;
  font-style: italic;
}
.bw-note-mark {
  display: inline-block;
  margin-right: 8px;
  color: #b8532a;
  font-style: normal;
}

@media (max-width: 920px) {
  .bw-section { padding: 88px 0; }
  .bw-grid { grid-template-columns: 1fr; }
  .bw-col { padding: 40px 28px 36px; }
  .bw-col.bw-before {
    border-radius: 4px 4px 0 0;
    border-right: 1px solid #e7e2d6;
    border-bottom: none;
  }
  .bw-col.bw-with {
    border-radius: 0 0 4px 4px;
    border-left: 1px solid #e7e2d6;
    border-top: none;
  }
  .bw-divider {
    flex-direction: row;
    padding: 24px 0;
    background: var(--bg);
  }
  .bw-divider-line {
    width: auto;
    min-height: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d9d4ca 30%, #d9d4ca 70%, transparent 100%);
  }
  .bw-divider-mark {
    transform: rotate(90deg);
    width: 52px;
    height: 52px;
  }
}

/* ==========================================================================
   PILLARS — Triple Threat → Four Pillars
   ========================================================================== */
.pillars-section { background: var(--bg); padding: 140px 0; }
.pillars-section .sec-head { text-align: center; margin: 0 auto 80px; }

.pillars-diagram {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}
.pillars-diagram-svg { width: 100%; height: auto; }

@media (max-width: 860px) {
  .pillars-section { padding: 88px 0; }
  .pillars-diagram { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pillars-diagram::after {
    content: 'Scroll horizontally to view full diagram \2192';
    display: block;
    text-align: center;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-top: 16px;
  }
  .pillars-diagram-svg { min-width: 880px; }
}

/* ==========================================================================
   SERVICES V2 — Museum-quality cards
   ========================================================================== */
.services-v2 {
  background: var(--paper);
  border-top: 1px solid var(--rule-soft);
  padding: 140px 0;
}
.services-v2 .sec-head { margin-bottom: 80px; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  background: #fcfaf3;
  border: 1px solid var(--rule-soft);
  padding: 48px 40px 40px;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.45s ease,
              box-shadow 0.45s ease,
              background 0.45s ease;
  overflow: hidden;
  min-height: 640px;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,244,214,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--rule);
  box-shadow: 0 20px 48px -24px rgba(20,30,50,0.18);
  background: #fdfbf5;
}
.svc-card:hover::before { opacity: 1; }
.svc-card > * { position: relative; }

.svc-card-rule {
  height: 3px;
  width: 56px;
  background: var(--accent);
  margin-bottom: 32px;
}
.svc-card[data-accent="finance"]    { --accent: var(--finance); }
.svc-card[data-accent="technology"] { --accent: var(--technology); }
.svc-card[data-accent="academy"]    { --accent: var(--academy); }

.svc-card-meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule-soft);
}
.svc-card-roman {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  color: var(--accent);
}
.svc-card-channel {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.svc-card-mark {
  color: var(--accent);
  width: 80px;
  height: 80px;
  margin-bottom: 32px;
  opacity: 0.85;
}
.svc-card-mark svg { width: 100%; height: 100%; }

.svc-card-wordmark {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink);
  margin-bottom: 20px;
}
.svc-card-wordmark span {
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  margin-left: 1px;
}

.svc-card-title {
  font-family: var(--serif);
  font-variation-settings: "opsz" 48;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 18px;
  text-wrap: balance;
}
.svc-card-title em { font-style: italic; font-weight: 300; color: var(--ink-2); }

.svc-card-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 28px;
}

.svc-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-card-list li {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-2);
  padding-left: 20px;
  position: relative;
}
.svc-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.svc-card-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.svc-card-tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.svc-card-link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}
.svc-card-link svg { width: 14px; height: 14px; }
.svc-card:hover .svc-card-link { gap: 10px; }

@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: 1fr; gap: 24px; }
  .svc-card { min-height: 0; }
}
@media (max-width: 720px) {
  .services-v2 { padding: 88px 0; }
  .svc-card { padding: 36px 28px; }
}

/* ==========================================================================
   SCALING V2 — True data viz
   ========================================================================== */
.scaling-v2 {
  background: var(--navy);
  color: var(--paper);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.scaling-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(108,195,221,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,244,214,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.scaling-v2 > * { position: relative; }

.scaling-rule { color: rgba(251,250,246,0.6); margin-bottom: 56px; }
.scaling-rule .vision-rule-label { color: var(--paper); }

.scaling-v2 .sec-head { margin-bottom: 64px; }
.scaling-v2 .h2 { color: var(--paper); }
.scaling-v2 .h2 em { color: var(--teal); font-style: italic; font-weight: 300; }

.sv-viz {
  background: rgba(251,250,246,0.025);
  border: 1px solid rgba(251,250,246,0.1);
  padding: 32px;
  margin-bottom: 32px;
}
.sv-viz-svg { width: 100%; height: auto; display: block; }

.sv-source {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(251,250,246,0.55);
  max-width: 720px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.sv-source-mark {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--teal);
  line-height: 1;
}
.sv-source-aside {
  display: block;
  margin-top: 6px;
  color: rgba(251,250,246,0.4);
  font-size: 13px;
}

@media (max-width: 860px) {
  .scaling-v2 { padding: 88px 0; }
  .sv-viz { padding: 16px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .sv-viz-svg { min-width: 920px; }
  .sv-viz::after {
    content: 'Scroll horizontally \2192';
    display: block;
    text-align: center;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(251,250,246,0.45);
    margin-top: 12px;
  }
}

/* ==========================================================================
   WHY V2 — Editorial essays
   ========================================================================== */
.why-v2 {
  background: var(--bg);
  padding: 140px 0;
  position: relative;
}

.why-head { margin-bottom: 80px; max-width: 760px; }
.why-head .h2 { font-size: clamp(36px, 4vw, 56px); }
.why-head .h2 em { font-style: italic; font-weight: 300; color: var(--navy); }

.why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 96px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-essay {
  display: grid;
  grid-template-columns: 220px 1fr;
  grid-template-areas:
    "header title"
    "header body"
    "header pull";
  column-gap: 64px;
  row-gap: 24px;
  padding: 56px 0;
  border-top: 1px solid var(--rule-soft);
  align-items: start;
}
.why-essay:last-child { border-bottom: 1px solid var(--rule-soft); }

.why-essay > header {
  grid-area: header;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 120px;
}
.why-essay > .why-essay-title { grid-area: title; }
.why-essay > .why-essay-body  { grid-area: body; }
.why-essay > .why-essay-pull  { grid-area: pull; }
.why-roman {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
  color: var(--technology);
  font-variation-settings: "opsz" 144;
}
.why-kicker {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.why-essay-title {
  font-family: var(--serif);
  font-variation-settings: "opsz" 96;
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin: 0 0 20px;
  text-wrap: balance;
  max-width: 580px;
}
.why-essay-title em { font-style: italic; font-weight: 300; color: var(--navy); }

.why-essay-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 28px;
  max-width: 620px;
}
.why-essay-body em { color: var(--navy); font-style: italic; }

.why-essay-pull {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
  margin: 0;
  padding-left: 24px;
  border-left: 2px solid var(--technology);
}
.why-essay-pull em { font-style: italic; font-weight: 300; color: var(--navy); }

.why-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.why-meta-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 28px;
  border-left: 1px solid var(--rule-soft);
}
.why-meta-item:first-child { padding-left: 0; border-left: none; }
.why-meta-item .label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.why-meta-item .value {
  font-family: var(--serif);
  font-variation-settings: "opsz" 14;
  font-size: 17px;
  line-height: 1.35;
  color: var(--ink);
}
.why-meta-item .value em { font-style: italic; font-weight: 300; color: var(--navy); }

@media (max-width: 920px) {
  .why-v2 { padding: 88px 0; }
  .why-essay {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "title"
      "body"
      "pull";
    gap: 24px;
    padding: 40px 0;
  }
  .why-essay header { position: static; flex-direction: row; align-items: baseline; }
  .why-roman { font-size: 36px; }
  .why-meta { grid-template-columns: 1fr 1fr; gap: 24px; }
  .why-meta-item { padding: 24px 16px 0; border-left: none; border-top: 1px solid var(--rule-soft); }
  .why-meta-item:nth-child(1), .why-meta-item:nth-child(2) { border-top: none; padding-top: 0; }
}
@media (max-width: 560px) {
  .why-meta { grid-template-columns: 1fr; }
  .why-meta-item { border-left: none; border-top: 1px solid var(--rule-soft); padding: 24px 0 0; }
  .why-meta-item:first-child { padding-top: 0; border-top: none; }
}

/* ==========================================================================
   CTA V2 — Elevated final
   ========================================================================== */
.cta-v2 {
  position: relative;
  padding: 140px 0 120px;
  background: var(--paper);
  border-top: 1px solid var(--rule-soft);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
.cta-bg svg { width: 100%; height: 100%; }
.cta-v2 > .wrap { position: relative; z-index: 1; }

.cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 96px;
}

.cta-headline {
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.024em;
  margin: 16px 0 24px;
  text-wrap: balance;
}
.cta-headline em { font-style: italic; font-weight: 300; color: var(--navy); }

.cta-lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 580px;
  margin: 0 0 40px;
}

.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.cta-aside { position: sticky; top: 120px; }
.cta-aside-card {
  background: rgba(35,58,89,0.025);
  border: 1px solid var(--rule-soft);
  padding: 40px 36px;
  position: relative;
}
.cta-aside-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 56px;
  height: 3px;
  background: var(--technology);
}
.cta-aside-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 24px;
}
.cta-aside-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta-aside-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule-soft);
}
.cta-aside-list li:last-child { border-bottom: none; padding-bottom: 0; }
.cta-aside-list li strong { color: var(--ink); font-weight: 600; }
.cta-step {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--technology);
  line-height: 1;
  padding-top: 2px;
}
.cta-aside-foot {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-3);
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--rule-soft);
}

.cta-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.cta-meta-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 24px;
  border-left: 1px solid var(--rule-soft);
}
.cta-meta-item:first-child { padding-left: 0; border-left: none; }
.cta-meta-item .label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.cta-meta-item .value {
  font-family: var(--serif);
  font-variation-settings: "opsz" 14;
  font-size: 16px;
  line-height: 1.35;
  color: var(--ink);
  word-break: break-word;
}
.cta-meta-item .value em { font-style: italic; font-weight: 300; color: var(--navy); }

@media (max-width: 920px) {
  .cta-v2 { padding: 88px 0; }
  .cta-grid { grid-template-columns: 1fr; gap: 48px; margin-bottom: 64px; }
  .cta-aside { position: static; }
  .cta-meta { grid-template-columns: 1fr 1fr; gap: 24px; padding-top: 32px; }
  .cta-meta-item { padding: 24px 0 0; border-left: none; border-top: 1px solid var(--rule-soft); }
  .cta-meta-item:nth-child(1), .cta-meta-item:nth-child(2) { border-top: none; padding-top: 0; }
}
@media (max-width: 560px) {
  .cta-meta { grid-template-columns: 1fr; }
  .cta-meta-item { padding: 24px 0 0; border-left: none; border-top: 1px solid var(--rule-soft); }
  .cta-meta-item:first-child { padding-top: 0; border-top: none; }
}
