@charset "UTF-8";

/* Fonts — loaded here so they work even if JS is blocked or slow */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&family=Roboto+Mono:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════════
   OUTBOX ORIGIN — styles.css
════════════════════════════════════════════════════════ */

/* CUSTOM PROPERTIES */
:root {
  --primary:       #0E33E4;
  --primary-hover: #3F66EF;
  --bg:            #F6F6F6;
  --bg-card:       #FFFFFF;
  --bg-card-hover: #F0F0F0;
  --border:        #E2E2E2;
  --text:          #272727;
  --text-muted:    #6B6B6B;
  --text-dim:      #AAAAAA;
}

/* NAV ROOT — no stickiness; only the pill is fixed */
#nav-root {
  position: relative;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #0022ff;
  color: var(--text);
  font-family: 'Roboto Mono', monospace;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 200;
}
::selection { background: var(--primary); color: #fff; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }

/* ─────────────────────────────────
   NAVIGATION
───────────────────────────────── */
.nav-header {
  background-color: #0022ff;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  padding: 10px 14px;
  min-height: 78px;
}

.nav-inner {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  max-width: 1280px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 4px 32px rgba(0, 0, 60, 0.14), inset 0 1px 0 rgba(255,255,255,0.6);
  border-radius: 14px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}

.nav-logo img { width: 120px; height: auto; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-btn {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  transition: opacity 0.15s;
  display: inline-block;
}
.nav-btn:hover { opacity: 0.6; }

.nav-dropdown-wrap { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  padding-top: 8px;
  left: 0;
  min-width: 210px;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 60, 0.14), inset 0 1px 0 rgba(255,255,255,0.6);
  padding: 8px 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  pointer-events: none;
  will-change: opacity, transform;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
}
.nav-dropdown-wrap.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  transition: opacity 0.15s;
}
.nav-dropdown a:hover { opacity: 0.6; }

/* Sub-nav bar (Solutions) — active tab gets a solid fill, full-bleed
   solid strip drops below with a single row of flat links */
