/* ==========================================================================
   Senocom — stylesheet v5
   Dark enterprise-SaaS redesign. Inspired by Crae Group / modern product sites.
   Deep navy background + violet-navy primary + emerald green secondary accents.
   Gradient glows, bento tiles, grid overlays.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  --bg:          #0A0D1A;
  --bg-2:        #0F1220;
  --bg-3:        #151A2E;
  --surface:     rgba(255, 255, 255, 0.03);
  --surface-2:   rgba(255, 255, 255, 0.06);
  --border:      rgba(255, 255, 255, 0.08);
  --border-2:    rgba(255, 255, 255, 0.14);
  --border-3:    rgba(255, 255, 255, 0.22);

  --text:        #F5F6FA;
  --text-soft:   #B8BBC9;
  --text-muted:  #737685;
  --text-faint:  #4D4F5C;

  --navy:        #4C5FFA;
  --navy-light:  #6572FF;
  --navy-deep:   #3B4AD9;
  --navy-glow:   rgba(76, 95, 250, 0.45);
  --navy-tint:   rgba(76, 95, 250, 0.12);
  --navy-border: rgba(76, 95, 250, 0.24);

  --green:       #10B981;
  --green-light: #34D399;
  --green-deep:  #0B8F66;
  --green-glow:  rgba(16, 185, 129, 0.4);
  --green-tint:  rgba(16, 185, 129, 0.12);
  --green-border: rgba(16, 185, 129, 0.24);

  --amber:       #F59E0B;

  --container:   1200px;
  --gutter:      clamp(1.25rem, 3vw, 2.5rem);
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: transparent; cursor: pointer; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 500; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(4rem, 7vw, 6.5rem) 0; position: relative; }
.section--sm { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.rule-t { border-top: 1px solid var(--border); }

/* ========================================
   TYPOGRAPHY
   ======================================== */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--green);
}

.section-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.875rem, 3.8vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}
.section-title .grad {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.section-lede {
  max-width: 42rem;
  margin: 1.25rem auto 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}
.section-lede p + p { margin-top: 0.75rem; }

.text-center { text-align: center; }
.text-center .eyebrow { justify-content: center; }

/* ========================================
   NAV
   ======================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 26, 0.75);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: inline-flex; align-items: baseline; gap: 4px; color: var(--text); }
.brand__mark {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 7px;
  transform: translateY(4px);
  position: relative;
  box-shadow: 0 4px 16px var(--navy-glow);
}
.brand__mark::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border: 2px solid var(--bg);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green-glow);
}
.brand__name {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--text);
}

.nav__links { display: flex; align-items: center; gap: 2.25rem; }
.nav__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 6px 0;
  transition: color 200ms var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link.is-active { color: var(--text); font-weight: 600; }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--green));
  border-radius: 1px;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 20px var(--navy-glow);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--navy-glow);
}

.nav__mobile { display: none; }
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__mobile { display: block; position: relative; }
  .nav__mobile summary {
    list-style: none; cursor: pointer;
    font-size: 14px; color: var(--text); font-weight: 500;
  }
  .nav__mobile summary::-webkit-details-marker { display: none; }
  .nav__mobile-menu {
    position: absolute; right: 0; top: 2.25rem;
    min-width: 200px;
    background: var(--bg-2);
    border: 1px solid var(--border-2);
    border-radius: 8px;
    padding: 0.5rem 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  }
  .nav__mobile-menu a {
    display: block; padding: 0.75rem 1.25rem;
    font-size: 14px; color: var(--text-soft); font-weight: 500;
  }
  .nav__mobile-menu a:hover { background: var(--surface-2); color: var(--text); }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 200ms var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  box-shadow: 0 6px 24px var(--navy-glow);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px var(--navy-glow);
}
.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-2);
}
.btn--ghost:hover {
  background: var(--surface-2);
  border-color: var(--border-3);
}
.btn svg { transition: transform 200ms var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.text-link {
  color: var(--navy-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 200ms;
}
.text-link::after {
  content: "→";
  transition: transform 200ms var(--ease);
}
.text-link:hover { color: var(--green-light); }
.text-link:hover::after { transform: translateX(3px); }

/* ========================================
   KICKER PILL (status-style badge)
   ======================================== */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}
