/* ============================================================
   rozeta labs — Main Layout & Page Styles
   ============================================================ */

/* ── Navigation ─────────────────────────────────────────────── */
#nav-placeholder {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.nav-inner .nav-cta {
  justify-self: end;
}

.nav-inner .nav-hamburger {
  justify-self: end;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

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

.nav-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--color-text-primary);
}

.nav-links a.active {
  color: var(--color-accent);
}

/* ── Nav dropdown ────────────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-arrow {
  font-size: 12px;
  line-height: 1;
  transition: transform var(--transition-fast);
  display: inline-block;
}

.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 8px;
  min-width: 160px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 100;
}

/* Bridge fills the gap so hover isn't lost moving from trigger to menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--color-surface);
  color: var(--color-text-primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-cta .btn-primary {
  background: #2795A2;
  box-shadow: 0 4px 20px rgba(39, 149, 162, 0.28);
}

.nav-cta .btn-primary:hover {
  background: #1f7d89;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: var(--space-3) 0;
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-surface);
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-5);
}

/* ── Footer ──────────────────────────────────────────────────── */
#footer-placeholder .footer {
  background: var(--color-bg);
  color: var(--color-text-primary);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand img {
  height: 32px;
  width: auto;
  filter: none;
}

.footer-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.footer-social a svg {
  display: block;
  flex-shrink: 0;
}

.footer-social a:hover {
  background: var(--color-surface-2);
  border-color: #aaa;
  transform: translateY(-1px);
}

.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col a {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer-bottom p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.footer-bottom a {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--color-text-primary);
}

/* Mobile sticky CTA */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: var(--space-3) var(--space-4);
  box-shadow: 0 -4px 16px rgba(87, 78, 106, 0.08);
}

.mobile-cta-bar .btn {
  width: 100%;
  justify-content: center;
  background: #2795A2;
  border-color: #2795A2;
}
.mobile-cta-bar .btn:hover {
  background: #1e7d89;
  border-color: #1e7d89;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-height));
  padding: var(--space-8) 0 var(--space-16);
  position: relative;
  overflow: visible;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 48px;
}

