@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;800&family=Work+Sans:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Color */
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --accent: #2BDE73; /* Updated to brand green #2BDE73 */
  --accent-text: #0b9347; /* Adjusted for better contrast on white backgrounds */
  --accent-ink: #10140F; /* dark text used ON the green fill */
  --text-primary: #10140F;
  --text-muted: #5C635C;
  --border: #E2E6E1;
  --menu-bg: #F8F9FA; /* Near-white background for mega menu */
  --chip-bg: #E6F9EC; /* Light mint-green background for icon chips */

  /* Type */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing (8pt scale) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-12: 6rem;

  /* Layout */
  --container-max: 1200px;
  --radius: 4px;
  --radius-md: 10px; /* For icon chips */
  --radius-lg: 16px; /* For mega menu panel */
  --radius-pill: 9999px; /* For CTA buttons and pill states */

  /* Shadow */
  --shadow-soft: 0 20px 40px rgba(16, 20, 15, 0.08), 0 1px 3px rgba(16, 20, 15, 0.03);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.section-index {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover { transform: translateY(-1px); background: #06c47e; }

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--text-primary); }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  margin: 0 auto;
  border-radius: 0;
  z-index: 100;
  background: #0B120D;
  border: 1px solid transparent;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-top: none;
  box-shadow: none;
  transition: all 0.3s ease;
}
/* Scrolled / sticky state — switches to white */
.site-header.scrolled {
  top: 16px;
  width: calc(100% - 48px);
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
@media (min-width: 1024px) {
  .site-header.scrolled {
    width: 80%;
  }
}
.nav-container {
  width: 100%;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
  transition: padding 0.3s ease;
}
.site-header.scrolled .nav {
  padding: 10px 0;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo-mark {
  display: block;
  flex-shrink: 0;
}
.brand-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.site-header.scrolled .brand-wordmark {
  color: var(--text-primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.15s ease;
  background: none;
  border: none;
  padding: 8px 0;
  font-family: var(--font-body);
  cursor: pointer;
}
.site-header.scrolled .nav-link {
  color: #333;
}
.nav-link:hover {
  color: #2BDE73;
}
.site-header.scrolled .nav-link:hover {
  color: var(--accent-text);
}
.nav-link.active {
  color: #FFFFFF;
  font-weight: 600;
}
.site-header.scrolled .nav-link.active {
  color: #111;
}
.nav-icon { display: none; }
.nav-chevron {
  width: 14px;
  height: 14px;
  stroke-width: 2.5px;
  color: rgba(255,255,255,0.5);
  transition: transform 0.2s ease, color 0.15s ease;
}
.site-header.scrolled .nav-chevron {
  color: #666;
}
.nav-link:hover .nav-chevron {
  color: #2BDE73;
}
.site-header.scrolled .nav-link:hover .nav-chevron {
  color: var(--accent-text);
}
.dropdown-trigger[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* "Free Audit" outline pill nav CTA */
.nav-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-pill);
  background: rgba(43,222,115,0.1);
  border: 1.5px solid rgba(43,222,115,0.5);
  color: #2BDE73;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.55rem 1.2rem;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.site-header.scrolled .nav-cta-outline {
  background: #FFFFFF;
  border-color: var(--accent-text);
  color: var(--accent-text);
}
.nav-cta-outline:hover {
  background: rgba(43,222,115,0.18);
  box-shadow: 0 3px 10px rgba(43,222,115,0.2);
  transform: translateY(-1px);
}
.site-header.scrolled .nav-cta-outline:hover {
  background: var(--chip-bg);
}
.nav-cta-outline:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 2px;
}
.cta-icon-left, .cta-icon-right {
  width: 16px;
  height: 16px;
  stroke-width: 2.5px;
}

/* ============================================
   MEGA MENU PANEL (5 Columns)
   ============================================ */
.mega-menu {
  position: absolute;
  top: calc(100% + 32px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: calc(100vw - 2 * var(--space-4));
  max-width: var(--container-max);
  background: var(--menu-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 40px;
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.mega-menu.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Caret indicator */
.mega-menu-caret {
  position: absolute;
  top: -22px;
  left: var(--caret-left, 50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--menu-bg);
  pointer-events: none;
}
.mega-menu-caret::before {
  content: "";
  position: absolute;
  top: 1px;
  left: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--border);
  z-index: -1;
}

/* ============================================
   WHAT WE BUILD — Tabbed Panel
   ============================================ */
.wwb-panel {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: var(--space-3);
}

/* — Sidebar tab list — */
.wwb-sidebar {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 0 0 250px;
  border-right: 1px solid var(--border);
  padding-right: 20px;
}
.wwb-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius-md);
  background: none;
  border: none;
  border-left: 3px solid transparent;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.wwb-tab:hover {
  background: var(--chip-bg);
}
.wwb-tab.is-active {
  background: var(--chip-bg);
  border-left-color: var(--accent-text);
}
.wwb-tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.wwb-tab-icon svg {
  width: 16px;
  height: 16px;
  color: var(--text-primary);
}
.wwb-tab.is-active .wwb-tab-icon svg {
  color: var(--accent-text);
}
.wwb-tab-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--border);
  color: var(--text-muted);
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
}
.wwb-tab.is-active .wwb-tab-number {
  background: var(--accent-text);
  color: #FFFFFF;
}
.wwb-tab-label {
  flex: 1;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
}
.wwb-tab-chevron {
  width: 15px;
  height: 15px;
  color: var(--text-muted);
  flex-shrink: 0;
}
/* — Right content panels — */
.wwb-content {
  flex: 1;
  min-width: 0;
}
.wwb-panel-body {
  display: none;
}
.wwb-panel-body.is-active {
  display: block;
}
.wwb-panel-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.wwb-panel-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--chip-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wwb-panel-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-text);
}
.wwb-panel-heading {
  flex: 1;
  min-width: 0;
}
.wwb-panel-heading h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  margin: 0 0 4px;
  color: var(--text-primary);
}
.wwb-panel-heading p {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0;
  max-width: 460px;
}
.wwb-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--accent-text);
  color: var(--accent-text);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.wwb-learn-more:hover {
  background: var(--chip-bg);
}
.wwb-learn-more svg {
  width: 14px;
  height: 14px;
}

.wwb-panel-main {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.wwb-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
}
.wwb-feature-list li {
  border-bottom: 1px solid var(--border);
}
.wwb-feature-list li:last-child {
  border-bottom: none;
}
.wwb-feature-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease;
}
.wwb-feature-link:hover {
  transform: translateX(2px);
}
.wwb-feature-link:hover .wwb-feature-icon {
  background: var(--chip-bg);
}
.wwb-feature-link:hover .wwb-feature-title {
  color: var(--accent-text);
}
.wwb-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--chip-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wwb-feature-icon svg {
  width: 16px;
  height: 16px;
  color: var(--accent-text);
}
.wwb-feature-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}
.wwb-feature-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--text-primary);
}
.wwb-feature-desc {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.wwb-feature-chevron {
  width: 14px;
  height: 14px;
  color: #B7BDB6;
  flex-shrink: 0;
}

/* — Visual mockup area (shared) — */
.wwb-visual {
  flex: 1;
  min-width: 0;
  position: relative;
  padding-top: 6px;
}
.wv-chart {
  width: 100%;
  height: 40px;
  display: block;
}
.wv-float-card {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 8px 20px rgba(16,20,15,0.1);
  z-index: 2;
}
.wv-float-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--text-muted);
}
.wv-float-value {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
}
.wv-float-value svg {
  width: 12px;
  height: 12px;
  color: var(--accent-text);
}
.wv-float-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: var(--accent-text);
  font-weight: 600;
}
.wv-mini-chart {
  width: 100%;
  height: 26px;
  margin: 4px 0;
  display: block;
}
.wv-campaign-title {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

/* Panel 1: WX visual */
.wv-browser {
  background: #F3F7F4;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wv-browser-bar {
  display: flex;
  gap: 4px;
}
.wv-browser-bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D8DDD7;
}
.wv-gauge-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.wv-gauge {
  width: 100px;
  height: 56px;
  flex-shrink: 0;
}
.wv-gauge-text {
  display: flex;
  flex-direction: column;
}
.wv-gauge-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.wv-gauge-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
}
.wv-gauge-suffix {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}
.wv-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wwb-visual-wx .wv-float-card {
  top: -8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wv-badge-row {
  display: flex;
  gap: 10px;
  margin-top: 46px;
}
.wv-badge {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.wv-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--chip-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wv-badge-icon svg {
  width: 16px;
  height: 16px;
  color: var(--accent-text);
}
.wv-badge span:last-child {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Panel 2: GEO visual */
.wv-serp {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wv-serp-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-primary);
}
.wv-serp-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  background: #F3F7F4;
}
.wv-serp-row-you {
  background: var(--chip-bg);
  border: 1px solid rgba(43,222,115,0.3);
}
.wv-serp-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wv-serp-icon svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}
.wv-serp-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.wv-serp-text > span:first-child {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-primary);
}
.wv-serp-check {
  width: 13px;
  height: 13px;
  color: var(--accent-text);
}
.wv-serp-sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--text-muted);
}
.wwb-visual-geo .wv-float-card {
  bottom: -10px;
  right: 0;
  width: 150px;
}
.wv-float-big {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--accent-text);
}
.wv-ai-bubbles {
  position: absolute;
  top: 20px;
  right: -6px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.wv-ai-bubble {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border);
  box-shadow: 0 6px 16px rgba(16,20,15,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wv-ai-bubble svg {
  width: 16px;
  height: 16px;
  color: var(--accent-text);
}

/* Panel 3: Synthetic Media visual */
.wv-studio {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}
.wv-studio-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.wv-studio-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-text);
}
.wv-studio-head div {
  display: flex;
  flex-direction: column;
}
.wv-studio-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-primary);
}
.wv-studio-sub {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: var(--text-muted);
}
.wv-studio-body {
  display: flex;
  gap: 10px;
}
.wv-studio-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 0 0 62px;
}
.wv-studio-nav span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: var(--text-muted);
  padding: 5px 6px;
  border-radius: 6px;
}
.wv-studio-nav span svg {
  width: 12px;
  height: 12px;
}
.wv-studio-nav span.is-active {
  background: var(--chip-bg);
  color: var(--accent-text);
  font-weight: 600;
}
.wv-studio-preview {
  position: relative;
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  height: 90px;
}
.wv-studio-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wv-studio-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wv-studio-play svg {
  width: 14px;
  height: 14px;
  color: #10140F;
}
.wv-studio-duration {
  position: absolute;
  bottom: 6px;
  right: 8px;
  background: rgba(16,20,15,0.7);
  color: #FFFFFF;
  font-size: 0.625rem;
  padding: 2px 6px;
  border-radius: 4px;
}
.wv-studio-thumbs {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.wv-studio-thumbs span {
  flex: 1;
  height: 16px;
  border-radius: 5px;
  background: var(--chip-bg);
  border: 1px solid var(--border);
}
.wv-studio-thumbs span.is-active {
  border-color: var(--accent-text);
}
.wwb-visual-media .wv-float-card {
  top: -10px;
  right: -6px;
  width: 140px;
  text-align: center;
}
.wv-logo-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}
.wv-logo-chip {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wv-logo-chip img {
  width: 15px;
  height: 15px;
}

/* Panel 4: Algorithmic Media visual */
.wv-campaign {
  background: #F3F7F4;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.wv-stat-row {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}
.wv-stat-cell {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.wv-stat-label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: var(--text-muted);
}
.wv-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--text-primary);
}
.wv-stat-change {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--accent-text);
}
.wwb-visual-ads .wv-float-card {
  bottom: -10px;
  left: 0;
}
.wv-donut-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.wv-donut {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.wv-donut-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--text-primary);
}
.wv-donut-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: var(--text-muted);
}

