/* ==========================================================================
   Syneria Technologies — Design System v2 (2026 redesign)
   Brand: lime #6DB105 / charcoal #545454 · Inspired layout language:
   soft paper background, deep-green ink, pill buttons, large rounded panels.
   ========================================================================== */

:root {
  /* Brand */
  --lime: #6DB105;
  --lime-bright: #82CC0F;
  --lime-soft: #E9F5D2;
  --lime-tint: #F0F7E2;
  --deep: #1E3007;
  --deep-2: #28400B;
  --deep-3: #121E06;
  --charcoal: #545454;
  --charcoal-deep: #2A2A2A;
  --mint: #00FFB0;
  --sky-blue: #1AB2FF;
  --ink: #283021;
  --body-c: #4B5443;
  --muted: #6E7763;
  --paper: #F7F9F1;
  --card: #FFFFFF;
  --line: #E2E8D5;

  /* Pastel accents (icon chips, highlights) */
  --p-sky: #E4F1F8;   --p-sky-ink: #29586E;
  --p-sand: #F9F0DC;  --p-sand-ink: #7A5A1E;
  --p-lilac: #EFEBF9; --p-lilac-ink: #4F4382;
  --p-rose: #FAEAE4;  --p-rose-ink: #84422C;
  --p-mint: #E2F3EA;  --p-mint-ink: #1F5E40;
  --p-lime-ink: #3E6403;

  /* Shape & depth */
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(40, 64, 11, .06);
  --shadow-md: 0 10px 30px rgba(40, 64, 11, .10);
  --shadow-lg: 0 24px 60px rgba(30, 48, 7, .14);

  /* Type */
  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Motion */
  --spring: cubic-bezier(.34, 1.56, .64, 1);

  --header-h: 76px;
}

/* Rubberband squash-and-stretch, triggered on hover of interactive elements */
@keyframes rubberband {
  0%   { transform: scale3d(1, 1, 1); }
  30%  { transform: scale3d(1.16, .86, 1); }
  45%  { transform: scale3d(.88, 1.1, 1); }
  60%  { transform: scale3d(1.07, .95, 1); }
  75%  { transform: scale3d(.97, 1.02, 1); }
  100% { transform: scale3d(1, 1, 1); }
}

/* ---------- Living SVGs: spinning burst, pulsing dots, drawing underline -- */
@keyframes logoSpin { to { transform: rotate(360deg); } }
.rotor {
  transform-box: view-box;
  transform-origin: center;
  animation: logoSpin 26s linear infinite;
}
/* Brand lockups (header/footer) breathe but do not spin */
.brand .mark .rotor,
.footer-brand .mark .rotor { animation: none; }

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.8); opacity: .72; }
}
.burst .bdot {
  transform-box: fill-box;
  transform-origin: center;
  animation: dotPulse 3.4s ease-in-out infinite;
}
.burst .bdot:nth-of-type(1) { animation-delay: 0s; }
.burst .bdot:nth-of-type(2) { animation-delay: .34s; }
.burst .bdot:nth-of-type(3) { animation-delay: .68s; }
.burst .bdot:nth-of-type(4) { animation-delay: 1.02s; }
.burst .bdot:nth-of-type(5) { animation-delay: 1.36s; }
.burst .bdot:nth-of-type(6) { animation-delay: 1.7s; }
.burst .bdot:nth-of-type(7) { animation-delay: 2.04s; }
.burst .bdot:nth-of-type(8) { animation-delay: 2.38s; }
.burst .bdot:nth-of-type(9) { animation-delay: 2.72s; }
.burst .bdot:nth-of-type(10) { animation-delay: 3.06s; }

@keyframes drawIn { to { stroke-dashoffset: 0; } }
.accent-underline svg .draw {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawIn 1.1s ease .45s forwards;
}

