/* ============================================================
   Webilin — Makro-inspired design system (Hebrew RTL)
   ============================================================ */
:root {
  --ink: #131c18;            /* near-black green-tinted text */
  --gray: #5f6b64;           /* body gray (AA-contrast) */
  --paper: #eef2ef;          /* page light (mint-tinted) */
  --mist: #e2e9e4;           /* fills, tracks, strips */
  --white: #ffffff;
  --dark: #004D43;           /* dark stages + primary buttons */
  --dark-soft: #14352d;      /* lighter dark (controls on stage) */
  --green: #004D43;          /* brand green accents */
  --lime: #CDEC69;           /* the accent */
  --olive: #5d712c;          /* lime's dark sibling */
  --peach: #ecd7bf;          /* pastel 2 */
  --blue: #c6d9e8;           /* pastel 3 */
  --lav: #d9d5de;            /* pastel 4 */
  --border: #dde4df;

  --font: "Heebo", system-ui, sans-serif;
  --serif: "Instrument Serif", serif;

  --r-pill: 999px;
  --r-sq: 14px;
  --r-card: 20px;
  --r-frame: 24px;
  --r-stage: 36px;

  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --pad: clamp(20px, 5vw, 72px);
  --colw: 1200px;
}

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

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

html { background: var(--paper); }   /* page background */
/* paint the device safe-area strips (notch / home indicator) with the navbar green */
html::before, html::after {
  content: ""; position: fixed; left: 0; right: 0;
  background: #004D43; z-index: 1; pointer-events: none;
}
html::before { top: 0; height: env(safe-area-inset-top, 0px); }
html::after { bottom: 0; height: env(safe-area-inset-bottom, 0px); }
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
/* subtle site-wide dot-grid texture (shows through the light sections) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(20, 32, 25, 0.05) 1px, transparent 1.6px);
  background-size: 28px 28px;
}

/* floating accent circles — minimal: 2 filled + 1 thick-bordered empty ring */
.deco { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.deco i { position: absolute; border-radius: 50%; will-change: transform; animation: decoFloat 9s ease-in-out infinite; }
@keyframes decoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.deco i:nth-child(1) { width: 22px; height: 22px; top: 16%; inset-inline-start: 7%; background: var(--lime); opacity: .6; }                                  /* filled lime */
.deco i:nth-child(2) { width: 46px; height: 46px; bottom: 16%; inset-inline-end: 8%; border: 4px solid rgba(0, 77, 67, 0.22); animation-delay: -2.5s; }     /* empty, thick border */
.deco i:nth-child(3) { width: 12px; height: 12px; top: 60%; inset-inline-start: 13%; background: var(--green); opacity: .5; animation-delay: -1.2s; }       /* small filled green */
.deco i:nth-child(n+4) { display: none; }
@media (prefers-reduced-motion: reduce) { .deco i, .deco--hero i { animation: none; } }

/* hero variant — same idea, bigger, above the hero bg, behind the copy */
.deco--hero { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.deco--hero i { position: absolute; border-radius: 50%; will-change: transform; animation: decoFloat 11s ease-in-out infinite; }
.deco--hero i:nth-child(1) { width: 130px; height: 130px; top: 12%; inset-inline-start: 5%; border: 6px solid rgba(205, 236, 105, 0.18); }                    /* big empty, thick border */
.deco--hero i:nth-child(2) { width: 64px; height: 64px; bottom: 18%; inset-inline-end: 7%; background: var(--lime); opacity: .5; animation-delay: -2.5s; }  /* filled lime */
.deco--hero i:nth-child(3) { width: 20px; height: 20px; top: 52%; inset-inline-start: 11%; background: rgba(205, 236, 105, 0.5); opacity: .6; animation-delay: -1.2s; } /* small filled lime */
.deco--hero i:nth-child(n+4) { display: none; }

::selection { background: var(--lime); color: var(--dark); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; }

/* sprite icons */
.ico { width: 16px; height: 16px; display: block; }
.badge__ico .ico { width: 11px; height: 11px; }
.btn__sq .ico { width: 15px; height: 15px; }
.mbullet__ico .ico { width: 24px; height: 24px; }
.bpill .ico { width: 16px; height: 16px; }
.orbit__chip .ico { width: 20px; height: 20px; }
.hero__wa-circle .ico { width: 18px; height: 18px; }
.show__check span .ico { width: 11px; height: 11px; }

/* ============================================================
   Shared atoms
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  width: fit-content;
  box-shadow: 0 12px 30px -16px rgba(20, 32, 25, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.badge__ico {
  display: inline-grid;
  place-items: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--dark);
  font-size: 11px;
  font-style: normal;
}
.badge--mist { /* uses the frosted-glass base */ }
.badge--ghost {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
/* hero badge — frosted-glass pill, fixed label + a rotating service word */
.badge--rot {
  gap: 9px; padding: 7px 18px;
  background: rgba(205, 236, 105, 0.07);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  border: 1px solid rgba(205, 236, 105, 0.34);
  color: #eef5ee;
  box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.badge--rot .badge__ico { width: 26px; height: 26px; border-radius: 9px; background: var(--lime); color: var(--dark); }
.badge--rot .badge__ico .ico { width: 13px; height: 13px; }
.badge--rot .badge__pre { color: rgba(238, 245, 238, 0.82); }
.badge--rot .badge__rot b { color: var(--lime); }
.badge__pre { color: var(--gray); font-weight: 600; }
.badge__rot { position: relative; display: inline-grid; height: 1.5em; line-height: 1.5em; overflow: hidden; vertical-align: bottom; }
.badge__rot b { grid-area: 1 / 1; height: 1.5em; line-height: 1.5em; font-weight: 700; color: var(--green); white-space: nowrap; will-change: transform; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: 22px; /* squarish — concentric with the 14px icon at 8px inset */
  font-weight: 600;
  font-size: 16px;
  padding: 8px 26px 8px 8px;
  padding-inline-start: 26px;
  padding-inline-end: 8px;
  min-height: 58px;
  transition: transform 160ms var(--ease), background 200ms ease;
  cursor: pointer;
}
.btn:active { transform: scale(0.97); }
.btn__sq {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: var(--r-sq);
  background: var(--lime);
  color: var(--dark);
  font-size: 18px;
  font-style: normal;
  transition: transform 300ms var(--ease);
}
.btn:hover .btn__sq { transform: translateX(-4px); }
.btn__sq--dark { background: var(--dark); color: var(--lime); }
.btn__sq--lime { background: var(--lime); color: var(--dark); }
.btn--dark { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: #11352d; }
.btn--lime { background: var(--lime); color: var(--dark); }
.btn--lime:hover { background: #d8f37e; }

.h2 {
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-top: 22px;
}
.hl {
  font-style: normal;
  color: var(--dark);
  background: var(--lime);
  border-radius: 14px;
  padding: 0 0.18em;
  box-decoration-break: clone;
}
.lead {
  margin-top: 18px;
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--gray);
  max-width: 56ch;
  line-height: 1.6;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: var(--r-pill);
  padding: 3px 10px;
  font-size: 12.5px;
  font-weight: 600;
  font-style: normal;
}
.chip--lime { background: rgba(205, 236, 105, 0.45); color: var(--olive); }
.chip--peach { background: var(--peach); color: #6d4f2c; }

[data-reveal] { opacity: 0; transform: translateY(26px); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-hero] { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   Nav — floating dark pill
   ============================================================ */
.nav {
  position: fixed;
  top: calc(12px + env(safe-area-inset-top, 0px));
  left: 50%;
  translate: -50% 0;
  z-index: 50;
  width: min(var(--colw), calc(100% - 24px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding-block: 8px;
  padding-inline: 22px 8px;
  background: rgba(0, 77, 67, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-pill);
  transition: transform 400ms var(--ease);
}
.nav.is-hidden { transform: translateY(-130%); }
.nav__logo img { height: 40px; width: auto; }
.nav__links { position: relative; display: flex; gap: 4px; font-size: 15px; font-weight: 500; }
.nav__links a {
  position: relative; z-index: 1;
  padding: 8px 15px; border-radius: var(--r-pill);
  color: rgba(255, 255, 255, 0.7);
  transition: color 280ms ease;
}
.nav__links a:hover, .nav__links a.is-lit { color: var(--dark); }
/* sliding lime pill that glides behind the active / hovered link */
.nav__ind {
  position: absolute; z-index: 0; top: 0; left: 0; height: 100%; width: 0;
  background: var(--lime); border-radius: var(--r-pill); opacity: 0;
  box-shadow: 0 6px 18px -6px rgba(205, 236, 105, 0.6);
  transition: transform 0.45s cubic-bezier(0.5, 0.05, 0.1, 1), width 0.45s cubic-bezier(0.5, 0.05, 0.1, 1), opacity 0.3s ease;
  pointer-events: none;
}
.nav__actions { display: flex; align-items: center; gap: 10px; }
/* language pill — compact 2-letter switch with a globe that spins on hover */
.nav__lang {
  display: inline-flex; align-items: center;
  font-size: 13.5px; font-weight: 800; letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.26); border-radius: 999px;
  padding: 7px 13px 7px 11px; line-height: 1; overflow: hidden; white-space: nowrap;
  transition: background 300ms var(--ease), color 300ms ease, border-color 300ms ease, box-shadow 300ms ease, transform 300ms var(--ease);
}
.nav__lang-globe { width: 15px; height: 15px; flex: 0 0 auto; margin-inline-end: 6px; transition: transform 700ms cubic-bezier(0.5, 0.05, 0.1, 1); }
/* compact code (عر / עב) that swaps for the full language name on hover */
.nav__lang-code, .nav__lang-full { display: inline-block; overflow: hidden; opacity: 1; transform: translateY(1px); transition: max-width 380ms var(--ease), opacity 260ms ease; }
.nav__lang-code { max-width: 3ch; }
.nav__lang-full { max-width: 0; opacity: 0; }
.nav__lang:hover, .nav__lang:focus-visible {
  background: var(--lime); color: var(--dark); border-color: var(--lime);
  transform: translateY(-1px); box-shadow: 0 8px 22px -7px rgba(205, 236, 105, 0.65); outline: none;
}
.nav__lang:hover .nav__lang-globe, .nav__lang:focus-visible .nav__lang-globe { transform: rotate(360deg); }
.nav__lang:hover .nav__lang-code, .nav__lang:focus-visible .nav__lang-code { max-width: 0; opacity: 0; }
.nav__lang:hover .nav__lang-full, .nav__lang:focus-visible .nav__lang-full { max-width: 9ch; opacity: 1; }
@media (prefers-reduced-motion: reduce) { .nav__lang-globe, .nav__lang-code, .nav__lang-full { transition: none; } }
.nav__cta { min-height: 48px; font-size: 15px; border-radius: var(--r-pill); }
.nav__cta .btn__sq { width: 36px; height: 36px; border-radius: 50%; }

/* hamburger — three bars morph into an X (hidden until mobile) */
.nav__burger { display: none; position: relative; width: 44px; height: 44px; flex: 0 0 auto; border: 0; background: transparent; cursor: pointer; border-radius: 13px; -webkit-tap-highlight-color: transparent; }
.nav__burger span { position: absolute; left: 11px; right: 11px; height: 2px; border-radius: 2px; background: #fff; transition: transform 0.36s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.2s ease, background 0.2s ease; }
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 27px; }
.nav__burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); background: var(--lime); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); background: var(--lime); }

/* full-screen overlay menu */
.navmenu {
  position: fixed; inset: 0; z-index: 45;
  display: flex; flex-direction: column; justify-content: center; gap: clamp(24px, 5vw, 40px);
  padding: clamp(96px, 20vw, 130px) var(--pad) clamp(40px, 8vw, 64px);
  background: radial-gradient(120% 90% at 100% 0%, #14463c 0%, var(--dark) 45%, #05302a 100%);
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity 0.42s var(--ease), transform 0.42s var(--ease), visibility 0.42s;
}
.navmenu.is-open { opacity: 1; visibility: visible; transform: none; }
.navmenu__links { display: flex; flex-direction: column; gap: 2px; }
.navmenu__links a {
  display: flex; align-items: baseline; gap: 16px;
  padding: clamp(10px, 2.6vw, 16px) 4px; border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: clamp(28px, 8.5vw, 46px); font-weight: 700; color: #fff; line-height: 1;
  opacity: 0; transform: translateY(18px);
}
.navmenu__links a i { font-size: clamp(12px, 3vw, 15px); font-weight: 700; font-style: normal; color: var(--lime); opacity: 0.85; letter-spacing: 0.05em; }
.navmenu__links a span { transition: transform 0.3s var(--ease); }
.navmenu__links a:hover span, .navmenu__links a:active span { transform: translateX(-8px); color: var(--lime); }
.navmenu.is-open .navmenu__links a { animation: navItemIn 0.55s cubic-bezier(0.23, 1, 0.32, 1) forwards; }
.navmenu.is-open .navmenu__links a:nth-child(1) { animation-delay: 0.10s; }
.navmenu.is-open .navmenu__links a:nth-child(2) { animation-delay: 0.16s; }
.navmenu.is-open .navmenu__links a:nth-child(3) { animation-delay: 0.22s; }
.navmenu.is-open .navmenu__links a:nth-child(4) { animation-delay: 0.28s; }
.navmenu.is-open .navmenu__links a:nth-child(5) { animation-delay: 0.34s; }
@keyframes navItemIn { to { opacity: 1; transform: none; } }
.navmenu__cta { align-self: flex-start; min-height: 54px; font-size: 16px; opacity: 0; }
.navmenu.is-open .navmenu__cta { animation: navItemIn 0.55s cubic-bezier(0.23, 1, 0.32, 1) 0.42s forwards; }
@media (prefers-reduced-motion: reduce) {
  .navmenu, .navmenu__links a, .navmenu__cta { transition: opacity 0.2s ease; animation: none; }
  .navmenu.is-open .navmenu__links a, .navmenu.is-open .navmenu__cta { opacity: 1; transform: none; }
}
/* hamburger takes over below 860px: links + the header CTA collapse into the
   overlay menu; the logo, the 2-letter language pill and the burger stay. */
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav { padding-inline: 18px 8px; }
}
body.nav-open { overflow: hidden; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: clamp(120px, 16vh, 170px) var(--pad) clamp(48px, 7vw, 90px);
}
.hero__inner {
  max-width: var(--colw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
[data-hero] { opacity: 0; transform: translateY(28px); }
.hero__title {
  margin-top: 26px;
  font-size: clamp(46px, 6.4vw, 88px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.hero__title .line { display: block; }
.hero__sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--gray);
  line-height: 1.6;
  max-width: 44ch;
}
.hero__cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero__wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.hero__wa-circle {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--mist);
  font-size: 16px;
  transition: background 200ms ease;
}
.hero__wa:hover .hero__wa-circle { background: var(--lime); }

.hero__visual { position: relative; min-height: 420px; }
.hero__frame {
  background: var(--white);
  border-radius: var(--r-frame);
  overflow: hidden;
  box-shadow: 0 30px 70px -40px rgba(12, 43, 36, 0.45);
  border: 1px solid var(--border);
  rotate: -2deg;
}
.hero__frame-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
}
.hero__frame-bar i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--mist);
}
.hero__frame--small {
  position: absolute;
  width: 46%;
  bottom: -8%;
  inset-inline-start: -6%;
  rotate: 3deg;
  border-radius: var(--r-card);
}

.glass {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow: 0 16px 40px -20px rgba(12, 43, 36, 0.35);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: max-content;
}
.glass__label { font-size: 13px; font-weight: 500; color: var(--gray); }
.glass__value {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.glass__value i { font-style: normal; color: #a9b3ad; font-size: 20px; font-weight: 500; }
.glass__value b { color: var(--olive); font-size: 13px; margin-inline-start: 6px; }
.glass--a { top: 6%; inset-inline-end: -3%; }
.glass--b { bottom: 14%; inset-inline-end: 10%; }

/* ============================================================
   Proof strip
   ============================================================ */
.strip { padding: clamp(36px, 5vw, 64px) var(--pad); }
.strip__head {
  max-width: var(--colw);
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.strip__title { font-size: 17px; font-weight: 600; }
.strip__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}
.strip__link .btn__sq { width: 34px; height: 34px; border-radius: 10px; font-size: 13px; }
.strip__box {
  max-width: var(--colw);
  margin: 0 auto;
  background: var(--mist);
  border-radius: var(--r-frame);
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 18px;
  padding: 28px;
}
.strip__logo {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: #93a29a;
  letter-spacing: 0.02em;
}
/* real client logo (icon + wordmark) — muted to match the wordmarks, full color on hover */
.strip__logo--img { display: inline-flex; align-items: center; gap: 13px; direction: ltr; }
.strip__logo--img img {
  width: auto; display: block;
  transition: transform .32s cubic-bezier(.23,1,.32,1);
}
.strip__logo--img .byti-mark { height: clamp(22px, 2.4vw, 31px); position: relative; top: -4px; }
.strip__logo--img .byti-word { height: clamp(18px, 2vw, 26px); }
.strip__logo--img .makina-mark { height: clamp(26px, 2.9vw, 38px); position: relative; top: -1px; }
.strip__logo--img .makina-word { height: clamp(16px, 1.8vw, 23px); }
.strip__logo--makina { gap: 9px; }
.strip__logo--img:hover img { transform: scale(1.05); }

/* ============================================================
   Mission
   ============================================================ */
.mission {
  position: relative;
  padding: clamp(90px, 13vw, 200px) var(--pad);
  text-align: center;
}
/* faint lime spotlight behind the mission copy */
.mission::before {
  content: ""; position: absolute; z-index: 0; inset: 0; pointer-events: none;
  background: radial-gradient(52% 42% at 50% 34%, rgba(205, 236, 105, 0.14), transparent 72%);
}
.mission > * { position: relative; z-index: 1; }
.mission__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 0 auto clamp(22px, 3vw, 36px);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em;
  color: var(--green);
  padding: 8px 16px; border-radius: 999px;
  background: rgba(205, 236, 105, 0.16); border: 1px solid rgba(205, 236, 105, 0.4);
}
.mission__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(205, 236, 105, 0.22); }
.mission__text {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(26px, 2.9vw, 40px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.mission__text .w { opacity: 0.14; color: var(--ink); }
/* key words get a lime highlighter sweep */
.mission__text .w--hl {
  color: var(--dark); font-weight: 700;
  background: linear-gradient(transparent 56%, rgba(205, 236, 105, 0.7) 56%);
  padding: 0 3px; border-radius: 3px;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.mission__divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 900px;
  margin: clamp(48px, 6vw, 80px) auto;
}
.mission__bullets {
  max-width: var(--colw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: start;
}
.mbullet { display: flex; align-items: center; gap: 16px; justify-content: center; }
.mbullet__ico {
  display: inline-grid;
  place-items: center;
  width: 50px; height: 50px;
  border-radius: var(--r-sq);
  background: var(--lime);
  color: var(--dark);
  font-size: 20px;
  flex-shrink: 0;
}
.mbullet__txt { display: flex; flex-direction: column; gap: 2px; }
.mbullet__txt b { font-size: 17px; font-weight: 600; }
.mbullet__txt i { font-style: normal; font-size: 14.5px; color: var(--gray); }

/* ============================================================
   Services — sticky stacking showcase cards
   ============================================================ */
.stack { padding: 0 var(--pad) clamp(60px, 8vw, 110px); }
.show {
  position: sticky;
  top: 92px;
  max-width: var(--colw);
  margin: 0 auto 28px;
  min-height: min(78vh, 640px);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  border-radius: var(--r-frame);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px -50px rgba(12, 43, 36, 0.4);
  will-change: transform;
}
.show__panel {
  padding: clamp(30px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.show__title {
  margin-top: 22px;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 600;
  line-height: 1.18;
  max-width: 14ch;
}
.show__sub {
  margin-top: 16px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--gray);
  max-width: 38ch;
}
.show__check {
  margin-top: auto;
  padding-top: 28px;
  font-size: 15px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
}
.show__check span {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--olive);
  color: var(--olive);
  font-size: 11px;
  flex-shrink: 0;
}
.show__media {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(24px, 3vw, 48px);
  overflow: hidden;
}
.show__media img {
  border-radius: var(--r-card);
  box-shadow: 0 24px 60px -30px rgba(12, 43, 36, 0.5);
  max-height: 78%;
  object-fit: cover;
}
.show__media--law { background: linear-gradient(135deg, #dfe7e2, #c9d6cf); }
.show__media--cook { background: linear-gradient(135deg, var(--blue), #e3edf4); }
.show__media--noir { background: linear-gradient(135deg, var(--lav), #eceaf0); }
.show__media--ai { background: linear-gradient(135deg, #dfe9d2, var(--peach)); }
.glass--media { bottom: 9%; inset-inline-start: 8%; position: absolute; }

.aibubbles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
  width: 100%;
}
.aibubble {
  padding: 13px 18px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.5;
  width: fit-content;
  max-width: 90%;
}
.aibubble--bot {
  background: var(--white);
  border: 1px solid var(--border);
  border-start-start-radius: 4px;
}
.aibubble--user {
  background: var(--dark);
  color: var(--white);
  align-self: flex-end;
  border-start-end-radius: 4px;
}

/* ============================================================
   Dark stages (shared)
   ============================================================ */
.stage {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--r-stage);
  margin: clamp(20px, 3vw, 40px) clamp(10px, 1.5vw, 20px);
  padding: clamp(64px, 8vw, 120px) var(--pad);
}
.stage__title {
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 600;
  margin-top: 22px;
  max-width: var(--colw);
}
.stage--bento .badge--ghost,
.stage--bento .stage__title { max-width: var(--colw); margin-inline: auto; display: block; }
.stage--bento .badge--ghost { display: inline-flex; }
.stage--bento { text-align: start; background: radial-gradient(120% 80% at 86% -8%, rgba(205, 236, 105, 0.09), transparent 48%), radial-gradient(80% 60% at 6% 108%, rgba(205, 236, 105, 0.06), transparent 50%), var(--dark); }
.stage--bento > .badge--ghost { position: relative; inset-inline-start: max(0px, calc((100% - var(--colw)) / 2)); }
.stage--bento > .stage__title { margin-inline: auto; }

.stage__hero {
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}
.stage__hero--big { margin-top: 26px; }
.stage__sub {
  margin: 18px auto 0;
  text-align: center;
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.65);
  max-width: 52ch;
  line-height: 1.65;
}

/* ============================================================
   Bento
   ============================================================ */
.bento {
  max-width: var(--colw);
  margin: clamp(40px, 5vw, 64px) auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(212px, auto);
  gap: 18px;
  grid-template-areas:
    "pills pills growth growth orbit orbit"
    "pills pills leads  leads  orbit orbit";
}
.bcard--pills { grid-area: pills; }
.bcard--white { grid-area: growth; }
.bcard--orbit { grid-area: orbit; }
.bcard--leads { grid-area: leads; }
.bcard {
  position: relative;
  border-radius: var(--r-card);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--dark-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform .4s cubic-bezier(.23, 1, .32, 1), box-shadow .4s ease, border-color .4s ease;
}
@media (hover: hover) {
  .bcard:hover { transform: translateY(-5px); }
  .bcard:not(.bcard--white):hover { border-color: rgba(205, 236, 105, 0.28); box-shadow: 0 36px 66px -32px rgba(0, 0, 0, 0.55); }
  .bcard--white:hover { box-shadow: 0 36px 66px -32px rgba(0, 77, 67, 0.4); }
}
.bcard__title { font-size: 18px; font-weight: 600; }
.bcard__cap { font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, 0.6); margin-top: auto; }
.bcard__big { font-size: clamp(44px, 4vw, 64px); line-height: 1; }

.bcard--white { background: var(--white); color: var(--ink); border-color: transparent; }
.bcard--white .bcard__cap { color: var(--gray); }
.bcard--white .bcard__big { color: var(--green); }

.bcard--pills {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 30px);
  border: 1px solid rgba(205, 236, 105, 0.2);
  background:
    radial-gradient(130% 100% at 82% 0%, rgba(205, 236, 105, 0.22), transparent 52%),
    linear-gradient(160deg, #0d4b41, #062a24);
}
.bcard__lead { font-size: clamp(22px, 2.6vw, 33px); font-weight: 600; line-height: 1.18; letter-spacing: -0.02em; color: #fff; }
.bcard__lead em { font-style: normal; color: var(--lime); }
.bpills { display: flex; flex-wrap: wrap; gap: 11px; }
.bpill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: var(--r-pill);
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 15px;
  font-weight: 500;
  rotate: var(--r, 0deg);
}

.bcard--leads { background: var(--white); color: var(--ink); border-color: transparent; }
.leadrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--paper);
  border-radius: 12px;
  padding: 12px 16px;
}
.leadrow__name { font-size: 14px; font-weight: 500; }

/* combined "support + automations" card: title on top, orbit in the middle, alert at the bottom */
.bcard--orbit { align-items: center; text-align: center; justify-content: space-between; gap: 16px; background: linear-gradient(160deg, #15372f, var(--dark-soft)); }
.bcard--orbit .bcard__title { align-self: stretch; }
.bcard--orbit .orbit { width: 158px; height: 158px; margin: 2px auto; }
.bcard--orbit .orbit__center { font-size: 38px; }
.bcard--orbit .orbit__chip { transform: translate(-50%, -50%) rotate(calc(var(--a) * 90deg)) translateY(-72px) rotate(calc(var(--a) * -90deg)); }
.bcard--orbit .alertcard { align-self: stretch; margin-top: 0; }
.orbit { position: relative; width: 170px; height: 170px; margin-top: 8px; }
.orbit__center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 40px;
  color: var(--lime);
}
.orbit__chip {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark);
  display: grid;
  place-items: center;
  font-size: 17px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(calc(var(--a) * 90deg)) translateY(-78px) rotate(calc(var(--a) * -90deg));
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.4);
}

.ministat {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.ministat span { font-size: 13.5px; color: var(--gray); flex: 1; }
.ministat b { font-size: 22px; color: var(--ink); }

.bcard--support { background: linear-gradient(150deg, var(--dark-soft), #233c27); }
.alertcard {
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  overflow: hidden;
  margin-top: auto;
}
.alertcard__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  font-size: 14.5px;
  background: rgba(255, 255, 255, 0.06);
}
.alertcard__ico {
  display: inline-grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--peach);
  color: #6d4f2c;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.alertcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--dark);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
}
.alertcard__foot i {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--lime);
  color: var(--dark);
  font-style: normal;
  font-size: 12px;
}
.alertcard__foot i .ico { width: 13px; height: 13px; }

.spark { position: relative; margin-top: auto; }
.bspark { display: block; width: 100%; height: 56px; }
.bspark__line { will-change: stroke-dashoffset; }
.bbars { width: 100%; height: 44px; margin-top: auto; }
.bbars rect { transform-box: fill-box; transform-origin: bottom; }

/* sparkline travelling dot — perfect circle, sits on the line tip */
.spark__dot {
  position: absolute;
  left: 0; top: 0;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--lime);
  border: 3px solid var(--green);
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  z-index: 2;
}
.spark__dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--lime);
  opacity: 0;
}
.spark__dot.is-live::after { animation: sparkHalo 1.9s ease-out infinite; }
@keyframes sparkHalo {
  0%   { transform: scale(0.55); opacity: 0.7; }
  100% { transform: scale(1.9);  opacity: 0; }
}
.bcard--white .bcard__cap { margin-top: 12px; }

/* compact, centered closing band */
.stage__bigline {
  max-width: var(--colw);
  margin: clamp(46px, 6vw, 84px) auto 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: clamp(34px, 4.5vw, 58px);
}
.bigline__copy { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.stage__bigline .stage__hero { font-size: clamp(28px, 3.6vw, 48px); text-align: center; line-height: 1.12; }
.stage__bigline .stage__sub { margin: 0 auto; text-align: center; max-width: 44ch; }
.stage__bigline .stage__cta { margin-top: 4px; }
.stage__stats {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.2vw, 26px) clamp(18px, 3vw, 34px);
}
.sstat { display: flex; flex-direction: row; align-items: baseline; gap: 11px; text-align: start; }
.sstat__num {
  direction: ltr;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 0.82;
  letter-spacing: -0.015em;
  color: var(--lime);
  display: inline-flex;
  align-items: flex-start;
  flex: 0 0 auto;
}
.sstat__suf {
  font-size: 0.44em;
  margin-inline-start: 2px;
  transform: translateY(0.12em);
  color: rgba(205, 236, 105, 0.78);
}
.sstat__label { font-size: 13px; line-height: 1.35; color: rgba(255, 255, 255, 0.62); max-width: 14ch; }

/* ============================================================
   Process
   ============================================================ */
.process {
  position: relative;
  max-width: var(--colw);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 160px) var(--pad);
  text-align: center;
}
.process .lead { margin-inline: auto; }

/* tilted, overlapping cards */
.pgrid {
  position: relative;
  margin-top: clamp(56px, 7vw, 90px);
  display: flex; justify-content: center; align-items: flex-start;
  text-align: start;
  padding-bottom: 30px;
}
.pcard {
  position: relative;
  flex: 0 0 auto;
  width: clamp(280px, 30vw, 420px);
  min-height: clamp(280px, 25vw, 370px);
  background: var(--white);
  border-radius: 30px;
  /* Hanzo-style frosted rim: a translucent white border over the page bg */
  border: clamp(6px, 0.6vw, 9px) solid rgba(255, 255, 255, 0.55);
  background-clip: padding-box;
  box-shadow: 0 36px 70px -34px rgba(20, 32, 25, 0.34), 0 3px 8px -3px rgba(20, 32, 25, 0.1), 0 0 0 1px rgba(20, 32, 25, 0.05);
  padding: clamp(24px, 2.4vw, 34px);
  display: flex; flex-direction: column; justify-content: space-between;
  rotate: var(--rot, 0deg);
  margin-top: var(--mt, 0);
  z-index: var(--z, 1);
  will-change: transform;
}
.pcard + .pcard { margin-inline-start: clamp(-34px, -1.8vw, -16px); }
/* faint number watermark for flair */
.pcard__ghost {
  position: absolute; top: clamp(8px, 1.2vw, 16px); inset-inline-end: clamp(18px, 2vw, 30px);
  font-family: var(--serif); font-style: italic; font-size: clamp(78px, 8vw, 128px); line-height: 0.78;
  color: rgba(20, 32, 25, 0.05); letter-spacing: -0.04em; z-index: 0; pointer-events: none;
}
.pcard--mid .pcard__ghost { color: rgba(0, 77, 67, 0.09); }
.pcard__head, .pcard__txt, .pcard__foot { position: relative; z-index: 1; }
.pcard__head { display: flex; align-items: center; justify-content: space-between; }
.pcard__ico { width: clamp(48px, 4.4vw, 58px); height: clamp(48px, 4.4vw, 58px); border-radius: 16px; display: grid; place-items: center; background: var(--mist); color: var(--green); transition: transform .4s cubic-bezier(.23, 1, .32, 1); }
.pcard__ico .ico { width: clamp(22px, 2.2vw, 26px); height: clamp(22px, 2.2vw, 26px); }
.pcard--mid .pcard__ico { background: var(--green); color: var(--lime); }
.pcard:hover .pcard__ico { transform: rotate(-6deg) scale(1.06); }
.pcard__count { font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; }
.pcard__count i { font-style: normal; font-weight: 600; color: rgba(20, 32, 25, 0.66); }
.pcard__txt { margin-top: clamp(20px, 2.4vw, 32px); }
.pcard__txt h3 { font-size: clamp(21px, 2vw, 27px); font-weight: 600; letter-spacing: -0.01em; }
.pcard__txt p { margin-top: 10px; font-size: 15px; color: var(--gray); line-height: 1.6; }
.pcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: clamp(18px, 2vw, 26px); padding-top: clamp(15px, 1.8vw, 21px); border-top: 1px solid rgba(20, 32, 25, 0.08); }
.pcard__out { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ink); }
.pcard__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 3px rgba(205, 236, 105, 0.32); flex: 0 0 auto; }
.pcard__tag { font-size: 12px; font-weight: 700; color: var(--green); background: var(--mist); border-radius: 999px; padding: 6px 12px; white-space: nowrap; flex: 0 0 auto; }
/* the middle card overlaps the last card's start edge — keep its content clear */
.pcard:last-of-type .pcard__head,
.pcard:last-of-type .pcard__txt,
.pcard:last-of-type .pcard__foot { padding-inline-start: clamp(24px, 2.6vw, 48px); }