/* Panel 5: RevOps visual */
.wv-pipeline {
  background: #F3F7F4;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
}
.wv-pipeline-value {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.wv-pipeline-value svg {
  width: 13px;
  height: 13px;
  color: var(--accent-text);
}
.wv-funnel {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}
.wv-funnel-row {
  position: relative;
  height: 21px;
  margin-bottom: 5px;
}
.wv-funnel-row:last-child {
  margin-bottom: 0;
}
.wv-funnel-bar {
  position: absolute;
  inset: 0;
  background: rgba(43,222,115,0.18);
  border-radius: 5px;
}
.wv-funnel-text {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 10px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--text-primary);
}
.wv-funnel-text b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
}

/* Column Rows */
.column-rows {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
.column-rows li {
  border-bottom: 1px solid var(--border);
}
.column-rows li:last-child {
  border-bottom: none;
}

.mega-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  transition: background-color 0.15s ease, transform 0.15s ease;
  border-radius: var(--radius);
  width: 100%;
}
.mega-row:hover {
  transform: translateX(2px);
}
.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--chip-bg);
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.mega-row:hover .icon-chip {
  transform: scale(1.05);
}
.icon-chip i {
  width: 18px;
  height: 18px;
  color: var(--accent-text);
  stroke-width: 2px;
}
.row-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
.row-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--text-primary);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.row-desc {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Desktop Hover Trigger Fallbacks (Ensures hover works instantly with transition closes) */
@media (min-width: 1025px) {
  .has-dropdown:hover .mega-menu,
  .has-dropdown:hover .academy-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
  }
  .has-dropdown:hover .dropdown-trigger .nav-chevron {
    transform: rotate(180deg);
  }
}

/* ============================================
   ACADEMY DROPDOWN PANEL (Single Column)
   ============================================ */
.academy-dropdown {
  position: absolute;
  top: calc(100% + 32px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 380px;
  background: var(--menu-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.academy-dropdown.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   BOTTOM BANNER STRIP
   ============================================ */
.mega-banner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  margin-top: 8px;
}
.banner-left {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex: 1;
}
.banner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.banner-badge i {
  width: 18px;
  height: 18px;
  stroke-width: 2.5px;
}
.banner-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.banner-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
}
.banner-desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.banner-right-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  background: var(--surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  flex: 0 0 450px;
}
.banner-right-box:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(43, 222, 115, 0.08);
}
.banner-right-content {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.banner-right-box .banner-badge {
  background: var(--accent);
  color: var(--accent-ink);
}
.banner-arrow {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  stroke-width: 2.5px;
  transition: transform 0.2s ease, color 0.2s ease;
}
.banner-right-box:hover .banner-arrow {
  transform: translateX(4px);
  color: var(--accent-text);
}

/* Nav Toggle & Mobile Overlays */
.nav-cta {
  display: none;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--text-primary);
  border-radius: var(--radius);
  transition: background-color 0.2s ease;
}
.nav-toggle:hover {
  background-color: var(--border);
}

/* ============================================
   RESPONSIVE LAYOUTS
   ============================================ */
@media (min-width: 1241px) {
  .nav-cta {
    display: inline-flex;
  }
}

@media (max-width: 1240px) {
  .mega-menu {
    width: calc(100vw - 2 * var(--space-2));
    padding: 30px;
  }
  .wwb-panel {
    gap: 20px;
  }
  .wwb-feature-list {
    flex-basis: 240px;
  }
  .banner-right-box {
    flex: 0 0 350px;
  }
}

