/* ============================================
   Ralph Management — Professional Editorial
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;450;500&display=swap');

:root {
  --bg:       #0a0a0a;
  --bg-card:  #101010;
  --text:     #e8e6e1;
  --text-mid: #9e9c97;
  --text-dim: #5c5a56;
  --cream:    #d4c9a8;
  --white:    #ffffff;
  --border:   rgba(255,255,255,0.07);
  --border-h: rgba(255,255,255,0.14);
  --r:        8px;
  --r-lg:     16px;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --sans:     'Inter', -apple-system, sans-serif;
  --serif:    'DM Serif Display', Georgia, serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Grain */
.grain {
  display: none;
}

/* Cursor glow */
.cursor-glow {
  position: fixed; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,201,168,0.04) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s; opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }

/* ============================================
   Nav
   ============================================ */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Cormorant Garamond', var(--serif);
  font-size: 20px; font-weight: 600;
  font-style: normal;
  color: var(--white);
  letter-spacing: 0.2px;
  min-width: 160px;
}

.nav-center {
  display: flex; align-items: center; gap: 36px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-center a {
  font-family: var(--sans);
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.2px;
  transition: color 0.3s;
}
.nav-center a:hover { color: var(--white); }
.nav-center a.active { color: var(--white); }

.nav-right { min-width: 160px; display: flex; justify-content: flex-end; }

.nav-cta {
  font-family: var(--sans);
  font-size: 13px; font-weight: 450;
  color: var(--white);
  padding: 8px 22px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  background: transparent;
  transition: all 0.3s;
  cursor: pointer;
  display: inline-block;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 20px; height: 1.5px; background: var(--white); border-radius: 2px; }

.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(20px);
  padding: 20px 24px; z-index: 99; flex-direction: column; gap: 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; color: var(--text-mid); padding: 8px 0; }

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  font-size: 13px; font-weight: 500; font-family: var(--sans);
  letter-spacing: 0.3px;
  border-radius: 100px; border: none; cursor: pointer;
  transition: all 0.35s var(--ease);
}
.btn-glow {
  background: var(--white); color: var(--bg);
}
.btn-glow:hover {
  background: var(--cream);
  transform: translateY(-1px);
}
.btn-line {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-h);
}
.btn-line:hover { border-color: var(--text-mid); }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative; width: 100%; height: 100vh;
  overflow: hidden;
}

.hero-img {
  position: absolute; inset: 0;
  background: url('hero-bg-8k.jpg') center center/cover no-repeat;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.05) 40%,
    rgba(10,10,10,0.25) 70%, rgba(10,10,10,0.7) 100%);
}

.hero-brand {
  position: absolute;
  bottom: -0.06em; left: 40px;
  z-index: 4;
  font-family: var(--sans);
  font-size: clamp(100px, 20vw, 340px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.82;
  color: var(--white);
  pointer-events: none;
}

/* ============================================
   Shared section styles
   ============================================ */

.section { padding: 120px 24px; }

.label-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 48px;
}

.section-num {
  font-family: var(--sans);
  font-size: 12px; font-weight: 400;
  color: var(--cream);
  letter-spacing: 1px;
}

.section-label {
  font-size: 12px; font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

.display {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.5px;
}

.text-grad {
  color: var(--cream);
}

.text-grad-2 {
  color: var(--cream);
}

/* ============================================
   About
   ============================================ */

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: start;
  margin-bottom: 80px;
}

.about-text p {
  font-size: 15px; line-height: 1.85;
  color: var(--text-mid); margin-bottom: 16px;
  font-weight: 300;
}

.stats-row {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  flex: 1; padding: 40px 0;
  display: flex; align-items: baseline; gap: 16px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }

.stat-val {
  font-family: var(--serif);
  font-size: 52px; font-weight: 400;
  letter-spacing: -1px; line-height: 1;
}
.stat-val::after {
  content: '+'; font-size: 28px; color: var(--cream);
}

.stat-sub {
  font-size: 12px; color: var(--text-dim);
  line-height: 1.5; letter-spacing: 0.3px;
  font-weight: 300;
}

/* ============================================
   Services
   ============================================ */

.section-services {
  background: #e4e3df;
  border: none;
}

.section-services .label-row .section-num,
.section-services .label-row .section-label {
  color: #8a8a8a;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* --- Split-panel card --- */
.svc-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-top: 1px solid rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.5s var(--ease);
}

.svc-card:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.svc-card:hover {
  background: rgba(0,0,0,0.02);
}

.svc-card.open {
  background: rgba(0,0,0,0.03);
}

