:root {
  --bg: #F7F9FC;
  --bg-alt: #EEF3F8;
  --dark: #0D1B2A;
  --dark-2: #152233;
  --teal: #0A8F80;
  --teal-mid: #0C7A6D;
  --teal-light: #E6F5F3;
  --teal-glow: rgba(10, 143, 128, 0.12);
  --amber: #B8700A;
  --amber-light: #FEF3E2;
  --red: #B91C1C;
  --green: #15803D;
  --green-light: #F0FDF4;
  --text: #0D1B2A;
  --text-secondary: #2D3F52;
  --text-muted: #4A5E72;
  --text-dim: #6B7F93;
  --border: #C8D8E6;
  --border-dim: #D4E0EC;
  --border-teal: rgba(10, 143, 128, 0.25);
  --white: #FFFFFF;
  --dark-text-primary: #F0F6FF;
  --dark-text-secondary: #B8CCDF;
  --dark-text-muted: #7A96AE;
  --dark-accent: #4DD9C8;
  --slate-900: #F7F9FC;
  --slate-800: #FFFFFF;
  --teal-glow-sm: rgba(10, 143, 128, 0.06);
  --teal-dim: #0C7A6D;
  /* Font family variables */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  border-top: 4px solid var(--teal);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-left {
  flex: 1;
  max-width: 650px;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-right img {
  width: 100%;
  max-width: 550px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow:
    0 30px 80px rgba(10, 143, 128, .15),
    0 10px 30px rgba(0, 0, 0, .08);
}

@media(max-width:991px) {

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-right img {
    max-width: 400px;
  }

  .hero-actions {
    justify-content: center;
  }


}

.mh-header {
  display: grid;
  grid-template-columns: 1fr 38%;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.mh-header-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
  margin-left: -50px;


}

.mh-header .section-title {
  margin-bottom: 20px;
}

.mh-header .section-sub {
  max-width: 600px;
}

@media(max-width:991px) {

  .mh-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mh-header-image {
    order: -1;
  }

  .mh-header-image img {
    max-width: 500px;
    margin: auto;

  }

}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(13, 27, 42, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--teal);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.05em;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.nav-logo-text span {
  color: var(--teal);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  font-family: var(--font-body);
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a.active {
  color: var(--teal);
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 1px;
  transition: all 0.25s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.10);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s;
  font-family: var(--font-body);
}

.mobile-menu a:hover {
  background: var(--teal-light);
  color: var(--teal);
}

.mobile-menu .mobile-cta {
  margin-top: 8px;
  background: var(--teal);
  color: #FFFFFF;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}

.mobile-menu .mobile-cta:hover {
  background: var(--teal-mid);
  color: #FFFFFF;
}

.nav-cta {
  background: transparent;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  padding: 8px 20px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.nav-cta:hover {
  background: var(--teal);
  color: #FFFFFF;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 56px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #E0F2EF 0%, #F7F9FC 40%, #E8EFF8 100%);
  border-bottom: 1px solid var(--border);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 143, 128, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 143, 128, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(10, 143, 128, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--teal);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 820px;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.76;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;

}

.btn-primary {
  background: var(--teal);
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}

.btn-primary:hover {
  background: #097A6D;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10, 143, 128, 0.25);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 14px 24px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost:hover {
  color: var(--text);
}

/* HERO STATS */
.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   PLATFORM MOCKUP SECTIONS
═══════════════════════════════════════ */
.mockup-section {
  padding: 88px 56px;
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.mockup-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
}

.mockup-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.mockup-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.72;
  margin-bottom: 52px;
}

/* DASHBOARD FRAME */
.dashboard-frame {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13, 27, 42, 0.10), 0 0 0 1px rgba(10, 143, 128, 0.08);
}

.db-titlebar {
  background: #F4F8FC;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.db-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.db-dot.red {
  background: #FF5F57;
}

.db-dot.amber {
  background: #FFBD2E;
}

.db-dot.green {
  background: #28C840;
}

.db-titlebar-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-left: 8px;
  letter-spacing: 0.04em;
}

.db-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 500px;
  background: var(--white);
}

.db-sidebar {
  background: #F4F8FC;
  border-right: 1px solid var(--border);
  padding: 16px 0;
}