@media (max-width: 1240px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 10000;
  }
  .nav-cta-outline {
    display: none;
  }
  .nav-toggle-icon-close {
    display: none;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-icon-open {
    display: none;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-icon-close {
    display: block;
  }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #FFFFFF;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 96px var(--space-4) var(--space-4);
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: var(--space-1);
    z-index: 9999;
    overflow-y: auto;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-item {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .nav-link {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    text-align: right;
    font-size: 1.0625rem;
  }
  .nav-link.active::after {
    display: none; /* Hide bottom line on mobile list */
  }

  /* Mobile Accordion Menus */
  .mega-menu,
  .academy-dropdown {
    position: static;
    transform: none !important;
    width: 100%;
    max-width: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 8px 0;
    display: none;
    margin-top: 4px;
  }
  .mega-menu.is-active,
  .academy-dropdown.is-active {
    display: block;
  }
  .mega-menu-caret {
    display: none;
  }
  
  /* What We Build — stack tabs above content, hide illustrations */
  .wwb-panel {
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: 0;
  }
  .wwb-sidebar {
    flex-basis: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 12px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  .wwb-tab {
    flex: 1 1 auto;
    border-left: none;
    border: 1px solid var(--border);
  }
  .wwb-tab.is-active {
    border-color: var(--accent-text);
  }
  .wwb-panel-main {
    flex-direction: column;
  }
  .wwb-feature-list {
    flex-basis: auto;
    width: 100%;
  }
  .wwb-visual {
    display: none;
  }

  /* Smaller type for the mobile panel header + feature rows */
  .wwb-panel-icon { width: 36px; height: 36px; }
  .wwb-panel-icon svg { width: 18px; height: 18px; }
  .wwb-panel-heading h3 { font-size: 0.8125rem; }
  .wwb-panel-heading p { font-size: 0.6875rem; font-weight: 700; }
  .wwb-learn-more-text { display: none; }
  .wwb-learn-more {
    width: 34px;
    height: 34px;
    padding: 0;
    justify-content: center;
    border: none;
    background: var(--accent-text);
    flex-shrink: 0;
  }
  .wwb-learn-more:hover { background: #097a36; }
  .wwb-learn-more svg { width: 15px; height: 15px; color: #FFFFFF; }
  .wwb-feature-icon { width: 28px; height: 28px; }
  .wwb-feature-icon svg { width: 14px; height: 14px; }
  .wwb-feature-title { font-size: 0.75rem; }
  .wwb-feature-desc { font-size: 0.625rem; }

  .column-rows {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .mega-column.is-expanded .column-rows {
    max-height: 1000px; /* Expand fully */
  }
  /* Academy is a flat single-column list, not an accordion — always show its rows */
  .academy-dropdown .column-rows {
    max-height: none;
    overflow: visible;
  }
  .column-rows li {
    padding: 0 12px;
  }
  .column-rows li:last-child {
    border-bottom: none;
  }
  
  /* Right Aligned Rows and Icons */
  .mega-row {
    padding: 8px 0;
    justify-content: flex-end; /* Align elements to the right */
    gap: 8px;
  }
  .mega-row .icon-chip {
    order: 2; /* Move icon to the right side of the text */
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }
  .mega-row .icon-chip i {
    width: 14px;
    height: 14px;
  }
  .mega-row .row-content {
    order: 1; /* Move text to the left side of the icon */
    align-items: flex-end; /* Right-align text content */
    gap: 1px;
  }
  .mega-row .row-title {
    font-size: 0.75rem;
    text-align: right;
  }
  .mega-row .row-desc {
    font-size: 0.625rem;
    text-align: right;
  }
  
  /* Mobile Banner (Hidden to avoid scrolling and keep layout compact) */
  .mega-banner {
    display: none;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
}
.hero .section-index {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

/* Two Column Desktop Layout */
.hero-two-column {
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 40px;
  align-items: center;
}

/* Left Column: Content styling */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-3);
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-text);
  border-radius: 50%;
}
.eyebrow-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--accent-text);
}

.hero .subhead {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: var(--space-4);
}

/* CTAs & Scroll Hint */
.hero-ctas-container {
  position: relative;
  margin-bottom: var(--space-6);
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.hero-ctas .btn {
  border-radius: 100px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-icon-right {
  width: 16px;
  height: 16px;
  stroke-width: 2.5px;
}

.scroll-hint {
  position: absolute;
  top: calc(100% + 12px);
  left: 210px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.scroll-text {
  font-family: 'Caveat', cursive;
  font-size: 1.375rem;
  color: var(--accent-text);
  transform: rotate(-3deg);
  white-space: nowrap;
}
.scroll-arrow {
  margin-top: -6px;
}

/* Right Column: Systems Network Diagram */
.hero-diagram-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-diagram-container {
  position: relative;
  width: 660px;
  height: 560px;
  overflow: visible;
  flex-shrink: 0;
}

/* Connector SVG */
.connector-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Central Hub — Bright green (matches reference) */
.hub-outer {
  position: absolute;
  top: 255px; /* hub center y in SVG coords */
  left: 330px; /* hub center x */
  transform: translate(-50%, -50%);
  width: 136px;
  height: 136px;
  z-index: 10;
}

/* Large radial glow behind hub */
.hub-glow-bg {
  position: absolute;
  inset: -55px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(43, 222, 115, 0.55)  0%,
    rgba(43, 222, 115, 0.22) 35%,
    rgba(43, 222, 115, 0.08) 60%,
    transparent 80%
  );
  animation: hubPulse 3s ease-in-out infinite alternate;
  z-index: -1;
}
@keyframes hubPulse {
  0%   { transform: scale(0.92); opacity: 0.85; }
  100% { transform: scale(1.08); opacity: 1; }
}

.hub-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: #2BDE73; /* Bright brand green */
  border-radius: 50%;
  box-shadow:
    0 0 0 10px rgba(43, 222, 115, 0.18),
    0 0 0 22px rgba(43, 222, 115, 0.09),
    0 16px 48px rgba(43, 222, 115, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hub-glyph {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.1rem;
  color: #0B3B20; /* Dark green on bright green */
  letter-spacing: -3px;
  line-height: 1;
  user-select: none;
}
.hub-dot {
  color: #0B3B20;
  font-size: 1.5rem;
  vertical-align: middle;
}

/* Diagram Cards styling */
.diag-card {
  position: absolute;
  width: 250px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  z-index: 5;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.diag-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.diag-card .card-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.card-icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
}
.card-icon-chip i {
  width: 15px;
  height: 15px;
  stroke-width: 2.2px;
}

/* Icon colors */
.bg-mint-chip { background-color: var(--chip-bg); color: var(--accent-text); }
.bg-purple-chip { background-color: #F3E8FF; color: #8B5CF6; }
.bg-blue-chip { background-color: #DBEAFE; color: #3B82F6; }
.bg-orange-chip { background-color: #FEF3C7; color: #F59E0B; }

.diag-card .card-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--text-primary);
}
.diag-card .card-desc {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin-bottom: 0;
}

/* Position cards in desktop layout (660×560 container, hub at 330,255) */
.card-website  { top: 8px;  left: 8px;  width: 220px; }
.card-search   { top: 8px;  right: 8px; width: 230px; }
.card-creative { top: 218px; left: 8px; width: 220px; }
.card-media    { top: 218px; right: 8px; width: 230px; }
.card-pipeline {
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 410px;
}
.card-pipeline:hover {
  transform: translateX(-50%) translateY(-4px) scale(1.01);
}

.card-title-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.card-title-block .card-title {
  font-size: 0.875rem;
}
.card-title-block .card-desc {
  margin-bottom: 0;
}

/* Pipeline top row */
.pipeline-top-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

/* ─── Website Card: Improved Browser Mockup ─── */
.visual-browser {
  background: #16191a;
  border: 1px solid #2a2e2c;
  border-radius: 10px;
  overflow: hidden;
}
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  background: #1e2221;
  border-bottom: 1px solid #2a2e2c;
}
.b-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.b-dot.red    { background: #FF5F56; }
.b-dot.yellow { background: #FFBD2E; }
.b-dot.bgreen { background: #27C93F; }
.browser-url-bar {
  flex: 1;
  height: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  margin-left: 4px;
}
.browser-content {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-hero-stripe {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a2c22 0%, #0f1d16 100%);
  border-radius: 6px;
  padding: 8px;
}
.site-text-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stl-line {
  height: 4px;
  background: rgba(255,255,255,0.22);
  border-radius: 2px;
}
.stl-line.wide   { width: 100%; }
.stl-line.medium { width: 75%; }
.stl-line.narrow { width: 55%; }
.stl-btn {
  width: 40%;
  height: 8px;
  background: #2BDE73;
  border-radius: 4px;
  margin-top: 2px;
}
.site-screen-img {
  width: 44px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  flex-shrink: 0;
}
.site-nav-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.nav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.nav-dot.active {
  background: #2BDE73;
  width: 14px;
  border-radius: 3px;
}

/* Search: Stats Sparkline */
.visual-search {
  margin-top: 10px;
  background: #F8F9FA;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
}
.search-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.search-label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: var(--text-muted);
  font-weight: 500;
}
.search-value {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-text);
}
.sparkline {
  display: block;
}

/* ─── Ad Creative Card Visuals ─── */
.visual-creative {
  background: #f7f8f8;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px;
  overflow: hidden;
}
.creative-dots {
  display: flex;
  gap: 3px;
  margin-bottom: 5px;
}
.c-dot {
  width: 5px;
  height: 5px;
  background: rgba(0,0,0,0.12);
  border-radius: 50%;
}
.creative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.creative-thumb {
  height: 58px;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}

/* Sneaker thumb: dark photo look */
.thumb-sneaker {
  background: radial-gradient(ellipse at 40% 60%, #2a2a2a 0%, #111 60%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sneaker-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 45% 65%, rgba(200,200,255,0.12) 0%, transparent 60%);
}
.sneaker-silhouette {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LIMITED DROP thumb */
.thumb-drop {
  background: linear-gradient(160deg, #111 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.drop-inner {
  text-align: center;
  line-height: 1;
}
.drop-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.6rem;
  color: #fff;
  letter-spacing: 0.06em;
}
.drop-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.45rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  margin-top: 3px;
}

/* ─── Media Buying Card: ROAS + Bar Chart ─── */
.visual-media {
  background: #F8F9FA;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 52px;
}
.media-roas {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.roas-label {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.roas-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--accent-text);
  line-height: 1;
}
.media-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 100%;
  padding-bottom: 2px;
}
.media-bar {
  width: 6px;
  height: var(--h, 50%);
  background: #3B82F6;
  border-radius: 2px 2px 0 0;
  opacity: 0.85;
}
.media-bar:last-child { opacity: 1; }

/* Pipeline: Column indicators */
.visual-pipeline {
  margin-top: 10px;
  background: #F8F9FA;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pipeline-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.col-label {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  color: var(--text-muted);
  font-weight: 600;
}
.progress-container {
  height: 4px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  border-radius: 2px;
}
.progress-bar.bg-orange { background-color: #F59E0B; }
.progress-bar.bg-blue { background-color: #3B82F6; }
.progress-bar.bg-amber { background-color: #D97706; }
.progress-bar.bg-green { background-color: var(--accent); }
.col-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-primary);
}

/* ============================================
   TRUST LOGO BAR
   ============================================ */
.trust-bar {
  margin-top: 80px;
  border-top: 1px solid var(--border);
  padding-top: var(--space-6);
  width: 100%;
  text-align: center;
}
.trust-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7E877D;
  opacity: 0.65;
  transition: opacity 0.2s ease, color 0.2s ease;
  cursor: default;
}
.trust-logo:hover {
  opacity: 1;
  color: var(--text-primary);
}
.trust-icon {
  width: 18px;
  height: 18px;
  color: inherit;
}
.trust-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
}

/* Staggered card fade-in animation */
.diag-card {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.card-website { animation-delay: 0.1s; }
.card-search { animation-delay: 0.2s; }
.card-creative { animation-delay: 0.3s; }
.card-media { animation-delay: 0.4s; }
.card-pipeline { animation-delay: 0.5s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUpPipeline {
  from { opacity: 0; transform: translateX(-50%) translateY(15px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.card-pipeline {
  animation: fadeInUpPipeline 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@media (prefers-reduced-motion: reduce) {
  .diag-card, .card-pipeline {
    animation: none !important;
    opacity: 1 !important;
  }
}
@media (max-width: 1024px) {
  /* Responsive Hero Layout Stack */
  .hero {
    padding: 60px 0 var(--space-6);
  }
  .hero-two-column {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .eyebrow-wrapper {
    justify-content: center;
  }
  .hero .subhead {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .hero-ctas {
    justify-content: center;
  }
  .scroll-hint {
    position: static;
    margin-top: 8px;
    justify-content: center;
  }
  .scroll-arrow {
    transform: rotate(90deg);
  }

  /* Simplify Network Diagram on Mobile */
  .hero-diagram-container {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .connector-svg,
  .hub-outer {
    display: none !important;
  }
  
  /* Reset Card Positions on Mobile */
  .diag-card {
    position: static !important;
    width: 100% !important;
    max-width: 440px !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    box-shadow: var(--shadow-soft) !important;
    animation: fadeInUp 0.5s ease both;
  }
  
  .diag-card:hover {
    transform: translateY(-2px) !important;
  }

  .trust-bar {
    margin-top: 48px;
  }
  .trust-logos {
    gap: 24px 32px;
  }
}

/* ============================================
   FOOTER (placeholder — expands as sections are built)
   ============================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-4) 0;
  margin-top: var(--space-8);
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.site-footer p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   HERO — 2-COLUMN LAYOUT
   ============================================ */
.hero {
  position: relative;
  z-index: 0;
  background: #0B120D;
  padding: 80px 0 64px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(900px 700px at -10% -30%, rgba(43,222,115,0.18), transparent 65%),
    radial-gradient(1000px 800px at 110% 20%, rgba(43,222,115,0.14), transparent 65%),
    radial-gradient(800px 650px at 90% 110%, rgba(43,222,115,0.12), transparent 65%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 56px;
  align-items: center;
  min-height: 560px;
}

/* — Left column — */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Pill badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(43,222,115,0.08);
  border: 1.5px solid rgba(43,222,115,0.4);
  border-radius: var(--radius-pill);
  width: fit-content;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2BDE73;
  flex-shrink: 0;
}
.hero-badge-text {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2BDE73;
  letter-spacing: 0.01em;
}

/* Headline */
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin: 0;
}
.hero-green {
  color: var(--accent-text);
}

/* Subheading */
.hero-subhead {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin: 0;
  max-width: 480px;
}

/* CTA row */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-text);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-hero-primary i {
  width: 16px;
  height: 16px;
  stroke-width: 2.5px;
}
.btn-hero-primary:hover {
  background: #097a36;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11,147,71,0.25);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn-hero-secondary i {
  width: 16px;
  height: 16px;
  stroke-width: 2.5px;
}
.btn-hero-secondary:hover {
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}

/* — Right column wrapper — */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Background decoration SVG + rotating ring animation */
.hero-bg-deco {
  position: absolute;
  inset: -80px;
  pointer-events: none;
  z-index: 0;
}
.deco-svg {
  width: 100%;
  height: 100%;
}

/* Keyframes for the spinning dashed rings */
@keyframes spinRingCW {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes spinRingCCW {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* Apply rotation — transform-box:fill-box makes origin = circle's own center */
.deco-ring {
  transform-box: fill-box;
  transform-origin: center;
}
.deco-ring-inner {
  animation: spinRingCW 28s linear infinite;
}
.deco-ring-outer {
  animation: spinRingCCW 45s linear infinite;
}

/* Concentric circle grid, rotating slowly as one unit */
.deco-circle-grid {
  transform-box: fill-box;
  transform-origin: center;
  animation: spinRingCW 90s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .deco-ring, .deco-circle-grid { animation: none; }
}

/* ============================================
   GROWTH COMMAND CENTER DASHBOARD
   ============================================ */
.dashboard-card.gcc {
  position: relative;
  z-index: 2;
  background: rgba(13, 17, 23, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(43, 222, 115, 0.15);
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset, 0 8px 40px rgba(0,0,0,0.6), 0 0 80px rgba(43, 222, 115, 0.15);
  padding: 20px;
  width: 580px;
  max-width: 100%;
  animation: cardFloat 6s ease-in-out infinite;
}
.dashboard-card.gcc::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43,222,115,0.5), transparent);
  border-radius: 20px 20px 0 0;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-card.gcc { animation: none; }
}

/* Header */
.gcc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.gcc-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.gcc-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.2;
}
.gcc-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: #2BDE73;
}
.live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #2BDE73;
  box-shadow: 0 0 6px #2BDE73;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(43,222,115,0.7); }
  70% { box-shadow: 0 0 0 6px rgba(43,222,115,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,222,115,0); }
}
.gcc-subtitle {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  width: 100%;
}
.gcc-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-period-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 4px 8px;
  cursor: pointer;
}
.dash-period-pill.small {
  padding: 4px 6px;
  font-size: 0.6rem;
}
.dash-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 6px;
  border: 1px solid rgba(43,222,115,0.3);
  color: #2BDE73;
  cursor: pointer;
}
.dash-icon-btn i { width: 12px; height: 12px; }

/* 4 Stat Mini-Cards */
.stat-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.stat-mini-card {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
}
.smc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.smc-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}
.smc-icon {
  width: 12px; height: 12px;
  color: #2BDE73;
}
.smc-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.smc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.smc-change {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
}
.smc-change.up { color: #2BDE73; }
.smc-arrow { width: 10px; height: 10px; }
.smc-sparkline {
  width: 40px; height: 12px;
}

/* Middle Section */
.dash-middle-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.perf-chart-wrap, .top-channels-wrap {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  padding: 12px;
}
.perf-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.perf-header-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.perf-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.2;
}
.perf-green-dot {
  width: 5px; height: 5px; border-radius: 50%; background: #2BDE73;
}
.perf-legend {
  display: flex;
  gap: 8px;
}
.leg-item {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
}
.leg-dot {
  width: 5px; height: 5px; border-radius: 50%;
}
.c-green { background: #2BDE73; color: #2BDE73; }
.c-blue { background: #0668E1; color: #0668E1; }
.c-purple { background: #9C27B0; color: #9C27B0; }
.c-orange { background: #FF9800; color: #FF9800; }
.c-gray { background: #757575; color: #757575; }
.c-white { color: #fff !important; }
.bg-green { background: rgba(43,222,115,0.1); color: #2BDE73; }
.bg-purple { background: rgba(156,39,176,0.1); color: #9C27B0; }
.bg-white { background: #fff !important; }

/* Top Channels */
.tc-heading {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  color: #fff;
  margin-bottom: 12px;
}
.tc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.tc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tc-icon {
  width: 20px; height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}
.tc-icon svg, .tc-icon img {
  width: 12px; height: 12px;
}

/* SVG Coloring */
.logo-googleads svg { fill: #4285F4; }
.logo-meta svg { fill: #0668E1; }
.logo-linkedin svg { fill: #0A66C2; }
.logo-youtube svg { fill: #FF0000; }
.logo-tiktok svg { fill: #000000; }
.logo-ga4 svg { fill: #F9AB00; }
.logo-gtm svg { fill: #4285F4; }
.logo-zapier svg { fill: #FF4A00; }
.logo-hubspot svg { fill: #FF7A59; }
.logo-salesforce svg { fill: #00A1E0; }
.logo-shopify svg { fill: #7AB55C; }
.logo-mailchimp svg { fill: #FFE01B; }
.logo-slack svg { fill: #E01E5A; }
.logo-whatsapp svg { fill: #25D366; }
.logo-discord svg { fill: #5865F2; }

.tc-name {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.8);
  flex: 1;
}
.tc-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tc-val {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #fff;
}
.tc-btn {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.65rem;
  cursor: pointer;
  transition: background 0.2s;
}
.tc-btn:hover { background: rgba(255,255,255,0.1); }

/* Integrated Stack */
.integrated-stack-wrap {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  padding: 12px;
  margin-bottom: 16px;
}
.is-heading {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  color: #fff;
  margin-bottom: 12px;
}
.is-timeline {
  position: relative;
  padding: 0 10px;
}
.is-line {
  position: absolute;
  top: 12px; left: 14px; right: 14px;
  height: 2px;
  background: rgba(43,222,115,0.3);
  box-shadow: 0 0 10px rgba(43,222,115,0.5);
  z-index: 1;
}
.is-nodes {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.is-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.is-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: #1A1F24;
  border: 1px solid rgba(43,222,115,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.is-icon svg, .is-icon img { width: 12px; height: 12px; }
.is-label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  color: rgba(255,255,255,0.6);
}

/* Bottom Grid */
.dash-bottom-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
}
.db-card {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  padding: 12px;
  display: flex;
  flex-direction: column;
}
.db-heading {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  color: #fff;
  margin-bottom: 12px;
}
.db-dot { width: 5px; height: 5px; border-radius: 50%; }
.db-icon { width: 12px; height: 12px; }

/* Connected Platforms Grid */
.cp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}
.cp-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cp-icon svg { width: 14px; height: 14px; }
.cp-more {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: #2BDE73;
  text-align: center;
  margin-top: auto;
  cursor: pointer;
}

/* Lead Source Chart */
.ls-flex {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  margin-bottom: auto;
}
.ls-chart {
  width: 70px; height: 70px;
  flex-shrink: 0;
}
.donut {
  position: relative;
  width: 100%; height: 100%;
}
.circular-chart {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}
.circle-bg {
  fill: none;
  stroke: rgba(255,255,255,0.05);
  stroke-width: 3;
}
.circle {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
}
.donut-inner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.di-val {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}
.di-lbl {
  display: block;
  font-family: var(--font-body);
  font-size: 0.45rem;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.ls-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lsl-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lsl-name {
  font-family: var(--font-body);
  font-size: 0.55rem;
  color: rgba(255,255,255,0.8);
  flex: 1;
}
.lsl-val {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: #fff;
}

/* AI Insights */
.ai-insights {
  justify-content: space-between;
}
.ai-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.ai-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.ai-icon {
  width: 20px; height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ai-icon i { width: 12px; height: 12px; }
.ai-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ait-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.65rem;
  color: #fff;
}
.ait-desc {
  font-family: var(--font-body);
  font-size: 0.55rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
}


/* ============================================
   FLOATING CALLOUT CARDS
   ============================================ */
.float-card {
  position: absolute;
  background: rgba(22,27,34,0.92);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  padding: 12px 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}
.float-card-tl {
  top: -24px; left: -32px;
}
.float-card-bl {
  bottom: 80px; left: -40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 210px;
}
.float-card-bc {
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  gap: 16px;
  width: 320px;
}
.float-card-bc .float-graphic {
  width: 60px; height: 60px;
  position: relative;
  background: rgba(43,222,115,0.05);
  border: 1px solid rgba(43,222,115,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sys-graph {
  width: 40px; height: 40px;
}
.sys-check {
  position: absolute;
  bottom: -6px; right: -6px;
  background: #161B22;
  border-radius: 50%;
  width: 18px; height: 18px;
}

.float-icon-chip, .float-plus-chip {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-plus-chip { width: 22px; height: 22px; border-radius: 6px; }
.float-icon-chip i { width: 16px; height: 16px; }
.float-plus-chip i { width: 12px; height: 12px; color: #2BDE73; }
.float-text { display: flex; flex-direction: column; gap: 1px; }
.float-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.9);
}
.float-sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.45);
}
.float-lead-header { display: flex; align-items: center; gap: 8px; }
.float-lead-title { font-family: var(--font-display); font-weight: 700; font-size: 0.8125rem; color: #fff; }
.float-lead-body { display: flex; align-items: center; gap: 10px; }
.float-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #2BDE73 0%, #0b9347 100%);
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
}
.float-lead-info { display: flex; flex-direction: column; gap: 2px; }
.float-lead-role { font-family: var(--font-body); font-size: 0.6875rem; color: rgba(255,255,255,0.4); }
.float-lead-response {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-body); font-size: 0.6875rem; font-weight: 600; color: #2BDE73;
}
.float-check { width: 12px; height: 12px; }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .dashboard-card.gcc { width: 100%; max-width: 100%; margin: 0; }
  .stat-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-middle-grid, .dash-bottom-grid { grid-template-columns: 1fr; }
  .float-card-tl, .float-card-bl, .float-card-bc { display: none; }
  .top-channels-wrap, .integrated-stack-wrap { display: none; }
}

/* ============================================
   STATS STRIP — bottom 4-column bar
   ============================================ */
.stats-strip {
  background: #0B120D;
  padding: 0;
}
.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.strip-item:last-child { border-right: none; }
.strip-icon-chip {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.strip-icon-chip svg {
  width: 20px;
  height: 20px;
  color: var(--accent-text);
  stroke-width: 2.25px;
}
.strip-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.strip-bold {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9375rem;
  color: #FFFFFF;
  line-height: 1.2;
}
.strip-gray {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.2;
}

/* ============================================
   SECTION 2 · THE PROBLEM
   ============================================ */
.problem {
  background: #FFFFFF;
  padding: var(--space-12) 0;
}
.problem-inner {
  display: grid;
  grid-template-columns: 46% 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: var(--space-8);
}

/* — Left column — */
.problem-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.problem-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
}
.problem-green {
  color: var(--accent-text);
}
.problem-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  max-width: 540px;
}
.problem-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--chip-bg);
  border-left: 3px solid var(--accent-text);
  border-radius: 10px;
  padding: 20px 22px;
  margin-top: 6px;
}
.problem-callout-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-text);
  color: var(--accent-text);
  flex-shrink: 0;
}
.problem-callout-icon i {
  width: 15px;
  height: 15px;
  stroke-width: 2.5px;
}
.problem-callout p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-primary);
}
.problem-callout p strong {
  color: var(--accent-text);
}

/* — Right column: chaos diagram — */
.problem-right {
  position: relative;
}
.problem-diagram {
  display: flex;
  flex-direction: column;
}
.problem-nodes {
  position: relative;
  width: 100%;
  min-height: 520px;
  margin-bottom: 28px;
}
.problem-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.problem-node {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Bare floating app icons */
.problem-float-icon {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(34px, 8%, 46px);
  height: clamp(34px, 8%, 46px);
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(16,20,15,0.06);
  z-index: 1;
}
.problem-float-icon img {
  width: 50%;
  height: 50%;
}
.pos-slack { top: 3%; left: 42%; }
.pos-googleads { top: 11%; left: 55%; }
.pos-meta { top: 40%; left: 8%; }
.pos-sheets { top: 90%; left: 8%; }
.pos-email { top: 90%; left: 92%; }

/* Person / doc cards */
.problem-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(16,20,15,0.07);
  padding: 10px 12px;
  width: 36%;
  min-width: 148px;
  max-width: 196px;
}
.problem-card-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.problem-doc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--chip-bg);
  flex-shrink: 0;
}
.problem-doc-icon img {
  width: 18px;
  height: 18px;
}
.problem-card-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.problem-card-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--text-primary);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.problem-card-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.problem-card-meta {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: #9AA19A;
  line-height: 1.3;
}
.problem-card-dots {
  width: 16px;
  height: 16px;
  color: #B7BDB6;
  margin-left: auto;
  flex-shrink: 0;
}
.pos-freelancer { top: 18%; left: 20%; z-index: 2; }
.pos-designer { top: 18%; left: 80%; z-index: 2; }
.pos-seo { top: 45%; left: 50%; z-index: 3; }
.pos-webdev { top: 68%; left: 20%; z-index: 2; }
.pos-mediabuyer { top: 68%; left: 80%; z-index: 2; }
.pos-salesfollowup { top: 90%; left: 50%; z-index: 2; }

/* ============================================
   SECTION 3 · THE SYSTEM
   ============================================ */
.system {
  background: #0B120D;
  padding: var(--space-12) 0;
}
.system-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: var(--space-12);
}
.system-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.system-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
.system-green {
  color: var(--accent);
}
.system-subhead {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin: 0;
  max-width: 480px;
}
.system-right {
  flex-shrink: 0;
}
.btn-system-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0B120D;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-system-cta i {
  width: 16px;
  height: 16px;
  stroke-width: 2.5px;
}
.btn-system-cta:hover {
  background: #4EEB8E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43,222,115,0.3);
}

/* — Stacked vertical card container — */
.system-stack {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* — Individual stacked card — */
.system-card {
  position: sticky;
  top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
  padding: 52px 52px;
  background: #FFFFFF;
  border: 1px solid #E2E8E2;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(16,20,15,0.10);
  margin-bottom: 24px;
  min-height: 520px;
  transition: box-shadow 0.3s ease;
}

/* Each card stacks slightly higher and with higher z-index */
.system-card:nth-child(1) { top: 80px;  z-index: 1; }
.system-card:nth-child(2) { top: 92px;  z-index: 2; }
.system-card:nth-child(3) { top: 104px; z-index: 3; }
.system-card:nth-child(4) { top: 116px; z-index: 4; }
.system-card:nth-child(5) { top: 128px; z-index: 5; }
.system-card:last-child { margin-bottom: 0; }

/* Left column — text content */
.system-card-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Right column — mockup visual */
.system-card-visual {
  position: relative;
}
.system-card-visual .mockup {
  height: 260px;
  margin-bottom: 0;
}

.system-card-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--accent-text);
}
.system-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--text-primary);
  margin: 0;
}
.system-card-subheading {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
.system-card-rule {
  width: 32px;
  height: 3px;
  background: var(--accent-text);
  border-radius: 2px;
}
.system-card-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  min-height: calc(1.55em * 3);
}
.system-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.system-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--text-primary);
}
.system-card-list li svg {
  width: 16px;
  height: 16px;
  color: var(--accent-text);
  flex-shrink: 0;
  margin-top: 2px;
  stroke-width: 2px;
}

/* — Shared mockup base — */
.mockup {
  position: relative;
  height: 170px;
  margin-bottom: 4px;
}
.mockup-float-badge {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(16,20,15,0.1);
  z-index: 2;
}
.mline {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: rgba(16,20,15,0.1);
}
.mline-1 { width: 90%; }
.mline-2 { width: 70%; }
.mline-3 { width: 50%; }

/* Card 01 — browser mockup */
.mockup-browser {
  background: #F0F4F1;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
.mockup-browser-bar {
  display: flex;
  gap: 4px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
}
.mockup-browser-bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(16,20,15,0.2);
}
.mockup-browser-body {
  flex: 1;
  display: flex;
  gap: 10px;
  padding: 12px;
  align-items: center;
}
.mockup-image-block {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: var(--accent-text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mockup-image-block svg {
  width: 24px;
  height: 24px;
  color: #FFFFFF;
}
.mockup-browser .mockup-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup-trend-badge {
  bottom: -10px;
  right: 10px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--accent-text);
}
.trend-spark {
  width: 36px;
  height: 16px;
}

/* Card 02 — search mockup */
.mockup-search {
  background: #F0F4F1;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mockup-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
}
.mockup-search-bar svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.bar-fill {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(16,20,15,0.1);
}
.mockup-search .mockup-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup-ai-overview {
  bottom: -16px;
  right: 8px;
  left: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.mockup-ai-overview svg {
  width: 16px;
  height: 16px;
  color: var(--accent-text);
  flex-shrink: 0;
  margin-top: 2px;
}
.ai-overview-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.ai-overview-text > span:first-child {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-primary);
}
.bar-fill-sm {
  display: block;
  height: 5px;
  border-radius: 3px;
  background: rgba(16,20,15,0.1);
  width: 100%;
}
.bar-fill-sm.short { width: 60%; }

/* Card 03 — media collage mockup */
.media-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 62%;
  height: 68%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.media-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-play-icon svg {
  width: 16px;
  height: 16px;
  color: #10140F;
}
.media-product {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 42%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.media-portrait {
  position: absolute;
  bottom: 0;
  right: 6%;
  width: 38%;
  height: 62%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  z-index: 1;
}
.media-variations-badge {
  bottom: 6px;
  left: 8px;
  padding: 5px 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.6875rem;
  color: var(--text-primary);
  z-index: 2;
}
.media-sparkle-badge {
  position: absolute;
  top: -8px;
  right: 30%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border);
  box-shadow: 0 6px 16px rgba(16,20,15,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.media-sparkle-badge svg {
  width: 14px;
  height: 14px;
  color: var(--accent-text);
}

/* Card 04 — media buying mockup */
.mockup-adbuying {
  background: #F0F4F1;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mockup-logo-row {
  display: flex;
  gap: 10px;
}
.mockup-logo-chip {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border);
  box-shadow: 0 4px 10px rgba(16,20,15,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-logo-chip img {
  width: 18px;
  height: 18px;
}
.mockup-roas-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  box-shadow: 0 4px 12px rgba(16,20,15,0.06);
}
.roas-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--text-muted);
}
.roas-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary);
  margin: 2px 0 6px;
}
.roas-chart {
  width: 100%;
  height: auto;
  display: block;
}

/* Card 05 — flow mockup */
.mockup-flow {
  background: #F0F4F1;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.flow-node {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: #FFFFFF;
}
.flow-node svg {
  width: 18px;
  height: 18px;
}
.flow-node-person { background: rgba(43,222,115,0.12); border-color: rgba(43,222,115,0.3); }
.flow-node-person svg { color: var(--accent-text); }
.flow-node-mail { background: rgba(37,99,235,0.1); border-color: rgba(37,99,235,0.25); }
.flow-node-mail svg { color: #3B82F6; }
.flow-node-bolt { background: var(--accent-text); border-color: var(--accent-text); }
.flow-node-bolt svg { color: #FFFFFF; }
.flow-connector {
  width: 20px;
  height: 1px;
  background: var(--border);
}
.mockup-lead-card {
  bottom: -14px;
  right: 6px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lead-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-primary);
}
.lead-sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--accent-text);
}

/* ============================================
   SECTION 4 · INDUSTRIES
   ============================================ */
.industries {
  background: #F5F6F5;
  padding: var(--space-6) 0 var(--space-12);
}
.industries-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: var(--space-6);
}
.industries-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

/* ============================================
   CARD DASHBOARDS — rich mockup panels
   ============================================ */

/* — Shared dashboard base — */
.wx-dashboard, .geo-dashboard, .creative-dashboard,
.media-dashboard, .revops-dashboard {
  background: #F8FAF8;
  border: 1px solid #E2E8E2;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  min-height: 340px;
}

/* ---- Card 01: WX Conversion ---- */
.wx-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wx-dash-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
}
.wx-dash-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--accent-text);
}
.wx-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-text);
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.wx-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.wx-metric {
  background: #FFFFFF;
  border: 1px solid #E8EBE8;
  border-radius: 10px;
  padding: 10px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wx-metric-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-primary);
}
.wx-metric-lbl {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: #999;
}
.wx-metric-delta { font-family: var(--font-body); font-size: 0.6875rem; font-weight: 600; }
.wx-metric-delta.up { color: var(--accent-text); }
.wx-page-preview {
  background: #FFFFFF;
  border: 1px solid #E8EBE8;
  border-radius: 10px;
  overflow: hidden;
}
.wx-page-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-bottom: 1px solid #F0F2F0;
}
.wx-page-logo { width: 40px; height: 7px; border-radius: 4px; background: var(--accent-text); }
.wx-nav-links { display: flex; gap: 6px; flex: 1; }
.wx-nav-links span { width: 22px; height: 6px; border-radius: 3px; background: #E8EBE8; }
.wx-nav-cta { width: 36px; height: 18px; border-radius: 10px; background: var(--accent-text); }
.wx-page-hero {
  display: flex;
  gap: 10px;
  padding: 12px 10px;
  align-items: center;
}
.wx-hero-text { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.wx-hero-h { display: block; width: 90%; height: 8px; border-radius: 4px; background: #1a1a1a; }
.wx-hero-sub { display: block; width: 80%; height: 5px; border-radius: 3px; background: #D0D5D0; }
.wx-hero-sub.short { width: 55%; }
.wx-hero-btns { display: flex; gap: 6px; margin-top: 4px; }
.wx-btn-primary { display: block; width: 56px; height: 18px; border-radius: 10px; background: var(--accent-text); }
.wx-btn-ghost { display: block; width: 40px; height: 18px; border-radius: 10px; border: 1.5px solid #D0D5D0; }
.wx-hero-img { width: 56px; height: 56px; border-radius: 8px; background: linear-gradient(135deg, #2BDE73, #0b9347); flex-shrink: 0; }
.wx-ab-row { display: flex; flex-direction: column; gap: 8px; }
.wx-ab-label { font-family: var(--font-display); font-weight: 700; font-size: 0.75rem; color: var(--text-primary); }
.wx-ab-bars { display: flex; flex-direction: column; gap: 6px; }
.wx-ab-bar { display: flex; align-items: center; gap: 8px; }
.wx-ab-name { font-family: var(--font-body); font-size: 0.6875rem; color: #666; width: 80px; flex-shrink: 0; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.wx-winner-tag { font-size: 0.6rem; background: rgba(43,222,115,0.15); color: var(--accent-text); border-radius: 4px; padding: 1px 4px; }
.wx-ab-track { flex: 1; height: 8px; border-radius: 4px; background: #EEF0EE; overflow: hidden; }
.wx-ab-fill { height: 100%; border-radius: 4px; background: #D0D5D0; }
.wx-ab-fill.winner { background: var(--accent-text); }
.wx-ab-pct { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; color: var(--text-primary); width: 32px; text-align: right; }

/* ---- Card 02: GEO Search ---- */
.geo-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 8px 12px;
}
.geo-search-bar svg { width: 14px; height: 14px; color: #999; flex-shrink: 0; }
.geo-query { font-family: var(--font-body); font-size: 0.75rem; color: var(--text-primary); flex: 1; }
.geo-search-btn { width: 28px; height: 22px; border-radius: 12px; background: var(--accent-text); flex-shrink: 0; }
.geo-ai-box {
  background: linear-gradient(135deg, rgba(43,222,115,0.06), rgba(43,222,115,0.02));
  border: 1px solid rgba(43,222,115,0.25);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.geo-ai-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--text-primary);
}
.geo-ai-header svg { width: 14px; height: 14px; color: var(--accent-text); }
.geo-ai-badge {
  margin-left: auto;
  background: rgba(43,222,115,0.15);
  color: var(--accent-text);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
}
.geo-ai-body { font-family: var(--font-body); font-size: 0.75rem; line-height: 1.55; color: #555; margin: 0; }
.geo-brand-highlight { color: var(--accent-text); background: rgba(43,222,115,0.12); padding: 0 3px; border-radius: 3px; }
.geo-ai-sources { display: flex; gap: 5px; flex-wrap: wrap; }
.geo-source-chip {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: #666;
  background: #FFFFFF;
  border: 1px solid #E2E8E2;
  border-radius: 8px;
  padding: 2px 7px;
}
.geo-results { display: flex; flex-direction: column; gap: 5px; }
.geo-result {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #E8EBE8;
  border-radius: 8px;
  padding: 7px 10px;
}
.geo-result.featured { border-color: rgba(43,222,115,0.3); background: rgba(43,222,115,0.04); }
.geo-result-rank { font-family: var(--font-display); font-weight: 800; font-size: 0.75rem; color: var(--accent-text); width: 20px; flex-shrink: 0; }
.geo-result-text { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.geo-result-url { font-family: var(--font-body); font-size: 0.625rem; color: var(--accent-text); }
.geo-result-title { font-family: var(--font-body); font-size: 0.6875rem; color: var(--text-primary); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.geo-result-tag { font-family: var(--font-body); font-size: 0.6rem; font-weight: 700; background: var(--accent-text); color: #fff; border-radius: 6px; padding: 2px 6px; flex-shrink: 0; }
.geo-kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.geo-kpi { background: #FFFFFF; border: 1px solid #E8EBE8; border-radius: 8px; padding: 8px 10px; display: flex; flex-direction: column; gap: 2px; }
.geo-kpi-val { font-family: var(--font-display); font-weight: 800; font-size: 0.9375rem; color: var(--accent-text); }
.geo-kpi-lbl { font-family: var(--font-body); font-size: 0.6rem; color: #999; }

/* ---- Card 03: Creative Testing ---- */
.creative-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.creative-dash-title { font-family: var(--font-display); font-weight: 700; font-size: 0.875rem; color: var(--text-primary); }
.creative-dash-count { font-family: var(--font-body); font-size: 0.6875rem; color: var(--accent-text); font-weight: 600; }
.creative-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.creative-thumb { display: flex; flex-direction: column; gap: 5px; }
.creative-thumb-img {
  border-radius: 10px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
}
.creative-thumb-img svg { width: 20px; height: 20px; }
.winner-thumb .creative-thumb-img { box-shadow: 0 0 0 2.5px var(--accent-text); }
.creative-thumb-meta { display: flex; flex-direction: column; gap: 2px; }
.creative-winner-badge { font-family: var(--font-body); font-size: 0.6rem; font-weight: 700; color: var(--accent-text); }
.creative-label { font-family: var(--font-body); font-size: 0.6rem; color: #888; }
.creative-ctr { font-family: var(--font-display); font-size: 0.6875rem; font-weight: 700; color: var(--text-primary); }
.creative-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.creative-stat { background: #FFFFFF; border: 1px solid #E8EBE8; border-radius: 8px; padding: 8px 10px; display: flex; flex-direction: column; gap: 2px; }
.creative-stat-val { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--text-primary); }
.creative-stat-lbl { font-family: var(--font-body); font-size: 0.625rem; color: #999; }
.creative-progress-row { display: flex; align-items: center; gap: 8px; }
.creative-prog-label { font-family: var(--font-body); font-size: 0.6875rem; color: #666; flex-shrink: 0; }
.creative-prog-track { flex: 1; height: 6px; background: #E8EBE8; border-radius: 3px; overflow: hidden; }
.creative-prog-fill { height: 100%; background: var(--accent-text); border-radius: 3px; }
.creative-prog-val { font-family: var(--font-display); font-size: 0.6875rem; font-weight: 700; color: var(--accent-text); flex-shrink: 0; }

/* ---- Card 04: Media Buying ---- */
.media-dash-header { display: flex; align-items: center; justify-content: space-between; }
.media-dash-title { font-family: var(--font-display); font-weight: 700; font-size: 0.875rem; color: var(--text-primary); }
.media-platform-row { display: flex; gap: 6px; }
.media-plat-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-primary);
  background: #FFFFFF;
  border: 1px solid #E8EBE8;
  border-radius: 20px;
  padding: 3px 9px;
}
.media-plat-chip img { width: 14px; height: 14px; }
.media-kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.media-kpi-card {
  background: #FFFFFF;
  border: 1px solid #E8EBE8;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.media-kpi-label { font-family: var(--font-body); font-size: 0.6875rem; color: #999; }
.media-kpi-value { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--text-primary); }
.media-kpi-delta { font-family: var(--font-body); font-size: 0.6rem; font-weight: 600; }
.media-kpi-delta.up { color: var(--accent-text); }
.media-chart-wrap { display: flex; flex-direction: column; gap: 6px; }
.media-chart-label { font-family: var(--font-body); font-size: 0.6875rem; color: #888; }
.media-chart-svg { width: 100%; height: 60px; display: block; }
.media-chart-legend { display: flex; gap: 12px; }
.media-legend-item { display: flex; align-items: center; gap: 5px; font-family: var(--font-body); font-size: 0.6875rem; color: #666; }
.media-legend-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.media-budget-row { display: flex; align-items: center; gap: 8px; }
.media-budget-label { font-family: var(--font-body); font-size: 0.6875rem; color: #666; flex-shrink: 0; }
.media-budget-track { flex: 1; height: 6px; background: #E8EBE8; border-radius: 3px; overflow: hidden; }
.media-budget-fill { height: 100%; background: var(--accent-text); border-radius: 3px; }
.media-budget-pct { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; color: var(--text-primary); width: 28px; }

/* ---- Card 05: RevOps / CRM ---- */
.revops-dash-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.revops-dash-title { font-family: var(--font-display); font-weight: 700; font-size: 0.875rem; color: var(--text-primary); }
.revops-response-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--accent-text);
  background: rgba(43,222,115,0.1);
  border-radius: 20px;
  padding: 3px 10px;
}
.revops-response-badge svg { width: 12px; height: 12px; }
.revops-pipeline {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid #E8EBE8;
  border-radius: 12px;
  padding: 12px;
}
.revops-stage { display: flex; flex-direction: column; align-items: center; gap: 5px; flex: 1; }
.revops-stage-bar {
  width: 100%;
  border-radius: 6px 6px 0 0;
  border: 1px solid;
  transition: height 0.5s ease;
}
.revops-stage-count { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--text-primary); }
.revops-stage-label { font-family: var(--font-body); font-size: 0.6rem; color: #888; text-align: center; }
.revops-stage-arrow { font-size: 1rem; color: #CCC; padding-bottom: 32px; flex-shrink: 0; }
.revops-auto-row { display: flex; flex-direction: column; gap: 6px; }
.revops-auto-label { font-family: var(--font-body); font-size: 0.6875rem; color: #888; font-weight: 600; }
.revops-auto-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.revops-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-primary);
  background: #FFFFFF;
  border: 1px solid #E8EBE8;
  border-radius: 20px;
  padding: 4px 10px;
}
.revops-chip-dot { width: 6px; height: 6px; border-radius: 50%; background: #CCC; }
.revops-chip.active .revops-chip-dot { background: var(--accent-text); }
.revops-revenue-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.revops-rev-item { background: #FFFFFF; border: 1px solid #E8EBE8; border-radius: 10px; padding: 10px; display: flex; flex-direction: column; gap: 2px; }
.revops-rev-val { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--text-primary); }
.revops-rev-lbl { font-family: var(--font-body); font-size: 0.625rem; color: #999; }

/* ============================================
   INDUSTRIES
   ============================================ */
.industries-badge {

  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: #FFFFFF;
  border: 1.5px solid var(--accent-text);
  border-radius: var(--radius-pill);
  width: fit-content;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-text);
}
.industries-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-text);
  flex-shrink: 0;
}
.industries-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.industries-green {
  color: var(--accent-text);
}
.industries-subhead {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* — Industry card grid — */
.industries-grid-wrap {
  width: 100%;
  padding: 0 var(--space-6);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1600px;
  margin: 0 auto;
}
.industry-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.industry-card:hover {
  box-shadow: 0 16px 32px rgba(16,20,15,0.12);
  transform: translateY(-4px);
}
.industry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--chip-bg);
}
.industry-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-text);
  stroke-width: 2px;
}
.industry-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0;
}
.industry-rule {
  width: 32px;
  height: 3px;
  background: var(--accent-text);
  border-radius: 2px;
}

/* Per-industry color themes — white cards, colored accents only */
.industry-card.is-green {
  background: #FFFFFF;
  border-color: rgba(43,222,115,0.25);
}
.industry-card.is-blue {
  background: #FFFFFF;
  border-color: rgba(37,99,235,0.22);
}
.industry-card.is-purple {
  background: #FFFFFF;
  border-color: rgba(124,58,237,0.22);
}
.industry-card.is-orange {
  background: #FFFFFF;
  border-color: rgba(249,115,22,0.22);
}

.industry-card.is-green .industry-icon { background: rgba(43,222,115,0.16); }
.industry-card.is-green .industry-icon svg { color: var(--accent-text); }
.industry-card.is-green .industry-title { color: var(--text-primary); }
.industry-card.is-green .industry-rule { background: var(--accent-text); }

.industry-card.is-blue .industry-icon { background: rgba(37,99,235,0.14); }
.industry-card.is-blue .industry-icon svg { color: #2563EB; }
.industry-card.is-blue .industry-title { color: var(--text-primary); }
.industry-card.is-blue .industry-rule { background: #2563EB; }

.industry-card.is-purple .industry-icon { background: rgba(124,58,237,0.14); }
.industry-card.is-purple .industry-icon svg { color: #7C3AED; }
.industry-card.is-purple .industry-title { color: var(--text-primary); }
.industry-card.is-purple .industry-rule { background: #7C3AED; }

.industry-card.is-orange .industry-icon { background: rgba(249,115,22,0.14); }
.industry-card.is-orange .industry-icon svg { color: #EA580C; }
.industry-card.is-orange .industry-title { color: var(--text-primary); }
.industry-card.is-orange .industry-rule { background: #EA580C; }

.industry-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* — Shared industry mockup base — */
.ind-mockup {
  position: relative;
  background: #F3F7F4;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 4px;
}
.bar-fill-sm {
  display: block;
  height: 5px;
  border-radius: 3px;
  background: #E2E9E3;
}

/* Card 1 mockup — SaaS dashboard */
.ind-mockup-saas {
  height: 232px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ind-browser-bar {
  display: flex;
  gap: 4px;
}
.ind-browser-bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D8DDD7;
}
.ind-dash-row {
  display: flex;
  gap: 8px;
  flex: 1;
}
.ind-dash-card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.idc-label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: var(--text-muted);
}
.idc-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--text-primary);
}
.idc-change {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6875rem;
  color: var(--accent-text);
  margin-bottom: 4px;
}
.idc-spark {
  width: 100%;
  height: 24px;
  flex: 1;
}
.idc-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  flex: 1;
  min-height: 24px;
}
.idc-bars span {
  flex: 1;
  background: var(--accent-text);
  border-radius: 2px 2px 0 0;
  opacity: 0.75;
}
.ind-pill-row {
  display: flex;
  gap: 8px;
}
.ind-pill {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ip-label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: var(--text-muted);
}
.ip-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8125rem;
  color: var(--text-primary);
}

/* Card 2 mockup — D2C phone + stats */
.ind-mockup-ecom {
  height: 232px;
  display: flex;
  gap: 8px;
}
.ind-phone {
  width: 55%;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ind-phone-bar {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ind-phone-bar svg {
  width: 12px;
  height: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.ind-phone-bar .bar-fill-sm {
  flex: 1;
}
.ind-phone-product {
  width: 100%;
  height: 76px;
  object-fit: cover;
  border-radius: 8px;
}
.ind-phone-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ind-phone-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-primary);
}
.ind-phone-sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--text-muted);
}
.ind-phone-thumbs {
  display: flex;
  gap: 4px;
}
.ind-phone-thumbs span {
  flex: 1;
  height: 16px;
  border-radius: 4px;
  background: var(--chip-bg);
}
.ind-stat-stack {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ind-stat-card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.isc-label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: var(--text-muted);
}
.isc-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--text-primary);
}
.isc-change {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6875rem;
  color: var(--accent-text);
}
.isc-spark {
  width: 100%;
  flex: 1;
}

/* Card 3 mockup — Trust score */
.ind-mockup-trust {
  height: 232px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-primary);
}
.trust-body {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.trust-ring-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.trust-ring {
  width: 100%;
  height: 100%;
}
.trust-ring-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.trust-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1;
}
.trust-sub {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  color: var(--accent-text);
}
.trust-checklist {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}
.trust-checklist li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--text-primary);
}
.trust-checklist li svg {
  width: 12px;
  height: 12px;
  color: var(--accent-text);
  flex-shrink: 0;
}
.compliance-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
}
.compliance-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--chip-bg);
  flex-shrink: 0;
}
.compliance-icon svg {
  width: 13px;
  height: 13px;
  color: var(--accent-text);
}
.compliance-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.compliance-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.6875rem;
  color: var(--text-primary);
}
.compliance-sub {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: var(--text-muted);
}
.compliance-building {
  color: #B7BDB6;
}
.compliance-building svg {
  width: 16px;
  height: 16px;
}

/* Card 4 mockup — Marketplace two-sided */
.ind-mockup-marketplace {
  height: 232px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mp-sides {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex: 1;
}
.mp-side {
  position: relative;
  z-index: 1;
  flex: 1;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mp-side-supply { background: rgba(43,222,115,0.06); }
.mp-side-demand { background: rgba(37,99,235,0.05); }
.mp-side-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border);
}
.mp-side-icon svg { width: 13px; height: 13px; }
.mp-side-supply .mp-side-icon svg { color: var(--accent-text); }
.mp-side-demand .mp-side-icon svg { color: #2563EB; }
.mp-side-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.6875rem;
  color: var(--text-primary);
  line-height: 1.3;
}
.mp-side-demand .mp-side-title { color: #2563EB; }
.mp-side-stat-label {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.mp-side-stat-value {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8125rem;
  color: var(--text-primary);
}
.mp-side-stat-value svg {
  width: 11px;
  height: 11px;
  color: var(--accent-text);
}
.mp-center-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border);
  box-shadow: 0 4px 10px rgba(16,20,15,0.06);
  flex-shrink: 0;
}
.mp-center-icon svg {
  width: 16px;
  height: 16px;
  color: var(--accent-text);
}
.mp-icon-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.mp-mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border);
}
.mp-mini-icon svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

/* ============================================
   SECTION · OUR TEAM
   ============================================ */
.team {
  background: #0B120D;
  padding: var(--space-12) 0 var(--space-6);
}
.team-top {
  display: flex;
  align-items: center;
  gap: 40px;
}
.team-left {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid var(--accent-text);
  border-radius: var(--radius-pill);
  width: fit-content;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-text);
}
.team-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-text);
  flex-shrink: 0;
}
.team-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
.team-green {
  color: var(--accent-text);
}
.team-rule {
  width: 32px;
  height: 3px;
  background: var(--accent-text);
  border-radius: 2px;
}
.team-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* — Right card: founder + specialists — */
.team-right {
  flex: 1;
  min-width: 0;
}
.team-card {
  display: flex;
  background: #111612;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  box-shadow: none;
  overflow: hidden;
}
.team-founder {
  flex: 0 0 280px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.founder-photo-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  margin-bottom: 12px;
}
.founder-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.15);
}
.founder-ring-outer { inset: -22px; }
.founder-ring-inner { inset: -10px; }
.founder-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-text);
}
.founder-dot-1 { top: -22px; left: 4px; }
.founder-dot-2 { top: 26%; right: -22px; }
.founder-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--chip-bg);
}
.founder-badge {
  position: absolute;
  z-index: 2;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111612;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent-text);
}
.founder-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: #FFFFFF;
  margin-top: 8px;
}
.founder-role {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  color: var(--accent-text);
  text-transform: uppercase;
}
.team-specialists {
  flex: 1;
  min-width: 0;
  padding: 32px 28px;
}
.specialists-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  color: #FFFFFF;
  margin: 0 0 20px;
}
.specialists-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.specialist-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
}
.specialist-photo-wrap {
  position: relative;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.specialist-photo-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--chip-bg);
}
.specialist-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #111612;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.specialist-badge svg {
  width: 9px;
  height: 9px;
  color: var(--accent-text);
}
.specialist-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.specialist-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  color: #FFFFFF;
  line-height: 1.25;
}
.specialist-desc {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

/* ============================================
   SECTION · BUILT IN THE REAL WORLD
   ============================================ */
.realworld {
  background: #FFFFFF;
  padding: var(--space-12) 0;
}
.realworld-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  margin-bottom: var(--space-8);
}

