@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ── RESET & ROOT ─────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0D1B2E;
  --navy-mid: #132033;
  --navy-light: #1C2E44;
  --navy-border: #1F3352;
  --blue: #2F72DC;
  --blue-light: #4A8AEA;
  --blue-tint: #EBF1FB;
  --green: #2D9E6B;
  --grey-100: #EEF0F4;
  --grey-200: #D8DCE6;
  --grey-400: #9BA3B4;
  --text-primary: #0D1B2E;
  --text-secondary: #3D4A5C;
  --text-muted: #6B7585;
  --off-white: #F7F8FA;
  --white: #fff;
  --font: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

/* ── UTILITY ───────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-tint);
  border: 1px solid rgba(47, 114, 220, 0.25);
  padding: 5px 12px;
  border-radius: 4px;
}

.tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 6px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13, 27, 46, 0.18);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 6px;
  border: 1.5px solid var(--grey-200);
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.btn-blue:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(47, 114, 220, 0.35);
}

.section-header {
  margin-bottom: 48px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .sec-sub {
  margin: 0 auto;
}

.sec-title {
  font-size: 38px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 12px 0 14px;
  font-family: Georgia, serif;
}

.sec-title em {
  font-style: italic;
  color: var(--blue);
}

.sec-sub {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
}

/* ── NAVBAR ────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-100);
  height: 88px;
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  text-decoration: none;
}

.logo img {
  height: 85px;
  width: auto;
}

.logo-text {
  display: flex;
}

.logo-text .ai {
  color: var(--blue);
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 5px;
  transition: all 0.15s ease;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--grey-100);
}

.nav-links a.active {
  color: var(--blue);
  background: var(--blue-tint);
}

.nav-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 5px;
  padding: 8px 16px;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--navy);
  color: white;
}

/* mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--grey-100);
  padding: 16px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}

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

.mobile-menu a {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 500;
}

.mobile-menu a:hover {
  color: var(--navy);
  background: var(--grey-100);
}

/* ── HERO ──────────────────────────────────────── */
.hero {
  padding: 80px 0 72px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 27, 46, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 27, 46, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  margin-bottom: 20px;
}

.hero-h1 {
  font-size: 52px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.hero-h1 em {
  font-style: italic;
  color: var(--blue);
}

.hero-sub {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 18px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-note::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--grey-200);
}

/* ── DASHBOARD WIDGET ─────────────────────────── */
.dash {
  background: var(--navy);
  border-radius: 10px;
  border: 1px solid var(--navy-border);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13, 27, 46, 0.3);
}

.dash-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--navy-border);
  background: var(--navy-mid);
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.dash-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  font-family: monospace;
}

.live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: var(--green);
  font-family: monospace;
}

.live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.pipeline {
  padding: 18px;
}

.pipe-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: monospace;
  margin-bottom: 12px;
}

.stages {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.stage {
  flex: 1;
  text-align: center;
  position: relative;
}

.stage:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 14px;
  background: var(--navy-border);
}

.sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 auto 5px;
}

.sdot.done {
  background: var(--green);
}

.sdot.active {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(47, 114, 220, 0.2);
  animation: blink 2s infinite;
}

.sdot.pending {
  background: rgba(255, 255, 255, 0.12);
}

.sname {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: monospace;
}

.stage.s-done .sname {
  color: var(--green);
}

.stage.s-active .sname {
  color: rgba(255, 255, 255, 0.9);
}

.pods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
}

.pod {
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  border-radius: 6px;
  padding: 10px 12px;
}

.pod.act {
  border-color: rgba(47, 114, 220, 0.4);
  background: rgba(47, 114, 220, 0.08);
}

.pod-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.pod-name {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: monospace;
}

.badge {
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: monospace;
}

.badge.g {
  background: rgba(45, 158, 107, 0.2);
  color: var(--green);
}

.badge.b {
  background: rgba(47, 114, 220, 0.2);
  color: var(--blue-light);
}

.badge.gr {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.3);
}

.pod-m {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-family: monospace;
}