.db-sidebar-header {
  padding: 0 16px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.db-brand {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
}

.db-brand-sub {
  font-size: 10px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.db-nav-item {
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.01em;
}

.db-nav-item.active {
  color: var(--teal);
  background: rgba(10, 143, 128, 0.08);
  border-right: 2px solid var(--teal);
  font-weight: 600;
}

.db-nav-item i {
  font-size: 13px;
  width: 14px;
  text-align: center;
}

.db-main {
  padding: 20px;
  overflow: hidden;
  background: #FAFCFD;
}

.db-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.db-page-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.db-badge {
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

.db-badge.live {
  background: rgba(21, 128, 61, 0.12);
  color: #166534;
}

.db-badge.grade-a {
  background: rgba(10, 143, 128, 0.12);
  color: #0A6B5E;
  font-weight: 700;
}

.db-badge.grade-b {
  background: rgba(184, 112, 10, 0.12);
  color: #92540A;
  font-weight: 700;
}

/* PIPELINE TABLE */
.pipe-table {
  width: 100%;
  border-collapse: collapse;
}

.pipe-table th {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  text-align: left;
  padding: 8px 10px;
  border-bottom: 2px solid var(--teal);
  background: #EAF7F5;
}

.pipe-table td {
  padding: 12px 10px;
  font-size: 12px;
  color: var(--text);
  border-bottom: 1px solid var(--border-dim);
  vertical-align: middle;
}

.pipe-table tbody tr:hover td {
  background: #EDF7F5;
}

.deal-name {
  font-weight: 700;
  color: var(--text);
  font-size: 13px;
  font-family: var(--font-display);
}

.deal-geo {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
  font-family: var(--font-mono);
}

.score-bar-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.score-bar-bg {
  flex: 1;
  height: 6px;
  background: #D0DCE8;
  border-radius: 3px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  border-radius: 2px;
}

.score-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}

.score-a {
  color: #0A6B5E;
}

.score-b {
  color: #92540A;
}

.metric-val {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text);
  font-weight: 600;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.status-active {
  background: var(--green);
}

.status-review {
  background: var(--amber);
}

/* METRIC CARDS */
.metric-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.metric-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.metric-card:hover {
  border-color: var(--teal);
  box-shadow: 0 2px 10px rgba(10, 143, 128, 0.10);
}

.metric-card-label {
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 7px;
}

.metric-card-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.metric-card-val.teal {
  color: var(--teal);
}

.metric-card-delta {
  font-size: 10px;
  color: var(--green);
  margin-top: 5px;
  font-family: var(--font-mono);
  font-weight: 500;
}

/* ═══════════════════════════════════════
   FINANCIAL MOCKUP
═══════════════════════════════════════ */
.financial-mockup {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
}

.fm-header {
  background: #F4F8FC;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.fm-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.fm-body {
  padding: 24px;
}

.fm-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.fm-metric {
  background: #F4F8FC;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px;
  transition: border-color 0.2s;
}

.fm-metric:hover {
  border-color: var(--teal);
}

.fm-metric-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
}

.fm-metric-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1;
}

.fm-metric-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 5px;
  font-family: var(--font-mono);
}

/* SCENARIO BARS */
.scenario-bars {
  margin-top: 8px;
}

.scenario-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 14px;
}

.scenario-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.scenario-name {
  font-size: 12px;
  color: var(--text-secondary);
  width: 44px;
  font-family: var(--font-mono);
  font-weight: 500;
}

.scenario-bar-wrap {
  flex: 1;
  height: 10px;
  background: #D0DCE8;
  border-radius: 5px;
  overflow: hidden;
}

.scenario-bar {
  height: 100%;
  border-radius: 5px;
}

.bar-bull {
  background: var(--teal);
  width: 78%;
}

.bar-base {
  background: var(--amber);
  width: 62%;
}

.bar-bear {
  background: var(--text-dim);
  width: 38%;
}

.scenario-val {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  width: 44px;
  text-align: right;
}

.val-bull {
  color: #0A6B5E;
}

.val-base {
  color: #92540A;
}

.val-bear {
  color: var(--text-muted);
}

/* SENSITIVITY TORNADO */
.tornado-wrap {
  margin-top: 8px;
}

