@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/dist/tabler-icons.min.css');

/* ── DESIGN TOKENS ── */
:root {
  --ink: #1c1a1d;                 /* Warm off-black charcoal from CEEK */
  --ink-soft: #605c56;            /* Warm muted charcoal body copy */
  --bg-clay: #f0ebe5;             /* Warm clay/sand background from CEEK */
  --bg-dark: #1c1a1d;             /* Dark contrast section anchor */
  --accent-gold: #bda282;         /* Sophisticated brushed gold */
  --accent-gold-deep: #8c7356;
  --line: rgba(28, 26, 29, 0.1);  /* Subtle borders */
  --line-light: rgba(255, 255, 255, 0.1);
  --white: #fffdfb;               /* Bright creamy white */
  
  --shadow: 0 16px 48px rgba(28, 26, 29, 0.08);
  --shadow-lg: 0 24px 64px rgba(28, 26, 29, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --max-width: 1200px;

  /* Fonts loaded in layout.js */
  --font-serif-family: var(--font-serif), 'Cormorant Garamond', serif;
  --font-sans-family: var(--font-sans), 'Manrope', sans-serif;
  --font-mono-family: var(--font-mono), 'IBM Plex Mono', monospace;
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── BASE RESET ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-clay);
}

body {
  font-family: var(--font-sans-family);
  background-color: var(--bg-clay);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a, button {
  touch-action: manipulation;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

button, input, textarea, select {
  font: inherit;
}

.container {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif-family);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  color: var(--accent-gold-deep);
  font-family: var(--font-mono-family);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-gold);
}

.section-label {
  font-family: var(--font-mono-family);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold-deep);
  margin-bottom: 0.8rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-serif-family);
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-gold-deep);
}

/* ── HEADER & NAVIGATION ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(240, 235, 229, 0.85);
  border-bottom: 1px solid var(--line);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.logo {
  font-family: var(--font-serif-family);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.logo span {
  font-family: var(--font-sans-family);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold-deep);
  margin-left: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-sans-family);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: var(--ink);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--bg-dark);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: var(--transition-smooth);
}

.btn-nav:hover {
  transform: translateY(-2px);
  background: var(--accent-gold-deep);
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    padding: 1.2rem 0;
    gap: 1.2rem;
    align-items: center;
    text-align: center;
  }
  .nav-menu {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-actions {
    display: none;
  }
}

/* ── BUTTONS ── */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--ink);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-impact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  font-family: var(--font-sans-family);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  transition: var(--transition-smooth);
  cursor: pointer;
  margin-top: 1rem;
}

.btn-impact:hover {
  background: var(--accent-gold-deep);
  border-color: var(--accent-gold-deep);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── HERO SECTION (CEEK BLEND FULL WIDTH DARK) ── */
.hero {
  background-color: var(--bg-dark);
  color: var(--white);
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 6rem 0;
  }
}

.hero-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.academic-foundations {
  background-color: var(--bg-dark);
  padding: 8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

@media (max-width: 768px) {
  .academic-foundations {
    padding: 4rem 0;
  }
}

.hero-shell .eyebrow {
  color: var(--accent-gold);
}

.hero-shell h1 {
  font-family: var(--font-serif-family);
  font-size: clamp(2.5rem, 5.8vw, 4.8rem);
  line-height: 1.05;
  font-weight: 600;
  color: var(--white);
  max-width: 22ch;
  margin: 0 auto 1.5rem;
}

.hero-shell h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-gold);
}

.hero-shell p {
  color: rgba(255, 253, 249, 0.75);
  font-size: 1.1rem;
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  border-top: 1px solid var(--line-light);
  padding-top: 2.5rem;
  width: 100%;
  max-width: 800px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-family: var(--font-serif-family);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--accent-gold);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-sans-family);
  font-size: 0.78rem;
  color: rgba(255, 253, 249, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 300px;
  }
}

/* ── INFINITE MARQUEE SLIDER (CEEK BLEND) ── */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  background-color: #151316;
  border-bottom: 1px solid var(--line-light);
  padding: 1.5rem 0;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
  gap: 4rem;
}

.marquee-item {
  font-family: var(--font-mono-family);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 12px;
}

.marquee-item i {
  font-size: 1rem;
  color: var(--accent-gold);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── WHAT WE BUILD (INTERACTIVE MENUS & MOCKUPS) ── */
.features-section {
  padding: 6rem 0;
}

.features-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4.5rem;
  align-items: start;
}