.kicker .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green-glow);
  animation: kicker-pulse 2.5s ease-in-out infinite;
}
@keyframes kicker-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--green-glow); }
  50% { opacity: 0.5; box-shadow: 0 0 14px var(--green-glow); }
}

/* ========================================
   HERO — Home (big version with product mock)
   ======================================== */
.hero {
  position: relative;
  padding: clamp(4rem, 7vw, 5.5rem) 0 clamp(4rem, 7vw, 6rem);
  overflow: hidden;
}
.hero__glow-1 {
  content: "";
  position: absolute;
  top: -200px; left: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--navy-glow) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero__glow-2 {
  content: "";
  position: absolute;
  bottom: -250px; right: -150px;
  width: 650px; height: 650px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 65%);
  filter: blur(50px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 20%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 20%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text);
  margin: 0 0 1.25rem;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.hero__lede {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 44rem;
  margin: 0 auto 0.875rem;
}
.hero__lede--sub {
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 38rem;
  margin-top: 0.625rem;
}
.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
}

/* Hero — inner pages (smaller, no product mock) */
.hero--inner {
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2rem, 3vw, 2.5rem);
  overflow: hidden;
  position: relative;
}
.hero--inner .hero__glow-1 {
  width: 500px; height: 500px; top: -150px; left: -50px;
  opacity: 0.6;
}
.hero--inner .hero__glow-2 {
  width: 450px; height: 450px; bottom: -180px; right: -80px;
  opacity: 0.45;
}
.hero--inner .hero__inner {
  text-align: left;
  max-width: 64rem;
}
.hero--inner h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}
.hero--inner .hero__lede {
  margin-left: 0; margin-right: 0;
  max-width: 48rem;
}

/* ========================================
   PRODUCT MOCK (hero dashboard)
   ======================================== */
.product-mock {
  position: relative;
  z-index: 2;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  max-width: 840px;
  border-radius: 14px;
  border: 1px solid var(--border-2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  padding: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.product-mock__inner {
  background: var(--bg-3);
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.product-mock__win {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  align-items: center;
}
.product-mock__win span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.product-mock__win span:nth-child(1) { background: rgba(255, 95, 86, 0.5); }
.product-mock__win span:nth-child(2) { background: rgba(255, 189, 46, 0.5); }
.product-mock__win span:nth-child(3) { background: rgba(39, 201, 63, 0.5); }
.product-mock__url {
  margin-left: auto;
  font-size: 10.5px;
  color: var(--text-muted);
  padding: 2px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}
.product-mock__content { padding: 20px 22px; }
.product-mock__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.125rem;
}
.product-mock__header h3 {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}
.product-mock__period {
  font-size: 10.5px;
  color: var(--text-muted);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 5px;
}
.product-mock__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 1.25rem;
}
.metric {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  position: relative;
  overflow: hidden;
}
.metric::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--navy);
}
.metric--green::before { background: var(--green); }
.metric--amber::before { background: var(--amber); }
.metric__label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.metric__value {
  font-family: "Fraunces", serif;
  font-size: 1.375rem;
  color: var(--text);
  line-height: 1;
  font-weight: 500;
}
.metric__delta {
  font-size: 10px;
  color: var(--green-light);
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.product-mock__chart {
  position: relative;
  height: 140px;
  border-radius: 6px;
  padding: 8px 0;
}

/* ========================================
   BENTO GRID (capabilities)
   ======================================== */
.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 250px 210px;
  gap: 12px;
  max-width: 1080px;
  margin: 2.5rem auto 0;
}
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4, auto); }
  .bento .tile.t-big { grid-column: 1 / 3; grid-row: auto; min-height: 300px; }
  .bento .tile.t-wide { grid-column: 1 / 3; grid-row: auto; min-height: 200px; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .bento .tile.t-big, .bento .tile.t-wide { grid-column: 1; }
}

.tile {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  overflow: hidden;
  transition: border-color 300ms var(--ease), transform 300ms var(--ease);
}
.tile:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
}
.tile.t-big { grid-column: 1 / 2; grid-row: 1 / 3; }
.tile.t-wide { grid-column: 2 / 4; grid-row: 1 / 2; }