.tornado-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.tornado-label {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 600;
  width: 110px;
  text-align: right;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.tornado-center-line {
  position: relative;
  flex: 1;
  height: 16px;
  display: flex;
  align-items: center;
}

.tornado-bar-neg {
  height: 10px;
  background: #B91C1C;
  opacity: 0.65;
  border-radius: 1px 0 0 1px;
  margin-left: auto;
}

.tornado-bar-pos {
  height: 10px;
  background: var(--teal);
  opacity: 0.75;
  border-radius: 0 1px 1px 0;
}

.tornado-center-mark {
  position: absolute;
  left: 50%;
  width: 1px;
  height: 16px;
  background: var(--border);
}

/* ═══════════════════════════════════════
   FIVE DOMAINS — DARK SECTION
═══════════════════════════════════════ */
.domains-section {
  padding: 96px 56px;
  background: var(--dark);
  border-top: none;
  border-bottom: none;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--dark-accent);
}

.light-section .section-eyebrow {
  color: var(--teal);
}

.light-section .section-eyebrow::before {
  background: var(--teal);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--dark-text-primary);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
  max-width: 640px;
}

.section-title em {
  font-style: normal;
  color: var(--dark-accent);
}

.light-section .section-title {
  color: var(--dark);
}

.light-section .section-title em {
  color: var(--teal);
}

.section-sub {
  font-size: 17px;
  color: var(--dark-text-secondary);
  max-width: 560px;
  line-height: 1.76;
  margin-bottom: 60px;
}

.light-section .section-sub {
  color: var(--text-secondary);
}

.domains-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.domain-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 36px 40px;
  position: relative;
  transition: border-color 0.25s, background 0.25s;
}

.domain-card:hover {
  border-color: var(--dark-accent);
  background: rgba(255, 255, 255, 0.08);
}

.domain-card.featured {
  background: rgba(77, 217, 200, 0.07);
  border-color: rgba(77, 217, 200, 0.28);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.domain-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--dark-accent);
  margin-bottom: 18px;
  text-transform: uppercase;
  font-weight: 600;
}

.domain-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--dark-text-primary);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 14px;
}

.domain-body {
  font-size: 15px;
  color: var(--dark-text-secondary);
  line-height: 1.78;
  margin-bottom: 20px;
}

.domain-proof {
  font-size: 13px;
  color: var(--dark-text-secondary);
  padding: 14px 18px;
  background: rgba(77, 217, 200, 0.09);
  border-left: 3px solid var(--dark-accent);
  line-height: 1.65;
  font-style: italic;
  border-radius: 0 4px 4px 0;
}

