/* =========================================
   VS.talent V6
   Global Design Talent Intelligence Platform
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-subtle: #0f0f0f;
  --card: #111111;
  --text: #ffffff;
  --muted: #a1a1aa;
  --muted-light: #71717a;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.2);
  --accent: #ffffff;
  --container: 1280px;
  --transition: 0.3s ease;
}

/* RESET */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* LAYOUT */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
}

.section-border {
  border-top: 1px solid var(--border);
}

.section-header {
  margin-bottom: 64px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  color: var(--muted-light);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title,
.hero-title,
.cta h2 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 500;
}

.section-title {
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.section-subtitle {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

/* NAVIGATION */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 84px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--muted);
  font-weight: 400;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  transition: color var(--transition);
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--text);
}

.nav-button {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  transition: all var(--transition);
}

.nav-button:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* HERO */

.hero {
  padding: 140px 0 120px;
}

.hero--page {
  padding: 100px 0 80px;
}

.hero-tag {
  color: var(--muted-light);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-title {
  font-size: 76px;
  line-height: 1.02;
  letter-spacing: -1px;
  max-width: 920px;
}

.hero-title--sm {
  font-size: 56px;
  letter-spacing: -2px;
}

.hero-description {
  max-width: 680px;
  color: var(--muted);
  margin-top: 32px;
  font-size: 20px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 999px;
  transition: all var(--transition);
  font-size: 15px;
  font-weight: 500;
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-sm {
  padding: 12px 24px;
  font-size: 14px;
}

/* STATS */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.stat-number {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1;
}

.stat-label {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

/* GRID */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARDS */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 20px;
  color: var(--muted);
}

.card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.card-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 16px;
}

/* FEATURE LIST */

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-number {
  font-size: 14px;
  color: var(--muted-light);
  font-weight: 500;
  min-width: 32px;
  padding-top: 4px;
}

.feature-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.feature-content p {
  color: var(--muted);
  font-size: 15px;
}

/* INSIGHTS */

.insight-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  background: var(--bg-subtle);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.insight-meta {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 16px;
}

.insight-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.insight-card p {
  color: var(--muted);
  font-size: 15px;
  flex-grow: 1;
}

.insight-link {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}

.insight-link:hover {
  gap: 12px;
}

/* REPORTS */

.report-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  gap: 32px;
}

.report-item:first-child {
  border-top: 1px solid var(--border);
}

.report-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.3px;
}

.report-desc {
  color: var(--muted);
  margin-top: 8px;
  font-size: 15px;
}

.report-meta {
  font-size: 13px;
  color: var(--muted-light);
  white-space: nowrap;
}

/* PLACEMENTS */

.placement-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 32px;
  transition: all var(--transition);
}

.placement-card:hover {
  border-color: var(--border-hover);
}

.placement-role {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.placement-brand {
  color: var(--muted);
  font-size: 14px;
}

.placement-meta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted-light);
}

/* BRANDS */

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.brand-item {
  background: var(--bg);
  padding: 40px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.5px;
  transition: all var(--transition);
}

.brand-item:hover {
  background: var(--bg-elevated);
  color: var(--text);
}

/* COVERAGE */

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.coverage-region {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}

.coverage-region h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.coverage-region .region-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 20px;
}

.coverage-cities {
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

/* SPLIT SECTION */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-content .section-title {
  font-size: 40px;
}

.split-visual {
  aspect-ratio: 4/3;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.split-visual-inner {
  text-align: center;
}

.split-visual-stat {
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -3px;
  line-height: 1;
}

.split-visual-label {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-person {
  margin-bottom: 40px;
}

.contact-name {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.contact-title {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-company {
  color: var(--muted-light);
  font-size: 14px;
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-details a {
  color: var(--muted);
  transition: color var(--transition);
  font-size: 15px;
}

.contact-details a:hover {
  color: var(--text);
}

.contact-info p {
  margin-bottom: 16px;
  color: var(--muted);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--muted-light);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

input,
textarea,
select {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: #fff;
  padding: 16px 18px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.25);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a1a1aa' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

/* CTA */

.cta {
  text-align: center;
  padding: 140px 0;
}

.cta h2 {
  font-size: 56px;
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: -2px;
  font-weight: 600;
}

.cta p {
  margin-top: 24px;
  color: var(--muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}

.cta .btn {
  margin-top: 40px;
}

/* FOOTER */

.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h5 {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--muted);
  font-size: 14px;
  transition: color var(--transition);
}

.footer-col li {
  color: var(--muted);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--muted-light);
  font-size: 13px;
}

.footer-locations {
  display: flex;
  gap: 24px;
  color: var(--muted-light);
  font-size: 13px;
}

/* PAGE SPECIFIC */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.value-item {
  background: var(--bg);
  padding: 48px 36px;
}

.value-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.value-item p {
  color: var(--muted);
  font-size: 15px;
}

.service-detail {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:first-of-type {
  border-top: 1px solid var(--border);
}

.service-detail h3 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.service-detail > p {
  color: var(--muted);
  font-size: 17px;
  max-width: 720px;
  margin-bottom: 32px;
}

.service-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 48px;
}

.service-points li {
  color: var(--muted);
  font-size: 15px;
  padding-left: 20px;
  position: relative;
}

.service-points li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted-light);
}

.team-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}

.team-card h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--muted);
  margin-bottom: 20px;
}

