/* ============================================================
   Kino AI — styles.css
   Dark editorial tech aesthetic. Single accent (clay #D97757).
   Sharp edges (industrial). Geist + Geist Mono, self-hosted.
   ============================================================ */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: "Geist";
  src: url("fonts/geist-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("fonts/geist-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("fonts/geist-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("fonts/geist-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("fonts/geist-mono-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("fonts/geist-mono-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  /* surfaces (warm-neutral dark, harmonised with clay accent) */
  --bg: #0a0a0b;
  --bg-1: #0e0e10;
  --bg-2: #131316;
  --bg-3: #18181c;

  /* text */
  --text: #f5f5f4;
  --text-mute: #a8a29e;
  --text-dim: #6c6864;

  /* single accent — locked across whole page */
  --accent: #d97757;
  --accent-soft: rgba(217, 119, 87, 0.12);
  --accent-line: rgba(217, 119, 87, 0.32);

  /* hairlines */
  --border: rgba(245, 245, 244, 0.08);
  --border-2: rgba(245, 245, 244, 0.14);

  /* type */
  --sans: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* shape — sharp industrial system (0 radius everywhere except
     the logo mark / network nodes, which are geometric marks) */
  --radius: 0px;

  /* layout */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --nav-h: 68px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
::selection {
  background: var(--accent);
  color: #0a0a0b;
}

/* anchor offset for fixed nav */
section[id],
[id] {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.accent {
  color: var(--accent);
}

/* ---------- Film grain (fixed, pointer-events none) ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}
.nav.is-scrolled {
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

/* logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
}
.logo__mark {
  color: var(--accent);
  display: inline-flex;
}
.logo__text {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.logo__dot {
  color: var(--accent);
}

/* nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links > a {
  font-size: 0.92rem;
  color: var(--text-mute);
  transition: color 0.2s ease;
  position: relative;
}
.nav__links > a:not(.btn):hover {
  color: var(--text);
}

/* mobile toggle */
.nav__toggle {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__toggle span:nth-child(1) {
  top: 2px;
}
.nav__toggle span:nth-child(2) {
  top: 10px;
}
.nav__toggle span:nth-child(3) {
  top: 18px;
}
.nav.is-open .nav__toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav.is-open .nav__toggle span:nth-child(2) {
  opacity: 0;
}
.nav.is-open .nav__toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.3rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0;
  line-height: 1;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease,
    border-color 0.22s ease, transform 0.12s ease;
  white-space: nowrap;
}
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.86rem;
}
.btn--primary {
  --btn-bg: var(--accent);
  --btn-fg: #0a0a0b;
  font-weight: 600;
}
.btn--primary:hover {
  background: #e08a6c;
}
.btn--ghost {
  border-color: var(--border-2);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--text-mute);
  background: rgba(245, 245, 244, 0.03);
}
.btn:active {
  transform: translateY(1px);
}
.nav__cta {
  white-space: nowrap;
}

/* ============================================================
   HERO — left-aligned text + right-side abstract node network
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 5rem;
  overflow: hidden;
}

/* right-side network visual */
.hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  max-width: 760px;
  pointer-events: none;
  z-index: 0;
}
.hero__svg {
  width: 100%;
  height: 100%;
  opacity: 0.95;
}
/* fade the visual into bg on the text side */
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    rgba(10, 10, 11, 0.55) 30%,
    rgba(10, 10, 11, 0) 55%
  );
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 80% at 100% 50%,
    transparent 40%,
    rgba(10, 10, 11, 0.55) 100%
  );
}

/* pulsing nodes — subtle, motivated (implies live agent activity) */
.hero__pulse {
  transform-origin: center;
  transform-box: fill-box;
  animation: pulse 3.2s ease-in-out infinite;
}
.hero__pulse--slow {
  animation-duration: 4.6s;
  animation-delay: 0.8s;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

/* hero content */
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero__title {
  font-weight: 600;
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 1.6rem;
}
.hero__sub {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--text-mute);
  line-height: 1.7;
  max-width: 46ch;
  margin-bottom: 2.4rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ============================================================
   TRUST STRIP — thin full-bleed band
   ============================================================ */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}