/* ── Hero orbs (Comet-style decorative spheres) ─────────────── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Top-right: copper/blue sphere, partially cropped */
.hero-orb--top-right {
  width: 320px;
  height: 320px;
  top: -160px;
  right: -180px;
  z-index: 1001;
  background: radial-gradient(circle at 65% 25%, #4a8a82 0%, #c47a3a 35%, #a0522d 65%, #22373b 100%);
  box-shadow: inset -20px -20px 60px rgba(34,55,59,0.45);
}

/* Left: large navy/blue sphere, ~60% visible */
.hero-orb--left {
  width: 560px;
  height: 560px;
  top: auto;
  bottom: -420px;
  left: -160px;
  transform: none;
  background:
    radial-gradient(ellipse at 78% 18%, #4a8a7a 0%, transparent 28%),
    radial-gradient(ellipse at 68% 32%, #d4832a 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, #c44030 0%, #8a1f2a 45%, #3d1525 100%);
  box-shadow: inset 20px -20px 80px rgba(34,55,59,0.5);
}

/* Bottom-right: copper accent sphere, partially cropped */
.hero-orb--bottom-right {
  width: 260px;
  height: 260px;
  bottom: -30px;
  right: -90px;
  background:
    radial-gradient(ellipse at 35% 25%, #2a8a94 0%, transparent 40%),
    radial-gradient(circle at 55% 55%, #0d4a52 0%, #07282e 60%, #040f12 100%);
  box-shadow: inset -15px -15px 50px rgba(4,15,18,0.5);
}

/* Decorative arc line near bottom of hero */
.hero::after {
  content: none;
}

/* Ensure content sits above orbs */
.hero > .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

/* Full-width single-column hero variant */
.hero-inner--full {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.hero-inner--full h1 {
  font-size: clamp(36px, 5vw, 64px);
  width: 100%;
  margin-top: var(--space-8);
  margin-bottom: 12px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: #000000;
}

.hero-inner--full .hero-sub {
  max-width: 680px;
  text-align: center;
  margin-bottom: 20px;
}

.hero-inner--full .hero-ctas {
  justify-content: center;
  margin-bottom: 0;
}

.hero-inner--full .hero-ctas .btn-primary {
  background: #111111;
  color: #ffffff;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  box-shadow: none;
  border-radius: 999px;
  padding: 16px 40px;
}

.hero-inner--full .hero-ctas .btn-primary:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-inner--full .hero-meta {
  justify-content: center;
}

/* Pill-shaped CTAs in hero (Comet-style) */
.hero-inner--full .btn {
  border-radius: 999px;
  padding: 14px 32px;
}

.hero-badge {
  margin-bottom: var(--space-5);
}

.hero h1 {
  margin-bottom: var(--space-6);
}

.hero h1 em {
  font-style: normal;
}

.hero-sub {
  font-family: 'Figtree', sans-serif;
  font-weight: 300;
  font-size: var(--text-body-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  letter-spacing: 0.01em;
  margin-bottom: 0;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.hero-meta-item span {
  font-weight: 600;
  color: var(--color-text-secondary);
}

/* Hero visual side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.hero-aurora-bg {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--gradient-aurora-soft);
  filter: blur(80px);
  opacity: 0.5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Floating proof cards */
.floating-cards {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.floating-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-xl);
  min-width: 260px;
}

.floating-card:nth-child(2) {
  align-self: flex-end;
  transform: translateX(20px);
}

.floating-card-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.floating-card-stat {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.floating-card-sub {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-top: var(--space-1);
}

.floating-card-icon {
  font-size: 20px;
  margin-bottom: var(--space-2);
}

/* ── Social Proof Bar ────────────────────────────────────────── */
.trust-bar {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-bar-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: var(--space-4);
}

.trust-bar-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.trust-bar-item {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--transition-fast);
}

.trust-bar-item:hover {
  color: var(--color-text-secondary);
}

.trust-icon {
  font-size: 18px;
  opacity: 0.6;
}

/* ── Problem section ─────────────────────────────────────────── */
.problem-section {
  background: transparent;
  position: relative;
  overflow: visible;
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

/* White background layer — sits below sphere and card */
.problem-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-bg);
  z-index: -1;
  pointer-events: none;
}

/* The big sphere that spans the hero/problem boundary */
.problem-sphere {
  position: absolute;
  top: -180px;
  left: -320px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 78% 18%, #4a8a7a 0%, transparent 28%),
    radial-gradient(ellipse at 68% 32%, #d4832a 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, #c44030 0%, #8a1f2a 45%, #3d1525 100%);
  box-shadow: inset 20px -20px 80px rgba(34, 55, 59, 0.5);
}

/* ── Problem section stacked layout ─────────────────────────── */
.problem-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  max-width: 720px;
  margin: 0 auto;
}

.problem-text {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}
.problem-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: var(--space-4);
}
.problem-text p {
  font-size: var(--text-body-lg);
  color: var(--color-text-secondary);
}

.problem-chat-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}

.problem-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.problem-state {
  padding: 32px 36px 36px;
}

.problem-state h3 {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.problem-state--before h3 {
  color: #8a1f2a;
}

.problem-state--after h3 {
  color: #266e5c;
}

.problem-state ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.problem-state li {
  position: relative;
  padding-left: 22px;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.5;
  color: var(--color-text-primary);
}

.problem-state--before li {
  font-family: var(--font-display);
  color: var(--color-text-secondary);
}

.problem-state--before li::before {
  content: '×';
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 14px;
  line-height: 1;
  color: rgba(138,31,42,0.55);
}

.problem-state--after li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 13px;
  line-height: 1;
  color: rgba(38,110,92,0.7);
}

.problem-bottomline {
  grid-column: 1 / -1;
  padding: 28px 36px 8px;
  border-top: 1px solid rgba(34,55,59,0.1);
  background: transparent;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--color-text-secondary);
  text-align: center;
}

.problem-bottomline strong {
  font-style: normal;
  font-weight: 500;
  color: var(--color-text-primary);
}

/* ── What We Do (2 pillars) ─────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 500px));
  gap: var(--space-6);
  margin-top: var(--space-12);
  justify-content: center;
}

/* Slack community thread cards */
.slack-card {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.slack-card-header {
  background: transparent;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e8e8e8;
}
.slack-channel {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #97979e;
  letter-spacing: 0;
  align-self: flex-end;
}
.slack-header-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-copy {
  padding: 0;
}

.service-quote,
.service-meta {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

.service-meta {
  margin-top: 14px;
  padding-top: 0;
  border-top: none;
}

.service-meta strong {
  color: var(--color-text-primary);
}

.what-we-do-phases {
  max-width: 680px;
  margin: var(--space-12) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.what-we-do-phase-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400;
  text-align: center;
  margin: var(--space-2) 0 0;
  color: var(--color-text-primary);
}

.phase-bullet-cols {
  display: flex;
  gap: var(--space-10);
  margin-top: var(--space-6);
  text-align: left;
}

.phase-bullet-cols ul {
  flex: 1;
  list-style: disc;
  padding-left: 1.2em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.section-what-we-do .slack-card {
  border-radius: 0;
  border: none;
  border-top: 3px solid;
  background: transparent;
  box-shadow: none;
  padding-top: 24px;
}

.section-what-we-do .slack-card:first-child {
  border-top-color: #9c1f22;
}

.section-what-we-do .slack-card:last-child {
  border-top-color: #266e5c;
}

.section-what-we-do .slack-card-header {
  padding: 0 0 16px;
  background: transparent;
  border-bottom: none;
}

.section-what-we-do .slack-step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-what-we-do .slack-card:first-child .slack-step-label {
  color: #9c1f22;
}

.section-what-we-do .slack-card:last-child .slack-step-label {
  color: #266e5c;
}

.section-what-we-do .slack-step-desc {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-top: 6px;
}

.slack-step-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #97979e;
}

.slack-step-desc {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1d1c1d;
}

.slack-messages {
  padding: 18px 0 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Each message row — hover highlight like real Slack */
.slack-msg {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 18px;
  transition: background 0.1s ease;
}
.slack-msg:hover {
  background: rgba(0,0,0,0.04);
}

/* Square-rounded avatar — matches real Slack workspace avatar shape */
.slack-avatar {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
  object-fit: cover;
}

.slack-msg-body { flex: 1; min-width: 0; }

/* Name + timestamp on one line, text below — no bubble */
.slack-msg-meta {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 2px;
  line-height: 1.4;
}
.slack-username {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1d1c1d;
  letter-spacing: -0.01em;
}
.slack-time {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 11px;
  color: #97979e;
  font-weight: 400;
}

/* Plain text — no bubble, just like real Slack */
.slack-msg-text {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #1d1c1d;
  font-weight: 400;
  margin: 0;
}

.slack-card-footer {
  padding: 10px 16px;
  border-top: 1px solid #e8e8e8;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 8px;
}
.slack-pillar-label {
  display: none;
}
.slack-cta {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  transition: color var(--transition-fast);
}
.slack-cta:hover { color: #555555; }

.pillars-ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-12);
}

.fit-checklist {
  max-width: 680px;
  margin: 48px auto 0;
}

.fit-checklist-card {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.fit-checklist-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fit-checklist-list li {
  display: block;
  padding-left: 20px;
  border-left: 2px solid rgba(156,31,34,0.35);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.5;
  color: var(--color-text-primary);
}

.fit-checklist-list li::before {
  display: none;
}

.fit-checklist-bottom {
  margin: 36px 0 0;
  padding-top: 0;
  border-top: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--color-text-secondary);
  text-align: center;
}

.fit-checklist-bottom strong {
  font-style: normal;
  font-weight: 500;
  color: var(--color-text-primary);
}

/* ── Who We Serve — Google Search Mockup ─────────────────────── */
.gsearch-mockup {
  max-width: 860px;
  margin: 48px auto 0;
  font-family: Arial, sans-serif;
}

.gsearch-bar-wrap {
  position: relative;
  margin-bottom: 6px;
}

.gsearch-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #dfe1e5;
  border-radius: 24px;
  padding: 10px 20px;
  box-shadow: 0 1px 6px rgba(32,33,36,0.10);
  background: transparent;
  transition: border-radius 0.15s ease, box-shadow 0.15s ease;
}

.gsearch-bar--open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
  box-shadow: 0 0 0 1px rgba(32,33,36,0.08);
}

.gsearch-logo {
  font-size: 20px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  background: linear-gradient(90deg, #4285f4 0%, #4285f4 16.6%, #ea4335 16.6%, #ea4335 33.2%, #fbbc05 33.2%, #fbbc05 49.8%, #4285f4 49.8%, #4285f4 66.4%, #34a853 66.4%, #34a853 83%, #ea4335 83%, #ea4335 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  flex-shrink: 0;
}

.gsearch-input-wrap {
  flex: 1;
  min-width: 0;
}

.gsearch-input {
  display: flex;
  align-items: center;
}

.gsearch-typed {
  font-size: 16px;
  color: #202124;
  white-space: nowrap;
  overflow: hidden;
}

.gsearch-cursor {
  animation: blink 1s step-end infinite;
  color: #4285f4;
  font-size: 16px;
  line-height: 1;
  margin-left: 1px;
}

@keyframes blink { 50% { opacity: 0; } }

.gsearch-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* Autocomplete dropdown */
.gsearch-autocomplete {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  background: transparent;
  border: 1px solid #dfe1e5;
  border-top: none;
  border-radius: 0 0 20px 20px;
  box-shadow: none;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  z-index: 10;
}

.gsearch-autocomplete.visible {
  opacity: 1;
}

.gsearch-ac-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 22px;
  font-size: 14px;
  color: #202124;
  border-top: 1px solid #f1f3f4;
}

.gsearch-ac-item:first-child { border-top: none; }

.gsearch-ac-icon {
  font-size: 13px;
  opacity: 0.45;
  flex-shrink: 0;
}

.gsearch-ac-item strong { font-weight: 600; }

/* AI Overview panel */
.gsearch-ai-overview {
  margin-top: 10px;
  border: 1px solid #e0e4f8;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gsearch-ai-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(90deg, #e8f0fe 0%, #ede7f6 60%, #e3f5fb 100%);
  border-bottom: 1px solid #dde3f5;
}

.gsearch-ai-sparkle {
  font-size: 15px;
  background: linear-gradient(135deg, #4285f4, #a142f4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.gsearch-ai-label {
  font-size: 13px;
  font-weight: 600;
  color: #3c4557;
  font-family: Arial, sans-serif;
  letter-spacing: 0.01em;
}

.gsearch-ai-body {
  padding: 18px 22px 20px;
  background: transparent;
}

.gsearch-ai-intro {
  font-size: 14px;
  color: #202124;
  line-height: 1.65;
  margin: 0 0 14px;
  font-family: Arial, sans-serif;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gsearch-ai-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
}

.gsearch-ai-list li {
  font-size: 14px;
  color: #202124;
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding: 6px 0;
  border-bottom: 1px solid #f1f3f4;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gsearch-ai-list li:last-child { border-bottom: none; }

.gsearch-ai-list strong {
  color: #1a1a1a;
  font-weight: 600;
}

.gsearch-ai-closing {
  font-size: 14px;
  font-weight: 600;
  color: #3c4043;
  font-family: Arial, sans-serif;
  margin: 0;
  padding-top: 4px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* ── How It Works ────────────────────────────────────────────── */
/* ── iMessage Mockup ─────────────────────────────────────────── */
.imsg-mockup {
  max-width: 520px;
  margin: 48px auto 0;
}

.imsg-body {
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.imsg-phase-label {
  text-align: center;
  font-size: 12px;
  color: #8e8e93;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 12px 0 6px;
}

.imsg-row {
  display: flex;
}

.imsg-row--you {
  justify-content: flex-end;
}

.imsg-row--them {
  justify-content: flex-start;
}

.imsg-bubble {
  max-width: 72%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.imsg-bubble--you {
  background: #007AFF;
  color: #fff;
  border-bottom-right-radius: 4px;
}

.imsg-bubble--them {
  background: #e9e9eb;
  color: #1a1a1a;
  border-bottom-left-radius: 4px;
}

.imsg-cta {
  display: inline-block;
  margin-top: 4px;
  background: #1a1a1a;
  color: #fff;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  align-self: center;
}

.imsg-badge {
  font-size: 12px;
  font-weight: 600;
  color: #34c759;
}

.imsg-typing-wrap {
  display: flex;
  justify-content: flex-start;
}

.imsg-typing {
  gap: 4px;
  align-items: center;
  padding: 12px 16px;
  flex-direction: row;
}

.imsg-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8e8e93;
  display: inline-block;
  animation: typing-dot 1.2s infinite;
}

.imsg-typing span:nth-child(2) { animation-delay: 0.2s; }
.imsg-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.steps-cta {
  text-align: center;
  margin-top: var(--space-12);
}

/* ── Founders ────────────────────────────────────────────────── */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-top: var(--space-12);
}

/* ── Founders — Horizontal Strip ─────────────────────────────── */
.founders-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-16);
}

.founder-strip {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: center;
  padding: var(--space-12) 0;
}

.founder-strip--flip {
  grid-template-columns: 1fr 340px;
}

.founder-strip--flip .founder-strip-photo {
  order: 2;
}

.founder-strip--flip .founder-strip-body {
  order: 1;
}

.founder-strip-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.founder-strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-strip-body {
  padding: var(--space-4) 0;
}

.founder-name {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  margin-bottom: var(--space-2);
  line-height: 1.2;
}

.founder-role {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-strip-body p {
  font-size: var(--text-body);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  max-width: 52ch;
}

.partnership-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin-top: var(--space-8);
  text-align: center;
}

.partnership-card h4 {
  margin-bottom: var(--space-3);
}

/* ── Social Proof / Results ──────────────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.proof-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.proof-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.proof-result {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.proof-description {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

.proof-context {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-section {
  background: var(--color-bg);
}

/* ── 2-Column Pricing Grid ───────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin: var(--space-12) auto 0;
  max-width: 936px;
}

.pricing-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: var(--space-10) var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}


.pricing-card--featured {
  background: transparent;
}

.pricing-balance-spacer {
  height: 56px;
}

.pricing-card--enterprise .pricing-card-price-row {
  margin-top: 74px;
}

.pricing-card-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.pricing-card-price-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  min-height: 0;
}

.pricing-was {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  color: #d1d5db;
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-color: #9c1f22;
  text-decoration-thickness: 3px;
  margin-bottom: 10px;
}

.pricing-number {
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-number--team {
  font-size: clamp(52px, 6vw, 80px);
}

.pricing-number--custom {
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -0.02em;
}

.pricing-dollar {
  font-size: 0.38em;
  font-weight: 700;
  vertical-align: top;
  margin-top: 0.22em;
  display: inline-block;
}

.pricing-founding {
  font-size: 15px;
  color: #374151;
  font-weight: 500;
  line-height: 1.55;
}

.pricing-note {
  font-size: 13px;
  color: #6b7280;
  margin-top: -8px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.pricing-spots {
  font-size: 13px;
  color: #9ca3af;
  margin-top: -8px;
  line-height: 1.5;
}

.pricing-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: var(--space-12) auto 0;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: var(--space-4);
}

.accordion-question {
  font-size: var(--text-body-lg);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--leading-snug);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 300;
  color: var(--color-text-secondary);
  transition: all var(--transition-base);
}

.accordion-item.open .accordion-icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}

.accordion-content p {
  padding-bottom: var(--space-6);
  line-height: var(--leading-relaxed);
}

/* ── Final CTA (dark band) ───────────────────────────────────── */
.final-cta-section {
  background: var(--color-text-primary);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(60, 66, 138, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-section h2 {
  color: var(--color-white);
  max-width: 800px;
  margin: 0 auto var(--space-5);
}

.final-cta-section p {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-body-lg);
  max-width: 600px;
  margin: 0 auto var(--space-10);
}

.final-cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta-buttons .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
}

.final-cta-buttons .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: white;
}

.final-cta-small {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
}

/* ── Page heroes (inner pages) ───────────────────────────────── */
.page-hero {
  padding: var(--space-24) 0 var(--space-10);
  background: var(--color-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Arc 1: large sweeping arc from top-left area */
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -15%;
  width: 70%;
  height: 400px;
  border: 1px solid rgba(60, 66, 138, 0.1);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-10deg);
}

/* Arc 2: copper-tinted arc from right side */
.page-hero::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -10%;
  width: 55%;
  height: 300px;
  border: 1px solid rgba(165, 120, 86, 0.1);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(15deg);
}

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

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 800px;
  margin: var(--space-5) auto var(--space-5);
}

.page-hero h2 {
  font-family: var(--font-family);
  font-size: var(--text-body-lg);
  font-weight: 300;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: var(--space-3) auto var(--space-8);
  line-height: var(--leading-relaxed);
}

.page-hero p {
  font-size: var(--text-body-lg);
  max-width: 600px;
  margin: 0 auto var(--space-8);
}

.page-hero .btn {
  border-radius: 999px;
  padding: 14px 32px;
}

.page-hero-ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── About page specifics ────────────────────────────────────── */
.name-origin {
  text-align: center;
}

.name-origin-inner {
  max-width: 760px;
  margin: 0 auto;
}

.name-origin h2 {
  margin-bottom: var(--space-6);
}

.name-origin p {
  font-size: var(--text-body-lg);
  line-height: var(--leading-relaxed);
  text-align: left;
  margin-bottom: var(--space-6);
}

.mission-section {
  background: var(--color-bg);
}

.mission-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission-inner h2 {
  margin-bottom: var(--space-8);
}

.mission-inner p {
  font-size: var(--text-body-lg);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  text-align: left;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-12);
  align-items: start;
}