.tile__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--navy-tint);
  color: var(--navy-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid var(--navy-border);
}
.tile__icon svg { width: 18px; height: 18px; }
.tile.t-green .tile__icon {
  background: var(--green-tint);
  color: var(--green-light);
  border-color: var(--green-border);
}
.tile h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.5rem;
  letter-spacing: -0.015em;
}
.tile p {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}
.tile__decor {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 95, 250, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.tile.t-green .tile__decor {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, transparent 65%);
}
.tile.t-big .tile__img {
  position: absolute;
  bottom: 14px; right: 14px; left: 14px;
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
}

/* ========================================
   SERVICE ROW (Services deep page)
   ======================================== */
.service-row {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.service-row__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .service-row__inner { grid-template-columns: 1fr; gap: 2rem; } }

.service-row__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--navy-tint);
  color: var(--navy-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid var(--navy-border);
  position: relative;
}
.service-row__icon-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-light) 0%, transparent 50%);
  opacity: 0.15;
  pointer-events: none;
}
.service-row__icon-wrap.is-green {
  background: var(--green-tint);
  color: var(--green-light);
  border-color: var(--green-border);
}
.service-row__icon-wrap.is-green::before {
  background: linear-gradient(135deg, var(--green-light) 0%, transparent 50%);
}
.service-row__icon-wrap svg { width: 30px; height: 30px; }

.service-row h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0;
}

.service-row__lede {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  font-weight: 400;
  margin: 0 0 0.75rem;
  max-width: 42rem;
}
.service-row__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0 0 1.5rem;
  max-width: 42rem;
}
.service-row__caps-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin: 0 0 0.75rem;
}
.service-row__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-row__list li {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.55;
  transition: color 200ms;
}
.service-row__list li:hover { color: var(--text); }
.service-row__list li::before {
  content: "";
  margin-top: 0.625rem;
  display: block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--green));
  flex-shrink: 0;
  border-radius: 1px;
}

/* ========================================
   PRINCIPLES (About page)
   ======================================== */
.principles { max-width: 52rem; margin: 0 auto; }
.principle {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.principle:first-child { border-top: 0; padding-top: 0; }
.principle__n {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  padding-top: 0.375rem;
  background: linear-gradient(135deg, var(--navy-light), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.principle h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 0.625rem;
}
.principle p {
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
  font-size: 0.9375rem;
  max-width: 42rem;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 2rem;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info__block h3 {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin: 0 0 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact-info__block h3::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--green);
}
.contact-info__block a.email {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  color: var(--text);
  font-weight: 500;
  transition: color 200ms;
}
.contact-info__block a.email:hover { color: var(--navy-light); }
.contact-info__block ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.625rem;
  font-size: 14px; color: var(--text-soft); line-height: 1.5;
}
.contact-info__block ul li {
  padding-left: 1.5rem;
  position: relative;
}
.contact-info__block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--green));
  border-radius: 1px;
}

/* Form */
.form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.form h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 1.5rem;
}
.field {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-bottom: 1.125rem;
}
.field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-2);
  border-radius: 7px;
  padding: 0.75rem 0.9375rem;
  font: inherit;
  color: var(--text);
  font-size: 14px;
  transition: border-color 200ms, background 200ms, box-shadow 200ms;
}
.field textarea { resize: vertical; min-height: 6rem; }
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-faint);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--navy-light);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 3px var(--navy-tint);
}
.form__actions {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem; margin-top: 1.25rem;
}
.form__note {
  font-size: 11.5px;
  color: var(--text-muted);
  max-width: 22rem;
  margin: 0;
}

/* ========================================
   SECTORS STRIP (tag pills)
   ======================================== */
.strip { padding: clamp(2.5rem, 4vw, 3.5rem) 0; position: relative; }
.strip__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.strip__head .eyebrow { margin-bottom: 0.5rem; }
.strip__head h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}
.strip__head p {
  color: var(--text-soft);
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
  max-width: 26rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 12.5px;
  font-weight: 500;
  transition: all 200ms;
}
.tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--navy-light);
  box-shadow: 0 0 6px var(--navy-glow);
}
.tag.is-green::before {
  background: var(--green);
  box-shadow: 0 0 6px var(--green-glow);
}
.tag:hover {
  border-color: var(--border-3);
  background: var(--surface-2);
}

/* ========================================
   ROLES (team strip)
   ======================================== */
