ANKIAMSHA — SWISS FINANCIAL EDITORIAL
   Aesthetic: Bloomberg terminal meets Swiss print design.
   Ink on white. Monospaced data details. No glow. No glass.
   Cobalt used as pure ink — never as neon.
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --white:        #FBF8F2;
  --off-white:    #F5F0E8;
  --paper:        #EDE7D9;
  --rule:         #D9D0C0;
  --rule-mid:     #BFB5A2;
  --rule-strong:  #9E9282;

  --cobalt:       #0643CC;
  --cobalt-dark:  #03318F;
  --cobalt-pale:  #E8EEFB;

  --ink:          #1A1612;
  --ink-2:        #2E2922;
  --ink-3:        rgba(26,22,18,.62);
  --ink-4:        rgba(26,22,18,.38);
  --ink-5:        rgba(26,22,18,.12);
  --ink-6:        rgba(26,22,18,.055);

  --serif: 'DM Serif Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --mono:  'IBM Plex Mono', 'Courier New', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  font-family: var(--sans);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 16px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,22,18,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,22,18,.045) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

body::after { display: none; }

/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 55px;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251,248,242,.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule-mid);
  overflow: hidden;
}
.site-nav::before { display: none; }

.nav-logo {
  height: 54px;
  max-height: 54px;
  width: auto;
  display: block;
  transition: opacity .2s;
  object-fit: contain;
  transform: none;
}
.nav-logo:hover { opacity: .6; }

/* hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--ink-3);
  text-decoration: none;
  text-transform: uppercase;
  transition: color .18s;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta:hover {
  background: var(--cobalt) !important;
  transform: none !important;
  opacity: 1 !important;
  box-shadow: none !important;
}

/* ════════════════════════════════════
   HERO — SCENE / STICKY STAGE
════════════════════════════════════ */
.scene {
  height: 420vh;
  padding-top: 56px;
  position: relative;
  z-index: 1;
}

.sticky-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  max-width: 1440px;
  margin: auto;
  padding: 48px 80px 52px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.sticky-stage::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 56px;
  bottom: 0;
  width: 1px;
  background: var(--rule);
  pointer-events: none;
}

.tag {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--cobalt);
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 28px;
  margin-left: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cobalt);
  flex-shrink: 0;
}

.title {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -.042em;
  font-size: clamp(72px, 8vw, 116px);
  line-height: .88;
  margin-left: 24px;
}

.through {
  font-family: var(--sans);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -.01em;
  color: var(--ink-2);
  font-size: clamp(24px, 2.6vw, 40px);
  margin-top: 20px;
  margin-left: 24px;
}

.morph-area {
  position: relative;
  margin-top: 40px;
  flex: 1;
  margin-left: 24px;
}

.morph-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.architecture-bg {
  position: absolute;
  top: -220px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}
.arch-lines-svg {
  height: 400px;
}
.architecture-bg::before {
  content: '';
  width: 2px;
  background: var(--cobalt) !important;
  align-self: stretch;
  flex-shrink: 0;
  order: 3;
}
.arch-sec-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--cobalt) !important;
  padding-top: 2px;
}
.arch-title-block {
  display: flex;
  flex-direction: column;
  line-height: .93;
}

.arch-title-line {
  font-family: var(--serif);
  font-size: clamp(35px, 5vw, 50px);
  font-weight: 400;
  color: var(--ink) !important;
  letter-spacing: -.03em;
  text-transform: uppercase;
  line-height: .95;
  text-align: left;
}

.bg-model,
.bg-architecture {
  font-family: var(--sans);
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(
    90deg,
    rgba(6,67,204,.60),
    rgba(6,67,204,.80),
    rgba(6,67,204,.60)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.morph-card {
  position: absolute;
  top: 0;
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
  padding: 42px;
  will-change: left, width, height, border-radius, opacity;
  transition:
    opacity .4s ease,
    transform .4s ease;
}

.morph-card::before { display: none; }

.morph-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--ink-6) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink-6) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.morph-cards:hover .morph-card { opacity: 0.28; }
.morph-card:hover {
  z-index: 999 !important;
  box-shadow: 0 8px 40px rgba(13,17,23,.12), 0 0 0 1px var(--cobalt);
  opacity: 1 !important;
}
.partition-columns ~ .morph-card,
.partition-columns:not([style*="opacity: 0"]) ~ .morph-card {
  pointer-events: none !important;
}

.morph-cards .morph-card:nth-child(4) { left: 0; }
.morph-cards .morph-card:nth-child(5) { left: 140px; }
.morph-cards .morph-card:nth-child(6) { left: 280px; }
.morph-cards .morph-card:nth-child(7) { left: 420px; }
.morph-cards .morph-card:nth-child(8) { left: 560px; }
.card-label {
  opacity: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--cobalt);
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative; z-index: 1;
}
.card-label::before {
  content: '';
  display: inline-block;
  width: 16px; height: 1px;
  background: var(--cobalt);
  flex-shrink: 0;
}

.morph-card h3 {
  opacity: 0;
  font-family: var(--serif);
  color: var(--ink);
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: -.02em;
  position: relative; z-index: 1;
}

.morph-card p {
  opacity: 0;
  font-size: 17px;
  line-height: 1.9;
  color: var(--ink-2);
  display: block;
  position: relative; z-index: 1;
}

@keyframes pillRiseIn {
  from { opacity: 0; transform: translateY(-40px); }
  to   { opacity: 1; transform: translateY(0);     }
}
@keyframes subtitleRiseIn {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0);     }
}
@keyframes ctasRiseIn {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0);     }
}

.pill-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 560px;
  height: 72px;
  border-radius: 100px;
  padding-left: 32px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 46px;
  z-index: 20;
  opacity: 0;
  background: transparent;
  border: 2px solid var(--cobalt);
  box-shadow: 0 8px 32px rgba(6,67,204,.10), 0 2px 8px rgba(6,67,204,.08);
}
.pill-overlay.pill-rise {
  animation: pillRiseIn .55s cubic-bezier(.34,1,.56,1) forwards;
}

.pill-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  color: #0643CC;
  white-space: nowrap;
  user-select: none;
  letter-spacing: -.035em;
}

.pill-subtitle {
  position: absolute;
  top: 132px; left: 0;
  width: 700px;
  font-size: 19px;
  line-height: 1.9;
  color: var(--ink-2);
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  background: transparent;
}
.pill-subtitle.pill-rise {
  animation: subtitleRiseIn .55s cubic-bezier(.34,1,.56,1) .08s forwards;
}