/* — Left column — */
.rw-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.rw-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--chip-bg);
  border-radius: var(--radius-pill);
  width: fit-content;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--accent-text);
}
.rw-badge-icon {
  width: 15px;
  height: 15px;
}
.rw-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.rw-green {
  color: var(--accent-text);
}
.rw-rule {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--accent-text);
  border-radius: 2px;
}
.rw-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}
.rw-callout {
  display: flex;
  gap: 0;
  align-items: flex-start;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.rw-callout-icon {
  display: none;
}
.rw-callout-icon svg {
  width: 18px;
  height: 18px;
  color: #FFFFFF;
}
.rw-callout-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin: 0;
}
.rw-callout-text strong {
  color: var(--accent-text);
}
.rw-divider {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border);
}
.rw-discipline-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rw-discipline-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-text);
  color: var(--accent-text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rw-discipline-icon svg {
  width: 16px;
  height: 16px;
}
.rw-discipline-row p {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin: 0;
}

/* — Right column — */
.rw-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
}
.rw-header-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.rw-industries-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 8px 0 4px;
}
.rw-industries-heading-text {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--accent-text);
  white-space: nowrap;
}
.rw-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  flex-grow: 1;
  align-content: stretch;
}
.rw-industry-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  padding-bottom: 20px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.rw-industry-card:hover {
  box-shadow: 0 16px 32px rgba(16,20,15,0.1);
  transform: translateY(-3px);
}
.rw-industry-photo-wrap {
  position: relative;
  width: 100%;
  height: 120px;
}
.rw-industry-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rw-industry-icon-circle {
  position: absolute;
  bottom: -16px;
  left: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border);
  box-shadow: 0 4px 10px rgba(16,20,15,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rw-industry-icon-circle svg {
  width: 14px;
  height: 14px;
  color: var(--accent-text);
}
.rw-industry-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-primary);
  margin: 24px 14px 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.rw-industry-points {
  list-style: none;
  margin: 0;
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.rw-industry-points li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.rw-industry-points li svg {
  width: 11px;
  height: 11px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.rw-industry-arrow {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--chip-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.rw-industry-arrow:hover {
  background: var(--accent-text);
}
.rw-industry-arrow svg {
  width: 12px;
  height: 12px;
  color: var(--accent-text);
}
.rw-industry-arrow:hover svg {
  color: #FFFFFF;
}

/* — Bottom banner — */
.rw-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--chip-bg);
  border-radius: 20px;
  padding: 28px 32px;
  overflow: hidden;
}
.rw-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rw-banner-icon svg {
  width: 22px;
  height: 22px;
  color: #FFFFFF;
}
.rw-banner-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text-primary);
  margin: 0;
  white-space: nowrap;
}
.rw-banner-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  flex-shrink: 0;
}
.rw-banner-highlight {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--accent-text);
  margin: 0;
}
.rw-banner-dots {
  margin-left: auto;
  width: 120px;
  height: 60px;
  background-image: radial-gradient(circle, rgba(11,147,71,0.25) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  flex-shrink: 0;
}

/* ============================================
   SECTION · OUR EDGE (DARK)
   ============================================ */
.edge {
  background: #FFFFFF;
  padding: var(--space-12) 0;
}
.edge-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* — Left Column — */
.edge-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.edge-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(43,222,115,0.3);
  border-radius: var(--radius-pill);
  width: fit-content;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: #2BDE73;
}
.edge-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2BDE73;
  flex-shrink: 0;
}
.edge-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.edge-green {
  color: #2BDE73;
}
.edge-rule {
  display: block;
  width: 32px;
  height: 3px;
  background: #2BDE73;
  border-radius: 2px;
}
.edge-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}
.edge-text strong.edge-green { color: #2BDE73; }
.edge-bold {
  font-weight: 700;
  color: var(--text-primary) !important;
}

/* — Right Column — */
.edge-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: transparent;
  border: none;
  border-radius: 20px;
  overflow: hidden;
}