/* Claude-style loading behaviour on the brand mark: slow spin + breathing */
@keyframes breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(.8); } }
.brand .mark .breath,
.footer-brand .mark .breath {
  transform-box: view-box;
  transform-origin: center;
  animation: breathe 2.8s ease-in-out infinite;
}

/* ---------- Interactive world map (Global Presence) ---------- */
.wm-panel { padding-bottom: 2.4rem; }
.panel-deep.wm-panel {
  background: linear-gradient(165deg, var(--deep-2) 0%, var(--deep) 55%, var(--deep-3) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), inset 0 0 90px rgba(0, 0, 0, .35);
}
.panel-deep.wm-panel::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 28% 18%, rgba(130, 204, 15, .10), transparent 55%);
  pointer-events: none;
}
.wm-intro { max-width: 760px; margin-bottom: 1rem; }
.world-map { margin: 0; width: 100%; }
.world-map svg {
  width: 100%; height: auto; overflow: visible; display: block;
  transform: perspective(1400px) rotateX(4deg);
  transform-origin: 50% 100%;
}

.wm-land {
  fill: rgba(0, 255, 176, .035);
  stroke: var(--mint);
  stroke-width: 1;
  stroke-opacity: .35;
  filter: drop-shadow(0 0 2px rgba(0, 255, 176, .28));
}
.wm-land:nth-child(even) {
  stroke: var(--sky-blue);
  filter: drop-shadow(0 0 2px rgba(26, 178, 255, .28));
}
.wm-glow { mix-blend-mode: screen; }

