/* Scroll lock when preloader is active */
html.pl-active, html.pl-active body { overflow: hidden !important; height: 100vh; }

/* =========================================================
   PRELOADER v4 — Professional motion design
   4-corner mosquito attack · center window with pleated mesh
   sliding shutters · welcome reveal · 3D perspective
   ========================================================= */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background:
    radial-gradient(ellipse at 50% 50%, #102820 0%, #06120e 55%, #020608 100%);
  display: grid; place-items: center;
  overflow: hidden;
  cursor: pointer;
  perspective: 1400px;
  perspective-origin: 50% 50%;
  animation: pl-out 1s cubic-bezier(.6,.05,.3,1) 6.2s forwards;
}
.preloader.is-dismissed { animation: pl-out .55s ease forwards; }
.preloader.is-gone { display: none !important; }
@keyframes pl-out {
  0%   { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* Atmospheric color hints */
.preloader::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(200,214,163,.04), transparent 38%),
    radial-gradient(circle at 82% 75%, rgba(220,185,120,.04), transparent 38%);
  pointer-events: none;
}

/* Vignette */
.preloader::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.pl-stage {
  position: relative;
  width: min(94vw, 900px);
  height: min(70vh, 620px);
  transform-style: preserve-3d;
  z-index: 2;
}

/* =========================================================
   WINDOW — center stage with pleated mesh + sliding shutters
   ========================================================= */
.pl-window {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(.55) rotateX(8deg);
  width: clamp(260px, 36vw, 440px);
  aspect-ratio: 5/6;
  opacity: 0;
  transform-style: preserve-3d;
  z-index: 5;
  animation:
    pl-window-in 1.1s cubic-bezier(.2,.7,.2,1) .35s forwards,
    pl-window-out .9s cubic-bezier(.5,0,.7,.3) 3.6s forwards;
}
@keyframes pl-window-in {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(.55) rotateX(8deg); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1) rotateX(2deg); }
}
@keyframes pl-window-out {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(1) rotateX(2deg); filter: blur(0); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(.85) rotateX(2deg); filter: blur(8px); }
}

/* Window frame & mesh */
.pl-window-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(200,214,163,.55);
  border-radius: 4px;
  background: linear-gradient(135deg, #06120e 0%, #0a1812 100%);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,.6),
    inset 0 0 80px rgba(0,0,0,.4),
    0 0 0 8px rgba(200,214,163,.05);
  overflow: hidden;
}

/* Window cross mullions */
.pl-window-frame::before,
.pl-window-frame::after {
  content: "";
  position: absolute;
  background: rgba(200,214,163,.25);
  z-index: 3;
}
.pl-window-frame::before {
  /* horizontal mullion */
  left: 0; right: 0; top: 50%;
  height: 1.5px;
  transform: translateY(-50%);
}
.pl-window-frame::after {
  /* vertical mullion */
  top: 0; bottom: 0; left: 50%;
  width: 1.5px;
  transform: translateX(-50%);
}

/* Pleated fly mesh — the actual barrier */
.pl-mesh-pattern {
  position: absolute;
  inset: 6px;
  background-color: rgba(10,24,18,.4);
  background-image:
    /* Fine mesh weave */
    linear-gradient(rgba(200,214,163,.22) .5px, transparent .5px),
    linear-gradient(90deg, rgba(200,214,163,.22) .5px, transparent .5px),
    /* Vertical pleats (lighter) */
    repeating-linear-gradient(90deg,
      transparent 0,
      transparent 18px,
      rgba(0,0,0,.25) 19px,
      rgba(0,0,0,.25) 20px,
      transparent 21px,
      transparent 39px),
    /* Inner glow */
    radial-gradient(ellipse at center, rgba(200,214,163,.08) 0%, transparent 70%);
  background-size: 5px 5px, 5px 5px, 100% 100%, 100% 100%;
  opacity: 0;
  animation: pl-mesh-reveal .8s ease 1.1s forwards;
  z-index: 1;
}
@keyframes pl-mesh-reveal {
  to { opacity: 1; }
}

/* Sliding shutters — start closed, open to reveal mesh */
.pl-shutter {
  position: absolute;
  top: 6px; bottom: 6px;
  width: 50%;
  background: linear-gradient(135deg, #1c3328 0%, #0a1812 100%);
  border: 1px solid rgba(200,214,163,.3);
  box-shadow: inset 0 0 30px rgba(0,0,0,.5);
  z-index: 2;
  will-change: transform;
}
.pl-shutter.left  {
  left: 6px;
  border-right: 1px solid rgba(200,214,163,.4);
  animation: pl-shutter-left 1.1s cubic-bezier(.6,0,.3,1) .85s forwards;
}
.pl-shutter.right {
  right: 6px;
  border-left: 1px solid rgba(200,214,163,.4);
  animation: pl-shutter-right 1.1s cubic-bezier(.6,0,.3,1) .85s forwards;
}
@keyframes pl-shutter-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@keyframes pl-shutter-right {
  0%   { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* Shutter handle/grip detail */
.pl-shutter::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px; height: 30px;
  background: rgba(200,214,163,.4);
  border-radius: 2px;
  transform: translateY(-50%);
}
.pl-shutter.left::after  { right: 8px; }
.pl-shutter.right::after { left: 8px; }

/* Window shake on impact */
.pl-window.is-hit { animation: pl-window-shake .6s cubic-bezier(.36,.07,.19,.97) 2.4s; }
@keyframes pl-window-shake {
  0%, 100% { transform: translate(-50%, -50%) scale(1) rotateX(2deg) translateX(0); }
  20% { transform: translate(-50%, -50%) scale(1) rotateX(2deg) translateX(-3px); }
  40% { transform: translate(-50%, -50%) scale(1) rotateX(2deg) translateX(3px); }
  60% { transform: translate(-50%, -50%) scale(1) rotateX(2deg) translateX(-2px); }
  80% { transform: translate(-50%, -50%) scale(1) rotateX(2deg) translateX(1px); }
}

/* =========================================================
   IMPACT RIPPLES — 4 ripples on mesh, one per mosquito
   ========================================================= */
.pl-ripple {
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid rgba(200,214,163,.85);
  border-radius: 50%;
  opacity: 0;
  z-index: 6;
  pointer-events: none;
  transform-origin: center;
}
.pl-ripple.r1 { top: 28%; left: 32%; animation: pl-ripple 1.1s cubic-bezier(.22,.7,.2,1) 2.35s forwards; }
.pl-ripple.r2 { top: 30%; right: 32%; animation: pl-ripple 1.1s cubic-bezier(.22,.7,.2,1) 2.55s forwards; }
.pl-ripple.r3 { bottom: 28%; left: 32%; animation: pl-ripple 1.1s cubic-bezier(.22,.7,.2,1) 2.75s forwards; }
.pl-ripple.r4 { bottom: 30%; right: 32%; animation: pl-ripple 1.1s cubic-bezier(.22,.7,.2,1) 2.95s forwards; }
@keyframes pl-ripple {
  0%   { opacity: 0; transform: scale(0); border-width: 3px; }
  20%  { opacity: 1; }
  100% { opacity: 0; transform: scale(8); border-width: .3px; }
}

/* Impact flashes — burst of light at impact moment */
.pl-flash {
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,214,163,.95) 0%, rgba(200,214,163,.4) 40%, transparent 70%);
  filter: blur(4px);
  opacity: 0;
  z-index: 6;
  pointer-events: none;
}
.pl-flash.f1 { top: 28%; left: 32%; animation: pl-flash .5s ease-out 2.3s forwards; }
.pl-flash.f2 { top: 30%; right: 32%; animation: pl-flash .5s ease-out 2.5s forwards; }
.pl-flash.f3 { bottom: 28%; left: 32%; animation: pl-flash .5s ease-out 2.7s forwards; }
.pl-flash.f4 { bottom: 30%; right: 32%; animation: pl-flash .5s ease-out 2.9s forwards; }
@keyframes pl-flash {
  0%   { opacity: 0; transform: scale(.4); }
  30%  { opacity: 1; transform: scale(2.4); }
  100% { opacity: 0; transform: scale(4); }
}

/* =========================================================
   MOSQUITOES — from 4 corners, converging on window
   ========================================================= */
.pl-mosquitoes {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 7;
}
.pl-mosq {
  position: absolute;
  width: clamp(32px, 4.2vw, 50px);
  aspect-ratio: 5/2;
  opacity: 0;
  will-change: transform, opacity;
  transform-origin: 30% 50%;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
}
.pl-mosq svg { width: 100%; height: 100%; display: block; }