/* squiggle connectors */
.squig { position: absolute; z-index: 5; pointer-events: none; overflow: visible; }
.squig--a { top: -4%; right: 30%; width: clamp(130px, 13vw, 185px); transform: translate(72px, 4px) rotate(24deg); }
.squig--b { top: 24%; left: 27%; width: clamp(110px, 11.5vw, 158px); transform: translate(-8px, 12px); }
.squig path { fill: none; }
.squig__dot { fill: var(--paper); transform-box: fill-box; transform-origin: center; }
.squig__tracer { fill: var(--green); filter: drop-shadow(0 0 4px rgba(0, 77, 67, 0.55)); }

.promise {
  position: relative;
  overflow: hidden;
  margin-top: clamp(40px, 5vw, 64px);
  background: linear-gradient(135deg, #00564b, #00423a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-card);
  padding: clamp(28px, 3.4vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  text-align: start;
  flex-wrap: wrap;
}
.promise__glow { position: absolute; inset-inline-end: -90px; top: -110px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(205, 236, 105, 0.28), transparent 64%); pointer-events: none; }
.promise__copy { position: relative; z-index: 1; }
.promise h3 { color: #fff; font-size: clamp(23px, 2.5vw, 36px); font-weight: 600; line-height: 1.18; letter-spacing: -0.02em; margin-top: 16px; }
.promise__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pchip { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #eaf3ea; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.11); border-radius: 999px; padding: 9px 15px; }
.pchip .ico { width: 16px; height: 16px; color: var(--lime); }
.promise__cta { position: relative; z-index: 1; flex: 0 0 auto; }

/* ============================================================
   Portfolio spotlight — dark carousel
   ============================================================ */
.stage--work { text-align: center; overflow: hidden; }
.carousel {
  max-width: var(--colw);
  margin: clamp(40px, 5vw, 64px) auto 0;
  overflow: visible;
}
.carousel__track {
  display: flex;
  gap: 24px;
  will-change: transform;
  cursor: grab;
  touch-action: pan-y;
}
.carousel__track.is-grabbing { cursor: grabbing; }
.carousel__track img,
.carousel__track video { -webkit-user-drag: none; user-select: none; }
/* full-bleed screenshot with a compact floating accent card */
.slide {
  position: relative;
  flex: 0 0 min(920px, 100%);
  border-radius: var(--r-card);
  overflow: hidden;
  text-align: start;
  aspect-ratio: 16 / 10;
  background: #0b1510;
}
.slide__shot { position: absolute; inset: 0; }
.slide__shot img,
.slide__shot video { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.slide::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(8, 18, 14, 0.34), transparent 44%);
}
.slide__info {
  position: absolute; z-index: 2;
  inset-block-end: clamp(18px, 2vw, 30px);
  inset-inline-start: clamp(18px, 2vw, 30px);
  width: clamp(264px, 40%, 380px);
  border-radius: 22px;
  padding: clamp(18px, 1.7vw, 26px);
  box-shadow: 0 26px 56px -22px rgba(8, 18, 14, 0.55);
  display: flex; flex-direction: column; gap: 9px;
}
.slide__tag {
  align-self: flex-start;
  font-size: 12px; font-weight: 600;
  background: rgba(0, 0, 0, 0.12); border-radius: 999px; padding: 4px 12px;
}
.slide__info h3 { font-size: clamp(21px, 2.1vw, 29px); font-weight: 700; line-height: 1.1; }
.slide__info > p { font-size: 14.5px; line-height: 1.5; opacity: 0.82; }
.slide__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; flex-wrap: wrap; }
.slide__kpi { font-size: 13.5px; font-weight: 700; background: rgba(0, 0, 0, 0.14); border-radius: 999px; padding: 6px 13px; }
.slide__cta { font-size: 14px; font-weight: 700; border-bottom: 1.5px solid currentColor; padding-bottom: 2px; white-space: nowrap; }

.slide--lime .slide__info { background: var(--lime); color: var(--dark); }
.slide--peach .slide__info { background: var(--peach); color: #3c2e1a; }
.slide--blue .slide__info { background: var(--blue); color: #1d3242; }
.slide--lav .slide__info { background: var(--lav); color: #322c3a; }
.slide--mint .slide__info { background: #cfe6df; color: #173a32; }

.carousel__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}
.carousel__btns { display: flex; gap: 10px; }
.cbtn {
  width: 46px; height: 46px;
  border-radius: var(--r-sq);
  background: var(--dark-soft);
  color: var(--white);
  font-size: 18px;
  transition: background 200ms ease, transform 160ms var(--ease);
}
.cbtn:hover { background: #1c443a; }
.cbtn:active { transform: scale(0.94); }
.carousel__dashes { display: flex; gap: 8px; }
.dash {
  width: 26px; height: 4px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.2);
  transition: background 250ms ease;
  cursor: pointer;
  border: none;
  padding: 0;
}
.dash.is-on { background: var(--lime); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  position: relative;
  max-width: var(--colw);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 150px) var(--pad);
}
.faq__grid {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.faq__rail { display: flex; flex-direction: column; gap: 6px; position: sticky; top: 110px; }
.ftab {
  text-align: start;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray);
  padding: 14px 18px;
  border-radius: 12px;
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}
.ftab.is-on {
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 10px 30px -18px rgba(12, 43, 36, 0.35);
}
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.qa {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.qa.is-hide { display: none; }
.qa__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-size: 16.5px;
  font-weight: 600;
  text-align: start;
  color: var(--ink);
}
.qa__q span {
  font-size: 20px;
  font-weight: 400;
  color: var(--gray);
  transition: rotate 300ms var(--ease);
  flex-shrink: 0;
}
.qa.is-open .qa__q span { rotate: 45deg; }
.qa__a { height: 0; overflow: hidden; }
.qa__a p {
  padding: 0 22px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 64ch;
}
.contactcard {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: clamp(26px, 3.2vw, 44px);
  min-height: clamp(260px, 26vw, 320px);
  display: flex;
  align-items: center;
}
.contactcard__copy { max-width: min(60%, 540px); display: flex; flex-direction: column; align-items: flex-start; }
.contactcard__copy .btn { margin-top: clamp(20px, 2.4vw, 28px); }
.contactcard h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; margin-top: 16px; }
.contactcard__sub { margin-top: 8px; font-size: 15px; color: var(--gray); max-width: 44ch; }
/* portrait anchored to the corner, cropped by the card's bottom edge */
.contactcard__photo {
  position: absolute;
  inset-inline-end: clamp(12px, 4vw, 70px);
  bottom: clamp(-72px, -5vw, -42px);
  height: clamp(240px, 26vw, 330px);
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
  filter: drop-shadow(0 24px 40px rgba(8, 18, 14, 0.18));
}

/* ============================================================
   Final CTA + booking
   ============================================================ */
.stage--cta { text-align: center; }
.stage__mark {
  height: 40px;
  width: auto;
  margin: 0 auto;
  opacity: 0.9;
}
.book {
  max-width: 980px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  text-align: start;
}
.book__form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-frame);
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, 0.6);
}
.book__form h3 { font-size: clamp(22px, 2vw, 28px); font-weight: 600; margin-bottom: 4px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field span { font-size: 13px; font-weight: 600; color: var(--gray); }
.field input,
.field textarea {
  font-family: var(--font);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  resize: vertical;
  transition: border-color 200ms ease, background 200ms ease;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa69f; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
.book__submit { justify-content: space-between; width: 100%; margin-top: 4px; }
.book__note { text-align: center; font-size: 13.5px; color: var(--gray); }
.book__side { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.book__or { font-size: 16px; font-weight: 600; color: rgba(255, 255, 255, 0.85); }
.book__mail {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 200ms ease;
}
.book__mail:hover { color: var(--lime); }
.book__list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.book__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
}
.book__list .ico { width: 14px; height: 14px; color: var(--lime); flex-shrink: 0; }

/* ============================================================
   Footer
   ============================================================ */
/* ============================================================
   Powered-by — Apple-style liquid-glass chip above the footer
   ============================================================ */
.powb {
  max-width: var(--colw);
  margin: clamp(44px, 7vw, 96px) auto 0;
  padding: 0 var(--pad);
  display: flex;
  justify-content: center;
  perspective: 1000px;
}
.powb__card {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 30px;
  border-radius: var(--r-pill);
  text-decoration: none;
  overflow: hidden;
  /* bold solid dark-green pill — the brand colour reads loud and clear */
  background:
    radial-gradient(120% 160% at 18% -20%, rgba(205, 236, 105, 0.28), rgba(205, 236, 105, 0) 46%),
    linear-gradient(150deg, #0a5e51 0%, #004d43 52%, #00362f 100%);
  border: 1px solid rgba(205, 236, 105, 0.55);
  /* lime glow halo + green depth shadow + crisp inner rim */
  box-shadow:
    0 0 0 1px rgba(0, 54, 47, 0.5),
    0 18px 44px -14px rgba(205, 236, 105, 0.5),
    0 34px 64px -26px rgba(0, 54, 47, 0.7),
    0 2px 10px -4px rgba(0, 0, 0, 0.35),
    inset 0 1px 1px rgba(205, 236, 105, 0.45),
    inset 0 -16px 30px -18px rgba(0, 0, 0, 0.55);
  transform: translateY(0) rotateX(0);
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
}
.powb__card:hover {
  transform: translateY(-6px) rotateX(8deg);
  border-color: rgba(205, 236, 105, 0.95);
  box-shadow:
    0 0 0 1px rgba(0, 54, 47, 0.5),
    0 26px 56px -14px rgba(205, 236, 105, 0.75),
    0 46px 82px -26px rgba(0, 54, 47, 0.78),
    0 2px 10px -4px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(205, 236, 105, 0.6),
    inset 0 -16px 34px -16px rgba(0, 0, 0, 0.55);
}

/* lime light blooming inside the dark glass — screen-blended so it glows */
.powb__aurora {
  position: absolute; z-index: 0; width: 150px; height: 150px; border-radius: 50%;
  filter: blur(30px); pointer-events: none; mix-blend-mode: screen;
}
.powb__aurora--lime {
  background: radial-gradient(circle, rgba(205, 236, 105, 0.85), rgba(205, 236, 105, 0) 70%);
  top: -55%; inset-inline-start: -2%; opacity: 0.75;
  animation: powbAuroraA 8s ease-in-out infinite;
}
.powb__aurora--green {
  background: radial-gradient(circle, rgba(120, 220, 170, 0.7), rgba(120, 220, 170, 0) 70%);
  bottom: -60%; inset-inline-end: 0%; opacity: 0.6;
  animation: powbAuroraB 9s ease-in-out infinite;
}
@keyframes powbAuroraA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(42px, 34px) scale(1.3); }
}
@keyframes powbAuroraB {
  0%, 100% { transform: translate(0, 0) scale(1.1); }
  50% { transform: translate(-38px, -30px) scale(1.35); }
}

/* specular sheen — a wet highlight that slides across the glass */
.powb__sheen {
  position: absolute; inset: 0; z-index: 3; border-radius: inherit; pointer-events: none;
  background: linear-gradient(112deg,
    transparent 34%, rgba(255, 255, 255, 0.35) 44%,
    rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.35) 56%, transparent 66%);
  mix-blend-mode: screen;
  transform: translateX(-130%);
  animation: powbSheen 6s var(--ease) infinite;
}
@keyframes powbSheen { 0%, 20% { transform: translateX(-130%); } 48%, 100% { transform: translateX(130%); } }