.hero-ctas {
  position: absolute;
  top: 280px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 20;
  pointer-events: all;
  opacity: 0;
}
.hero-ctas.pill-rise {
  animation: ctasRiseIn .55s cubic-bezier(.34,1,.56,1) .15s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background-color: #0643CC;
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  transition: background-color .2s, transform .15s;
}
.btn-primary:hover {
  background-color: #03318F;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0643CC;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: gap .2s, color .2s;
}
.btn-ghost:hover {
  gap: 14px;
  color: #03318F;
}
.btn-ghost-arrow {
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  transition: transform .2s;
}
.btn-ghost:hover .btn-ghost-arrow {
  transform: translateX(3px);
}

.thinking-chain {
  position: absolute;
  top: 122px; left: 160px;
  display: none;
  align-items: flex-end;
  gap: 7px;
  pointer-events: none;
  opacity: 0;
  z-index: 5;
}
.thinking-chain span {
  display: block;
  background: var(--cobalt);
  border-radius: 50%;
  box-shadow: none;
}
.thinking-chain span:nth-child(1) { width: 10px; height: 10px; }
.thinking-chain span:nth-child(2) { width: 14px; height: 14px; }
.thinking-chain span:nth-child(3) { width: 20px; height: 20px; }

/* ════════════════════════════════════
   COMBO SECTION
════════════════════════════════════ */
.combo-section {
  height: 350vh;
  position: relative;
  margin-top: 5vh;
  z-index: 1;
  background: var(--white);
  border-top: 1px solid var(--rule);
  margin-bottom: 120px !important;
}

.combo-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: visible;
}

.combo-phase {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}

.combo-phase.co-visible {
  opacity: 1;
  pointer-events: all;
}

.combo-orbit {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: center;
  height: 100%;
  padding: 72px 72px 72px 80px;
}

.co-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  height: 100%;
  padding-right: 48px;
  border-right: 1px solid var(--rule);
}

.co-title {
  font-family: var(--serif);
  color: var(--ink);
  font-size: clamp(32px, 3vw, 46px);
  line-height: .95;
  font-weight: 400;
  letter-spacing: -.02em;
}
.co-blue{
  color: #0643CC !important;
  font-style: italic;
  font-size: 1.15em;
  letter-spacing: -.03em;
  font-weight: 300;
}

.co-intro {
  font-size: 17px;
  line-height: 1.9;
  color: var(--ink-2);
  border-top: 1px solid var(--rule);
  padding-top: 22px;
  max-width: 340px;
}

.co-orbit-stage {
  position: relative;
  width: 520px;
  height: 520px;
  margin: 0 auto;
  transform: translateY(140px);
}

.co-orbit-stage::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 440px; height: 440px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  pointer-events: none;
}

.co-orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--cobalt);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow:
    0 20px 50px rgba(6,67,204,.18),
    0 0 0 12px rgba(6,67,204,.06);
  z-index: 10;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
}
.co-orbit-center svg{
  width: 28px;
  height: 28px;
  stroke: white;
  margin-bottom: 10px;
}

.co-orbit-step {
  position: absolute;
  top: 50%; left: 50%;
  width: 80px; height: 80px;
}

.co-orbit-node {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--rule);
  box-shadow: none;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  position: relative; z-index: 5;
  transition: background .22s, border-color .22s, transform .22s;
  cursor: pointer;
}
.co-orbit-node svg {
  width: 16px; height: 16px;
  stroke: var(--ink-3);
  transition: stroke .22s;
}

.co-orbit-step.co-active .co-orbit-node {
  background: var(--cobalt);
  border-color: var(--cobalt);
  transform: scale(1.12);
}
.co-orbit-step.co-active .co-orbit-node svg {
  stroke: white;
}

.co-orbit-step.co-active .co-orbit-num {
  color: #0643CC !important;
}

.co-orbit-num {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #0643CC !important;
  text-transform: uppercase;
  transition: color .22s;
}

.co-orbit-lbl {
  position: absolute;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow:
    0 10px 30px rgba(13,17,23,.06),
    0 2px 8px rgba(13,17,23,.04);
  border: 1px solid rgba(0,0,0,.08);
  width: 240px;
  pointer-events: none;
  left: 96px;
  top: 50%;
  transform: translateY(-50%);
}

.co-orbit-step.co-lbl-left .co-orbit-lbl {
  left: auto;
  right: 96px;
  top: 50%;
  transform: translateY(-50%);
}

.co-orbit-step.co-lbl-above .co-orbit-lbl {
  left: 50%;
  bottom: 96px;
  top: auto;
  transform: translateX(-50%);
  text-align: center;
  width: 220px;
}

.co-orbit-step.co-lbl-below .co-orbit-lbl {
  left: 50%;
  top: 96px;
  transform: translateX(-50%);
  text-align: center;
  width: 220px;
}

.co-orbit-lbl h3 {
  font-family: var(--serif);
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: -.02em;
}

.co-orbit-lbl p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
}

/* ── PHASE 2: GLOBE + INDICATOR COLUMNS ── */
.combo-globe { position: absolute; inset: 0; background: var(--white); }

.co-ind-rect {
  position: fixed !important;
  bottom: 0 !important;
  height: 82vh !important;
  width: 18% !important;
  border: 1px solid rgba(6,67,204,0.15) !important;
  overflow: hidden !important;
  background: rgba(255,255,255,0.4) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  z-index: 50 !important;
}
.co-ind-left  { left: 2% !important; }
.co-ind-right { right: 2% !important; }
.co-ind-fill {
  position: absolute !important;
  bottom: 0 !important; left: 0 !important; right: 0 !important;
  height: 0% !important;
  background: linear-gradient(to top, rgba(6,67,204,0.55), rgba(6,67,204,0.15)) !important;
  backdrop-filter: blur(8px) !important;
  transition: height 0.1s linear !important;
}
.co-ind-content {
  position: absolute !important;
  bottom: 0 !important;
  width: 100% !important;
  z-index: 2 !important;
  text-align: center !important;
  padding: 32px 20px !important;
}
.co-ind-content h3 {
  font-family: var(--serif);
  font-size: 52px;
  color: var(--ink);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.03em;
}
.co-ind-content p {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 14px;
  line-height: 1.55;
  max-width: 100%;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-align: center;
}
.co-ind-rect.filled .co-ind-content h3 { color: white; }
.co-ind-rect.filled .co-ind-content p  { color: rgba(255,255,255,.65); }

.co-badge { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.co-sec-num {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--cobalt);
  text-transform: uppercase;
}
.co-sec-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  color: var(--ink-4);
  font-weight: 500;
  text-transform: uppercase;
}