@keyframes routeFlow { to { stroke-dashoffset: -100; } }
.wm-route {
  fill: none; stroke: url(#wmArcGradient); stroke-width: 1.8;
  stroke-linecap: round; stroke-dasharray: 3 10; opacity: .5;
  animation: routeFlow 2.6s linear infinite;
  animation-delay: var(--d, 0s);
  filter: drop-shadow(0 0 3px rgba(0, 255, 176, .35));
}
.wm-route-long {
  stroke-width: 1.4;
  opacity: .35;
  stroke-dasharray: 2 14;
  filter: drop-shadow(0 0 4px rgba(26, 178, 255, .35));
}

@keyframes flowDotPulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.8); }
}
.wm-flow-dot {
  fill: var(--mint);
  filter: drop-shadow(0 0 4px rgba(26, 178, 255, .6));
  transform-box: fill-box;
  transform-origin: center;
  animation: flowDotPulse 2.6s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

.wm-pin { cursor: pointer; }
.wm-core { transform-box: fill-box; transform-origin: center; }
.wm-pin-glow {
  fill: var(--lime);
  opacity: .28;
  filter: blur(4px);
  transform-box: fill-box;
  transform-origin: center;
}
.wm-pin.is-active .wm-pin-glow { opacity: .45; }

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.12); }
  28% { transform: scale(1); }
  42% { transform: scale(1.18); }
  60% { transform: scale(1); }
}
.wm-heartbeat {
  transform-box: fill-box;
  transform-origin: center;
  animation: heartbeat 1.8s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

@keyframes pinPulse {
  0% { transform: scale(.7); opacity: .7; }
  70% { transform: scale(1.9); opacity: 0; }
  100% { opacity: 0; }
}
.wm-pin .wm-ring, .wm-beyond .wm-ring {
  fill: none; stroke: var(--lime); stroke-width: 2;
  transform-box: fill-box; transform-origin: center;
  animation: pinPulse 2.6s ease-out infinite;
  animation-delay: var(--d, 0s);
}
.wm-beyond { opacity: .9; }

.wm-label text {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  fill: #fff; paint-order: stroke; stroke: var(--charcoal-deep); stroke-width: 3px;
  stroke-linejoin: round; opacity: 0; transition: opacity .2s ease;
}
.wm-label text.show, .world-map .wm-named + .wm-label text { opacity: 1; }
/* named-market labels always visible; hover/focus brightens pin */
.wm-pin:hover .wm-core, .wm-pin:focus .wm-core, .wm-pin.is-active .wm-core {
  filter: brightness(1.4) drop-shadow(0 0 6px rgba(109, 177, 5, .9));
}
.wm-pin.is-active .wm-ring { stroke-width: 3.5; }

/* labels: show the three named markets by default */
.wm-labels .wm-label:nth-child(-n+3) text { opacity: 1; }

.wm-legend { margin-top: 1.4rem; justify-content: center; }
.wm-chip {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #fff;
  cursor: pointer; transition: background .18s ease, transform .18s var(--spring);
}
.wm-chip:hover, .wm-chip.is-active { background: var(--lime); color: var(--deep); border-color: var(--lime); transform: translateY(-2px); }
.wm-chip.is-beyond { cursor: default; }
.wm-chip svg { width: 16px; height: 16px; }
.wm-pin.is-dim { opacity: .35; }

/* ---------- Professional live-agent badges (hero chips) ---------- */
.pro-chip { padding: .45rem 1.1rem .45rem .5rem; gap: .65rem; }
.probadge { width: 38px; height: 38px; flex: none; }
.pb-lime { color: var(--p-lime-ink); }
.pb-sky { color: var(--p-sky-ink); }
.pb-lilac { color: var(--p-lilac-ink); }
.pb-sand { color: var(--p-sand-ink); }
.probadge .orbit {
  transform-box: view-box;
  transform-origin: center;
  animation: logoSpin 9s linear infinite;
}
.probadge .status {
  transform-box: fill-box;
  transform-origin: center;
  animation: pulse 2.4s infinite;
}
.hero-meta .pro-chip:nth-child(2) .orbit { animation-delay: -2.2s; }
.hero-meta .pro-chip:nth-child(2) .status { animation-delay: .6s; }
.hero-meta .pro-chip:nth-child(3) .orbit { animation-delay: -4.4s; }
.hero-meta .pro-chip:nth-child(3) .status { animation-delay: 1.2s; }
.hero-meta .pro-chip:nth-child(4) .orbit { animation-delay: -6.6s; }
.hero-meta .pro-chip:nth-child(4) .status { animation-delay: 1.8s; }

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body-c);
  background: var(--paper);
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--p-lime-ink); text-decoration: none; }
a:hover { color: var(--deep); }
ul { padding-left: 1.2rem; }
strong { color: var(--ink); }
::selection { background: var(--lime); color: var(--deep); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
  font-weight: 700;
}
h1 { font-size: clamp(2.5rem, 5.6vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 800; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.17rem; }
p { margin: 0 0 1rem; }

.container { width: min(1180px, 92vw); margin-inline: auto; }
.container-wide { width: min(1320px, 94vw); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--deep); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 14px 0;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 1.02rem 1.7rem; border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .45s var(--spring), box-shadow .25s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { animation: rubberband .75s ease; }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--lime); color: var(--deep); box-shadow: 0 6px 18px rgba(109, 177, 5, .35); }
.btn-primary:hover { background: var(--lime-bright); color: var(--deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(109, 177, 5, .45); }
.btn-dark { background: var(--deep); color: #fff; }
.btn-dark:hover { background: var(--deep-2); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--lime); color: var(--deep); transform: translateY(-2px); }
.btn-on-dark { background: var(--lime); color: var(--deep); }
.btn-on-dark:hover { background: var(--lime-bright); color: var(--deep); transform: translateY(-2px); }
.btn-link { font-weight: 700; color: var(--p-lime-ink); display: inline-flex; align-items: center; gap: .4rem; }
.btn-link:hover { color: var(--deep); gap: .6rem; }
.btn-link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.btn-link:hover svg { transform: translateX(3px); }

/* ---------- Badges & chips ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--p-lime-ink); background: var(--lime-soft);
  border: 1px solid #D8EBB4;
  padding: .45rem 1rem; border-radius: var(--r-pill); margin-bottom: 1.1rem;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .55; transform: scale(.8);} }

.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #fff; border: 1.5px solid var(--line); color: var(--ink);
  font-weight: 600; font-size: .92rem;
  padding: .5rem 1.05rem; border-radius: var(--r-pill);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 1000;
  pointer-events: none;
}
.site-header .bar {
  pointer-events: auto;
  width: min(1180px, 94vw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(226, 232, 213, .9);
  border-radius: var(--r-pill);
  padding: .55rem .65rem .55rem 1.3rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease;
}
.site-header.scrolled .bar { box-shadow: var(--shadow-md); }

.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand svg.mark { width: 40px; height: 40px; flex: none; }
.brand .word {
  font-family: var(--font-display); font-weight: 800; letter-spacing: .02em;
  color: var(--ink); font-size: 1.06rem; line-height: 1.05; text-transform: uppercase;
}
.brand .word small { display: block; font-size: .56rem; letter-spacing: .26em; color: var(--lime); font-weight: 700; }

.nav-desktop { display: flex; align-items: center; gap: .15rem; }
.nav-desktop a {
  font-weight: 600; font-size: .98rem; color: var(--ink);
  padding: .62rem 1.02rem; border-radius: var(--r-pill);
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
}
.nav-desktop a:hover { background: var(--lime-tint); color: var(--deep); }
.nav-desktop a.active { background: var(--deep); color: #fff; }
.header-cta { display: flex; align-items: center; gap: .5rem; }
.header-cta .btn { padding: .8rem 1.35rem; font-size: .95rem; }

.nav-toggle {
  display: none; background: var(--deep); border: 0; color: #fff;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.nav-mobile {
  pointer-events: auto;
  display: none;
  width: min(1180px, 94vw); margin: .6rem auto 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: 1rem;
}
.nav-mobile.open { display: block; animation: navIn .22s ease; }
@keyframes navIn { from { opacity: 0; transform: translateY(-8px);} to { opacity: 1; transform: none;} }
.nav-mobile a {
  display: block; font-weight: 650; color: var(--ink); font-size: 1.05rem;
  padding: .85rem 1.1rem; border-radius: 14px;
}
.nav-mobile a:hover, .nav-mobile a.active { background: var(--lime-tint); color: var(--deep); }
.nav-mobile .btn { width: 100%; justify-content: center; margin-top: .6rem; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 84px) 0 96px;
  overflow: hidden;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.12fr .88fr; gap: 3rem; align-items: center; }
.hero h1 .accent { color: var(--lime); }
.hero h1 .accent-underline { position: relative; white-space: nowrap; }
.hero h1 .accent-underline svg {
  position: absolute; left: 0; right: 0; bottom: -.12em; width: 100%; height: .28em;
}
.hero .lede { font-size: 1.2rem; max-width: 56ch; color: var(--body-c); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 2.2rem; }

.hero-art { position: relative; min-height: 430px; }
.hero-art .burst-wrap {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.hero-art svg.burst { width: min(320px, 60%); max-height: 84%; height: auto; }
.float-chip {
  position: absolute; display: inline-flex; align-items: center; gap: .55rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: var(--ink);
  padding: .65rem 1.1rem;
  animation: floaty 6s ease-in-out infinite;
}
.float-chip .ico { width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.float-chip .ico svg { width: 17px; height: 17px; }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }

/* decorative background dots */
.deco-dots { position: absolute; pointer-events: none; opacity: .5; }

/* ---------- Marquee ---------- */
.marquee-band { padding: 1.4rem 0; border-block: 1px solid var(--line); background: #fff; overflow: hidden; }
.marquee { display: flex; gap: 2.6rem; width: max-content; animation: marquee 36s linear infinite; }
.marquee-band:hover .marquee { animation-play-state: paused; }
.marquee .item {
  display: inline-flex; align-items: center; gap: .7rem; white-space: nowrap;
  font-family: var(--font-display); font-weight: 700; color: var(--muted); font-size: 1rem;
  letter-spacing: .04em;
}
.marquee .item svg { width: 10px; height: 10px; color: var(--lime); flex: none; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ---------- Sections ---------- */
.section { padding: 92px 0; position: relative; }
.section-tight { padding: 68px 0; }
.section-head { max-width: 760px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { margin-inline: auto; }
.section-head .sub { font-size: 1.15rem; color: var(--body-c); }

/* big rounded island panels */
.panel {
  border-radius: var(--r-xl);
  padding: clamp(2.2rem, 5vw, 4.5rem);
  position: relative; overflow: hidden;
}
.panel-deep { background: var(--deep); color: #D9E4C6; }
.panel-deep h1, .panel-deep h2, .panel-deep h3, .panel-deep h4 { color: #fff; }
.panel-deep .eyebrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: var(--lime-bright); }
.panel-tint { background: var(--lime-tint); border: 1px solid #E2EDCB; }
.panel-lime { background: var(--lime); color: var(--deep); }
.panel-lime h2, .panel-lime h3 { color: var(--deep); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--spring), box-shadow .25s ease, border-color .25s ease;
  display: flex; flex-direction: column;
}
a.card { color: inherit; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #D3DEBE; }
.card .ico-chip {
  width: 56px; height: 56px; border-radius: 18px;
  display: grid; place-items: center; margin-bottom: 1.3rem; flex: none;
}
.card .ico-chip svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.28rem; margin-bottom: .5rem; }
.card p { font-size: .99rem; color: var(--body-c); }
.card .btn-link { margin-top: auto; padding-top: .8rem; }

.chip-lime { background: var(--lime-soft); color: var(--p-lime-ink); }
.chip-sky { background: var(--p-sky); color: var(--p-sky-ink); }
.chip-sand { background: var(--p-sand); color: var(--p-sand-ink); }
.chip-lilac { background: var(--p-lilac); color: var(--p-lilac-ink); }
.chip-rose { background: var(--p-rose); color: var(--p-rose-ink); }
.chip-mint { background: var(--p-mint); color: var(--p-mint-ink); }

/* feature tiles (why choose us) */
.tile { display: flex; gap: 1.1rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; transition: transform .5s var(--spring), box-shadow .25s ease; }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile .ico-chip { width: 50px; height: 50px; border-radius: 16px; display: grid; place-items: center; flex: none; }
.tile .ico-chip svg { width: 25px; height: 25px; }
.tile h4 { margin-bottom: .3rem; }
.tile p { margin: 0; font-size: .96rem; }

/* AI practice columns (on deep panel) */
.ai-col { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 1.8rem; transition: background .2s ease, transform .2s ease; }
.ai-col:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.ai-col .ico-chip { width: 52px; height: 52px; border-radius: 16px; background: rgba(130, 204, 15, .16); color: var(--lime-bright); display: grid; place-items: center; margin-bottom: 1.1rem; }
.ai-col .ico-chip svg { width: 26px; height: 26px; }
.ai-col p { color: #C2D1A8; font-size: .97rem; margin: 0; }
.ai-col h3 { font-size: 1.2rem; }

/* sector cards */
.sector-card { position: relative; border-radius: var(--r-lg); padding: 1.9rem; min-height: 218px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--line); overflow: hidden; transition: transform .5s var(--spring), box-shadow .25s ease; }
.sector-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.sector-card .ico { position: absolute; top: 1.5rem; left: 1.6rem; width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,.75); display: grid; place-items: center; }
.sector-card .ico svg { width: 24px; height: 24px; }
.sector-card h3 { font-size: 1.18rem; margin-bottom: .2rem; }
.sector-card p { font-size: .93rem; margin: 0; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.7rem; position: relative; }
.step .n {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--lime); color: var(--deep);
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  display: grid; place-items: center; margin-bottom: 1rem;
}
.step h4 { margin-bottom: .35rem; }
.step p { font-size: .94rem; margin: 0; }

/* ---------- Checklist ---------- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.check-list li { display: flex; gap: .75rem; align-items: flex-start; }
.check-list .tick {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--lime-soft); color: var(--p-lime-ink);
  display: grid; place-items: center; margin-top: .15rem;
}
.check-list .tick svg { width: 13px; height: 13px; }
.check-list strong { display: inline; }

/* ---------- Split layout ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split .visual { border-radius: var(--r-xl); overflow: hidden; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: calc(var(--header-h) + 64px) 0 0; }
.page-hero .panel { padding: clamp(2.6rem, 6vw, 5rem); }
.page-hero .breadcrumb {
  display: flex; flex-wrap: wrap; gap: .45rem; align-items: center;
  font-size: .9rem; font-weight: 600; margin-bottom: 1.4rem;
}
.page-hero .breadcrumb a { color: var(--p-lime-ink); }
.page-hero .breadcrumb .sep { color: var(--muted); }
.page-hero .breadcrumb [aria-current] { color: var(--muted); font-weight: 500; }
.page-hero h1 { max-width: 18ch; }
.page-hero .lede { font-size: 1.18rem; max-width: 62ch; margin: 0; }
.page-hero .panel-deep .breadcrumb a { color: var(--lime-bright); }
.page-hero .panel-deep .breadcrumb .sep, .page-hero .panel-deep .breadcrumb [aria-current] { color: #9FB37F; }
.page-hero .panel-deep .lede { color: #C9D8AE; }

/* ---------- Tech chips groups ---------- */
.chip-group { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; }
.chip-group h4 { margin-bottom: .9rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip-row .chip { font-size: .87rem; padding: .42rem .9rem; background: var(--paper); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 22ch; margin-inline: auto; }
.cta-band p { max-width: 58ch; margin: 0 auto 1.8rem; font-size: 1.12rem; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.panel-deep.cta-band p { color: #C9D8AE; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.6rem, 4vw, 3rem); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 650; font-size: .92rem; color: var(--ink); margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 16px;
  padding: .92rem 1.15rem;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--lime); background: #fff;
  box-shadow: 0 0 0 4px rgba(109, 177, 5, .15);
}
.form-note { font-size: .88rem; color: var(--muted); }
.form-status { display: none; border-radius: 16px; padding: 1rem 1.3rem; font-weight: 600; margin-top: 1rem; }
.form-status.ok { display: block; background: var(--lime-soft); color: var(--p-lime-ink); }
.form-status.err { display: block; background: var(--p-rose); color: var(--p-rose-ink); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* contact info cards */
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.7rem; display: flex; gap: 1rem; align-items: flex-start; }
.info-card .ico-chip { width: 50px; height: 50px; border-radius: 16px; display: grid; place-items: center; flex: none; }
.info-card .ico-chip svg { width: 24px; height: 24px; }
.info-card h4 { margin-bottom: .25rem; }
.info-card p { margin: 0; font-size: .97rem; }
.info-card a { font-weight: 600; }

/* ---------- FAQ / accordion ---------- */
.faq { display: grid; gap: .9rem; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 0; overflow: hidden; }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.05rem;
  padding: 1.15rem 1.4rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--lime-soft); color: var(--p-lime-ink); display: grid; place-items: center; font-weight: 800; transition: transform .2s ease; }
.faq details[open] summary .pm { transform: rotate(45deg); background: var(--lime); color: var(--deep); }
.faq .faq-body { padding: 0 1.4rem 1.3rem; font-size: .99rem; }

/* ---------- Content prose (privacy etc.) ---------- */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.6rem; margin-top: 2.4rem; }
.prose h3 { font-size: 1.2rem; margin-top: 1.8rem; }
.prose li { margin-bottom: .45rem; }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 56px;
  background: var(--deep); color: #BCCB9F;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  position: relative; overflow: hidden;
}
.footer-cta { padding: 64px 0 0; }
.footer-main { padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.site-footer h3 { color: #fff; font-size: 1.02rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer .about { font-size: .96rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.site-footer ul a { color: #BCCB9F; font-size: .97rem; }
.site-footer ul a:hover { color: var(--lime-bright); }
.site-footer .contact-line { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .8rem; font-size: .95rem; }
.site-footer .contact-line svg { width: 18px; height: 18px; flex: none; margin-top: .25rem; color: var(--lime-bright); }
.site-footer .contact-line a { color: #DCE7C7; }
.site-footer .contact-line a:hover { color: var(--lime-bright); }
.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center; color: #DCE7C7;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.footer-social a:hover { background: var(--lime); color: var(--deep); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2.6rem;
  padding: 1.6rem 0; display: flex; flex-wrap: wrap; gap: .8rem;
  align-items: center; justify-content: space-between; font-size: .9rem;
}
.footer-bottom a { color: #BCCB9F; }
.footer-bottom a:hover { color: var(--lime-bright); }
.footer-brand { display: inline-flex; align-items: center; gap: .65rem; margin-bottom: 1.1rem; }
.footer-brand svg.mark { width: 38px; height: 38px; }
.footer-brand .word { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1rem; text-transform: uppercase; line-height: 1.05; }
.footer-brand .word small { display: block; font-size: .55rem; letter-spacing: .26em; color: var(--lime-bright); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; z-index: 1500; left: 50%; bottom: 18px; transform: translateX(-50%) translateY(20px);
  width: min(680px, 94vw);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 1.3rem 1.5rem;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.cookie-banner.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.cookie-banner h4 { margin-bottom: .3rem; }
.cookie-banner p { font-size: .9rem; margin-bottom: .9rem; }
.cookie-banner .actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie-banner .btn { padding: .7rem 1.3rem; font-size: .9rem; }

/* ---------- Scroll top ---------- */
.scroll-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--deep); color: #fff; display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .25s ease; box-shadow: var(--shadow-md);
}
.scroll-top.show { opacity: 1; visibility: visible; transform: none; }
.scroll-top:hover { background: var(--lime); color: var(--deep); }
.scroll-top svg { width: 20px; height: 20px; }

/* ---------- Rubberband hover triggers ---------- */
.brand:hover .mark,
.footer-brand:hover .mark,
a.card:hover .ico-chip,
.tile:hover .ico-chip,
.info-card:hover .ico-chip,
.ai-col:hover .ico-chip,
.sector-card:hover .ico,
.step:hover .n,
.faq summary:hover .pm,
.footer-social a:hover,
.scroll-top:hover,
.chip-row .chip:hover,
.hero-meta .chip:hover {
  animation: rubberband .75s ease;
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .accent-underline svg .draw { stroke-dashoffset: 0; animation: none; }
  .rotor, .breath, .burst .bdot, .probadge .orbit, .probadge .status, .wm-heartbeat, .wm-flow-dot { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee { animation: none; flex-wrap: wrap; width: auto; }
  .float-chip { animation: none; }
  .eyebrow .dot { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-art { min-height: 360px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .nav-desktop, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header { top: 10px; }
  .site-header .bar { padding: .45rem .55rem .45rem 1rem; }
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4, .steps, .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding-top: calc(var(--header-h) + 56px); padding-bottom: 64px; }
  .hero-art { min-height: 300px; }
  .float-chip { font-size: .8rem; padding: .5rem .85rem; }
  .panel { border-radius: var(--r-lg); }
  .cta-band .actions .btn { width: 100%; justify-content: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .brand .word { font-size: .92rem; }
  .brand .word small { font-size: .5rem; }
  .eyebrow { font-size: .7rem; letter-spacing: .09em; padding: .4rem .85rem; }
  .site-footer { margin-top: 32px; }
}