/* bright top rim — the lit edge of liquid glass */
.powb__edge {
  position: absolute; inset: 0; z-index: 2; border-radius: inherit; pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 42%);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px;
  opacity: 0.85;
}

.powb__pre {
  position: relative; z-index: 4;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  font-weight: 700; color: rgba(205, 236, 105, 0.9);
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}
.powb__div {
  position: relative; z-index: 4; width: 1px; height: 24px; flex: none;
  background: linear-gradient(rgba(205, 236, 105, 0), rgba(205, 236, 105, 0.5), rgba(205, 236, 105, 0));
}
/* original white-and-lime logo sits straight on the dark glass — no recolour needed */
.powb__logo {
  position: relative; z-index: 4;
  height: 30px; width: auto; display: block; flex: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
  transition: transform 0.6s var(--ease);
}
.powb__card:hover .powb__logo { transform: scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  .powb__aurora, .powb__sheen { animation: none; }
  .powb__sheen { display: none; }
}

.footer {
  padding: clamp(64px, 8vw, 110px) var(--pad) 0;
  overflow: hidden;
}
.footer__top {
  max-width: var(--colw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.footer__logo {
  width: clamp(150px, 16vw, 210px);
  height: auto;
}
/* brand / CTA block */
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; max-width: 360px; }
.footer__tag { font-size: 15px; color: var(--gray); line-height: 1.6; max-width: 34ch; }
.footer__cta { align-self: flex-start; }
.footer__status { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--ink); }
.footer__pulse { width: 9px; height: 9px; border-radius: 50%; background: #2bb673; box-shadow: 0 0 0 0 rgba(43, 182, 115, 0.5); animation: mdLive 2.2s ease-out infinite; }

.footer__cols { display: flex; gap: clamp(36px, 6vw, 90px); flex-wrap: wrap; }
.fcol { display: flex; flex-direction: column; gap: 13px; }
.fcol__title { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--ink); margin-bottom: 12px; padding-bottom: 11px; position: relative; }
.fcol__title::after { content: ""; position: absolute; bottom: 0; inset-inline-start: 0; width: 26px; height: 3px; border-radius: 2px; background: var(--lime); }

/* nav links — lime arrow slides in on hover */
.fcol--nav a { display: inline-flex; align-items: center; gap: 7px; width: fit-content; font-size: 15px; color: var(--gray); transition: color 0.22s ease; }
.fcol--nav a .fcol__arrow { font-style: normal; color: var(--green); opacity: 0; transform: translateX(7px); transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); }
.fcol--nav a:hover { color: var(--ink); }
.fcol--nav a:hover .fcol__arrow { opacity: 1; transform: translateX(0); }

/* contact icon rows */
.fcol--contact { gap: 14px; }
.fcontact { display: inline-flex; align-items: center; gap: 11px; width: fit-content; }
.fcontact__ico { width: 40px; height: 40px; flex: 0 0 auto; border-radius: 12px; display: grid; place-items: center; background: var(--mist); color: var(--green); transition: background 0.3s ease, color 0.3s ease, transform 0.35s cubic-bezier(0.23, 1, 0.32, 1); }
.fcontact__ico .ico { width: 18px; height: 18px; }
.fcontact__tx { display: flex; flex-direction: column; line-height: 1.25; }
.fcontact__tx b { font-size: 14.5px; font-weight: 700; color: var(--ink); transition: color 0.22s ease; }
.fcontact__tx em { font-size: 12px; font-style: normal; color: var(--gray); }
.fcontact:hover .fcontact__ico { background: var(--green); color: var(--lime); transform: translateY(-2px) rotate(-5deg); }
.fcol__note { margin-top: 16px; font-size: 12.5px; color: var(--gray); line-height: 1.6; }

