:root {
  --blue: #1e4fb8;
  --blue-dark: #15397f;
  --blue-soft: #eef2fb;
  --black: #0e1015;
  --ink: #14161e;
  --muted: #6b7280;
  --line: #e8eaee;
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(14, 16, 21, 0.04), 0 8px 24px rgba(14, 16, 21, 0.06);
  --shadow-lift: 0 1px 2px rgba(14, 16, 21, 0.06), 0 16px 40px rgba(14, 16, 21, 0.10);
  --container: 1180px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  color: var(--black);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 0.6rem 0;
}

h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -0.02em; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1rem 0; color: var(--ink); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-muted { color: var(--muted); }
.text-blue { color: var(--blue); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--black);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.nav {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Mobile nav toggle (hidden on desktop) */
.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0.55rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.nav-toggle-btn:hover { background: var(--bg-soft); }

.nav-toggle-btn span {
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
  display: block;
}

.nav a {
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.nav a:hover { background: var(--bg-soft); color: var(--black); }
.nav a.active { color: var(--blue); background: var(--blue-soft); }

.nav-cta {
  margin-left: 0.4rem;
  background: var(--blue) !important;
  color: #fff !important;
  padding: 0.55rem 1rem !important;
  font-weight: 600;
}
.nav-cta:hover { background: var(--blue-dark) !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--blue);
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(30, 79, 184, 0.25);
}
.btn:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(30, 79, 184, 0.35);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn.ghost:hover { background: var(--bg-soft); color: var(--black); border-color: #c9cfda; }

.btn.dark {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
  box-shadow: 0 4px 14px rgba(14, 16, 21, 0.2);
}
.btn.dark:hover { background: var(--ink); }

.btn-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

/* Hero */
.hero {
  position: relative;
  padding: 6rem 0 4.5rem 0;
  background:
    radial-gradient(ellipse at top left, rgba(30, 79, 184, 0.10), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(30, 79, 184, 0.06), transparent 50%),
    #ffffff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 16, 21, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 16, 21, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero > .container { position: relative; z-index: 1; }

.hero h1 .accent {
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue);
}

.hero .eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero h1 {
  max-width: 1100px;
}

.hero h1 .accent {
  color: var(--blue);
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 920px;
  margin-top: 1rem;
}

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  margin-top: 3.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat-item {
  padding: 1.6rem 1.8rem;
  border-right: 1px solid var(--line);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-item .stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.stat-item .stat-icon svg { width: 20px; height: 20px; }

.stat-item .stat-value {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* Sections */
.section { padding: 5rem 0; }
.section.soft { background: var(--bg-soft); }
.section.dark {
  background: var(--black);
  color: #d8dde6;
}
.section.dark h1,
.section.dark h2,
.section.dark h3 { color: #fff; }
.section.dark p { color: #b9c1cf; }

.section-head {
  max-width: 720px;
  margin-bottom: 2.6rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.8rem;
}

.section-lead {
  font-size: 1.08rem;
  color: var(--muted);
}

/* Grid */
.grid { display: grid; gap: 1.4rem; }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* Bento layout */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}

.bento > .card { margin: 0; }

.bento .b-wide { grid-column: span 4; }
.bento .b-tall { grid-column: span 2; }
.bento .b-half { grid-column: span 3; }
.bento .b-third { grid-column: span 2; }

.bento .b-feature {
  grid-column: span 4;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--black) 0%, #1a1f2e 100%);
  color: #fff;
  border-color: var(--black);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.bento .b-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(110, 160, 245, 0.35) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse at 80% 20%, #000 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 20%, #000 0%, transparent 60%);
  opacity: 0.5;
}

.bento .b-feature > * { position: relative; z-index: 1; }
.bento .b-feature h3 { color: #fff; font-size: 1.8rem; line-height: 1.2; }
.bento .b-feature p { color: #b9c1cf; font-size: 1.02rem; }

.bento .b-feature .feature-eyebrow {
  display: inline-block;
  color: #6ea0f5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.bento .b-feature .feature-stat {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.bento .b-feature .feature-stat .accent { color: #6ea0f5; }

/* Card */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: #d6dbe6;
}

.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* Data card (no image) */
.card.data {
  display: flex;
  flex-direction: column;
  padding: 1.8rem;
}

.card.data .card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  flex-shrink: 0;
}

.card.data .card-icon svg { width: 22px; height: 22px; }

.card.data .card-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}

.card.data h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.card.data > p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0 0 1rem 0;
}

.card.data .card-points {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0;
  border-top: 1px solid var(--line);
}

.card.data .card-points li {
  padding: 0.7rem 0 0.7rem 1.8rem;
  position: relative;
  color: var(--ink);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
}

.card.data .card-points li:last-child { border-bottom: none; }

.card.data .card-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 16px;
  height: 16px;
  background: var(--blue);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/contain no-repeat;
}

/* Info panel (replaces hero feature image) */
.info-panel {
  background: var(--black);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
}

.info-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(110, 160, 245, 0.25) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(circle at 90% 10%, #000 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at 90% 10%, #000 0%, transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}

.info-panel > * { position: relative; z-index: 1; }

.info-panel .info-eyebrow {
  display: inline-block;
  color: #6ea0f5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.info-panel h3 { color: #fff; font-size: 1.4rem; margin-bottom: 1rem; line-height: 1.3; }

.info-panel .info-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.info-panel .info-stats .info-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.info-panel .info-stats .info-stat-value .accent { color: #6ea0f5; }

.info-panel .info-stats .info-stat-label {
  font-size: 0.85rem;
  color: #9aa6b8;
}

/* Media card: image header + body */
.card.media {
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card.media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card.media:hover::after { transform: scaleX(1); }

.card.media .card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-soft);
}

.card.media .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: block;
}

.card.media:hover .card-image img { transform: scale(1.06); }

.card.media .card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 16, 21, 0) 40%, rgba(14, 16, 21, 0.55) 100%),
    linear-gradient(135deg, rgba(30, 79, 184, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.card.media .card-image .corner-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: #ffffff;
  color: var(--blue-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(14, 16, 21, 0.18);
}

.card.media .card-body {
  padding: 1.6rem 1.7rem 1.8rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.card.media .card-body h3 {
  margin-bottom: 0.2rem;
  font-size: 1.18rem;
}

.card.media .card-body .read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.6rem;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.card.media .card-body .read-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.card.media:hover .card-body .read-link::after { transform: translateX(4px); }

/* Analyst card (new design) */
.analyst-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}

.analyst-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}

.analyst-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.analyst-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.analyst-intro {
  flex: 1;
  min-width: 0;
}

.analyst-name {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.2rem 0;
}

.analyst-name h2 {
  font-size: 1.45rem;
  color: var(--black);
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.analyst-name .verify-check {
  width: 18px;
  height: 18px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.analyst-name .verify-check svg { width: 11px; height: 11px; }

.analyst-title {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.96rem;
  margin: 0 0 0.25rem 0;
}

.analyst-credential {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.analyst-body .analyst-bio {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

.analyst-body .analyst-bio:last-child { margin-bottom: 0; }

.analyst-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.analyst-meta .meta-item {
  display: flex;
  flex-direction: column;
}

.analyst-meta .meta-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.analyst-meta .meta-value {
  font-size: 0.96rem;
  color: var(--black);
  font-weight: 600;
}

/* Legacy profile card (kept for compatibility) */
.profile-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.4rem;
  align-items: start;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}

.profile-photo {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30, 79, 184, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.profile-content .profile-role {
  display: inline-block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.profile-content h2 {
  font-size: 1.9rem;
  margin-bottom: 0.3rem;
}

.profile-title {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.1rem;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.2rem 0 1.4rem 0;
}

.profile-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  background: var(--blue-soft);
  color: var(--blue-dark);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.profile-meta-item .dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.profile-credentials {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.profile-credentials .cred-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.profile-credentials .cred-value {
  font-size: 0.95rem;
  color: var(--black);
  font-weight: 600;
}

.card.dark {
  background: var(--black);
  border-color: var(--ink);
}
.card.dark h3 { color: #fff; }
.card.dark p { color: #9aa3af; }

/* Hero with side image */
.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-figure {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--line);
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30, 79, 184, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

/* Pillar / Feature row */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

.pillar {
  padding: 1.4rem 0 1.4rem 1.4rem;
  border-left: 3px solid var(--blue);
}

.pillar h3 { margin-bottom: 0.3rem; }
.pillar p { color: var(--muted); margin: 0; }

/* Numbered process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.step {
  position: relative;
  padding: 1.8rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: #d6dbe6;
}

.step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--black);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
  position: relative;
  letter-spacing: -0.02em;
}

.step .step-num::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  border: 1px solid var(--line);
  pointer-events: none;
}

.step h3 { margin-bottom: 0.4rem; font-size: 1.18rem; }
.step p { color: var(--muted); margin: 0; }

.steps.dark .step {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}
.steps.dark .step:hover { border-color: rgba(110, 160, 245, 0.35); }
.steps.dark .step h3 { color: #fff; }
.steps.dark .step p { color: #b9c1cf; }
.steps.dark .step .step-num { background: var(--blue); }

/* Pull quote / highlight block */
.highlight-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.6rem;
  background: linear-gradient(135deg, var(--black) 0%, #1a1f2e 100%);
  border-radius: var(--radius);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.highlight-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(110, 160, 245, 0.28) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at 90% 10%, #000 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at 90% 10%, #000 0%, transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}

.highlight-block > * { position: relative; z-index: 1; }

.highlight-quote-mark {
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--blue);
  line-height: 0.9;
  font-weight: 700;
}

.highlight-block .highlight-text {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.highlight-block .highlight-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #6ea0f5;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.highlight-block .highlight-author::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
}

/* Feature row (split) */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse > div:first-child { order: 2; }

.feature-row .feature-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  position: relative;
}

.feature-row .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-row:hover .feature-image img { transform: scale(1.04); }

.feature-row .feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30, 79, 184, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.feature-row .feature-eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.feature-row h2 { margin-bottom: 0.8rem; }
.feature-row .feature-lead { font-size: 1.05rem; color: var(--muted); margin-bottom: 1.4rem; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-size: 0.98rem;
  color: var(--ink);
}

.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
  background: var(--blue);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/contain no-repeat;
}

/* Marquee credibility strip */
.cred-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.4rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.cred-strip .cred-item {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cred-strip .cred-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.6;
}

/* Clean list */
.list-clean {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  column-gap: 2.4rem;
  row-gap: 0;
  border-top: 1px solid var(--line);
}

.list-clean li {
  padding: 0.95rem 0 0.95rem 1.9rem;
  position: relative;
  font-size: 1rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 18px;
  height: 18px;
  background: var(--blue);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/contain no-repeat;
}

/* Insight item */
.insight {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 1.4rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  overflow: hidden;
  display: block;
  padding: 2rem;
}

.insight.with-image {
  display: grid;
  grid-template-columns: 220px 1fr;
  padding: 0;
}

.insight.featured {
  padding: 2.4rem;
  border-left: 4px solid var(--blue);
}

.insight.featured h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.insight-meta .insight-date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-weight: 600;
}

.insight-meta .insight-date svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.insight-meta .meta-sep {
  width: 3px;
  height: 3px;
  background: var(--muted);
  border-radius: 50%;
  opacity: 0.5;
}

.insight-lead {
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 500;
}

.insight-body p {
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.insight-body p:last-child { margin-bottom: 0; }

.insight-takeaway {
  background: var(--blue-soft);
  border-left: 3px solid var(--blue);
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius-sm);
  margin: 1.5rem 0 0 0;
}

.insight-takeaway .takeaway-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 0.3rem;
  display: block;
}

.insight-takeaway p {
  color: var(--ink);
  font-size: 0.96rem;
  margin: 0;
  font-weight: 500;
}

/* Filter chips */
.filter-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.chip {
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  cursor: default;
}

.chip.active {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

/* Compact insight card */
.insight-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  border-color: #d6dbe6;
}

.insight-card h3 {
  font-size: 1.15rem;
  margin: 0.4rem 0 0.5rem 0;
}

.insight-card p {
  color: var(--muted);
  font-size: 0.93rem;
  margin: 0 0 1rem 0;
  flex-grow: 1;
}

.insight-card .read-link {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.insight-card .read-link::after { content: "→"; }

.insight:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.insight-thumb {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}

.insight-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.insight:hover .insight-thumb img {
  transform: scale(1.06);
}

.insight-body {
  padding: 1.6rem 1.8rem;
}

.insight-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag.dark { background: var(--black); color: #fff; }
.tag.outline { background: transparent; color: var(--ink); border: 1px solid var(--line); }

.insight h3 { margin: 0; }
.insight p { color: var(--muted); margin: 0.7rem 0 0 0; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: var(--black);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.4rem;
}

.contact-card h2 { color: #fff; }
.contact-card p { color: #b9c1cf; }

.contact-line {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid #1f2330;
}

.contact-line:first-of-type { border-top: none; padding-top: 0.5rem; }

.contact-label {
  color: #6ea0f5;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-width: 88px;
}

.contact-value {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-value a { color: #fff; }
.contact-value a:hover { color: #6ea0f5; }

/* Disclaimer */
.disclaimer {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 1.6rem 1.8rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.disclaimer p { color: var(--muted); margin-bottom: 0.85rem; }
.disclaimer p:last-child { margin-bottom: 0; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(circle at 90% 50%, #000 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(circle at 90% 50%, #000 0%, transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); margin: 0; }
.cta-banner .btn { background: #fff; color: var(--blue-dark); border-color: #fff; }
.cta-banner .btn:hover { background: #eef2fb; color: var(--blue-dark); }

/* Footer */
.site-footer {
  background: var(--black);
  color: #9aa3af;
  padding: 3.5rem 0 1.5rem 0;
  font-size: 0.92rem;
}

.site-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.4rem;
}

.footer-grid a {
  color: #b9c1cf;
  display: block;
  padding: 0.25rem 0;
  font-size: 0.92rem;
}

.footer-grid a:hover { color: #fff; }

.footer-brand .brand { color: #fff; margin-bottom: 0.7rem; }
.footer-brand p { color: #9aa3af; font-size: 0.92rem; }

.footer-bottom {
  border-top: 1px solid #1f2330;
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .cta-banner {
    grid-template-columns: 1fr;
    padding: 2rem;
    text-align: left;
  }
  .cta-banner > div:last-child { text-align: left !important; }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-figure { aspect-ratio: 16/10; max-width: 100%; }
  .profile-card {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 1.8rem;
  }
  .profile-photo { max-width: 240px; }
  .analyst-card { padding: 1.8rem; }
  .analyst-header { gap: 1.2rem; padding-bottom: 1.4rem; margin-bottom: 1.4rem; }
  .analyst-photo { width: 80px; height: 80px; }
  .analyst-name h2 { font-size: 1.25rem; }
  .feature-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .feature-row.reverse > div:first-child { order: 0; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento .b-feature,
  .bento .b-wide,
  .bento .b-half { grid-column: span 2; }
  .bento .b-tall,
  .bento .b-third { grid-column: span 1; }
  .highlight-block {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem;
  }
  .highlight-quote-mark { font-size: 4rem; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-item:last-child { border-bottom: none; }
  .insight.with-image { grid-template-columns: 1fr; }
  .insight-thumb { aspect-ratio: 16/9; }
  .insight-body { padding: 1.4rem 1.5rem 1.6rem; }
}

@media (max-width: 860px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    padding: 0.75rem 1.1rem;
    gap: 0.5rem;
    position: relative;
  }
  .brand { font-size: 1rem; }

  .nav-toggle-btn {
    display: flex;
    margin-left: auto;
    z-index: 2;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    padding: 0.5rem 1rem 1rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 32px rgba(14, 16, 21, 0.10);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.22s ease, opacity 0.18s ease, visibility 0.18s ease;
    gap: 0.15rem;
    margin: 0;
  }

  .nav a {
    padding: 0.85rem 1rem;
    font-size: 0.98rem;
    white-space: normal;
    border-radius: 8px;
    width: 100%;
  }

  .nav a.active { background: var(--blue-soft); }

  .nav-cta {
    margin: 0.5rem 0 0 0 !important;
    text-align: center;
    background: var(--blue) !important;
    color: #fff !important;
  }

  .nav-toggle:checked ~ .nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 720px) {
  .feature-row { grid-template-columns: 1fr; gap: 1.8rem; margin-bottom: 2.5rem; }
  .feature-row.reverse > div:first-child { order: 0; }
  .info-panel { padding: 1.8rem; }
  .info-panel .info-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.1rem; }
  .hero { padding: 2.5rem 0 2.2rem 0; }
  .hero h1 { font-size: 1.75rem; line-height: 1.18; }
  .hero-lead { font-size: 0.98rem; }
  .section { padding: 2.8rem 0; }
  .section-head { margin-bottom: 1.8rem; }
  .section-tag { font-size: 0.72rem; }
  .bento { grid-template-columns: 1fr; gap: 1rem; }
  .bento .b-feature,
  .bento .b-wide,
  .bento .b-half,
  .bento .b-tall,
  .bento .b-third { grid-column: span 1; grid-row: span 1; }
  .bento .b-feature { padding: 1.6rem; min-height: auto; }
  .bento .b-feature h3 { font-size: 1.3rem; }
  .bento .b-feature .feature-stat { font-size: 2rem; }
  .step { padding: 1.4rem; }
  .step .step-num { width: 38px; height: 38px; font-size: 1rem; margin-bottom: 0.9rem; }
  .highlight-block { padding: 1.4rem; gap: 0.6rem; }
  .highlight-block .highlight-text { font-size: 1.02rem; }
  .highlight-quote-mark { font-size: 3rem; }
  .cred-strip { gap: 0.9rem; padding: 0.9rem 1rem; }
  .cred-strip .cred-item { font-size: 0.72rem; }
  .cred-strip .cred-dot { width: 4px; height: 4px; }
  .card.data { padding: 1.4rem; }
  .card.data .card-points li { font-size: 0.88rem; padding: 0.6rem 0 0.6rem 1.3rem; }
  .insight, .insight.featured { padding: 1.5rem; }
  .insight.featured h3 { font-size: 1.3rem; }
  .insight-meta { font-size: 0.8rem; gap: 0.5rem; }
  .insight-lead { font-size: 0.96rem; }
  .insight-takeaway { padding: 0.9rem 1.1rem; }
  .info-panel { padding: 1.6rem; }
  .info-panel h3 { font-size: 1.2rem; }
  .info-panel .info-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .info-panel .info-stats .info-stat-value { font-size: 1.4rem; }
  .stat-item { padding: 1.2rem 1.4rem; }
  .stat-item .stat-value { font-size: 1.25rem; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .btn-row { gap: 0.6rem; }
  .btn-row .btn { width: 100%; justify-content: center; }
  .stat-strip { margin-top: 2.2rem; }
  .hero-lead { font-size: 1rem; }
  .section-lead { font-size: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .stat-strip {
    padding: 1.2rem;
    margin-top: 2rem;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .stat-item .stat-value { font-size: 1.3rem; }
  .stat-item .stat-label { font-size: 0.82rem; }
  .card, .insight { padding: 1.3rem; }
  .contact-card { padding: 1.5rem; }
  .cta-banner { padding: 1.6rem; }
  .list-clean {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .pillar { padding: 1rem 0 1rem 1.1rem; }
  .btn { padding: 0.75rem 1.2rem; font-size: 0.92rem; }
  .footer-bottom { font-size: 0.8rem; }
}

@media (max-width: 640px) {
  .profile-card { padding: 1.4rem; }
  .profile-content h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .stat-strip { grid-template-columns: 1fr; }
  .container { padding: 0 1rem; }
  .hero h1 { font-size: 1.55rem; }
  .hero-lead { font-size: 0.95rem; }
  .section-tag { font-size: 0.7rem; letter-spacing: 0.1em; }
  .card.data { padding: 1.2rem; }
  .card.data h3 { font-size: 1.1rem; }
  .step { padding: 1.2rem; }
  .insight, .insight.featured { padding: 1.2rem; }
  .insight.featured h3 { font-size: 1.2rem; }
  .insight h3 { font-size: 1.1rem; }
  .profile-card { padding: 1.2rem; }
  .profile-meta-item { font-size: 0.78rem; padding: 0.4rem 0.7rem; }
  .analyst-card { padding: 1.4rem; }
  .analyst-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
  }
  .analyst-photo { width: 72px; height: 72px; }
  .analyst-name h2 { font-size: 1.2rem; }
  .analyst-title { font-size: 0.92rem; }
  .analyst-credential { font-size: 0.82rem; }
  .analyst-body .analyst-bio { font-size: 0.94rem; }
  .analyst-meta {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 1.4rem;
    padding-top: 1.2rem;
  }
  .analyst-meta .meta-item {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
  }
  .analyst-meta .meta-item:last-child { border-bottom: none; padding-bottom: 0; }
  .analyst-meta .meta-item:first-child { padding-top: 0; }
  .info-panel { padding: 1.4rem; }
  .info-panel .info-stats .info-stat-value { font-size: 1.2rem; }
  .footer-grid { gap: 1.2rem; }
  .stat-item { padding: 1rem 1.2rem; }
}