.co-globe-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  display: flex; flex-direction: column;
  align-items: center;
  z-index: 5; text-align: center;
}

.co-globe-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  color: var(--ink);
  line-height: .92;
  margin-bottom: 14px;
  font-weight: 400;
  letter-spacing: -.025em;
  opacity: 0; transform: translateY(10px);
  transition: opacity .6s, transform .6s;
}
.combo-globe.co-visible .co-globe-title { opacity: 1; transform: translateY(0); }

#comboCanvas { width: 360px; height: 360px; display: block; }

.co-globe-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 360px;
  margin-top: 16px;
  opacity: 0;
  text-align: center;
  transition: opacity .6s .3s;
}
.combo-globe.co-visible .co-globe-sub { opacity: 1; }

/* ── PHASE 3: METHODOLOGY ── */
.combo-method {
  --white: #FFFFFF;
  --off-white: #F4F4F5;
  --paper: #F4F4F5;
  --rule: #E4E4E7;
  --rule-mid: #D4D4D8;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 60px 80px 24px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}

.co-method-header {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.co-method-header .co-sec-num { margin-top: 10px; flex-shrink: 0; }

.co-method-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--ink);
  line-height: .95;
  flex-shrink: 0;
  font-weight: 300;
  letter-spacing: -.04em;
}
.co-method-intro {
  font-size: 16px;
  font-family: Georgia, serif;
  line-height: 1.75;
  color: rgba(26,22,18,.65);
  max-width: 340px;
  border-left: 1px solid #D4D4D8;
  padding-left: 20px;
  align-self: flex-end;
}

.method-toggle {
  display: flex;
  gap: 0;
  margin-bottom: 10px;
  border: 1px solid #E2E2E2;
  padding: 4px;
  width: fit-content;
  background: #FFFFFF;
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
}

.method-tab {
  position: relative;
  padding: 10px 32px;
  border-radius: 2px;
  border: none;
  background: transparent !important;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(26,22,18,.45);
  cursor: pointer;
  transition: color .22s;
  z-index: 1;
  white-space: nowrap;
}

.method-tab.active {
  color: #FBF8F2 !important;
}

.method-toggle::before {
  content: '';
  position: absolute;
  top: 4px; bottom: 4px; left: 4px;
  width: calc(50% - 4px);
  background: #3D6ACC;
  border-radius: 100px;
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.method-toggle.tab-right::before {
  transform: translateX(100%);
}

.method-tab:hover:not(.active) {
  color: #1A1612;
}

.pipeline-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  border-top: 1px solid #E4E4E7;
  padding-top: 10px;
  flex-shrink: 0;
}

.pipeline-svg {
  width: 100%;
  height: auto;
  overflow: visible;
  cursor: default;
  max-height: 280px;
}

.pipe-node {
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
  transform-box: fill-box;
}
.pipe-node:hover,
.pipe-node.active {
  transform: scale(1.12);
}
.pipe-node .node-ring {
  fill: #FFFFFF;
  stroke: #E4E4E7;
  stroke-width: 1.5;
  transition: stroke .22s, fill .22s;
}
.pipe-node:hover .node-ring,
.pipe-node.active .node-ring {
  fill: #3D6ACC;
  stroke: #3D6ACC;
}
.pipe-node .node-label-top {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .13em;
  fill: rgba(26,22,18,.38);
  text-transform: uppercase;
  text-anchor: middle;
  transition: fill .22s;
}
.pipe-node:hover .node-label-top,
.pipe-node.active .node-label-top { fill: #3D6ACC; }

.pipe-node .node-label-main {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 15px;
  fill: #0D0B09;
  text-anchor: middle;
  dominant-baseline: central;
  transition: fill .22s;
  letter-spacing: -.02em;
}
.pipe-node:hover .node-label-main,
.pipe-node.active .node-label-main { fill: #ffffff; }

.pipe-conn {
  fill: none;
  stroke: #D4D4D8;
  stroke-width: 1.5;
  stroke-dasharray: 6 4;
}
.pipe-flow {
  fill: none;
  stroke: #3D6ACC;
  stroke-width: 1.5;
  stroke-dasharray: 6 4;
  stroke-dashoffset: 0;
  opacity: 0.55;
  animation: flowDash 1.8s linear infinite;
}
@keyframes flowDash {
  to { stroke-dashoffset: -40; }
}

.pipe-conn.conn-active { stroke: rgba(61,106,204,.35); }
.pipe-flow.conn-active { opacity: 1; }

.pipeline-detail {
  min-height: 56px;
  padding: 10px 0 4px;
  border-top: 1px solid #E4E4E7;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: opacity .28s;
  flex-shrink: 0;
}
.pd-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .16em;
  color: #3D6ACC;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pd-tag::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: #3D6ACC;
  flex-shrink: 0;
}
.pd-title {
  font-family: Georgia, serif;
  font-size: clamp(18px, 1.8vw, 26px);
  color: #0D0B09;
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.1;
}
.pd-desc {
  font-size: 20px;
  line-height: 1.65;
  color: rgba(13,11,9,.72);
  font-family: Georgia, serif;
  max-width: 560px;
}

.cfm-callout {
  margin-top: 8px;
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--cobalt);
  background: var(--cobalt-pale);
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}
.cfm-label {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--cobalt);
  text-transform: uppercase;
}
.cfm-formula {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  line-height: 1.6;
}
.cfm-components {
  color: var(--cobalt-dark);
  font-size: 10.5px;
}

.method-cards { display: none; }
.method-card, .mc-line, .mc-num, .mc-name, .mc-desc { display: none; }

/* ════════════════════════════════════
   MAPE SECTION
════════════════════════════════════ */
.mape3-section {
  position: relative;
  padding: 100px 80px 90px;
  min-height: 520px;
  overflow: hidden;
  background: #14100C;
  border-top: none;
  z-index: 1;
}

.mape3-section::before { display: none; }

.mape3-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .7s ease;
  filter: saturate(0) brightness(.18);
  z-index: 0;
}
.mape3-bg.visible { opacity: 1; }

.mape3-letters {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 8px;
}

.mape3-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.mape3-letter {
  font-family: var(--serif);
  font-size: clamp(100px, 12vw, 180px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.12);
  transition:
    -webkit-text-stroke .32s ease,
    transform .32s ease;
  user-select: none;
  font-weight: 400;
}

.mape3-col:hover .mape3-letter,
.mape3-col.active .mape3-letter {
  -webkit-text-stroke: 1px rgba(255,255,255,.85);
  transform: translateY(-8px);
  text-shadow: none;
}