.team-card p {
  color: var(--muted);
  font-size: 15px;
}

/* V6 — EDITORIAL & REPORTS */

.section--dark {
  background: var(--bg-elevated);
}

.editorial-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 20px;
}

.editorial-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--muted-light);
}

.featured-report {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-subtle);
}

.featured-report-content {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-report-visual {
  background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
  border-left: 1px solid var(--border);
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

.report-series {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--border-hover);
  padding: 6px 14px;
  margin-bottom: 24px;
  width: fit-content;
}

.featured-report h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}

.featured-report-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.report-stats {
  display: flex;
  gap: 40px;
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.report-stat-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.report-stat-label {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted-light);
  letter-spacing: 0.5px;
}

.report-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.report-card {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: background var(--transition);
}

.report-card:hover {
  background: var(--bg-subtle);
}

.report-card-series {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 20px;
}

.report-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 14px;
  flex-grow: 1;
}

.report-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.report-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted-light);
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.category-pill {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all var(--transition);
}

.category-pill:hover,
.category-pill.active {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
}

/* V6 — DESIGN TALENT INTELLIGENCE */

.intel-platform {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.intel-modules {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intel-module {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 32px;
  background: var(--bg-subtle);
  transition: border-color var(--transition);
}

.intel-module:hover {
  border-color: var(--border-hover);
}

.intel-module-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.intel-module h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.intel-module-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-light);
}

.intel-module p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.data-bar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.data-bar-row:last-child {
  margin-bottom: 0;
}

.data-bar-label {
  font-size: 13px;
  color: var(--muted);
  min-width: 140px;
}

.data-bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
}

.data-bar-fill {
  height: 100%;
  background: var(--text);
  transition: width 0.6s ease;
}

.data-bar-value {
  font-size: 13px;
  color: var(--muted-light);
  min-width: 48px;
  text-align: right;
}

.benchmark-panel {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-subtle);
}

.benchmark-panel-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.benchmark-panel-header h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}

.benchmark-panel-meta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-light);
}

.benchmark-table {
  width: 100%;
  border-collapse: collapse;
}

.benchmark-table th,
.benchmark-table td {
  padding: 16px 32px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.benchmark-table th {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-light);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.02);
}

.benchmark-table td {
  color: var(--muted);
}

.benchmark-table td:first-child {
  color: var(--text);
  font-weight: 500;
}

.benchmark-table tr:last-child td {
  border-bottom: none;
}

.intel-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 48px;
}

.intel-highlight {
  background: var(--bg);
  padding: 32px;
  text-align: center;
}

.intel-highlight-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.intel-highlight-label {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

/* Intelligence categories & chart placeholders */

.intel-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.intel-category {
  background: var(--bg);
  padding: 36px 28px;
}

.intel-category h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.intel-category p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.chart-placeholder {
  border: 1px dashed var(--border-hover);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}

.chart-placeholder-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted-light);
}

.chart-placeholder-desc {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.6;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.analytics-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  background: var(--bg-subtle);
}

.analytics-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.analytics-card > p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.topic-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.topic-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  transition: background var(--transition);
}

.topic-item:last-child {
  border-bottom: none;
}

.topic-item:hover {
  background: var(--bg-subtle);
}

.topic-number {
  font-size: 13px;
  color: var(--muted-light);
  letter-spacing: 1px;
}

.topic-item h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 6px;
}

.topic-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.brand-grid--named .brand-item {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0;
}

/* V6 — CLIENT PROOF */

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 64px;
}

.proof-metric {
  background: var(--bg);
  padding: 40px 32px;
  text-align: center;
}

.proof-metric-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.proof-metric-label {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.client-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.testimonial {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  background: var(--bg-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 32px;
}

.testimonial-quote::before {
  content: '\201C';
  display: block;
  font-size: 48px;
  line-height: 1;
  color: var(--muted-light);
  margin-bottom: 8px;
  font-style: normal;
}

.testimonial-author {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--muted-light);
}

.case-study {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  transition: border-color var(--transition);
}

.case-study:hover {
  border-color: var(--border-hover);
}

.case-study-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 16px;
}

.case-study h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}

.case-study > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.case-study-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.case-outcome-value {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.case-outcome-label {
  font-size: 12px;
  color: var(--muted-light);
  margin-top: 4px;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 48px;
}

.client-logo-item {
  flex: 1 1 calc(16.666% - 1px);
  min-width: 140px;
  background: var(--bg);
  padding: 28px 20px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted-light);
  transition: all var(--transition);
}

.client-logo-item:hover {
  background: var(--bg-subtle);
  color: var(--muted);
}

/* V6 — INSIGHTS PAGE */

.report-hero {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.report-hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: end;
}

.report-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.report-hero-excerpt {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 640px;
}