.nav-dropdown-wrap:hover .nav-btn,
.nav-dropdown-wrap.is-open .nav-btn{
  background: var(--primary);
  color: #fff;
  opacity: 1;
}
.nav-dropdown.nav-subbar{
  position: fixed;
  top: 58px;
  left: 0;
  width: 100%;
  min-width: 0;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: none;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 60, 0.14), inset 0 1px 0 rgba(255,255,255,0.6);
  padding: 18px 6vw;
}
.nav-subbar-row{ display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.nav-subbar-row a{
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.nav-cta-btn {
  display: none;
  align-items: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  background: var(--primary);
  color: #fff;
  transition: opacity 0.15s;
}
.nav-cta-btn:hover { opacity: 0.9; }

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: all 0.25s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 78px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  max-width: 1280px;
  z-index: 99;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-top: none;
  box-shadow: 0 8px 32px rgba(0, 0, 60, 0.14);
  padding: 8px 20px 20px;
  border-radius: 0 0 14px 14px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav-section {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  padding: 16px 0 4px;
}
.mobile-nav a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-nav-cta {
  display: block;
  margin-top: 16px;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  background: var(--primary);
  color: #fff !important;
  text-align: center;
  border-bottom: none !important;
}

/* Logo image */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* Star between logo and links */
.nav-star {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 6px;
}

/* ─────────────────────────────────
   FOOTER — built from the site's own
   design tokens (blue grid canvas +
   dark rounded card, same language as
   .v2-dark / .v2-pillars)
───────────────────────────────── */
footer.outbox-footer{
  background-color: #0022ff;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  padding-top: 16px;
}
.ofoot-card{
  background: #0c0c0e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  margin: 0 16px 16px;
  overflow: hidden;
}

/* Masthead: wordmark + CTA */
.ofoot-mast{
  padding: 64px 40px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ofoot-mast-top{
  display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap;
}
.ofoot-wordmark{
  font-family: 'Roboto Mono', monospace;
  font-weight: 700;
  font-size: clamp(32px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.ofoot-wordmark-dot{
  display: inline-block;
  width: 0.5em; height: 0.5em;
  background: var(--primary-hover);
  border-radius: 2px;
  margin: 0 0.06em -0.03em;
}
.ofoot-tagline-big{
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: right;
  margin: 0 0 6px;
}
.ofoot-cta-row{ margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap; }
.ofoot-btn-ghost{
  display: inline-flex; align-items: center;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-size: 14px; font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}
.ofoot-btn-ghost:hover{ border-color: rgba(255,255,255,0.32); background: rgba(255,255,255,0.05); }

/* Departures: the 3 sister products */
.ofoot-departures{
  padding: 40px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ofoot-departures-head{
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; flex-wrap: wrap; margin-bottom: 24px;
}
.ofoot-departures-note{ font-size: 13px; color: rgba(255,255,255,0.5); }

.ofoot-ticket-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ofoot-ticket{
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.ofoot-ticket:hover{ border-color: var(--primary-hover); transform: translateY(-3px); }
.ofoot-ticket-row{ display: flex; justify-content: space-between; align-items: flex-start; }
.ofoot-ticket-code{
  font-size: 12px; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.6);
}
.ofoot-ticket-dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--primary-hover); flex-shrink: 0; }
.ofoot-ticket-name{ font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.ofoot-ticket-desc{ font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.55); }
.ofoot-ticket-perf{
  border-top: 1px dashed rgba(255,255,255,0.12);
  padding-top: 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.ofoot-ticket-link{
  font-size: 14px; font-weight: 600; color: var(--primary-hover);
  display: inline-flex; align-items: center; gap: 6px;
}
.ofoot-ticket-link svg{ width: 14px; height: 14px; transition: transform 0.15s; }
.ofoot-ticket-link:hover svg{ transform: translate(2px,-2px); }
.ofoot-ticket-status{ font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); }

/* Link columns */
.ofoot-links{
  padding: 48px 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ofoot-col h4{
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.ofoot-col ul{ display: flex; flex-direction: column; gap: 12px; }
.ofoot-col a{
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.ofoot-col a:hover{ color: #fff; }
.ofoot-col-cta p{
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

/* Strategic partners */
.ofoot-partners{ padding: 40px 40px 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.ofoot-eyebrow{
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.ofoot-partner-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
}
.ofoot-partner-cell{
  background: #0c0c0e;
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  padding: 18px 20px;
  transition: background 0.2s;
}
.ofoot-partner-cell:hover{ background: rgba(255,255,255,0.04); }
.ofoot-partner-cell .mark{ font-weight: 700; font-size: 18px; letter-spacing: -0.01em; white-space: nowrap; }
.ofoot-partner-cell .sub{ display: block; font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 3px; text-align: center; }

/* Bottom bar */
.ofoot-bottom{
  padding: 22px 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.ofoot-bottom a{ color: inherit; }
.ofoot-bottom-links{ display: flex; gap: 20px; flex-wrap: wrap; }
.ofoot-bottom-links a{ text-decoration: none; transition: color 0.2s; }
.ofoot-bottom-links a:hover{ color: #fff; }
.ofoot-made{ color: rgba(255,255,255,0.35); }

@media (max-width: 980px){
  .ofoot-links{ grid-template-columns: repeat(3, 1fr); }
  .ofoot-partner-grid{ grid-template-columns: repeat(3, 1fr); }
  .ofoot-ticket-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .ofoot-mast-top{ flex-direction: column; align-items: flex-start; }
  .ofoot-tagline-big{ text-align: left; }
  .ofoot-links{ grid-template-columns: 1fr 1fr; padding: 40px 20px; }
  .ofoot-mast{ padding: 40px 20px 32px; }
  .ofoot-departures{ padding: 32px 20px; }
  .ofoot-partners{ padding: 32px 20px 36px; }
  .ofoot-bottom{ padding: 20px; }
  .ofoot-partner-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* ─────────────────────────────────
   SHARED COMPONENTS
───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn-blue {
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border: none;
}
.btn-blue:hover { opacity: 0.9; }
.btn-blue-lg { padding: 16px 40px; }
.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 14px 28px;
}
.btn-outline:hover { color: var(--text); }

.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.dot-md   { width: 6px; height: 6px; }
.dot-lg   { width: 8px; height: 8px; }
.dot-hover { background: var(--primary-hover); }

/* ─────────────────────────────────
   HOME — HERO
───────────────────────────────── */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 24px 80px;
}
.hero-inner { max-width: 896px; }
.hero-logo { margin-bottom: 40px; }
.hero-logo img { width: 280px; height: auto; }
.hero h1 {
  font-size: 48px;
  font-weight: 200;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero h1 .blue { color: var(--primary); }
.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ─────────────────────────────────
   HOME — SECTIONS
───────────────────────────────── */
.home-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.home-section-last { padding-bottom: 96px; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 32px;
}

/* Solutions Grid */
.solutions-grid { display: grid; gap: 20px; }
.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.solution-card-header { margin-bottom: 16px; }
.solution-card-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  transition: opacity 0.15s;
  display: block;
}
.solution-card-name:hover { opacity: 0.8; }
.solution-card-href { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
.card-divider-primary { border: none; border-top: 1px solid var(--primary); margin: 0 0 16px; }
.solution-services { display: flex; flex-direction: column; gap: 10px; }
.solution-service { display: flex; align-items: center; gap: 10px; }
.solution-service a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.15s;
}
.solution-service a:hover { color: var(--text); }

/* Audiences Grid */
.audiences-grid { display: grid; gap: 20px; }
.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.audience-card-name {
  font-weight: 600;
  font-size: 16px;
  transition: opacity 0.15s;
  display: block;
}
.audience-card-name:hover { opacity: 0.8; }
.audience-card-href { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
.audience-card-desc {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 12px 0 16px;
}
.audience-services { display: flex; flex-direction: column; gap: 10px; }
.audience-service { display: flex; align-items: center; justify-content: space-between; }
.audience-service-left { display: flex; align-items: center; gap: 10px; }
.audience-service-left a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.15s;
}
.audience-service-left a:hover { color: var(--text); }
.audience-service-href { font-size: 12px; color: var(--text-dim); flex-shrink: 0; margin-left: 8px; }

/* Insights Box */
.insights-box {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 96px;
}
.insights-header-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
}
.insights-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}
.insights-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.insights-subtitle { font-size: 14px; color: var(--text-muted); }
.insights-count-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  text-align: right;
}
.insights-count-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-align: right;
}
.insights-types { display: grid; gap: 16px; }
.insights-type-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}
.insights-type-name { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.insights-type-desc { font-size: 12px; line-height: 1.6; color: var(--text-muted); }
.insights-clusters { display: grid; gap: 20px; }
.cluster-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}
.cluster-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cluster-card-name {
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.15s;
}
.cluster-card-name:hover { opacity: 0.8; }
.cluster-card-count { font-size: 12px; font-weight: 600; color: var(--primary); }
.cluster-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 12px; }
.cluster-articles { display: flex; flex-direction: column; gap: 10px; }
.cluster-article { font-size: 12px; line-height: 1.6; color: var(--text-muted); }
.cluster-more {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-hover);
  transition: opacity 0.15s;
}
.cluster-more:hover { opacity: 0.8; }

/* CTA Banner */
.cta-banner { border-top: 1px solid var(--border); }
.cta-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 16px;
}
.cta-heading { font-size: 36px; font-weight: 700; margin-bottom: 16px; }
.cta-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 512px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* ─────────────────────────────────
   ABOUT PAGE
───────────────────────────────── */
.about-page {
  max-width: 1024px;
  margin: 0 auto;
  padding: 64px 24px;
}
.page-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 24px;
}
.about-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 48px;
}
.about-heading .blue { color: var(--primary); }
.about-body { display: grid; gap: 48px; margin-bottom: 64px; }
.about-body p { font-size: 18px; line-height: 1.7; color: var(--text-muted); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 64px;
  text-align: center;
}
.about-stat-num {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1;
}
.about-stat-label { font-size: 14px; color: var(--text-muted); }
.about-belief {
  background: var(--primary);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  color: #fff;
}
.about-belief-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin-bottom: 16px;
}
.about-belief-quote { font-size: 24px; font-weight: 700; line-height: 1.3; }