.mape3-label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .28em;
  color: rgba(255,255,255,.30);
  margin-top: 14px;
  transition: color .32s, opacity .32s;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 500;
  opacity: .35;
}
.mape3-col:hover .mape3-label,
.mape3-col.active .mape3-label { color: rgba(255,255,255,.70); opacity: 1; }

.mape3-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  margin-top: 12px;
  opacity: .25;
  transition: background .32s, transform .32s, opacity .32s;
}
.mape3-col:hover .mape3-dot,
.mape3-col.active .mape3-dot {
  background: var(--cobalt);
  transform: scale(2.2);
  box-shadow: none;
  opacity: 1;
}

.mape3-col:not(.active) .mape3-letter {
  -webkit-text-stroke: 1px rgba(255,255,255,.22);
}
.mape3-col:not(.active):hover .mape3-letter {
  -webkit-text-stroke: 1px rgba(255,255,255,.85);
}

.mape3-letters::after {
  content: 'hover each letter';
  display: block;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  white-space: nowrap;
  pointer-events: none;
}

.mape3-content {
  position: relative; z-index: 2;
  max-width: 1280px;
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 6px 72px;
  opacity: 0; transform: translateY(16px);
  transition: opacity .48s, transform .48s;
  pointer-events: none;
}
.mape3-content.visible { opacity: 1; transform: translateY(0); pointer-events: all; }

.mape3-tag {
  grid-column: 1; grid-row: 1;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .20em;
  color: rgba(255,255,255,.45);
  align-self: end;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.mape3-title {
  grid-column: 1; grid-row: 2;
  font-family: var(--serif);
  font-size: clamp(52px, 5.5vw, 80px);
  line-height: .90;
  color: #FFFFFF;
  font-weight: 400;
  letter-spacing: -.035em;
}

.mape3-desc {
  grid-column: 2; grid-row: 1 / 3;
  font-size: 18px;
  line-height: 1.80;
  color: rgba(255,255,255,.75);
  align-self: end;
  border-left: 1px solid rgba(255,255,255,.18);
  padding-left: 40px;
  max-width: 480px;
}

.mape3-stats {
  grid-column: 1 / 3;
  display: flex;
  gap: 64px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.mape3-stat { display: flex; flex-direction: column; gap: 8px; }

.mape3-stat strong {
  font-family: var(--serif);
  font-size: 52px;
  color: #FFFFFF;
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1;
}

.mape3-stat span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  font-weight: 500;
}

/* ════════════════════════════════════
   LEGACY / COMPAT CLASSES
════════════════════════════════════ */
.morph-scene  { height: 400vh; position: relative; }
.morph-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.morph-phase  {
  position: absolute; inset: 0; padding: 80px;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .6s ease;
}
.morph-phase.visible { opacity: 1; pointer-events: all; }

.phase-split { display: flex; align-items: center; gap: 60px; margin-top: 40px; }
.phase-left  { flex: 1; }
.phase-right { flex: 1; display: flex; align-items: center; justify-content: center; }
#morphCanvas { width: 500px; height: 500px; }

.indicators-title {
  font-family: var(--serif);
  font-size: 64px; line-height: .90;
  color: var(--ink);
  margin: 24px 0; font-weight: 400; letter-spacing: -.03em;
}
.indicators-subtitle {
  font-size: 13px; line-height: 1.84;
  color: var(--ink-3); max-width: 400px; margin-bottom: 40px;
}

.indicators-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 440px; }

.indicator-card {
  position: relative; overflow: hidden; height: 180px;
  border-radius: 0;
  background: var(--off-white);
  border: 1px solid var(--rule);
  box-shadow: none;
  transition: transform .4s;
}
.indicator-card:hover { transform: translateY(-3px); box-shadow: none; }

.indicator-fill {
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 0%;
  background: var(--cobalt);
  transition: height 1.2s cubic-bezier(.4,0,.2,1);
  border-radius: 0;
}

.indicator-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; transition: .5s;
}
.indicator-content h3 {
  font-family: var(--serif); font-size: 52px;
  color: var(--ink); transition: color .5s, transform .5s; font-weight: 400;
}
.indicator-content p {
  font-size: 12px; color: var(--ink-3); margin-top: 8px;
  max-width: 140px; line-height: 1.4; transition: color .5s;
}
.indicator-card.active .indicator-fill { height: 100%; }
.indicator-card.active .indicator-content h3 { color: white; transform: scale(1.05); }
.indicator-card.active .indicator-content p  { color: rgba(255,255,255,.65); }

.forecast-process { max-width: 1200px; margin: 0 auto; padding: 120px 80px 180px; }
.forecast-title-wrap {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-top: 40px; margin-bottom: 80px;
}
.forecast-big-title {
  font-family: var(--serif); color: var(--ink); font-size: 68px;
  line-height: .90; max-width: 600px; font-weight: 400; letter-spacing: -.03em;
}
.forecast-intro {
  max-width: 400px; line-height: 1.84; color: var(--ink-3);
  border-left: 1px solid var(--rule); padding-left: 24px;
}
.forecast-orbit-wrap {
  position: relative; width: 780px; height: 780px; margin: 80px auto 0;
}
.orbit-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid var(--rule); display: none;
}
.orbit-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 148px; height: 148px; border-radius: 50%;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; color: white;
  font-family: var(--serif); font-size: 14px; line-height: 1.3; gap: 8px;
  box-shadow: none; z-index: 10; font-weight: 400;
}
.orbit-center svg { width: 24px; height: 24px; stroke: white; }
.orbit-step { position: absolute; top: 50%; left: 50%; width: 88px; height: 88px; will-change: transform; }
.orbit-node {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--rule);
  box-shadow: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0; gap: 4px; position: relative; z-index: 5;
  transition: background .22s, border-color .22s, transform .22s; cursor: pointer;
}
.orbit-node:hover, .orbit-step.active .orbit-node {
  background: var(--cobalt); transform: scale(1.08); border-color: transparent;
}
.orbit-node:hover svg, .orbit-step.active .orbit-node svg { stroke: white; }
.orbit-node:hover .orbit-number, .orbit-step.active .orbit-node .orbit-number { color: rgba(255,255,255,.45); }
.orbit-node svg { width: 20px; height: 20px; stroke: var(--ink-3); transition: stroke .22s; }
.orbit-number {
  font-family: var(--mono);
  font-size: 9px; font-weight: 500; letter-spacing: .12em;
  color: var(--cobalt); transition: color .22s;
}
.orbit-label {
  position: absolute; display: flex; flex-direction: column; gap: 6px;
  width: 280px; pointer-events: none;
  background: var(--white);
  border-radius: 2px; padding: 22px 28px;
  box-shadow: 0 4px 20px rgba(13,17,23,.08); border: 1px solid var(--rule);
}
.orbit-step .orbit-label { left: 104px; top: 50%; transform: translateY(-50%); text-align: left; }
.orbit-step.label-left .orbit-label { left: auto; right: 104px; top: 50%; transform: translateY(-50%); }
.orbit-step.label-above .orbit-label { left: 50%; top: auto; bottom: 104px; transform: translateX(-50%); text-align: center; }
.orbit-step.label-below .orbit-label { left: 50%; top: 104px; transform: translateX(-50%); text-align: center; }
.orbit-label h3 { font-family: var(--serif); color: var(--ink); font-size: 14px; line-height: 1.2; font-weight: 400; }
.orbit-label p  { font-size: 11.5px; line-height: 1.6; color: var(--ink-3); }