/* Motion trail */
.pl-mosq::after {
  content: "";
  position: absolute;
  top: 50%; right: 100%;
  width: clamp(35px, 5vw, 55px); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35));
  transform: translateY(-50%);
  border-radius: 999px;
}

/* Wing flap */
.pl-wing {
  transform-origin: 22px 5px;
  animation: pl-wing-flap .065s cubic-bezier(.4,0,.6,1) infinite;
}
.pl-wing.w2 {
  transform-origin: 24px 4px;
  animation-delay: .032s;
}
@keyframes pl-wing-flap {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(.18); }
}

/* === 4 mosquito flight paths — each from a corner === */
/* All converge toward center of viewport (where window is) */

/* Top-Left → bottom-right diagonal toward center */
.pl-mosq.tl {
  top: 8%; left: 6%;
  animation:
    pl-mosq-appear .35s ease-out 1.4s forwards,
    pl-tl-path 1.3s cubic-bezier(.45,.05,.55,.95) 1.4s forwards;
}
@keyframes pl-tl-path {
  0%   { transform: translate(0, 0) rotate(35deg) scale(.5); }
  25%  { transform: translate(8vw, 6vh) rotate(38deg) scale(.7); }
  55%  { transform: translate(18vw, 14vh) rotate(42deg) scale(.95); }
  82%  { transform: translate(30vw, 24vh) rotate(48deg) scale(1.1); }
  90%  { transform: translate(32vw, 25.5vh) rotate(54deg) scale(1.12); opacity: 1; }
  95%  { transform: translate(32.5vw, 26vh) rotate(80deg) scale(1.0); opacity: 1; }
  100% { transform: translate(28vw, 32vh) rotate(140deg) scale(.4); opacity: 0; }
}

/* Top-Right → bottom-left diagonal toward center */
.pl-mosq.tr {
  top: 8%; right: 6%;
  animation:
    pl-mosq-appear .35s ease-out 1.6s forwards,
    pl-tr-path 1.3s cubic-bezier(.45,.05,.55,.95) 1.6s forwards;
}
@keyframes pl-tr-path {
  0%   { transform: translate(0, 0) rotate(145deg) scale(.5); }
  25%  { transform: translate(-8vw, 6vh) rotate(142deg) scale(.7); }
  55%  { transform: translate(-18vw, 14vh) rotate(138deg) scale(.95); }
  82%  { transform: translate(-30vw, 24vh) rotate(132deg) scale(1.1); }
  90%  { transform: translate(-32vw, 25.5vh) rotate(126deg) scale(1.12); opacity: 1; }
  95%  { transform: translate(-32.5vw, 26vh) rotate(100deg) scale(1.0); opacity: 1; }
  100% { transform: translate(-28vw, 32vh) rotate(40deg) scale(.4); opacity: 0; }
}

/* Bottom-Left → top-right diagonal toward center */
.pl-mosq.bl {
  bottom: 8%; left: 6%;
  animation:
    pl-mosq-appear .35s ease-out 1.8s forwards,
    pl-bl-path 1.3s cubic-bezier(.45,.05,.55,.95) 1.8s forwards;
}
@keyframes pl-bl-path {
  0%   { transform: translate(0, 0) rotate(-35deg) scale(.5); }
  25%  { transform: translate(8vw, -6vh) rotate(-38deg) scale(.7); }
  55%  { transform: translate(18vw, -14vh) rotate(-42deg) scale(.95); }
  82%  { transform: translate(30vw, -24vh) rotate(-48deg) scale(1.1); }
  90%  { transform: translate(32vw, -25.5vh) rotate(-54deg) scale(1.12); opacity: 1; }
  95%  { transform: translate(32.5vw, -26vh) rotate(-80deg) scale(1.0); opacity: 1; }
  100% { transform: translate(28vw, -32vh) rotate(-140deg) scale(.4); opacity: 0; }
}

/* Bottom-Right → top-left diagonal toward center */
.pl-mosq.br {
  bottom: 8%; right: 6%;
  animation:
    pl-mosq-appear .35s ease-out 2.0s forwards,
    pl-br-path 1.3s cubic-bezier(.45,.05,.55,.95) 2.0s forwards;
}
@keyframes pl-br-path {
  0%   { transform: translate(0, 0) rotate(-145deg) scale(.5); }
  25%  { transform: translate(-8vw, -6vh) rotate(-142deg) scale(.7); }
  55%  { transform: translate(-18vw, -14vh) rotate(-138deg) scale(.95); }
  82%  { transform: translate(-30vw, -24vh) rotate(-132deg) scale(1.1); }
  90%  { transform: translate(-32vw, -25.5vh) rotate(-126deg) scale(1.12); opacity: 1; }
  95%  { transform: translate(-32.5vw, -26vh) rotate(-100deg) scale(1.0); opacity: 1; }
  100% { transform: translate(-28vw, -32vh) rotate(-40deg) scale(.4); opacity: 0; }
}

@keyframes pl-mosq-appear {
  to { opacity: .92; }
}

/* =========================================================
   WELCOME SCREEN — fades in as window fades out
   ========================================================= */
.pl-welcome {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-align: center;
  pointer-events: none;
  z-index: 8;
  opacity: 0;
  animation: pl-welcome-in 1s ease 4.0s forwards;
}
@keyframes pl-welcome-in {
  to { opacity: 1; }
}

/* Soft glow behind welcome */
.pl-welcome::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(320px, 42vw, 540px);
  height: clamp(160px, 20vw, 280px);
  border-radius: 50%;
  background: radial-gradient(ellipse,
    rgba(220,185,120,.18) 0%,
    rgba(200,214,163,.08) 35%,
    transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(20px);
  z-index: -1;
}

.pl-welcome-eyebrow {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  color: rgba(220,185,120,.95);
  font-size: clamp(.95rem, 1.5vw, 1.25rem);
  letter-spacing: .18em;
  display: block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(15px);
  animation: pl-text-rise .9s cubic-bezier(.2,.7,.18,1) 4.1s forwards;
}
.pl-welcome-name {
  font-family: "Inter", sans-serif;
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
  display: block;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
  animation: pl-text-rise 1.1s cubic-bezier(.18,.7,.18,1) 4.35s forwards;
  text-shadow: 0 0 80px rgba(220,185,120,.35);
}
.pl-welcome-name em {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: rgba(200,214,163,1);
  letter-spacing: -.025em;
}
.pl-welcome-divider {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220,185,120,.6), transparent);
  margin: .4rem 0 .2rem;
  animation: pl-divider-grow 1.2s cubic-bezier(.22,.7,.2,1) 4.7s forwards;
}
@keyframes pl-divider-grow {
  0%   { width: 0; }
  100% { width: clamp(140px, 20vw, 240px); }
}
.pl-welcome-tagline {
  font-family: "Inter", sans-serif;
  color: rgba(255,255,255,.6);
  font-size: clamp(.7rem, .95vw, .82rem);
  letter-spacing: .28em;
  text-transform: uppercase;
  display: block;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(12px);
  animation: pl-text-rise .9s cubic-bezier(.2,.7,.18,1) 4.95s forwards;
}
@keyframes pl-text-rise {
  0%   { opacity: 0; transform: translateY(20px); filter: blur(10px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Progress bar (bottom of viewport) -------------------- */
.pl-progress {
  position: fixed;
  left: 50%; bottom: clamp(2rem, 6vh, 3.5rem);
  transform: translateX(-50%);
  width: clamp(180px, 26vw, 280px);
  height: 1.5px;
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  overflow: hidden;
  z-index: 10;
}
.pl-progress-bar {
  position: absolute;
  top: 0; left: -30%;
  width: 30%; height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(220,185,120,.8) 40%,
    rgba(200,214,163,1) 50%,
    rgba(220,185,120,.8) 60%,
    transparent);
  animation: pl-progress-slide 6.2s cubic-bezier(.4,.2,.6,1) 0s forwards;
}
@keyframes pl-progress-slide {
  0%   { left: -30%; }
  100% { left: 100%; }
}

/* Skip hint -------------------------------------------- */
.pl-skip {
  position: fixed;
  left: 50%; bottom: clamp(.8rem, 3vh, 1.5rem);
  transform: translateX(-50%);
  color: rgba(255,255,255,.32);
  font-family: "Inter", sans-serif;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: 0;
  animation: pl-fade-in .5s ease 3.0s forwards;
  white-space: nowrap;
  z-index: 10;
}
@keyframes pl-fade-in { to { opacity: 1; } }

/* Reduced motion --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .preloader { animation: pl-out .4s ease .8s forwards; }
  .pl-window, .pl-shutter, .pl-mosq, .pl-ripple, .pl-flash,
  .pl-mesh-pattern, .pl-welcome, .pl-welcome-eyebrow,
  .pl-welcome-name, .pl-welcome-divider, .pl-welcome-tagline,
  .pl-progress-bar {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
  .pl-window { transform: translate(-50%, -50%) scale(1) rotateX(0); }
  .pl-shutter.left { transform: translateX(-100%); }
  .pl-shutter.right { transform: translateX(100%); }
  .pl-welcome-divider { width: 200px; }
}

@media (max-width: 640px) {
  .pl-window { width: clamp(220px, 60vw, 320px); }
  .pl-mosq { width: clamp(30px, 8vw, 44px); }
}

/* =========================================================
   Mr. Flynet — Design System v3 (Corporate Editorial)
   Refined rhythm · 8pt grid · clean typography
   ========================================================= */

:root {
  --forest-950: #0a1a13;
  --forest-900: #102a1f;
  --forest-800: #163b2c;
  --forest-700: #1d4d3a;
  --forest-600: #266148;
  --forest-50:  #e8f0ea;

  --gold-700: #a68542;
  --gold-600: #c9a55c;
  --gold-500: #dcb978;

  --sage-300: #c8d6a3;
  --sage-400: #b6c989;

  --ink-900: #0e1310;
  --ink-700: #2a3530;
  --ink-500: #5a6261;
  --ink-300: #a8aea6;

  --cream-50:  #faf7ef;
  --cream-100: #f5f1e6;
  --cream-200: #ece6d6;
  --stone-100: #f0ebde;
  --line:      #e5dfcd;
  --line-soft: #ede8db;
  --white: #ffffff;

  --font-display: "Instrument Serif", "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1240px;
  --gap: clamp(1.25rem, 2.2vw, 1.75rem);

  /* Spacing tokens — 8pt grid */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 80px;
  --s-9: 96px;
  --s-10: 120px;

  /* Section padding — tightened corporate rhythm */
  --section-pad: clamp(2.75rem, 5vw, 4rem);
  --section-pad-sm: clamp(1.5rem, 3vw, 2.2rem);
  --section-pad-lg: clamp(3.5rem, 6vw, 5rem);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(14,19,16,.04);
  --shadow-sm: 0 1px 2px rgba(14,19,16,.05), 0 1px 3px rgba(14,19,16,.06);
  --shadow-md: 0 8px 24px rgba(14,19,16,.06), 0 2px 6px rgba(14,19,16,.04);
  --shadow-lg: 0 24px 48px -12px rgba(14,19,16,.15);
  --transition: 280ms cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--forest-700); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--forest-600); }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--sage-300); color: var(--ink-900); }