/* Compare Header Grid */
.edge-compare-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.edge-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 28px 20px 24px;
}
.edge-col-typical {
  border-right: 1px solid rgba(255,255,255,0.07);
}
.edge-col-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
}
.edge-col-icon-green {
  background: rgba(43,222,115,0.12);
  border-color: rgba(43,222,115,0.3);
  color: #2BDE73;
}
.edge-col-icon svg { width: 20px; height: 20px; }
.edge-col-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.3;
}
.edge-col-name-green { color: #2BDE73; }
.edge-col-sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
  line-height: 1.4;
}
.edge-price-pill {
  margin-top: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
}
.edge-price-typical {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
}
.edge-price-acuminex {
  background: rgba(43,222,115,0.15);
  color: #2BDE73;
  border: 1px solid rgba(43,222,115,0.35);
}
.edge-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  padding-top: 56px;
}

/* Feature Rows */
.edge-rows {
  display: flex;
  flex-direction: column;
}
.edge-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.edge-row-last { border-bottom: none; }
.edge-row-typical,
.edge-row-acuminex {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
}
.edge-row-typical {
  border-right: 1px solid rgba(255,255,255,0.06);
}
.edge-row-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.edge-row-icon-green {
  background: rgba(43,222,115,0.1);
  border-color: rgba(43,222,115,0.25);
  color: #2BDE73;
}
.edge-row-icon svg { width: 13px; height: 13px; }
.edge-row-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 2px;
  line-height: 1.3;
}
.edge-row-sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
  line-height: 1.4;
}