.roles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.625rem;
}
@media (max-width: 900px) { .roles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .roles { grid-template-columns: repeat(2, 1fr); } }
.role {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.125rem;
  transition: border-color 200ms, transform 200ms;
}
.role:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
}
.role__icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--navy-tint);
  color: var(--navy-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.625rem;
  border: 1px solid var(--navy-border);
}
.role.is-green .role__icon {
  background: var(--green-tint);
  color: var(--green-light);
  border-color: var(--green-border);
}
.role__icon svg { width: 16px; height: 16px; }
.role__title {
  font-family: "Fraunces", serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.role__note {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 0.1875rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  position: relative;
  padding: clamp(4rem, 7vw, 6rem) 0;
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(76, 95, 250, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .eyebrow { justify-content: center; }
.cta-section h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.05;
  color: var(--text);
  position: relative;
  z-index: 1;
  letter-spacing: -0.03em;
}
.cta-section h2 .grad {
  background: linear-gradient(135deg, var(--navy-light), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.cta-section p.cta-lede {
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 42rem;
  margin: 1rem auto 0;
  position: relative;
  z-index: 1;
}
.cta-section__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  position: relative;
  z-index: 1;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  border-top: 1px solid var(--border);
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.75rem;
  background: var(--bg-2);
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 1.75rem; } }

.footer__brand .brand { margin-bottom: 0.5rem; }
.footer__brand p {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
  margin: 0.5rem 0 0;
  max-width: 22rem;
}
.footer__col h5 {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin: 0 0 0.875rem;
}
.footer__col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.footer__col ul a {
  color: var(--text-soft);
  font-size: 13px;
  transition: color 200ms;
}
.footer__col ul a:hover { color: var(--text); }
.footer__col address {
  font-style: normal;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.7;
}
.footer__fine-row {
  margin-top: clamp(2.5rem, 5vw, 3rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 12px;
  color: var(--text-muted);
}
.footer__fine-row a {
  color: var(--text-muted);
  transition: color 200ms;
}
.footer__fine-row a:hover { color: var(--text); }

/* ========================================
   PROSE (legal pages)
   ======================================== */
.prose {
  max-width: 44rem;
  margin: 0 auto;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 0.9375rem;
}
.prose h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 1rem 0 2rem;
}
.prose p + p { margin-top: 0.875rem; }
.prose a {
  color: var(--navy-light);
  border-bottom: 1px solid rgba(76, 95, 250, 0.3);
}
.prose a:hover { color: var(--green-light); border-color: var(--green-light); }

/* ========================================
   UTILS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: reveal 800ms var(--ease) forwards;
}
@keyframes reveal { to { opacity: 1; transform: none; } }
.reveal-1 { animation-delay: 50ms; }
.reveal-2 { animation-delay: 180ms; }
.reveal-3 { animation-delay: 320ms; }
.reveal-4 { animation-delay: 460ms; }

::selection { background: var(--navy); color: #fff; }
*:focus-visible {
  outline: 2px solid var(--navy-light);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================================
   v6 UPGRADES — Crae-style polish
   1. Hero split layout (left text / right product mock)
   2. Big alternating feature sections with stylised screenshots
   3. Bigger headings, more dramatic whitespace
   4. Floating decorative gradient blob
   ============================================================================ */

/* ----- 1. HERO SPLIT LAYOUT ----- */
.hero--split { padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3.5rem, 6vw, 5.5rem); }
.hero--split .hero__inner {
  text-align: left;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 960px) {
  .hero--split .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
}
.hero--split h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.hero--split .hero__lede {
  margin-left: 0;
  margin-right: 0;
  max-width: 32rem;
}
.hero--split .hero__actions { justify-content: flex-start; }
.hero--split .product-mock {
  margin: 0;
  max-width: none;
  width: 100%;
}

/* ----- 2. BIG ALTERNATING FEATURE SECTIONS ----- */
.feature-row {
  position: relative;
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.feature-row__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.feature-row.is-flipped .feature-row__inner {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}
.feature-row.is-flipped .feature-row__text { order: 2; }
.feature-row.is-flipped .feature-row__visual { order: 1; }
@media (max-width: 900px) {
  .feature-row__inner { grid-template-columns: 1fr; gap: 2.25rem; }
  .feature-row.is-flipped .feature-row__text,
  .feature-row.is-flipped .feature-row__visual { order: unset; }
}

.feature-row__icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--navy-tint);
  border: 1px solid var(--navy-border);
  color: var(--navy-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}
.feature-row__icon::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-light) 0%, transparent 50%);
  opacity: 0.2;
}
.feature-row.is-green .feature-row__icon {
  background: var(--green-tint);
  border-color: var(--green-border);
  color: var(--green-light);
}
.feature-row.is-green .feature-row__icon::before {
  background: linear-gradient(135deg, var(--green-light) 0%, transparent 50%);
}
.feature-row__icon svg { width: 28px; height: 28px; }

