/* ===================================================================
   INTELLIBILL — CLEAN MODERN LIGHT THEME
   =================================================================== */

:root {
  /* Light backgrounds */
  --bg:     #ffffff;
  --bg-1:   #f5f8fc;
  --bg-2:   #ebf1f8;
  --bg-3:   #dde7f2;

  /* Dark section backgrounds (products, bots, steps, cta, footer) */
  --dark:   #071520;
  --dark-1: #0a1e30;
  --dark-2: #0d2540;
  --dark-3: #102d4c;

  /* Surfaces */
  --surface:       rgba(0,0,0,0.025);
  --surface-2:     rgba(0,0,0,0.045);
  --surface-hover: rgba(0,100,180,0.05);

  /* Borders */
  --border:         rgba(0,0,0,0.07);
  --border-2:       rgba(0,0,0,0.13);
  --border-blue:    rgba(0,108,195,0.3);
  --border-blue-dim:rgba(0,108,195,0.15);
  /* Dark-section border aliases */
  --border-cyan:    rgba(0,168,230,0.28);
  --border-cyan-dim:rgba(0,168,230,0.14);

  /* Text (light sections) */
  --text:        #4a6580;
  --text-2:      #7a98b2;
  --text-3:      #a8c0d4;
  --text-bright: #0c1d2e;

  /* Brand blue (works on white) */
  --blue:      #006cb3;
  --blue-mid:  rgba(0,108,179,0.10);
  --blue-dim:  rgba(0,108,179,0.06);
  --blue-glow: 0 4px 24px rgba(0,108,179,0.22);

  /* Keep --cyan as alias for dark sections */
  --cyan:      #00b8e0;
  --cyan-mid:  rgba(0,184,224,0.15);
  --cyan-dim:  rgba(0,184,224,0.08);
  --cyan-glow: 0 4px 24px rgba(0,184,224,0.22);

  --green: #0a7c4e;
  --red:   #c0392b;

  /* Legacy aliases */
  --ink:        var(--text-bright);
  --ink-soft:   var(--text);
  --ink-deep:   var(--text-bright);
  --paper:      var(--bg);
  --paper-warm: var(--bg-1);
  --paper-pure: var(--bg);
  --rule:        var(--border);
  --rule-strong: var(--border-2);
  --muted:       var(--text-2);
  --muted-soft:  var(--text-3);
  --accent:      var(--blue);
  --accent-soft: var(--blue-dim);
  --signal:      var(--green);
  --warning:     var(--red);

  --max: 1380px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-y: clamp(80px, 12vh, 160px);

  --sans:  'Inter Tight', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --serif: 'Inter Tight', -apple-system, system-ui, sans-serif;
}

/* --- Reset -------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--blue); color: #fff; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  z-index: 2;
}

.mono  { font-family: var(--mono); }
.serif { font-family: var(--sans); }

/* Numbered tag */
.num-tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--blue);
  letter-spacing: 0.2em;
  display: inline-block;
  margin-bottom: 14px;
}
.num-tag::before { content: '[ '; }
.num-tag::after  { content: ' ]'; }

/* Eyebrow */
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--blue);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--cyan); }
.eyebrow.on-dark::before { background: var(--cyan); }

/* ====================================================
   NAV
   ==================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--text-bright);
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
  border-radius: 8px;
}

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text span:first-child { font-weight: 700; font-size: 15px; color: var(--text-bright); }
.logo-text span:last-child {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--blue);
  letter-spacing: 0.16em;
  margin-top: 4px;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
}
.nav-links a {
  color: var(--text-2);
  transition: color 0.2s;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text-bright); }
.nav-links a.active { color: var(--blue); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-phone {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--blue); }

.nav-cta {
  background: var(--text-bright);
  color: #fff;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover { background: var(--blue); box-shadow: var(--blue-glow); transform: translateY(-1px); }
.nav-cta::after { content: '→'; transition: transform 0.2s; }
.nav-cta:hover::after { transform: translateX(3px); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-phone  { display: none; }
}

/* ====================================================
   HERO
   ==================================================== */
.page-hero {
  padding: clamp(100px, 16vh, 160px) 0 clamp(40px, 6vh, 80px);
  background: var(--bg-1);
  border-bottom: 1px solid var(--bg-3);
}
.page-hero .sec-title { max-width: 760px; }