.story-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-8));
}

.story-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  margin-bottom: var(--space-5);
}

.story-card-mini {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.story-card-mini h4 {
  margin-bottom: var(--space-1);
}

.story-card-mini p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.story-content h2 {
  margin-bottom: var(--space-6);
}

.story-content p {
  font-size: var(--text-body-lg);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
}

.vision-section {
  background: var(--color-bg);
  text-align: center;
}

.vision-section h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-8);
}

.vision-section p {
  color: var(--color-text-secondary);
  font-size: var(--text-body-lg);
  max-width: 800px;
  margin: 0 auto var(--space-6);
  line-height: var(--leading-relaxed);
  text-align: left;
}

/* ── Services page ───────────────────────────────────────────── */
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.service-feature.reversed {
  direction: rtl;
}

.service-feature.reversed > * {
  direction: ltr;
}

.service-feature-content h2 {
  margin-bottom: var(--space-5);
}

.service-feature-content p {
  font-size: var(--text-body-lg);
  margin-bottom: var(--space-5);
}

.service-list {
  margin: var(--space-5) 0 var(--space-8);
}

.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-body);
  color: var(--color-text-secondary);
}

.service-list-item:last-child {
  border-bottom: none;
}

.service-list-item::before {
  content: '→';
  color: var(--color-accent);
  flex-shrink: 0;
  font-weight: 700;
}