.section-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.section-number { font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .18em; color: var(--cobalt); text-transform: uppercase; }
.section-header h2 { font-family: var(--mono); font-size: 9px; letter-spacing: .18em; color: var(--ink); font-weight: 500; text-transform: uppercase; }
.step-card h3 { font-family: var(--serif); color: var(--ink); margin-bottom: 16px; font-weight: 400; }
.step-card p  { line-height: 1.78; }
.process-step { opacity: 0; transform: translateY(50px); transition: .8s ease; }
.process-step.show { opacity: 1; transform: translateY(0); }
.step-card::after { content: ""; position: absolute; top: 0; right: 0; width: 2px; height: 100%; background: var(--cobalt); }

/* ── 1024px: small laptop ── */
@media (max-width: 1024px) {
  .site-nav { padding: 0 32px; }
  .nav-links { gap: 24px; }
  .sticky-stage { padding: 40px 48px 40px; }
  .sticky-stage::before { left: 48px; }
  .title { font-size: clamp(56px, 7vw, 90px); }
  .through { font-size: clamp(20px, 2.4vw, 32px); }
  .morph-area { margin-left: 16px; }
  .morph-card h3 { font-size: 30px; }
  .morph-card p  { font-size: 15px; }
  .pill-text { font-size: 40px; }
  .pill-subtitle { font-size: 16px; width: 560px; }
  .bg-model, .bg-architecture { font-size: 56px; }
  .combo-orbit { grid-template-columns: 280px 1fr; padding: 48px; }
  .co-orbit-stage { width: 420px; height: 420px; transform: translateY(80px); }
  .co-orbit-stage::before { width: 360px; height: 360px; }
  .co-orbit-center { width: 140px; height: 140px; font-size: 16px; }
  .co-orbit-lbl { width: 200px; }
  .co-orbit-lbl h3 { font-size: 18px; }
  .co-orbit-lbl p  { font-size: 13px; }
  .co-ind-rect { width: 14% !important; }
  .combo-method { padding: 40px 48px 20px; }
  .mc-name { font-size: 28px; }
  .mc-desc { font-size: 17px; }
  .co-method-intro { font-size: 16px; }
  .mape3-section { padding: 80px 48px 70px; }
  .mape3-title { font-size: clamp(40px, 4.5vw, 64px); }
  .mape3-desc  { font-size: 16px; padding-left: 28px; }
  .mape3-stat strong { font-size: 40px; }
  .mape3-stats { gap: 40px; }
}

/* ════════════════════════════════════
   PARTITION COLUMNS
════════════════════════════════════ */
.partition-columns {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 380px;
  display: flex;
  flex-direction: row;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.arch-lines-svg {
  position: absolute;
  top: -110px;
  left: 0;
  width: 100%;
  height: 140px;
  pointer-events: none;
  z-index: 3;
}

.partition-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(6,67,204,.18);
  padding: 32px 28px 24px;
  min-width: 0;
  position: relative;
  background: transparent;
  border-top: 3px solid transparent;
  transition: border-top-color .28s cubic-bezier(.4,0,.2,1), background .22s;
}

.partition-col:hover {
  border-top-color: #0643CC !important;
  background: #F5F0E8 !important;
}

.partition-col:last-child {
  border-right: none;
}

.pc-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}
.pc-num {
  font-family: var(--mono);
  font-size: 18px;
  color: #0643CC;
}

.pc-markers {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pc-dash {
  width: 24px;
  height: 2px;
  background: #0643CC;
}

.pc-sq {
  width: 8px;
  height: 8px;
  background: #0643CC;
}

.partition-col h2,
.partition-col h2.pc-acronym,
.pc-acronym {
  font-family: var(--serif);
  font-size: clamp(28px,2.5vw,44px);
  line-height: 1;
  margin-bottom: 18px;
}

.pc-fullname {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  line-height: 1.9;
  margin-bottom: 26px;
}

.pc-desc {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  flex: 1;
  font-weight: 400;
}

.pc-plus {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 18px;
  font-weight: 400;
  color: #0643CC;
  margin-top: 20px;
  display: block;
  line-height: 1;
}
.partition-col::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 50%;
  width: 1px;
  height: 140px;
  background: rgba(6,67,204,.25);
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.site-footer{
  background:#FBF8F2;
  border-top:1px solid rgba(6,67,204,.15);
  padding:80px 60px 60px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:100px;
  max-width:1400px;
  margin:0 auto;
}

.footer-col h4{
  font-family:var(--mono);
  font-size:12px;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#0643CC;
  margin-bottom:28px;
}

.footer-col p{
  margin:0;
  font-size:15px;
  line-height:1.8;
  color:var(--ink);
}

.footer-col a{
  display:block;
  color:var(--ink);
  text-decoration:none;
  font-size:15px;
  line-height:2;
}

.footer-col a:hover{
  color:#0643CC;
}

.footer-copy{
  margin-top:60px;
  font-size:13px;
  color:var(--ink-3);
}

.footer-credit-bar {
  background: #0643CC;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-family: var(--sans);
  text-align: center;
  padding: 14px 24px;
  letter-spacing: 0.01em;
}

.footer-credit-bar strong {
  color: #fff;
  font-weight: 700;
}

.footer-credit-bar a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  transition: border-color 0.2s, color 0.2s;
}

.footer-credit-bar a:hover {
  color: #c8d8ff;
  border-bottom-color: #c8d8ff;
}

/* ════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════ */
.services-section {
  position: relative;
  background: var(--white);
  border-top: 1px solid var(--rule);
  padding: 0px 80px 0 !important;
  overflow: hidden;
  z-index: 1;
}

section.services-section .svc-header-right {
  align-self: flex-end !important;
}