/* ─────────────────────────────────
   WORK PAGE
───────────────────────────────── */
.work-page {
  max-width: 1024px;
  margin: 0 auto;
  padding: 64px 24px;
}
.page-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
.page-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.work-grid { display: grid; gap: 20px; margin-bottom: 64px; }
.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.work-card-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 8px;
}
.work-card-title { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.work-card-desc { font-size: 14px; line-height: 1.65; color: var(--text-muted); }

/* ─────────────────────────────────
   CONTACT PAGE
───────────────────────────────── */
.contact-page {
  max-width: 672px;
  margin: 0 auto;
  padding: 64px 24px;
}
.form-space { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; gap: 20px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,51,228,0.12);
}
.form-textarea { resize: none; }
.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.15s;
}
.form-submit:hover { opacity: 0.9; }

/* ─────────────────────────────────
   INSIGHTS HUB PAGE
───────────────────────────────── */
.insights-page {
  max-width: 1152px;
  margin: 0 auto;
  padding: 64px 24px;
}
.clusters-list { display: flex; flex-direction: column; gap: 20px; }
.cluster-full-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.cluster-full-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.cluster-full-name {
  font-weight: 600;
  font-size: 16px;
  transition: opacity 0.15s;
}
.cluster-full-name:hover { opacity: 0.8; }
.cluster-full-count { font-size: 14px; font-weight: 600; color: var(--primary); }
.cluster-full-desc { font-size: 12px; line-height: 1.6; color: var(--text-muted); margin-bottom: 16px; }
.cluster-full-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 16px; }
.cluster-samples { display: grid; gap: 8px; }
.cluster-sample-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  background: var(--bg);
  border-radius: 8px;
}
.cluster-sample-item .dot { margin-top: 3px; }
.cluster-sample-text { font-size: 12px; line-height: 1.6; color: var(--text-muted); transition: color 0.15s; }
a.cluster-sample-item { transition: background 0.15s; }
a.cluster-sample-item:hover { background: rgba(0,0,0,0.06); }
a.cluster-sample-item:hover .cluster-sample-text { color: var(--text); }
.v2-inner-card a.cluster-sample-item:hover { background: #E8E4D6; }
.cluster-more-count { margin-top: 12px; font-size: 12px; color: var(--text-dim); }

/* ─────────────────────────────────
   SERVICE PAGE TEMPLATE
───────────────────────────────── */
.service-page {
  max-width: 896px;
  margin: 0 auto;
  padding: 64px 24px;
}
.service-back { margin-bottom: 24px; }
.service-back a {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  transition: color 0.15s;
}
.service-back a:hover { color: var(--text); }
.service-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-hover);
  margin-bottom: 16px;
}
.service-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
.service-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.service-audience-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}
.service-divider {
  border: none;
  border-top: 1px solid var(--primary);
  margin-bottom: 40px;
}
.service-links { display: grid; gap: 16px; }
.service-link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: background 0.15s;
}
.service-link-card:hover { background: var(--bg-card-hover); }
.service-link-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.service-link-card:hover .service-link-text { color: var(--text); }
.service-cta { margin-top: 64px; text-align: center; }