.hero {
  padding: clamp(80px, 14vh, 160px) 0 clamp(60px, 8vh, 120px);
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}

/* Subtle dot grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,108,179,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0;
  mask-image: radial-gradient(ellipse at 60% 40%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, black 10%, transparent 70%);
}

/* Soft blue radial accent */
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 110%;
  background: radial-gradient(ellipse at 70% 40%, rgba(0,108,179,0.07) 0%, transparent 65%);
  z-index: 0;
}

.hero-eyebrow { margin-bottom: 28px; }

.hero h1 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(52px, 9vw, 140px);
  line-height: 0.93;
  letter-spacing: -0.04em;
  color: var(--text-bright);
  max-width: 14ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.06em;
  height: 0.04em;
  background: var(--blue);
  opacity: 0.3;
}

.hero-row {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: end;
}

.hero-sub {
  max-width: 52ch;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text);
  line-height: 1.65;
}
.hero-sub strong { color: var(--text-bright); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-direction: column;
  align-items: flex-start;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 16px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary:hover { background: #0082d6; box-shadow: var(--blue-glow); transform: translateY(-2px); }
.btn-primary::after { content: '→'; transition: transform 0.2s; }
.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  color: var(--text);
  padding: 16px 0;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--border-2);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--text-bright); border-color: var(--blue); }

/* Stats strip */
.hero-stats {
  margin-top: 72px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.hero-stat {
  padding: 20px 28px 8px 0;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: var(--mono);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
  color: var(--text-bright);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.hero-stat-num em { font-style: normal; color: var(--blue); }

.hero-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-2);
  margin-top: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;
}

@media (max-width: 880px) {
  .hero-row    { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats  { grid-template-columns: repeat(2,1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(1),
  .hero-stat:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* ====================================================
   SECTION SHELL
   ==================================================== */
section { padding: var(--section-y) 0; position: relative; z-index: 2; }

.sec-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blue);
  margin-bottom: 20px;
}
.sec-label.on-dark { color: var(--cyan); }

.sec-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--text-bright);
  max-width: 22ch;
}
.sec-title em { font-style: normal; color: var(--blue); }
.sec-title.on-dark { color: #fff; }
.sec-title.on-dark em { color: var(--cyan); }

.sec-head { margin-bottom: 72px; }

/* ====================================================
   BELIEFS
   ==================================================== */
.beliefs {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--border);
}

.belief {
  padding: 48px 36px 48px 0;
  border-right: 1px solid var(--border);
}
.belief:last-child { border-right: none; }
.belief:nth-child(n+2) { padding-left: 36px; }

.belief h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-top: 20px;
  margin-bottom: 16px;
  color: var(--text-bright);
}
.belief h3 em { font-style: normal; color: var(--blue); }
.belief p { font-size: 14px; line-height: 1.7; color: var(--text); max-width: 38ch; }

@media (max-width: 880px) {
  .beliefs-grid { grid-template-columns: 1fr; }
  .belief { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 0 !important; }
  .belief:last-child { border-bottom: none; }
}

/* ====================================================
   AI-FIRST PLATFORM SECTION
   ==================================================== */
.ai-first {
  background: var(--dark);
  padding: clamp(64px, 10vh, 120px) 0;
}

.ai-first-head {
  max-width: 780px;
  margin-bottom: 64px;
}

.ai-first-intro {
  margin-top: 28px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.75;
  color: rgba(238,243,248,0.72);
  max-width: 70ch;
}

.ai-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.ai-pillar {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px 28px 40px;
  transition: background 0.2s;
}
.ai-pillar:hover { background: rgba(255,255,255,0.06); }

.ai-pillar-icon {
  width: 40px;
  height: 40px;
  color: var(--cyan);
  margin-bottom: 24px;
}

.ai-pillar h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #eef3f8;
  margin-bottom: 14px;
}
.ai-pillar h4 em { font-style: normal; color: var(--cyan); }

.ai-pillar p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(238,243,248,0.6);
}

@media (max-width: 1024px) {
  .ai-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ai-pillars { grid-template-columns: 1fr; }
}