.svc-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: -100px !important;
  padding-bottom: 0 !important;
}

.svc-header-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  align-self: flex-end !important;
  padding-bottom: 6px !important;
}

.svc-tag {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--cobalt);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
}
.svc-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cobalt);
  flex-shrink: 0;
}

.svc-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px) !important;
  line-height: .92;
  font-weight: 400;
  letter-spacing: -.035em;
  color: var(--ink);
}
.svc-title-italic {
  font-style: normal;
}

.svc-intro {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-3);
  max-width: 340px;
  border-left: 1px solid var(--rule);
  padding-left: 24px;
  text-align: right;
}

.svc-swipe-hint-top {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  color: var(--ink-4);
  text-transform: uppercase;
}

.svc-lines-wrap {
  position: relative;
  width: 100%;
  pointer-events: none;
  z-index: 2;
  margin-bottom: -1px;
}
.svc-lines-wrap--bot {
  margin-bottom: 0;
  margin-top: -1px;
}
.svc-lines-svg {
  display: block;
  width: 100%;
  height: 140px;
  overflow: visible;
}

.svc-carousel-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: visible;
  gap: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 3;
  margin-left: -80px;
  margin-right: -80px;
  padding-left: 80px;
  padding-right: 0;
  border-top: 1.5px solid rgba(6,67,204,.50);
  border-bottom: 1.5px solid rgba(6,67,204,.50);
}
.svc-carousel-track::-webkit-scrollbar { display: none; }

.svc-col {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(6,67,204,.18);
  scroll-snap-align: start;
  position: relative;
  background: var(--white);
  min-width: 0;
  min-height: 540px;
}
.svc-col:last-child {
  border-right: 1px solid rgba(6,67,204,.18);
}

.svc-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 36px;
  background: rgba(6,67,204,.22);
  z-index: 1;
  pointer-events: none;
}

.svc-card-img-wrap {
  overflow: hidden;
  flex-shrink: 0;
  height: 150px !important;
  position: relative;
}

.svc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0) brightness(0.75);
  mix-blend-mode: multiply;
  transition: filter .45s ease, transform .5s ease;
}

.svc-card-img-wrap {
  background: var(--cobalt-pale);
}

.svc-col:hover .svc-card-img {
  filter: saturate(0.3) brightness(0.85);
  transform: scale(1.05);
}

.svc-card-body {
  padding: 28px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid rgba(6,67,204,.10);
}

.svc-col .pc-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.svc-col .pc-num {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--cobalt);
}
.svc-col .pc-markers {
  display: flex;
  align-items: center;
  gap: 5px;
}
.svc-col .pc-dash {
  width: 22px;
  height: 2px;
  background: var(--cobalt);
}
.svc-col .pc-sq {
  width: 7px;
  height: 7px;
  background: var(--cobalt);
}
.svc-col .pc-acronym {
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
  margin-bottom: 14px;
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--ink);
}

.svc-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 14px;
}
.svc-tag-pill {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--cobalt);
  text-transform: uppercase;
  opacity: .80;
  line-height: 1.9;
}
.svc-tag-pill + .svc-tag-pill::before {
  content: ' · ';
  opacity: .45;
  margin: 0 4px;
}

.svc-card-divider {
  width: 100%;
  height: 1px;
  background: var(--rule);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.svc-col .pc-desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.82;
  color: var(--ink-3);
  flex: 1;
  margin-bottom: 24px;
}

.svc-card-link {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cobalt);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s, opacity .2s;
  margin-top: auto;
}
.svc-card-link:hover {
  gap: 14px;
  opacity: .75;
}

.svc-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px 0 0;
}
.svc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(6,67,204,.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .25s, transform .25s;
  flex-shrink: 0;
}
.svc-dot.active {
  background: var(--cobalt);
  transform: scale(1.4);
}
.svc-dot:hover:not(.active) {
  background: rgba(6,67,204,.38);
}

.svc-cta-strip {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 44px 0 72px;
  border-top: 1px solid var(--rule);
  margin-top: 48px;
}

@media (max-width: 1280px) {
  .svc-col { flex: 0 0 340px; }
}

@media (max-width: 1024px) {
  .services-section { padding: 64px 48px 0; }
  .svc-title { font-size: clamp(36px, 4.5vw, 56px); }
  .svc-intro { font-size: 15px; max-width: 280px; }
  .svc-carousel-track {
    margin-left: -48px;
    margin-right: -48px;
    padding-left: 48px;
    padding-right: 0;
  }
  .svc-col { flex: 0 0 300px; }
  .svc-card-img-wrap { height: 170px; }
}


.svc-scroll-arrow {
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #0643CC;
  opacity: 0.7;
  user-select: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.svc-scroll-arrow:hover {
  opacity: 1;
}
.svc-scroll-arrow:active {
  opacity: 0.5;
}
.svc-scroll-arrow svg {
  animation: svcArrowPulse 1.3s cubic-bezier(.4,0,.6,1) infinite;
  flex-shrink: 0;
}
@keyframes svcArrowPulse {
  0%, 100% { transform: translateX(0);    opacity: 0.45; }
  50%       { transform: translateX(10px); opacity: 1;    }
}

.services-section {
  margin-top: 100px !important;
  margin-bottom: 200px !important;
}
#services {
  scroll-margin-top: 70px;
}

.footer-addr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-addr p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
}