/* social icon buttons — outlined chip that fills with brand color on hover */
.fsocial { display: flex; gap: 13px; margin-top: 2px; }
.fsocial__btn {
  width: 56px; height: 56px; border-radius: 18px;
  display: grid; place-items: center;
  color: #fff; border: none;
  position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.23,1,.32,1), box-shadow .3s ease;
}
.fsocial__btn .ico { width: 28px; height: 28px; position: relative; z-index: 2; transition: transform .3s cubic-bezier(.23,1,.32,1); }
/* brand fill — shown by default so they read as active/live */
.fsocial__btn::before { content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit; }
.fsocial__btn--ig::before { background: linear-gradient(48deg, #f9ce34 0%, #ee2a7b 48%, #6228d7 92%); }
.fsocial__btn--fb::before { background: linear-gradient(160deg, #2a8bff, #0a53c4); }
.fsocial__btn--li::before { background: linear-gradient(160deg, #26a0e8, #0a66c2); }
/* glossy shine that sweeps across on hover */
.fsocial__btn::after {
  content: ""; position: absolute; inset: 0; z-index: 1; border-radius: inherit;
  background: linear-gradient(115deg, transparent 34%, rgba(255,255,255,.5) 50%, transparent 66%);
  transform: translateX(-120%); transition: transform .6s var(--ease);
}
.fsocial__btn:hover::after { transform: translateX(120%); }
/* soft brand glow by default, stronger on hover */
.fsocial__btn--ig { box-shadow: 0 9px 20px -9px rgba(221, 42, 123, .55); }
.fsocial__btn--fb { box-shadow: 0 9px 20px -9px rgba(24, 119, 242, .5); }
.fsocial__btn--li { box-shadow: 0 9px 20px -9px rgba(10, 102, 194, .5); }
.fsocial__btn:hover { transform: translateY(-4px) scale(1.05); }
.fsocial__btn--ig:hover { box-shadow: 0 18px 32px -10px rgba(221, 42, 123, .72); }
.fsocial__btn--fb:hover { box-shadow: 0 18px 32px -10px rgba(24, 119, 242, .68); }
.fsocial__btn--li:hover { box-shadow: 0 18px 32px -10px rgba(10, 102, 194, .68); }
.fsocial__btn:hover .ico { transform: scale(1.12) rotate(-4deg); }
.fsocial__btn:active { transform: translateY(-1px) scale(.96); }

.footer__giant {
  position: relative;
  margin: clamp(50px, 7vw, 90px) calc(var(--pad) * -1) 0;
  padding-bottom: clamp(1px, 0.3vw, 6px);
}
.footer__word {
  font-size: clamp(110px, 21.5vw, 330px);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.04em;
  color: var(--dark);
  white-space: nowrap;
  display: block;
  text-align: left;
  padding-inline-start: var(--pad);
  margin-bottom: -0.07em;
}
.footer__copy {
  position: absolute;
  bottom: 0;
  inset-inline-end: var(--pad);
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  border-radius: 16px 16px 0 0;
  padding: 18px 22px 22px;
  white-space: nowrap;
}

/* ============================================================
   Imagery — brand duotone treatment
   grayscale base → deep-green shadows (multiply) → lime glow (screen)
   ============================================================ */
.duo { position: relative; overflow: hidden; border-radius: var(--r-frame); isolation: isolate; background: var(--dark); }
.duo img { display: block; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05) brightness(1.02); }
.duo::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(150deg, rgba(0, 77, 67, 0.74), rgba(6, 30, 26, 0.9));
  mix-blend-mode: multiply;
}
.duo::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(120% 85% at 86% 4%, rgba(205, 236, 105, 0.5), transparent 52%);
  mix-blend-mode: screen;
}

/* ============================================================
   About — editorial band (real team + UX imagery)
   ============================================================ */
.about {
  position: relative;
  max-width: var(--colw);
  margin-inline: auto;
  padding: clamp(64px, 9vw, 130px) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}
.about__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.about__title { font-size: clamp(30px, 4vw, 50px); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }
.about__lead { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.65; color: var(--gray); max-width: 46ch; }
/* stat bar — white with a lime green border */
.about__facts {
  display: inline-flex; align-self: flex-start; margin-top: 6px;
  border-radius: 22px;
  background: transparent;
  border: 2px solid rgba(205, 236, 105, 0.75);
}
.afact {
  display: flex; flex-direction: column; gap: 5px;
  padding: 18px clamp(20px, 2vw, 28px);
}
.afact + .afact { border-inline-start: 1px solid rgba(205, 236, 105, 0.45); }
.afact b {
  font-family: var(--font); font-style: normal; font-weight: 800;
  font-size: clamp(34px, 3.7vw, 48px); line-height: 1; letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--dark) 32%, #2f9e6f);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.afact span { font-size: 13px; color: var(--gray); font-weight: 500; }
/* value chips */
.about__chips { display: flex; flex-wrap: wrap; gap: 9px; }
.achip { font-size: 13.5px; font-weight: 600; color: var(--green); background: var(--mist); border-radius: 999px; padding: 8px 16px; transition: background .25s ease, color .25s ease, transform .3s cubic-bezier(.23,1,.32,1); }
.achip:hover { background: var(--green); color: var(--lime); transform: translateY(-2px); }
.about__link { margin-top: 6px; }
.about__link .btn__sq { transition: transform 0.25s ease; }
.about__link:hover .btn__sq { transform: translateX(-5px); }

.about__media { position: relative; isolation: isolate; }
/* bold lime accent block peeking behind the image */
.about__accent { position: absolute; z-index: -1; inset-inline-end: -26px; bottom: -26px; width: 64%; aspect-ratio: 1 / 0.82; background: var(--lime); border-radius: clamp(22px, 2.6vw, 32px); rotate: -4deg; }
.about__img { position: relative; z-index: 1; aspect-ratio: 4 / 3.15; border-radius: clamp(22px, 2.6vw, 32px); box-shadow: 0 48px 90px -44px rgba(6, 30, 26, 0.55); }
.about__tag {
  position: absolute;
  top: 18px; inset-inline-start: 18px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(0, 49, 43, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff; font-size: 13px; font-weight: 500;
  padding: 9px 15px; border-radius: var(--r-pill);
}
/* floating team chip — clean solid white (no backdrop-filter = smooth float) */
.about__chip {
  position: absolute; z-index: 4; inset-inline-end: -22px; bottom: 30px;
  display: inline-flex; align-items: center; gap: 13px;
  background: #fff;
  border: 1px solid rgba(20, 32, 25, 0.08);
  border-radius: 20px; padding: 10px 17px 10px 10px;
  box-shadow: 0 28px 54px -24px rgba(6, 30, 26, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  will-change: transform;
}
.about__chip-avwrap { position: relative; flex: 0 0 auto; }
.about__chip-av {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover; display: block;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(205, 236, 105, 0.85);
}
/* pulsing "online" dot */
.about__chip-live {
  position: absolute; bottom: 0; inset-inline-end: 0;
  width: 12px; height: 12px; border-radius: 50%;
  background: #34c759; border: 2.5px solid #fff;
  animation: chipPulse 2.1s ease-out infinite;
}
@keyframes chipPulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.55); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(52, 199, 89, 0); }
}
.about__chip-tx { display: flex; flex-direction: column; line-height: 1.32; gap: 1px; }
.about__chip-tx b { display: inline-flex; align-items: center; gap: 5px; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.about__chip-check { width: 15px; height: 15px; color: var(--green); flex: 0 0 auto; }
.about__chip-tx em { font-size: 12px; font-style: normal; color: var(--gray); }
@media (prefers-reduced-motion: reduce) { .about__chip-live { animation: none; } }
/* bigger, clearly-visible circles in the about section (not hidden behind the image) */
.about .deco i:nth-child(1) { width: 44px; height: 44px; top: 7%; inset-inline-start: 5%; opacity: .7; }
.about .deco i:nth-child(2) { width: 92px; height: 92px; bottom: 9%; inset-inline-start: 6%; border-width: 5px; border-color: rgba(0, 77, 67, 0.3); }
.about .deco i:nth-child(3) { width: 26px; height: 26px; top: 46%; inset-inline-start: 47%; background: var(--green); opacity: .55; }
.about__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
  animation: tagPulse 1.9s ease-out infinite;
}
@keyframes tagPulse {
  0%   { box-shadow: 0 0 0 0 rgba(205, 236, 105, 0.55); }
  100% { box-shadow: 0 0 0 11px rgba(205, 236, 105, 0); }
}

/* ============================================================
   Cinematic CTA band (full-bleed, parallax)
   ============================================================ */
.band {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 76vh, 680px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(64px, 9vw, 120px) var(--pad);
}
.band__media {
  position: absolute;
  inset: -14% 0;
  z-index: 0;
  border-radius: 0;
}
.band__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.band .duo::before { background: linear-gradient(180deg, rgba(6, 30, 26, 0.84), rgba(0, 77, 67, 0.8)); }
.band__inner {
  position: relative; z-index: 2;
  max-width: 760px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.band__title { color: #fff; font-size: clamp(30px, 4.6vw, 58px); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }
.band__sub { color: rgba(255, 255, 255, 0.82); font-size: clamp(15px, 1.5vw, 18px); max-width: 44ch; }
.band__cta { margin-top: 6px; }

/* ============================================================
   Showcase scatter — phone + floating cards
   ============================================================ */
.habit { padding: clamp(70px, 10vw, 150px) var(--pad) clamp(40px, 6vw, 90px); overflow: hidden; }
.habit__head { max-width: 980px; margin-inline: auto; text-align: center; }
.habit__title { font-size: clamp(27px, 4.3vw, 55px); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }
.ichip {
  display: inline-block; vertical-align: middle;
  width: 1.55em; height: 1.02em; border-radius: 999px; overflow: hidden;
  margin: 0 0.05em; transform: translateY(-0.05em);
  box-shadow: 0 5px 14px -5px rgba(6, 30, 26, 0.45);
}
.ichip img { width: 100%; height: 100%; object-fit: cover; }
/* habit heading — 3 lines, with a live toggle between אתרים / אפליקציות */
.habit__ln { display: block; }
.habit__ln--tog { display: flex; align-items: center; justify-content: center; gap: 0.3em; flex-wrap: wrap; }
.habit__tog {
  position: relative; flex: 0 0 auto; display: inline-block;
  width: 1.55em; height: 0.85em; border-radius: 999px;
  background: linear-gradient(160deg, #0a4f45, #05302a);
  border: 1px solid rgba(205, 236, 105, 0.4);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.4), 0 8px 18px -10px rgba(0, 54, 47, 0.7);
}
.habit__knob {
  position: absolute; top: 50%; left: 0.11em;
  width: 0.63em; height: 0.63em; border-radius: 50%;
  background: linear-gradient(160deg, #eaff9e, #cdec69);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35), 0 0 11px rgba(205, 236, 105, 0.75);
  animation: habitTog 2.8s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}
@keyframes habitTog {
  0%, 40% { transform: translate(0, -50%); }
  50%, 90% { transform: translate(0.71em, -50%); }
  100% { transform: translate(0, -50%); }
}
@media (prefers-reduced-motion: reduce) { .habit__knob { animation: none; } }
.habit__sub { margin-top: 26px; font-size: clamp(15px, 1.5vw, 18px); color: var(--gray); }
.habit__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 16px; }
.htag { background: var(--mist); color: var(--ink); border-radius: var(--r-pill); padding: 8px 16px; font-size: 14px; font-weight: 500; }

.habit__stage {
  direction: ltr;
  position: relative;
  width: 100vw;
  margin: clamp(36px, 5vw, 60px) calc(50% - 50vw) 0;
  height: clamp(520px, 56vw, 640px);
}
/* two opposing marquee rows behind the phone */
.habit__rows {
  position: absolute; inset: 0; z-index: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.hrow { position: absolute; left: 0; right: 0; height: 50%; overflow: visible; }
.hrow--top { top: 0; }
.hrow--bottom { bottom: 0; }
.htrack {
  display: flex; align-items: center; gap: 22px;
  height: 100%; width: max-content; padding-inline: 11px;
  will-change: transform;
}
.hcard { flex: 0 0 auto; width: clamp(138px, 13vw, 166px); margin-top: var(--oy, 0); }
.hcard__in {
  display: block;
  border-radius: 42px;
  background: var(--white);
  box-shadow: 0 22px 44px -26px rgba(6, 30, 26, 0.4), 0 2px 8px -4px rgba(6, 30, 26, 0.16);
  overflow: hidden;
}
.hcard--photo .hcard__in { aspect-ratio: 1 / 1.04; }
.hcard--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hcard--icon .hcard__in {
  aspect-ratio: 1 / 1.04;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  padding: 14px;
}
.hico { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 10px 22px -10px rgba(0, 0, 0, 0.35); }
.hico .ico { width: 22px; height: 22px; }
.hcard--icon b { font-size: 14px; font-weight: 600; color: var(--ink); direction: rtl; text-align: center; }

/* phone */
.hphone {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(252px, 26vw, 310px);
  z-index: 5; will-change: transform, opacity;
}
.hscreen {
  direction: rtl;
  border-radius: 38px;
  background: #0c1713;
  border: 8px solid #05100c;
  box-shadow: 0 50px 90px -40px rgba(6, 30, 26, 0.6), 0 0 0 1px rgba(0, 0, 0, 0.35);
  padding: 16px 14px 18px;
  color: #fff;
  overflow: hidden;
}
.hs__status { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: rgba(255, 255, 255, 0.7); padding: 2px 6px 10px; }
.hs__sig { display: inline-flex; gap: 3px; align-items: flex-end; }
.hs__sig i { width: 3px; height: 9px; background: rgba(255, 255, 255, 0.6); border-radius: 1px; }
.hs__head b { display: block; font-size: 16px; font-weight: 600; }
.hs__head span { font-size: 11.5px; color: rgba(255, 255, 255, 0.5); }
.hs__chart { background: #11211b; border-radius: 18px; padding: 14px; margin-top: 12px; }
.hs__crow { display: flex; align-items: center; justify-content: space-between; }
.hs__big { font-size: 26px; color: var(--lime); }
.hs__sel { font-size: 10.5px; color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.08); padding: 4px 9px; border-radius: 999px; }
.hs__svg { width: 100%; height: 64px; margin-top: 8px; display: block; }
.hs__line { will-change: stroke-dashoffset; }
.hs__days { display: flex; justify-content: space-between; margin-top: 4px; }
.hs__days span { font-size: 9.5px; color: rgba(255, 255, 255, 0.4); }
.hs__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.hstat { background: #11211b; border-radius: 14px; padding: 10px 12px; }
.hstat b { font-size: 20px; font-style: italic; color: #fff; }
.hstat span { display: block; font-size: 10.5px; color: rgba(255, 255, 255, 0.55); margin-top: 2px; }
.hs__shead { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; }
.hs__shead b { font-size: 13.5px; font-weight: 600; }
.hs__arrows i { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); font-size: 12px; margin-inline-start: 4px; font-style: normal; }
.hs__stacks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.hstack { border-radius: 14px; padding: 10px; }
.hstack i { font-style: normal; font-size: 9px; font-weight: 600; padding: 2px 7px; border-radius: 999px; background: rgba(255, 255, 255, 0.65); display: inline-block; color: #142019; }
.hstack b { display: block; font-size: 12.5px; margin-top: 8px; color: #142019; }
.hstack span { font-size: 9.5px; color: rgba(20, 32, 25, 0.62); }
.hstack--green { background: #cfe8c4; }
.hstack--lav { background: #d9d5ee; }

/* ============================================================
   Makro-style hero — pinned, dashboard scales up on scroll
   ============================================================ */
.mk { position: relative; height: 185vh; background: #023b33; }
.mk__pin { position: sticky; top: 0; height: 100vh; overflow: hidden; }
/* deep-green hero canvas: top-right lime glow + faint blueprint grid (matches webilin.co.il) */
.mk__pin::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(62% 52% at 84% -8%, rgba(205, 236, 105, 0.22), transparent 60%),
    radial-gradient(52% 46% at 6% 112%, rgba(205, 236, 105, 0.10), transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #06463c 0%, #023b33 46%, #012a25 100%);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px, 100% 100%;
  -webkit-mask-image: linear-gradient(180deg, #000 62%, transparent 96%);
  mask-image: linear-gradient(180deg, #000 62%, transparent 96%);
}
.mk .serif { font-family: var(--font); font-style: normal; } /* sans inside dashboard */

/* hero options toggle */
.mk__opts {
  position: absolute; top: 82px; left: 50%; transform: translateX(-50%); z-index: 14;
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 999px; padding: 6px 18px 6px 6px;
  box-shadow: 0 10px 30px -12px rgba(20, 32, 25, 0.22);
}
.mk__opts-l { font-size: 13px; color: var(--gray); }
.mk__opts-track { display: flex; gap: 2px; background: #1b1b1b; border-radius: 999px; padding: 3px; }
.mkopt { width: 30px; height: 30px; border-radius: 50%; background: transparent; border: 0; color: #fff; font-size: 13px; font-weight: 600; cursor: pointer; }
.mkopt.is-on { background: var(--lime); color: #142019; }

/* hero scene */
.mk__scene {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 142px var(--pad) 0;
}
.mk__copy { max-width: 840px; display: flex; flex-direction: column; align-items: center; }
.mk__copy .badge { margin-bottom: 26px; }
.mk__title { font-size: clamp(34px, 6vw, 82px); font-weight: 600; line-height: 1.1; letter-spacing: -0.03em; }
.mk__line { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.08em 0.26em; }
.mk__title .w { display: inline-flex; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.mk__title .w__i { display: inline-block; }
.w--ink { color: var(--ink); }
.w--gray { color: #969ca4; }
/* hero headline on the dark canvas: crisp white + lime accent words */
.mk__title .w--ink { color: #f3f8ef; }
.mk__title .w--gray { color: var(--lime); }
.tcard {
  flex: 0 0 auto;
  display: inline-block; height: 0.9em; aspect-ratio: 1.4 / 1;
  border-radius: 0.2em; overflow: hidden; vertical-align: middle;
  border: 2px solid #000;
  box-shadow: 0 5px 14px -3px rgba(0, 0, 0, 0.35);
  rotate: var(--rot, 0deg);
  will-change: transform;
}
.tcard img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tcard--logo { background: #262626; position: relative; box-shadow: none; }
/* lime chip holding a spark icon (icon tinted like the "webilin" wordmark) */
.tcard--star { background: var(--lime); border-color: var(--lime); display: grid; place-items: center; box-shadow: 0 5px 14px -3px rgba(20, 32, 25, 0.25); }
.tcard--star .ico { width: 58%; height: 58%; color: #555555; }
/* scrolling "webilin" ticker inside the chip */
.tcard--logo .tmarq {
  position: absolute; top: 50%; left: 0; direction: ltr;
  display: flex; white-space: nowrap;
  animation: tmarq 20s linear infinite; will-change: transform;
}
.tcard--logo .tmarq b { font-size: 0.56em; font-weight: 600; font-style: italic; color: var(--lime); letter-spacing: -0.02em; line-height: 1; padding: 0 0.16em; }
@keyframes tmarq { from { transform: translate(-50%, -50%); } to { transform: translate(0, -50%); } }

/* second inline chip: a little monitor with a dashboard "open" on its screen */
.tcard--mon {
  aspect-ratio: 1.62 / 1;
  background: #fff;
  border: 0.06em solid #fff;          /* thin white screen bezel */
  border-radius: 0.22em;
  overflow: visible;                  /* let the stand peek below */
  box-shadow: 0 7px 18px -6px rgba(20, 32, 25, 0.45), inset 0 0 0 1px rgba(20, 32, 25, 0.06);
}
.tcard--mon img { border-radius: 0.15em; object-position: top center; }
/* the monitor's neck + foot */
.tcard--mon::after {
  content: ""; position: absolute; top: 100%; left: 50%;
  width: 26%; height: 0.12em; transform: translateX(-50%);
  background: #fff; border: 0.05em solid rgba(20, 32, 25, 0.12); border-top: none;
  border-radius: 0 0 0.07em 0.07em;
}

/* CHIP 1 — glowing AI gradient orb with a twinkling spark */
.tcard--orb {
  aspect-ratio: 1 / 1; border: none; border-radius: 0.3em; overflow: visible;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #eaff9e 0%, #cdec69 32%, #4fd1a5 72%, #2bb7a8 100%);
  background-size: 200% 200%;
  animation: orbShift 5s ease-in-out infinite;
  box-shadow: 0 0 22px -2px rgba(205, 236, 105, 0.65), inset 0 1px 2px rgba(255, 255, 255, 0.55), inset 0 -3px 6px rgba(0, 60, 50, 0.25);
}
@keyframes orbShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.tcard--orb .orb__spark {
  width: 56%; height: 56%; color: #08302a;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.4));
  animation: orbTwinkle 2.4s ease-in-out infinite;
}
@keyframes orbTwinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.92; }
  50% { transform: scale(1.22) rotate(90deg); opacity: 1; }
}

/* CHIP 2 — live glass "data" chip with animated equalizer bars */
.tcard--live {
  aspect-ratio: 1.55 / 1; border: 1px solid rgba(205, 236, 105, 0.3); border-radius: 0.24em;
  background: linear-gradient(150deg, rgba(12, 60, 52, 0.94), rgba(6, 40, 35, 0.94));
  display: flex; align-items: flex-end; justify-content: center; gap: 0.1em;
  padding: 0.2em 0.18em; overflow: hidden;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(0, 0, 0, 0.35), 0 0 18px -6px rgba(205, 236, 105, 0.45);
}
.tcard--live i {
  flex: 0 0 0.14em; height: 40%; border-radius: 0.06em;
  background: linear-gradient(to top, #4fd1a5, #cdec69);
  box-shadow: 0 0 6px rgba(205, 236, 105, 0.5);
  animation: liveBar 1.15s ease-in-out infinite;
}
.tcard--live i:nth-child(2) { animation-delay: 0.18s; }
.tcard--live i:nth-child(3) { animation-delay: 0.36s; }
.tcard--live i:nth-child(4) { animation-delay: 0.54s; }
@keyframes liveBar { 0%, 100% { height: 32%; } 50% { height: 88%; } }

@media (prefers-reduced-motion: reduce) {
  .tcard--orb, .tcard--orb .orb__spark, .tcard--live i { animation: none; }
}
.mk__sub { margin-top: 22px; margin-inline: auto; font-size: clamp(15px, 1.5vw, 19px); color: rgba(238, 245, 238, 0.72); max-width: 34ch; line-height: 1.5; }
.mk__cta { margin-top: 38px; display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.mk__get { display: inline-flex; align-items: center; gap: 14px; background: var(--lime); color: var(--dark); border-radius: 24px; padding: 8px 26px 8px 8px; font-size: 17px; font-weight: 600; box-shadow: 0 18px 40px -18px rgba(205, 236, 105, 0.7); }
.mk__get-ico { width: 46px; height: 46px; border-radius: 16px; background: var(--dark); color: var(--lime); display: grid; place-items: center; font-size: 19px; transition: transform 0.25s ease; }
.mk__get:hover .mk__get-ico { transform: translateX(-4px); }
.mk__trust { display: flex; flex-direction: column; gap: 7px; }
.mk__avs { display: flex; }
.mk__avs img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid #eceef4; margin-inline-start: -10px; }
.mk__avs img:first-child { margin-inline-start: 0; }
.mk__trust span { font-size: 13px; color: var(--gray); }

/* portrait — blended with a soft mask */
.mk__photo { position: relative; height: 100%; }
.mk__photo img {
  position: absolute; inset-block-end: 0; inset-inline: 0; margin-inline: auto;
  height: 94%; max-width: 100%; object-fit: contain; object-position: bottom center;
  -webkit-mask-image: radial-gradient(115% 96% at 50% 40%, #000 56%, transparent 80%);
          mask-image: radial-gradient(115% 96% at 50% 40%, #000 56%, transparent 80%);
}

/* floating stat cards */
.mk__float {
  position: absolute; z-index: 9; background: #fff;
  background-clip: padding-box;             /* keep white fill inside the border so the ring blends with the dark bg */
  border-radius: 24px; padding: 18px 20px; width: clamp(228px, 19vw, 272px);
  border: 6px solid rgba(205, 236, 105, 0.72);  /* thicker, more solid muted-lime ring */
  box-shadow: 0 26px 48px -22px rgba(0, 0, 0, 0.5);
  will-change: transform;
  /* ALT looks — swap border/box-shadow for one of these:
     option 6 neumorphic: border:none; box-shadow: 15px 15px 30px rgba(1,22,18,0.5), -15px -15px 30px rgba(150,215,190,0.16);
     option 9 pillow:     border:none; border-radius:30px; box-shadow: rgba(0,0,0,0.17) 0 -14px 16px inset, rgba(0,0,0,0.15) 0 -22px 20px inset, rgba(0,0,0,0.10) 0 -46px 28px inset, rgba(0,0,0,0.06) 0 2px 1px, rgba(0,0,0,0.09) 0 4px 2px, 0 8px 4px, 0 16px 8px, 0 30px 14px; */
}
.mk__float--red { top: 55%; left: 58%; rotate: 8deg; }
.mk__float--liq { top: 65%; left: 32%; rotate: -8deg; }
/* on desktop GSAP drives rotation, so neutralise the CSS rotate there
   (box-shadow / look come from the base .mk__float rule — option 9 pillow) */
@media (min-width: 821px) {
  .mk__float { rotate: 0deg; }
}
.fcard__head { display: flex; align-items: center; justify-content: space-between; }
.fcard__head span { font-weight: 700; color: rgba(15, 22, 18, 0.95); font-size: 15px; }
.fcard__chip { font-style: normal; font-size: 11px; background: #eef1ec; color: rgba(20, 32, 25, 0.5); padding: 3px 9px; border-radius: 999px; }
.fcard__cap { font-size: 12.5px; color: rgba(20, 32, 25, 0.45); margin-top: 6px; }
.fcard__days { display: flex; gap: 7px; margin-top: 12px; }
.fcard__days span { flex: 1; text-align: center; padding: 8px 4px; border-radius: 12px; }
.fcard__days .is-on { background: #f0f1ee; }
.fcard__days b { display: block; font-size: 14px; }
.fcard__days em { font-style: normal; font-size: 10px; color: rgba(20, 32, 25, 0.45); }
.fcard__big { display: flex; align-items: baseline; gap: 3px; margin-top: 14px; }
.fcard__big b { font-size: clamp(34px, 3vw, 42px); font-weight: 600; letter-spacing: -0.02em; }
.fcard__big span { font-size: 18px; color: rgba(20, 32, 25, 0.5); }
.fcard__tri { margin-inline-start: auto; align-self: flex-end; color: #7a9b3a; font-style: normal; font-size: 13px; }

/* dashboard that scales up */
.mk__dash { position: absolute; inset: 0; z-index: 8; display: grid; place-items: center; padding: clamp(76px, 9vh, 96px) 0 clamp(20px, 3vh, 36px); will-change: transform; }
.mdash {
  width: min(1300px, calc(100% - 2 * var(--pad))); margin-inline: auto;
  background: #fff; border-radius: 30px; overflow: hidden;
  box-shadow: 0 30px 80px -34px rgba(20, 32, 25, 0.3);
  display: grid; grid-template-columns: 78px 1fr;
}
.mdash__side { display: flex; flex-direction: column; align-items: center; padding: 26px 0; gap: 26px; border-inline-start: 1px solid #eef0f3; }
.mdash__logo { width: 26px; height: 26px; border-radius: 50%; background: conic-gradient(#142019 0 60%, #c3c7d0 0 100%); }
.mdash__nav { display: flex; flex-direction: column; gap: 18px; }
.mdash__nav i { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: rgba(20, 32, 25, 0.4); }
.mdash__nav i.is-on { background: var(--lime); color: #142019; }
.mdash__nav .ico { width: 19px; height: 19px; }
.mdash__me { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; margin-top: auto; }

.mdash__main { background: #eceef4; padding: clamp(20px, 2.4vw, 40px); overflow: hidden; }
.mdash__head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; }
.mdash__head h2 { font-size: clamp(26px, 3.2vw, 46px); font-weight: 600; letter-spacing: -0.015em; }
.mdash__head p { display: flex; align-items: center; gap: 9px; margin-top: 8px; font-size: 14px; font-weight: 600; color: rgba(20, 32, 25, 0.55); }
.mdash__dot { width: 11px; height: 11px; border-radius: 50%; background: #2bb673; box-shadow: 0 0 0 0 rgba(43, 182, 115, 0.5); animation: mdLive 2.2s ease-out infinite; }
@keyframes mdLive { 0% { box-shadow: 0 0 0 0 rgba(43, 182, 115, 0.5); } 70% { box-shadow: 0 0 0 8px rgba(43, 182, 115, 0); } 100% { box-shadow: 0 0 0 0 rgba(43, 182, 115, 0); } }
@media (prefers-reduced-motion: reduce) { .mdash__dot { animation: none; } }
.mdash__tools { display: flex; align-items: center; gap: 12px; }
.mdash__sel { display: inline-flex; align-items: center; gap: 22px; background: #fff; border-radius: 999px; padding: 12px 20px; font-size: 14px; }
.mdash__sel em { font-style: normal; color: var(--gray); }
.mdash__ico { width: 44px; height: 44px; border-radius: 50%; background: transparent; border: 0; color: #142019; cursor: pointer; }
.mdash__ico .ico { width: 18px; height: 18px; }
.mdash__plus { width: 48px; height: 48px; border-radius: 50%; background: #142019; color: var(--lime); border: 0; font-size: 22px; cursor: pointer; }

.mdash__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 16px; }
.mdcard { background: #fff; border-radius: 20px; padding: clamp(16px, 1.5vw, 24px); }
.mdcard--income { grid-column: 1; grid-row: 1 / span 2; }
.mdcard--liq { grid-column: 2; grid-row: 1; display: flex; flex-direction: column; }
.mdcard--red { grid-column: 3; grid-row: 1; display: flex; flex-direction: column; }
/* lime ring to match the floating cards that fly into these slots */
.mdcard--liq, .mdcard--red { border: 5px solid rgba(205, 236, 105, 0.72); }
.mdcard--src { grid-column: 2 / span 2; grid-row: 2; }
.mdcard--year { margin-top: 16px; }
.mdcard__top { display: flex; align-items: flex-start; justify-content: space-between; }
.mdcard__top b { font-size: 18px; font-weight: 600; }
.mdtag { font-style: normal; font-size: 12px; font-weight: 600; background: #eef1ec; color: #6f8a3e; padding: 4px 11px; border-radius: 999px; }
.mdtag--dark { background: #142019; color: #fff; }
.mdcard__num { font-size: clamp(30px, 3.4vw, 46px); font-weight: 600; margin-top: 8px; letter-spacing: -0.015em; }
.mdcard__sub { font-size: 13px; color: rgba(20, 32, 25, 0.5); margin-top: 4px; }
.mdcard__big { display: flex; align-items: baseline; gap: 4px; margin-top: auto; padding-top: 18px; }
.mdcard__big b { font-size: clamp(34px, 3.6vw, 52px); font-weight: 600; letter-spacing: -0.02em; }
.mdcard__big span { font-size: 20px; color: rgba(20, 32, 25, 0.5); }
.mdtri { margin-inline-start: auto; align-self: flex-end; color: #7a9b3a; font-style: normal; }
.mdcard__days { display: flex; gap: 8px; margin-top: 14px; }
.mdcard__days span { flex: 1; text-align: center; padding: 8px 4px; border-radius: 12px; }
.mdcard__days .is-on { background: #eceef4; }
.mdcard__days b { display: block; font-size: 15px; }
.mdcard__days em { font-style: normal; font-size: 10px; color: rgba(20, 32, 25, 0.45); }

.mdchart { position: relative; margin-top: 16px; height: clamp(160px, 19vh, 230px); }
.mdchart svg { position: absolute; inset: 0 0 24px; width: 100%; height: calc(100% - 24px); background: repeating-linear-gradient(to right, rgba(20, 32, 25, 0.07) 0 1px, transparent 1px 22px); border-radius: 10px; }
.mdchart__line { will-change: stroke-dashoffset; }
.mdchart__pulse { will-change: stroke-dashoffset; filter: drop-shadow(0 0 5px rgba(205, 236, 105, 0.95)); }
.mdchart__x { position: absolute; inset-inline: 6px; bottom: 0; display: flex; justify-content: space-between; font-size: 11px; color: rgba(20, 32, 25, 0.4); }
.mdcard__foot { display: flex; margin-top: 20px; border-top: 1px solid #eef0f3; padding-top: 16px; }
.mdcard__foot div { flex: 1; padding-inline: 14px; border-inline-start: 1px solid #eef0f3; }
.mdcard__foot div:first-child { border: 0; padding-inline-start: 0; }
.mdcard__foot span { display: block; font-size: 12.5px; color: rgba(20, 32, 25, 0.5); margin-bottom: 4px; }
.mdcard__foot b { font-size: 17px; font-weight: 600; }

.mdbar { display: flex; gap: 4px; margin-top: 16px; }
.mdbar i { height: 14px; border-radius: 999px; }
.mdlist { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.mdlist li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.mddot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.mdlist__n { flex: 1; }
.mdlist em { font-style: normal; color: rgba(20, 32, 25, 0.5); width: 42px; text-align: end; }
.mdlist b { width: 74px; text-align: end; font-weight: 600; }
.mdlist .is-faint { opacity: 0.5; }
.mdyearbars { display: flex; align-items: flex-end; justify-content: space-between; gap: 5px; height: 56px; margin-top: 16px; }
.mdyearbars i { flex: 1; height: var(--h, 40%); background: #dde4df; border-radius: 5px 5px 3px 3px; will-change: transform; }
.mdyearbars i:last-child { background: var(--lime); }
.mdyear { display: flex; justify-content: space-between; margin-top: 10px; }
.mdyear span { font-size: 12px; color: rgba(20, 32, 25, 0.4); }

/* mobile/tablet: drop the pin + scale, stack the hero statically */
@media (max-width: 820px) {
  /* mission bullets → a connected vertical journey, icons threaded by a lime line */
  .mission__bullets {
    grid-template-columns: 1fr;
    max-width: 340px;
    gap: 0;
    position: relative;
  }
  .mission__bullets::before {
    content: "";
    position: absolute;
    inset-inline-start: 32px;            /* RTL start = right; aligns to icon centre */
    top: 44px; bottom: 44px;
    width: 2px;
    background: linear-gradient(var(--lime) 0 60%, color-mix(in srgb, var(--lime) 35%, transparent));
    border-radius: 2px;
    z-index: 0;
  }
  .mbullet {
    justify-content: flex-start;
    gap: 16px;
    padding: 14px 8px;
    position: relative;
    z-index: 1;
  }
  .mbullet__ico {
    box-shadow: 0 0 0 7px var(--paper), 0 10px 22px -10px rgba(0, 77, 67, 0.5);
  }
  .mbullet__txt b { font-size: 18px; }
  .mbullet__txt i { font-size: 14px; }
  /* ===== Pinned animated hero on phones/tablets too — compact demo + small flying cards ===== */
  .mk { height: 150vh; }
  .mk__pin { position: sticky; top: 0; height: 100svh; overflow: hidden; }
  .mk__opts { position: absolute; top: 78px; left: 50%; transform: translateX(-50%); margin: 0; width: max-content; }
  .mk__scene { position: absolute; inset: 0; padding: clamp(160px, 40vw, 210px) var(--pad) 0; justify-content: flex-start; }
  .mk__copy { max-width: none; }

  /* mobile: no separate floating cards — the dashboard already shows these as real cards in place */
  .mk__float { display: none; }
  .fcard__head span { font-size: 11px; }
  .fcard__chip { font-size: 9px; padding: 2px 7px; }
  .fcard__cap { font-size: 10px; margin-top: 3px; }
  .fcard__days { gap: 4px; margin-top: 7px; }
  .fcard__days span { padding: 5px 2px; border-radius: 8px; }
  .fcard__days b { font-size: 11px; }
  .fcard__days em { font-size: 8px; }
  .fcard__big { margin-top: 8px; }
  .fcard__big b { font-size: 25px; }
  .fcard__big span { font-size: 12px; }
  .fcard__tri { font-size: 11px; }

  /* FULL dashboard as a faithful miniature — renders at desktop width, JS scales it to fit */
  .mk__dash { position: absolute; inset: 0; transform: none; padding: 0; display: block; }
  /* cool lime double-ring around the demo (values enlarged to survive the ~0.4x scale) */
  .mdash { position: absolute; top: 31%; left: 50%; width: 900px; margin: 0; border-radius: 60px; border: 5px solid var(--lime); transform-origin: center center; box-shadow: 0 0 0 16px rgba(205, 236, 105, 0.22), 0 40px 80px -36px rgba(20, 32, 25, 0.34), 0 0 70px -8px rgba(205, 236, 105, 0.5); }
  /* keep the desktop layout (sidebar, header, 3-col grid, sources, year) intact */

  /* the 3-step journey, moved into the hero, sits as a compact row under the dashboard */
  .mission.is-off-m { display: none; }
  .mk__pin .mk__steps {
    position: absolute; top: 58%; left: 50%; transform: translateX(-50%);
    width: min(366px, calc(100% - 2 * var(--pad)));
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
    max-width: none; margin: 0; z-index: 6;
  }
  /* the client-logo strip, moved into the hero, sits below the steps */
  .mk__pin .mk__proof {
    position: absolute; top: 79%; left: 50%; transform: translateX(-50%);
    width: min(366px, calc(100% - 2 * var(--pad)));
    padding: 0; margin: 0; z-index: 6;
  }
  .mk__pin .mk__proof .strip__head { display: none; }
  .mk__pin .mk__proof .strip__box {
    min-height: 0; padding: 11px 12px; gap: 8px 16px; border-radius: 14px;
    background: rgba(226, 233, 228, 0.7);
  }
  .mk__pin .mk__proof .strip__logo { font-size: 11.5px; }
  .mk__pin .mk__proof .strip__logo--img { gap: 6px; }
  .mk__pin .mk__proof .strip__logo--img .byti-mark { height: 17px; top: -3px; }
  .mk__pin .mk__proof .strip__logo--img .byti-word { height: 14px; }
  .mk__pin .mk__proof .strip__logo--img .makina-mark { height: 20px; }
  .mk__pin .mk__proof .strip__logo--img .makina-word { height: 12px; }
  .mk__pin .mk__steps::before { display: none; }   /* drop the vertical connector here */
  .mk__pin .mk__steps .mbullet {
    flex-direction: column; justify-content: flex-start; align-items: center; text-align: center;
    gap: 7px; padding: 13px 6px; background: #fff; border-radius: 15px;
    box-shadow: 0 16px 32px -20px rgba(20, 32, 25, 0.28);
  }
  .mk__pin .mk__steps .mbullet__ico { width: 36px; height: 36px; box-shadow: none; }
  .mk__pin .mk__steps .mbullet__ico .ico { width: 19px; height: 19px; }
  .mk__pin .mk__steps .mbullet__txt { align-items: center; gap: 1px; }
  .mk__pin .mk__steps .mbullet__txt b { font-size: 11.5px; line-height: 1.15; }
  .mk__pin .mk__steps .mbullet__txt i { font-size: 9px; }
}

/* ============================================================
   Offer / booking — Hanzo-style light panel
   ============================================================ */
.offer { padding: clamp(44px, 6vw, 100px) var(--pad); }
.offer__head { max-width: var(--colw); margin: 0 auto clamp(32px, 4vw, 56px); text-align: center; }
.offer__head .lead { margin-inline: auto; }
.offer__panel {
  max-width: var(--colw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: clamp(28px, 4vw, 60px);
  background: linear-gradient(160deg, #00564b, #00423a);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: clamp(30px, 4vw, 46px);
  padding: clamp(28px, 3.8vw, 58px);
  box-shadow: 0 60px 120px -50px rgba(6, 22, 18, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* LEFT */
.offer__left { display: flex; flex-direction: column; }
.offer__toggle { position: relative; align-self: flex-start; display: inline-flex; background: rgba(255, 255, 255, 0.1); border-radius: 999px; padding: 5px; }
.offer__opt { position: relative; z-index: 1; border: 0; background: transparent; cursor: pointer; font-family: inherit; font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, 0.55); padding: 9px 20px; border-radius: 999px; transition: color 0.3s; }
.offer__opt.is-on { color: var(--dark); }
.offer__thumb { position: absolute; z-index: 0; top: 5px; bottom: 5px; left: 5px; width: 120px; border-radius: 999px; background: var(--lime); box-shadow: 0 5px 14px -5px rgba(20, 32, 25, 0.35); transition: left 0.42s var(--ease), width 0.42s var(--ease); }

.offer__price { display: flex; align-items: baseline; gap: 10px; margin-top: clamp(26px, 3vw, 44px); }
.offer__big { font-size: clamp(54px, 8vw, 104px); font-weight: 700; line-height: 0.88; letter-spacing: -0.03em; color: #fff; }
.offer__unit { font-size: clamp(17px, 2vw, 26px); color: rgba(255, 255, 255, 0.55); font-weight: 500; }
.offer__sub { margin-top: 22px; font-size: clamp(15px, 1.5vw, 18px); line-height: 1.6; color: rgba(255, 255, 255, 0.72); max-width: 42ch; }
.offer__ways { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.offer__way { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: #eaf3ea; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 999px; padding: 8px 14px; }
.offer__way .ico { width: 16px; height: 16px; color: var(--lime); }

.offer__foot { margin-top: auto; padding-top: clamp(28px, 4vw, 48px); }
.offer__status { display: flex; align-items: center; gap: 9px; font-size: 14px; color: rgba(255, 255, 255, 0.65); }
.offer__dot { width: 9px; height: 9px; border-radius: 50%; background: #4caf50; animation: offerPing 2s ease-out infinite; }
@keyframes offerPing { 0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.5); } 100% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); } }
.offer__cta { display: inline-flex; align-items: center; gap: 14px; margin-top: 16px; background: #fff; color: var(--dark); border-radius: 22px; padding: 8px 28px 8px 8px; font-size: 17px; font-weight: 600; transition: transform 0.16s var(--ease), background 0.2s; }
.offer__cta:hover { background: #f0f3ec; }
.offer__cta:active { transform: scale(0.98); }
.offer__cta-ico { width: 46px; height: 46px; border-radius: 16px; background: var(--lime); color: var(--dark); display: grid; place-items: center; font-size: 19px; transition: transform 0.25s ease; }
.offer__cta:hover .offer__cta-ico { transform: translateX(-4px); }
.offer__contact { margin-top: 18px; font-size: 14px; color: rgba(255, 255, 255, 0.6); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.offer__contact a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* RIGHT card */
.offer__card {
  position: relative;
  background: #fff;
  color: var(--ink);
  border-radius: clamp(20px, 2.4vw, 30px);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: 0 26px 64px -34px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex; flex-direction: column;
}
.offer__card-title { color: rgba(20, 32, 25, 0.66); }
.offer__card-title::after { content: ""; display: block; width: 70px; height: 3px; margin-top: 12px; border-radius: 3px; background: var(--green); }
/* cool animated gradient rim — lime → light → deep green, slowly rotating */
@property --ofang { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.offer__card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 6px;
  background: conic-gradient(from var(--ofang), var(--lime), #ffffff 25%, var(--green) 55%, var(--lime) 90%, var(--lime));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  animation: ofSpin 3.5s linear infinite;
}
@keyframes ofSpin { to { --ofang: 360deg; } }
.offer__card-title { font-size: clamp(15px, 1.6vw, 19px); font-weight: 500; }
/* animated contact form */
.cform { display: flex; flex-direction: column; }
.cfield { position: relative; display: block; margin-top: clamp(13px, 1.5vw, 18px); }
.cfield input, .cfield textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  background: #f4f6f3; border: 1.5px solid #e6eae4; border-radius: 15px;
  padding: 23px 16px 9px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s, transform 0.2s var(--ease);
}
.cfield--area textarea { resize: vertical; min-height: 100px; padding-top: 26px; display: block; }
.cfield__label {
  position: absolute; top: 16px; inset-inline-start: 17px;
  font-size: 15px; color: rgba(20, 32, 25, 0.45); pointer-events: none;
  transition: top 0.22s var(--ease), font-size 0.22s var(--ease), color 0.22s;
}
.cfield input:focus ~ .cfield__label, .cfield input:not(:placeholder-shown) ~ .cfield__label,
.cfield textarea:focus ~ .cfield__label, .cfield textarea:not(:placeholder-shown) ~ .cfield__label {
  top: 8px; font-size: 11.5px; font-weight: 600; color: var(--olive);
}
.cfield input:focus, .cfield textarea:focus {
  outline: none; border-color: var(--lime); background: #fff;
  box-shadow: 0 0 0 4px rgba(205, 236, 105, 0.28); transform: translateY(-1px);
}
/* spring-in checkmark when a required field is valid */
.cfield__check {
  position: absolute; top: 26px; inset-inline-end: 14px; transform: translateY(-50%) scale(0);
  width: 24px; height: 24px; border-radius: 50%; background: var(--lime); color: var(--dark);
  display: grid; place-items: center; opacity: 0;
  transition: transform 0.34s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s;
}
.cfield__check .ico { width: 13px; height: 13px; }
/* JS-driven validation states */
.cfield.is-valid .cfield__check { transform: translateY(-50%) scale(1); opacity: 1; }
.cfield.is-err input, .cfield.is-err textarea { border-color: #e08a8a; background: #fdf5f5; }
.cfield.is-err input:focus, .cfield.is-err textarea:focus { border-color: #d76a6a; box-shadow: 0 0 0 4px rgba(215, 106, 106, 0.18); }
.cfield__err { display: block; margin-top: 5px; padding-inline-start: 4px; font-size: 12px; font-weight: 500; color: #cc4b4b; }
.cfield--area .cfield__check { top: 30px; }
.cform__submit {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-top: clamp(20px, 2.4vw, 28px); background: var(--ink); color: #fff; border: 0;
  border-radius: 18px; padding: 8px 26px 8px 8px; font-family: inherit; font-size: 16px; font-weight: 600;
  cursor: pointer; will-change: transform;
}
.cform__submit:active { transform: scale(0.98); }
.cform__ico { width: 44px; height: 44px; border-radius: 14px; background: var(--lime); color: var(--dark); display: grid; place-items: center; font-size: 19px; transition: transform 0.25s ease; }
.cform__submit:hover .cform__ico { transform: translateX(-4px); }
.cform__note { margin-top: 14px; font-size: 13px; color: var(--gray); text-align: center; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  /* nav links now stay visible down to the hamburger breakpoint (860px) below */
  /* opaque nav — drop the per-frame backdrop blur for smoother mobile scrolling */
  .nav { background: rgba(0, 77, 67, 0.99); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { min-height: 0; margin-top: 12px; }
  .mission__bullets { grid-template-columns: 1fr; max-width: 420px; }
  .show { grid-template-columns: 1fr; min-height: 0; position: relative; top: 0; }
  .show__media { min-height: 320px; }
  .bento { grid-template-columns: 1fr 1fr; grid-template-areas: none; grid-auto-rows: auto; }
  .bcard { grid-area: auto; }
  .bcard--pills { grid-column: span 2; order: 1; }
  .bcard--white { order: 2; }
  .bcard--leads { order: 3; }
  .bcard--orbit { display: none; }   /* once the bento stacks to 3 rows, drop the orbit/automation card */
  .pgrid { flex-direction: column; align-items: center; max-width: 420px; margin-inline: auto; }
  .pcard { width: 100%; min-height: 0; rotate: 0deg !important; margin: 0 0 18px !important; }
  .pcard + .pcard { margin-inline-start: 0; }
  .squig { display: none; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__rail { flex-direction: row; position: static; overflow-x: auto; }
  .book { grid-template-columns: 1fr; }
  /* stack the full landscape screenshot above a solid info card so the
     whole website is visible without horizontal cropping */
  .slide { flex-basis: 100%; aspect-ratio: auto; display: flex; flex-direction: column; }
  .slide__shot { position: relative; inset: auto; aspect-ratio: 1100 / 788; }
  .slide__shot img, .slide__shot video { object-fit: cover; object-position: top center; }
  .slide::after { display: none; }
  .slide__info { position: relative; z-index: 2; inset: auto; width: auto; box-shadow: none; border-radius: 0; flex: 1 1 auto; }
  .stage__bigline { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 40px); text-align: center; }
  .bigline__copy { align-items: center; text-align: center; }
  .stage__bigline .stage__hero, .stage__bigline .stage__sub { text-align: center; }
  .stage__bigline .stage__sub { margin-inline: auto; }
  .stage__stats { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: clamp(56px, 12vw, 96px); }
  .about__media { max-width: 540px; }
  .habit__stage { height: clamp(440px, 62vw, 560px); }
  .hcard { width: clamp(116px, 13vw, 146px); }
}
@media (max-width: 640px) {
  /* proof strip: drop the wordy title, center the "our work" link */
  .strip__title { display: none; }
  .strip__head { justify-content: center; }
  /* compact bento grid on phone — content cards full width, the stat + 24/7 pair as squares */
  .bento { grid-template-columns: 1fr 1fr; grid-template-areas: none; grid-auto-rows: auto; gap: 12px; }
  .bcard { grid-area: auto; padding: 18px; min-height: 0; gap: 12px; border-radius: 18px; }
  /* pills + orbit need full width; the two stat cards (+127% / leads) pair side by side */
  .bcard--pills { grid-column: span 2; order: 1; padding: 18px 15px; gap: 9px; }
  .bcard--white { grid-column: span 1; order: 2; }
  .bcard--leads { grid-column: span 1; order: 3; gap: 8px; padding: 16px 14px; }
  .bcard--orbit { display: none; }   /* once the bento stacks to 3 rows, drop the orbit/automation card */
  /* compact the leads list so it fits the narrow half-column without heavy wrapping */
  .bcard--leads .bcard__title { font-size: 15px; }
  .bcard--leads .leadrow { flex-direction: column; align-items: flex-start; gap: 5px; padding: 9px 11px; }
  .bcard--leads .leadrow__name { font-size: 11.5px; line-height: 1.35; }
  .bcard--leads .chip { font-size: 10px; padding: 3px 9px; }
  .bcard__big { font-size: clamp(38px, 12vw, 50px); }
  .bcard--orbit .orbit { width: 150px; height: 150px; }
  .bcard--orbit .orbit__center { font-size: 36px; }
  .bcard--orbit .orbit__chip { width: 40px; height: 40px; transform: translate(-50%, -50%) rotate(calc(var(--a) * 90deg)) translateY(-68px) rotate(calc(var(--a) * -90deg)); }
  .hero__cta .btn { width: 100%; justify-content: space-between; }
  /* drop the promise band + the phone-showcase section + services CTA on phone */
  .promise { display: none; }
  .habit { display: none; }
  .stack__cta.stack__cta { display: none; }   /* base rule sits later in the file — bump specificity */
  /* ===== Footer on phone — centered, stacked, giant word cleared above the CTA bar ===== */
  .footer__top { flex-direction: column; align-items: center; text-align: center; gap: 36px; }
  /* brand: a row of [button (left) ... W icon (right)], tagline + status below */
  .footer__brand { flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: center; text-align: center; width: 100%; max-width: 360px; margin-inline: auto; gap: 16px 12px; }
  .footer__logo { order: 1; width: 80px; }
  .footer__cta { order: 2; align-self: auto; }
  .footer__tag { order: 3; flex-basis: 100%; max-width: none; margin-inline: auto; }
  .footer__status { order: 4; flex-basis: 100%; justify-content: center; }
  /* nav + contact: a centered group, content aligned to the right */
  .footer__cols { display: grid; grid-template-columns: auto auto; justify-content: center; gap: 32px 46px; align-items: start; width: 100%; }
  .fcol { gap: 13px; width: auto; }
  .footer__cols > .fcol:last-child { grid-column: 1 / -1; align-items: center; text-align: center; }
  .fcol__title { margin-bottom: 4px; padding-bottom: 11px; }
  .fcol--nav, .fcol--contact { align-items: flex-start; text-align: right; }   /* RTL start = right */
  .fcol--nav .fcol__title::after, .fcol--contact .fcol__title::after { inset-inline-start: 0; transform: none; }
  .footer__cols > .fcol:last-child .fcol__title::after { inset-inline-start: 50%; transform: translateX(50%); }
  .fcol--nav a { justify-content: flex-start; }
  .fcol--nav a .fcol__arrow { display: none; }
  /* compact contact rows so the email fits in the narrower column */
  .fcontact { width: auto; gap: 9px; }
  .fcontact__ico { width: 34px; height: 34px; border-radius: 10px; }
  .fcontact__ico .ico { width: 16px; height: 16px; }
  .fcontact__tx b { font-size: 12.5px; }
  .fcontact__tx em { font-size: 10.5px; }
  .fsocial { justify-content: center; }
  .fcol__note { margin-top: 10px; }
  /* powered-by glass chip — slightly tighter on phones */
  .powb__card { gap: 13px; padding: 12px 20px; }
  .powb__pre { font-size: 10px; letter-spacing: 0.2em; }
  .powb__logo { height: 26px; }
  /* giant wordmark — centered, sized to fit, with room below for the fixed CTA bar */
  .footer__giant { margin: 38px 0 0; text-align: center; }
  .footer__word { font-size: clamp(58px, 18vw, 92px); text-align: center; padding-inline-start: 0; line-height: 0.85; }
  .footer__copy { position: static; display: inline-block; text-align: center; margin-top: 18px; inset: auto; white-space: normal; max-width: 30ch; border-radius: 14px; padding: 12px 20px; font-size: 12px; }
  .glass--a { inset-inline-end: 0; }
  .hero__frame--small { inset-inline-start: 0; }
  /* ===== About on phone — compact: fits one screen, no scroll ===== */
  .about { gap: 20px; }
  .about__copy { align-items: center; text-align: center; gap: 12px; }
  .about__title { font-size: clamp(26px, 7.6vw, 34px); }
  .about__lead { max-width: 36ch; font-size: 15px; line-height: 1.55; }
  .about__chips { display: none; }            /* drop value chips */
  .about__facts { display: none; }            /* drop 100% / 1 stats */
  .about__link { margin-top: 2px; }
  .about__media { max-width: 380px; margin-inline: auto; width: 100%; }
  .about__img { aspect-ratio: 4 / 2.7; }       /* short landscape frame */
  .about__accent { inset-inline-end: -10px; bottom: -10px; width: 52%; rotate: -5deg; }
  .about__tag { top: 11px; inset-inline-start: 11px; padding: 7px 12px; font-size: 12px; }
  .about__chip { inset-inline-end: 8px; bottom: 11px; padding: 7px 12px 7px 7px; }
  .about__chip-av { width: 34px; height: 34px; }
  .about .deco i:nth-child(2) { width: 60px; height: 60px; }
  .duo--sm { inset-inline-end: -14px; bottom: -22px; width: 50%; }
  .band__media { inset: -8% 0; }
  .habit__rows { display: none; }
  .habit__stage { height: auto; }
  .contactcard__photo { display: none; }
  .contactcard__copy { max-width: none; }
  .contactcard { min-height: 0; }
  .offer__panel { grid-template-columns: 1fr; }
  .hphone { position: static; transform: none; margin: 0 auto; width: min(300px, 80vw); }
  /* drop the heavy drop-shadows under the phone mockup + process cards on phone */
  .hscreen { box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35); }
  .pcard { box-shadow: none; }
  /* center the promise band on phone */
  .promise { justify-content: center; text-align: center; }
  .promise__copy { display: flex; flex-direction: column; align-items: center; }
  .promise__chips { justify-content: center; }
  /* ===== FAQ on phone — segmented pill tabs + compact accordion, contact card removed ===== */
  .faq__rail { gap: 4px; background: var(--mist); padding: 4px; border-radius: var(--r-pill); overflow: visible; }
  .ftab { flex: 1 1 0; min-width: 0; text-align: center; white-space: nowrap; font-size: 13.5px; padding: 10px 6px; border-radius: var(--r-pill); }
  .faq__list { gap: 8px; margin-top: 14px; }
  .qa { border-radius: 14px; }
  .qa__q { padding: 15px 17px; font-size: 15px; }
  .qa__q span { font-size: 19px; }
  .qa__a p { padding: 0 17px 16px; font-size: 14.5px; line-height: 1.6; }
  .contactcard { display: none; }   /* remove "אנחנו פה. שאלו אותנו הכל." on phone */
  /* ===== Booking on phone — form first & compact, green panel trimmed to a trust strip ===== */
  .offer__panel { padding: 14px; gap: 16px; border-radius: 26px; }
  .offer__card { order: -1; padding: 18px 15px; }
  .offer__card-title { font-size: 16px; }
  .offer__card-title::after { margin-top: 9px; }
  .cfield { margin-top: 9px; }
  .cfield input, .cfield textarea { padding: 19px 14px 7px; border-radius: 13px; }
  .cfield__label { top: 15px; }
  .cfield--area textarea { min-height: 68px; padding-top: 21px; }
  .cform__submit { margin-top: 13px; }
  .cform__note { margin-top: 10px; }
  /* trim the green column to a centered "prefer to talk?" strip */
  .offer__toggle, .offer__price, .offer__sub { display: none; }
  .offer__left { align-items: center; text-align: center; }
  .offer__ways { margin-top: 2px; justify-content: center; }
  .offer__foot { margin-top: 0; padding-top: 16px; }
  .offer__status { justify-content: center; }
  .offer__cta { align-self: center; margin-top: 14px; }
  .offer__contact { justify-content: center; margin-top: 14px; }
  /* tighter vertical rhythm on phone — the page was far too long */
  .mission { padding: 52px var(--pad); }
  .about { padding: 34px var(--pad); }
  /* ===== Services on phone — compact 2-col icon grid, demo dropped, autoplay cycles the highlight ===== */
  /* NB: base .svc styles are defined later in the file, so these need higher specificity to win */
  .svc.svc { padding: 44px var(--pad); }
  .svc .svc__head { margin-bottom: 26px; }
  .svc__grid .svc__stage { display: none; }       /* drop the tall device demo */
  .svc .svc__grid { display: block; }
  .svc__grid .svc__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .svc__grid .svc__tab { border-radius: 24px; }   /* softer, much rounder corners */
  .svc__grid .svc__tabhead { flex-direction: row; align-items: center; justify-content: center; text-align: center; gap: 11px; padding: 11px 12px; min-height: 0; }
  /* inactive icon chips share the brand green of the active card, lime glyph */
  .svc__grid .svc__tabico { width: 38px; height: 38px; border-radius: 12px; background: var(--green); color: var(--lime); }
  .svc__grid .svc__tab.is-on .svc__tabico { background: var(--lime); color: var(--dark); }
  .svc__grid .svc__tabname { flex: none; font-size: 14.5px; line-height: 1.2; color: var(--green); }
  .svc__grid .svc__tab.is-on .svc__tabname { color: #fff; }
  .svc__grid .svc__tabplus { display: none; }
  .svc__grid .svc__tabbody { display: none; }     /* moved into the shared panel below */
  .svc__grid .svc__prog { inset-inline: 14px; }

  /* full-width info panel that mirrors the active service, sits under the grid */
  .svc__grid .svc__panel {
    display: block; position: relative; margin-top: 22px;
    background: #fff; border: 1.5px solid rgba(0, 77, 67, 0.12);
    border-radius: 18px; padding: 18px 18px 20px;
    box-shadow: 0 22px 46px -28px rgba(0, 77, 67, 0.45);
  }
  .svc__panel-caret {                 /* little notch pointing up to the active card */
    position: absolute; top: -8px; left: 50%; translate: -50% 0;
    width: 16px; height: 16px; background: #fff; rotate: 45deg;
    border-top: 1.5px solid rgba(0, 77, 67, 0.12);
    border-left: 1.5px solid rgba(0, 77, 67, 0.12);
    transition: left 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .svc__panel-in { animation: svcPanelIn 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
  .svc__panel-name {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 16px; font-weight: 800; color: var(--green); margin-bottom: 8px;
  }
  .svc__panel-name::before {          /* lime tick accent */
    content: ""; width: 9px; height: 9px; border-radius: 3px; background: var(--lime);
  }
  .svc__grid .svc__panel .svc__tabdesc { display: block; padding: 0; color: #44524b; font-size: 14.5px; line-height: 1.55; }
  .svc__grid .svc__panel .svc__tags { padding: 12px 0 0; gap: 7px; }
  .svc__grid .svc__panel .svc__tags i { background: rgba(205, 236, 105, 0.35); color: var(--green); }
  .process { padding: 52px var(--pad); }
  .faq { padding: 50px var(--pad); }
  .stage { padding: 46px var(--pad); }
  .offer { padding: 48px var(--pad); }
  .band { min-height: 430px; padding: 56px var(--pad); }
  .footer { padding-top: 56px; padding-bottom: calc(110px + env(safe-area-inset-bottom, 0px)); }   /* clear the fixed CTA bar + home indicator */
  .stage__bigline { margin-top: 40px; }
  /* scale the big hero decoration circles down so they don't overlap the copy */
  .deco--hero i:nth-child(1) { width: 78px; height: 78px; border-width: 4px; }
  .deco--hero i:nth-child(2) { width: 40px; height: 40px; }
  .deco--hero i:nth-child(3) { width: 14px; height: 14px; }
  /* phone keeps the pinned animated dashboard (see the 820px block) */
  /* process steps → horizontal swipe carousel (was 3 tall stacked cards) */
  .pgrid { flex-direction: row; flex-wrap: nowrap; align-items: stretch; justify-content: flex-start; max-width: none; overflow-x: auto; overflow-y: visible; scroll-snap-type: x mandatory; gap: 14px; padding: 6px 0 20px; scrollbar-width: none; }
  .pgrid::-webkit-scrollbar { display: none; }
  .pcard { width: min(80vw, 330px); min-width: min(80vw, 330px); flex: 0 0 auto; scroll-snap-align: center; margin: 0 !important; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .mission__text .w { opacity: 1; }
  /* hero: drop the pin/scale, lay it out as normal stacked sections */
  .mk { height: auto; }
  .mk__pin { position: static; height: auto; }
  .mk__scene { position: static; min-height: 84vh; }
  .mk__dash { position: static; inset: auto; transform: none; margin-top: 40px; }
  .mk__dash .mdash { border-radius: 30px; }
}

/* ============================================================
   Floating WhatsApp button — persistent conversion CTA
   ============================================================ */
.wafab {
  position: fixed;
  inset-block-end: clamp(18px, 3vw, 28px);
  inset-inline-start: clamp(18px, 3vw, 28px);
  z-index: 60;
  display: inline-flex; align-items: center;
  background: var(--dark); color: var(--lime);
  border-radius: 999px;
  box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.45);
  text-decoration: none;
  opacity: 0; transform: translateY(22px) scale(0.85); pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), background 0.2s;
}
.wafab.is-on { opacity: 1; transform: none; pointer-events: auto; }
.wafab:hover { background: #11352d; }
.wafab:active { transform: scale(0.96); }
.wafab__btn { position: relative; flex: 0 0 auto; width: clamp(56px, 6vw, 62px); height: clamp(56px, 6vw, 62px); display: grid; place-items: center; }
.wafab__btn .ico { width: 30px; height: 30px; z-index: 1; }
.wafab__ring { position: absolute; inset: 9px; border-radius: 50%; animation: waPulse 2.2s ease-out infinite; }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(205, 236, 105, 0.45); }
  100% { box-shadow: 0 0 0 16px rgba(205, 236, 105, 0); }
}
.wafab__label { max-width: 0; overflow: hidden; white-space: nowrap; font-weight: 600; font-size: 15px; transition: max-width 0.4s var(--ease), padding 0.4s var(--ease); }
.wafab:hover .wafab__label { max-width: 160px; padding-inline-end: 22px; }
@media (max-width: 640px) { .wafab:hover .wafab__label { max-width: 0; padding-inline-end: 0; } }

/* ============================================================
   Extra CTAs — bento + services inline, mobile sticky bar
   ============================================================ */
.stage__cta { margin-top: clamp(34px, 5vw, 56px); }
.stack__cta {
  margin-top: clamp(40px, 6vw, 80px);
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  text-align: center;
}
.stack__cta p { font-size: clamp(16px, 1.6vw, 19px); color: var(--gray); max-width: 40ch; }

/* mobile sticky CTA bar (phones only) */
.mbar { display: none; }
@media (max-width: 760px) {
  .mbar {
    display: flex; gap: 10px;
    position: fixed; inset-inline: 12px; inset-block-end: calc(12px + env(safe-area-inset-bottom, 0px)); z-index: 58;
    background: #0c2b24;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px; padding: 9px;
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(140%); transition: transform 0.4s var(--ease);
  }
  .mbar.is-on { transform: none; }
  .mbar a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: 15px; border-radius: 12px; padding: 13px 12px; text-decoration: none; }
  .mbar__wa { flex: 0 0 auto; background: rgba(255, 255, 255, 0.12); color: #fff; }
  .mbar__wa .ico { width: 19px; height: 19px; }
  .mbar__book { flex: 1; background: var(--lime); color: var(--dark); }
  /* the sticky bar covers WhatsApp on mobile, so hide the floating button */
  .wafab { display: none; }
}

/* ============================================================
   Services — interactive wireframe switcher
   ============================================================ */
.svc { padding: clamp(64px, 9vw, 130px) var(--pad); max-width: var(--colw); margin-inline: auto; }
.svc__head { text-align: center; margin-bottom: clamp(34px, 5vw, 64px); }
.svc__head .badge { margin-inline: auto; }
.svc__head .h2 { margin-top: 16px; }
.svc__grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: clamp(22px, 3vw, 46px); align-items: start; }

/* ---- tab list (accordion) ---- */
.svc__list { display: flex; flex-direction: column; gap: 12px; }
.svc__tab { position: relative; display: block; width: 100%; text-align: start; background: #fff; border: 1.5px solid rgba(20, 32, 25, 0.09); border-radius: 18px; padding: 0; overflow: hidden; cursor: pointer; transition: border-color .3s ease, box-shadow .3s ease, transform .35s cubic-bezier(.23,1,.32,1); }
.svc__tab:hover { border-color: rgba(20, 32, 25, 0.2); }
@media (hover: hover) { .svc__tab:hover { transform: translateY(-2px); } }
.svc__tab.is-on { background: linear-gradient(150deg, #00564b, #003a33); border-color: transparent; box-shadow: 0 24px 50px -22px rgba(0, 77, 67, 0.6); }
.svc__tab.is-on .svc__tabname { color: #fff; }
.svc__tab.is-on .svc__tabdesc { color: rgba(255, 255, 255, 0.78); }
.svc__tab.is-on .svc__tags i { background: rgba(255, 255, 255, 0.1); color: #eaf3ea; }
/* auto-play progress bar */
.svc__prog { position: absolute; inset-inline: 16px; bottom: 0; height: 3.5px; border-radius: 3px 3px 0 0; background: var(--lime); transform: scaleX(0); transform-origin: 100% 50%; pointer-events: none; }
.svc__tabhead { display: flex; align-items: center; gap: 14px; padding: 17px 20px; }
.svc__tabico { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 13px; display: grid; place-items: center; background: var(--mist); color: var(--green); transition: background .35s ease, color .35s ease, transform .4s cubic-bezier(.23, 1, .32, 1); }
.svc__tabico .ico { width: 22px; height: 22px; }
.svc__tab.is-on .svc__tabico { background: var(--lime); color: var(--dark); transform: rotate(-6deg) scale(1.07); }
.svc__tabname { flex: 1; font-size: clamp(17px, 1.7vw, 21px); font-weight: 700; letter-spacing: -0.01em; }
.svc__tabplus { position: relative; width: 22px; height: 22px; flex: 0 0 auto; }
.svc__tabplus::before, .svc__tabplus::after { content: ""; position: absolute; top: 50%; left: 2px; right: 2px; height: 2px; background: var(--ink); border-radius: 2px; transform: translateY(-50%); transition: transform .4s cubic-bezier(.23, 1, .32, 1), opacity .3s ease; }
.svc__tabplus::after { transform: translateY(-50%) rotate(90deg); }
.svc__tab.is-on .svc__tabplus::before { background: #fff; }
.svc__tab.is-on .svc__tabplus::after { transform: translateY(-50%) rotate(0deg); opacity: 0; }
.svc__tabbody { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s cubic-bezier(.23, 1, .32, 1); }
.svc__tab.is-on .svc__tabbody { grid-template-rows: 1fr; }
.svc__tabbody-in { overflow: hidden; }
.svc__tabdesc { display: block; padding: 0 20px 0 64px; color: var(--gray); font-size: 15px; line-height: 1.55; }
.svc__tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 20px 20px 64px; }
.svc__tags i { font-style: normal; font-size: 12.5px; font-weight: 600; color: var(--green); background: var(--mist); border-radius: 999px; padding: 6px 12px; }

/* ---- preview stage ---- */
/* open / boxless stage — demos float on the page with just an ambient glow + circles */
.svc__stage { position: sticky; top: 104px; height: clamp(380px, 46vw, 540px); }
.svc__stage::before { display: none; }
.svc__stage::after { content: ""; position: absolute; inset: 5% 3%; z-index: 0; border-radius: 46% 54% 50% 50% / 52% 48% 52% 48%; background: radial-gradient(closest-side, rgba(205, 236, 105, 0.34), transparent 72%); filter: blur(26px); pointer-events: none; }
.svc__deco { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.svc__deco i { position: absolute; border-radius: 50%; }
.svc__deco i:nth-child(1) { width: 28px; height: 28px; top: 10%; inset-inline-start: 7%; background: var(--lime); opacity: .75; }
.svc__deco i:nth-child(2) { width: 52px; height: 52px; bottom: 11%; inset-inline-start: 9%; border: 4px solid rgba(0, 77, 67, 0.2); }   /* thick empty ring */
.svc__deco i:nth-child(3) { width: 13px; height: 13px; top: 22%; inset-inline-end: 10%; background: var(--green); opacity: .5; }
.svc__deco i:nth-child(4) { width: 18px; height: 18px; bottom: 22%; inset-inline-end: 8%; background: var(--lime); opacity: .65; }
.svc__deco i:nth-child(5) { width: 26px; height: 26px; top: 8%; inset-inline-end: 30%; border: 2.5px solid rgba(205, 236, 105, 0.8); }   /* lime ring */
.svc__deco i:nth-child(n+6) { display: none; }
/* soft float shadow for the demos on the light page */
.svc__scene .wf { box-shadow: 0 46px 84px -42px rgba(8, 18, 14, 0.32); }
/* chat + store demos are transparent grids — no container drop-shadow */
.svc__scene .wf--chat, .svc__scene .wf--store { box-shadow: none; }
.svc__scene { position: absolute; inset: 0; z-index: 1; display: grid; place-items: center; padding: clamp(22px, 4vw, 50px); opacity: 0; visibility: hidden; filter: blur(7px); transition: opacity .38s ease, filter .38s ease; }
.svc__scene.is-on { opacity: 1; visibility: visible; filter: blur(0); }
/* mobile-only active-service info panel (desktop uses the demo stage) */
.svc__panel { display: none; }
@keyframes svcPanelIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* skeleton wireframe shared */
.wf, .wf * { box-sizing: border-box; }
.wf--browser { width: min(100%, 480px); background: #fff; border-radius: 16px; box-shadow: 0 34px 64px -34px rgba(8, 18, 14, 0.35); overflow: hidden; }
.wf__bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; background: #eef1ee; }
.wf__bar > i { width: 10px; height: 10px; border-radius: 50%; }
.wf__bar > i:nth-child(1) { background: #ff5f57; }
.wf__bar > i:nth-child(2) { background: #febc2e; }
.wf__bar > i:nth-child(3) { background: #28c840; }
.wf__url { flex: 1; height: 12px; margin-inline-start: 8px; border-radius: 6px; background: #dfe4df; }
.wf__pad { padding: 18px; display: flex; flex-direction: column; gap: 15px; }
.wf__topnav { display: flex; align-items: center; justify-content: space-between; }
.wf__logo { width: 56px; height: 15px; border-radius: 5px; background: var(--green); opacity: .85; }
.wf__links { display: flex; gap: 8px; }
.wf__links i { width: 26px; height: 9px; border-radius: 5px; background: #dde4df; }
.wf__hero { display: flex; gap: 14px; }
.wf__heroL { flex: 1; display: flex; flex-direction: column; gap: 9px; }
.wf__h { height: 17px; border-radius: 6px; background: #c8d1c8; width: 92%; }
.wf__h--sm { width: 58%; }
.wf__t { height: 8px; border-radius: 5px; background: #e2e7e2; }
.wf__t--w { width: 72%; }
.wf__cta { margin-top: 7px; width: 100px; height: 32px; border-radius: 9px; background: var(--lime); }
.wf__heroR { width: 124px; border-radius: 12px; background: linear-gradient(135deg, #e0e7e0, #cdd6cd); }
.wf__cards { display: flex; gap: 10px; }
.wf__cards span { flex: 1; height: 48px; border-radius: 10px; background: #e7ece7; }

.wf--phone { width: 198px; aspect-ratio: 9 / 18.6; background: #fff; border-radius: 30px; border: 7px solid #1c241d; box-shadow: 0 34px 60px -30px rgba(8, 18, 14, 0.45); position: relative; padding: 18px 13px 14px; display: flex; flex-direction: column; gap: 12px; }
/* iPhone 17 mockup — titanium frame, Dynamic Island, real screenshot inside */
.wf--iphone {
  position: relative; flex: 0 0 auto;
  width: clamp(184px, 56%, 218px); aspect-ratio: 9 / 19.5;
  padding: 7px; border-radius: 44px;
  background: linear-gradient(150deg, #4c4f53 0%, #232528 42%, #0a0b0d 100%);
}
.svc__scene .wf--iphone {
  box-shadow:
    0 50px 82px -30px rgba(8, 18, 14, 0.6),
    inset 0 2px 2px rgba(255, 255, 255, 0.28),
    inset 0 -2px 3px rgba(0, 0, 0, 0.55);
}
.wf--iphone .wf__pscreen {
  width: 100%; height: 100%; display: block; background: #000;
  object-fit: cover; object-position: top center;
  border-radius: 37px;
  box-shadow: 0 0 0 2px #000;
}
/* Dynamic Island */
.wf--iphone .wf__island {
  position: absolute; z-index: 3; top: 16px; left: 50%; transform: translateX(-50%);
  width: 31%; height: 15px; background: #000; border-radius: 999px;
  box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.05);
}
/* side buttons */
.wf--iphone::before, .wf--iphone::after {
  content: ""; position: absolute; border-radius: 3px;
  background: linear-gradient(#3d4044, #17181a);
}
.wf--iphone::before { inset-inline-end: -2px; top: 30%; width: 3px; height: 58px; }  /* power / camera control */
.wf--iphone::after { inset-inline-start: -2px; top: 23%; width: 3px; height: 40px; } /* volume */
.wf__notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 58px; height: 8px; border-radius: 6px; background: #1c241d; }
.wf__appbar { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.wf__appbar span:first-child { width: 30px; height: 30px; border-radius: 9px; background: var(--green); opacity: .85; }
.wf__appbar span:last-child { width: 64px; height: 12px; border-radius: 6px; background: #dde4df; }
.wf__applist { display: flex; flex-direction: column; gap: 11px; flex: 1; }
.wf__arow { display: flex; align-items: center; gap: 10px; }
.wf__av { width: 34px; height: 34px; border-radius: 10px; background: #e3e8e3; flex: 0 0 auto; }
.wf__al { flex: 1; height: 13px; border-radius: 6px; background: #e3e8e3; }
.wf__tabbar { display: flex; justify-content: space-around; padding-top: 11px; border-top: 1px solid #eef1ee; }
.wf__tabbar i { width: 24px; height: 8px; border-radius: 5px; background: #dde4df; }
.wf__tabbar i.on { background: var(--green); }

.wf--chat { width: min(100%, 440px); display: flex; flex-direction: column; gap: 15px; }
.wf__bub { height: 32px; border-radius: 16px; }
.wf__bub--in { align-self: flex-start; width: 60%; background: #fff; box-shadow: 0 10px 22px -14px rgba(8, 18, 14, 0.3); border-bottom-right-radius: 5px; }
.wf__bub--lg { width: 72%; }
.wf__bub--out { align-self: flex-end; width: 50%; background: var(--green); border-bottom-left-radius: 5px; }
.wf__bub--type { align-self: flex-start; width: 76px; height: 34px; background: #fff; display: flex; align-items: center; justify-content: center; gap: 6px; box-shadow: 0 10px 22px -14px rgba(8, 18, 14, 0.3); border-bottom-right-radius: 5px; }
.wf__bub--type i { width: 8px; height: 8px; border-radius: 50%; background: #9aa6a0; animation: svcType 1.25s infinite ease-in-out; }
.wf__bub--type i:nth-child(2) { animation-delay: .18s; }
.wf__bub--type i:nth-child(3) { animation-delay: .36s; }
@keyframes svcType { 0%, 60%, 100% { transform: translateY(0); opacity: .45; } 30% { transform: translateY(-5px); opacity: 1; } }

.wf--dash { width: min(100%, 450px); height: 246px; background: #fff; border-radius: 16px; box-shadow: 0 34px 64px -34px rgba(8, 18, 14, 0.35); overflow: hidden; display: flex; }
/* systems scene — small dashboard image */
.wf--dashimg { width: min(100%, 470px); border-radius: 16px; overflow: hidden; line-height: 0; }
.wf--dashimg > img { width: 100%; height: auto; display: block; }
.wf__dside { width: 56px; background: #f1f4f1; display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 18px 0; }
.wf__dside i { width: 24px; height: 24px; border-radius: 8px; background: #dde4df; }
.wf__dside i.on { background: var(--green); }
.wf__dmain { flex: 1; padding: 18px; display: flex; flex-direction: column; gap: 16px; }
.wf__dtiles { display: flex; gap: 12px; }
.wf__dtiles span { flex: 1; height: 60px; border-radius: 12px; background: #eef1ee; }
.wf__dbars { flex: 1; display: flex; align-items: flex-end; gap: 10px; }
.wf__dbars i { flex: 1; height: var(--h); background: #dde4df; border-radius: 6px 6px 3px 3px; transform-origin: bottom; }
.wf__dbars i.on { background: var(--lime); }

.wf--store { width: min(100%, 400px); display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wf__prod { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid rgba(20, 32, 25, 0.12); }
.wf__prod b { position: relative; display: block; height: 92px; }
.wf__prod:nth-child(1) b { background: url("assets/img/black-tee.webp") center / auto 98% no-repeat; }
.wf__prod:nth-child(2) b { background: url("assets/img/runner.webp") center / 74% auto no-repeat; }
.wf__prod:nth-child(3) b { background: url("assets/img/leather-satchel.webp") center / auto 92% no-repeat; }
.wf__prod:nth-child(4) b { background: url("assets/img/straw-hat.webp") center 58% / 72% auto no-repeat; }
/* wishlist heart + rating, so the tile reads as a real product */
.wf__prod b::after { content: "♡"; position: absolute; top: 8px; inset-inline-start: 9px; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, 0.78); color: var(--green); font-size: 13px; line-height: 1; }
.wf__prod b::before { position: absolute; bottom: 8px; inset-inline-end: 9px; font-size: 9.5px; font-weight: 700; color: var(--green); background: rgba(255, 255, 255, 0.85); border-radius: 999px; padding: 2px 7px; }
.wf__prod:nth-child(1) b::before { content: "★ 4.9"; }
.wf__prod:nth-child(2) b::before { content: "★ 4.8"; }
.wf__prod:nth-child(3) b::before { content: "★ 5.0"; }
.wf__prod:nth-child(4) b::before { content: "★ 4.7"; }
.wf__prod em { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; }
.wf__prod em i { width: 46px; height: 12px; border-radius: 6px; background: #dde4df; }
.wf__prod em u { width: 30px; height: 30px; border-radius: 9px; background: var(--lime); }

.wf--growth { width: min(100%, 450px); background: #fff; border-radius: 16px; box-shadow: 0 34px 64px -34px rgba(8, 18, 14, 0.35); padding: 22px; display: flex; flex-direction: column; gap: 16px; }
.wf__gchips { display: flex; gap: 12px; }
.wf__gchips span { width: 88px; height: 42px; border-radius: 11px; background: #eef1ee; }
.wf__gsvg { width: 100%; height: 116px; }
.wf__gkeys { display: flex; flex-direction: column; gap: 9px; }
.wf__gkeys i { height: 11px; border-radius: 6px; background: #e7ece7; }
.wf__gkeys i:nth-child(1) { width: 82%; }
.wf__gkeys i:nth-child(2) { width: 58%; }
.wf__gkeys i:nth-child(3) { width: 70%; }

@media (max-width: 900px) {
  .svc__grid { grid-template-columns: 1fr; }
  /* once it stops sitting beside the accordion, drop the phone/chat/dashboard
     visual entirely — show just the accordion */
  .svc__stage { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .svc__scene { transition: none; filter: none; }
  .wf__bub--type i { animation: none; }
}

/* ---- filled wireframe content (real data examples) ---- */
.wf__url { color: rgba(20, 32, 25, 0.42); font-size: 10px; font-weight: 600; display: flex; align-items: center; padding-inline: 9px; }
/* websites demo — real landing-page screenshot inside the browser frame */
.wf--browser--shot { width: min(100%, 500px); }
.wf__shot { position: relative; line-height: 0; }
.wf__shot > img { width: 100%; height: auto; display: block; }
.wf__shot .wf__float2 { position: absolute; inset-inline-start: 14px; bottom: 14px; line-height: 1.1; }
/* frameless device mockups (iMac / iPhone) for the websites & apps scenes */
.wf--mock { position: relative; width: min(100%, 500px); margin: 0 auto; line-height: 0; }
.wf--mock > img { width: 100%; height: auto; display: block; filter: drop-shadow(0 30px 40px rgba(8, 30, 26, 0.32)); }
.svc__scene .wf--mock { box-shadow: none; }
.wf--phoneimg { position: relative; width: clamp(180px, 54%, 224px); margin: 0 auto; line-height: 0; }
.wf--phoneimg > img { width: 100%; height: auto; display: block; filter: drop-shadow(0 30px 40px rgba(8, 30, 26, 0.42)); }
.svc__scene .wf--phoneimg { box-shadow: none; }
/* website hero */
.wf__site { padding: 15px 17px; display: flex; flex-direction: column; gap: 13px; }
.wf__nav { display: flex; align-items: center; justify-content: space-between; }
.wf__brand { font-size: 15px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.wf__brand span { color: var(--green); }
.wf__menu { display: flex; gap: 11px; }
.wf__menu i { font-style: normal; font-size: 10px; font-weight: 600; color: rgba(20, 32, 25, 0.5); }
.wf__shero { display: flex; gap: 13px; align-items: stretch; }
.wf__sheroTx { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.wf__pill { align-self: flex-start; font-size: 9px; font-weight: 700; color: var(--green); background: var(--mist); border-radius: 999px; padding: 4px 9px; }
.wf__sheroTx h4 { font-size: 16px; line-height: 1.18; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.wf__sheroTx p { font-size: 10px; line-height: 1.45; color: rgba(20, 32, 25, 0.52); }
.wf__btn2 { align-self: flex-start; margin-top: 3px; font-size: 10.5px; font-weight: 700; color: var(--dark); background: var(--lime); border-radius: 9px; padding: 8px 13px; }
.wf__sheroImg { width: 116px; border-radius: 12px; background: linear-gradient(135deg, #e1e8e1, #ccd6cc); position: relative; }
.wf__float2 { position: absolute; inset-inline-start: -12px; bottom: 16px; background: #fff; border-radius: 11px; box-shadow: 0 12px 24px -12px rgba(8, 18, 14, 0.4); padding: 7px 11px; display: flex; flex-direction: column; }
.wf__float2 b { font-size: 14px; font-weight: 800; color: var(--ink); }
.wf__float2 em { font-size: 8.5px; font-style: normal; color: rgba(20, 32, 25, 0.5); }
.wf__feats { display: flex; gap: 8px; }
.wf__feats span { flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px; font-size: 9.5px; font-weight: 600; color: rgba(20, 32, 25, 0.62); background: #f1f4f1; border-radius: 9px; padding: 9px 5px; }
.wf__feats .ico { width: 13px; height: 13px; color: var(--green); }
/* phone app */
.wf__phead { margin-top: 6px; }
.wf__phead b { display: block; font-size: 13px; font-weight: 800; color: var(--ink); }
.wf__phead span { font-size: 9.5px; color: rgba(20, 32, 25, 0.5); }
.wf__pstats { display: flex; gap: 8px; }
.wf__pstats span { flex: 1; background: #f1f4f1; border-radius: 11px; padding: 9px 11px; }
.wf__pstats b { display: block; font-size: 15px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.wf__pstats em { font-size: 8.5px; font-style: normal; color: rgba(20, 32, 25, 0.5); }
.wf__plist { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.wf__pitem { display: flex; align-items: center; gap: 9px; background: #fff; border: 1px solid #eef1ee; border-radius: 11px; padding: 9px 11px; }
.wf__pdot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.wf__pdot--g { background: var(--green); }
.wf__pdot--l { background: var(--lime); }
.wf__pitem b { flex: 1; font-size: 11px; font-weight: 700; color: var(--ink); }
.wf__pitem em { font-size: 9.5px; font-style: normal; color: rgba(20, 32, 25, 0.5); }
/* chat — bot (green, right) / user (white, left) */
.wf__bub { height: auto; max-width: 82%; border-radius: 18px; padding: 12px 17px; font-size: 15px; line-height: 1.45; }
.wf__bub--bot { align-self: flex-start; background: var(--green); color: #eef5ee; border-bottom-right-radius: 5px; }
.wf__bub--user { align-self: flex-end; background: #fff; color: var(--ink); box-shadow: 0 10px 22px -14px rgba(8, 18, 14, 0.3); border-bottom-left-radius: 5px; }
.wf__bub--type { max-width: none; width: 60px; padding: 11px 13px; display: flex; gap: 6px; align-items: center; justify-content: center; }
.wf__bub--type i { background: #bfe0c8; }
/* CRM dashboard */
.wf--dash { height: 272px; }
.wf__dhead { display: flex; align-items: center; justify-content: space-between; }
.wf__dhead b { font-size: 13px; font-weight: 800; color: var(--ink); }
.wf__dhead span { font-size: 9.5px; color: rgba(20, 32, 25, 0.5); }
.wf__dtiles span { flex: 1; height: auto; background: #f1f4f1; border-radius: 12px; padding: 11px 13px; display: flex; flex-direction: column; gap: 3px; }
.wf__trow { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.wf__dtiles em { font-size: 9px; font-style: normal; color: rgba(20, 32, 25, 0.5); }
.wf__dtiles b { font-size: 21px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.wf__up { font-size: 8.5px; font-style: normal; font-weight: 700; color: var(--green); background: rgba(0, 77, 67, 0.1); border-radius: 999px; padding: 2px 6px; flex: 0 0 auto; }
.wf__gkeys i:nth-child(1), .wf__gkeys i:nth-child(2), .wf__gkeys i:nth-child(3) { width: auto; }
.wf__dbarsWrap { flex: 1; display: flex; flex-direction: column; gap: 7px; min-height: 0; }
.wf__dbarsLbl { font-size: 9.5px; color: rgba(20, 32, 25, 0.5); }
/* store products */
.wf__prod em { padding: 9px 11px; gap: 6px; }
.wf__pn { flex: 1; font-size: 10px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wf__pp { font-size: 11px; font-weight: 800; color: var(--green); }
.wf__prod em u { width: 24px; height: 24px; border-radius: 8px; background: var(--lime); display: grid; place-items: center; font-size: 15px; font-weight: 700; line-height: 1; color: var(--dark); text-decoration: none; }
/* growth analytics */
.wf__gchips span { flex: 1; width: auto; height: auto; background: #f1f4f1; border-radius: 12px; padding: 10px 13px; display: flex; flex-direction: column; gap: 1px; }
.wf__gchips b { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.wf__gchips em { font-size: 9px; font-style: normal; color: rgba(20, 32, 25, 0.5); }
.wf__gkeys i { display: flex; align-items: center; justify-content: space-between; width: auto; height: auto; background: #f5f7f4; border-radius: 9px; padding: 8px 12px; }
.wf__gkeys i span { font-size: 10.5px; color: rgba(20, 32, 25, 0.68); }
.wf__gkeys i b { font-size: 11px; font-weight: 800; color: var(--green); }

/* ============================================================
   Custom cursor — lime dot + trailing ring (fine-pointer only)
   ============================================================ */
.cur-dot, .cur-ring {
  position: fixed; top: 0; left: 0; z-index: 9997; pointer-events: none;
  border-radius: 50%; mix-blend-mode: normal; will-change: transform;
  opacity: 0;
}
.cur-dot { width: 7px; height: 7px; background: var(--lime); box-shadow: 0 0 10px rgba(205, 236, 105, 0.8); transition: opacity 0.2s ease; }
.cur-ring {
  width: 34px; height: 34px; border: 1.5px solid rgba(205, 236, 105, 0.55);
  transition: width 0.22s ease, height 0.22s ease, background 0.22s ease, border-color 0.22s ease, opacity 0.2s ease;
}
.cur-ring.is-lg { width: 54px; height: 54px; background: rgba(205, 236, 105, 0.12); border-color: rgba(205, 236, 105, 0.9); }
/* the lime cursor only lives on the dark-green surfaces */
html.cur-dark .cur-dot, html.cur-dark .cur-ring { opacity: 1; }
html.cur-dark .cur-dot.is-hide { opacity: 0; }
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  html.cur-dark, html.cur-dark * { cursor: none !important; }
}
@media (hover: none), (pointer: coarse) { .cur-dot, .cur-ring { display: none; } }



/* ============================================================
   Tablet range (821–1024px) — keep the desktop multi-column
   layouts readable instead of collapsing to the mobile stack.
   (Phone ≤820px keeps its own good stacked layout.)
   ============================================================ */
@media (min-width: 821px) and (max-width: 1024px) {
  /* mission bullets stay in one row */
  .mission__bullets { grid-template-columns: repeat(3, 1fr); max-width: var(--colw); gap: clamp(12px, 2.2vw, 26px); }
  .mbullet { gap: 12px; }
  .mbullet__ico { width: 44px; height: 44px; }
  .mbullet__txt b { font-size: 15.5px; }
  .mbullet__txt i { font-size: 13px; }

  /* about stays 2 columns — trim the title + let the image fill its column */
  .about { grid-template-columns: 1.05fr 0.95fr; gap: clamp(22px, 3.2vw, 44px); }
  .about__title { font-size: clamp(25px, 3.3vw, 36px); }
  .about__lead { font-size: 15px; line-height: 1.55; max-width: 40ch; }
  .about__media { max-width: 100%; }

  /* footer — brand card + nav/contact stay on ONE row, brand at the start (right in RTL) */
  .footer__top { flex-wrap: nowrap; align-items: flex-start; gap: 30px; }
  .footer__brand { max-width: 320px; flex: 0 0 auto; }
  .footer__cols { gap: clamp(20px, 3.4vw, 46px); flex: 1 1 auto; justify-content: flex-end; }

  /* portfolio: every slide identical — a fixed 16:9 frame filled edge-to-edge (no
     letterbox). Media exported at 16:9 fills perfectly with zero crop. */
  .slide { flex-basis: 84%; }
  .slide__shot { flex: 0 0 auto; position: relative; aspect-ratio: 16 / 9; height: auto; background: #0e211c; }
  .slide__shot img, .slide__shot video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
  .slide__info { flex: 1 1 auto; justify-content: center; }

  /* smaller social icons at this width */
  .fsocial { gap: 10px; }
  .fsocial__btn { width: 42px; height: 42px; border-radius: 13px; }
  .fsocial__btn .ico { width: 21px; height: 21px; }

  /* wordmark hugs the bottom; the © line sits neatly ABOVE it (flush, no overlap) */
  .footer { padding-bottom: 0; }
  .footer__giant {
    display: flex; flex-direction: column-reverse; align-items: stretch;
    margin: clamp(40px, 6vw, 80px) calc(var(--pad) * -1) 0;
    padding-bottom: 0;
  }
  .footer__word { margin-bottom: -0.06em; padding-inline-start: var(--pad); }
  .footer__copy {
    position: static; inset: auto; align-self: flex-start; white-space: normal;
    margin: 0 var(--pad) 14px; padding: 11px 18px; font-size: 12.5px; border-radius: 14px;
  }
}

/* ============================================================
   Cookie / privacy consent banner (Consent Mode v2)
   ============================================================ */
.consent {
  position: fixed; z-index: 60;
  left: clamp(12px, 3vw, 22px);
  bottom: calc(clamp(12px, 3vw, 22px) + env(safe-area-inset-bottom, 0px));
  width: min(430px, calc(100% - 24px));
  background: rgba(0, 47, 41, 0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(205, 236, 105, 0.3);
  border-radius: 20px; padding: 18px 20px 16px;
  box-shadow: 0 30px 64px -22px rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.92);
  transform: translateY(160%); opacity: 0;
  transition: transform 0.55s var(--ease), opacity 0.4s ease;
}
.consent.is-in { transform: none; opacity: 1; }
.consent__txt { font-size: 13.5px; line-height: 1.6; margin: 0 0 14px; }
.consent__txt b { display: block; font-size: 15px; color: #fff; margin-bottom: 3px; }
.consent__txt a { color: var(--lime); text-decoration: underline; font-weight: 600; }
.consent__btns { display: flex; gap: 10px; }
.consent__btn { flex: 1; padding: 11px 14px; border-radius: 999px; font-size: 14px; font-weight: 700; line-height: 1; cursor: pointer; border: 1.5px solid transparent; transition: transform 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.consent__btn--ok { background: var(--lime); color: var(--dark); }
.consent__btn--ok:hover { transform: translateY(-1px); box-shadow: 0 10px 22px -8px rgba(205, 236, 105, 0.55); }
.consent__btn--ghost { background: transparent; border-color: rgba(255, 255, 255, 0.28); color: rgba(255, 255, 255, 0.85); }
.consent__btn--ghost:hover { border-color: #fff; color: #fff; }
@media (prefers-reduced-motion: reduce) { .consent { transition: opacity 0.3s ease; transform: none; } }

/* ============================================================
   Legal pages (privacy policy)
   ============================================================ */
.legal { max-width: 820px; margin: 0 auto; padding: clamp(96px, 14vw, 140px) var(--pad) clamp(60px, 10vw, 100px); }
.legal__back { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--green); margin-bottom: 26px; }
.legal__back:hover { color: var(--dark); }
.legal h1 { font-size: clamp(30px, 5vw, 46px); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); }
.legal__upd { font-size: 13.5px; color: var(--gray); margin: 10px 0 40px; }
.legal h2 { font-size: clamp(19px, 2.4vw, 24px); font-weight: 700; color: var(--ink); margin: 36px 0 12px; }
.legal p, .legal li { font-size: 16px; line-height: 1.75; color: #35433c; }
.legal ul { margin: 10px 0 10px; padding-inline-start: 22px; display: flex; flex-direction: column; gap: 6px; }
.legal a { color: var(--green); text-decoration: underline; }
.legal a:hover { color: var(--dark); }
.legal__note { margin-top: 40px; padding: 16px 18px; background: var(--mist); border-radius: 14px; font-size: 14px; color: #445; }

/* ============================================================
   Accessibility widget (נגישות) + accessibility modes
   ============================================================ */
.a11y-btn {
  position: fixed; z-index: 70; left: 0; top: 50%; transform: translateY(-50%);
  width: 44px; height: 50px; border: 0; border-radius: 0 14px 14px 0;
  background: var(--green); color: #fff; cursor: pointer; display: grid; place-items: center;
  box-shadow: 4px 6px 22px -6px rgba(0, 0, 0, 0.45);
  transition: background 0.22s ease, width 0.22s ease;
}
.a11y-btn:hover, .a11y-btn:focus-visible { background: var(--dark); width: 50px; outline: none; }
.a11y-btn:focus-visible { box-shadow: 0 0 0 3px rgba(205, 236, 105, 0.7); }
.a11y-btn svg { width: 27px; height: 27px; }
.a11y-panel {
  position: fixed; z-index: 71; left: 14px; top: 50%; transform: translateY(-50%) translateX(-14px);
  width: min(300px, calc(100vw - 28px)); max-height: 88vh; overflow-y: auto;
  background: #fff; border: 1px solid #e6eae4; border-radius: 18px; padding: 15px;
  box-shadow: 0 32px 74px -20px rgba(6, 30, 26, 0.42);
  opacity: 0; visibility: hidden; transition: opacity 0.25s ease, transform 0.25s var(--ease);
}
.a11y-panel.is-open { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }
.a11y-panel__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.a11y-panel__head b { font-size: 16px; color: var(--ink); }
.a11y-panel__close { border: 0; background: var(--mist); width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 13px; color: var(--ink); line-height: 1; }
.a11y-panel__close:focus-visible { outline: 3px solid rgba(0, 120, 100, 0.5); }
.a11y-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.a11y-opt { padding: 12px 8px; border: 1.5px solid #e6eae4; border-radius: 12px; background: #fff; font-family: inherit; font-size: 13px; font-weight: 600; color: var(--ink); cursor: pointer; text-align: center; line-height: 1.3; transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease; }
.a11y-opt:hover { border-color: var(--green); }
.a11y-opt.is-on { background: var(--green); color: #fff; border-color: var(--green); }
.a11y-opt:focus-visible { outline: 3px solid rgba(0, 120, 100, 0.5); outline-offset: 2px; }
.a11y-reset { margin-top: 10px; width: 100%; padding: 11px; border: 0; border-radius: 12px; background: var(--ink); color: #fff; font-weight: 700; font-size: 13.5px; cursor: pointer; font-family: inherit; }
.a11y-reset:focus-visible { outline: 3px solid rgba(205, 236, 105, 0.7); }
.a11y-stmt { display: block; text-align: center; margin-top: 10px; font-size: 13px; color: var(--green); text-decoration: underline; font-weight: 600; }

/* ---- accessibility modes (applied to <html>) ---- */
html.a11y-fs1 { zoom: 1.12; }
html.a11y-fs2 { zoom: 1.22; }
html.a11y-fs3 { zoom: 1.35; }
/* high contrast — colour based (no CSS filter, so fixed elements stay put) */
html.a11y-contrast, html.a11y-contrast body { background: #000 !important; }
html.a11y-contrast *:not(svg):not(path):not(circle):not(use):not(img):not(video) { background-color: transparent !important; background-image: none !important; color: #fff !important; border-color: #777 !important; box-shadow: none !important; text-shadow: none !important; }
html.a11y-contrast a, html.a11y-contrast a *, html.a11y-contrast .a11y-stmt { color: #ff0 !important; }
html.a11y-contrast .a11y-opt, html.a11y-contrast button, html.a11y-contrast .btn { border: 1.5px solid #fff !important; }
html.a11y-contrast .a11y-opt.is-on { background: #ff0 !important; color: #000 !important; }
/* highlight links */
html.a11y-links a { text-decoration: underline !important; outline: 2px solid rgba(0, 130, 108, 0.7) !important; outline-offset: 2px; }
/* readable font + spacing */
html.a11y-readable, html.a11y-readable :not(.a11y-btn):not(.a11y-btn *) { font-family: Arial, "Helvetica Neue", "Segoe UI", sans-serif !important; letter-spacing: 0.02em !important; line-height: 1.7 !important; }
/* big cursor */
html.a11y-cursor, html.a11y-cursor * { cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="46" height="46" viewBox="0 0 24 24"><path fill="%23000" stroke="%23fff" stroke-width="1.2" d="M5 2.5l14.5 8.3-6.4 1.4-3 6.9z"/></svg>') 5 4, auto; }
html.a11y-cursor .cur-dot, html.a11y-cursor .cur-ring { display: none !important; }
/* stop animations */
html.a11y-nomotion *, html.a11y-nomotion *::before, html.a11y-nomotion *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; scroll-behavior: auto !important; }

.footer__areas { font-size: 12.5px; line-height: 1.6; color: var(--gray); max-width: 40ch; margin-top: 2px; opacity: 0.9; }

/* footer legal links — their own subtle bar above the wordmark (not mixed with nav) */
.footer__legal {
  max-width: var(--colw); margin: clamp(30px, 4.5vw, 48px) auto 0;
  padding-top: clamp(18px, 2.4vw, 26px); border-top: 1px solid rgba(6, 30, 26, 0.1);
  display: flex; flex-wrap: wrap; align-items: center;
}
.footer__legal a { position: relative; font-size: 13px; font-weight: 500; color: var(--gray); padding: 5px 18px; transition: color 0.22s ease; }
.footer__legal a:first-child { padding-inline-start: 2px; }
.footer__legal a:not(:first-child)::before { content: ""; position: absolute; inset-inline-start: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 3px; border-radius: 50%; background: var(--lime); }
.footer__legal a::after { content: ""; position: absolute; inset-inline: 18px 18px; bottom: 1px; height: 2px; background: var(--lime); border-radius: 2px; transform: scaleX(0); transform-origin: right; transition: transform 0.3s var(--ease); }
.footer__legal a:first-child::after { inset-inline: 2px 18px; }
.footer__legal a:hover { color: var(--green); }
.footer__legal a:hover::after { transform: scaleX(1); }

/* ===== Form success popup ===== */
.fpop { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.32s ease, visibility 0.32s ease; }
.fpop.is-in { opacity: 1; visibility: visible; pointer-events: auto; }
.fpop__backdrop { position: absolute; inset: 0; background: rgba(3, 20, 17, 0.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.fpop__card { position: relative; z-index: 1; width: min(410px, 100%); background: #fff; border-radius: 28px; padding: 42px 32px 32px; text-align: center; box-shadow: 0 40px 90px -28px rgba(0, 0, 0, 0.5); transform: translateY(18px) scale(0.94); opacity: 0; transition: transform 0.45s var(--ease), opacity 0.35s ease; }
.fpop.is-in .fpop__card { transform: translateY(0) scale(1); opacity: 1; }
.fpop__ring { width: 86px; height: 86px; margin: 0 auto 22px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; box-shadow: 0 12px 32px -8px rgba(205, 236, 105, 0.85); }
.fpop__check { width: 48px; height: 48px; }
.fpop__circle { fill: none; stroke: rgba(6, 30, 26, 0.16); stroke-width: 3; }
.fpop__tick { fill: none; stroke: var(--green); stroke-width: 4.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 42; stroke-dashoffset: 42; }
.fpop.is-in .fpop__tick { animation: fpopTick 0.5s 0.26s var(--ease) forwards; }
@keyframes fpopTick { to { stroke-dashoffset: 0; } }
.fpop__title { font-size: clamp(21px, 4vw, 25px); font-weight: 800; color: var(--green); margin: 0 0 10px; }
.fpop__txt { font-size: 15px; line-height: 1.6; color: var(--gray); margin: 0 0 24px; }
.fpop__btn { display: inline-block; background: var(--green); color: #fff; border: none; border-radius: 999px; padding: 13px 42px; font-size: 15px; font-weight: 700; cursor: pointer; transition: transform 0.2s ease, background 0.2s ease; }
.fpop__btn:hover { background: var(--dark); transform: translateY(-2px); }
.cform__submit.is-sending { opacity: 0.75; cursor: wait; }
@media (prefers-reduced-motion: reduce) { .fpop, .fpop__card, .fpop__tick { transition: none; animation: none; } }

/* ===== Mobile scroll performance — backdrop-filter blur repaints every scroll frame (very expensive on phones). Swap for solid-ish backgrounds. ===== */
@media (max-width: 820px) {
  .badge { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(255, 255, 255, 0.92); }
  .badge--ghost { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(255, 255, 255, 0.16); }
  .badge--rot { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(205, 236, 105, 0.14); }
  .glass { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .about__tag { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(0, 49, 43, 0.9); }
}


/* ===== Character hero (chero) — dark cosmic, character left / copy right ===== */
.chero { position: relative; }
.chero__pin { position: relative; height: 100svh; overflow: hidden; z-index: 5; }
.chero__dark { position: absolute; inset: 0; z-index: 2; background: radial-gradient(125% 88% at 50% -12%, #0a6650 0%, #005748 24%, #004036 56%, #00322b 100%); }
.reveal { position: relative; }
.chero__grid { position: absolute; inset: 0; z-index: 1; pointer-events: none; background-image: linear-gradient(rgba(205,236,105,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(205,236,105,0.07) 1px, transparent 1px); background-size: 56px 56px; background-position: center top; -webkit-mask-image: radial-gradient(95% 85% at 50% 28%, #000 22%, transparent 80%); mask-image: radial-gradient(95% 85% at 50% 28%, #000 22%, transparent 80%); }
.chero__arc, .chero__arc2 { position: absolute; left: 50%; top: 3%; transform: translate(-50%, -50%); border-radius: 50%; pointer-events: none; z-index: 2; }
.chero__arc { width: 150vmax; height: 150vmax; border: 1.5px solid rgba(205,236,105,0.22); box-shadow: inset 0 0 140px rgba(0,190,120,0.28), 0 0 90px rgba(0,160,105,0.2); }
.chero__arc2 { width: 118vmax; height: 118vmax; border: 1px solid rgba(205,236,105,0.12); }
.chero__aura { position: absolute; z-index: 1; width: 90vw; height: 68vh; left: 42%; top: 28%; transform: translate(-50%, -50%); background: radial-gradient(closest-side, rgba(0,170,112,0.4), transparent 68%); filter: blur(22px); pointer-events: none; }
.chero__inner { position: absolute; z-index: 3; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: min(1400px, 94vw); direction: ltr; }
.chero__char { position: absolute; z-index: 2; top: 160px; left: 0; height: min(88svh, 920px); }
.chero__char img { display: block; height: 100%; width: auto; object-fit: contain; -webkit-mask-image: linear-gradient(to bottom, #000 54%, rgba(0,0,0,0.25) 78%, transparent 100%); mask-image: linear-gradient(to bottom, #000 54%, rgba(0,0,0,0.25) 78%, transparent 100%); animation: cheroFloat 7s ease-in-out infinite; }
@keyframes cheroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.chero__copy { position: absolute; z-index: 3; top: 50%; right: 24px; transform: translateY(-50%); width: min(46%, 540px); direction: rtl; text-align: right; color: #fff; }
.chero__copy .badge--rot { margin: 0 0 22px; }
.chero__copy .mk__title { text-align: right; margin: 0; }
.chero__copy .mk__line { justify-content: flex-start; }
.chero__copy .mk__sub { margin: 22px 0 0; text-align: right; max-width: 42ch; }
.chero__copy .mk__cta { justify-content: flex-start; margin-top: 32px; }
/* ===== chero dashboard demo (cards fly into it on scroll) ===== */
.chero__demo { position: absolute; z-index: 3; left: 19.5%; bottom: 12.2%; width: 431px; transform: perspective(1400px) rotateY(-15deg) rotateX(7deg); transform-origin: 50% 50%; }
.chero__demo-glow { position: absolute; inset: -34%; z-index: -1; background: radial-gradient(closest-side, rgba(205,236,105,0.38), transparent 72%); filter: blur(34px); }
.chero__dash { display: block; width: 100%; height: auto; border-radius: 20px; box-shadow: 0 60px 100px -34px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06); }
.scard { position: absolute; z-index: 6; background: rgba(255,255,255,0.97); border-radius: 18px; padding: 15px 18px; min-width: 178px; box-shadow: 0 34px 66px -22px rgba(0,0,0,0.62); direction: rtl; transform-style: preserve-3d; transition: transform 0.5s var(--ease), box-shadow 0.5s ease; }
.scard--ai { transform: perspective(840px) rotateY(-10deg) rotateX(3deg) rotate(-2.4deg); }
.scard--traffic { transform: perspective(840px) rotateY(-10deg) rotateX(3deg) rotate(2.8deg); }
.scard:hover { transform: perspective(840px) rotateY(0deg) rotateX(0deg) rotate(0deg) translateY(-4px); box-shadow: 0 42px 82px -18px rgba(0,0,0,0.7); z-index: 5; }
.scard__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.scard__top b { font: 600 13px var(--font); color: var(--ink); white-space: nowrap; }
.scard__chip { font: 700 11px var(--font); background: var(--lime); color: #10231b; padding: 3px 10px; border-radius: 999px; }
.scard__big { display: flex; align-items: baseline; gap: 3px; }
.scard__big em { font: 400 35px var(--serif); font-style: italic; color: var(--green); }
.scard__big i { font: 600 16px var(--font); color: var(--gray); font-style: normal; }
.scard__big u { margin-inline-start: auto; color: #2fae7a; text-decoration: none; font-size: 15px; align-self: center; }
/* ---- tablet: keep the split layout but tighten it so nothing overflows ---- */
@media (max-width: 1100px) and (min-width: 901px) {
  .chero__char { height: min(76svh, 720px); top: auto; bottom: 0; }
  .chero__copy { width: min(52%, 500px); right: 18px; }
  .chero__copy .mk__title { font-size: clamp(30px, 4.6vw, 52px); }
  .chero__demo { width: clamp(300px, 30vw, 400px); left: 15%; }
}

/* ---- phone / small tablet: stack copy over character, no zoom, no overflow ---- */
@media (max-width: 900px) {
  .chero__pin { height: auto; min-height: 100svh; overflow: hidden; }
  .chero__inner { position: static; transform: none; width: 100%; display: flex; flex-direction: column; align-items: center; direction: rtl; padding: clamp(88px, 22vw, 120px) 22px clamp(30px, 8vw, 56px); text-align: center; }
  .chero__copy { position: static; transform: none; inset: auto; width: 100%; max-width: 560px; text-align: center; order: 1; }
  .chero__copy .badge--rot { margin: 0 auto 18px; }
  .chero__copy .mk__title { text-align: center; font-size: clamp(34px, 9.2vw, 52px); }
  .chero__copy .mk__line, .chero__copy .mk__cta { justify-content: center; }
  .chero__copy .mk__sub { text-align: center; margin: 18px auto 0; max-width: 40ch; }
  .chero__copy .mk__cta { margin-top: 26px; }
  .chero__char { position: static; transform: none; inset: auto; height: auto; width: min(84%, 400px); order: 2; margin: clamp(18px, 6vw, 36px) auto 0; }
  .chero__char img { height: auto; width: 100%; animation: none; -webkit-mask-image: linear-gradient(to bottom, #000 74%, transparent 100%); mask-image: linear-gradient(to bottom, #000 74%, transparent 100%); }
  /* dashboard card is a desktop flourish — the character is the hero visual on phones */
  .chero__demo { display: none; }
  .scard { display: none; }
}

@media (max-width: 460px) {
  .chero__inner { padding-top: 90px; }
  .chero__copy .mk__title { font-size: clamp(32px, 11vw, 52px); }
}

/* ===== Mobile scroll performance =====
   backdrop-filter re-blurs the whole scrolling page every frame on touch
   devices — a major cause of stuttering/momentum stalls on iOS. Drop it on
   touch/small screens (with slightly more opaque fallbacks so nothing looks
   see-through) and keep the frosted-glass look on desktop only. */
@media (hover: none), (max-width: 900px) {
  .nav, .consent, .glass, .badge, .badge--rot, .badge--ghost, .about__tag, .fpop__backdrop, .fcard, .mk__float, .mbar, .navmenu {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .badge { background: rgba(255, 255, 255, 0.9); }
  .badge--rot { background: rgba(6, 40, 34, 0.55); }
  .badge--ghost { background: rgba(255, 255, 255, 0.16); }
  .about__tag { background: rgba(0, 49, 43, 0.85); }

  /* the hero is where it stutters: the giant 150vmax arcs carry 140px/90px
     box-shadow blurs and the aura is a blurred filter — the heaviest paint on
     the page. Hide/flatten them on mobile; the gradient + grid keep the look. */
  .chero__arc, .chero__arc2 { display: none; }
  .chero__aura { filter: none; opacity: 0.65; }
  .chero__grid { background-size: 72px 72px; }

  /* stop forcing dozens of permanent GPU layers — on mobile that thrashes the
     compositor and stalls scroll momentum. Animations still promote on demand. */
  .deco i, .deco--hero i, .badge__rot b, .show, .bspark__line, .pcard,
  .carousel__track, .about__chip, .band__media img, .htrack, .hphone,
  .hs__line, .tcard, .tcard--logo .tmarq, .mk__float, .mk__dash,
  .mdchart__line, .mdchart__pulse, .mdyearbars i, .cform__submit,
  .chero__dark, .chero__char img { will-change: auto !important; }
}