/* ====================================================
   INTRO OS
   ==================================================== */
.intro-os { background: var(--bg); }

.intro-os-head {
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: end;
}

.intro-os-head .left .lead-tag {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 12px;
}
.intro-os-head .left p {
  font-family: var(--sans);
  font-size: 20px;
  font-style: italic;
  line-height: 1.35;
  color: var(--text);
  margin-top: 20px;
}

.intro-os-head .right h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--text-bright);
  max-width: 18ch;
}
.intro-os-head .right h2 em { font-style: normal; }
.intro-os-head .right h2 strong { color: var(--blue); font-weight: 800; }

/* Capability tiles */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.capability {
  background: var(--bg);
  padding: 40px 32px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.2s, box-shadow 0.2s;
}
.capability:hover {
  background: var(--bg);
  box-shadow: inset 0 0 0 1px var(--border-blue-dim);
}

.capability-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--blue);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.capability-num::before { content: '[ '; }
.capability-num::after  { content: ' ]'; }

.capability h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text-bright);
}
.capability h4 em { font-style: normal; color: var(--blue); }
.capability p { font-size: 13.5px; line-height: 1.65; color: var(--text); }

@media (max-width: 980px) { .capability-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) {
  .capability-grid { grid-template-columns: 1fr; }
  .intro-os-head   { grid-template-columns: 1fr; gap: 24px; }
}

/* ====================================================
   PRODUCTS  (kept dark for visual contrast)
   ==================================================== */
.products {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.products::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right,  rgba(0,184,224,0.022) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,184,224,0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.products > * { position: relative; }

.products-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.products-head .right p {
  margin-top: 28px;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.65;
  max-width: 56ch;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
}

.pcard {
  background: var(--dark-1);
  padding: 0;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.pcard:hover { background: var(--dark-2); }

.pcard.flagship {
  background: linear-gradient(160deg, #071a2e 0%, #0d2640 60%, #103352 100%);
}
.pcard.flagship::after {
  content: 'TEAM';
  position: absolute;
  bottom: -40px; right: -20px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 180px;
  color: rgba(0,184,224,0.04);
  line-height: 0.8;
  pointer-events: none;
}

.pcard-visual {
  height: 180px;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.pcard.flagship .pcard-visual { background: rgba(0,0,0,0.3); }
.pcard-visual svg { width: 80%; height: 80%; }

.pcard-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.pcard-num {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.pcard-num::before { content: '[ '; color: var(--cyan); }
.pcard-num::after  { content: ' ]'; color: var(--cyan); }

.pcard-flag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 3px 9px;
  border: 1px solid var(--border-cyan);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cyan);
  margin-bottom: 12px;
  align-self: flex-start;
}
.pcard-flag::before { content: ''; width: 5px; height: 5px; background: var(--cyan); border-radius: 50%; }

.pcard-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #fff;
}
.pcard-name em { font-style: normal; color: var(--cyan); }

.pcard-tagline { font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.55); margin-bottom: 16px; }

.pcard-bots {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  line-height: 1.7;
}
.pcard-bots strong { color: var(--cyan); font-weight: 600; }

@media (max-width: 1100px) {
  .product-cards  { grid-template-columns: repeat(2,1fr); }
  .products-head  { grid-template-columns: 1fr; }
}
@media (max-width: 600px) { .product-cards { grid-template-columns: 1fr; } }

/* ====================================================
   14-BOT GRID  (dark section)
   ==================================================== */
.bots { background: var(--dark-1); }
.bots .sec-title { color: #fff; }
.bots .sec-label { color: var(--cyan); }

.bot-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 56px;
}

.bot {
  background: var(--dark-1);
  padding: 24px 22px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.2s;
}
.bot:hover { background: var(--dark-2); }

.bot-tag {
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bot-name {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 12px 0 8px;
  line-height: 1.05;
  color: #fff;
}
.bot-name em { font-style: normal; color: var(--cyan); }

.bot-desc { font-size: 12px; line-height: 1.6; color: rgba(255,255,255,0.5); }

.bot-line {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-top: 14px;
  opacity: 0.8;
}

@media (max-width: 1100px) { .bot-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 760px)  { .bot-grid { grid-template-columns: repeat(2,1fr); } }

/* ====================================================
   TEAMBOT MOAT
   ==================================================== */
.moat { background: var(--bg-1); }

.moat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: clamp(40px, 5vw, 80px);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.moat-card:hover { border-color: var(--border-blue-dim); box-shadow: 0 8px 40px rgba(0,0,0,0.10); }

.moat-card::before {
  content: 'TEAMBot';
  position: absolute;
  bottom: -60px; right: -30px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(100px, 16vw, 280px);
  color: rgba(0,108,179,0.04);
  line-height: 0.8;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.moat-card > * { position: relative; z-index: 1; }

.moat-tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--blue);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}

.moat-card h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(26px, 3.8vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text-bright);
}
.moat-card h3 em { font-style: normal; color: var(--blue); }