/* ============================================
   RESPONSIVE — Tablet & Mobile
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
  }
  .hero-left { max-width: 600px; margin: 0 auto; text-align: center; }
  .hero-badge { margin: 0 auto; }
  .hero-subhead { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-right { justify-content: center; }
  .dashboard-card { max-width: 100%; }
  /* Floating cards stay inside on tablet */
  .float-card-tl { top: 10px; left: 10px; }
  .float-card-br { bottom: 10px; right: 10px; }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .problem-left { max-width: 600px; margin: 0 auto; text-align: center; }
  .problem-text { max-width: 100%; margin: 0 auto; }
  .problem-callout { text-align: left; }
  .problem-right { max-width: 600px; margin: 0 auto; width: 100%; }

  .system-top { flex-direction: column; text-align: center; }
  .system-left { max-width: 600px; margin: 0 auto; text-align: center; }
  .system-subhead { max-width: 100%; margin: 0 auto; }

  /* Mobile/Tablet Stacked Card Layout */
  .system-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 22px;
    min-height: auto;
    width: 100%;
  }
  .system-card:nth-child(1) { top: 60px; }
  .system-card:nth-child(2) { top: 72px; }
  .system-card:nth-child(3) { top: 84px; }
  .system-card:nth-child(4) { top: 96px; }
  .system-card:nth-child(5) { top: 108px; }
  .system-card-number { font-size: 1rem; }
  .system-card-title { font-size: 1.1rem; }
  .system-card-subheading { font-size: 0.9375rem; }
  .system-card-desc { font-size: 0.8125rem; }
  .system-card-list li { font-size: 0.75rem; }

  .system-card-visual { overflow: hidden; height: 310px; }
  .wx-dashboard, .geo-dashboard, .creative-dashboard,
  .media-dashboard, .revops-dashboard {
    transform: scale(0.65);
    transform-origin: top left;
    width: 153.85%;
  }

  .industries-left { max-width: 600px; margin: 0 auto; text-align: center; }
  .industries-badge { margin: 0 auto; }
  .industries-grid-wrap { padding: 0 var(--space-4); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  .team-top { flex-direction: column; }
  .team-left { flex-basis: auto; max-width: 600px; margin: 0 auto; text-align: center; }
  .team-badge { margin: 0 auto; }
  .team-rule { margin: 0 auto; }
  .team-card { flex-direction: column; }
  .team-founder {
    flex-basis: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .realworld-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rw-industries-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .rw-banner { flex-wrap: wrap; }
  .rw-banner-dots { display: none; }
}

@media (max-width: 768px) {
  .hero { padding: 56px 0 40px; }
  .hero-h1 { font-size: 1.875rem; }
  .stat-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .five-systems-chips { gap: 5px; }
  .sys-chip { font-size: 0.625rem; padding: 4px 8px; }
  .dashboard-card { padding: 18px; }
  /* Hide floating cards on small screens */
  .float-card-tl, .float-card-br { display: none; }
  /* Stats strip: 2×2 grid */
  .stats-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .strip-item:nth-child(2) { border-right: none; }
  .strip-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.12); }
  .strip-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.12); border-right: none; }

  .problem { padding: var(--space-8) 0; }
  .problem-h2 { font-size: 1.625rem; }
  .problem-nodes { min-height: 400px; }
  .problem-card { min-width: 130px; max-width: 170px; padding: 8px 10px; }
  .problem-card-meta { display: none; }

  .system { padding: var(--space-8) 0; }
  .system-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
  .system-card { padding: 24px 20px; gap: 20px; }
  .system-card-number { font-size: 0.9375rem; }
  .system-card-title { font-size: 1rem; }
  .system-card-subheading { font-size: 0.875rem; }
  .system-card-desc { font-size: 0.75rem; }
  .system-card-list li { font-size: 0.6875rem; }

  .system-card-visual { height: 265px; }
  .wx-dashboard, .geo-dashboard, .creative-dashboard,
  .media-dashboard, .revops-dashboard {
    transform: scale(0.55);
    width: 181.8%;
  }

  .industries { padding: var(--space-8) 0; }
  .industries-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

  .team { padding: var(--space-8) 0; }
  .team-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

  .realworld { padding: var(--space-8) 0; }
  .rw-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
  .rw-industries-grid { grid-template-columns: 1fr; }
  .rw-banner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .rw-banner-divider { display: none; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 1.625rem; }
  .stat-mini-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .smc-value { font-size: 1rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-secondary { justify-content: center; }

  .problem-nodes { min-height: 340px; }
  .problem-card { min-width: 110px; max-width: 140px; }
  .problem-card-sub { display: none; }
  .pos-slack { top: 2%; left: 28%; }
  .pos-googleads { top: 10%; left: 48%; }
  .pos-freelancer { left: 24%; }
  .pos-designer { left: 76%; }
  .pos-webdev { left: 24%; }
  .pos-mediabuyer { left: 76%; }

  .system-card { padding: 20px 16px; gap: 16px; }
  .system-card-number { font-size: 0.875rem; }
  .system-card-title { font-size: 0.9375rem; }
  .system-card-subheading { font-size: 0.8125rem; }
  .system-card-desc { font-size: 0.6875rem; min-height: 0; }
  .system-card-list li { font-size: 0.6875rem; }

  .system-card-visual { height: 225px; }
  .wx-dashboard, .geo-dashboard, .creative-dashboard,
  .media-dashboard, .revops-dashboard {
    transform: scale(0.46);
    width: 217.4%;
  }

  .industries-grid { grid-template-columns: 1fr; }

  .specialists-grid { grid-template-columns: 1fr; }
}