.feature-row h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 1rem;
}
.feature-row h2 .grad {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.feature-row__lede {
  color: var(--text-soft);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
  max-width: 32rem;
}
.feature-row__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-row__list li {
  padding: 0.625rem 0;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.feature-row__list li::before {
  content: "";
  margin-top: 0.625rem;
  display: block;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--green));
  flex-shrink: 0;
  border-radius: 1px;
}

/* Stylised "screenshot" frame for visual side */
.feature-shot {
  position: relative;
  border-radius: 14px;
  border: 1px solid var(--border-2);
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  padding: 12px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.03);
  overflow: hidden;
}
.feature-shot::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--navy-glow) 0%, transparent 65%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
  filter: blur(30px);
}
.feature-row.is-green .feature-shot::before {
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 65%);
}
.feature-row:not(.is-flipped) .feature-shot::before { right: -100px; bottom: -100px; }
.feature-row.is-flipped .feature-shot::before { left: -100px; top: -100px; }
.feature-shot__inner {
  position: relative;
  z-index: 1;
  background: var(--bg-3);
  border-radius: 9px;
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 320px;
}

/* ----- 3. BIGGER HEADINGS / DRAMATIC WHITESPACE ----- */
.section { padding: clamp(5rem, 9vw, 8rem) 0; }
.section-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

/* ----- 4. FLOATING DECORATIVE GRADIENT BLOB ----- */
.floating-blob {
  position: absolute;
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  border-radius: 50%;
  background: conic-gradient(
    from 180deg at 50% 50%,
    rgba(76, 95, 250, 0.4),
    rgba(16, 185, 129, 0.35),
    rgba(76, 95, 250, 0.4)
  );
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  animation: blob-drift 30s linear infinite;
}
@keyframes blob-drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(40px, -30px) rotate(180deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}
.floating-blob--cta {
  bottom: -150px;
  left: 50%;
  margin-left: -300px;
}
.cta-section { position: relative; overflow: hidden; }
.cta-section .container { position: relative; z-index: 1; }

/* ============================================================================
   v7 — Comparison table + two-up graph row
   ============================================================================ */

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  font-size: 0.9375rem;
}
.compare-table thead th {
  background: rgba(76, 95, 250, 0.06);
  padding: 1rem 1.125rem;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-light);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.compare-table thead th:first-child { color: var(--text-soft); }
.compare-table tbody th {
  text-align: left;
  padding: 1rem 1.125rem;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  width: 26%;
  letter-spacing: -0.01em;
}
.compare-table tbody td {
  padding: 1rem 1.125rem;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
  vertical-align: top;
  font-size: 0.875rem;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:hover { background: rgba(255, 255, 255, 0.015); }

.compare-table .pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  background: var(--navy-tint);
  color: var(--navy-light);
  border: 1px solid var(--navy-border);
}
.compare-table .pill.is-green {
  background: var(--green-tint);
  color: var(--green-light);
  border-color: var(--green-border);
}
.compare-table .pill::before {
  content: "";
  width: 5px; height: 5px;
  background: currentColor;
  border-radius: 50%;
}

@media (max-width: 700px) {
  .compare-table thead { display: none; }
  .compare-table tbody th,
  .compare-table tbody td {
    display: block;
    border: 0;
    padding: 0.625rem 1.125rem;
  }
  .compare-table tbody th {
    background: rgba(76, 95, 250, 0.06);
    color: var(--navy-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    width: auto;
  }
  .compare-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
  }
  .compare-table tbody tr {
    display: block;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid var(--border);
  }
}

/* Two-up chart row */
.charts-2up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 800px) { .charts-2up { grid-template-columns: 1fr; } }

.chart-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.chart-card__decor {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  opacity: 0.5;
}
.chart-card__decor--navy { background: var(--navy-glow); top: -80px; right: -80px; }
.chart-card__decor--green { background: var(--green-glow); bottom: -80px; left: -80px; }