/* Number side */
.svc-card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 48px 20px;
  transition: padding 0.5s var(--ease);
}

.svc-card.open .svc-card-left {
  padding-top: 56px;
  padding-bottom: 56px;
}

.svc-giant {
  font-family: var(--serif);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 300;
  color: #c8c6c0;
  line-height: 1;
  letter-spacing: -4px;
  transition: color 0.6s var(--ease), transform 0.6s var(--ease);
}

.svc-card:hover .svc-giant {
  color: #aaa9a4;
}

.svc-card.open .svc-giant {
  color: #1a1a1a;
  transform: scale(1.08);
}

.svc-line {
  width: 1px;
  height: 0;
  background: #1a1a1a;
  margin-top: 20px;
  transition: height 0.6s var(--ease);
}

.svc-card.open .svc-line {
  height: 48px;
}

/* Content side */
.svc-card-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 52px 48px 40px;
  position: relative;
}

/* Header row with title + toggle icon */
.svc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.svc-toggle {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 300;
  color: #aaa;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  transition: all 0.4s var(--ease);
}

.svc-card:hover .svc-toggle {
  border-color: rgba(0,0,0,0.25);
  color: #666;
}

.svc-card.open .svc-toggle {
  transform: rotate(45deg);
  border-color: #1a1a1a;
  color: #1a1a1a;
}

/* Expandable content */
.svc-expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s var(--ease), opacity 0.4s var(--ease), margin-top 0.5s var(--ease);
  margin-top: 0;
}

.svc-card.open .svc-expand {
  max-height: 900px;
  opacity: 1;
  margin-top: 24px;
}

/* Inner expand layout */
.svc-expand > p {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 28px;
}

.svc-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.svc-stat-num {
  font-family: var(--sans);
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.svc-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #999;
}

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  margin-bottom: 28px;
}

.svc-detail h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.svc-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-detail ul li {
  font-size: 13px;
  color: #6a6a6a;
  line-height: 1.6;
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
}

.svc-detail ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #bbb;
  font-size: 10px;
}

/* Flipped card: content left, number right */
.svc-card-flip {
  grid-template-columns: 1fr 200px;
}

.svc-card-flip .svc-card-right {
  padding: 48px 40px 48px 52px;
  order: -1;
}

.svc-card h3 {
  font-family: var(--sans);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.3px;
  color: #1a1a1a;
  line-height: 1.25;
  transition: color 0.3s;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-tags span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #8a8a8a;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 7px 16px;
  border-radius: 100px;
  transition: all 0.4s var(--ease);
}

.svc-card.open .svc-tags span {
  border-color: rgba(0,0,0,0.3);
  color: #1a1a1a;
}

/* ============================================
   Focus — Carousel
   ============================================ */

.focus-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 40px;
  color: var(--text-mid);
}

.carousel-track {
  overflow: hidden;
  padding-left: max(24px, calc((100vw - 1100px) / 2 + 24px));
}

.carousel {
  display: flex; gap: 16px;
  width: max-content;
  animation: scroll 55s linear infinite;
  cursor: grab; user-select: none;
}
.carousel:hover { animation-play-state: paused; }
.carousel.dragging { animation: none; cursor: grabbing; }

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.case {
  flex-shrink: 0; width: 380px;
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  min-height: 500px;
  transition: transform 0.35s var(--ease);
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
}
.case:hover { transform: translateY(-4px); }

.case-ai,
.case-start,
.case-stable,
.case-cash,
.case-eu,
.case-data {
  background: var(--bg-card);
  color: var(--text);
}

.case-tag {
  display: inline-block; width: fit-content;
  font-size: 10px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--cream);
  background: rgba(212,201,168,0.08);
  border: 1px solid rgba(212,201,168,0.12);
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 20px;
}

.case h3 {
  font-family: var(--serif);
  font-size: 24px; font-weight: 400;
  line-height: 1.15; letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.case-stat { margin-bottom: 14px; }

.case-big {
  font-family: var(--serif);
  font-size: 44px; font-weight: 400;
  letter-spacing: -1px; line-height: 1;
  display: block; margin-bottom: 4px;
  color: var(--cream);
}

.case-stat-label {
  font-size: 12px; line-height: 1.5;
  color: var(--text-dim); display: block;
  font-weight: 300;
}

.case > p {
  font-size: 13px; line-height: 1.75;
  color: var(--text-mid); margin-bottom: 14px;
  font-weight: 300;
}

.case-data-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 10px;
}

.case-data {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r); padding: 12px;
}