h1, h2, h3, h4 {
  font-family: var(--font-body);
  color: var(--ink-900);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.05rem, 5vw, 4rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.55rem, 3.6vw, 2.75rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.12rem, 1.8vw, 1.45rem); }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin: 0 0 1em; }
.lead { font-size: clamp(.95rem, 1.4vw, 1.12rem); color: var(--ink-500); max-width: 60ch; line-height: 1.55; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: var(--forest-700);
  font-weight: 500; letter-spacing: .04em;
  margin-bottom: 1.2rem;
  padding: .4rem .85rem .4rem .55rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--forest-700);
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem); }

/* === Section rhythm — bottom-only padding for single-unit gaps === */
section { padding: 0 0 var(--section-pad); position: relative; }
section:first-of-type { padding-top: var(--section-pad); }
section.tight    { padding-bottom: var(--section-pad-sm); }
section.spacious { padding-bottom: var(--section-pad-lg); }
section.flush-top    { padding-top: 0 !important; }
section.flush-bottom { padding-bottom: 0 !important; }
.hero { padding: clamp(2.25rem, 4vw, 3.25rem) 0 var(--section-pad); }
.logo-strip { padding: 0 0 var(--section-pad-sm); }
.newsletter { padding: clamp(2rem, 4vw, 3rem) 0 !important; }

/* Grids */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Announcement bar */
.announce {
  background: var(--forest-900);
  color: var(--cream-50);
  text-align: center;
  padding: .65rem 1rem;
  font-size: .82rem;
}
.announce a { color: var(--sage-300); text-decoration: underline; text-underline-offset: 3px; margin-left: .5rem; }
.announce a:hover { color: var(--gold-500); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 500; font-size: .92rem;
  border: 1px solid transparent;
  transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
  line-height: 1;
}
.btn-primary { background: var(--forest-800); color: var(--white); }
.btn-primary:hover { background: var(--forest-700); color: var(--white); transform: translateY(-1px); }
.btn-light { background: var(--white); color: var(--ink-900); border-color: var(--line); }
.btn-light:hover { border-color: var(--forest-700); color: var(--forest-800); }
.btn-dark { background: var(--ink-900); color: var(--white); }
.btn-dark:hover { background: var(--forest-900); color: var(--white); }
.btn-ghost { background: transparent; color: var(--ink-700); padding: .6rem .9rem; }
.btn-ghost:hover { color: var(--forest-700); }
.btn-arrow .arrow {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--white); color: var(--forest-800);
  display: grid; place-items: center; margin-left: .2rem;
  font-size: .75rem;
  transition: transform var(--transition);
}
.btn:hover .arrow { transform: translate(2px, -2px); }

/* =========================================================
   HEADER — refined corporate
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,241,230,.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(229,223,205,.5);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: .7rem 0;
  gap: 1.5rem;
}
.brand {
  display: flex; align-items: center; gap: .55rem;
  font-size: 1.1rem; font-weight: 600; color: var(--ink-900);
  letter-spacing: -.015em;
  transition: opacity var(--transition);
}
.brand:hover { color: var(--ink-900); opacity: .8; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--forest-800);
  display: grid; place-items: center;
  color: var(--sage-300); font-weight: 700; font-size: .95rem;
  box-shadow: 0 4px 12px -4px rgba(22,59,44,.4);
}
.nav {
  display: flex; align-items: center; gap: .1rem;
  justify-content: center;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(229,223,205,.7);
  padding: .3rem;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin: 0 auto;
}
.nav a {
  padding: .5rem .95rem;
  border-radius: var(--radius-pill);
  color: var(--ink-700);
  font-size: .88rem; font-weight: 500;
  transition: all var(--transition);
  position: relative;
}
.nav a:hover { color: var(--ink-900); }
.nav a.active {
  background: var(--forest-800);
  color: var(--white);
}
.nav-cta { display: flex; gap: .55rem; align-items: center; justify-self: end; }
.nav-cta .btn-ghost { padding: .55rem .85rem; font-size: .85rem; }
.nav-cta .btn-dark {
  background: var(--forest-800);
  color: var(--white);
  padding: .55rem .65rem .55rem 1.05rem;
  font-size: .85rem;
}
.nav-cta .btn-dark:hover { background: var(--forest-700); }
.nav-cta .btn-arrow .arrow {
  width: 22px; height: 22px;
  background: var(--sage-300); color: var(--ink-900);
  font-size: .7rem;
}

.menu-btn { display: none; background: none; border: none; padding: .5rem; }
.menu-btn span { display: block; width: 20px; height: 2px; background: var(--ink-900); margin: 4px 0; transition: transform var(--transition); }
@media (max-width: 980px) {
  .header-inner { grid-template-columns: auto auto; }
  .nav { display: none; }
  .menu-btn { display: block; }
  .nav.open {
    display: flex; position: absolute; top: calc(100% + 8px); right: 1rem;
    background: var(--white);
    flex-direction: column; align-items: stretch;
    padding: .5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px; gap: 0;
    margin: 0;
    border: 1px solid var(--line);
  }
  .nav.open a { padding: .8rem 1rem; text-align: left; }
}

/* HERO */
.hero-text { max-width: 840px; margin: 0 auto; text-align: center; }
.hero-text.left { text-align: left; margin: 0; }
.hero h1 { margin-bottom: 1.3rem; }
.hero h1 em { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--forest-800); }
.hero .lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); max-width: 64ch; margin-left: auto; margin-right: auto; }
.hero-text.left .lead { margin-left: 0; margin-right: 0; }
.hero-cta { display: flex; gap: .7rem; margin-top: 2rem; flex-wrap: wrap; justify-content: center; }
.hero-text.left .hero-cta { justify-content: flex-start; }

