/* ================================================================
   KATO AI — exact kaze-consulting.com theme, Databricks-grade layout
   ----------------------------------------------------------------
   Typography (extracted from kaze-consulting.com site.css):
     headings  Poppins 500 · ls -0.04em · lh 1.2
     body      Poppins 400 · ls -0.01em · lh 1.5
     nav       Poppins 400 · 0.8rem · uppercase · ls .07em
     scale     h1 4rem · h2 2.7rem · h3 2.2rem · h4 1.6rem · body 1rem
   Colors:
     ink #2e3435 (hsl 197,7%,19%) · accent #16c9d9 (hsl 185,82%,47%)
     darkAccent #4b5b67 · grey #949797
     gradient  #29e2b7 → #16c9d9 → #c12fbf
   ================================================================ */

:root {
  --ink: #2e3435;
  --ink-soft: #4b5b67;
  --grey: #949797;
  --accent: #16c9d9;
  --accent-deep: #00A1BF;
  --teal: #29e2b7;
  --magenta: #c12fbf;
  --surface: #ffffff;
  --surface-alt: #f6f8f8;
  --line: #e5e9e9;
  --grad: linear-gradient(90deg, #29e2b7, #16c9d9, #c12fbf);
  /* validated chart palette (categorical, on white) */
  --chart-1: #0d8fa0;
  --chart-2: #a5289f;
  --chart-3: #159472;
  --chart-4: #4a5fd0;
  --chart-good: #159472;
  --chart-warn: #b06a00;
  --chart-serious: #c2402a;
  --chart-critical: #8f1d3f;
  --shadow-lg: 0 24px 70px rgba(46, 52, 53, .16);
  --shadow-md: 0 12px 36px rgba(46, 52, 53, .1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.5;
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.2;
  color: var(--ink-soft);
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2.2rem); }
h4 { font-size: 1.6rem; }
p  { color: var(--ink-soft); }
a  { color: var(--accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { font-weight: 500; color: var(--ink); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 28px; }

/* meta / eyebrow text — kaze meta-font: .01em, uppercase used for nav-like labels */
.eyebrow {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

/* ================= announcement bar ================= */
.announce {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: .82rem;
  letter-spacing: .02em;
  padding: 6px 16px;
}
.announce a { color: var(--accent); font-weight: 500; }

/* ================= header / nav ================= */
/* the frosted-glass blur lives on ::before, not .site-header itself — a filter/backdrop-filter
   on an element creates a new containing block for its position:fixed descendants (same as
   transform), which would trap the mobile .nav-links overlay inside the header's own box
   instead of the viewport */
.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--line);
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-bar { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand .kaze-logo { height: 26px; width: auto; display: block; }
/* official KATO AI wordmark (white asset from kaze-consulting.com/kato-ai),
   recoloured to the site's ink-soft grey (#4b5b67) via an exact SVG colour-matrix filter */
.brand .kato-logo {
  height: 15px; width: auto; display: block;
  border-left: 1.5px solid var(--line); padding-left: 16px;
  filter: url(#kato-logo-recolor);
}
.nav-links { display: flex; gap: 34px; align-items: center; list-style: none; }
.nav-links a:not(.btn) {
  /* exact kaze nav spec */
  color: var(--ink); font-weight: 400; font-size: .8rem;
  letter-spacing: .07em; text-transform: uppercase;
  text-decoration: none; transition: color .2s;
}
.nav-links a:not(.btn):hover, .nav-links a.active { color: var(--accent-deep); }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  font-size: 1.6rem; color: var(--ink); line-height: 1; padding: 4px; z-index: 101;
}
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: fixed; top: 62px; left: 0; right: 0; bottom: 0;
    background: #fff; flex-direction: column; align-items: flex-start;
    padding: 32px 28px; gap: 26px; overflow-y: auto; z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { font-size: 1rem; }
  .nav-links .btn { width: 100%; text-align: center; margin-top: 8px; }
  body.nav-open { overflow: hidden; }
}

/* ================= buttons ================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 0;
  font-family: inherit; font-weight: 500; font-size: .88rem; letter-spacing: .01em;
  background: var(--ink); color: #fff; border: 0; cursor: pointer;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.btn:hover { background: #1d2223; text-decoration: none; transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: #04343a; }
.btn-accent:hover { background: #3fd6e3; box-shadow: 0 10px 28px rgba(22, 201, 217, .35); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid #c7cdcd; }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost.on-dark:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-sm { padding: 9px 20px; font-size: .8rem; }
.btn[aria-disabled="true"] {
  background: var(--surface-alt); color: var(--grey);
  border: 1.5px dashed #c7cdcd; cursor: not-allowed;
}
.btn[aria-disabled="true"]:hover { background: var(--surface-alt); color: var(--grey); transform: none; box-shadow: none; }
.arrow-link { font-weight: 500; font-size: .92rem; white-space: nowrap; }
@media (max-width: 480px) { .arrow-link { white-space: normal; } }
.arrow-link::after { content: " →"; transition: margin .2s; }
.arrow-link:hover { text-decoration: none; }
.arrow-link:hover::after { margin-left: 5px; }

/* ================= hero ================= */
.hero {
  position: relative; overflow: hidden;
  padding: 20px 0 0;
  background: #fff;
}
.hero-grid {
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 64px; align-items: stretch;
}
@media (max-width: 860px) { .hero-grid { gap: 28px; } }
@media (max-width: 540px) { .hero-grid { gap: 18px; } }
.hero h1 { margin: 12px 0 16px; color: #4B5B67; }
.hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lede { font-size: 1.16rem; line-height: 1.65; max-width: 560px; margin-bottom: 24px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 14px; font-size: .82rem; color: var(--grey); }
.hero-note strong { color: var(--ink-soft); font-weight: 500; }
.hero-strapline {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; padding: 7px 14px; border-radius: 0;
  background: rgba(0, 161, 191, .08); border: 1px solid rgba(0, 161, 191, .25);
  color: var(--accent-deep); font-size: .78rem; font-weight: 600; letter-spacing: -.01em;
}
.hero-strapline svg { flex-shrink: 0; }
.hero-right { display: flex; flex-direction: column; justify-content: space-between; }
.hero-testimonial {
  margin-top: 10px; padding: 10px 14px; border-left: 3px solid var(--accent-deep);
}
.hero-testimonial p {
  font-size: .82rem; font-style: italic; color: var(--ink-soft); line-height: 1.4; margin: 0 0 4px;
}
.hero-testimonial cite { font-style: normal; font-size: .76rem; color: var(--grey); font-weight: 500; }

/* ================= browser-frame product mockup ================= */
.mock {
  background: #fff; border: 1px solid var(--line); border-radius: 0;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.mock-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px; background: var(--surface-alt);
  border-bottom: 1px solid var(--line);
}
.mock-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: #d9dede; }
.mock-bar .dot:nth-child(1) { background: #f0b0ab; }
.mock-bar .dot:nth-child(2) { background: #f2d6a0; }
.mock-bar .dot:nth-child(3) { background: #a9dfc3; }
.mock-bar .url {
  flex: 1; margin-left: 10px; background: #fff; border: 1px solid var(--line);
  border-radius: 0; padding: 4px 16px; font-size: .72rem; color: var(--grey);
  font-family: ui-monospace, 'SF Mono', monospace; letter-spacing: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mock-body { padding: 20px; }
.embed-frame { width: 100%; height: 720px; border: 0; display: block; }
@media (max-width: 720px) { .embed-frame { height: 480px; } }
.embed-placeholder {
  height: 720px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; text-align: center; padding: 40px;
  background:
    radial-gradient(30rem 20rem at 50% 40%, rgba(22,201,217,.08), transparent 65%),
    var(--surface-alt);
}
.embed-placeholder p { max-width: 360px; font-size: .85rem; color: var(--grey); margin: 0; }
@media (max-width: 720px) { .embed-placeholder { height: 480px; padding: 24px; } }

/* ================= threat intelligence collection diagram ================= */
.threat-map {
  position: relative; height: 560px; border-radius: 0; overflow: hidden;
  background:
    radial-gradient(34rem 22rem at 50% 45%, rgba(22,201,217,.12), transparent 65%),
    radial-gradient(28rem 20rem at 82% 88%, rgba(193,47,191,.09), transparent 60%),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.threat-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.flow-line {
  stroke: var(--accent-deep); stroke-width: .6; fill: none; opacity: .75;
  stroke-dasharray: 3 4; animation: flowdash 1s linear infinite;
}
@keyframes flowdash { to { stroke-dashoffset: -14; } }
.threat-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.threat-center {
  width: 200px; height: 200px; border-radius: 0; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  animation: corepulse 3s ease-in-out infinite;
}
.threat-center img { width: 100%; height: 100%; object-fit: contain; padding: 18px; box-sizing: border-box; display: block; }
@keyframes corepulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(22,201,217,.28), 0 0 22px rgba(22,201,217,.2); }
  50% { box-shadow: 0 0 0 1px rgba(22,201,217,.5), 0 0 40px rgba(22,201,217,.35); }
}
.threat-caption {
  font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: var(--ink-soft);
}
.threat-node {
  position: absolute; transform: translate(-50%, -50%); max-width: 128px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md);
  border-radius: 0; padding: 8px 12px; text-align: center;
  font-size: .72rem; font-weight: 500; color: var(--ink-soft);
}
@media (max-width: 720px) {
  .threat-map { height: 440px; }
  .threat-center { width: 130px; height: 130px; border-radius: 0; }
  .threat-node { font-size: .62rem; max-width: 92px; padding: 6px 8px; }
  /* the two purely-horizontal nodes sit at left:8%/92%, which pushes their ~92px-wide
     boxes past the container edge (clipped by .threat-map's overflow:hidden) at phone
     widths — pull them in so the full box stays visible */
  .threat-node.edge-right { left: 78% !important; }
  .threat-node.edge-left { left: 22% !important; }
}
.mock .m-title {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; font-weight: 500; color: var(--ink); margin-bottom: 14px;
}
.mock .m-title .live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .66rem; font-weight: 500; color: var(--chart-good);
  background: rgba(21,148,114,.09); border-radius: 0; padding: 3px 10px;
}
.mock .m-title .live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--chart-good); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* ================= team cards ================= */
.team-card {
  background: #fff; border: 1px solid var(--line); border-radius: 0; overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: top; display: block; }
.team-body { padding: 22px 24px 26px; }
.team-body h3 { font-size: 1.1rem; margin-bottom: 2px; }
.team-role {
  font-size: .74rem; font-weight: 600; color: var(--accent-deep); text-transform: uppercase;
  letter-spacing: .07em; margin-bottom: 12px;
}
.team-bio { font-size: .87rem; line-height: 1.6; color: var(--ink-soft); }
.team-body h3 .credentials { font-size: .72rem; font-weight: 500; color: var(--grey); }
.team-bio-list { list-style: none; padding: 0; margin: 0; }
.team-bio-list li {
  position: relative; padding-left: 16px; margin-bottom: 9px;
  font-size: .87rem; line-height: 1.55; color: var(--ink-soft);
}
.team-bio-list li:last-child { margin-bottom: 0; }
.team-bio-list li::before { content: "•"; position: absolute; left: 0; color: var(--accent-deep); font-weight: 700; }
.m-tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-bottom: 14px; }
.m-tile {
  border: 1px solid var(--line); border-radius: 0; padding: 10px 12px;
  background: var(--surface-alt);
}
.m-tile .l { font-size: .58rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); }
.m-tile .v { font-size: 1.25rem; font-weight: 500; letter-spacing: -.03em; color: var(--ink); line-height: 1.3; }
.m-tile .d { font-size: .62rem; font-weight: 500; color: var(--chart-good); }
.m-chart { border: 1px solid var(--line); border-radius: 0; padding: 12px; }
.m-chart .c-label { font-size: .68rem; font-weight: 500; color: var(--ink); margin-bottom: 8px; }

/* floating chips on hero mockup */
.mock-wrap { position: relative; margin-top: 40px; }
.float-chip {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: 0; box-shadow: var(--shadow-md);
  padding: 10px 16px; font-size: .74rem; font-weight: 500; color: var(--ink);
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.float-chip .ic { font-size: .95rem; }
.chip-tl { top: -50px; left: -10px; animation: floaty 6s ease-in-out infinite; }
.chip-br { bottom: -18px; right: -14px; animation: floaty 7s ease-in-out 1s infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 1080px) {
  .chip-tl { left: 0; } .chip-br { right: 0; }
}

/* ================= hero brand art ================= */
.hero-art-wrap { display: flex; justify-content: center; }
.hero-art { width: 100%; max-width: 540px; height: auto; display: block; overflow: visible; }
.hero-art text { font-family: 'Poppins', sans-serif; }
@media (max-width: 1080px) { .hero-art { max-width: 440px; } }

/* hero video — kaze isometric cube with layer callouts to the side */
.hero-video-wrap {
  display: grid; grid-template-columns: minmax(0, 1fr) 200px; align-items: stretch;
  width: 100%; max-width: 620px; margin-left: auto; margin-top: 32px;
}
.video-box { overflow: hidden; }
.hero-video { width: 130%; margin-left: -15%; height: auto; display: block; }
.layer-tags { position: relative; }
.layer-tag {
  position: absolute; left: 0; right: 0; transform: translateY(-50%);
  display: flex; align-items: center; gap: 10px;
}
.layer-tag i { width: 24px; height: 1px; background: var(--line); position: relative; flex: none; }
.layer-tag i::before {
  content: ""; position: absolute; left: -3px; top: -3px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--dot, var(--accent));
}
.layer-tag strong { display: block; font-size: .86rem; font-weight: 600; color: var(--ink); line-height: 1.25; }
.layer-tag.highlight i::before { width: 9px; height: 9px; left: -4px; top: -4px; box-shadow: 0 0 0 4px rgba(22,201,217,.18); }
.layer-tag.highlight strong { color: var(--accent-deep); }
.layer-tag small { display: block; font-size: .68rem; color: var(--grey); line-height: 1.35; }
/* keep the video beside the text at every width — shrink, never stack */
@media (max-width: 1080px) {
  .hero-video-wrap { grid-template-columns: minmax(0, 1fr) 160px; }
  .layer-tag strong { font-size: .78rem; }
  .layer-tag small { font-size: .62rem; }
  .layer-tag i { width: 16px; }
}
@media (max-width: 720px) {
  /* autoplay is unreliable at phone sizes (low-power mode etc. can leave a
     stalled frame with a play button) — drop the video rather than risk it */
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-video-wrap { display: none; }
  .hero h1 { font-size: clamp(1.3rem, 5.4vw, 2.2rem); margin: 10px 0 14px; }
  .hero .lede { font-size: .9rem; line-height: 1.5; margin-bottom: 20px; }
  .hero .eyebrow { font-size: .6rem; }
  .hero-note { font-size: .72rem; }
}

/* ================= logo strip ================= */
.logo-strip { margin-top: 36px; padding: 10px 0 18px; border-bottom: 1px solid var(--line); }
.logo-strip .cap {
  text-align: center; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--grey); font-weight: 500; margin-bottom: 14px;
}
.logo-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 8px 12px;
}
.logo-item {
  display: inline-flex; align-items: center; justify-content: center;
  width: 108px; height: 40px; flex: none;
}
.logo-row .logo-img {
  height: 28px; width: auto; max-width: 92px; object-fit: contain;
  filter: grayscale(100%); opacity: .5; transition: opacity .25s ease;
}
.logo-row .logo-img:hover { opacity: .9; }
.logo-row .logo-img[alt="Ministry of Defence"] { height: 40px; }
@media (max-width: 480px) {
  .logo-row { gap: 6px 4px; }
  .logo-item { width: 31.5%; height: 34px; }
  .logo-row .logo-img { height: 22px; max-width: 90%; }
  .logo-row .logo-img[alt="Ministry of Defence"] { height: 30px; }
}

/* ================= sections ================= */
section { padding: 44px 0; }
section.alt { background: var(--surface-alt); }
section.tight { padding: 32px 0; }
.section-head { max-width: 820px; margin-bottom: 36px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { font-size: 1.08rem; }
.grad-rule { height: 3px; width: 84px; background: var(--grad); border: 0; margin: 26px 0 0; }
.center .grad-rule { margin-left: auto; margin-right: auto; }

/* ================= cards / grids ================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
@media (max-width: 940px) { .grid-3, .grid-2 { grid-template-columns: minmax(0, 1fr); } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: 0;
  padding: 38px 32px;
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.cs-image {
  margin: -38px -32px 24px; height: 116px; border-radius: 0;
  overflow: hidden; position: relative;
}
.cs-image svg { width: 100%; height: 100%; display: block; }
@keyframes radarSweep { to { transform: rotate(360deg); } }
.cs-radar-sweep { transform-origin: 150px 58px; animation: radarSweep 4s linear infinite; }
@keyframes csPulse { 0%, 100% { opacity: .4; transform: scale(.9); } 50% { opacity: 1; transform: scale(1.15); } }
.cs-pulse-dot { animation: csPulse 2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.card .num {
  font-size: 2.6rem; font-weight: 500; letter-spacing: -.04em;
  color: var(--accent); line-height: 1; margin-bottom: 16px;
}
.card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.card p { font-size: .95rem; }

/* ================= capability cards ================= */
.cap-card { display: block; text-decoration: none; color: inherit; }
.cap-card:hover { text-decoration: none; }
.cap-title { font-size: 1.7rem; font-weight: 600; letter-spacing: -.03em; margin-bottom: 8px; }
.cap-card p { color: var(--ink-soft); margin-bottom: 16px; }
.cap-card .arrow-link { color: var(--accent-deep); }

.cs-label { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.cs-emblem { display: inline-flex; flex: none; }
.cs-emblem svg { display: block; }
.cs-label-text {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* ================= stats band ================= */
.stat-band {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px;
}
@media (max-width: 940px) { .stat-band { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .stat-band { grid-template-columns: 1fr !important; gap: 28px; } }
.stat { text-align: center; }
.stat .accent-tick {
  display: block; width: 42px; height: 3px; border-radius: 0;
  background: var(--grad); margin: 0 auto 16px;
  transform: scaleX(0); transform-origin: center;
  transition: transform .6s cubic-bezier(.2, .8, .2, 1) .2s;
}
.stat.in .accent-tick { transform: scaleX(1); }
.stat .big {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem); font-weight: 500; letter-spacing: -.04em;
  line-height: 1.1; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat .big em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent-deep);
}
.stat .label { font-size: .9rem; color: var(--ink-soft); margin: 8px auto 0; max-width: 240px; }

/* ================= product cards ================= */
.product-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: 0; overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
  text-decoration: none; color: inherit;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); text-decoration: none; }
.product-card .thumb {
  padding: 26px 26px 0; background:
    radial-gradient(22rem 12rem at 80% -30%, rgba(193,47,191,.08), transparent 60%),
    radial-gradient(22rem 12rem at 10% 120%, rgba(41,226,183,.12), transparent 60%),
    var(--surface-alt);
}
.product-card .thumb .mini {
  background: #fff; border: 1px solid var(--line); border-bottom: 0;
  border-radius: 0; box-shadow: 0 -8px 30px rgba(46,52,53,.06);
  padding: 14px 16px 0; height: 150px; overflow: hidden;
}
.product-card .body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.tag {
  align-self: flex-start; font-size: .68rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent-deep);
  background: rgba(22, 201, 217, .1); padding: 5px 12px; border-radius: 0;
}
.product-card .tag { margin-bottom: 14px; }
.product-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.product-card p { font-size: .93rem; flex: 1; }
.product-card .links { margin-top: 22px; display: flex; gap: 14px; align-items: center; justify-content: space-between; }
.placeholder-pill {
  font-size: .68rem; font-weight: 500; color: var(--grey);
  border: 1px dashed #c2c6c6; border-radius: 0; padding: 3px 12px; white-space: nowrap;
}