.domain-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.domain-tag {
  font-size: 10px;
  font-family: var(--font-mono);
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  color: var(--dark-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* INTEGRATED THESIS VISUAL */
.thesis-visual {
  position: relative;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thesis-center {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.thesis-center-text {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.thesis-ring {
  position: absolute;
  border: 1px dashed rgba(77, 217, 200, 0.22);
  border-radius: 50%;
  animation: pulse-ring 3s ease-in-out infinite;
}

.thesis-ring-1 {
  width: 140px;
  height: 140px;
  animation-delay: 0s;
}

.thesis-ring-2 {
  width: 200px;
  height: 200px;
  animation-delay: 0.5s;
}

.thesis-ring-3 {
  width: 240px;
  height: 240px;
  animation-delay: 1s;
}

@keyframes pulse-ring {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

.thesis-node {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  color: var(--dark-text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  max-width: 70px;
}

.thesis-node-dot {
  width: 8px;
  height: 8px;
  background: var(--dark-accent);
  border-radius: 50%;
  opacity: 0.6;
}

.thesis-node.top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.thesis-node.right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.thesis-node.bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.thesis-node.left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.thesis-node.top-right {
  top: 20px;
  right: 20px;
}

/* ═══════════════════════════════════════
   COMPS / LOCATION
═══════════════════════════════════════ */
.comps-section {
  padding: 96px 56px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.comps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.comps-mockup {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
}

.comp-header {
  background: #F4F8FC;
  padding: 12px 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comp-body {
  padding: 16px;
}

.comp-scatter {
  position: relative;
  height: 160px;
  background: #F4F8FC;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.scatter-dot {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.scatter-dot.highlight {
  border: 2px solid var(--teal);
  box-shadow: 0 0 12px rgba(10, 143, 128, 0.30);
}

.scatter-tooltip {
  position: absolute;
  background: var(--white);
  border: 1.5px solid var(--teal);
  border-radius: 3px;
  padding: 5px 8px;
  font-size: 10px;
  font-family: var(--font-mono);
  color: #0A6B5E;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  font-weight: 600;
}

/* LOCATION SCORES */
.loc-scores {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.loc-score-row {
  display: grid;
  grid-template-columns: 1fr 120px 30px;
  gap: 10px;
  align-items: center;
}

.loc-score-label {
  font-size: 12px;
  color: var(--text);
  font-family: var(--font-mono);
  font-weight: 500;
}

.loc-score-bar-bg {
  height: 8px;
  background: #D0DCE8;
  border-radius: 4px;
  overflow: hidden;
}

.loc-score-bar-fill {
  height: 100%;
  border-radius: 2px;
}

.loc-score-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  text-align: right;
}

/* ═══════════════════════════════════════
   MACHINE VS HUMAN
═══════════════════════════════════════ */
.machine-human {
  padding: 96px 56px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
}

.mh-col {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 44px;
}

.mh-col.machine {
  background: var(--dark);
  border-color: #1E3248;
}

.mh-col-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

.mh-col.machine .mh-col-eyebrow {
  color: var(--dark-accent);
}

.mh-col.human .mh-col-eyebrow {
  color: var(--teal);
}

.mh-col-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.mh-col.machine .mh-col-title {
  color: var(--dark-text-primary);
}

.mh-col.human .mh-col-title {
  color: var(--dark);
  line-height: 1.2;
}

ol,
ul {
  padding-left: 0rem !important;
}

.mh-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mh-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.6;
}

.mh-col.machine .mh-item {
  color: var(--dark-text-secondary);
}

.mh-col.human .mh-item {
  color: var(--text-secondary);
}

.mh-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.mh-col.machine .mh-icon {
  background: rgba(77, 217, 200, 0.15);
  color: var(--dark-accent);
}

.mh-col.human .mh-icon {
  background: var(--teal-light);
  color: var(--teal);
}

/* PULL QUOTE */
.pull-quote {
  padding: 88px 56px;
  text-align: center;
  background: var(--dark);
}

.pq-text {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--dark-text-primary);
  letter-spacing: -0.03em;
  line-height: 1.22;
  max-width: 720px;
  margin: 0 auto 28px;
}

.pq-text em {
  font-style: normal;
  color: var(--dark-accent);
}

.pq-source {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-text-muted);
}

/* ═══════════════════════════════════════
   NOT A PRODUCT
═══════════════════════════════════════ */
.not-product {
  padding: 96px 56px;
  background: var(--teal-light);
  border-top: 1px solid rgba(10, 143, 128, 0.18);
  border-bottom: 1px solid rgba(10, 143, 128, 0.18);
}

.np-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.np-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 24px;
}

.np-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 28px;
}

.np-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.80;
  margin-bottom: 18px;
}

.np-emphasis {
  font-size: 16px;
  color: #FFFFFF;
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
  line-height: 1.62;
  margin-top: 40px;
  padding: 24px 32px;
  background: var(--dark);
  border-radius: 8px;
  display: inline-block;
  border: 1px solid rgba(77, 217, 200, 0.20);
}

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.cta-section {
  padding: 80px 56px;
  background: #0D1B2A;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cta-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  padding: 44px 48px;
  transition: border-color 0.2s;
}

.cta-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.cta-card.primary {
  border-color: rgba(77, 217, 200, 0.38);
  background: rgba(77, 217, 200, 0.07);
}

.cta-card.primary:hover {
  border-color: rgba(77, 217, 200, 0.6);
}

.cta-card-eye {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-accent);
  margin-bottom: 18px;
  font-weight: 600;
}

.cta-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #F0F8FF;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-card-body {
  font-size: 15px;
  color: var(--dark-text-secondary);
  line-height: 1.70;
  margin-bottom: 28px;
}

.cta-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.2s;
  font-family: var(--font-body);
}

.cta-card-link:hover {
  gap: 14px;
}

.cta-card.primary .cta-card-link {
  color: var(--dark-accent);
}

.cta-card:not(.primary) .cta-card-link {
  color: #8CB8D0;
}

.cta-card:not(.primary) .cta-card-link:hover {
  color: #B0D4E8;
}