.case-data span {
  font-family: var(--serif);
  font-size: 20px; font-weight: 400;
  letter-spacing: -0.3px; display: block;
  margin-bottom: 2px; color: var(--text);
}

.case-data small {
  font-size: 11px; line-height: 1.35;
  color: var(--text-dim); display: block;
  font-weight: 300;
}

.case-source {
  font-size: 10px; color: var(--text-dim);
  opacity: 0.6; font-style: italic;
  margin-bottom: 10px; font-weight: 300;
}

.case-bottom {
  display: flex; gap: 12px;
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--border);
}

.case-bottom span {
  font-size: 10px; font-weight: 450;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-dim);
}

.case-cta {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--cream);
  border: 1px solid rgba(212,201,168,0.25);
  border-radius: 999px;
  padding: 5px 12px;
  transition: all 0.3s;
}
.case-cta:hover {
  color: var(--white);
  border-color: rgba(212,201,168,0.5);
  background: rgba(212,201,168,0.08);
}

/* ============================================
   Case Detail Pages
   ============================================ */

.case-page {
  padding-top: 104px;
}

.case-hero {
  margin-bottom: 32px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.back-link:hover { color: var(--cream); }

.case-kicker {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--cream);
  margin-bottom: 14px;
}

.case-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}

.case-subtitle {
  max-width: 760px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0 46px;
}

.kpi-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-card);
  padding: 18px;
}

.kpi-value {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 8px;
}

.kpi-label {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.5;
}

.case-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
}

.case-block {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-card);
  padding: 22px;
}

.case-block h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.case-block p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
}

.case-block + .case-block {
  margin-top: 14px;
}

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bullet-list li {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 8px;
}
.bullet-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.source-note {
  margin-top: 22px;
  font-size: 11px;
  color: var(--text-dim);
}

/* ============================================
   Insights
   ============================================ */

.section-ins {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.ins-card {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease); cursor: pointer;
}
.ins-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-h);
}

.ins-top {
  height: 160px;
  display: flex; align-items: flex-end; padding: 20px;
  position: relative;
}

