/* ============================================================
   VERITUS — Operational Intelligence
   Ink black · warm bone · sage. Space Grotesk / Inter / Plex Mono.
   ============================================================ */

:root {
  --ink: #0b0b09;
  --coal: #141412;
  --panel: #1a1a17;
  --bone: #f1efe9;
  --bone-2: #e9e7df;
  --white: #f7f6f2;
  --sage: #9fb694;
  --sage-deep: #75936b;
  --sage-dark: #5c7853;
  --mut-d: #8f8f86;   /* muted on dark */
  --mut-l: #6d6d64;   /* muted on light */
  --line-d: rgba(247, 246, 242, 0.1);
  --line-l: rgba(11, 11, 9, 0.12);
  --font-head: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --nav-h: 76px;
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--sage); color: var(--ink); }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
svg { display: block; }

:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 1000;
  background: var(--sage); color: var(--ink);
  padding: 10px 18px; border-radius: 6px; font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

.container { width: min(1240px, 100% - clamp(40px, 8vw, 128px)); margin-inline: auto; }

.section { padding-block: clamp(96px, 11vw, 152px); }
section[id] { scroll-margin-top: 90px; }
.section--light { background: var(--bone); color: var(--ink); }
.section--light.section--alt { background: var(--bone-2); }
.section--dark { background: var(--ink); color: var(--white); }

/* ---------- type ---------- */
.h2 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 21ch;
  text-wrap: balance;
}
.h2 em { font-style: normal; color: var(--sage-deep); }
.section--dark .h2 em { color: var(--sage); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mut-l);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}
.section--dark .eyebrow, .hero .eyebrow { color: var(--mut-d); }
.eyebrow__dot { width: 7px; height: 7px; margin-top: 4px; border-radius: 50%; background: var(--sage); flex: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  border-radius: var(--radius);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
  white-space: nowrap;
}
.btn--solid { background: var(--sage-deep); color: #0d120b; }
.btn--solid:hover { background: var(--sage); transform: translateY(-2px); }
.btn--ghost { border: 1px solid rgba(247, 246, 242, 0.28); color: var(--white); }
.btn--ghost:hover { border-color: var(--sage); color: var(--sage); }
.btn--sm { padding: 11px 20px; font-size: 0.85rem; }
.btn--full { width: 100%; }
.btn__arrow { transition: transform 0.25s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset-inline: 0; top: 0;
  z-index: 100;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(11, 11, 9, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-d);
}
.nav__inner { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 26px; height: 30px; fill: none; flex: none; }
.brand__text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: 0.34em;
  line-height: 1;
  display: flex; flex-direction: column; gap: 4px;
}
.brand__text small {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mut-d);
}

.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mut-d);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: var(--sage);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 16px; }

.nav__toggle { display: none; width: 40px; height: 40px; position: relative; z-index: 210; }
.nav__toggle span {
  position: absolute; left: 8px; width: 24px; height: 2px;
  background: var(--white); transition: transform 0.3s, top 0.3s;
}
.nav__toggle span:nth-child(1) { top: 15px; }
.nav__toggle span:nth-child(2) { top: 23px; }
.nav__toggle.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { top: 19px; transform: rotate(-45deg); }

/* mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--nav-h) + 24px) clamp(24px, 6vw, 48px) 40px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.menu.is-open { opacity: 1; visibility: visible; }
.menu__links { display: flex; flex-direction: column; }
.menu__links a {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-d);
  display: flex; align-items: baseline; gap: 18px;
  transform: translateY(24px); opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s;
}
.menu.is-open .menu__links a { transform: none; opacity: 1; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: 0.05s; }
.menu.is-open .menu__links a:nth-child(3) { transition-delay: 0.1s; }
.menu.is-open .menu__links a:nth-child(4) { transition-delay: 0.15s; }
.menu.is-open .menu__links a:nth-child(5) { transition-delay: 0.2s; }
.menu.is-open .menu__links a:nth-child(6) { transition-delay: 0.25s; }
.menu__links a span { font-family: var(--font-mono); font-size: 0.7rem; color: var(--sage); }
.menu__foot { display: flex; flex-direction: column; gap: 8px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--mut-d); }
.menu__foot a { color: var(--sage); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(48px, 9vh, 110px));
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(159, 182, 148, 0.07), transparent 60%),
    var(--ink);
  overflow: clip;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.8fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: calc(100svh - var(--nav-h) - 170px);
  padding-bottom: clamp(56px, 8vh, 96px);
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.4vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: balance;
  margin-bottom: 26px;
}
.hero__title em { font-style: normal; color: var(--sage); }
.hero__sub { max-width: 54ch; color: var(--mut-d); font-size: clamp(1rem, 1.4vw, 1.13rem); margin-bottom: 36px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero__guarantee {
  display: flex; align-items: flex-start; gap: 10px;
  max-width: 48ch;
  font-size: 0.85rem; color: var(--mut-d);
}
.hero__guarantee svg { width: 17px; height: 19px; color: var(--sage); flex: none; margin-top: 2px; }

.hero__art { position: relative; align-self: stretch; display: flex; align-items: center; justify-content: center; }
.vmark { width: min(100%, 420px); height: auto; }
.vmark path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vmark .draw { stroke: rgba(247, 246, 242, 0.3); stroke-width: 0.3; }
.vmark .draw--sage { stroke: rgba(159, 182, 148, 0.8); stroke-width: 0.18; }

.hero__strip { border-top: 1px solid var(--line-d); }
.strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip__item { padding: 26px clamp(12px, 2vw, 28px) 30px; border-left: 1px solid var(--line-d); }
.strip__item:first-child { border-left: 0; padding-left: 0; }
.strip__item span { font-family: var(--font-mono); font-size: 0.7rem; color: var(--sage); letter-spacing: 0.18em; }
.strip__item h3 {
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; margin: 10px 0 4px;
}
.strip__item p { font-size: 0.85rem; color: var(--mut-d); }

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.ticker { background: var(--bone); color: var(--ink); border-bottom: 1px solid var(--line-l); padding-block: 18px; }
.marquee { overflow: hidden; }
.marquee__track {
  display: flex; align-items: center; gap: 40px;
  width: max-content;
  will-change: transform;
  animation: marquee var(--speed, 34s) linear infinite;
}
.marquee--reverse .marquee__track { animation-direction: reverse; }
.marquee__track span {
  font-family: var(--font-mono);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  white-space: nowrap;
}
.marquee__track i { width: 6px; height: 6px; border-radius: 50%; background: var(--sage-deep); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

.industries__marquees { margin-top: clamp(48px, 6vw, 80px); border-block: 1px solid var(--line-d); padding-block: 8px; }
.marquee--big { padding-block: 14px; }
.marquee--big + .marquee--big { border-top: 1px solid var(--line-d); }
.marquee--big .marquee__track { gap: 56px; }
.marquee--big .marquee__track span {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(247, 246, 242, 0.3);
  transition: color 0.3s;
}
@supports (-webkit-text-stroke: 1px red) {
  .marquee--big .marquee__track span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(247, 246, 242, 0.32);
  }
}
.marquee--big .marquee__track span:hover { color: var(--sage); -webkit-text-stroke-color: transparent; }
.marquee--big .marquee__track i { background: var(--sage); }

/* ============================================================
   FAMILIAR
   ============================================================ */
.familiar__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.symptoms { margin-top: 36px; border-top: 1px solid var(--line-l); }
.symptoms li {
  display: flex; align-items: center; gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-l);
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  font-weight: 500;
}
.symptoms li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage-deep); flex: none;
}
.familiar__note { margin-top: 30px; color: var(--mut-l); max-width: 44ch; }
.familiar__note strong { color: var(--ink); }
.familiar__art svg { width: 100%; height: auto; }

/* ============================================================
   AUDIT
   ============================================================ */
.audit__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(40px, 6vw, 96px);
  margin-top: clamp(40px, 5vw, 64px);
}
.audit__desc > p { color: var(--mut-d); max-width: 58ch; font-size: 1.05rem; }
.checklist { margin-top: 36px; border-top: 1px solid var(--line-d); }
.checklist li {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 0; border-bottom: 1px solid var(--line-d);
  font-weight: 500;
}
.checklist li::before {
  content: "✓";
  width: 22px; height: 22px; flex: none;
  border: 1px solid var(--sage-deep); border-radius: 50%;
  color: var(--sage);
  font-size: 0.7rem; line-height: 21px; text-align: center;
}