.moat-card p { font-size: 15px; line-height: 1.7; color: var(--text); max-width: 50ch; }
.moat-card p + p { margin-top: 16px; }

.moat-features { border-top: 1px solid var(--border); }

.moat-feature {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.moat-feature .check { color: var(--blue); font-family: var(--mono); font-size: 14px; line-height: 1; width: 20px; flex-shrink: 0; }
.moat-feature .label strong { display: block; font-weight: 600; color: var(--text-bright); margin-bottom: 3px; font-size: 14px; }
.moat-feature .label span   { color: var(--text); font-size: 13px; }

@media (max-width: 980px) { .moat-card { grid-template-columns: 1fr; } }

/* ====================================================
   WHO WE SERVE
   ==================================================== */
.audiences {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 56px;
}

.audience {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.audience:hover {
  transform: translateY(-4px);
  border-color: var(--border-blue);
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
}

.audience-icon {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: var(--blue-dim);
  border: 1px solid var(--border-blue-dim);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.audience-icon svg { width: 22px; height: 22px; color: var(--blue); }

.audience h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
  color: var(--text-bright);
}
.audience h3 em { font-style: normal; color: var(--blue); }

.audience-tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--blue);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.audience p { font-size: 13.5px; line-height: 1.7; color: var(--text); margin-bottom: 20px; }

.audience-list { list-style: none; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border); }
.audience-list li {
  padding: 5px 0;
  font-size: 12.5px;
  color: var(--text-bright);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.audience-list li::before { content: '→'; color: var(--blue); font-family: var(--mono); font-size: 11px; }

@media (max-width: 880px) { .audience-cards { grid-template-columns: 1fr; } }

/* ====================================================
   SELF-HEALING
   ==================================================== */
.selfheal { background: var(--bg-1); }

.selfheal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.selfheal-text h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text-bright);
}
.selfheal-text h2 em { font-style: normal; color: var(--blue); }
.selfheal-text p { margin-top: 24px; font-size: 16px; line-height: 1.7; color: var(--text); max-width: 50ch; }

.selfheal-illustration {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  aspect-ratio: 1.1 / 1;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.selfheal-illustration svg { width: 100%; height: 100%; max-width: 440px; }

.pulse-circle { animation: pulse 3s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes pulse {
  0%,100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 0.9; transform: scale(1.06); }
}

@media (max-width: 980px) { .selfheal-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ====================================================
   OUTCOMES / KPI
   ==================================================== */
.outcomes { background: var(--bg); border-top: 1px solid var(--border); }

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 56px;
}

.kpi {
  background: var(--bg);
  padding: 48px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  transition: background 0.2s;
}
.kpi:hover { background: var(--bg-1); }

.kpi-value {
  font-family: var(--mono);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: var(--text-bright);
}
.kpi-value em  { font-style: normal; color: var(--blue); }
.kpi-value sup { font-size: 0.4em; vertical-align: super; color: var(--text-2); margin-left: 2px; }

.kpi-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-2);
  line-height: 1.65;
}
.kpi-detail { margin-top: 14px; font-size: 13px; line-height: 1.65; color: var(--text); }
.kpi-detail strong { color: var(--text-bright); font-weight: 600; }

@media (max-width: 880px) {
  .kpi-grid { grid-template-columns: 1fr; }
  .kpi      { grid-template-columns: 1fr; gap: 14px; padding: 32px 24px; }
}

/* ====================================================
   ENGAGEMENT MODELS
   ==================================================== */