.report-hero-sidebar {
  border: 1px solid var(--border);
  padding: 32px;
  background: var(--bg);
}

.report-hero-sidebar dt {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 6px;
}

.report-hero-sidebar dd {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 20px;
}

.report-hero-sidebar dd:last-child {
  margin-bottom: 0;
}

.report-index-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 40px;
  align-items: baseline;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity var(--transition);
}

.report-index-item:first-child {
  border-top: 1px solid var(--border);
}

.report-index-item:hover {
  opacity: 0.85;
}

.report-index-series {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-light);
}

.report-index-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}

.report-index-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.report-index-action {
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
  border-bottom: 1px solid var(--border-hover);
  padding-bottom: 2px;
}

.btn-text {
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border-hover);
  padding-bottom: 2px;
  transition: opacity var(--transition);
}

.btn-text:hover {
  opacity: 0.7;
}

/* Editorial Photography */

.editorial-image {
  width: 100%;
  margin: 0;
}

.editorial-image figure {
  margin: 0;
}

.editorial-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(28%);
  opacity: 0.9;
}

.editorial-image--hero img {
  height: clamp(320px, 68vh, 720px);
}

.editorial-image--break img {
  height: clamp(280px, 52vh, 560px);
}

.editorial-image--page img {
  height: clamp(240px, 42vh, 480px);
}

.editorial-image__caption {
  padding: 16px 40px 0;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted-light);
}

/* Contact — Firm */

.contact-section {
  padding: 160px 0;
}

.contact-firm {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 120px;
  align-items: start;
}

.contact-firm--compact {
  gap: 80px;
  align-items: end;
}

.contact-firm-intro .section-title {
  max-width: 520px;
}

.contact-firm-intro .section-subtitle {
  max-width: 440px;
  margin-top: 20px;
}

.contact-firm-card {
  padding-top: 8px;
}

.contact-firm-name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin-bottom: 6px;
}

.contact-firm-role,
.contact-firm-company,
.contact-firm-locations {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.contact-firm-email {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border-hover);
  padding-bottom: 2px;
  transition: opacity var(--transition);
}

.contact-firm-email:hover {
  opacity: 0.7;
}

.contact-firm-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-top: 80px;
}

.contact-firm-inquiries {
  padding-top: 8px;
}

.contact-firm-inquiries h4 {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted-light);
  font-weight: 500;
  margin-bottom: 24px;
}

.contact-firm-inquiries ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-firm-inquiries li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.contact-firm-inquiries li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-firm-inquiries strong {
  display: block;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 4px;
}

/* Homepage — editorial spacing */

body.home .section {
  padding: 148px 0;
}

body.home .section-header {
  margin-bottom: 72px;
}

body.home .section-header--center .section-subtitle {
  margin-top: 20px;
}

body.home .grid-3 {
  gap: 28px;
}

body.home .hero {
  padding-bottom: 100px;
}

body.home .contact-section {
  padding: 160px 0;
}

body.home .contact-firm--compact {
  gap: 100px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .split-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-firm,
  .contact-firm-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-section {
    padding: 100px 0;
  }

  .editorial-image__caption {
    padding: 16px 24px 0;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-title--sm {
    font-size: 44px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .featured-report,
  .intel-platform,
  .report-hero-inner {
    grid-template-columns: 1fr;
  }

  .featured-report-visual {
    border-left: none;
    border-top: 1px solid var(--border);
    min-height: auto;
  }

  .report-catalog {
    grid-template-columns: 1fr 1fr;
  }

  .client-proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .intel-highlights {
    grid-template-columns: 1fr;
  }

  .intel-categories {
    grid-template-columns: 1fr 1fr;
  }

  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .topic-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .report-index-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 0;
    border-top: 1px solid var(--border);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-menu a {
    display: block;
    padding: 20px 0;
    font-size: 18px;
  }

  .nav-menu .nav-button {
    margin-top: 24px;
    display: inline-block;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 80px;
  }

  .hero--page {
    padding: 80px 0 60px;
  }

  .hero-title {
    font-size: 42px;
    letter-spacing: -1.5px;
  }

  .hero-title--sm {
    font-size: 36px;
  }

  .hero-description {
    font-size: 17px;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .report-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cta {
    padding: 100px 0;
  }

  .cta h2 {
    font-size: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-points {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 44px;
  }

  .split-visual-stat {
    font-size: 56px;
  }

  .featured-report-content,
  .featured-report-visual {
    padding: 32px 24px;
  }

  .report-catalog {
    grid-template-columns: 1fr;
  }

  .proof-metrics {
    grid-template-columns: 1fr;
  }

  .case-study-outcomes {
    grid-template-columns: 1fr;
  }

  .report-hero h1 {
    font-size: 36px;
  }

  .benchmark-table th,
  .benchmark-table td {
    padding: 12px 16px;
    font-size: 13px;
  }

  .data-bar-label {
    min-width: 100px;
    font-size: 12px;
  }

  .client-logo-item {
    flex: 1 1 calc(50% - 1px);
  }

  .intel-categories {
    grid-template-columns: 1fr;
  }
}