.price {
  background: var(--panel);
  border: 1px solid var(--line-d);
  border-radius: 16px;
  padding: clamp(28px, 3.5vw, 44px);
  align-self: start;
  position: sticky; top: calc(var(--nav-h) + 24px);
}
.price__label {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--mut-d);
}
.price__amount {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(2.6rem, 4.5vw, 3.4rem);
  letter-spacing: -0.02em; line-height: 1.1;
  margin-top: 10px;
}
.price__amount span { font-size: 1rem; font-weight: 500; color: var(--mut-d); margin-left: 10px; letter-spacing: 0; }
.price__meta {
  display: flex; align-items: center; gap: 8px;
  margin-top: 8px; color: var(--sage); font-size: 0.9rem; font-weight: 500;
}
.price__meta::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }
.price__guarantee {
  margin: 26px 0; padding: 18px 20px;
  border: 1px solid rgba(159, 182, 148, 0.3);
  border-radius: 10px;
  background: rgba(159, 182, 148, 0.06);
}
.price__guarantee h4 {
  font-family: var(--font-head); font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage);
  margin-bottom: 6px;
}
.price__guarantee p { font-size: 0.85rem; color: var(--mut-d); }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(56px, 7vw, 88px);
  border-top: 1px solid var(--line-d);
}
.stats__item { padding: 28px clamp(12px, 2vw, 28px) 6px; border-left: 1px solid var(--line-d); }
.stats__item:first-child { border-left: 0; padding-left: 0; }
.stats__item strong {
  display: block;
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: -0.02em;
}
.stats__item span {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--mut-d);
}

/* ============================================================
   DELIVERABLES
   ============================================================ */