.engage { background: var(--bg-1); }

.engage-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }

.engage-card {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 48px 40px;
  border-radius: 8px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.engage-card:hover { border-color: var(--border-2); box-shadow: 0 12px 40px rgba(0,0,0,0.09); }

.engage-card.featured {
  background: var(--text-bright);
  border-color: var(--text-bright);
  color: #fff;
}
.engage-card.featured:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(12,29,46,0.25); }

.engage-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-2);
  margin-bottom: 24px;
  display: inline-block;
}
.engage-card.featured .engage-num { color: rgba(255,255,255,0.45); }
.engage-num::before { content: '[ '; color: var(--blue); }
.engage-num::after  { content: ' ]'; color: var(--blue); }
.engage-card.featured .engage-num::before,
.engage-card.featured .engage-num::after { color: var(--cyan); }

.engage-card h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text-bright);
}
.engage-card h3 em { font-style: normal; }
.engage-card h3 em { color: var(--blue); }
.engage-card.featured h3 { color: #fff; }
.engage-card.featured h3 em { color: var(--cyan); }

.engage-card p { font-size: 14.5px; line-height: 1.7; color: var(--text); margin-bottom: 24px; }
.engage-card.featured p { color: rgba(255,255,255,0.65); }

.engage-list { list-style: none; border-top: 1px solid var(--border); padding-top: 18px; }
.engage-card.featured .engage-list { border-top-color: rgba(255,255,255,0.15); }

.engage-list li {
  padding: 9px 0;
  font-size: 13px;
  color: var(--text-bright);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.engage-card.featured .engage-list li { color: rgba(255,255,255,0.82); }
.engage-list li::before { content: '✓'; color: var(--blue); font-family: var(--mono); font-weight: 700; flex-shrink: 0; }
.engage-card.featured .engage-list li::before { color: var(--cyan); }

@media (max-width: 880px) { .engage-cards { grid-template-columns: 1fr; } }

/* ====================================================
   STEPS  (dark section for rhythm)
   ==================================================== */
.steps { background: var(--dark); position: relative; overflow: hidden; }
.steps::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: radial-gradient(ellipse at 80% 30%, rgba(0,184,224,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.steps > * { position: relative; }
.steps .sec-title { color: #fff; }
.steps .sec-label { color: var(--cyan); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  margin-top: 72px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 34px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cyan) 20%, var(--cyan) 80%, transparent);
  opacity: 0.2;
  z-index: 0;
}

.step { position: relative; z-index: 1; }

.step-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--dark);
  border: 1px solid var(--border-cyan);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 28px;
  position: relative;
  box-shadow: 0 0 20px rgba(0,184,224,0.12);
}
.step-num::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(0,184,224,0.1);
  border-radius: 50%;
}

.step-tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.75;
}

.step h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #fff;
}
.step h3 em { font-style: normal; color: var(--cyan); }
.step p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 36ch; }

@media (max-width: 880px) {
  .steps-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid::before { display: none; }
}

/* ====================================================
   COMPETITIVE TEARDOWN
   ==================================================== */
.compete { background: var(--bg-1); border-top: 1px solid var(--border); }

.compete-table {
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 8px;
  margin-top: 56px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.compete-row {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 0.8fr;
  gap: 32px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.compete-row:last-child { border-bottom: none; }

.compete-row.head {
  background: var(--bg-1);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-2);
  padding: 12px 28px;
}

.compete-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-bright);
  letter-spacing: -0.02em;
}
.compete-name span {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  color: var(--text-2);
  letter-spacing: 0.14em;
  margin-top: 3px;
  font-weight: 400;
}

.compete-pos { font-size: 13.5px; line-height: 1.55; color: var(--text); }

.compete-team {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
}
.compete-team .no  { color: var(--red); }
.compete-team .yes { color: var(--green); }

.compete-row.us {
  background: var(--blue-dim);
  border-color: var(--border-blue-dim);
}
.compete-row.us .compete-name         { color: var(--text-bright); }
.compete-row.us .compete-name span    { color: var(--blue); }
.compete-row.us .compete-pos          { color: var(--text); }
.compete-row.us .compete-team .yes    { color: var(--blue); font-weight: 700; }