/* ─────────────────────────────────
   INSIGHTS CATEGORY PAGE
───────────────────────────────── */
.insights-cat-page {
  max-width: 1024px;
  margin: 0 auto;
  padding: 64px 24px;
}
.insights-cat-back { margin-bottom: 16px; }
.insights-cat-back a {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color 0.15s;
}
.insights-cat-back a:hover { color: var(--text); }
.insights-cat-heading-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.insights-cat-heading-row h1 { font-size: 30px; font-weight: 200; }
.insights-cat-count { margin-left: auto; font-size: 14px; font-weight: 600; color: var(--primary); }
.insights-cat-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.insights-cat-divider { border: none; border-top: 1px solid var(--primary); margin-bottom: 32px; }
.articles-grid { display: grid; gap: 16px; }
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.article-title { font-size: 14px; font-weight: 500; line-height: 1.45; margin-bottom: 12px; }
.article-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 500;
}
.tag-explainer  { background: #3b7fe822; color: #3b7fe8; border: 1px solid #3b7fe844; }
.tag-seo        { background: #2dce8922; color: #2dce89; border: 1px solid #2dce8944; }
.tag-geo        { background: #8b5cf622; color: #8b5cf6; border: 1px solid #8b5cf644; }
.tag-guide      { background: #f59e0b22; color: #f59e0b; border: 1px solid #f59e0b44; }
.tag-case-study { background: #ec489922; color: #ec4899; border: 1px solid #ec489944; }
.articles-more  { margin-top: 24px; font-size: 12px; color: var(--text-muted); }

/* ─────────────────────────────────
   PLACEHOLDER PAGES
───────────────────────────────── */
.placeholder-page {
  max-width: 896px;
  margin: 0 auto;
  padding: 64px 24px;
}
.placeholder-center {
  text-align: center;
  padding: 64px 0;
  color: var(--text-muted);
}
.placeholder-center p { font-size: 14px; margin-bottom: 16px; }
.placeholder-center a { font-size: 14px; font-weight: 600; color: var(--primary); }

/* ─────────────────────────────────
   RESPONSIVE
───────────────────────────────── */
@media (min-width: 768px) {
  .nav-desktop  { display: flex; }
  .nav-cta-btn  { display: flex; }
  .nav-burger   { display: none; }

  .hero h1      { font-size: 60px; }

  .solutions-grid   { grid-template-columns: repeat(3, 1fr); }
  .audiences-grid   { grid-template-columns: repeat(2, 1fr); }
  .insights-types   { grid-template-columns: repeat(3, 1fr); }
  .insights-clusters { grid-template-columns: repeat(3, 1fr); }
  .work-grid        { grid-template-columns: repeat(2, 1fr); }
  .about-body       { grid-template-columns: repeat(2, 1fr); }
  .articles-grid    { grid-template-columns: repeat(2, 1fr); }
  .cluster-samples  { grid-template-columns: repeat(2, 1fr); }
  .service-links    { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: repeat(2, 1fr); }

  .service-title  { font-size: 48px; }
  .page-title     { font-size: 48px; }
  .about-heading  { font-size: 60px; }
  .cta-heading    { font-size: 36px; }
}

/* ═══════════════════════════════════════════════════════
   V2 HOME PAGE SECTIONS
════════════════════════════════════════════════════════ */

/* Homepage main — blue bg fills any gaps between sections */
.v2-main {
  background-color: #0022ff;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  overflow: hidden;
}

/* V2 page wrapper — blue bg so dark card sits on blue */
.v2-page {
  background-color: #0022ff;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* NAV — text logo (legacy, kept for other pages) */
.nav-logo-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-transform: uppercase;
}

/* ─────────────────────────────────
   V2 HERO
───────────────────────────────── */
.v2-hero {
  background: transparent;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding-bottom: 32px;
}

.v2-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.v2-hero-text {
  flex: 1;
  min-width: 0;
}

.v2-hero-h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}

.v2-hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

.v2-hero-visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.v2-hero-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Hero image */
.v2-hero-img {
  width: 420px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ─────────────────────────────────
   CSS 3D RUBIK'S CUBE
───────────────────────────────── */
.v2-cube-wrap {
  perspective: 700px;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-cube {
  width: 160px;
  height: 160px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-22deg) rotateY(38deg);
  animation: cube-float 5s ease-in-out infinite;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.45));
}

@keyframes cube-float {
  0%, 100% { transform: rotateX(-22deg) rotateY(38deg) translateY(0); }
  50%       { transform: rotateX(-22deg) rotateY(38deg) translateY(-14px); }
}

.v2-cube-face {
  position: absolute;
  width: 160px;
  height: 160px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: #111;
  padding: 4px;
  border: 1px solid rgba(0,0,0,0.6);
}

.v2-cube-top   { transform: rotateX(90deg)  translateZ(80px); }
.v2-cube-front { transform:                 translateZ(80px); }
.v2-cube-right { transform: rotateY(90deg)  translateZ(80px); }

.v2-tile { border-radius: 3px; }

/* ─────────────────────────────────
   V2 DARK MANIFESTO
───────────────────────────────── */
.v2-dark {
  background: #0c0c0e;
  overflow: hidden;
  border-radius: 24px;
  margin: 0 16px 16px;
}

.v2-dark-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.v2-dark-left {
  flex: 0 0 46%;
  position: relative;
  overflow: hidden;
  align-self: stretch;
  min-height: 60vh;
}

.v2-dark-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  z-index: 2;
}

.v2-blue-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #0022ff;
  opacity: 0.9;
  top: 8%;
  left: 4%;
  z-index: 1;
}

.v2-collage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding-bottom: 0;
  z-index: 2;
}

.v2-collage-fig {
  border-radius: 8px 8px 0 0;
  background: #2a2a2a;
}