.ins-c1 { background: linear-gradient(135deg, #1a1a1a, #2a2a2a); }
.ins-c2 { background: linear-gradient(135deg, #1a1a18, #2a2820); }
.ins-c3 { background: linear-gradient(135deg, #181a1a, #20282a); }

.ins-yr {
  font-family: var(--serif);
  font-size: 56px; font-weight: 400;
  color: rgba(255,255,255,0.06);
}

.ins-body { padding: 24px; }

.ins-cat {
  display: inline-block;
  font-size: 10px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--cream); margin-bottom: 10px;
}

.ins-card h3 {
  font-family: var(--serif);
  font-size: 17px; font-weight: 400;
  line-height: 1.4; letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.ins-card p {
  font-size: 13px; color: var(--text-mid);
  line-height: 1.65; font-weight: 300;
}

/* ============================================
   Contact
   ============================================ */

.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}

.contact-heading { margin-bottom: 40px; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.ci-label {
  display: block; font-size: 10px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 2px;
}
.ci a, .ci span { font-size: 15px; color: var(--text); font-weight: 300; }
.ci a:hover { color: var(--cream); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; }

.fg label {
  font-size: 11px; font-weight: 450;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-dim);
}

.fg input, .fg textarea {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-h);
  border-radius: var(--r); padding: 13px 16px;
  font-size: 14px; font-family: var(--sans);
  font-weight: 300; color: var(--text);
  outline: none; transition: border-color 0.3s;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-dim); }
.fg input:focus, .fg textarea:focus { border-color: var(--cream); }
.fg textarea { resize: vertical; min-height: 110px; }

/* ============================================
   Footer
   ============================================ */

.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}

.footer-inner {
  display: flex; justify-content: space-between; align-items: start;
}

.footer-left p {
  font-size: 12px; color: var(--text-dim); margin-top: 4px;
  font-weight: 300;
}
.footer-brand {
  display: inline-block;
  font-family: 'Cormorant Garamond', var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 12px; color: var(--text-dim);
  transition: color 0.3s; font-weight: 400;
}
.footer-links a:hover { color: var(--text); }

/* ============================================
   Animations
   ============================================ */

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0; transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s;   opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .ins-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-center { display: none; }
  .nav-toggle { display: flex; }
  .hero-brand { left: 20px; }
  .about-content { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 0; }
  .stat:last-child { border-bottom: none; }
  .ins-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .case { width: 320px; min-height: 460px; }
  .svc-card { grid-template-columns: 80px 1fr; }
  .svc-card-flip { grid-template-columns: 1fr 80px; }
  .svc-card-left { padding: 28px 8px; }
  .svc-card-right { padding: 28px 16px; }
  .svc-card-flip .svc-card-right { padding: 28px 16px; }
  .svc-giant { font-size: 40px; letter-spacing: -1px; }
  .svc-toggle { width: 32px; height: 32px; font-size: 22px; }
  .svc-stats { flex-wrap: wrap; gap: 20px; }
  .svc-detail-grid { grid-template-columns: 1fr; gap: 20px; }
  .cursor-glow { display: none; }
  .kpi-grid { grid-template-columns: 1fr; }
  .case-layout { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 80px 16px; }
  .hero-brand { font-size: 72px; left: 16px; }
  .display { font-size: 28px; }
  .nav { padding: 0 16px; }
}

/* ============================================
   Light Research Theme (News + Reports)
   ============================================ */

body.research-page,
body.case-detail-page {
  --bg: #f7f7f4;
  --bg-card: #ffffff;
  --text: #111111;
  --text-mid: #444444;
  --text-dim: #777777;
  --cream: #2f4f8f;
  --white: #ffffff;
  --border: rgba(0,0,0,0.12);
  --border-h: rgba(0,0,0,0.2);
  background: #f7f7f4;
  color: #111111;
  font-family: var(--sans);
}

body.research-page .grain,
body.research-page .cursor-glow,
body.case-detail-page .grain,
body.case-detail-page .cursor-glow {
  display: none;
}

body.research-page .nav,
body.case-detail-page .nav {
  background: rgba(247,247,244,0.9);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(0,0,0,0.08);
}

body.research-page .logo,
body.case-detail-page .logo {
  color: #111111;
}

body.research-page .nav-center a,
body.case-detail-page .nav-center a {
  color: rgba(17,17,17,0.72);
}

body.research-page .nav-center a.active,
body.research-page .nav-center a:hover,
body.case-detail-page .nav-center a.active,
body.case-detail-page .nav-center a:hover {
  color: #111111;
}

body.research-page .nav-cta,
body.case-detail-page .nav-cta {
  color: #111111;
  border-color: rgba(0,0,0,0.18);
  background: #ffffff;
}

body.research-page .nav-cta:hover,
body.case-detail-page .nav-cta:hover {
  background: #f1f1ef;
  border-color: rgba(0,0,0,0.28);
}

body.research-page .nav-toggle span,
body.case-detail-page .nav-toggle span {
  background: #111111;
}

body.research-page .mobile-menu,
body.case-detail-page .mobile-menu {
  background: #ffffff;
  border-bottom-color: rgba(0,0,0,0.08);
}

body.research-page .mobile-menu a,
body.case-detail-page .mobile-menu a {
  color: #111111;
}

.research-intro {
  padding-top: 130px;
  padding-bottom: 60px;
}

.research-title {
  font-family: var(--sans);
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -1px;
  font-weight: 500;
  max-width: 920px;
  margin-bottom: 14px;
}

.research-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #555555;
  max-width: 760px;
}

.research-carousel-section {
  padding: 0 0 64px;
  background: transparent;
  position: relative;
}

.news-track {
  padding-left: max(24px, calc((100vw - 1220px) / 2 + 24px));
}

.news-carousel {
  gap: 24px;
}

.news-card {
  width: 460px;
  min-height: 380px;
  padding: 0;
  background: #ffffff;
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 12px 40px rgba(0,0,0,0.08);
  position: relative;
  transition: box-shadow 0.5s ease, transform 0.5s ease;
  flex-shrink: 0;
}

.news-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 24px 56px rgba(0,0,0,0.14);
  transform: translateY(-6px);
}

.news-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #111111;
  text-decoration: none;
}

.news-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 6px;
  border: none;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

.news-badge span + span {
  opacity: 0.6;
  border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: 6px;
}

.news-cover {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e8e8e4;
}

.news-cover-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card:hover .news-cover-inner {
  transform: scale(1.06);
}

.news-cover .news-badge {
  position: absolute;
  z-index: 3;
}

.news-cover-ai {
  background-image: url('https://images.unsplash.com/photo-1614508569207-3295ac89d75f?w=1200&q=80');
}
.news-cover-start {
  background-image: url('https://images.unsplash.com/photo-1579621970588-a35d0e7ab9b6?w=1200&q=80');
}
.news-cover-stable {
  background-image: url('https://images.unsplash.com/photo-1728044849256-ad00ec91e794?w=1200&q=80');
}
.news-cover-cash {
  background-image: url('https://images.unsplash.com/photo-1613443957077-e684b124bfd4?w=1200&q=80');
}
.news-cover-eu {
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1200&q=80');
}
.news-cover-data {
  background-image: url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?w=1200&q=80');
}
.news-cover-metals {
  background-image: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1200&q=80');
}