@media (max-width: 880px) {
  .compete-row { grid-template-columns: 1fr; gap: 6px; padding: 16px; }
  .compete-row.head { display: none; }
  .compete-team { text-align: left; }
}

/* ====================================================
   INSIGHTS
   ==================================================== */
.insights { background: var(--bg); }

.insights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }

.insight {
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.insight:hover {
  transform: translateY(-4px);
  border-color: var(--border-blue);
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
}

.insight-image { aspect-ratio: 16/10; background: var(--bg-2); position: relative; overflow: hidden; }
.insight-image svg { width: 100%; height: 100%; }

.insight-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }

.insight-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.insight-tag::before { content: '[ '; }
.insight-tag::after  { content: ' ]'; }

.insight h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--text-bright);
}
.insight h3 em { font-style: normal; color: var(--blue); }
.insight p { font-size: 13.5px; line-height: 1.6; color: var(--text); margin-bottom: 18px; }

.insight-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-2);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: space-between;
}
.insight-meta .read { color: var(--text-bright); font-weight: 600; }
.insight-meta .read::after { content: ' →'; color: var(--blue); }

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

/* ====================================================
   CTA  (dark section)
   ==================================================== */
.cta {
  background: var(--dark);
  color: #fff;
  padding: clamp(96px, 16vh, 200px) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 70%; height: 100%;
  background: radial-gradient(ellipse at 25% 50%, rgba(0,184,224,0.09) 0%, transparent 60%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: end;
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(44px, 7.5vw, 108px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 14ch;
}
.cta h2 em { font-style: normal; color: var(--cyan); }

.cta-side { border-left: 1px solid rgba(255,255,255,0.12); padding-left: 44px; }

.cta-side .label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.cta-side h3 {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}
.cta-side h3 em { font-style: normal; color: var(--cyan); }
.cta-side p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 28px; }

.cta-btn {
  background: #fff;
  color: var(--dark);
  padding: 16px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta-btn:hover { background: var(--cyan); color: var(--dark); box-shadow: 0 4px 20px rgba(0,184,224,0.3); transform: translateY(-2px); }
.cta-btn::after { content: '→'; transition: transform 0.2s; }
.cta-btn:hover::after { transform: translateX(4px); }

.cta-contact-row {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-contact-row a { display: flex; align-items: center; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.cta-contact-row a:hover { color: var(--cyan); }
.cta-contact-row a span:first-child {
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  width: 56px;
}

@media (max-width: 980px) {
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-side  { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding: 36px 0 0; }
}

/* ====================================================
   FOOTER  (dark)
   ==================================================== */
footer {
  background: var(--dark-1);
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 72px 0 36px;
  position: relative;
  z-index: 2;
}

.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 72px; }
.footer-grid h5 {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: 20px;
  opacity: 0.8;
}
.footer-grid ul  { list-style: none; }
.footer-grid li  { padding: 6px 0; font-size: 13px; }
.footer-grid a   { transition: color 0.2s; }
.footer-grid a:hover { color: #fff; }

.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 20px; max-width: 38ch; }

.footer-tagline { font-family: var(--mono); font-size: 11px; color: var(--cyan); margin-top: 16px; letter-spacing: 0.06em; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.25);
}

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  display: grid;
  place-items: center;
  transition: all 0.2s;
  font-size: 11px;
  font-family: var(--mono);
  font-weight: 600;
  color: rgba(255,255,255,0.4);
}
.footer-social a:hover { background: var(--cyan); color: var(--dark); border-color: var(--cyan); }



@media (max-width: 980px) {
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
}

/* ====================================================
   REVEAL ANIMATIONS
   ==================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.2,0.8,0.2,1), transform 0.8s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal.in    { opacity: 1; transform: translateY(0); }
.reveal-d1    { transition-delay: 0.1s; }
.reveal-d2    { transition-delay: 0.2s; }
.reveal-d3    { transition-delay: 0.3s; }
.reveal-d4    { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-d1, .reveal-d2, .reveal-d3, .reveal-d4 {
    opacity: 1; transform: none; transition: none;
  }
  .pulse-circle { animation: none; }
  .hero::before { animation: none; }
  .hero::after  { animation: none; }
}