/* ============================================
   GLOBAL FOOTER (Redesigned)
   ============================================ */
.site-footer {
  background: #0B120D;
  padding: 60px 0 30px;
  font-family: var(--font-body);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}
.footer-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Boxed Links Grid */
.ft-grid-wrapper {
  width: 100%;
  padding: 40px 0;
}
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px 20px;
}
.ft-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ft-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  margin: 0;
}
.ft-square {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #2BDE73;
}
.ft-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ft-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ft-list a:hover {
  color: #2BDE73;
}
.ft-list a i {
  width: 14px;
  height: 14px;
  color: rgba(255,255,255,0.3);
  transition: transform 0.2s, color 0.2s;
}
.ft-list a:hover i {
  color: #2BDE73;
  transform: translateX(3px);
}

/* Bottom Row: Legal */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid rgba(43,222,115,0.2); /* green glow border */
  position: relative;
}
/* Subtle top green glow */
.footer-bottom-bar::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43,222,115,0.5), transparent);
  box-shadow: 0 0 10px rgba(43,222,115,0.8);
}

.fb-left-group {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.fb-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fb-logo-text {
  display: flex;
  flex-direction: column;
}
.fb-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  line-height: 1;
}
.fb-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.fb-center {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
}
.fb-sep {
  color: rgba(255,255,255,0.2);
}
.fb-center a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.fb-center a:hover {
  color: #fff;
}