.service-visual {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.service-visual-icon {
  font-size: 80px;
  opacity: 0.15;
  position: absolute;
}

.service-visual-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Certification cards */
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-top: var(--space-10);
}

.cert-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.cert-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}

.cert-duration {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.cert-card h3 {
  margin-bottom: var(--space-4);
}

.cert-card p {
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

/* ── Case Studies ────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
  margin-top: var(--space-8);
}

.filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  background: var(--color-white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-light);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.case-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.case-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.case-card-header {
  padding: var(--space-6);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.case-industry-icon {
  font-size: 28px;
}

.case-industry {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-bottom: 2px;
}

.case-size {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.case-body {
  padding: var(--space-6);
}

.case-stat {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-accent);
  margin-bottom: var(--space-1);
}

.case-what {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

.case-quote {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  font-style: italic;
  padding: var(--space-4);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
  margin-top: var(--space-4);
}

/* ── Blog / Intel ────────────────────────────────────────────── */

/* Filter tabs */
.intel-filter {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-8);
  overflow-x: auto;
}

.intel-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-family);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: -1px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.intel-tab:hover {
  color: var(--color-text-primary);
}

.intel-tab.active {
  color: var(--color-text-primary);
  border-bottom-color: var(--color-text-primary);
}

/* Editorial list */
.intel-list {
  display: flex;
  flex-direction: column;
}