/* Image marquee */
.image-marquee {
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
  overflow: hidden;
  position: relative;
}
.image-marquee::before, .image-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.image-marquee::before { left: 0; background: linear-gradient(90deg, var(--cream-100), transparent); }
.image-marquee::after { right: 0; background: linear-gradient(-90deg, var(--cream-100), transparent); }
.marquee-track {
  display: flex; gap: .9rem;
  animation: scroll-left 55s linear infinite;
  width: max-content;
}
.marquee-track.reverse {
  animation: scroll-right 50s linear infinite;
}
.image-marquee.row-2 { margin-top: 1rem; }
.image-marquee.row-2 .marquee-item { width: 220px; height: 260px; }
.marquee-item {
  width: 240px; height: 290px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--stone-100);
}
.marquee-item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (max-width: 600px) {
  .marquee-item { width: 180px; height: 220px; }
  .image-marquee.row-2 .marquee-item { width: 160px; height: 200px; }
}

/* Image with shapes (sub-page hero banner) */
.hero-imgshape {
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/7;
  background: var(--stone-100);
}
.hero-imgshape img { width: 100%; height: 100%; object-fit: cover; }
.hero-imgshape .shape { position: absolute; width: 180px; height: 180px; border-radius: 50%; opacity: .8; filter: blur(2px); }
.hero-imgshape .shape.s1 { top: 10%; right: 8%; background: var(--sage-300); }
.hero-imgshape .shape.s2 { bottom: -30px; left: 12%; width: 130px; height: 130px; background: var(--gold-500); }

/* Logo strip — sliding brand marquee */
.logo-strip-label { text-align: center; font-size: .85rem; color: var(--ink-500); margin-bottom: 1.1rem; }
.brand-marquee {
  overflow: hidden;
  position: relative;
  padding: .5rem 0;
  mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
}
.brand-track {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  width: max-content;
  animation: brand-scroll 32s linear infinite;
}
.brand-marquee:hover .brand-track { animation-play-state: paused; }
.brand-track span {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: var(--ink-500); opacity: .7;
  transition: opacity var(--transition), color var(--transition);
  white-space: nowrap;
  display: inline-flex; align-items: center;
}
.brand-track span:hover { opacity: 1; color: var(--forest-800); }
.brand-track .sans {
  font-family: var(--font-body); font-style: normal;
  font-weight: 700; font-size: clamp(.95rem, 1.4vw, 1.1rem);
  letter-spacing: .08em;
}
@keyframes brand-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Fallback static row (kept for non-marquee usage) */
.logo-row {
  display: flex; justify-content: center; align-items: center;
  gap: clamp(1.25rem, 3.5vw, 3rem); flex-wrap: wrap;
}
.logo-row span {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 1.35rem; color: var(--ink-500); opacity: .72;
}
.logo-row .sans { font-family: var(--font-body); font-style: normal; font-weight: 700; font-size: 1.05rem; letter-spacing: .06em; }

/* Section head — two-col aligned */
.section-head, .intro-head, .steps-head, .faq-head, .insights-head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: end;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
@media (max-width: 800px) {
  .section-head, .intro-head, .steps-head, .faq-head, .insights-head { grid-template-columns: 1fr; }
}
.section-head h2, .intro-head h2, .steps-head h2, .faq-head h2, .insights-head h2 {
  margin: 0; max-width: 22ch;
}
.section-head h2 em, .intro-head h2 em, .steps-head h2 em, .faq-head h2 em, .insights-head h2 em {
  font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--forest-800);
}
.section-head .right p, .section-head .right .lead,
.intro-head .right p { margin: 0 0 1.3rem; color: var(--ink-500); }

.section-head.centered, .faq-head.centered, .steps-head.centered {
  display: block; text-align: center;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.section-head.centered h2, .faq-head.centered h2, .steps-head.centered h2 { max-width: none; margin-bottom: .9rem; }
.section-head.centered .lead, .faq-head.centered .lead { margin: 0 auto; }

/* Service cards (Products page catalog grid) */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

/* Catalog category labels (Flynets / Blackouts / Multi-system) */
.catalog-group {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  color: var(--forest-800);
  letter-spacing: -.01em;
  margin: clamp(2.25rem, 4vw, 3rem) 0 1.25rem;
  scroll-margin-top: 90px;
}
.catalog-group:first-of-type { margin-top: 0; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 1.5rem 1.5rem 0;
  display: flex; flex-direction: column;
  transition: all var(--transition);
  overflow: hidden;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--cream-200);
  display: grid; place-items: center;
  color: var(--forest-800);
  margin-bottom: 1rem;
}
.service-card h3 { margin: 0 0 .4rem; font-size: 1.15rem; font-weight: 600; }
.service-card p { color: var(--ink-500); margin: 0 0 1rem; font-size: .93rem; }
.service-card .read-more {
  font-size: .88rem; font-weight: 500; color: var(--forest-700);
  display: inline-flex; align-items: center; gap: .3rem;
  margin-bottom: 1.4rem;
}
.service-card .read-more::after { content: "→"; }
.service-image { margin: 0 -1.5rem; aspect-ratio: 16/10; overflow: hidden; background: var(--stone-100); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.service-card:hover .service-image img { transform: scale(1.04); }

/* Dark "Why" section */
.why-dark {
  background: var(--forest-900);
  color: var(--cream-50);
  border-radius: var(--radius-xl);
  padding: clamp(1.9rem, 3.5vw, 3rem);
}
.why-dark h2 { color: var(--white); max-width: 18ch; margin-bottom: 1.8rem; }
.why-dark h2 em { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--sage-300); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 1.25rem; } }
.why-item h4 {
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 .5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.why-item p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; line-height: 1.55; }

/* Stats grid */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-cell { padding: 1.4rem 1.2rem; border-right: 1px solid var(--line); }
.stat-cell:last-child { border-right: 0; }
@media (max-width: 900px) {
  .stat-cell:nth-child(2n) { border-right: 0; }
  .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 500px) {
  .stat-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-cell:last-child { border-bottom: 0; }
}
.stat-num {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--forest-800);
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 400;
  margin-bottom: .55rem;
}
.stat-label { font-size: .95rem; color: var(--ink-900); font-weight: 600; margin-bottom: .3rem; }
.stat-desc { font-size: .88rem; color: var(--ink-500); }

/* Values 4-card */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 1.5rem 1.4rem;
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--forest-600); }
.value-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--cream-200);
  display: grid; place-items: center;
  color: var(--forest-800);
  margin-bottom: 1.2rem;
}
.value-card h3 { margin: 0 0 .35rem; font-size: 1.1rem; font-weight: 600; }
.value-card p { color: var(--ink-500); margin: 0 0 1rem; font-size: .9rem; }
.value-card .read-more { font-size: .85rem; font-weight: 500; color: var(--forest-700); }
.value-card .read-more::after { content: " →"; }

/* About split */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.75rem, 3.5vw, 3.5rem); align-items: center; }
@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; } }
.about-left h2 { max-width: 16ch; }
.about-left h2 em { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--forest-800); }
.about-left .features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem 2rem; margin: 2rem 0; }
@media (max-width: 600px) { .about-left .features { grid-template-columns: 1fr; } }
.about-feature h4 { margin: 0 0 .25rem; font-size: .98rem; font-weight: 600; color: var(--ink-900); }
.about-feature p { margin: 0; font-size: .88rem; color: var(--ink-500); }
.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--stone-100);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-logos {
  display: flex; gap: clamp(1rem, 3vw, 2rem);
  align-items: center; flex-wrap: wrap;
  margin-top: clamp(2rem, 3.5vw, 2.8rem);
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid var(--line);
  justify-content: center;
}
.about-logos span { font-family: var(--font-display); font-style: italic; color: var(--ink-500); font-size: 1.15rem; opacity: .65; }
.about-logos .sans { font-family: var(--font-body); font-style: normal; font-weight: 700; font-size: .9rem; letter-spacing: .08em; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 1.6rem;
  display: flex; flex-direction: column;
  transition: all var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.quote-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--cream-200);
  color: var(--forest-800);
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
}
.testi-card blockquote {
  font-size: 1.02rem; line-height: 1.55;
  color: var(--ink-900);
  margin: 0 0 1.4rem;
  font-weight: 400;
  flex: 1;
}
.testi-author { display: flex; align-items: center; gap: .8rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.testi-portrait { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--stone-100); }
.testi-portrait img { width: 100%; height: 100%; object-fit: cover; }
.testi-author cite { font-style: normal; font-size: .92rem; color: var(--ink-900); font-weight: 600; display: block; }
.testi-author .role { font-size: .8rem; color: var(--ink-500); }

/* =========================================================
   PRODUCT FEATURES — portrait editorial cards
   ========================================================= */