/* ================= delivery timeline ================= */
.steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 22px; counter-reset: step; position: relative; }
@media (max-width: 940px) { .steps { grid-template-columns: minmax(0, 1fr); } }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 0;
  padding: 28px 24px;
}
.step::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent); color: #04343a; font-weight: 500;
  margin-bottom: 18px; font-size: 1.05rem;
}
.step:nth-child(2)::before { background: #59e0c4; color: #05392d; }
.step:nth-child(3)::before { background: #7b52d3; color: #fff; }
.step:nth-child(4)::before { background: var(--magenta); color: #fff; }
.step:nth-child(5)::before { background: var(--ink); color: #fff; }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; letter-spacing: -.02em; }
.step p { font-size: .86rem; }

/* ================= dark section (sovereign) ================= */
.dark {
  background:
    radial-gradient(40rem 26rem at 110% 0%, rgba(193, 47, 191, .16), transparent 60%),
    radial-gradient(40rem 28rem at -10% 100%, rgba(41, 226, 183, .14), transparent 60%),
    var(--ink);
  color: #eef2f2;
}
.dark h2, .dark h3, .dark h4 { color: #fff; }
.dark p { color: #b9c2c4; }
.dark .eyebrow { color: var(--accent); }
.dark strong { color: #fff; }
.dark .layer {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 0; padding: 18px 26px;
  transition: background .25s, border-color .25s, transform .25s;
}
.dark .layer:hover { background: rgba(255,255,255,.08); border-color: rgba(22,201,217,.5); transform: translateX(4px); }
.dark .layer strong { display: block; font-weight: 500; margin-bottom: 2px; }
.dark .layer span { font-size: .85rem; color: #9fabad; }
.layer-arrow { text-align: center; color: var(--accent); font-weight: 500; line-height: 1; padding: 6px 0; }
.dark .feature-list li { color: #c4cdcf; }
.dark .feature-list li::before { color: var(--accent); }

/* ================= quote ================= */
.quote-band { text-align: center; }
.quote-band blockquote {
  font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 500; letter-spacing: -.03em;
  line-height: 1.45; color: var(--ink-soft); max-width: 900px; margin: 0 auto 26px;
}
.quote-band blockquote .hl {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.quote-band cite { font-style: normal; font-size: .9rem; color: var(--grey); font-weight: 500; }

/* ================= CTA band ================= */
.cta-band { position: relative; overflow: hidden; padding: 56px 0; text-align: center; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50rem 30rem at 20% 120%, rgba(41, 226, 183, .22), transparent 60%),
    radial-gradient(50rem 30rem at 85% -20%, rgba(193, 47, 191, .2), transparent 60%),
    radial-gradient(36rem 24rem at 60% 60%, rgba(22, 201, 217, .16), transparent 55%),
    var(--surface-alt);
}
.cta-band .container { position: relative; }
.cta-band h2 { max-width: 760px; margin: 0 auto 18px; }
.cta-band p { max-width: 560px; margin: 0 auto 36px; font-size: 1.08rem; }

/* contact email block: plain text, no card - matches kaze-consulting.com/contact */
.contact-email-block {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; max-width: 480px; margin: 0 auto;
}
.contact-email-link {
  font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 600; letter-spacing: -.02em;
  color: var(--accent-deep);
}
.contact-email-link:hover { text-decoration: underline; }
.form-note { margin: 0; font-size: .85rem; color: var(--grey); }
.form-note a { color: var(--accent-deep); }

/* ================= footer ================= */
.site-footer {
  padding: 0; background: var(--surface);
}
.footer-grad { height: 10px; background: var(--grad); }
.footer-inner { padding-top: 44px; padding-bottom: 32px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 44px; margin-bottom: 36px; }
@media (max-width: 940px) { .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px 24px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; } }
.footer-grid a { overflow-wrap: anywhere; }
.site-footer h4 {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 18px; font-weight: 500;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 11px; font-size: .9rem; }
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: var(--accent-deep); }
.footer-meta {
  border-top: 1px solid var(--line); padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: .8rem; color: var(--grey);
}
.certs { display: flex; gap: 20px; flex-wrap: wrap; font-size: .76rem; color: var(--grey); font-weight: 500; letter-spacing: .05em; }
.footer-social { display: inline-flex; align-items: center; color: var(--grey); transition: color .2s ease; }
.footer-social:hover { color: var(--accent-deep); }

/* ================= product sub-nav ================= */
.subnav {
  position: sticky; top: 63px; z-index: 90;
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.subnav .row { display: flex; align-items: center; gap: 30px; height: 56px; overflow-x: auto; }
.subnav .name { font-weight: 500; font-size: .95rem; letter-spacing: -.02em; white-space: nowrap; }
.subnav a:not(.name) {
  font-size: .78rem; letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-soft); white-space: nowrap;
}
.subnav a:hover { color: var(--accent-deep); text-decoration: none; }
.subnav .spacer { flex: 1; }

/* ================= product hero ================= */
.product-hero {
  position: relative; overflow: hidden; padding: 40px 0 44px;
  background:
    radial-gradient(44rem 28rem at 112% -10%, rgba(193, 47, 191, .09), transparent 60%),
    radial-gradient(40rem 26rem at -12% 110%, rgba(41, 226, 183, .12), transparent 60%),
    #fff;
}
.product-hero .crumb { font-size: .8rem; color: var(--grey); margin-bottom: 22px; }
.product-hero .crumb a { color: var(--grey); }
.product-hero h1 { font-size: clamp(2.1rem, 3.8vw, 2.9rem); margin: 18px 0 20px; }
.product-hero .lede { max-width: 560px; font-size: 1.08rem; line-height: 1.65; }
.cs-hero-image { display: flex; align-items: center; justify-content: center; }
.cs-hero-image .frame {
  width: 100%; aspect-ratio: 1 / 1; background-size: cover; background-position: center;
  filter: saturate(.85) brightness(1.05) contrast(.95);
  -webkit-mask-image: radial-gradient(circle at center, #000 40%, transparent 75%);
  mask-image: radial-gradient(circle at center, #000 40%, transparent 75%);
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
/* dark photos (e.g. night cityscapes) don't want the brightness lift - it washes out the sky */
.cs-hero-image .frame.dark { filter: saturate(.92) brightness(1) contrast(1.02); }
@media (max-width: 720px) { .cs-hero-image { margin-top: 24px; } }
.subdomain-note {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 26px;
  background: var(--surface-alt); border: 1px dashed #c2c6c6;
  border-radius: 0; padding: 10px 18px; font-size: .84rem; color: var(--ink-soft);
}
.subdomain-note code {
  font-family: ui-monospace, 'SF Mono', monospace; font-size: .8rem;
  color: var(--accent-deep); font-weight: 600; letter-spacing: 0;
}

.feature-list { list-style: none; }
.feature-list li {
  padding-left: 30px; position: relative; margin-bottom: 14px;
  color: var(--ink-soft); font-size: .96rem;
}
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent-deep); font-weight: 500;
}
.feature-list.cross li::before { content: "✕"; color: var(--chart-critical); }

/* ================= demo / dashboard ================= */
.demo-banner {
  display: flex; align-items: center; gap: 10px;
  background: rgba(193, 47, 191, .06); border: 1px solid rgba(193, 47, 191, .22);
  color: #8a2189; border-radius: 0; padding: 11px 18px;
  font-size: .84rem; font-weight: 500; margin-bottom: 30px;
}
.demo-banner::before { content: "◈"; }

.dash {
  background: #fff; border: 1px solid var(--line); border-radius: 0;
  padding: 38px; box-shadow: var(--shadow-md);
}
@media (max-width: 720px) { .dash { padding: 22px; } }
.dash-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.dash-head h3 { font-size: 1.25rem; letter-spacing: -.03em; }
.dash-filters { display: flex; gap: 8px; }
.chip {
  border: 1px solid var(--line); background: #fff; border-radius: 0;
  padding: 7px 18px; font-family: inherit; font-size: .78rem; font-weight: 500;
  color: var(--ink-soft); cursor: pointer; transition: all .2s;
}
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip:not(.active):hover { border-color: var(--ink-soft); }

.tile-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-bottom: 32px; }
@media (max-width: 940px) { .tile-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.tile {
  border: 1px solid var(--line); border-radius: 0; padding: 20px 22px;
  background: var(--surface-alt); transition: border-color .2s;
}
.tile:hover { border-color: var(--accent); }
.tile .t-label { font-size: .7rem; font-weight: 500; letter-spacing: .11em; text-transform: uppercase; color: var(--grey); overflow-wrap: break-word; }
.tile .t-value { font-size: clamp(1.4rem, 6vw, 2rem); font-weight: 500; letter-spacing: -.03em; color: var(--ink); line-height: 1.25; }
.tile .t-delta { font-size: .78rem; font-weight: 500; }
.t-delta.up { color: var(--chart-good); }
.t-delta.down { color: var(--chart-serious); }

.chart-block { margin-bottom: 8px; }
.chart-block h4 { font-size: 1.05rem; letter-spacing: -.02em; margin-bottom: 4px; }
.chart-block .sub { font-size: .8rem; color: var(--grey); margin-bottom: 16px; }
.chart-svg { width: 100%; height: auto; display: block; }
.chart-svg text { font-family: 'Poppins', sans-serif; letter-spacing: 0; }

.legend { display: flex; gap: 20px; flex-wrap: wrap; margin: 10px 0 4px; font-size: .8rem; color: var(--ink-soft); }
.legend .key { display: inline-flex; align-items: center; gap: 7px; }
.legend .swatch { width: 11px; height: 11px; border-radius: 0; display: inline-block; }

@media (max-width: 640px) {
  .wide-diagram {
    overflow-x: auto;
    -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent);
    mask-image: linear-gradient(90deg, #000 88%, transparent);
  }
  .wide-diagram .chart-svg { width: 600px; max-width: none; }
  .table-scroll {
    -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent);
    mask-image: linear-gradient(90deg, #000 88%, transparent);
  }
  .table-scroll .data-table { min-width: 460px; }
  .pipeline-row { flex-direction: column; align-items: stretch !important; }
  .pipeline-row .tile { width: 100%; min-width: 0 !important; }
  .pipeline-row > span { align-self: center; transform: rotate(90deg); }
}
.data-table { width: 100%; border-collapse: collapse; font-size: .87rem; }
.data-table th {
  text-align: left; font-weight: 500; font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--grey);
  border-bottom: 2px solid var(--line); padding: 10px 12px;
}
.data-table td { padding: 12px; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.data-table tr:hover td { background: var(--surface-alt); }
.data-table .mono { font-variant-numeric: tabular-nums; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 500; padding: 4px 11px; border-radius: 0;
  white-space: nowrap;
}
.badge::before { content: "●"; font-size: .58rem; }
.badge.critical { background: rgba(143, 29, 63, .09); color: var(--chart-critical); }
.badge.serious  { background: rgba(194, 64, 42, .09); color: var(--chart-serious); }
.badge.warn     { background: rgba(176, 106, 0, .11); color: var(--chart-warn); }
.badge.good     { background: rgba(21, 148, 114, .09); color: var(--chart-good); }
.badge.neutral  { background: rgba(75, 91, 103, .09); color: var(--ink-soft); }

/* tooltip */
.tip {
  position: fixed; z-index: 200; pointer-events: none;
  background: var(--ink); color: #fff; font-size: .78rem; font-weight: 400;
  padding: 8px 13px; border-radius: 0; opacity: 0; transition: opacity .12s;
  max-width: 250px; line-height: 1.5; letter-spacing: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.tip strong { font-weight: 500; color: #fff; }

/* ================= scroll reveal ================= */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
  .js .reveal.in { opacity: 1; transform: none; }
  .js .reveal:nth-child(2) { transition-delay: .08s; }
  .js .reveal:nth-child(3) { transition-delay: .16s; }
  .js .reveal:nth-child(4) { transition-delay: .24s; }
  .js .reveal:nth-child(5) { transition-delay: .32s; }
}