.v2-fig-a {
  width: 90px;
  height: 260px;
  background: linear-gradient(to top, #1e1e2e 0%, #2d2d42 100%);
  transform: translateY(10px);
}

.v2-fig-b {
  width: 100px;
  height: 300px;
  background: linear-gradient(to top, #1a1a2a 0%, #252535 100%);
}

.v2-fig-c {
  width: 88px;
  height: 260px;
  background: linear-gradient(to top, #1e1e2e 0%, #2d2d42 100%);
  transform: translateY(20px);
}

.v2-dark-right {
  flex: 1.1;
}

.v2-dark-h2 {
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
}

.v2-dark-p {
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  text-align: justify;
}

/* ─────────────────────────────────
   V2 THREE PILLARS
───────────────────────────────── */
.v2-pillars {
  background-color: #0022ff;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
}

.v2-pillars-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 120px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.v2-pillar {
  background: #0c0c0e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 32px;
}

.v2-pillar-h {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.v2-pillar-p {
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  text-align: justify;
}

/* ─────────────────────────────────
   V2 RESPONSIVE
───────────────────────────────── */
@media (min-width: 768px) {
  .v2-pillars-inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .v2-hero-inner    { flex-direction: column; padding: 60px 24px; }
  .v2-hero-visual   { display: none; }
  .v2-dark-inner    { flex-direction: column; padding: 60px 24px; }
  .v2-dark-left     { flex: 0 0 auto; width: 100%; min-height: 60vh; }
  .v2-pillars-inner { padding: 60px 24px; gap: 36px; }
}

/* ═══════════════════════════════════════════════════════
   V2 INNER PAGE LAYOUT
════════════════════════════════════════════════════════ */

/* Page header rendered on the blue grid */
.v2-inner-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px 48px;
}

.v2-inner-back {
  margin-bottom: 20px;
}
.v2-inner-back a {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  transition: color 0.15s;
}
.v2-inner-back a:hover { color: rgba(255,255,255,0.8); }

.v2-inner-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.v2-inner-h1 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.v2-inner-heading-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.v2-inner-count {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}

.v2-inner-lead {
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
}

/* Dark content card sitting on the blue grid */
.v2-inner-card {
  background: #0c0c0e;
  border-radius: 24px;
  margin: 0 16px 16px;
  overflow: hidden;

  /* Flip all CSS-variable-driven colors to dark theme */
  --bg:            #0c0c0e;
  --bg-card:       #1a1a1e;
  --bg-card-hover: #222228;
  --border:        rgba(255,255,255,0.1);
  --text:          #ffffff;
  --text-muted:    rgba(255,255,255,0.55);
  --text-dim:      rgba(255,255,255,0.3);
}

@media (max-width: 767px) {
  .v2-inner-hero { padding: 40px 24px 32px; }
  .v2-inner-card { margin: 0 8px 8px; border-radius: 16px; }
}

/* Cream inner boxes inside the dark card */
.v2-inner-card .article-card,
.v2-inner-card .work-card,
.v2-inner-card .cluster-full-card,
.v2-inner-card .insights-header-card,
.v2-inner-card .insights-type-card,
.v2-inner-card .about-stats,
.v2-inner-card .audience-card,
.v2-inner-card .solution-card,
.v2-inner-card .service-link-card,
.v2-inner-card .service-audience-note,
.v2-inner-card .cluster-sample-item,
.v2-inner-card .form-input,
.v2-inner-card .form-textarea {
  background: #F0EDE0;
  --border:        rgba(0,0,0,0.1);
  --text:          #272727;
  --text-muted:    #6B6B6B;
  --text-dim:      #AAAAAA;
  color: #272727;
}

.v2-inner-card .service-link-card:hover { background: #E8E4D6; }

/* ═══════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE
════════════════════════════════════════════════════════ */

/* ── Tablet: 768px – 1023px ── */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Nav */
  .nav-inner       { padding: 0 16px; }

  /* Hero */
  .v2-hero-inner   { padding: 60px 32px; gap: 24px; }
  .v2-hero-img     { width: 300px; }

  /* Dark section */
  .v2-dark-inner   { padding: 60px 32px; gap: 32px; }
  .v2-dark-left    { flex: 0 0 44%; min-height: 50vh; }

  /* Pillars */
  .v2-pillars-inner { padding: 60px 32px 80px; gap: 24px; }
  .v2-pillar        { padding: 28px 24px; }

  /* Inner pages */
  .v2-inner-hero   { padding: 48px 32px 36px; }
  .about-page, .work-page, .contact-page, .service-page,
  .insights-page, .insights-cat-page, .placeholder-page { padding: 48px 32px; }
}

/* ── Mobile: up to 767px ── */
@media (max-width: 767px) {
  /* Typography */
  .v2-dark-h2      { font-size: clamp(22px, 6vw, 32px); }
  .v2-inner-h1     { font-size: clamp(26px, 8vw, 40px); }
  .page-title      { font-size: 26px; }
  .service-title   { font-size: 26px; }
  .about-heading   { font-size: 32px; }

  /* Hero */
  .v2-hero         { min-height: 50vh; }
  .v2-hero-text    { text-align: left; }

  /* Dark section */
  .v2-dark         { margin: 0 8px 8px; }
  .v2-dark-left    { min-height: 45vh; }

  /* Pillars */
  .v2-pillar       { padding: 28px 24px; }

  /* Inner card padding */
  .about-page, .work-page, .contact-page, .service-page,
  .insights-page, .insights-cat-page, .placeholder-page { padding: 40px 20px; }

  /* Grids → single column on mobile */
  .work-grid       { grid-template-columns: 1fr; }
  .service-links   { grid-template-columns: 1fr; }
  .articles-grid   { grid-template-columns: 1fr; }
  .cluster-samples { grid-template-columns: 1fr; }
  .insights-types  { grid-template-columns: 1fr; }
  .about-body      { grid-template-columns: 1fr; gap: 20px; }

  /* About stats */
  .about-stats     { grid-template-columns: repeat(3, 1fr); padding: 20px 16px; gap: 12px; }
  .about-stat-num  { font-size: 36px; }

  /* Form */
  .form-row        { grid-template-columns: 1fr; }

  /* Insights header */
  .insights-header-top { flex-direction: column; gap: 12px; }
  .insights-count-num  { text-align: left; }
  .insights-count-label { text-align: left; }
}

/* ── Small mobile: up to 480px ── */
@media (max-width: 480px) {
  /* Nav pill */
  .nav-inner       { padding: 0 14px; height: 52px; }
  .nav-logo-img    { height: 28px; }
  .mobile-nav      { top: 72px; }

  /* Hero */
  .v2-hero-inner   { padding: 40px 16px; }
  .v2-hero         { min-height: 40vh; }

  /* Dark section */
  .v2-dark         { margin: 0 8px 8px; }
  .v2-dark-inner   { padding: 40px 16px; }
  .v2-dark-left    { min-height: 40vh; }
  .v2-blue-circle  { width: 120px; height: 120px; }

  /* Pillars */
  .v2-pillars-inner { padding: 40px 16px 60px; gap: 16px; }
  .v2-pillar        { padding: 24px 18px; }

  /* Inner page */
  .v2-inner-hero   { padding: 32px 16px 24px; }
  .v2-inner-card   { margin: 0 8px 8px; border-radius: 14px; }
  .about-page, .work-page, .contact-page, .service-page,
  .insights-page, .insights-cat-page, .placeholder-page { padding: 32px 16px; }

  /* About stats — stack on tiny screens */
  .about-stats     { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .about-stat-num  { font-size: 40px; }

  /* Cluster cards */
  .cluster-full-top { flex-direction: column; align-items: flex-start; gap: 4px; }

  /* Insights heading row */
  .v2-inner-heading-row { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ═══════════════════════════════════════════════════════
   ARTICLE PAGE
════════════════════════════════════════════════════════ */

.article-page {
  max-width: 752px;
  margin: 0 auto;
  padding: 64px 24px 40px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

/* Prose body */
.article-body h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.article-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 10px;
}
.article-body p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.article-body ul,
.article-body ol {
  margin: 0 0 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}
.article-body strong { color: var(--text); font-weight: 600; }
.article-callout {
  background: var(--bg);
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 28px 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
}

/* Clickable article card */
a.article-card { display: block; transition: background 0.15s; }
a.article-card:hover { background: var(--bg-card-hover); }
a.article-card:hover .article-title { color: var(--text); }
.article-title { transition: color 0.15s; }

/* Related articles section */
.related-section {
  max-width: 752px;
  margin: 0 auto;
  padding: 40px 24px 64px;
  border-top: 1px solid var(--border);
}
.related-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 8px;
}
.related-heading {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}
.related-grid { display: grid; gap: 12px; }
@media (min-width: 768px) {
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}
.related-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: block;
  transition: background 0.15s;
}
.related-card:hover { background: var(--bg-card-hover); }
.related-card-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 8px;
}
.related-card-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
  transition: color 0.15s;
}
.related-card:hover .related-card-title { color: var(--text); }

/* Related card gets cream treatment inside dark card */
.v2-inner-card .related-card {
  background: #F0EDE0;
  --border:     rgba(0,0,0,0.1);
  --text:       #272727;
  --text-muted: #6B6B6B;
  color: #272727;
}
.v2-inner-card .related-card:hover { background: #E8E4D6; }

@media (max-width: 767px) {
  .article-page     { padding: 40px 20px 32px; }
  .article-body h2  { font-size: 18px; }
  .related-section  { padding: 32px 20px 48px; }
}

/* ═══════════════════════════════════════════════════════
   ARTICLE LAYOUT + SIDEBAR
════════════════════════════════════════════════════════ */

.article-layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px 48px;
  align-items: start;
}
.article-layout .article-page {
  max-width: none;
  margin: 0;
  padding: 0;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 24px;
}

.side-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}
.side-block-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.side-pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.side-cat-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 100px;
}