.news-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 10px;
}

.news-card h3 {
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.2px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 8px;
}

.news-card p {
  color: #666666;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 0;
}

.news-footer {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.2px;
  color: #999999;
}

.news-footer span:last-child {
  color: #111111;
  font-weight: 500;
}

body.research-page .section-ins {
  background: transparent;
  border: none;
  padding-top: 40px;
}

body.research-page .ins-grid {
  gap: 14px;
}

body.research-page .ins-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}

body.research-page .ins-body {
  padding: 20px;
}

body.research-page .ins-cat {
  color: #315ea5;
}

body.research-page .ins-card h3 {
  font-family: var(--sans);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  font-weight: 500;
}

body.research-page .ins-card p {
  color: #4f4f4f;
}

/* ============================================
   Sector Desks — Expert advisory grid
   ============================================ */
.section-desk {
  background: transparent;
  border: none;
  padding-top: 40px;
  padding-bottom: 60px;
}

.desk-headline {
  font-family: var(--sans);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.8px;
  color: #1a1a1a;
  margin-top: 24px;
  line-height: 1.2;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Split: prose left, bubble cloud right */
.net-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  align-items: center;
  min-height: 600px;
}

.net-prose h3 {
  font-family: var(--sans);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 20px;
}

.net-prose p {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.85;
  margin-bottom: 16px;
}

.net-prose .net-cta {
  display: inline-block;
  margin-top: 12px;
}

/* Bubble cloud — absolute positioning for organic scatter */
.bubble-cloud {
  position: relative;
  width: 100%;
  height: 600px;
}

/* Bubble base */
.bubble {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  font-weight: 500;
  color: #3a3a3a;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.55), transparent 55%),
              #d5d4cf;
  box-shadow: 6px 6px 16px rgba(0,0,0,0.07),
              -4px -4px 10px rgba(255,255,255,0.6),
              inset -2px -2px 5px rgba(0,0,0,0.03),
              inset 2px 2px 5px rgba(255,255,255,0.4);
  cursor: default;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: bubble-float 6s ease-in-out infinite;
  animation-delay: var(--delay);
  line-height: 1.2;
  padding: 10px;
}

.bubble:hover {
  transform: scale(1.15) !important;
  box-shadow: 8px 8px 22px rgba(0,0,0,0.12),
              -6px -6px 16px rgba(255,255,255,0.7),
              inset -2px -2px 5px rgba(0,0,0,0.03),
              inset 2px 2px 5px rgba(255,255,255,0.5);
  z-index: 10;
}

@keyframes bubble-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Each bubble hand-placed for organic feel */
.b1  { width: 130px; height: 130px; font-size: 12px; top: 0%;   left: 10%; }
.b2  { width: 105px; height: 105px; font-size: 11px; top: 2%;   left: 60%; }
.b3  { width: 135px; height: 135px; font-size: 12px; top: 8%;   left: 32%; }
.b4  { width: 88px;  height: 88px;  font-size: 10px; top: 5%;   left: 82%; }
.b5  { width: 115px; height: 115px; font-size: 11px; top: 22%;  left: 0%;  }
.b6  { width: 82px;  height: 82px;  font-size: 10px; top: 18%;  left: 72%; }
.b7  { width: 90px;  height: 90px;  font-size: 10px; top: 24%;  left: 45%; }
.b8  { width: 120px; height: 120px; font-size: 11px; top: 36%;  left: 18%; }
.b9  { width: 110px; height: 110px; font-size: 11px; top: 34%;  left: 58%; }
.b10 { width: 100px; height: 100px; font-size: 10px; top: 40%;  left: 84%; }
.b11 { width: 78px;  height: 78px;  font-size: 9.5px;top: 42%;  left: 2%;  }
.b12 { width: 108px; height: 108px; font-size: 11px; top: 52%;  left: 38%; }
.b13 { width: 125px; height: 125px; font-size: 11.5px;top: 54%; left: 65%; }
.b14 { width: 95px;  height: 95px;  font-size: 10px; top: 56%;  left: 12%; }
.b15 { width: 88px;  height: 88px;  font-size: 10px; top: 68%;  left: 50%; }
.b16 { width: 84px;  height: 84px;  font-size: 10px; top: 70%;  left: 80%; }
.b17 { width: 100px; height: 100px; font-size: 10px; top: 72%;  left: 25%; }
.b18 { width: 110px; height: 110px; font-size: 11px; top: 78%;  left: 0%;  }
.b19 { width: 76px;  height: 76px;  font-size: 9.5px;top: 82%;  left: 62%; }
.b20 { width: 98px;  height: 98px;  font-size: 10px; top: 86%;  left: 40%; }
.b21 { width: 92px;  height: 92px;  font-size: 10px; top: 88%;  left: 78%; }