.intel-row {
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.intel-row:first-child {
  border-top: 1px solid var(--color-border);
}

.intel-row:hover .intel-row-title {
  color: var(--color-accent);
}

.intel-row-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.intel-tag {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-accent);
}

.intel-read {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.intel-row-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 1.3;
  margin-bottom: var(--space-3);
  transition: color var(--transition-fast);
}

.intel-row-excerpt {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 72ch;
  margin-bottom: var(--space-4);
}

.intel-row-byline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

/* ── Podcast ─────────────────────────────────────────────────── */
.subscribe-row {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

.subscribe-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  transition: all var(--transition-fast);
}

.subscribe-btn:hover {
  border-color: #aaa;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}

.subscribe-logo {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.episode-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  gap: var(--space-5);
}

.episode-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.episode-num {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-accent);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.episode-content h4 {
  margin-bottom: var(--space-2);
}

.episode-guest {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3);
}

.episode-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

.episode-play {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  transition: gap var(--transition-fast);
}

.episode-play:hover {
  gap: var(--space-3);
}

/* ── Contact ─────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-12);
  align-items: start;
}

.contact-info h3 {
  margin-bottom: var(--space-4);
}

.contact-info p {
  margin-bottom: var(--space-6);
  line-height: var(--leading-relaxed);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-detail:last-of-type {
  border-bottom: none;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.contact-detail-value {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-primary);
}

.calendly-placeholder {
  background: var(--color-surface);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-16);
  text-align: center;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.calendly-placeholder-icon {
  font-size: 48px;
  opacity: 0.4;
}

.calendly-placeholder h3 {
  color: var(--color-text-secondary);
}

.calendly-placeholder p {
  font-size: var(--text-sm);
  max-width: 320px;
}

.calendly-placeholder code {
  font-family: monospace;
  background: var(--color-white);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  color: var(--color-accent);
  border: 1px solid var(--color-border);
}

/* ── Responsive: Tablet ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual { display: none; }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .founder-strip,
  .founder-strip--flip {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .founder-strip--flip .founder-strip-photo { order: 0; }
  .founder-strip--flip .founder-strip-body  { order: 1; }

  .founder-strip-photo { max-width: 280px; }
  .founder-strip-body p { max-width: 100%; }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .imsg-mockup { margin: 32px auto 0; }

  .service-feature {
    grid-template-columns: 1fr;
  }

  .service-feature.reversed { direction: ltr; }

  .story-section {
    grid-template-columns: 1fr;
  }

  .story-sidebar { position: static; }

  .cert-grid { grid-template-columns: 1fr; }

  .case-grid { grid-template-columns: 1fr 1fr; }

  .episode-grid { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

/* ── Responsive: Tablet nav overflow ────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Responsive: Mobile ──────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-hamburger { display: flex; }

  .mobile-cta-bar { display: block; }

  body { padding-bottom: 72px; }

  .hero {
    min-height: auto;
    padding: var(--space-16) 0;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .problem-layout {
    max-width: 100%;
    gap: var(--space-4);
  }

  .problem-text h2 {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-3);
  }

  .problem-compare {
    grid-template-columns: 1fr;
  }

  .problem-state + .problem-state {
    border-left: none;
    border-top: 1px solid rgba(34,55,59,0.12);
  }

  .problem-state {
    padding: 20px 20px 20px;
  }

  .problem-state h3 {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .problem-state ul {
    gap: 10px;
  }

  .problem-state li {
    font-size: 15px;
    line-height: 1.4;
    padding-left: 20px;
  }

  .problem-state--before li::before,
  .problem-state--after li::before {
    font-size: 12px;
  }

  .problem-bottomline {
    padding: 20px 20px 0;
    font-size: 15px;
    line-height: 1.55;
  }

  .trust-bar-items {
    gap: var(--space-6);
  }

  .gsearch-typed { font-size: 13px; }
  .gsearch-logo { font-size: 16px; }
  .gsearch-bar { padding: 9px 14px; gap: 8px; }
  .gsearch-ac-item { padding: 9px 16px; font-size: 13px; }

  .imsg-bubble { max-width: 82%; font-size: 13px; }
  .imsg-mockup { margin: 32px auto 0; }

  .what-we-do-phases {
    margin-top: var(--space-8);
    gap: var(--space-10);
  }

  .phase-bullet-cols {
    flex-direction: column;
    gap: var(--space-5);
  }

  .service-quote,
  .service-meta {
    font-size: 15px;
    line-height: 1.5;
  }

  .service-meta {
    margin-top: 12px;
    padding-top: 10px;
  }

  .fit-checklist {
    margin-top: 26px;
  }

  .fit-checklist-list {
    gap: 16px;
  }

  .fit-checklist-list li {
    font-size: 16px;
  }

  .fit-checklist-bottom {
    margin-top: 28px;
    font-size: 15px;
  }

  .proof-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .case-grid { grid-template-columns: 1fr; }

  .intel-grid { grid-template-columns: 1fr; }

  .final-cta-buttons {
    flex-direction: column;
  }

  .final-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .page-hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .subscribe-row { flex-direction: column; align-items: center; }

  /* ── Decorative orb fixes ────────────────────────────────────── */
  /* Hide the 700px problem sphere — too large to be useful on mobile */
  .problem-sphere { display: none; }

  /* Shrink hero orbs to small corner accents, fix z-index */
  .hero-orb--top-right {
    width: 180px;
    height: 180px;
    top: -90px;
    right: -90px;
    z-index: 0;
  }
  .hero-orb--bottom-right {
    width: 140px;
    height: 140px;
    bottom: -20px;
    right: -80px;
  }

  /* Scale down final CTA gradient */
  .final-cta-section::before {
    width: 300px;
    height: 200px;
  }
}