.product-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2vw, 1.75rem);
}
@media (max-width: 900px) { .product-features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .product-features { grid-template-columns: 1fr; gap: 1.5rem; } }

.pf-card {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ink-900);
  text-decoration: none;
  color: inherit;
  isolation: isolate;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pf-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: inherit; }
.pf-card .pf-image { position: absolute; inset: 0; }
.pf-card .pf-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s cubic-bezier(.2,.7,.2,1);
}
.pf-card:hover .pf-image img { transform: scale(1.05); }
.pf-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,19,16,0) 38%, rgba(14,19,16,.65) 70%, rgba(14,19,16,.92) 100%);
  transition: opacity var(--transition);
}
.pf-tag {
  position: absolute; top: 1.1rem; left: 1.1rem; z-index: 3;
  background: rgba(255,255,255,.95); color: var(--ink-900);
  padding: .35rem .8rem; border-radius: var(--radius-pill);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
}
.pf-num {
  position: absolute; top: 1.15rem; right: 1.25rem; z-index: 3;
  font-family: var(--font-display); font-style: italic;
  font-size: 1rem; color: rgba(255,255,255,.85);
  letter-spacing: .02em;
}
.pf-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--cream-50);
}
.pf-body h3 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 500;
  margin: 0 0 .55rem;
  letter-spacing: -.02em; line-height: 1.2;
}
.pf-body h3 em {
  font-family: var(--font-display); font-style: italic;
  font-weight: 400; color: var(--sage-300);
  display: block;
  margin-top: .2rem;
  font-size: .85em;
}
.pf-desc { color: rgba(255,255,255,.78); font-size: .9rem; margin: 0 0 1rem; line-height: 1.5; max-width: 32ch; }
.pf-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.18);
}
.pf-price {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.2rem; color: var(--white); font-weight: 400; line-height: 1;
}
.pf-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--sage-300);
  font-size: .82rem; font-weight: 500;
  transition: gap var(--transition), color var(--transition);
}
.pf-link::after {
  content: ""; width: 22px; height: 22px; border-radius: 50%;
  background: var(--sage-300); color: var(--ink-900);
  display: grid; place-items: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230e1310' stroke-width='2'><path d='M5 12h14M13 5l7 7-7 7'/></svg>");
  background-repeat: no-repeat; background-position: center;
  transition: transform var(--transition);
}
.pf-card:hover .pf-link::after { transform: translate(2px, -2px); }

/* =========================================================
   PRODUCT SHOWCASE — kept for backwards-compatibility
   ========================================================= */
.product-showcase { display: flex; flex-direction: column; gap: clamp(.75rem, 1.5vw, 1.1rem); }
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.product-row:hover { border-color: var(--ink-300); box-shadow: var(--shadow-md); }
.product-row.reverse > .pr-media { order: 2; }
.product-row .pr-media {
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--stone-100);
  position: relative;
}
.product-row .pr-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(.2,.7,.2,1); }
.product-row:hover .pr-media img { transform: scale(1.025); }
.product-row .pr-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(255,255,255,.95);
  color: var(--ink-900);
  padding: .32rem .72rem; border-radius: var(--radius-pill);
  font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.product-row .pr-content {
  padding: clamp(1.6rem, 3vw, 2.5rem);
  display: flex; flex-direction: column;
  justify-content: center;
  gap: .85rem;
}
.product-row .pr-num {
  font-family: var(--font-display); font-style: italic;
  font-size: .92rem; color: var(--forest-700); font-weight: 400;
  letter-spacing: .02em;
}
.product-row .pr-content h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 500; margin: 0;
  letter-spacing: -.02em; line-height: 1.15;
}
.product-row .pr-content h3 em { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--forest-700); }
.product-row .pr-content p { color: var(--ink-500); margin: 0; max-width: 48ch; font-size: .95rem; line-height: 1.55; }
.product-row .pr-config { display: flex; gap: .4rem; flex-wrap: wrap; }
.product-row .pr-config span {
  background: var(--cream-100);
  color: var(--ink-700);
  padding: .28rem .7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: .76rem; font-weight: 500;
}
.product-row .pr-price {
  display: flex; align-items: baseline; gap: .45rem;
  padding-top: .85rem;
  margin-top: .35rem;
  border-top: 1px solid var(--line);
}
.product-row .pr-price-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.55rem; color: var(--ink-900); font-weight: 400; line-height: 1;
}
.product-row .pr-price-sub { font-size: .8rem; color: var(--ink-500); }
.product-row .pr-actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .2rem; }

@media (max-width: 820px) {
  .product-row, .product-row.reverse { grid-template-columns: 1fr; }
  .product-row.reverse > .pr-media { order: 0; }
  .product-row .pr-media { aspect-ratio: 16/10; }
}

/* =========================================================
   PROCESS TIMELINE — minimalist horizontal
   ========================================================= */
.process-board {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.25rem, 3vw, 2.25rem);
}
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(.75rem, 1.5vw, 1rem);
  position: relative;
}
.process-track::before {
  content: ""; position: absolute;
  top: 21px; left: 10%; right: 10%;
  height: 0;
  border-top: 1.5px dashed var(--line);
  z-index: 0;
}
.process-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 .25rem;
  z-index: 1;
}
.process-node .pn-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  margin-bottom: 1rem;
  font-family: var(--font-display); font-style: italic;
  font-size: 1rem; color: var(--forest-800); font-weight: 400;
  transition: all var(--transition);
}
.process-node:hover .pn-circle {
  background: var(--forest-800);
  border-color: var(--forest-800);
  color: var(--sage-300);
  transform: scale(1.06);
}
.process-node h3 {
  font-size: .95rem; font-weight: 600;
  margin: 0 0 .4rem; line-height: 1.3;
  letter-spacing: -.005em;
}
.process-node p { font-size: .82rem; color: var(--ink-500); margin: 0; line-height: 1.5; max-width: 22ch; }
.process-node-content { display: flex; flex-direction: column; gap: 0; }

@media (max-width: 900px) {
  .process-track { grid-template-columns: 1fr !important; gap: 0; padding-left: 1.5rem; }
  .process-track::before {
    top: 0; bottom: 0; left: 22px; right: auto;
    height: auto; width: 0;
    border-left: 1.5px dashed var(--line);
    border-top: 0;
  }
  .process-node {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1rem;
    padding: 0 0 1.3rem 0;
    margin-left: -1.5rem;
  }
  .process-node:last-child { padding-bottom: 0; }
  .process-node .pn-circle { margin: 0; flex-shrink: 0; }
  .process-node-content { padding-top: .4rem; }
  .process-node p { max-width: none; }
}

/* =========================================================
   HOW IT WORKS — interactive feature reveal
   ========================================================= */
.howit {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(1.4rem, 2.5vw, 2rem);
}
.howit-list {
  display: flex; flex-direction: column;
  gap: .35rem;
  align-self: stretch;
}
.howit-item {
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  text-align: left;
  font-family: inherit; cursor: pointer;
  display: flex; align-items: center; gap: 1rem;
  transition: all var(--transition);
  flex: 1;
  position: relative;
}
.howit-item .howit-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.4rem; color: var(--ink-300);
  font-weight: 400; line-height: 1;
  flex-shrink: 0; width: 40px;
  transition: color var(--transition);
}
.howit-item .howit-label {
  font-size: 1rem; font-weight: 500;
  color: var(--ink-700);
  transition: color var(--transition);
}
.howit-item:hover { background: var(--cream-100); }
.howit-item.active {
  background: var(--forest-900);
}
.howit-item.active .howit-num { color: var(--sage-300); }
.howit-item.active .howit-label { color: var(--white); }
.howit-item.active::after {
  content: ""; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--sage-300);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230e1310' stroke-width='2.2'><path d='M5 12h14M13 5l7 7-7 7'/></svg>");
  background-repeat: no-repeat; background-position: center;
}

.howit-display {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--stone-100);
  min-height: 380px;
  isolation: isolate;
}
.howit-display .howit-panel {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .55s ease, visibility .55s ease;
}
.howit-display .howit-panel.active { opacity: 1; visibility: visible; }
.howit-display .howit-panel img {
  width: 100%; height: 100%; object-fit: cover;
}
.howit-display .howit-panel::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,19,16,0) 35%, rgba(14,19,16,.75) 90%);
}
.howit-display .howit-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--cream-50);
  z-index: 1;
}
.howit-display .howit-step-label {
  font-family: var(--font-display); font-style: italic;
  color: var(--sage-300); font-size: .95rem;
  letter-spacing: .03em; margin-bottom: .4rem;
  display: block;
}
.howit-display h3 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 500; letter-spacing: -.02em;
  margin: 0 0 .6rem; line-height: 1.2;
}
.howit-display p {
  color: rgba(255,255,255,.82);
  font-size: .95rem; line-height: 1.55;
  margin: 0; max-width: 50ch;
}
.howit-progress {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.18);
  z-index: 2;
}
.howit-progress-bar {
  height: 100%;
  background: var(--sage-300);
  width: 0;
  transition: width .15s linear;
}