.net-footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.net-footer p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.7;
  margin-bottom: 16px;
}

.net-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  padding-bottom: 2px;
  border-bottom: 1px solid #1a1a1a;
  transition: opacity 0.25s ease;
}

.net-cta:hover { opacity: 0.6; }

@media (max-width: 768px) {
  .desk-headline { font-size: 22px; }
  .net-split { grid-template-columns: 1fr; min-height: auto; }
  .bubble-cloud { height: 500px; }
  .bubble { transform: scale(0.8); }
  .b1, .b2, .b3, .b4, .b5, .b6, .b7 { position: relative; display: inline-flex; top: auto; left: auto; }
  .b8, .b9, .b10, .b11, .b12, .b13, .b14 { position: relative; display: inline-flex; top: auto; left: auto; }
  .b15, .b16, .b17, .b18, .b19, .b20, .b21 { position: relative; display: inline-flex; top: auto; left: auto; }
  .bubble-cloud {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
  }
}

/* ============================================
   Strategy page
   ============================================ */
.strat-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  background: linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.7) 70%, #e4e3df 100%),
              url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=2400&q=80') center/cover no-repeat;
  background-attachment: fixed;
}

.strat-display {
  font-family: var(--sans);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 36px;
  color: #fff;
}

.strat-display .text-grad,
.strat-display .text-grad-2 {
  position: relative;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(135deg, #d4c9a8 0%, #f0e6c8 50%, #d4c9a8 100%);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
  font-style: normal;
  font-weight: 600;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.strat-display .text-grad::after,
.strat-display .text-grad-2::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cream), transparent);
  opacity: 0.5;
  animation: underline-pulse 3s ease-in-out infinite;
}

@keyframes underline-pulse {
  0%, 100% { opacity: 0.2; transform: scaleX(0.6); }
  50% { opacity: 0.6; transform: scaleX(1); }
}

.strat-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 520px;
}

/* Principles */
.strat-principles {
  background: #e4e3df;
  border: none;
}

.strat-principles .label-row .section-num,
.strat-principles .label-row .section-label {
  color: #8a8a8a;
}

.prin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.prin-item {
  padding: 36px 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  border-right: 1px solid rgba(0,0,0,0.08);
}

.prin-item:nth-child(2n) { border-right: none; }
.prin-item:nth-last-child(-n+2) { border-bottom: none; }

.prin-num {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #a0a0a0;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.prin-item h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.prin-item p {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.7;
}

/* Process timeline */
.strat-section-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 48px;
  color: var(--text);
}

.proc-timeline {
  position: relative;
  padding-left: 0;
}

.proc-step {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
}

.proc-step:last-child { padding-bottom: 0; }

.proc-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 20px;
}

.proc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream);
  flex-shrink: 0;
  margin-top: 6px;
}

.proc-line {
  width: 1px;
  flex: 1;
  background: var(--border);
  margin-top: 8px;
}

.proc-content { flex: 1; }

.proc-phase {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.proc-content h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.proc-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 520px;
}

/* Focus area cards */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.focus-card {
  background: var(--bg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
  text-decoration: none;
}

.focus-card:hover {
  background: var(--bg-card);
}

.focus-tag {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--cream);
  margin-bottom: 12px;
}

.focus-card h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.3px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.focus-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
}

.focus-arrow {
  font-size: 18px;
  color: var(--text-dim);
  margin-top: 16px;
  transition: color 0.2s ease, transform 0.2s ease;
  display: block;
}

.focus-card:hover .focus-arrow {
  color: var(--cream);
  transform: translateX(4px);
}

/* Photo dividers — Chicago cityscape */
.strat-photo {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.strat-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #d9d8d4 0%, transparent 20%, transparent 80%, #d9d8d4 100%);
}