.side-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.15s;
}
.side-service-link:first-child { border-top: none; padding-top: 0; }
.side-service-link .side-arrow {
  flex-shrink: 0;
  color: var(--primary);
  opacity: 0;
  transition: opacity 0.15s;
}
.side-service-link:hover { color: var(--text); }
.side-service-link:hover .side-arrow { opacity: 1; }

.side-insight-link {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.side-insight-link:first-child { border-top: none; padding-top: 0; }
.side-insight-eyebrow {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.side-insight-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  transition: opacity 0.15s;
}
.side-insight-link:hover .side-insight-title { opacity: 0.7; }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; padding: 56px 20px 32px; }
  .article-sidebar { position: static; }
}
@media (max-width: 767px) {
  .article-layout { padding: 40px 16px 24px; gap: 16px; }
}

/* ═══════════════════════════════════════════════════════
   INSIGHTS HUB v2
════════════════════════════════════════════════════════ */

.insights-hub-wrap {
  max-width: 1152px;
  margin: 0 auto;
  padding: 64px 24px 56px;
}

.insights-hub-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.insights-hub-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 14px;
}

.insights-hub-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.insights-hub-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 20px;
}

.insights-type-row { display: flex; flex-wrap: wrap; gap: 8px; }

.insights-type-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.insights-hub-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0;
}

.insights-stat-item { text-align: right; }

.insights-stat-num {
  font-size: 52px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.insights-stat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Cluster grid */
.insights-cluster-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) { .insights-cluster-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .insights-cluster-grid { grid-template-columns: repeat(3, 1fr); } }

.ins-cluster {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.ins-cluster:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.22); }

.v2-inner-card .ins-cluster { background: #1c1c22; border-color: rgba(255,255,255,0.08); }
.v2-inner-card .ins-cluster:hover { border-color: rgba(255,255,255,0.2); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }

.ins-cluster-accent { height: 5px; flex-shrink: 0; }

.ins-cluster-inner {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ins-cluster-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.ins-cluster-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.ins-cluster-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.01em;
  display: block;
  transition: opacity 0.15s;
}
.ins-cluster-name:hover { opacity: 0.65; }

.ins-cluster-total {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

.ins-cluster-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.ins-articles-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  margin-bottom: 18px;
}

.ins-article-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.15s;
}
a.ins-article-row:hover { background: rgba(255,255,255,0.07); }
.v2-inner-card a.ins-article-row:hover { background: rgba(255,255,255,0.05); }