@media (max-width: 820px) {
  .howit { grid-template-columns: 1fr; }
  .howit-display { min-height: 320px; }
}

/* =========================================================
   ABOUT FEATURE — editorial home block
   ========================================================= */
.about-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
}
@media (max-width: 900px) {
  .about-feature { grid-template-columns: 1fr; gap: 2rem; }
}
.about-feature-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--stone-100);
}
@media (max-width: 540px) { .about-feature-image { aspect-ratio: 4/3; } }
.about-feature-image img { width: 100%; height: 100%; object-fit: cover; }
.about-feature-image .float-stat {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: .85rem 1.1rem;
  box-shadow: var(--shadow-md);
  max-width: 45%;
}
.about-feature-image .float-stat .fs-num {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  color: var(--forest-800);
  line-height: 1; margin-bottom: .25rem; font-weight: 400;
}
.about-feature-image .float-stat .fs-lbl {
  font-size: .74rem; color: var(--ink-500);
  text-transform: uppercase; letter-spacing: .08em;
  font-weight: 600;
  white-space: nowrap;
}
.about-feature-image .float-stat.tl { top: 1rem; left: 1rem; }
.about-feature-image .float-stat.br { bottom: 1rem; right: 1rem; }
@media (max-width: 540px) {
  .about-feature-image .float-stat { padding: .65rem .85rem; }
  .about-feature-image .float-stat .fs-num { font-size: 1.25rem; }
  .about-feature-image .float-stat .fs-lbl { font-size: .65rem; letter-spacing: .06em; }
  .about-feature-image .float-stat.tl { top: .75rem; left: .75rem; }
  .about-feature-image .float-stat.br { bottom: .75rem; right: .75rem; }
}

.about-feature-content { display: flex; flex-direction: column; gap: 1rem; }
.about-feature-content .eyebrow { align-self: flex-start; margin-bottom: 0; }
.about-feature-content h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}
.about-feature-content h2 em {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  color: var(--forest-800); display: block; margin-top: .15rem;
}
.about-feature-content .lead { margin: 0; }
.about-feature-points {
  display: flex; flex-direction: column;
  gap: .85rem;
  margin: .5rem 0 .25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.about-feature-points .point {
  display: flex; gap: .9rem; align-items: flex-start;
}
.about-feature-points .point-num {
  font-family: var(--font-display); font-style: italic;
  color: var(--forest-700);
  font-size: 1rem; line-height: 1.4;
  flex-shrink: 0; min-width: 40px;
}
.about-feature-points h4 {
  margin: 0 0 .2rem;
  font-size: 1rem; font-weight: 600;
  color: var(--ink-900);
}
.about-feature-points p {
  margin: 0;
  font-size: .9rem; color: var(--ink-500);
  line-height: 1.5;
}
.about-feature-content .btn { align-self: flex-start; margin-top: .5rem; }
@media (max-width: 900px) {
  .about-feature-content { gap: .85rem; }
  .about-feature-content h2 { max-width: 24ch; }
}

/* =========================================================
   TESTIMONIAL MARQUEE — endless continuous scroll
   ========================================================= */
.testi-marquee {
  position: relative;
  overflow: hidden;
  padding: 1.25rem 0;
  mask-image: linear-gradient(90deg,
    transparent 0,
    black 9%,
    black 91%,
    transparent 100%);
  -webkit-mask-image: linear-gradient(90deg,
    transparent 0,
    black 9%,
    black 91%,
    transparent 100%);
}
.testi-marquee-track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: max-content;
  animation: testi-scroll 55s linear infinite;
}
.testi-marquee:hover .testi-marquee-track { animation-play-state: paused; }
@keyframes testi-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testi-slide {
  flex: 0 0 clamp(280px, 36vw, 440px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-slide:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testi-slide .quote-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--cream-200);
  color: var(--forest-800);
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.testi-slide blockquote {
  font-family: var(--font-body);
  font-size: clamp(.98rem, 1.4vw, 1.08rem);
  line-height: 1.55;
  color: var(--ink-900);
  margin: 0 0 1.2rem;
  font-weight: 400;
  flex: 1;
}
.testi-slide .testi-author {
  display: flex; align-items: center; gap: .75rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.testi-slide .testi-portrait {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--stone-100);
  flex-shrink: 0;
}
.testi-slide .testi-portrait img { width: 100%; height: 100%; object-fit: cover; }
.testi-slide cite {
  font-style: normal; font-size: .9rem;
  color: var(--ink-900); font-weight: 600; display: block;
}
.testi-slide .role { font-size: .78rem; color: var(--ink-500); }

@media (max-width: 600px) {
  .testi-slide { flex: 0 0 78vw; }
  .testi-marquee {
    mask-image: linear-gradient(90deg, transparent 0, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, black 10%, black 90%, transparent 100%);
  }
}

/* =========================================================
   FAQ EDITORIAL — single-column numbered accordion
   ========================================================= */
.faq-editorial {
  max-width: 820px;
  margin: 0 auto;
}
.faq-row {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: .65rem;
  transition: all var(--transition);
  overflow: hidden;
}
.faq-row:hover { border-color: var(--ink-300); }
.faq-row.open {
  background: var(--forest-900);
  border-color: var(--forest-900);
}
.faq-row-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: clamp(1.1rem, 2vw, 1.5rem) clamp(1.1rem, 2vw, 1.6rem);
  display: grid;
  grid-template-columns: 44px 1fr 32px;
  gap: clamp(.8rem, 1.5vw, 1.2rem);
  align-items: center;
  font-family: var(--font-body);
  color: var(--ink-900);
  transition: color var(--transition);
}
.faq-row.open .faq-row-q { color: var(--white); }
.faq-row-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--forest-700);
  line-height: 1;
  transition: color var(--transition);
}
.faq-row.open .faq-row-num { color: var(--sage-300); }
.faq-row-text {
  font-size: clamp(.98rem, 1.4vw, 1.08rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -.005em;
}
.faq-row-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-100);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 1.1rem;
  color: var(--forest-700);
  font-weight: 300;
  transition: all var(--transition);
  position: relative;
}
.faq-row-toggle::before,
.faq-row-toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition);
}
.faq-row-toggle::before { width: 12px; height: 1.5px; }
.faq-row-toggle::after  { width: 1.5px; height: 12px; }
.faq-row.open .faq-row-toggle {
  background: var(--sage-300);
  border-color: var(--sage-300);
  color: var(--ink-900);
}
.faq-row.open .faq-row-toggle::after { transform: scaleY(0); }

.faq-row-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.22,.7,.2,1);
  color: rgba(255,255,255,.78);
}
.faq-row.open .faq-row-a { max-height: 600px; }
.faq-row-a-inner {
  padding: 0 clamp(1.1rem, 2vw, 1.6rem) clamp(1.2rem, 2vw, 1.5rem) clamp(3.6rem, 5vw, 4.6rem);
  font-size: clamp(.92rem, 1.2vw, .98rem);
  line-height: 1.6;
}
.faq-row-a-inner p { margin: 0; }

@media (max-width: 540px) {
  .faq-row-q {
    grid-template-columns: 36px 1fr 28px;
    padding: 1rem 1.1rem;
    gap: .7rem;
  }
  .faq-row-num { font-size: 1rem; }
  .faq-row-toggle { width: 28px; height: 28px; }
  .faq-row-toggle::before { width: 10px; }
  .faq-row-toggle::after { height: 10px; }
  .faq-row-a-inner { padding: 0 1.1rem 1.1rem 2.8rem; }
}

/* =========================================================
   HOME ABOUT v2 — magazine spread
   ========================================================= */
.home-about-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(2rem, 3.5vw, 2.75rem);
}
.home-about-head h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  margin: 0 0 1rem;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.home-about-head h2 em {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  color: var(--forest-800);
  display: block;
  margin-top: .15rem;
}
.home-about-head .lead { margin: 0 auto; max-width: 60ch; }