.trust__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-block: 1.5rem;
}
.trust__note {
  font-size: 0.85rem;
  color: var(--text-dim);
}
.trust__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.trust__list li {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-mute);
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--border);
}

/* ============================================================
   FDE NARRATIVE — editorial, stacked (not split-header)
   ============================================================ */
.fde {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}
.fde__head {
  max-width: 18ch;
  margin-bottom: 2.5rem;
}
.fde__body {
  max-width: 62ch;
  color: var(--text-mute);
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
}
.fde__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}
.fde__num {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}
.fde__step-title {
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.fde__steps li p {
  color: var(--text-mute);
  font-size: 0.94rem;
}

/* ---------- shared section heads ---------- */
.section-head {
  margin-bottom: 3rem;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--accent);
  margin-right: 0.7rem;
}
.section-title {
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.section-note {
  margin-top: 0.9rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ============================================================
   CAPABILITIES — bento (4/2 split, diagonal rhythm)
   ============================================================ */
.capabilities {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  background: var(--bg);
}
/* connected grid with hairline dividers instead of floating cards */
.caps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.cap {
  grid-column: span 2;
  background: var(--bg);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
}
.cap--lg {
  grid-column: span 4;
  padding: 2.6rem 2.4rem;
}
.cap__icon {
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.cap h3 {
  font-weight: 500;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.7rem;
}
.cap--lg h3 {
  font-size: 1.45rem;
}
.cap p {
  color: var(--text-mute);
  font-size: 0.96rem;
}
.cap--lg p {
  font-size: 1.02rem;
  max-width: 52ch;
}
.cap__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.6rem;
}
.cap__tags li {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--text-mute);
  padding: 0.32rem 0.6rem;
  border: 1px solid var(--border-2);
}

/* ============================================================
   CASES — vertical narrative blocks
   ============================================================ */
.cases {
  padding-block: clamp(5rem, 10vw, 8.5rem);
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.case {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  padding-block: 2.8rem;
  border-top: 1px solid var(--border);
}
.case:first-of-type {
  border-top: none;
}
.case__meta {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  align-self: start;
}
.case__num {
  font-family: var(--mono);
  font-size: 0.92rem;
  color: var(--text-dim);
  display: block;
  margin-bottom: 0.7rem;
}
.case__industry {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--text-mute);
  display: block;
  line-height: 1.5;
}
/* accent variant — coloured index + faint accent left edge */
.case--accent .case__num {
  color: var(--accent);
}
.case--accent {
  border-left: 2px solid var(--accent-line);
  padding-left: 2rem;
  margin-left: -2rem;
}
.case__body {
  min-width: 0;
}
.case__client {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1.6rem;
}
.case__lead {
  margin-bottom: 1.8rem;
}
.case__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.case__grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.case__field {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.case__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.6rem;
}
.case__field p {
  font-size: 0.94rem;
  color: var(--text-mute);
  line-height: 1.6;
}
.case__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.8rem;
}
.case__stack li {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--text-mute);
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--border-2);
}

/* ============================================================
   WHY US — large index numbers, vertical
   ============================================================ */
.why {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}
.why .section-title {
  margin-bottom: 3rem;
}
.why__list {
  display: grid;
  grid-template-columns: 1fr;
}
.why__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  align-items: baseline;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.why__item:last-child {
  border-bottom: 1px solid var(--border);
}
.why__num {
  font-family: var(--mono);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.why__content h3 {
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.why__content p {
  color: var(--text-mute);
  font-size: 0.98rem;
  max-width: 56ch;
}

/* ============================================================
   CONTACT — climactic statement + single email
   ============================================================ */
.contact {
  padding-block: clamp(5.5rem, 12vw, 9.5rem);
  text-align: center;
  border-top: 1px solid var(--border);
  background: radial-gradient(
    90% 60% at 50% 0%,
    var(--accent-soft) 0%,
    transparent 60%
  );
}
.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__title {
  font-weight: 500;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}
.contact__sub {
  color: var(--text-mute);
  font-size: 1.05rem;
  max-width: 40ch;
  margin-bottom: 2.6rem;
}
.contact__email {
  font-family: var(--mono);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--accent);
  padding: 0.9rem 1.8rem;
  border: 1px solid var(--accent-line);
  margin-bottom: 3rem;
  transition: background 0.22s ease, border-color 0.22s ease;
}
.contact__email:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}
.contact__phone {
  font-family: var(--mono);
  font-size: 0.95rem;
  margin: -1.8rem 0 3rem;
}
.contact__phone a {
  color: var(--text-mute);
  transition: color 0.2s ease;
}
.contact__phone a:hover {
  color: var(--accent);
}
.contact__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 2rem;
}
.contact__steps li {
  font-size: 0.9rem;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.contact__steps li span {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent);
}