.strat-photo-1::after {
  background: linear-gradient(to bottom, #e4e3df 0%, transparent 20%, transparent 80%, #d9d8d4 100%);
}

.strat-photo-2::after {
  background: linear-gradient(to bottom, #d9d8d4 0%, transparent 20%, transparent 80%, #d9d8d4 100%);
}

.strat-photo-3::after {
  background: linear-gradient(to bottom, #d9d8d4 0%, transparent 20%, transparent 80%, #d9d8d4 100%);
}

.strat-photo-4::after {
  background: linear-gradient(to bottom, #d9d8d4 0%, transparent 20%, transparent 80%, #d9d8d4 100%);
}

.strat-photo-1 {
  background-image: url('https://images.unsplash.com/photo-1494522855154-9297ac14b55f?w=2400&q=80');
}

.strat-photo-2 {
  background-image: url('https://images.unsplash.com/photo-1581373449483-37449f962b6c?w=2400&q=80');
}

.strat-photo-3 {
  background-image: url('https://images.unsplash.com/photo-1603032692204-6132b60f8c4e?w=2400&q=80');
}

.strat-photo-4 {
  background-image: url('https://images.unsplash.com/photo-1559737629-7691a797d15c?w=2400&q=80');
}

@media (max-width: 768px) {
  .strat-photo { height: 180px; background-attachment: scroll; }
  .strat-hero { background-attachment: scroll; }
}

/* Prose layout — two-column editorial text */
.strat-prose {
  background: #d9d8d4;
}

.strat-prose .label-row .section-num,
.strat-prose .label-row .section-label {
  color: #8a8a8a;
}

.prose-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.prose-block h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.prose-block p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.85;
  margin-bottom: 16px;
}

.prose-block p:last-child { margin-bottom: 0; }

/* Approach — single-column centered prose */
.strat-approach {
  background: #d9d8d4;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.strat-approach .label-row .section-num,
.strat-approach .label-row .section-label {
  color: #8a8a8a;
}

.approach-text {
  max-width: 640px;
}

.approach-text h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.approach-text p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.85;
  margin-bottom: 16px;
}

.approach-text p:last-child { margin-bottom: 0; }

/* Who section */
.strat-who {
  background: #d9d8d4;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.strat-who .label-row .section-num,
.strat-who .label-row .section-label {
  color: #8a8a8a;
}

/* CTA block */
.strat-cta {
  background: #d9d8d4;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.strat-cta .btn-glow {
  background: #1a1a1a;
  color: #fff;
}

.strat-cta .btn-glow:hover {
  background: #333;
}

.cta-block {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-block h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.cta-block p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .strat-hero { padding-top: 120px; }
  .prin-grid { grid-template-columns: 1fr; }
  .prin-item { border-right: none; }
  .prin-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(0,0,0,0.08); }
  .prin-item:last-child { border-bottom: none; }
  .focus-grid { grid-template-columns: 1fr; }
  .proc-step { gap: 16px; }
  .prose-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* Report page */
.report-shell {
  padding-top: 126px;
}

body.case-detail-page .container {
  max-width: 1260px;
}

.report-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.report-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #315ea5;
  font-weight: 600;
}

.report-date {
  font-size: 12px;
  color: #666666;
}

.report-title {
  font-family: var(--sans);
  font-size: clamp(52px, 8vw, 84px);
  line-height: 0.93;
  letter-spacing: -1.8px;
  font-weight: 500;
  max-width: 1180px;
  margin-bottom: 14px;
}

.report-subtitle {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  max-width: 1100px;
  color: #4f4f4f;
  margin-bottom: 20px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 80px;
  margin: 30px 0 36px;
}

.metric-box {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(0,0,0,0.12);
  padding: 20px 0 0;
  transition: transform 0.3s ease;
}

.metric-box:hover {
  transform: translateX(4px);
}

.metric-box strong {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(58px, 7vw, 78px);
  letter-spacing: -1.2px;
  color: #0f1728;
  margin-bottom: 4px;
  line-height: 0.95;
}

.metric-box span {
  font-size: 18px;
  color: #555555;
  line-height: 1.35;
  max-width: 420px;
  display: block;
}

.report-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
}

.report-block {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(0,0,0,0.12);
  border-radius: 0;
  padding: 24px 0 2px;
  position: relative;
}

.report-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 130px;
  height: 2px;
  background: linear-gradient(90deg, #386ab3, #8bb4ff);
  animation: sectionPulse 5.2s ease-in-out infinite;
}

.report-grid > div .report-block:nth-child(2)::before {
  background: linear-gradient(90deg, #374d85, #95b3ff);
  animation-delay: 0.6s;
}

.report-grid > div .report-block:nth-child(3)::before {
  background: linear-gradient(90deg, #4f4c93, #9ca2ff);
  animation-delay: 1.2s;
}

.report-block + .report-block {
  margin-top: 22px;
}

.report-block h2 {
  font-family: var(--sans);
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.2;
  letter-spacing: -1px;
  font-weight: 500;
  margin-bottom: 14px;
}

.report-block p {
  font-size: 20px;
  line-height: 1.5;
  color: #4b4b4b;
  max-width: 760px;
}

.report-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.report-list li {
  border-bottom: 1px dashed rgba(0,0,0,0.14);
  padding-bottom: 12px;
  font-size: 18px;
  line-height: 1.45;
  color: #444444;
}

.report-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.report-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.report-links a {
  color: #1f4f94;
  font-size: 16px;
  line-height: 1.4;
}

.report-links a:hover {
  text-decoration: underline;
}

.report-back {
  display: inline-flex;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666666;
}

.report-back:hover {
  color: #111111;
}

.report-scene {
  border-top: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  padding: 42px 0;
  margin: 24px 0 30px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 26px;
  align-items: center;
  --scene-p: 0.4;
}

.scene-copy h3 {
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 0.98;
  letter-spacing: -1px;
  font-weight: 500;
  margin-bottom: 14px;
}

.scene-copy p {
  font-size: 21px;
  line-height: 1.45;
  color: #4d4d4d;
  max-width: 540px;
}

.scene-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #315ea5;
  font-weight: 600;
}

.scene-visual {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.scene-visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -70px;
  bottom: -110px;
  border-radius: 50%;
  border: 1px dashed rgba(61,92,146,0.22);
  animation: rotateRing 18s linear infinite;
}

.scene-orb-lg,
.scene-orb-sm {
  position: absolute;
  border-radius: 50%;
  animation: orbPulse 7s ease-in-out infinite;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.scene-orb-lg {
  width: 320px;
  height: 320px;
  right: 10px;
  bottom: 0;
  background: #cfe0fb;
  opacity: 0.82;
  transform: translateY(18px) scale(0.95);
}

.scene-orb-sm {
  width: 84px;
  height: 84px;
  left: 30px;
  top: 40px;
  background: #bad0f5;
  animation-delay: 1s;
  transform: translateY(-12px) scale(0.9);
}

.scene-number {
  position: absolute;
  left: 20px;
  bottom: 18px;
  font-size: clamp(84px, 10vw, 138px);
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 0.9;
  color: #161c2b;
  opacity: 0;
  transform: translateY(24px);
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.scene-label {
  position: absolute;
  left: 24px;
  bottom: -2px;
  max-width: 360px;
  font-size: 17px;
  line-height: 1.3;
  color: #2d3345;
  opacity: 0;
  transform: translateY(16px);
  transition: transform 0.7s ease, opacity 0.7s ease;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes orbPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(115,157,228,0.12); }
  50% { box-shadow: 0 16px 40px rgba(115,157,228,0.22); }
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes sectionPulse {
  0%, 100% { width: 96px; opacity: 0.7; }
  50% { width: 160px; opacity: 1; }
}

.report-scene.active .scene-orb-lg {
  opacity: 1;
  transform: translateY(calc((0.45 - var(--scene-p)) * 38px)) scale(calc(0.95 + var(--scene-p) * 0.12));
}

.report-scene.active .scene-orb-sm {
  transform: translateY(calc((var(--scene-p) - 0.45) * 28px)) scale(calc(0.9 + var(--scene-p) * 0.1));
}

.report-scene.active .scene-number,
.report-scene.active .scene-label {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .metric-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
  .report-grid {
    grid-template-columns: 1fr;
  }
  .report-scene {
    grid-template-columns: 1fr;
  }
  .scene-visual {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .news-card {
    width: 300px;
    min-height: 320px;
  }
  .news-cover {
    height: 170px;
  }
  .news-card h3 {
    font-size: 18px;
  }
  .news-body {
    padding: 16px 18px 18px;
  }
  .report-title {
    font-size: 52px;
  }
  .report-subtitle {
    font-size: 24px;
  }
  .metric-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .metric-box strong {
    font-size: 58px;
  }
  .metric-box span {
    font-size: 16px;
  }
  .report-block h2 {
    font-size: 38px;
  }
  .report-block p,
  .report-list li {
    font-size: 16px;
  }
  .scene-copy h3 {
    font-size: 40px;
  }
  .scene-copy p {
    font-size: 16px;
  }
  .scene-number {
    font-size: 80px;
  }
  .scene-label {
    font-size: 15px;
  }
}