.features-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2.2rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
}

.feature-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.feature-num {
  font-family: var(--font-serif-family);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-gold-deep);
  line-height: 1.1;
  transition: var(--transition-smooth);
}

.feature-title-wrap h3 {
  font-family: var(--font-serif-family);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.feature-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
}

.feature-item.active .feature-content {
  max-height: 300px;
  opacity: 1;
  margin-top: 0.8rem;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  transition: var(--transition-smooth);
}

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.2rem;
}

.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  transition: var(--transition-smooth);
}

.feature-bullets li i {
  color: var(--accent-gold);
  margin-top: 2px;
}

.feature-bullets li strong {
  color: var(--ink);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.feature-tag {
  display: inline-block;
  font-family: var(--font-mono-family);
  font-size: 0.7rem;
  background-color: var(--bg-clay);
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--accent-gold-deep);
  transition: var(--transition-smooth);
}

/* Card Hover Blend: Turn Dark Solid Background */
.feature-item.active,
.feature-item:hover {
  background-color: var(--bg-dark);
  border-color: var(--accent-gold);
}

.feature-item.active h3,
.feature-item:hover h3 {
  color: var(--white);
}

.feature-item.active .feature-num,
.feature-item:hover .feature-num {
  color: var(--accent-gold);
}

.feature-item.active .feature-desc,
.feature-item:hover .feature-desc,
.feature-item.active .feature-bullets li,
.feature-item:hover .feature-bullets li {
  color: rgba(255, 255, 255, 0.7);
}

.feature-item.active .feature-bullets li strong,
.feature-item:hover .feature-bullets li strong {
  color: var(--white);
}

.feature-item.active .feature-tag,
.feature-item:hover .feature-tag {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--accent-gold);
}

/* Right Column: Visual Mockup Screen */
.features-display {
  position: sticky;
  top: 120px;
  height: 440px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background-color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(15px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mockup-container.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* 01. Social Feed */
.mockup-social-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.social-card {
  background-color: var(--bg-clay);
  border: 1px solid rgba(28, 26, 29, 0.06);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif-family);
  font-size: 0.85rem;
  font-weight: 700;
}

.social-info {
  flex: 1;
}

.social-platform {
  font-family: var(--font-mono-family);
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--accent-gold-deep);
  margin-bottom: 2px;
}

.social-bar-track {
  height: 4px;
  background-color: rgba(28, 26, 29, 0.08);
  border-radius: 2px;
  width: 100%;
  overflow: hidden;
}

.social-bar-fill {
  height: 100%;
  background-color: var(--accent-gold-deep);
  border-radius: 2px;
}

.social-pill {
  font-family: var(--font-mono-family);
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 99px;
  background-color: rgba(189, 162, 130, 0.12);
  color: var(--accent-gold-deep);
  border: 1px solid rgba(189, 162, 130, 0.18);
}

.social-pill.scheduled {
  background-color: rgba(28, 26, 29, 0.05);
  color: var(--ink-soft);
  border-color: rgba(28, 26, 29, 0.08);
}

/* 02. Automation Flow */
.mockup-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.flow-node {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--bg-clay);
  border: 1px solid rgba(28, 26, 29, 0.06);
  border-radius: 12px;
  padding: 10px 14px;
  width: 100%;
  max-width: 280px;
}

.flow-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background-color: var(--white);
  border: 1px solid rgba(28, 26, 29, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-deep);
  font-size: 0.85rem;
}

.flow-text h4 {
  font-family: var(--font-sans-family);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1px;
}

.flow-text p {
  font-size: 0.65rem;
  color: var(--ink-soft);
}

.flow-connector {
  width: 1px;
  height: 18px;
  background-color: var(--line);
}

/* 03. Funnel */
.mockup-funnel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 8px;
}

.funnel-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(28, 26, 29, 0.06);
  font-family: var(--font-sans-family);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.funnel-step span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.funnel-num {
  font-family: var(--font-serif-family);
  font-size: 1.1rem;
}

.funnel-step-1 { width: 100%; background-color: var(--bg-clay); }
.funnel-step-2 { width: 85%; background-color: var(--paper-strong); }
.funnel-step-3 { width: 70%; background-color: rgba(28, 26, 29, 0.05); }
.funnel-step-4 { width: 55%; background-color: var(--bg-dark); color: var(--white); }