.home-about-hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 21/9;
  background: var(--stone-100);
  box-shadow: var(--shadow-lg);
}
.home-about-hero img { width: 100%; height: 100%; object-fit: cover; }
.home-about-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(14,19,16,.55) 100%);
}
.home-about-hero-meta {
  position: absolute;
  left: clamp(1.1rem, 2.5vw, 1.75rem);
  bottom: clamp(1.1rem, 2.5vw, 1.5rem);
  z-index: 2;
  color: var(--white);
  display: flex;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: flex-end;
  flex-wrap: wrap;
}
.home-about-hero-meta .label {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sage-300);
  font-size: clamp(.85rem, 1.2vw, 1rem);
  margin-bottom: .35rem;
  display: block;
}
.home-about-hero-meta .v {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.02em;
}
.home-about-hero-meta .sub {
  font-size: clamp(.75rem, 1vw, .85rem);
  color: rgba(255,255,255,.75);
  margin-top: .3rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
@media (max-width: 720px) {
  .home-about-hero { aspect-ratio: 4/3; }
  .home-about-hero-meta { gap: 1.25rem; flex-direction: row; }
}

.home-about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.85rem, 1.8vw, 1.25rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 820px) { .home-about-features { grid-template-columns: 1fr; } }
.home-about-feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.home-about-feature:hover {
  border-color: var(--forest-600);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.home-about-feature .haf-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  color: var(--forest-700);
  font-weight: 400;
  line-height: 1;
}
.home-about-feature h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  font-weight: 600;
  margin: 0;
  letter-spacing: -.01em;
}
.home-about-feature p {
  margin: 0;
  color: var(--ink-500);
  font-size: clamp(.9rem, 1.2vw, .96rem);
  line-height: 1.55;
}

.home-about-cta {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  justify-content: center;
  gap: .65rem;
  flex-wrap: wrap;
}

/* =========================================================
   FAQ — refined accordion grid (legacy, kept for sub-pages)
   ========================================================= */
.faq-cards { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; max-width: 1080px; margin: 0 auto; }
@media (max-width: 820px) { .faq-cards { grid-template-columns: 1fr; } }
.faq-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  transition: all var(--transition);
}
.faq-card:hover { border-color: var(--ink-300); }
.faq-card.open {
  background: var(--forest-900);
  color: var(--cream-50);
  border-color: var(--forest-900);
}
.faq-card.open .faq-card-q { color: var(--white); }
.faq-card.open .faq-card-a { color: rgba(255,255,255,.78); }
.faq-card.open .faq-card-q::after {
  background: var(--sage-300); color: var(--ink-900); border-color: var(--sage-300);
}
.faq-card-q {
  width: 100%; background: none; border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: .96rem; font-weight: 500; color: var(--ink-900);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
  padding: 0; cursor: pointer; line-height: 1.4;
  transition: color var(--transition);
}
.faq-card-q::after {
  content: "+";
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cream-100);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 1rem; color: var(--forest-700); font-weight: 300;
  transition: all var(--transition);
  margin-top: -1px;
}
.faq-card.open .faq-card-q::after { content: "−"; }
.faq-card-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding-top .25s ease, color var(--transition);
  color: var(--ink-500);
  font-size: .9rem; line-height: 1.6;
}
.faq-card.open .faq-card-a { max-height: 600px; padding-top: .85rem; }
.faq-card-a p { margin: 0; }

/* Blog grid */
.blog-grid, .blog-index-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 2.4vw, 2.25rem);
}
@media (max-width: 900px) { .blog-grid, .blog-index-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid, .blog-index-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: inherit; }
.blog-img { aspect-ratio: 16/10; overflow: hidden; background: var(--stone-100); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-body { padding: 1.3rem 1.4rem 1.5rem; }
.blog-meta { display: flex; align-items: center; gap: .55rem; font-size: .76rem; color: var(--ink-500); margin-bottom: .75rem; letter-spacing: .02em; }
.blog-meta .cat {
  background: var(--cream-200); color: var(--forest-800);
  padding: .22rem .6rem; border-radius: var(--radius-pill);
  font-weight: 600; letter-spacing: .03em; font-size: .72rem;
}
.blog-card h3 { font-size: 1.1rem; font-weight: 600; margin: 0 0 .5rem; line-height: 1.3; }
.blog-card p { color: var(--ink-500); font-size: .9rem; margin: 0; }

.insights-head { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; margin-bottom: clamp(2rem, 3.5vw, 3rem); }
@media (max-width: 700px) { .insights-head { grid-template-columns: 1fr; } }
.insights-head h2 { margin: 0; }
.insights-head h2 em { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--forest-800); }
.insights-head .label { color: var(--forest-700); font-size: .78rem; font-weight: 500; letter-spacing: .04em; margin-bottom: .8rem; display: block; }

/* =========================================================
   READY-TO-BEGIN — redesigned pre-footer CTA
   ========================================================= */
.pre-cta {
  position: relative;
  background: var(--forest-900);
  color: var(--cream-50);
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  min-height: 380px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}
.pre-cta::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 85% 110%, rgba(200,214,163,.18), transparent 55%),
    radial-gradient(ellipse at 0% 0%, rgba(255,255,255,.04), transparent 50%);
}
.pre-cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black, transparent 75%);
}
.pre-cta-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.75rem, 3.5vw, 3rem);
}
@media (max-width: 820px) { .pre-cta-inner { grid-template-columns: 1fr; } }
.pre-cta-text { max-width: 540px; }
.pre-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin-bottom: 1rem;
  max-width: 14ch;
  letter-spacing: -.03em;
}
.pre-cta h2 em { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--sage-300); display: block; margin-top: .15rem; }
.pre-cta-text p { color: rgba(255,255,255,.78); margin: 0 0 1.5rem; font-size: 1.02rem; max-width: 44ch; }
.pre-cta-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.pre-cta .btn-light { background: var(--sage-300); color: var(--ink-900); border-color: var(--sage-300); }
.pre-cta .btn-light:hover { background: var(--white); color: var(--ink-900); }
.pre-cta .btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.pre-cta .btn-outline:hover { border-color: var(--sage-300); color: var(--sage-300); }
.pre-cta .btn-arrow .arrow { background: var(--ink-900); color: var(--sage-300); }
.pre-cta .eyebrow { background: rgba(255,255,255,.07); color: var(--sage-300); border-color: rgba(255,255,255,.14); }
.pre-cta .eyebrow::before { background: var(--sage-300); }

.pre-cta-visual {
  position: relative;
  aspect-ratio: 7/6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--forest-800);
  box-shadow: var(--shadow-lg);
}
.pre-cta-visual img { width: 100%; height: 100%; object-fit: cover; }
.pre-cta-visual .badge {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: rgba(255,255,255,.95);
  color: var(--ink-900);
  padding: .55rem .85rem;
  border-radius: var(--radius);
  font-size: .8rem;
  display: flex; align-items: center; gap: .55rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.pre-cta-visual .badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--forest-600);
  box-shadow: 0 0 0 4px rgba(38,97,72,.25);
  animation: pulse 2.4s infinite ease-out;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(38,97,72,.5); }
  100% { box-shadow: 0 0 0 12px rgba(38,97,72,0); }
}

.pre-cta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 560px) { .pre-cta-stats { grid-template-columns: 1fr 1fr; } }
.pre-cta-stat .v {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--sage-300); font-weight: 400; line-height: 1;
  margin-bottom: .35rem;
}
.pre-cta-stat .l { font-size: .78rem; color: rgba(255,255,255,.65); letter-spacing: .02em; }

/* Newsletter */
.newsletter {
  background: var(--cream-200);
  padding: clamp(2.5rem, 4.5vw, 3.8rem) 0;
  border-top: 1px solid var(--line);
}
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
@media (max-width: 800px) { .newsletter-grid { grid-template-columns: 1fr; } }
.newsletter h3 { font-size: 1.4rem; margin: 0 0 .35rem; font-weight: 600; }
.newsletter p { color: var(--ink-500); margin: 0; max-width: 36ch; font-size: .95rem; }
.newsletter form { display: flex; gap: .5rem; flex-wrap: wrap; }
.newsletter input {
  flex: 1; min-width: 220px;
  padding: .85rem 1.2rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: inherit; font-size: .9rem; color: var(--ink-900);
  outline: none;
}
.newsletter input:focus { border-color: var(--forest-700); }
.newsletter .consent { font-size: .76rem; color: var(--ink-500); margin-top: .7rem; flex-basis: 100%; }

/* =========================================================
   FOOTER — redesigned multi-band corporate
   ========================================================= */
.site-footer {
  background: var(--ink-900); color: var(--ink-300);
  padding: 0;
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(22,59,44,.4), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(200,214,163,.06), transparent 50%);
  pointer-events: none;
}
.site-footer > * { position: relative; z-index: 1; }