.pod-m strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.dash-footer {
  padding: 10px 18px;
  border-top: 1px solid var(--navy-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.thru {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: monospace;
}

.bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 14px;
}

.bars span {
  width: 3px;
  background: rgba(47, 114, 220, 0.5);
  border-radius: 1px;
}

/* ── TRUST BAR ─────────────────────────────────── */
.trust-bar {
  padding: 20px 0;
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  background: var(--off-white);
  overflow: hidden;
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.trust-label {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: monospace;
  flex-shrink: 0;
}

.trust-div {
  width: 1px;
  height: 18px;
  background: var(--grey-200);
  flex-shrink: 0;
}

.trust-items {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-400);
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.trust-item:hover {
  color: var(--navy);
}

/* ── SERVICES ──────────────────────────────────── */
.services-sec {
  padding: 96px 0;
  background: var(--off-white);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.svc {
  background: var(--white);
  padding: 28px 24px;
  border: 1px solid var(--grey-100);
  margin: -0.5px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.svc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.2s ease;
}

.svc:hover::before {
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.svc:hover {
  z-index: 1;
  box-shadow: 0 8px 32px rgba(13, 27, 46, 0.08);
}

.svc-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 18px;
}

.svc-num {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-family: monospace;
}

.svc-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.svc-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.svc-link {
  font-size: 11px;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: monospace;
  font-weight: 500;
  transition: gap 0.2s ease;
}

.svc:hover .svc-link {
  gap: 8px;
}

/* ── POD SECTION ───────────────────────────────── */
.pod-sec {
  padding: 96px 0;
  background: var(--navy);
}

.pod-sec .sec-title {
  color: white;
}

.pod-sec .sec-sub {
  color: rgba(255, 255, 255, 0.75);
}

.pod-sec .tag {
  background: rgba(47, 114, 220, 0.15);
  border-color: rgba(47, 114, 220, 0.3);
}

.pod-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.pod-tiers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.ptier {
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s ease;
  cursor: pointer;
}

.ptier:hover {
  border-color: rgba(47, 114, 220, 0.3);
}

.ptier.act {
  border-color: rgba(47, 114, 220, 0.45);
  background: rgba(47, 114, 220, 0.07);
}

.tier-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}

.tier-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.tier-tag {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.tier-specs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.spec {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: monospace;
}

.spec::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.pod-diag {
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  overflow: hidden;
}

.pd-hdr {
  padding: 12px 16px;
  border-bottom: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pd-title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.07em;
  font-family: monospace;
}

.pd-body {
  padding: 16px;
}

.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.role {
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.role-av {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background: rgba(47, 114, 220, 0.15);
  border: 1px solid rgba(47, 114, 220, 0.25);
  display: grid;
  place-items: center;
  font-size: 12px;
  flex-shrink: 0;
}

.role-title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: monospace;
}

.role-status {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.conn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px dashed rgba(255, 255, 255, 0.07);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
  margin: 8px 0;
  font-family: monospace;
}

.spine {
  display: flex;
  gap: 4px;
  align-items: center;
}

.snode {
  flex: 1;
  padding: 6px 8px;
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: 4px;
  text-align: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: monospace;
}

.sarr {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.sla-box {
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: 6px;
}

.sla-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  font-family: monospace;
}

.sla-items {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-family: monospace;
}

.sla-items strong {
  color: var(--green);
  font-weight: 600;
}

/* ── WHY ───────────────────────────────────────── */
.why-sec {
  padding: 96px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.why-item {
  padding: 32px 36px;
  border: 1px solid var(--grey-100);
  background: white;
  margin: -0.5px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.2s ease;
}

.why-item:hover::before {
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.why-item:hover {
  z-index: 1;
  box-shadow: 0 8px 32px rgba(13, 27, 46, 0.08);
}

.why-num {
  font-size: 10px;
  color: var(--blue);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  font-family: monospace;
}

.why-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.why-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.why-stat {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-100);
  display: flex;
  gap: 24px;
}

.stat-val {
  font-size: 28px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.03em;
  font-family: Georgia, serif;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 2px;
}

/* ── CASE STUDIES ──────────────────────────────── */
.cases-sec {
  padding: 96px 0;
  background: var(--off-white);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-card {
  background: white;
  border: 1px solid var(--grey-100);
  border-radius: 10px;
  padding: 28px;
  position: relative;
  transition: all 0.2s ease;
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(13, 27, 46, 0.1);
}

.case-card.featured {
  grid-column: 1 / 3;
}

.case-tag-sm {
  display: inline-block;
  font-size: 9px;
  color: var(--blue);
  background: var(--blue-tint);
  border: 1px solid rgba(47, 114, 220, 0.2);
  padding: 3px 9px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
  font-family: monospace;
}

.case-industry {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: monospace;
}

.case-industry::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--grey-200);
}

.case-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 12px;
}

.case-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 22px;
}

.case-metrics {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.cm-val {
  font-size: 28px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  font-family: Georgia, serif;
}

.cm-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ── PROCESS ───────────────────────────────────── */
.process-sec {
  padding: 96px 0;
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--grey-200);
  z-index: 0;
}

.process-step {
  padding: 0 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  font-family: monospace;
  transition: all 0.2s ease;
}

.process-step:hover .step-circle {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 0 6px var(--blue-tint);
}

.step-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── FOUNDER ───────────────────────────────────── */
.founder-sec {
  padding: 96px 0;
  background: var(--navy);
}

.founder-sec .tag {
  background: rgba(47, 114, 220, 0.15);
  border-color: rgba(47, 114, 220, 0.3);
}

.founder-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.founder-quote {
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: white;
  line-height: 1.45;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  font-family: Georgia, serif;
}

.founder-quote::before {
  content: '\201C';
  display: block;
  font-size: 60px;
  color: rgba(47, 114, 220, 0.4);
  line-height: 0.8;
  margin-bottom: 14px;
}

.founder-name {
  font-size: 16px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

.founder-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

.founder-profile {
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 32px;
}

.founder-avatar {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: rgba(47, 114, 220, 0.15);
  border: 1px solid rgba(47, 114, 220, 0.3);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.creds {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.cred {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: 6px;
}

.cred-icon {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  background: rgba(47, 114, 220, 0.1);
  border: 1px solid rgba(47, 114, 220, 0.2);
  display: grid;
  place-items: center;
  font-size: 13px;
  flex-shrink: 0;
}

.cred-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.cred-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-family: monospace;
}

.founder-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.founder-pill {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-family: monospace;
  transition: all 0.2s ease;
}

.founder-pill:hover {
  background: rgba(47, 114, 220, 0.15);
  color: var(--blue-light);
  border-color: rgba(47, 114, 220, 0.3);
}

/* ── CTA SECTION ───────────────────────────────── */
.cta-sec {
  padding: 80px 0;
  background: white;
}

.cta-box {
  background: var(--navy);
  border-radius: 16px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 38px;
  font-weight: 300;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 16px 0 14px;
  font-family: Georgia, serif;
}

.cta-title em {
  font-style: italic;
  color: var(--blue-light);
}

.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-btn-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.cta-btn-p:hover {
  background: var(--blue-tint);
  color: var(--blue);
  transform: translateY(-2px);
}

.cta-btn-g {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 12px 26px;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s ease;
}

.cta-btn-g:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
}

.cta-fn {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
  font-family: monospace;
}

/* ── FOOTER ────────────────────────────────────── */
.footer {
  background: var(--off-white);
  border-top: 1px solid var(--grey-100);
  padding: 56px 0 28px;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.foot-logo img {
  height: 95px;
  opacity: 0.9;
}

.foot-logo .ai-blue {
  color: var(--blue);
}

.foot-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 220px;
}

.foot-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.foot-badge {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--grey-200);
  padding: 4px 9px;
  border-radius: 3px;
  font-family: monospace;
}

.foot-col-title {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
  font-family: monospace;
}

.foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.foot-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}