.chart-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.chart-card__head h4 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -0.015em;
  margin: 0 0 0.25rem;
}
.chart-card__head p {
  font-size: 11.5px;
  color: var(--text-muted);
  margin: 0;
}
.chart-card__head .delta {
  font-family: "Fraunces", serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--green-light);
}
.chart-card__head .delta-sub {
  font-size: 10.5px;
  color: var(--text-muted);
  text-align: right;
}
.chart-card__viz {
  position: relative;
  z-index: 1;
  height: 180px;
}

/* ============================================================================
   v8 — Governance section (How we operate)
   Three-column block describing engagement, IP, and acceptance.
   ============================================================================ */
.govern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 900px) { .govern-grid { grid-template-columns: 1fr; } }

.govern-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  overflow: hidden;
}
.govern-card__num {
  font-family: "Fraunces", serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.govern-card__num::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--green);
}
.govern-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.govern-card p {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0 0 0.875rem;
}
.govern-card p:last-child { margin-bottom: 0; }
.govern-card strong {
  color: var(--text);
  font-weight: 600;
}

/* ============================================================================
   v9 — Hero typography redesign (Option B: bold technical)
   Replaces serif italic gradient with bold sans + mono accents.
   ============================================================================ */

/* Hero headline: Inter 800-weight sans, no serif italic */
.hero h1,
.hero--split h1 {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0 0 1.5rem;
  max-width: 18ch;
}

/* The single decorative touch: italic ampersand in serif violet */
.hero h1 .ampersand {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--navy-light);
}

/* "marketing" word: solid green, no gradient, same weight as rest */
.hero h1 .grad,
.hero h1 .accent {
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: var(--green-light) !important;
  font-style: normal !important;
  font-weight: 800 !important;
  font-family: inherit !important;
}

/* Kicker pill: technical mono code-style */
.hero .kicker {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Inline mono code highlight inside lede */
.hero__lede code,
.hero .mono-pill {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.875em;
  color: var(--green-light);
  background: var(--green-tint);
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid var(--green-border);
  white-space: nowrap;
}

/* ============================================================================
   v10 — Motion + graphic substance
   Scroll-reveal, hover lift, stat counters, marquee, stats band, comparison.
   ============================================================================ */

/* SCROLL-REVEAL — enters from below as it scrolls into view */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.scroll-reveal.delay-1 { transition-delay: 100ms; }
.scroll-reveal.delay-2 { transition-delay: 200ms; }
.scroll-reveal.delay-3 { transition-delay: 300ms; }
.scroll-reveal.delay-4 { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal { opacity: 1; transform: none; transition: none; }
}

/* HOVER LIFT — for interactive cards/rows */
.tile, .chart-card, .govern-card, .feature-shot, .role {
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 350ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 350ms cubic-bezier(0.22, 1, 0.36, 1);
}
.tile:hover, .chart-card:hover, .govern-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* COMPARE-TABLE row hover */
.compare-table tbody tr {
  transition: background 250ms ease;
}
.compare-table tbody tr:hover {
  background: rgba(76, 95, 250, 0.04);
}

/* ANIMATED PRODUCT MOCK CHART — re-draws on a loop */
.product-mock__chart svg path[stroke="#6572FF"],
.product-mock__chart svg path[stroke="#10B981"] {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: chart-draw 4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.product-mock__chart svg path[stroke="#10B981"] {
  animation-delay: 400ms;
}
@keyframes chart-draw {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .product-mock__chart svg path[stroke="#6572FF"],
  .product-mock__chart svg path[stroke="#10B981"] {
    animation: none;
    stroke-dashoffset: 0;
  }
}

/* STATS BAND — three big counters below hero */
.stats-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, transparent 100%);
  padding: clamp(2.25rem, 4vw, 3rem) 0;
}
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}
@media (max-width: 700px) { .stats-band__grid { grid-template-columns: 1fr; } }

.stat-counter {
  text-align: center;
  position: relative;
}
.stat-counter::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: var(--border);
}
.stats-band__grid .stat-counter:last-child::after { display: none; }
@media (max-width: 700px) { .stat-counter::after { display: none; } }

.stat-counter__value {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}
.stat-counter__value .grad {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--green) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-counter__value sup {
  font-size: 0.55em;
  font-weight: 500;
  color: var(--green-light);
  margin-left: 4px;
  vertical-align: super;
}
.stat-counter__label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.875rem;
}

