@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 {
  display: none;
  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;
}
.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap.is-open .nav-dropdown { display: block; }
.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; }

.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
───────────────────────────────── */
.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;
  overflow: hidden;
}
.footer-wordmark {
  display: flex;
  align-items: flex-end;
  padding: 80px 32px 40px;
  overflow: hidden;
}
.footer-wordmark-img {
  width: clamp(220px, 55vw, 720px);
  height: auto;
  display: block;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 32px 48px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-logo-wrap img {
  width: 100px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.footer-about {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
}
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ─────────────────────────────────
   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); }
.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); }

  .footer-top    { grid-template-columns: repeat(4, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }

  .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; }
  .footer-wordmark  { padding: 40px 24px 8px; }
}

/* ═══════════════════════════════════════════════════════
   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; }

  /* Footer */
  .footer-inner    { padding: 24px 32px 40px; }
  .footer-top      { grid-template-columns: repeat(2, 1fr); gap: 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; }

  /* Footer */
  .footer-top      { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-inner    { padding: 16px 20px 32px; }
  .footer-col-title { margin-bottom: 10px; }

  /* 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; }

  /* Footer */
  .footer-top      { grid-template-columns: 1fr; }
  .footer-wordmark { padding: 32px 16px 0; }

  /* 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; }
}