.fb-right .btn-footer-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.fb-right .btn-footer-outline i {
  width: 14px;
  height: 14px;
  color: #2BDE73;
}
.fb-right .btn-footer-outline:hover {
  border-color: #2BDE73;
  background: rgba(43,222,115,0.05);
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-bottom-bar { flex-direction: column; gap: 20px; align-items: flex-start; }
}
@media (max-width: 768px) {
  .ft-grid-wrapper { padding: 24px; }
  .fb-center { flex-wrap: wrap; }
}
@media (max-width: 480px) {
}


/* — Custom HTML Dashboard (Light Theme - Redesigned) — */
@keyframes floatDashboard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}
.edge-custom-dashboard {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  animation: floatDashboard 6s ease-in-out infinite;
}
.ecd-header {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  position: relative;
}
.ecd-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(43,222,115,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.ecd-header-left {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 2;
}
.ecd-icon-sq {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #E8FBF0;
  color: #17B259;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(23,178,89,0.15);
}
.ecd-icon-sq svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.5px;
}
.ecd-header-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ecd-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: #111827;
  margin: 0;
  letter-spacing: -0.02em;
}
.ecd-subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #6B7280;
  margin: 0;
}
.ecd-badge-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #16A34A;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  position: relative;
  z-index: 2;
}
.ecd-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16A34A;
}
.ecd-divider {
  height: 1px;
  background: #F3F4F6;
  width: calc(100% - 72px);
  margin: 0 auto;
}

.ecd-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.ecd-compare {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ecd-compare-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.ecd-ch-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ecd-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ecd-icon-circle svg {
  width: 22px;
  height: 22px;
}
.ecd-icon-red {
  background: #FEF2F2;
  color: #DC2626;
}
.ecd-icon-green {
  background: #F0FDF4;
  color: #16A34A;
}
.ecd-ch-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: #1F2937;
  margin: 0;
}

.ecd-ch-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.ecd-pill-white {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 8px 16px;
  text-align: right;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.ecd-pill-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: #111827;
  line-height: 1.1;
}
.ecd-pill-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: #6B7280;
  margin-top: 2px;
}
.ecd-pill-green {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 30px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: #16A34A;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.ecd-pill-green svg {
  width: 16px;
  height: 16px;
}

.ecd-bar-wrapper {
  width: 100%;
}
.ecd-bar {
  width: 100%;
  height: 52px;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}
.ecd-segment {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 16px;
  box-sizing: border-box;
}
.ecd-seg-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ecd-seg-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: #FFFFFF;
  line-height: 1.1;
}
.ecd-seg-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.9);
  margin-top: 2px;
  white-space: nowrap;
}
.ecd-seg-red {
  background: linear-gradient(90deg, #F04141, #F45757);
  box-shadow: 0 10px 20px rgba(240,65,65,0.2);
}
.ecd-seg-gray {
  background: #7B8A9D;
}
.ecd-seg-lightred {
  background: #FA6464;
}
.ecd-seg-green {
  background: linear-gradient(90deg, #2BDE73, #1CB358);
  box-shadow: 0 10px 20px rgba(43,222,115,0.2);
  position: relative;
  overflow: hidden;
}
.ecd-seg-green::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 0 0 10px rgba(255,255,255,0.05);
  pointer-events: none;
}

.ecd-tech-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}
.ecd-tech-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ecd-tech-line {
  width: 4px;
  height: 16px;
  background: #10B981;
  border-radius: 2px;
}
.ecd-tech-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #111827;
  margin: 0;
}
.ecd-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ecd-tech-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ecd-tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.ecd-tc-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F0FDF4;
  color: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid #BBF7D0;
}
.ecd-tc-icon svg {
  width: 22px;
  height: 22px;
}
.ecd-tc-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  color: #111827;
  margin: 0 0 6px;
}
.ecd-tc-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: #6B7280;
  margin: 0;
  line-height: 1.4;
}

.edge-right {
  position: relative;
}
.edge-right::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(43,222,115,0.2) 0%, rgba(43,222,115,0) 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .fb-left-group {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .fb-center {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px 12px;
  }
  .fb-sep {
    display: inline;
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: #FFFFFF;
  padding: 80px 0;
}
.faq-container {
  max-width: 1000px;
}
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(43, 222, 115, 0.2);
  background: rgba(43, 222, 115, 0.05);
  color: #2BDE73;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2BDE73;
}
.faq-header h2 {
  color: #0B120D;
  font-weight: 700;
}
.faq-header h2 .text-green {
  color: #2BDE73;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: 0 4px 12px rgba(0,0,0,0.01);
  transition: box-shadow 0.3s;
}
.faq-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
}
.faq-icon-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(43, 222, 115, 0.08);
  color: #2BDE73;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-icon-wrap svg {
  width: 24px;
  height: 24px;
}
.faq-content-wrap {
  flex: 1;
}
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.faq-question {
  font-family: var(--font-display);
  font-weight: 600;
  font-size:  1rem;
  color: #0B120D;
  line-height: 1.4;
  padding-right: 24px;
}
.faq-toggle {
  color: #2BDE73;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 400px;
  margin-top: 12px;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer p {
  color: #4A5568;
  font-size:  1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-item {
    padding: 24px 20px;
    gap: 16px;
  }
  .faq-icon-wrap {
    width: 40px;
    height: 40px;
  }
  .faq-icon-wrap svg {
    width: 20px;
    height: 20px;
  }
  .faq-question {
    font-size:  1rem;
  }
}