.foot-links a:hover {
  color: var(--blue);
}

.foot-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-copy {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  font-family: monospace;
}

.foot-flags {
  display: flex;
  gap: 14px;
}

.foot-flag {
  font-size: 12px;
  color: var(--text-muted);
  font-family: monospace;
}

.foot-legal {
  display: flex;
  gap: 16px;
}

.foot-legal a {
  font-size: 12px;
  color: var(--text-muted);
  font-family: monospace;
  transition: color 0.15s ease;
}

.foot-legal a:hover {
  color: var(--blue);
}

/* ── PAGE HERO (inner pages) ───────────────────── */
.page-hero {
  padding: 72px 0 64px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

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

.page-hero .sec-title {
  color: white;
  font-size: 44px;
}

.page-hero .sec-sub {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero .tag {
  background: rgba(47, 114, 220, 0.15);
  border-color: rgba(47, 114, 220, 0.3);
}

/* ── DARK SECTION TAG ──────────────────────────── */
.dark-section .tag {
  background: rgba(47, 114, 220, 0.15);
  border-color: rgba(47, 114, 220, 0.3);
}

/* ── ANIMATIONS ────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
}

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 900px) {

  .hero-inner,
  .pod-layout,
  .founder-layout {
    grid-template-columns: 1fr;
  }

  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps::before {
    display: none;
  }

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

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

  .case-card.featured {
    grid-column: 1;
  }

  .foot-top {
    grid-template-columns: 1fr 1fr;
  }

  .sec-title {
    font-size: 28px;
  }

  .hero-h1 {
    font-size: 36px;
  }
}

@media (max-width: 640px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

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

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .foot-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .foot-logo {
    justify-content: center;
  }

  .foot-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .foot-badges {
    justify-content: center;
    margin-bottom: 24px;
  }

  .foot-links {
    align-items: center;
    margin-bottom: 24px;
  }

  .foot-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .foot-flags,
  .foot-legal {
    justify-content: center;
  }

  .hero-h1 {
    font-size: 30px;
  }

  .cta-box {
    padding: 40px 24px;
  }
}

/* ── HOW WE WORK ────────────────────────────────── */
.how-sec {
  padding: 96px 0;
  background: var(--off-white);
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
}

.how-sec .section-header {
  margin-bottom: 64px;
}

.how-sec .sec-sub {
  max-width: 560px;
  margin: 0 auto;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

/* horizontal connector line */
.how-steps::before {
  content: '';
  position: absolute;
  top: 52px; /* center of the circle */
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 1px;
  background: linear-gradient(90deg, var(--grey-200) 0%, var(--blue) 50%, var(--grey-200) 100%);
  z-index: 0;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
  cursor: default;
  transition: transform 0.2s ease;
}

.how-step:hover {
  transform: translateY(-4px);
}

.how-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 10px;
  font-family: 'Inter', monospace;
}

.how-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(13, 27, 46, 0.06);
  transition: all 0.25s ease;
  position: relative;
  z-index: 2;
}

.how-step:hover .how-circle {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 6px 24px rgba(47, 114, 220, 0.18);
  background: #fff;
}

/* active / highlighted step */
.how-step--active .how-circle {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 8px 28px rgba(47, 114, 220, 0.35);
}

.how-step--active .how-num {
  color: var(--navy);
  font-weight: 800;
}

.how-step--active .how-name {
  color: var(--blue);
}

.how-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.how-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* text group wrapper — desktop: block (stacks under circle), mobile: flex column beside circle */
.how-step-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── MOBILE ONLY: vertical timeline ──────────────── */
@media (max-width: 768px) {

  /* outer grid → single column, stacked vertically */
  .how-steps {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    padding: 0;
  }

  /* vertical connector line passes through center of each 48px circle */
  .how-steps::before {
    top: 24px;
    bottom: 24px;
    left: 24px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--grey-200) 0%, var(--blue) 50%, var(--grey-200) 100%);
  }

  /* each step: 2-col grid — circle left, text right */
  .how-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 16px;
    row-gap: 2px;
    align-items: start;
    padding: 0 0 36px 0;
    text-align: left;
  }

  .how-step:last-child {
    padding-bottom: 0;
  }

  /* circle: column 1, spans rows 1-3 */
  .how-circle {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    align-self: start;
    position: relative;
    z-index: 2;
    background: var(--white);
  }

  /* num: column 2, row 1 */
  .how-num {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    margin-bottom: 0;
  }

  /* name: column 2, row 2 */
  .how-name {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
    margin-bottom: 2px;
  }

  /* desc: column 2, row 3 */
  .how-desc {
    grid-column: 2;
    grid-row: 3;
    text-align: left;
  }
}