/* 04. Course Platform */
.mockup-product {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.course-card {
  background-color: var(--bg-clay);
  border: 1px solid rgba(28, 26, 29, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.course-header {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 6px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-header h4 {
  font-family: var(--font-sans-family);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}

.course-badge {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 1px 5px;
}

.course-body {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.course-progress {
  flex: 1;
}

.course-progress-label {
  font-size: 0.65rem;
  font-family: var(--font-mono-family);
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.course-bar {
  height: 3px;
  background-color: rgba(28, 26, 29, 0.08);
  border-radius: 2px;
  width: 100%;
  overflow: hidden;
}

.course-fill {
  height: 100%;
  background-color: var(--accent-gold-deep);
}

.course-stats {
  font-family: var(--font-mono-family);
  font-size: 0.68rem;
  color: var(--accent-gold-deep);
}

/* 05. Chat Support widget */
.mockup-chat {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-clay);
  border: 1px solid rgba(28, 26, 29, 0.06);
  border-radius: var(--radius-lg);
  height: 100%;
  max-height: 320px;
  width: 100%;
  overflow: hidden;
}

.chat-header {
  padding: 10px 14px;
  background: var(--bg-dark);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-agent {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #386146;
}

.chat-agent-title {
  font-family: var(--font-sans-family);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.chat-status {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
}

.chat-body {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.chat-bubble {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.78rem;
  line-height: 1.4;
}

.chat-bubble.user {
  align-self: flex-end;
  background-color: var(--white);
  border: 1px solid rgba(28, 26, 29, 0.05);
  color: var(--ink);
  border-bottom-right-radius: 2px;
}

.chat-bubble.ai {
  align-self: flex-start;
  background-color: var(--bg-dark);
  color: var(--white);
  border-bottom-left-radius: 2px;
}

.chat-channels {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  border-top: 1px solid rgba(28, 26, 29, 0.05);
  background-color: var(--white);
}

.channel-tag {
  font-family: var(--font-mono-family);
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(28, 26, 29, 0.08);
  color: var(--ink-soft);
}

@media (max-width: 992px) {
  .features-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .features-display {
    display: none;
  }
  .feature-content {
    max-height: none !important;
    opacity: 1 !important;
    margin-top: 0.8rem !important;
  }
  .feature-item {
    cursor: default;
  }
}

/* ── RESULTS & CASE STUDIES (CEEK BLEND) ── */
.results-section {
  padding: 6rem 0;
}

.results-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.2rem;
  margin-bottom: 2.5rem;
}

.tab-btn {
  font-family: var(--font-sans-family);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn.active {
  background: var(--bg-dark);
  color: var(--white);
}

.tab-btn:hover:not(.active) {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

.result-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.result-panel.active {
  display: grid;
}

.result-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.result-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.result-badge {
  display: inline-block;
  font-family: var(--font-mono-family);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-gold-deep);
  background-color: rgba(140, 115, 86, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(140, 115, 86, 0.12);
}

.result-title {
  font-family: var(--font-serif-family);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.05;
}

.result-subtitle {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.results-grid-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.result-metric-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.result-metric-val {
  font-family: var(--font-serif-family);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent-gold-deep);
  line-height: 1;
}

.result-metric-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.result-agents-deployed {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.result-agents-label {
  font-family: var(--font-mono-family);
  font-size: 0.7rem;
  color: var(--accent-gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.agent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.agent-tag {
  font-size: 0.82rem;
  background-color: var(--white);
  color: var(--ink);
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid var(--line);
}

.result-narrative-col {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.narrative-block h4 {
  font-family: var(--font-sans-family);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.narrative-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.narrative-list li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  position: relative;
  padding-left: 20px;
}

.narrative-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-gold-deep);
  font-weight: 700;
}

.narrative-list li strong {
  color: var(--ink);
  font-weight: 600;
}

.result-breakdowns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.breakdown-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.breakdown-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans-family);
  font-size: 0.82rem;
  font-weight: 600;
}

.breakdown-header span:first-child {
  color: var(--ink-soft);
}

.breakdown-header span:last-child {
  color: var(--accent-gold-deep);
}

.breakdown-bar-track {
  height: 4px;
  background-color: rgba(28, 26, 29, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.breakdown-bar-fill {
  height: 100%;
  background: var(--accent-gold-deep);
  border-radius: 2px;
}

@media (max-width: 992px) {
  .result-panel {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── TRADITIONAL VS GRO COMPARISON ── */
.compare-section {
  padding: 6rem 0;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.compare-card {
  border-radius: var(--radius-xl);
  padding: 3rem clamp(1.5rem, 5vw, 3rem);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.compare-card.traditional {
  background-color: var(--white);
  border: 1px solid var(--line);
}

.compare-card.gro {
  background-color: var(--bg-dark);
  color: var(--white);
  border: 1px solid var(--line-light);
}

.compare-card h3 {
  font-family: var(--font-serif-family);
  font-size: 2rem;
  font-weight: 600;
}

.compare-card.gro h3 {
  color: var(--white);
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
}

.compare-card.traditional .compare-list li {
  color: var(--ink-soft);
}

.compare-card.gro .compare-list li {
  color: rgba(255, 255, 255, 0.75);
}

.compare-list li i {
  font-size: 1rem;
  margin-top: 2px;
  flex: 0 0 20px;
}

.compare-card.traditional .compare-list li i {
  color: #9b433d;
}

.compare-card.gro .compare-list li i {
  color: var(--accent-gold);
}

@media (max-width: 992px) {
  .compare-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── HOW IT WORKS (TIMELINE) ── */
.timeline-section {
  padding: 6rem 0;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.timeline-step {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}

.timeline-step-num {
  font-family: var(--font-serif-family);
  font-size: 4.5rem;
  font-weight: 600;
  color: rgba(189, 162, 130, 0.12);
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 20px;
}

.timeline-step-title {
  font-family: var(--font-serif-family);
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 1.5rem;
}

.timeline-step-desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

@media (max-width: 768px) {
  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ── WHO WE HELP ── */
.who-section {
  padding: 6rem 0;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.who-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: var(--transition-smooth);
}

.who-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}

.who-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: var(--bg-clay);
  color: var(--accent-gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.who-title {
  font-family: var(--font-serif-family);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.who-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

@media (max-width: 992px) {
  .who-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .who-grid {
    grid-template-columns: 1fr;
  }
}

/* ── AUDIT FORM ── */
.contact-section {
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-info {
  padding: clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(circle at top left, rgba(189, 162, 130, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(239, 228, 212, 0.76), rgba(245, 239, 230, 0.72));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

.contact-info h2 {
  font-family: var(--font-serif-family);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 600;
}

.contact-info-sub {
  font-size: 1rem;
  color: var(--ink-soft);
}

.contact-promises {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.promise-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.promise-row i {
  color: var(--accent-gold-deep);
}

.contact-form {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-mono-family);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--accent-gold-deep);
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  border: 1px solid rgba(28, 26, 29, 0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink);
  padding: 0.85rem 1.1rem;
  outline: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 10px 20px rgba(189, 162, 130, 0.05);
  transform: translateY(-1px);
}

textarea.form-input {
  min-height: 110px;
  resize: vertical;
}

.select-wrap select {
  appearance: none;
  cursor: pointer;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: var(--bg-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 12px 24px rgba(28, 26, 29, 0.15);
}

.submit-btn:hover {
  transform: translateY(-2px);
  background-color: var(--accent-gold-deep);
}

.submit-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.form-status {
  font-size: 0.88rem;
  font-weight: 600;
}

.form-status.is-success {
  color: #386146;
}

.form-status.is-error {
  color: #9b433d;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .form-group-row {
    grid-template-columns: 1fr;
  }
  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .submit-btn {
    width: 100%;
  }
}

/* ── FOOTER ── */
.footer {
  padding: 4rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-left p {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.location-banner {
  font-family: var(--font-mono-family);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold-deep);
}

/* ── ADDITIONAL CUSTOM MINIMALIST COMPONENT STYLES ── */

.nav-btn-tab {
  font-family: var(--font-sans-family);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 4px 0;
  transition: var(--transition-smooth);
}

.nav-btn-tab::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-btn-tab:hover {
  color: var(--ink);
}

.nav-btn-tab:hover::after,
.nav-btn-tab.active::after {
  transform: scaleX(1);
}

.nav-btn-tab.active {
  color: var(--ink);
  font-weight: 700;
}

/* Value Prop Cards inside Hero */
.value-prop-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1100px;
  margin-top: 3.5rem;
  text-align: left;
}

.value-card {
  background: rgba(255, 253, 251, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: var(--transition-smooth);
}

.value-card:hover {
  background: rgba(255, 253, 251, 0.05);
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.value-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(189, 162, 130, 0.15);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}

.value-card h3 {
  font-family: var(--font-serif-family);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.88rem;
  color: rgba(255, 253, 249, 0.65);
  line-height: 1.5;
}

/* Interactive Platform Explorer Hub */
.hub-section {
  padding: 5rem 0;
  background-color: var(--bg-clay);
}

.section-header-compact {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-header-compact h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.section-header-compact p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.hub-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: 540px;
}

.hub-sidebar {
  background: rgba(28, 26, 29, 0.02);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 0.75rem;
}

.hub-tab-btn {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
}

.hub-tab-btn i {
  font-size: 1.3rem;
  color: var(--ink-soft);
  margin-top: 2px;
  transition: var(--transition-smooth);
}

.hub-tab-text h4 {
  font-family: var(--font-sans-family);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
  transition: var(--transition-smooth);
}

.hub-tab-text p {
  font-size: 0.76rem;
  color: var(--ink-soft);
  line-height: 1.2;
}

.hub-tab-btn:hover {
  background: rgba(28, 26, 29, 0.04);
}

.hub-tab-btn.active {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
}

.hub-tab-btn.active i {
  color: var(--accent-gold);
}

.hub-tab-btn.active .hub-tab-text h4 {
  color: var(--white);
}

.hub-tab-btn.active .hub-tab-text p {
  color: rgba(255, 255, 255, 0.6);
}

.hub-content-panel {
  padding: 2.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Systems View Tab */
.selector-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.selector-pill {
  font-family: var(--font-sans-family);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.selector-pill:hover {
  background: var(--bg-clay);
  color: var(--ink);
}

.selector-pill.active {
  background: var(--accent-gold-deep);
  border-color: var(--accent-gold-deep);
  color: var(--white);
}

.systems-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.systems-text-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.systems-text-card h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-family: var(--font-serif-family);
  font-weight: 600;
}

.custom-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.custom-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.custom-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-gold-deep);
  font-weight: bold;
}

.replaces-tag {
  align-self: flex-start;
  font-family: var(--font-mono-family);
  font-size: 0.72rem;
  background-color: var(--bg-clay);
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--accent-gold-deep);
}

.systems-visual-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.features-display-hub {
  position: relative;
  width: 100%;
  height: 100%;
}

.features-display-hub .mockup-container {
  padding: 1rem;
}

/* Outcomes/Case Studies Tab */
.outcomes-detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.outcomes-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.outcome-badge {
  align-self: flex-start;
  font-family: var(--font-mono-family);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold-deep);
  background-color: rgba(140, 115, 86, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(140, 115, 86, 0.12);
}

.outcome-subtitle {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.outcome-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.outcome-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.outcome-stat-val {
  font-family: var(--font-serif-family);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-gold-deep);
  line-height: 1;
}

.outcome-stat-lbl {
  font-size: 0.72rem;
  color: var(--ink-soft);
}

.outcomes-narrative-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.outcomes-narrative-card h4 {
  font-family: var(--font-sans-family);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.narrative-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.narrative-bullet-list li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  position: relative;
  padding-left: 18px;
  line-height: 1.4;
}

.narrative-bullet-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-gold-deep);
}

.narrative-bullet-list li strong {
  color: var(--ink);
}

.outcomes-footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.mini-tag {
  font-size: 0.76rem;
  background-color: var(--bg-clay);
  color: var(--ink-soft);
  padding: 3px 8px;
  border-radius: 99px;
  border: 1px solid var(--line);
}

/* Timeline/Process Tab */
.timeline-subtitle {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.timeline-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.timeline-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.timeline-card-num {
  font-family: var(--font-serif-family);
  font-size: 3.5rem;
  font-weight: 600;
  color: rgba(189, 162, 130, 0.12);
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 15px;
}

.timeline-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
}

.timeline-card p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.timeline-card-time {
  margin-top: auto;
  font-family: var(--font-mono-family);
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--accent-gold-deep);
}

/* Comparison Tab */
.compare-subtitle {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.compare-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.compare-col {
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.compare-col.manual-col {
  background-color: var(--white);
  border: 1px solid var(--line);
}

.compare-col.gro-col {
  background-color: var(--bg-dark);
  color: var(--white);
  border: 1px solid var(--line-light);
}

.compare-col h4 {
  font-family: var(--font-serif-family);
  font-size: 1.4rem;
  font-weight: 600;
}

.compare-col.gro-col h4 {
  color: var(--white);
}

.compare-bullets-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.compare-bullets-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}

.compare-col.manual-col .compare-bullets-list li {
  color: var(--ink-soft);
}

.compare-col.gro-col .compare-bullets-list li {
  color: rgba(255, 255, 255, 0.75);
}

.compare-bullets-list li i {
  font-size: 0.9rem;
  margin-top: 2px;
  flex: 0 0 16px;
}

.compare-col.manual-col .compare-bullets-list li i {
  color: #9b433d;
}

.compare-col.gro-col .compare-bullets-list li i {
  color: var(--accent-gold);
}

/* Compact Footer underline action button */
.submit-btn-minimal {
  font-family: var(--font-sans-family);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold-deep);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  transition: var(--transition-smooth);
}

.submit-btn-minimal:hover {
  color: var(--ink);
  transform: translateX(3px);
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 26, 29, 0.45);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.25s ease-out;
}

.modal-container {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: min(calc(100% - 2rem), 680px);
  padding: 2.5rem;
  position: relative;
  animation: slideUp 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  overflow-y: auto;
  max-height: 90vh;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--ink-soft);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: rgba(28, 26, 29, 0.05);
  color: var(--ink);
}

.modal-header {
  margin-bottom: 1.5rem;
}

.modal-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
  font-family: var(--font-serif-family);
  font-weight: 600;
}

.modal-header p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* RESPONSIVE DESIGN ADJUSTMENTS FOR THE HUB */

@media (max-width: 992px) {
  .hub-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hub-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--line);
    flex-direction: row;
    overflow-x: auto;
    padding: 1rem;
    gap: 0.5rem;
  }
  .hub-tab-btn {
    flex-shrink: 0;
    width: auto;
    padding: 0.6rem 1rem;
  }
  .hub-tab-text p {
    display: none;
  }
  .systems-detail-layout,
  .outcomes-detail-layout,
  .compare-split-grid {
    grid-template-columns: 1fr;
  }
  .systems-visual-card {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .value-prop-cards {
    grid-template-columns: 1fr;
  }
  .timeline-cards-row {
    grid-template-columns: 1fr;
  }
}

/* ── SPA VIEW SWAPPING CUSTOM STYLES ── */
.logo-btn-style {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  outline: none;
}

.nav-btn-tab {
  background: transparent;
  border: none;
  font-family: var(--font-sans-family);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  cursor: pointer;
  padding: 0;
  outline: none;
}

.nav-btn-tab::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-btn-tab:hover,
.nav-btn-tab.active {
  color: var(--ink);
}

.nav-btn-tab:hover::after,
.nav-btn-tab.active::after {
  transform: scaleX(1);
}

.spa-main-content {
  min-height: calc(100vh - 180px);
  display: flex;
  flex-direction: column;
}

.subpage-section {
  padding: 5rem 0;
}

.section-header-compact {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header-compact h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 0.8rem;
  line-height: 1.15;
}

.section-header-compact p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.inner-view-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.value-prop-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  width: 100%;
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
  transition: var(--transition-smooth);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.value-card-icon {
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
}

.value-card h3 {
  font-family: var(--font-serif-family);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.85rem;
  color: rgba(255, 253, 249, 0.65);
  line-height: 1.5;
}

/* ── PORTFOLIO PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  margin-top: 2rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  justify-content: space-between;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-lg);
}

.product-card-top {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.product-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card-metric {
  font-family: var(--font-mono-family);
  font-size: 0.7rem;
  color: var(--accent-gold-deep);
  background: rgba(140, 115, 86, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
  border: 1px solid rgba(140, 115, 86, 0.12);
}

.product-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.product-card h3 {
  font-family: var(--font-serif-family);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.product-tag {
  font-family: var(--font-mono-family);
  font-size: 0.65rem;
  background: var(--bg-clay);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--ink-soft);
  border: 1px solid rgba(28, 26, 29, 0.05);
}

.product-card-link {
  font-family: var(--font-sans-family);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.product-card-link:hover {
  color: var(--ink);
  transform: translateX(4px);
}

/* ── EDUCATOR COLUMN LAYOUT (VIDEOS & BLOGS) ── */
.educator-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: start;
  width: 100%;
}

.videos-column, .articles-column {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.column-title {
  font-family: var(--font-serif-family);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.column-title i {
  color: var(--accent-gold-deep);
  font-size: 1.5rem;
}

.video-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
}

.video-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.video-player-mock {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-dark);
}

.video-player-mock iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.video-card-body h4 {
  font-family: var(--font-serif-family);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}

.video-card-body p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.article-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.article-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.article-card:hover h4 {
  color: var(--accent-gold-deep);
}

.article-card h4 {
  font-family: var(--font-serif-family);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.article-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.article-link {
  font-family: var(--font-sans-family);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.4rem;
  transition: var(--transition-smooth);
}

.article-link:hover {
  color: var(--ink);
  transform: translateX(3px);
}

/* ── SOCIALS BAR SECTION ── */
.socials-bar-section {
  padding: 5rem 0;
  background-color: var(--bg-dark);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.socials-title {
  font-family: var(--font-serif-family);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.socials-list {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
}

.social-item-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono-family);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-smooth);
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.social-item-link:hover {
  color: var(--white);
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.social-item-link i {
  font-size: 1.1rem;
  color: var(--accent-gold);
}

/* ── ABOUT GRID & TRUST CARD ── */
.about-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
  padding: 2rem 0 4rem;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.about-left-text {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.about-right {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.about-right h3 {
  font-family: var(--font-serif-family);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.about-right p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

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

.about-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat-val {
  font-family: var(--font-serif-family);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent-gold-deep);
  line-height: 1;
}

.about-stat-lbl {
  font-size: 0.68rem;
  font-family: var(--font-sans-family);
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .educator-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .socials-list {
    gap: 0.8rem;
  }
  .social-item-link {
    padding: 8px 16px;
    font-size: 0.7rem;
  }
}

@media (max-width: 580px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .about-stat-item {
    align-items: center;
  }
}

/* ── SUBPAGE SECTIONS (PRODUCTS, CASE STUDIES, ARTICLES) ── */
.subpage-section {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 0;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .subpage-section {
    min-height: auto;
    padding: 4rem 0;
  }
}

/* ── SCROLL SNAPPING FOR HOMEPAGE & SUBPAGE SECTIONS ── */
@media (min-width: 1024px) {
  html.home-snap-active {
    scroll-snap-type: y mandatory;
    scroll-padding-top: 80px; /* Offset for sticky header */
  }

  html.home-snap-active .hero {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  html.home-snap-active .academic-foundations {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  html.home-snap-active .subpage-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  html.home-snap-active .socials-bar-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

/* ── INTERACTIVE DEMO VIEWER MODAL ── */
.demo-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 26, 29, 0.4);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20000;
  animation: fadeIn 0.3s ease-out;
}

.demo-modal-container {
  background: var(--bg-dark);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: min(calc(100% - 2.5rem), 1250px);
  height: min(calc(100% - 2.5rem), 850px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}

.demo-modal-header {
  background: #151316;
  border-bottom: 1px solid var(--line-light);
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.demo-modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-modal-title-wrap h2 {
  font-family: var(--font-serif-family);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.demo-modal-badge {
  font-family: var(--font-mono-family);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(189, 162, 130, 0.15);
  color: var(--accent-gold);
  border: 1px solid rgba(189, 162, 130, 0.25);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.demo-modal-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.demo-toolbar-btn {
  font-family: var(--font-mono-family);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.demo-toolbar-btn:hover {
  color: var(--white);
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.06);
}

.demo-modal-close {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: var(--accent-gold);
}

.demo-iframe-wrapper {
  flex: 1;
  width: 100%;
  position: relative;
  background: #0d0c0e;
}

.demo-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
}

.demo-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0d0c0e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  z-index: 10;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono-family);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(189, 162, 130, 0.1);
  border-radius: 50%;
  border-top-color: var(--accent-gold);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .demo-modal-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
  }
  .demo-modal-header {
    padding: 1rem 1.25rem;
  }
  .demo-modal-title-wrap h2 {
    font-size: 1.3rem;
  }
  .demo-toolbar-btn span {
    display: none;
  }
}

.demo-trigger-btn {
  color: var(--accent-gold-deep);
  transition: var(--transition-smooth);
}

.demo-trigger-btn:hover {
  color: var(--ink);
  transform: translateX(4px);
}