/* Top band — large brand statement */
.footer-statement {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-statement-inner {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: end;
}
@media (max-width: 800px) { .footer-statement-inner { grid-template-columns: 1fr; align-items: start; } }
.footer-statement h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0;
  letter-spacing: -.025em;
  line-height: 1.1;
  max-width: 22ch;
}
.footer-statement h2 em {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  color: var(--sage-300); display: block; margin-top: .15rem;
}
.footer-statement-cta {
  display: flex; gap: .65rem; flex-wrap: wrap;
  justify-self: end;
}
@media (max-width: 800px) { .footer-statement-cta { justify-self: start; } }
.footer-statement-cta .btn-light { background: var(--sage-300); color: var(--ink-900); border-color: var(--sage-300); }
.footer-statement-cta .btn-light:hover { background: var(--white); color: var(--ink-900); border-color: var(--white); }
.footer-statement-cta .btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.25); }
.footer-statement-cta .btn-outline:hover { border-color: var(--sage-300); color: var(--sage-300); }

/* Middle band — link columns + brand */
.footer-main { padding: clamp(2.5rem, 4.5vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2.5rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } .footer-col-contact { grid-column: 1 / -1; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } .footer-col-contact { grid-column: 1 / -1; } }
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand .brand { color: var(--white); font-size: 1.2rem; }
.footer-brand .brand-mark { background: var(--forest-700); }
.footer-brand p { color: var(--ink-300); max-width: 38ch; font-size: .92rem; margin: 0; line-height: 1.5; }
.footer-meta { font-size: .82rem; color: var(--ink-500); }
.footer-meta .ft-row { display: flex; gap: .55rem; align-items: center; margin-bottom: .4rem; }
.footer-meta .ft-row::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage-300); box-shadow: 0 0 0 4px rgba(200,214,163,.18);
}
.footer-col h4 {
  color: var(--white);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin: 0 0 1.2rem;
  font-weight: 600;
}
.footer-col a {
  display: block; color: var(--ink-300);
  padding: .3rem 0;
  font-size: .92rem;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col a:hover { color: var(--sage-300); padding-left: .25rem; }

/* Bottom band */
.footer-bottom {
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
  font-size: .82rem; color: var(--ink-500);
}
.footer-bottom-left { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.footer-bottom-left a { color: var(--ink-300); font-size: .82rem; }
.footer-bottom-left a:hover { color: var(--sage-300); }
.footer-social { display: flex; gap: .45rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  display: grid; place-items: center; color: var(--ink-300);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--sage-300); color: var(--ink-900); border-color: var(--sage-300); }

/* Pricing tiers */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; } }
.tier {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.7rem;
  display: flex; flex-direction: column;
  position: relative;
}
.tier.featured { background: var(--forest-900); color: var(--cream-50); border-color: var(--forest-900); }
.tier.featured h3, .tier.featured .price-num { color: var(--white); }
.tier.featured .price-sub, .tier.featured .tier-desc, .tier.featured li { color: rgba(255,255,255,.75); }
.tier.featured li { border-color: rgba(255,255,255,.1); }
.tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--sage-300); color: var(--ink-900);
  padding: .32rem .85rem;
  border-radius: var(--radius-pill);
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.tier h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: .8rem; }
.tier .price { display: flex; align-items: baseline; gap: .35rem; margin-bottom: .3rem; }
.tier .price-num {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 400; line-height: 1; color: var(--ink-900); letter-spacing: -.02em;
}
.tier .price-unit { color: var(--ink-500); font-size: .88rem; }
.tier .price-sub { font-size: .8rem; color: var(--ink-500); margin-bottom: 1.4rem; }
.tier-desc { font-size: .92rem; color: var(--ink-500); margin-bottom: 1.4rem; }
.tier .tier-cta { margin-bottom: 1.4rem; }
.tier .tier-cta .btn { width: 100%; justify-content: center; }
.tier-includes-label { font-size: .78rem; color: var(--ink-900); font-weight: 600; margin-bottom: .8rem; }
.tier.featured .tier-includes-label { color: var(--sage-300); }
.tier ul { list-style: none; padding: 0; margin: 0; }
.tier li { display: flex; gap: .55rem; padding: .55rem 0; font-size: .9rem; border-top: 1px solid var(--line); align-items: center; }
.tier li::before {
  content: "✓"; width: 18px; height: 18px; border-radius: 50%;
  background: var(--forest-50); color: var(--forest-800); font-weight: 700;
  display: grid; place-items: center; font-size: .68rem; flex-shrink: 0;
}
.tier.featured li::before { background: var(--sage-300); color: var(--ink-900); }

/* Contact form layout */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: .35rem; }
.contact-info p { color: var(--ink-500); margin-bottom: 1.5rem; max-width: 38ch; }
.contact-block { padding: 1.3rem 0; border-top: 1px solid var(--line); }
.contact-block:last-child { border-bottom: 1px solid var(--line); }
.contact-block .label { font-size: .8rem; color: var(--ink-500); margin-bottom: .3rem; }
.contact-block .value { font-size: 1rem; color: var(--ink-900); font-weight: 500; }
.contact-block a { color: var(--ink-900); }
.contact-block a:hover { color: var(--forest-700); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 3vw, 2.3rem);
}
.form-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 1.3rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .82rem; font-weight: 500; color: var(--ink-900); margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: .93rem; color: var(--ink-900);
  transition: all var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--forest-700); background: var(--white);
  box-shadow: 0 0 0 3px rgba(29,77,58,.08);
}
.field textarea { min-height: 110px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.form-card .btn { width: 100%; justify-content: center; }
.consent { font-size: .76rem; color: var(--ink-500); margin-top: .9rem; }
.form-status { font-size: .88rem; margin-top: .9rem; text-align: center; min-height: 1.3em; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Utility */
.text-center { text-align: center; }
.bg-cream { background: var(--cream-100); }
.bg-stone { background: var(--stone-100); }

/* ============= Responsive polish ============= */
/* Tablet */
@media (max-width: 980px) {
  .header-inner { padding: .7rem 0; gap: .75rem; }
  .nav-cta .btn-ghost { display: none; }
  .hero-cta .btn { padding: .85rem 1.3rem; font-size: .9rem; }
  .testi-card blockquote { font-size: .98rem; }
}

/* Small tablet */
@media (max-width: 740px) {
  :root {
    --section-pad: clamp(2.25rem, 8vw, 3.25rem);
  }
  .why-dark { padding: 1.5rem 1.4rem; border-radius: var(--radius-lg); }
  .why-dark h2 { margin-bottom: 1.3rem; }
  .pre-cta { padding: 1.6rem 1.4rem; border-radius: var(--radius-lg); }
  .pre-cta-image { aspect-ratio: 16/10; }
  .image-marquee::before, .image-marquee::after { width: 60px; }
}

/* Mobile */
@media (max-width: 540px) {
  .announce { font-size: .76rem; padding: .55rem .75rem; }
  .announce a { display: inline-block; margin-left: .35rem; }
  .header-inner { padding: .55rem 0; }
  .brand { font-size: 1.05rem; }
  .brand-mark { width: 26px; height: 26px; font-size: .85rem; }
  .nav-cta .btn-dark { padding: .65rem 1rem; font-size: .82rem; }
  .nav-cta .btn-arrow .arrow { display: none; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.5rem); }
  .hero-cta { flex-direction: column; align-items: stretch; gap: .55rem; }
  .hero-cta .btn { justify-content: center; }
  .marquee-item { width: 160px; height: 200px; }
  .stat-num { font-size: clamp(2.2rem, 11vw, 3rem); }
  .testi-card { padding: 1.4rem; }
  .form-card { padding: 1.4rem 1.3rem; }
  .footer-bottom { font-size: .76rem; }
  .product-row .pr-content { gap: .7rem; }

  /* Mobile breathing room (spacing only — no type changes) */
  .hero { padding-top: 3.25rem; padding-bottom: 3.5rem; }   /* above eyebrow + before next section */
  .hero h1 { margin-bottom: 1.7rem; }                       /* space above the lead */
  .hero-cta { margin-top: 2.5rem; }                         /* space below the lead */
  .hero-text { margin-bottom: 2.75rem; }                    /* space before the image marquee */
  .product-features { margin-top: 2.5rem; }                 /* space between buttons and product cards */

  /* Bigger CTA image on mobile — trim padding around it + make it taller */
  .pre-cta { padding: 1.5rem 1rem; }
  .pre-cta-inner { padding: 1.75rem 1rem; gap: 1.5rem; }
  .pre-cta-visual { aspect-ratio: 1/1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