.deliv__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-l);
  border: 1px solid var(--line-l);
  margin-top: clamp(44px, 5vw, 72px);
}
.deliv__card {
  background: var(--bone);
  padding: clamp(24px, 2.6vw, 36px);
  transition: background 0.3s;
}
.deliv__card:hover { background: var(--bone-2); }
.deliv__num {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em;
  color: var(--sage-dark);
  display: inline-block;
  border: 1px solid var(--sage-deep); border-radius: 50%;
  width: 30px; height: 30px; line-height: 28px; text-align: center;
}
.deliv__card h3 {
  font-family: var(--font-head); font-weight: 600; font-size: 1.25rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin: 20px 0 10px;
}
.deliv__card > p { font-size: 0.88rem; color: var(--mut-l); min-height: 4.2em; }
.deliv__card ul { margin-top: 18px; border-top: 1px solid var(--line-l); }
.deliv__card li {
  font-size: 0.85rem; font-weight: 500;
  padding: 10px 0; border-bottom: 1px solid var(--line-l);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.process__head { position: sticky; top: calc(var(--nav-h) + 40px); }
.process__note { margin-top: 22px; color: var(--mut-l); max-width: 40ch; font-size: 0.95rem; }

.steps { border-top: 1px solid var(--line-l); }
.step {
  display: flex; gap: clamp(20px, 3vw, 40px);
  padding: clamp(24px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--line-l);
}
.step > span {
  font-family: var(--font-mono); font-size: 0.8rem;
  color: var(--sage-dark); letter-spacing: 0.1em;
  padding-top: 6px; flex: none;
}
.step h3 {
  font-family: var(--font-head); font-weight: 600; font-size: 1.15rem;
  text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 6px;
}
.step p { color: var(--mut-l); font-size: 0.95rem; max-width: 48ch; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries .h2 { max-width: 26ch; }
.industries__sub { margin-top: 24px; color: var(--mut-d); font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em; }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder__quote { max-width: 900px; }
.founder__quote p {
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.28; letter-spacing: -0.01em;
  text-wrap: balance;
}
.founder__quote footer { margin-top: 30px; display: flex; flex-direction: column; gap: 2px; }
.founder__quote strong { font-family: var(--font-head); font-size: 1rem; }
.founder__quote footer span { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mut-l); }
/* ============================================================
   FAQ
   ============================================================ */
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.faq__head { position: sticky; top: calc(var(--nav-h) + 40px); }
.faq__list { border-top: 1px solid var(--line-l); }
.qa { border-bottom: 1px solid var(--line-l); }
.qa__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: clamp(1rem, 1.5vw, 1.15rem);
  transition: color 0.2s;
}
.qa__q:hover { color: var(--sage-dark); }
.qa__icon { position: relative; width: 16px; height: 16px; flex: none; }
.qa__icon::before, .qa__icon::after {
  content: ""; position: absolute; background: currentColor;
  transition: transform 0.3s;
}
.qa__icon::before { left: 0; top: 7px; width: 16px; height: 2px; }
.qa__icon::after { left: 7px; top: 0; width: 2px; height: 16px; }
.qa.is-open .qa__icon::after { transform: scaleY(0); }
.qa__a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.qa__body { padding: 0 0 24px; color: var(--mut-l); max-width: 62ch; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { position: relative; }
.contact__title { max-width: 24ch; }
.contact__sub { margin-top: 24px; color: var(--mut-d); max-width: 56ch; }
.contact__cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(44px, 5vw, 68px);
}
.ccard {
  position: relative;
  display: flex; flex-direction: column; gap: 8px;
  padding: clamp(24px, 2.6vw, 36px);
  border: 1px solid var(--line-d);
  border-radius: 14px;
  background: var(--coal);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.ccard:hover { border-color: var(--sage-deep); transform: translateY(-4px); }
.ccard--wa { background: rgba(159, 182, 148, 0.08); border-color: rgba(159, 182, 148, 0.35); }
.ccard__label {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage);
}
.ccard__value {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  overflow-wrap: anywhere;
}
.ccard__note { font-size: 0.83rem; color: var(--mut-d); }
.ccard__arrow {
  position: absolute; top: 24px; right: 26px;
  color: var(--sage); font-size: 1.1rem;
  transition: transform 0.3s;
}
.ccard:hover .ccard__arrow { transform: translate(4px, -4px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #080807; border-top: 1px solid var(--line-d); padding-top: clamp(56px, 7vw, 88px); }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}
.footer__brand p { margin-top: 20px; color: var(--mut-d); font-size: 0.92rem; max-width: 34ch; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--mut-d);
  margin-bottom: 8px;
}
.footer__col a { font-size: 0.92rem; color: rgba(247, 246, 242, 0.75); transition: color 0.2s; width: fit-content; }
.footer__col a:hover { color: var(--sage); }
.footer__col p { font-size: 0.85rem; color: var(--mut-d); }
.footer__legal {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line-d);
  padding-block: 26px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em;
  color: var(--mut-d);
}
.footer__top { color: var(--mut-d); transition: color 0.2s; }
.footer__top:hover { color: var(--sage); }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mcta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  display: none;
  align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(20, 20, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-d);
  border-radius: 14px;
  padding: 10px 10px 10px 16px;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mcta.is-visible { transform: none; }
.mcta__text { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; color: var(--mut-d); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; min-height: 0; }
  .hero__art { display: none; }
  .familiar__grid { grid-template-columns: 1fr; }
  .familiar__art { max-width: 560px; }
  .audit__grid { grid-template-columns: 1fr; }
  .price { position: static; }
  .deliv__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid, .faq__grid { grid-template-columns: 1fr; }
  .process__head, .faq__head { position: static; }
  .contact__cards { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__right .btn { display: none; }
  .nav__toggle { display: block; }
  .strip__grid, .stats { grid-template-columns: repeat(2, 1fr); }
  .strip__item:nth-child(odd), .stats__item:nth-child(odd) { border-left: 0; padding-left: 0; }
  .strip__item, .stats__item { border-left: 1px solid var(--line-d); }
  .strip__item:nth-child(n+3) { border-top: 1px solid var(--line-d); }
  .stats__item:nth-child(n+3) { border-top: 1px solid var(--line-d); padding-bottom: 24px; }
  .deliv__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .mcta { display: flex; }
  body { padding-bottom: 84px; }
}

/* Reduced motion: skip scroll effects (handled in JS) but keep the site fully
   visible and the slow decorative marquees running. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