/* ── Post / Article Page ─────────────────────────────────────── */

.post-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  margin-bottom: var(--space-10);
  transition: color var(--transition-fast);
}

.post-breadcrumb:hover {
  color: var(--color-text-primary);
}

.post-article {
  max-width: 720px;
  margin: 0 auto;
}

.post-header {
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--color-border);
}

.post-header h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-6);
}

.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.post-meta-dot {
  color: var(--color-border);
}

.post-body {
  font-size: var(--text-body);
  line-height: 1.8;
  color: var(--color-text-primary);
}

.post-body p {
  margin-bottom: 1.5em;
}

.post-body h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-top: 2em;
  margin-bottom: 0.75em;
}

.post-body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
  margin-top: 1.75em;
  margin-bottom: 0.5em;
}

.post-body h4 {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.post-body blockquote {
  border-left: 3px solid var(--color-accent);
  margin: 2em 0;
  padding: var(--space-4) var(--space-6);
  color: var(--color-text-secondary);
  font-style: italic;
}

.post-body code {
  background: rgba(0,0,0,0.06);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.post-body strong {
  font-weight: 700;
  color: var(--color-text-primary);
}

.post-body a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.post-body a:hover {
  text-decoration: none;
}

.post-body ul,
.post-body ol {
  margin-bottom: 1.5em;
  padding-left: 1.75em;
}

.post-body li {
  margin-bottom: 0.5em;
}

.post-author-bio {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  margin-top: var(--space-16);
  padding-top: var(--space-10);
  border-top: 1px solid var(--color-border);
}

.post-author-bio-text strong {
  display: block;
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-1);
}

.post-author-bio-text span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