/* ============================================================
   ABOUT — company & legal info
   ============================================================ */
.about {
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
  border-top: 1px solid var(--border);
}
.about__body {
  max-width: 68ch;
  margin-bottom: 3rem;
}
.about__body p {
  color: var(--text-mute);
  font-size: 1.02rem;
  line-height: 1.75;
}
.about__body p + p {
  margin-top: 1rem;
}
.about__en {
  font-size: 0.9rem !important;
  color: var(--text-dim) !important;
}
.about__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.about__fact {
  background: var(--bg);
  padding: 1.4rem 1.5rem;
}
.about__fact dt {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}
.about__fact dd {
  font-size: 0.92rem;
  color: var(--text-mute);
  line-height: 1.7;
}
.about__fact dd a {
  color: var(--text-mute);
  transition: color 0.2s ease;
}
.about__fact dd a:hover {
  color: var(--accent);
}
.about__fact--wide {
  grid-column: 1 / -1;
}
@media (max-width: 720px) {
  .about__facts {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding-top: 2.5rem;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-bottom: 2.5rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
}
.footer__company {
  font-size: 0.85rem;
  color: var(--text-dim);
}
.footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
}
.footer__email {
  font-family: var(--mono);
  font-size: 0.88rem;
  color: var(--text-mute);
  transition: color 0.2s ease;
}
.footer__email:hover {
  color: var(--accent);
}
.footer__copy {
  border-top: 1px solid var(--border);
  padding-block: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
}
.footer__copy span {
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--text-dim);
}
.footer__icp {
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.footer__icp:hover {
  color: var(--accent);
}

/* ============================================================
   REVEAL — scroll-in (progressively enhanced only with JS)
   ============================================================ */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.js .reveal[data-delay="1"] {
  transition-delay: 0.08s;
}
.js .reveal[data-delay="2"] {
  transition-delay: 0.16s;
}
.js .reveal[data-delay="3"] {
  transition-delay: 0.24s;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE — < 768px
   ============================================================ */
@media (max-width: 900px) {
  .case {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .case__meta {
    position: static;
    display: flex;
    align-items: baseline;
    gap: 0.9rem;
  }
  .case__num {
    margin-bottom: 0;
  }
  .case--accent {
    margin-left: 0;
    padding-left: 1.2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  /* nav collapses to hamburger */
  .nav__toggle {
    display: block;
  }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(10, 10, 11, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem var(--gutter) 1.6rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }
  .nav.is-open .nav__links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links > a {
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .nav__links > a:last-child {
    border-bottom: none;
    margin-top: 0.8rem;
    width: auto;
  }

  /* hero — visual becomes faint full-width backdrop */
  .hero {
    padding-top: calc(var(--nav-h) + 2.5rem);
  }
  .hero__visual {
    width: 130%;
    max-width: none;
    opacity: 0.4;
  }
  .hero__inner {
    max-width: 100%;
  }
  .hero__cta .btn {
    flex: 1 1 auto;
  }

  /* trust stack */
  .trust__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* fde steps collapse */
  .fde__steps {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  /* capabilities bento → stacked */
  .caps {
    grid-template-columns: 1fr;
  }
  .cap,
  .cap--lg {
    grid-column: span 1;
  }

  /* case grids collapse */
  .case__grid,
  .case__grid--2 {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  /* why us */
  .why__item {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .why__num {
    font-size: 1.3rem;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__pulse {
    animation: none !important;
  }
}