.ins-article-dot {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: transparent;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.ins-article-dot::before {
  content: '—';
  font-size: 9px;
  font-weight: 400;
  color: rgba(255,255,255,0.2);
  line-height: 1;
}
.ins-article-live .ins-article-dot {
  background: rgba(122,143,255,0.15);
  border-color: #7a8fff;
}
.ins-article-live .ins-article-dot::before {
  content: '✓';
  font-size: 11px;
  font-weight: 700;
  color: #7a8fff;
}

.ins-article-title {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
  flex: 1;
  transition: color 0.15s;
}
a.ins-article-row:hover .ins-article-title { color: var(--text); }

.ins-article-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ins-badge-live { background: rgba(122,143,255,0.15); color: #8fa0ff; border: 1px solid rgba(122,143,255,0.4); }
.ins-badge-soon { border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.25); }

.ins-cluster-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.ins-more-label { font-size: 11px; color: var(--text-dim); }

.ins-explore-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  transition: letter-spacing 0.2s;
}
.v2-inner-card .ins-explore-link { color: #7a8fff; }
.ins-explore-link:hover { letter-spacing: 0.06em; }

@media (max-width: 767px) {
  .insights-hub-intro { flex-direction: column; gap: 28px; }
  .insights-hub-stats { flex-direction: row; align-items: center; }
  .insights-stat-item { text-align: left; }
  .insights-hub-wrap { padding: 40px 20px 48px; }
}

/* ═══════════════════════════════════════════════════════
   CATEGORY PAGE ARTICLE CARDS v2
════════════════════════════════════════════════════════ */

.cat-brand     { --cat-color: #0022ff; }
.cat-digital   { --cat-color: #2dce89; }
.cat-media     { --cat-color: #8b5cf6; }
.cat-b2b       { --cat-color: #f59e0b; }
.cat-startups  { --cat-color: #ef4444; }
.cat-d2c       { --cat-color: #3b82f6; }
.cat-creators  { --cat-color: #ec4899; }
.cat-technical { --cat-color: #6366f1; }
.cat-marketing { --cat-color: #10b981; }
.cat-media-2   { --cat-color: #14b8a6; }

/* Lighter tints for dark backgrounds so the category label is readable */
.v2-inner-card .cat-brand     { --cat-color: #7a8fff; }
.v2-inner-card .cat-digital   { --cat-color: #4ee3a4; }
.v2-inner-card .cat-media     { --cat-color: #a78bfa; }
.v2-inner-card .cat-b2b       { --cat-color: #fbbf24; }
.v2-inner-card .cat-startups  { --cat-color: #f87171; }
.v2-inner-card .cat-d2c       { --cat-color: #60a5fa; }
.v2-inner-card .cat-creators  { --cat-color: #f472b6; }
.v2-inner-card .cat-technical { --cat-color: #818cf8; }
.v2-inner-card .cat-marketing { --cat-color: #34d399; }
.v2-inner-card .cat-media-2   { --cat-color: #2dd4bf; }

/* Category-specific card hover glow */
.v2-inner-card .cat-brand     a.article-card-v2:hover { border-color: rgba(122,143,255,0.55); box-shadow: 0 12px 40px rgba(122,143,255,0.14); }
.v2-inner-card .cat-digital   a.article-card-v2:hover { border-color: rgba(78,227,164,0.55);  box-shadow: 0 12px 40px rgba(78,227,164,0.12); }
.v2-inner-card .cat-media     a.article-card-v2:hover { border-color: rgba(167,139,250,0.55); box-shadow: 0 12px 40px rgba(167,139,250,0.12); }
.v2-inner-card .cat-b2b       a.article-card-v2:hover { border-color: rgba(251,191,36,0.55);  box-shadow: 0 12px 40px rgba(251,191,36,0.12); }
.v2-inner-card .cat-startups  a.article-card-v2:hover { border-color: rgba(248,113,113,0.55); box-shadow: 0 12px 40px rgba(248,113,113,0.12); }
.v2-inner-card .cat-d2c       a.article-card-v2:hover { border-color: rgba(96,165,250,0.55);  box-shadow: 0 12px 40px rgba(96,165,250,0.12); }
.v2-inner-card .cat-creators  a.article-card-v2:hover { border-color: rgba(244,114,182,0.55); box-shadow: 0 12px 40px rgba(244,114,182,0.12); }
.v2-inner-card .cat-technical a.article-card-v2:hover { border-color: rgba(129,140,248,0.55); box-shadow: 0 12px 40px rgba(129,140,248,0.12); }
.v2-inner-card .cat-marketing a.article-card-v2:hover { border-color: rgba(52,211,153,0.55);  box-shadow: 0 12px 40px rgba(52,211,153,0.12); }
.v2-inner-card .cat-media-2   a.article-card-v2:hover { border-color: rgba(45,212,191,0.55);  box-shadow: 0 12px 40px rgba(45,212,191,0.12); }

.articles-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
@media (min-width: 640px) { .articles-grid-v2 { grid-template-columns: repeat(2, 1fr); } }

.article-card-v2 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
a.article-card-v2 { transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
a.article-card-v2:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.2); }

.v2-inner-card .article-card-v2 { background: #1c1c22; border-color: rgba(255,255,255,0.08); }
.v2-inner-card a.article-card-v2:hover { border-color: rgba(255,255,255,0.22); box-shadow: 0 12px 40px rgba(0,0,0,0.5); }

.article-card-bar {
  height: 5px;
  background: var(--cat-color, var(--primary));
  flex-shrink: 0;
}
.article-card-soon .article-card-bar { opacity: 0.2; }

.article-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-card-type {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cat-color, var(--primary));
}
.article-card-soon .article-card-type { color: var(--text-dim); }

.article-card-title-v2 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  flex: 1;
  transition: opacity 0.15s;
}
a.article-card-v2:hover .article-card-title-v2 { opacity: 0.8; }
.article-card-soon .article-card-title-v2 { opacity: 0.45; }

.article-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.article-card-tags-row { display: flex; flex-wrap: wrap; gap: 4px; }

.article-read-arrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cat-color, var(--primary));
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s;
}
a.article-card-v2:hover .article-read-arrow { opacity: 1; }

.article-coming-soon {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 2px 7px;
  border-radius: 4px;
}

/* ─────────────────────────────────
   GLOSSARY PAGE
───────────────────────────────── */
.glossary-page { padding: 40px; }

.glossary-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.glossary-search { flex: 1; min-width: 220px; }
.glossary-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.glossary-filter-btn {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.glossary-filter-btn:hover { border-color: var(--primary); color: var(--text); }
.glossary-filter-btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.glossary-count {
  font-size: 13px;
  color: var(--text-dim);
  white-space: nowrap;
  margin-left: auto;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.glossary-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.glossary-card:hover {
  transform: translateY(-3px);
  border-color: var(--cat-color, var(--primary));
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}
.glossary-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.glossary-card-term {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.glossary-card-def {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  flex: 1;
}
.glossary-card-tag {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cat-color, var(--primary));
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 100px;
}

.glossary-empty {
  display: none;
  text-align: center;
  padding: 60px 20px;
  font-size: 14px;
  color: var(--text-dim);
}

.glossary-popular {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.glossary-popular-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.glossary-chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.glossary-chip {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.glossary-chip:hover { border-color: var(--primary); color: var(--text); }

@media (max-width: 1023px) {
  .glossary-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .glossary-page { padding: 24px 20px; }
  .glossary-grid { grid-template-columns: 1fr; }
  .glossary-count { margin-left: 0; width: 100%; }
}

/* ─────────────────────────────────
   GLOSSARY TERM DETAIL PAGE
───────────────────────────────── */
/* .cat-* custom colors only resolve inside .v2-inner-card; the eyebrow sits
   on the blue hero above it, so give it fixed, background-safe colors */
.v2-inner-eyebrow.gd-eyebrow.cat-brand   { color: #7a8fff; }
.v2-inner-eyebrow.gd-eyebrow.cat-digital { color: #4ee3a4; }
.v2-inner-eyebrow.gd-eyebrow.cat-media   { color: #a78bfa; }
.v2-inner-eyebrow.gd-eyebrow.cat-b2b     { color: #fbbf24; }

.gd-page { padding: 40px; }

.gd-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.gd-sections { display: flex; flex-direction: column; }
.gd-section {
  display: flex;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.gd-section:last-child { border-bottom: none; padding-bottom: 0; }
.gd-section:first-child { padding-top: 0; }

.gd-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.gd-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.gd-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 640px;
}

.gd-example-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 640px;
}
.gd-example-brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}
.gd-example-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .gd-page { padding: 24px 20px; }
  .gd-example-card { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ─────────────────────────────────
   SOLUTION DETAIL PAGE — What We Offer + Our Approach
   (extends .service-page: .service-back / .service-eyebrow / .service-title / .service-desc)
───────────────────────────────── */
.sol-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-hover);
  margin-bottom: 18px;
}
.sol-block { margin-bottom: 48px; }

.sol-overview-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

.sol-offer-list { display: flex; flex-direction: column; gap: 14px; }
.sol-offer-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
.sol-offer-item .dot { margin-top: 7px; }

.sol-approach-intro {
  font-size: 13px;
  font-style: italic;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.sol-steps { display: flex; flex-direction: column; }
.sol-step {
  position: relative;
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
}
.sol-step:last-child { padding-bottom: 0; }
.sol-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.sol-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.sol-step-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.sol-step-desc { font-size: 14px; line-height: 1.65; color: var(--text-muted); }

/* Pillar accent colors, matching the site's existing brand/digital/media/b2b taxonomy */
.v2-inner-card.cat-brand   .sol-label { color: #7a8fff; }
.v2-inner-card.cat-digital .sol-label { color: #4ee3a4; }
.v2-inner-card.cat-media   .sol-label { color: #a78bfa; }
.v2-inner-card.cat-b2b     .sol-label { color: #fbbf24; }
.v2-inner-card.cat-brand   .sol-step-num { background: #0022ff; }
.v2-inner-card.cat-digital .sol-step-num { background: #2dce89; }
.v2-inner-card.cat-media   .sol-step-num { background: #8b5cf6; }
.v2-inner-card.cat-b2b     .sol-step-num { background: #f59e0b; }
.v2-inner-card.cat-brand   .sol-offer-item .dot { background: #0022ff; }
.v2-inner-card.cat-digital .sol-offer-item .dot { background: #2dce89; }
.v2-inner-card.cat-media   .sol-offer-item .dot { background: #8b5cf6; }
.v2-inner-card.cat-b2b     .sol-offer-item .dot { background: #f59e0b; }

/* ─────────────────────────────────
   HOW WE WORK / METHODOLOGY PAGE
   (extends .about-page + .sol-block / .sol-label / .sol-steps)
───────────────────────────────── */
.v2-inner-hero-actions { margin-top: 8px; }

.about-stats-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 640px) { .about-stats-4 { grid-template-columns: repeat(2, 1fr); } }

.text-stack { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }

.info-grid { display: grid; gap: 20px; }
@media (min-width: 768px) {
  .info-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .info-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.info-card-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.info-card-desc { font-size: 14px; line-height: 1.65; color: var(--text-muted); }

.step-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

.careers-note { margin-top: 24px; }
.careers-note a,
.v2-inner-card .careers-note a { color: var(--primary-hover); font-weight: 700; }

.close-cta { text-align: center; padding-top: 16px; }
.close-cta-context { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.close-cta-heading { font-size: 32px; font-weight: 700; line-height: 1.2; margin-bottom: 32px; color: var(--text); }
.close-cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   LEGAL CENTER
════════════════════════════════════════════════════════ */

.legal-page {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 48px 32px;
  align-items: start;
}

.legal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: sticky;
  top: 24px;
}

.legal-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.15s, color 0.15s;
}
.legal-nav-item:hover { background: var(--bg-card-hover); color: var(--text); }
.legal-nav-item.is-active {
  background: var(--bg-card);
  color: var(--text);
  font-weight: 600;
  border-left-color: var(--primary);
}
.legal-nav-arrow { opacity: 0.35; font-size: 13px; flex-shrink: 0; margin-left: 8px; }

.legal-content { max-width: 720px; }
.legal-content-meta {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.legal-content h2 {
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin: 32px 0 12px;
}
.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.legal-content ul {
  margin: 0 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  list-style: disc;
}
.legal-content li strong { color: var(--text); }
.legal-content a { color: var(--primary-hover); text-decoration: underline; }

.legal-contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 24px;
}
.legal-contact-box p { margin-bottom: 6px; font-size: 14px; }
.legal-contact-box p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .legal-page { grid-template-columns: 1fr; padding: 32px 20px; gap: 24px; }
  .legal-sidebar { position: static; flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .legal-nav-item { border-left: none; border-bottom: 2px solid transparent; padding: 9px 12px; }
  .legal-nav-item.is-active { border-bottom-color: var(--primary); }
  .legal-nav-arrow { display: none; }
}

/* ═══════════════════════════════════════════════════════
   FLOATING CONTACT BUBBLE
════════════════════════════════════════════════════════ */

.contact-bubble {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px 0 16px;
  border-radius: 100px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(14, 51, 228, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.15s ease;
}
.contact-bubble:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(14, 51, 228, 0.5);
}
.contact-bubble-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-bubble-icon svg { width: 100%; height: 100%; }
.contact-bubble-label { white-space: nowrap; }

@media (max-width: 640px) {
  .contact-bubble {
    right: 16px;
    bottom: 16px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }
  .contact-bubble-label { display: none; }
}