/* ═══════════════════════════════════════
   PLATFORM NOTE BANNER
═══════════════════════════════════════ */
.platform-note {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 24px 56px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.platform-note-icon {
  width: 34px;
  height: 34px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-note-icon i {
  color: var(--teal);
  font-size: 15px;
}

.platform-note p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 760px;
}

.platform-note strong {
  color: var(--text);
  font-weight: 700;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: #0D1B2A;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-titan {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-accent);
  letter-spacing: -0.01em;
  margin-bottom: 5px;
}

.footer-powered {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-text-muted);
}

.footer-powered a {
  color: var(--dark-text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-powered a:hover {
  color: var(--dark-accent);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 12px;
  color: var(--dark-text-muted);
  text-decoration: none;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--dark-accent);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero,
  .mockup-section,
  .domains-section,
  .machine-human,
  .comps-section,
  .not-product,
  .cta-section {
    padding: 90px 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .db-inner {
    grid-template-columns: 1fr;
  }

  .db-sidebar {
    display: none;
  }

  .domains-grid,
  .mh-grid,
  .cta-inner,
  .comps-grid {
    grid-template-columns: 1fr;
  }

  .domain-card.featured {
    grid-column: 1;
    display: block;
  }

  .metric-cards,
  .fm-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .pull-quote {
    padding: 56px 20px;
  }

  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 24px 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .platform-note {
    padding: 20px;
  }

  .cta-card {
    padding: 32px 28px;
  }
}

.comps-header {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.comps-header-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgb(0 0 0 / 20%);
}

.comps-header .section-sub {
  max-width: 650px;
}

@media(max-width:991px) {

  .comps-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .comps-header-image {
    order: -1;
  }

  .comps-header-image img {
    max-width: 500px;
    margin: auto;
  }
}

.np-wrapper {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 70px;
  align-items: center;
}

.np-content {
  max-width: 800px;
}

.np-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .12);
}

@media(max-width:991px) {

  .np-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .np-image {
    order: -1;
  }

  .np-image img {
    max-width: 500px;
    margin: auto;
  }
}



/* css */

/* titan-microsite */

/* ---- Contact / Lead-gen forms (added) ---- */
.contact-section {
  background: var(--navy, #0D1B2A);
  padding: 26px 10px;
}

.contact-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-card-eye {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2DD4BF;
  margin-bottom: 14px;
}

.contact-card-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.contact-card-body {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  max-width: 480px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-field {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 14px;
  color: #ffffff;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.contact-field::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-field:focus {
  outline: none;
  border-color: #0D9488;
  background: rgba(255, 255, 255, 0.06);
}

.contact-field-full {
  margin-bottom: 14px;
}

textarea.contact-field {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
  font-family: var(--font-body, 'DM Sans', sans-serif);
}

select.contact-field {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

select.contact-field option {
  background: #0D1B2A;
  color: #ffffff;
}

.contact-submit {
  display: block;
  width: 100%;
  border: none;
  border-radius: 6px;
  padding: 16px 24px;
  background: var(--teal);
  color: #ffffff;
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.contact-submit:hover {
  background: var(--teal);
  border: 1px solid #fff;
}

.contact-submit:active {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .contact-section {
    padding: 64px 20px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-card-title {
    font-size: 1.5rem;
  }
}



/* css */

@media (max-width: 768px) {

  .dashboard-frame {
    overflow: hidden;
  }

  .db-main {
    overflow-x: auto;
    padding: 16px;
  }

  .pipe-table {
    min-width: 720px;
    width: 720px;
  }

  .pipe-table th,
  .pipe-table td {
    white-space: nowrap;
    font-size: 11px;
    padding: 10px 8px;
  }

  .deal-name,
  .deal-geo {
    white-space: normal;
    min-width: 150px;
  }

  .score-bar-wrap {
    min-width: 90px;
  }
}

@media (max-width: 768px) {

  .financial-mockup {
    overflow: hidden;
  }

  .fm-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .fm-body {
    padding: 16px;
  }

  .fm-metrics {
    grid-template-columns: 1fr !important;
  }

  .fm-body>div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .scenario-row,
  .tornado-row {
    align-items: center;
  }

  .scenario-name,
  .tornado-label {
    width: 90px;
    font-size: 11px;
    text-align: left;
  }

  .scenario-val {
    width: 45px;
    font-size: 12px;
  }

  .scenario-bar-wrap,
  .tornado-center-line {
    min-width: 80px;
  }
}