/* MARQUEE — slow scrolling sectors strip */
.marquee {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 3.5vw, 2.75rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-2) 0%, transparent 100%); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-2) 0%, transparent 100%); }

.marquee__track {
  display: inline-flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee-scroll 35s linear infinite;
  align-items: center;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee__item {
  display: inline-flex; align-items: center; gap: 0.625rem;
  font-family: "Fraunces", serif;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: -0.015em;
}
.marquee__item .dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green-glow);
}
.marquee__item:nth-child(odd) .dot { background: var(--navy-light); box-shadow: 0 0 8px var(--navy-glow); }
.marquee__label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* TWO-COLUMN COMPARISON — "What you keep vs what stays with us" */
.compare-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 800px) { .compare-2col { grid-template-columns: 1fr; } }

.compare-2col__card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  overflow: hidden;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1), border-color 350ms;
}
.compare-2col__card:hover { transform: translateY(-4px); border-color: var(--border-3); }
.compare-2col__card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
}
.compare-2col__card.is-client::before { background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%); }
.compare-2col__card.is-senocom::before { background: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 100%); }

.compare-2col__head {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.compare-2col__icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid;
}
.is-client .compare-2col__icon { background: var(--green-tint); color: var(--green-light); border-color: var(--green-border); }
.is-senocom .compare-2col__icon { background: var(--navy-tint); color: var(--navy-light); border-color: var(--navy-border); }
.compare-2col__icon svg { width: 18px; height: 18px; }
.compare-2col__head h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  color: var(--text);
}
.compare-2col__head h3 small {
  display: block;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}
.compare-2col__list {
  list-style: none; padding: 0; margin: 0;
}
.compare-2col__list li {
  padding: 0.625rem 0;
  border-top: 1px solid var(--border);
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.compare-2col__list li:first-child { border-top: 0; padding-top: 0; }
.compare-2col__list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px; height: 16px;
}
.is-client .compare-2col__list li svg { color: var(--green-light); }
.is-senocom .compare-2col__list li svg { color: var(--navy-light); }

/* ============================================================================
   LIVE TICKER — synthetic real-time activity feed
   ============================================================================ */
.live-ticker {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.live-ticker__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--border);
}
.live-ticker__head h4 {
  font-family: "Fraunces", serif;
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 0;
  color: var(--text);
}
.live-ticker__pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-light);
}
.live-ticker__pulse::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--green-glow);
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.live-ticker__rows {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 200px;
}
.live-ticker__row {
  display: grid;
  grid-template-columns: 9ch 1fr auto;
  gap: 0.875rem;
  align-items: center;
  font-size: 12.5px;
  padding: 0.4rem 0;
  animation: ticker-in 500ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
@keyframes ticker-in {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: none; }
}
.live-ticker__time {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  color: var(--text-muted);
}
.live-ticker__msg { color: var(--text-soft); font-size: 12.5px; line-height: 1.4; }
.live-ticker__msg strong { color: var(--text); font-weight: 500; }
.live-ticker__msg .badge {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  font-weight: 500;
  padding: 1px 5px;
  border-radius: 3px;
  margin-right: 5px;
  letter-spacing: 0.04em;
  vertical-align: 1px;
}
.live-ticker__msg .badge.up { background: var(--green-tint); color: var(--green-light); }
.live-ticker__msg .badge.event { background: var(--navy-tint); color: var(--navy-light); }
.live-ticker__delta {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  color: var(--green-light);
  font-weight: 500;
}
.live-ticker__delta.muted { color: var(--text-muted); }

/* CHARTS-WITH-TICKER 2-col layout */
.charts-with-ticker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 900px) { .charts-with-ticker { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  .live-ticker__pulse::before, .live-ticker__row { animation: none !important; }
}

/* ============================================================================
   STAT GRID — used on About page company-details section
   ============================================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 800px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .stat-grid { grid-template-columns: 1fr; } }

.stat-block {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 300ms,
              box-shadow 400ms;
}
.stat-block::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--green));
}
.stat-block:hover {
  transform: translateY(-3px);
  border-color: rgba(76, 95, 250, 0.3);
}
.stat-block__label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.625rem;
}
.stat-block__value {
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -0.02em;
}
.stat-block__sub {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 0.5rem;
  line-height: 1.4;
}