.back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #0643CC;
  border: 1.5px solid rgba(6, 67, 204, 0.35);
  box-shadow: 0 4px 24px rgba(6, 67, 204, 0.25), 0 1px 8px rgba(6, 67, 204, 0.15);
  font-size: 26px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, background .2s, box-shadow .2s;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.back-to-top:hover {
  background: rgba(6, 67, 204, 0.12);
  box-shadow: 0 6px 32px rgba(6, 67, 204, 0.35), 0 2px 12px rgba(6, 67, 204, 0.20);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ════════════════════════════════════
   MOBILE — @media (max-width: 768px)
   All mobile overrides in one place
════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV: hamburger left, logo right ── */
  .site-nav {
    padding: 0 16px !important;
    overflow: visible !important;
  }

  /* Show hamburger on mobile */
  .nav-hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    flex-shrink: 0;
    order: 1;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #0643CC;
    border-radius: 1px;
    transition: transform 0.2s, opacity 0.2s;
  }

  /* Logo moves to the right */
  .nav-logo {
    order: 3 !important;
    height: 38px !important;
    max-height: 38px !important;
    margin-left: auto !important;
  }

  /* Links hidden — toggled open by JS */
  .nav-links {
    display: none !important;
    order: 2;
  }

  /* Dropdown menu when open */
  .nav-links.nav-open {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 55px !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(251,248,242,0.98) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border-bottom: 1px solid var(--rule-mid) !important;
    padding: 16px 20px 24px !important;
    gap: 0 !important;
    z-index: 99 !important;
    list-style: none !important;
  }
  .nav-links.nav-open li {
    border-bottom: 1px solid var(--rule) !important;
  }
  .nav-links.nav-open li:last-child {
    border-bottom: none !important;
  }
  .nav-links.nav-open a {
    display: block !important;
    padding: 14px 0 !important;
    font-size: 13px !important;
    letter-spacing: .08em !important;
  }

  /* ── BODY GRID ── */
  body::before { background-size: 40px 40px !important; opacity: 0.5 !important; }

  /* ── HERO ── */
  .scene {
    height: auto !important;
    padding-top: 56px !important;
  }

  .sticky-stage {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 28px 20px 40px !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .sticky-stage::before { display: none !important; }

  .tag {
    margin: 0 !important;
    font-size: 8px !important;
  }

  .title {
    margin: 0 !important;
    font-size: clamp(42px, 11vw, 68px) !important;
    line-height: 0.92 !important;
  }

  .through {
    margin: 0 !important;
    font-size: clamp(20px, 5vw, 28px) !important;
  }

  .architecture-bg,
  .thinking-chain {
    display: none !important;
  }

  .morph-area {
    position: relative !important;
    margin: 0 !important;
    flex: none !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .morph-cards {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .pill-overlay,
  .pill-overlay.pill-rise {
    position: relative !important;
    top: auto !important; left: auto !important;
    width: 100% !important;
    height: auto !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    pointer-events: auto !important;
    display: flex !important;
    align-items: center !important;
    margin-bottom: 28px !important;
  }

  .pill-text {
    font-size: clamp(28px, 8vw, 40px) !important;
    white-space: normal !important;
    line-height: 1.1 !important;
  }

  .partition-columns {
    position: relative !important;
    height: auto !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    gap: 12px !important;
    padding: 4px 0 16px 0 !important;
    margin-top: 48px !important;
    margin-bottom: 20px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .partition-columns::-webkit-scrollbar { display: none !important; }

  .arch-lines-svg { display: none !important; }

  .partition-col {
    flex: 0 0 72vw !important;
    max-width: 280px !important;
    min-width: 220px !important;
    border-right: none !important;
    border: 1px solid rgba(6,67,204,0.18) !important;
    border-radius: 10px !important;
    padding: 20px 18px !important;
    background: var(--off-white) !important;
    scroll-snap-align: start !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .partition-col::before { display: none !important; }
  .partition-col:last-child { border-right: none !important; }

  .pc-num { font-size: 13px !important; }

  .partition-col h2,
  .pc-acronym {
    font-size: clamp(22px, 6vw, 32px) !important;
    margin-bottom: 6px !important;
  }

  .pc-fullname {
    font-size: 9px !important;
    margin-bottom: 8px !important;
  }

  .pc-desc {
    font-size: 13px !important;
    line-height: 1.65 !important;
  }

  .partition-columns::after {
    content: '← swipe →' !important;
    display: block !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-family: var(--mono) !important;
    font-size: 8px !important;
    letter-spacing: .14em !important;
    color: var(--ink-4) !important;
    white-space: nowrap !important;
    pointer-events: none !important;
  }

  .morph-card { display: none !important; }

  .pill-subtitle,
  .pill-subtitle.pill-rise {
    position: relative !important;
    top: auto !important; left: auto !important;
    width: 100% !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    pointer-events: auto !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: var(--ink-2) !important;
    margin-top: 4px !important;
    display: block !important;
     margin: 0 0 18px !important;
  }

  .hero-ctas,
  .hero-ctas.pill-rise {
    position: relative !important;
    top: auto !important; left: auto !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    pointer-events: auto !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    margin-top: 28px !important;
  }

  .btn-primary { min-height: 44px !important; padding: 14px 24px !important; }
  .btn-ghost   { min-height: 44px !important; display: inline-flex !important; align-items: center !important; }

  /* ── COMBO SECTION ── */
  .combo-section { height: auto !important; min-height: 0 !important; }

  .combo-sticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    overflow: visible !important;
  }

  .combo-phase {
    position: relative !important;
    inset: auto !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: none !important;
  }

  .combo-orbit {
    grid-template-columns: 1fr !important;
    padding: 32px 20px !important;
    gap: 24px !important;
    align-items: start !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .co-header {
    border-right: none !important;
    border-bottom: 1px solid var(--rule) !important;
    padding-right: 0 !important;
    padding-bottom: 20px !important;
    width: 100% !important;
  }

  .co-title { font-size: clamp(28px, 7vw, 40px) !important; }

  .co-orbit-stage {
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    margin: 0 !important;
  }

  .co-orbit-stage::before { display: none !important; }
  .co-orbit-center { display: none !important; }

  .co-orbit-step {
    position: relative !important;
    top: auto !important; left: auto !important;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid var(--rule) !important;
  }

  .co-orbit-step:last-child { border-bottom: none !important; }

  .co-orbit-node {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
  }

  .co-orbit-node svg { width: 14px !important; height: 14px !important; }
  .co-orbit-num { font-size: 10px !important; }

  .co-orbit-lbl,
  .co-orbit-step.co-lbl-left .co-orbit-lbl,
  .co-orbit-step.co-lbl-above .co-orbit-lbl,
  .co-orbit-step.co-lbl-below .co-orbit-lbl {
    position: relative !important;
    left: auto !important; right: auto !important;
    top: auto !important; bottom: auto !important;
    transform: none !important;
    width: auto !important;
    flex: 1 !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    text-align: left !important;
  }

  .co-orbit-lbl h3 { font-size: 17px !important; margin-bottom: 6px !important; }
  .co-orbit-lbl p  { font-size: 13px !important; line-height: 1.6 !important; }

  /* ── GLOBE + INDICATORS ── */
  .combo-globe {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 32px 20px !important;
    gap: 0 !important;
    background: var(--white) !important;
  }

  .co-ind-rect {
    position: relative !important;
    bottom: auto !important;
    width: 88% !important;
    height: 44px !important;
    border-radius: 6px !important;
    background: var(--cobalt) !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 20px !important;
    overflow: hidden !important;
  }

  .co-ind-left  { left: auto !important; order: 1 !important; margin-bottom: 8px !important; }
  .co-ind-right { right: auto !important; order: 3 !important; margin-top: 8px !important; }

  .co-ind-fill {
    position: absolute !important;
    inset: 0 !important;
    height: 100% !important;
    background: var(--cobalt) !important;
    transition: none !important;
  }

  .co-ind-content {
    position: relative !important;
    bottom: auto !important;
    padding: 0 !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    justify-content: space-between !important;
  }

  .co-ind-content h3 {
    font-size: 22px !important;
    color: white !important;
    line-height: 1 !important;
    font-family: var(--serif) !important;
  }

  .co-ind-content p {
    font-size: 10px !important;
    color: rgba(255,255,255,0.75) !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    text-align: right !important;
    margin: 0 !important;
    max-width: 55% !important;
    line-height: 1.4 !important;
  }

  .co-globe-center {
    position: relative !important;
    top: auto !important; left: auto !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 20px 0 !important;
    order: 2 !important;
    width: 100% !important;
  }

  #comboCanvas {
    width: 260px !important;
    height: 260px !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .co-globe-title,
  .combo-globe.co-visible .co-globe-title {
    opacity: 1 !important;
    transform: none !important;
    font-size: clamp(22px, 6vw, 32px) !important;
    margin-bottom: 10px !important;
  }

  .co-globe-sub,
  .combo-globe.co-visible .co-globe-sub {
    opacity: 1 !important;
    font-size: 13px !important;
    max-width: 100% !important;
    line-height: 1.7 !important;
  }

  /* ── METHODOLOGY ── */
  .combo-method {
    padding: 24px 20px 20px !important;
    overflow-y: visible !important;
    height: auto !important;
  }

  .co-method-header {
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 16px !important;
  }

  .co-method-title { font-size: clamp(28px, 7vw, 40px) !important; }

  .co-method-intro {
    max-width: 100% !important;
    font-size: 14px !important;
    border-left: 1px solid var(--rule) !important;
    padding-left: 14px !important;
  }

  .method-toggle { width: 100% !important; }
  .method-tab { flex: 1 !important; text-align: center !important; padding: 10px 8px !important; font-size: 10px !important; }

  .pipeline-svg  { max-height: none !important; height: auto !important; }
  .pd-desc { font-size: 14px !important; line-height: 1.65 !important; }

  /* ── MAPE ── */
  .mape3-section { padding: 48px 20px 40px !important; }

  .mape3-letters {
    gap: 0 !important;
    justify-content: space-around !important;
  }

  .mape3-label {
    opacity: 1 !important;
    color: rgba(255,255,255,0.50) !important;
  }

  .mape3-col {
    padding: 8px 4px !important;
    -webkit-tap-highlight-color: transparent !important;
    cursor: pointer !important;
  }

  .mape3-col.active .mape3-letter {
    -webkit-text-stroke: 1px rgba(255,255,255,0.85) !important;
    transform: translateY(-8px) !important;
  }

  .mape3-col.active .mape3-label {
    color: rgba(255,255,255,0.80) !important;
    opacity: 1 !important;
  }

  .mape3-col.active .mape3-dot {
    background: var(--cobalt) !important;
    transform: scale(2.2) !important;
    opacity: 1 !important;
  }

  .mape3-content {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    grid-template-columns: 1fr !important;
    gap: 12px 0 !important;
    margin-top: 32px !important;
  }

  .mape3-tag   { grid-column: 1 !important; grid-row: auto !important; }
  .mape3-title { grid-column: 1 !important; grid-row: auto !important; font-size: clamp(28px, 9vw, 44px) !important; }
  .mape3-desc  {
    grid-column: 1 !important;
    grid-row: auto !important;
    border-left: 1px solid rgba(255,255,255,0.18) !important;
    padding-left: 20px !important;
    max-width: 100% !important;
    font-size: 15px !important;
  }

  .mape3-stats {
    grid-column: 1 !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    margin-top: 28px !important;
  }

  .mape3-stat strong { font-size: 32px !important; }

  /* ── SERVICES ── */
  .services-section {
    padding: 56px 20px 0 !important;
  }
  .svc-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
    margin-bottom: 28px !important;
  }
  .svc-header-right {
    align-items: flex-start !important;
  }
  .svc-intro {
    max-width: 100% !important;
    font-size: 14px !important;
    text-align: left !important;
  }
  .svc-lines-wrap { display: none !important; }
  .svc-carousel-track {
    margin-left: -20px !important;
    margin-right: -20px !important;
    padding-left: 20px !important;
    padding-right: 0 !important;
    gap: 12px !important;
    border-top: none !important;
    border-bottom: none !important;
  }
  .svc-col {
    flex: 0 0 75vw !important;
    max-width: 300px !important;
    min-width: 220px !important;
    min-height: 0 !important;
    border-right: none !important;
    border: 1px solid rgba(6,67,204,.18) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
  }
  .svc-col::before { display: none !important; }
  .svc-card-img-wrap { height: 140px !important; }
  .svc-card-body { padding: 18px 16px 20px !important; }
  .svc-col .pc-acronym {
    font-size: clamp(18px, 5.5vw, 24px) !important;
    margin-bottom: 10px !important;
  }
  .svc-col .pc-desc {
    font-size: 13px !important;
    line-height: 1.65 !important;
    margin-bottom: 16px !important;
  }
  .svc-cta-strip {
    flex-wrap: wrap !important;
    gap: 16px !important;
    padding: 32px 0 52px !important;
    margin-top: 28px !important;
  }

  /* ── FOOTER ── */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .site-footer { padding: 48px 20px 40px !important; }

  /* ── global pointer-events reset ── */
  .pill-overlay, .pill-subtitle, .hero-ctas,
  .partition-columns, .partition-col,
  .combo-phase, .mape3-content, .co-orbit-lbl {
    pointer-events: auto !important;
  }

  /* ── Pipeline swipe hint ── */
  .pipeline-swipe-hint {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 10px !important;
    font-family: var(--mono) !important;
    font-size: 9px !important;
    letter-spacing: .16em !important;
    color: var(--cobalt) !important;
    text-transform: uppercase !important;
    opacity: 0.75 !important;
  }
  .pipeline-swipe-hint svg {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    animation: swipe-nudge 1.8s ease-in-out infinite !important;
  }
  @keyframes swipe-nudge {
    0%, 100% { transform: translateX(0); }
    50%       { transform: translateX(6px); }
  }

  /* ── Footer contact links ── */
  .footer-contact-link {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-family: var(--mono) !important;
    font-size: 13px !important;
    color: var(--cobalt) !important;
    text-decoration: none !important;
    line-height: 2 !important;
    letter-spacing: .02em !important;
  }
  .footer-contact-link:hover { opacity: .7; }
}