/* ============================================================
   GEL EVENTS — design system
   Dark / dramatic / corporate event-tech
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Hanken+Grotesk:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root{
  /* surfaces — deep navy (GEL brand) */
  --bg:        oklch(0.185 0.052 264);
  --bg-2:      oklch(0.228 0.054 264);
  --bg-3:      oklch(0.268 0.054 264);
  --bg-4:      oklch(0.315 0.05 264);
  --line:      oklch(0.40 0.046 264);
  --line-soft: oklch(0.32 0.05 264);

  /* text */
  --fg:   oklch(0.978 0.006 255);
  --fg-2: oklch(0.84 0.02 258);
  --fg-3: oklch(0.67 0.03 260);

  /* accent — GEL lime-green slashes */
  --accent:      oklch(0.855 0.185 127);
  --accent-2:    oklch(0.77 0.16 140);
  --accent-fg:   oklch(0.23 0.06 264);
  --accent-soft: oklch(0.855 0.185 127 / 0.13);
  --accent-line: oklch(0.855 0.185 127 / 0.42);
  --glow:        oklch(0.855 0.185 127 / 0.20);
  --navy-deep:   oklch(0.30 0.13 268);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --f-display: 'Space Grotesk', system-ui, sans-serif;
  --f-body: 'Hanken Grotesk', system-ui, sans-serif;
  --f-mono: 'Space Mono', ui-monospace, monospace;
}

*{ box-sizing: border-box; margin: 0; padding: 0; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body{
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection{ background: var(--accent); color: var(--accent-fg); }

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }
button{ font-family: inherit; cursor: pointer; }

/* ---------- layout helpers ---------- */
.wrap{ max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section{ padding-block: clamp(72px, 11vw, 150px); position: relative; }
.section--tight{ padding-block: clamp(56px, 8vw, 100px); }

.eyebrow{
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before{
  content:""; width: 26px; height: 1px; background: var(--accent-line);
}
.eyebrow--center{ justify-content: center; }

.h-display{
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-wrap: balance;
}
h1.h-display{ font-size: clamp(2.3rem, 3.5vw, 3.7rem); }
h2.h-display{ font-size: clamp(2.1rem, 4.4vw, 3.5rem); }
h3.h-display{ font-size: clamp(1.4rem, 2.2vw, 1.85rem); font-weight: 600; }

.lede{ font-size: clamp(1.05rem, 1.5vw, 1.32rem); color: var(--fg-2); line-height: 1.55; text-wrap: pretty; }
.muted{ color: var(--fg-3); }

/* ---------- buttons ---------- */
.btn{
  --bh: 52px;
  display: inline-flex; align-items: center; gap: 10px;
  height: var(--bh); padding-inline: 26px;
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .25s, box-shadow .35s var(--ease), border-color .25s, color .25s;
  white-space: nowrap;
}
.btn .arr{ transition: transform .35s var(--ease); }
.btn:hover .arr{ transform: translateX(4px); }
.btn--primary{
  background: var(--accent); color: var(--accent-fg);
  box-shadow: 0 0 0 0 var(--glow);
}
.btn--primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 34px -10px var(--glow); }
.btn--ghost{
  background: transparent; color: var(--fg);
  border-color: var(--line);
}
.btn--ghost:hover{ border-color: var(--accent-line); color: var(--fg); background: var(--accent-soft); transform: translateY(-2px); }
.btn--sm{ --bh: 44px; padding-inline: 20px; font-size: 0.9rem; }
.btn--block{ width: 100%; justify-content: center; }

.txtlink{
  font-family: var(--f-mono); font-size: 0.82rem; letter-spacing: 0.04em;
  color: var(--accent); display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase;
}
.txtlink .arr{ transition: transform .3s var(--ease); }
.txtlink:hover .arr{ transform: translateX(4px); }

/* ---------- nav ---------- */
.nav{
  position: sticky; top: 0; z-index: 80;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.scrolled{
  background: oklch(0.185 0.052 264 / 0.80);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom-color: var(--line-soft);
}
.nav__in{ display: flex; align-items: center; gap: 28px; height: 76px; }
.brand{ display: flex; align-items: center; gap: 5px; font-family: var(--f-display); font-weight: 700; font-size: 1.35rem; letter-spacing: 0.01em; }
.brand__mark{
  display: inline-flex; gap: 2.5px; transform: skewX(-13deg); align-items: center;
  margin-left: 0;
}
.brand__mark i{
  display: block; width: 4.5px; height: 19px; border-radius: 1px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}
.brand__mark i:nth-child(1){ opacity: 0.55; }
.brand__mark i:nth-child(2){ opacity: 0.8; }
.nav__links{ display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a{
  font-size: 0.93rem; color: var(--fg-2); padding: 9px 13px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav__links a:hover{ color: var(--fg); background: var(--bg-3); }
.nav__links a.active{ color: var(--fg); }
.nav__cta{ display: flex; align-items: center; gap: 10px; }
.nav__burger{ display: none; width: 44px; height: 44px; border-radius: 10px; background: var(--bg-3); border: 1px solid var(--line); align-items: center; justify-content: center; }
.nav__burger span{ display: block; width: 18px; height: 2px; background: var(--fg); position: relative; }
.nav__burger span::before, .nav__burger span::after{ content:""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--fg); }
.nav__burger span::before{ top: -6px; } .nav__burger span::after{ top: 6px; }

.mobile-menu{
  position: fixed; inset: 76px 0 auto 0; z-index: 79;
  background: oklch(0.185 0.052 264 / 0.98); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 18px var(--gutter) 28px;
  display: none; flex-direction: column; gap: 4px;
  transform: translateY(-8px); opacity: 0; transition: opacity .25s, transform .25s;
}
.mobile-menu.open{ display: flex; opacity: 1; transform: none; }
.mobile-menu a{ padding: 14px 6px; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); color: var(--fg-2); }
.mobile-menu a:last-of-type{ border: none; }
.mobile-menu .btn{ margin-top: 14px; }

/* ---------- placeholders for client photos ---------- */
.ph{
  position: relative; overflow: hidden; border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, oklch(0.27 0.05 264) 0 12px, oklch(0.235 0.05 264) 12px 24px);
  border: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: center;
  min-height: 200px;
}
.ph__tag{
  font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.06em;
  color: var(--fg-3); text-transform: uppercase; text-align: center;
  padding: 8px 14px; border: 1px dashed var(--line); border-radius: 8px;
  background: oklch(0.20 0.05 264 / 0.7); max-width: 80%;
}
/* real photo */
.shot{ display: block; width: 100%; height: 100%; object-fit: cover; }
.media-frame{
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: var(--bg-3);
}
/* light stage for white-background product shots */
.stage{
  background: radial-gradient(120% 120% at 50% 0%, oklch(0.98 0.004 255), oklch(0.92 0.012 255));
  border: 1px solid var(--line);
}

/* ---------- hero ---------- */
.hero{ position: relative; padding-top: clamp(48px, 7vw, 90px); padding-bottom: clamp(64px, 9vw, 120px); overflow: clip; }

/* full-bleed photographic hero */
.hero--photo{ padding: 0; min-height: clamp(560px, 88vh, 860px); display: flex; align-items: stretch; }
.hero__photo{ position: absolute; inset: 0; z-index: 0; }
.hero__photo img{ width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero--photo .hero__scrim{
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, var(--bg) 0%, oklch(0.185 0.052 264 / 0.92) 30%, oklch(0.185 0.052 264 / 0.55) 56%, oklch(0.185 0.052 264 / 0.15) 80%, transparent 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 26%);
}
.hero--photo #hero-canvas{ z-index: 2; opacity: 0.4; }
.hero--photo .hero__in{ position: relative; z-index: 3; display: block; align-self: center; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.hero--photo .hero__text{ max-width: 660px; }
.hero--photo .hero__title{ max-width: 17ch; }
.hero--photo .hero__sub{ max-width: 50ch; }
.hero__badge{ display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; background: oklch(0.20 0.013 264 / 0.6); backdrop-filter: blur(10px); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px 9px 13px; }
.hero__badge .chip__dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--glow); }
.hero__badge b{ font-family: var(--f-display); font-weight: 600; font-size: 0.92rem; color: var(--fg); }
.hero__badge span{ font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-3); }
@media (max-width: 700px){
  .hero--photo{ min-height: 0; display: block; }
  .hero__photo{ position: relative; aspect-ratio: 4/3; }
  .hero__photo img{ object-position: center 30%; }
  .hero--photo .hero__scrim{ background: linear-gradient(0deg, var(--bg) 4%, oklch(0.185 0.052 264 / 0.5) 40%, oklch(0.185 0.052 264 / 0.2) 100%); }
  .hero--photo .hero__in{ position: relative; margin-top: -22%; padding-bottom: 8px; }
  .hero--photo #hero-canvas{ display: none; }
  /* tighten the eyebrow so it doesn't wrap awkwardly over the photo */
  .hero__text .eyebrow{ letter-spacing: 0.12em; font-size: 11.5px; line-height: 1.5; }
  .hero__text .eyebrow::before{ display: none; }
}
#hero-canvas{ position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0; transition: opacity 1.4s var(--ease); }
#hero-canvas.on{ opacity: 1; }
.hero__scrim{ position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(90deg, var(--bg) 0%, oklch(0.185 0.052 264 / 0.82) 22%, oklch(0.185 0.052 264 / 0.2) 50%, transparent 64%); }
@media (max-width: 1000px){
  .hero__scrim{ background: linear-gradient(180deg, transparent 0%, oklch(0.185 0.052 264 / 0.55) 52%, var(--bg) 86%); }
}
.hero__glow{
  position: absolute; pointer-events: none; z-index: 0;
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  top: -18%; right: -10%;
  background: radial-gradient(circle, var(--glow), transparent 62%);
  filter: blur(20px);
}
.hero__grid{
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 30% 20%, #000 25%, transparent 75%);
          mask-image: radial-gradient(ellipse 90% 70% at 30% 20%, #000 25%, transparent 75%);
}
.hero__in{ position: relative; z-index: 1; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.hero__title{ margin: 20px 0 0; max-width: 15ch; }
.hero__title em{ font-style: normal; color: var(--accent); }
.nb{ white-space: nowrap; }
.hero__sub{ margin-top: 26px; max-width: 33ch; }
.hero__cta{ margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__media{ position: relative; display: flex; align-items: flex-end; justify-content: center; min-height: 0; }
.hero__figures{ position: relative; z-index: 1; width: 116%; max-width: none; margin-inline: -8%; height: auto; object-fit: contain; filter: drop-shadow(0 34px 46px oklch(0.12 0.04 264 / 0.55)); }
.hero__paint{ position: absolute; inset: -8% -10% -2% -10%; z-index: 0; pointer-events: none; }
/* navy grounding slab behind the figures */
.hero__paint::before{
  content: ""; position: absolute; inset: 14% 6% 4%;
  background: radial-gradient(62% 58% at 50% 52%, var(--bg-3), transparent 72%);
  filter: blur(10px); border-radius: 46% 54% 50% 50%;
}
/* lime brush swoosh, upper-right */
.hero__paint::after{
  content: ""; position: absolute; right: 0; top: 2%; width: 66%; height: 50%;
  background: linear-gradient(112deg, transparent 8%, var(--accent) 48%, var(--accent-2) 72%, transparent 96%);
  filter: blur(30px); opacity: 0.4; transform: rotate(-15deg); border-radius: 50%;
}
.chip{
  position: absolute; z-index: 2;
  background: oklch(0.20 0.013 248 / 0.72); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 18px; display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 18px 40px -22px #000;
}
.chip__n{ font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; color: var(--fg); letter-spacing: -0.02em; }
.chip__l{ font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-3); }
.chip--tl{ top: 22px; left: -26px; }
.chip--br{ bottom: 26px; right: -22px; }
.chip__dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--glow); display: inline-block; margin-right: 7px; }

/* ---------- intro / stats ---------- */
.intro{ border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-2); }
.intro__in{ display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 64px); }
.intro__lead{ font-family: var(--f-display); font-weight: 500; font-size: clamp(1.5rem, 3vw, 2.35rem); line-height: 1.28; letter-spacing: -0.015em; text-wrap: balance; max-width: 22ch; }
.intro__lead b{ color: var(--accent); font-weight: 500; }
.stats{ display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 4vw, 48px); }
.stat__n{ font-family: var(--f-display); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.03em; line-height: 1; }
.stat__n span{ color: var(--accent); }
.stat__l{ margin-top: 10px; font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-3); }
.stat{ padding-top: 22px; border-top: 1px solid var(--line); }

/* ---------- section head ---------- */
.shead{ max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.shead h2{ margin-top: 18px; }
.shead p{ margin-top: 18px; }
.shead--center{ margin-inline: auto; text-align: center; }

/* ---------- trust bar (social proof under hero) ---------- */
.trustbar{ background: var(--bg-2); border-bottom: 1px solid var(--line-soft); }
.trustbar__in{ display: flex; align-items: center; justify-content: center; gap: clamp(20px, 5vw, 72px); padding-block: clamp(26px, 4vw, 40px); flex-wrap: wrap; }
.trustitem{ display: flex; align-items: center; gap: 16px; }
.trustitem__ico{ flex: none; width: 62px; height: 62px; border-radius: 50%; border: 1.5px solid var(--accent-line); display: grid; place-items: center; color: var(--accent); background: var(--accent-soft); }
.trustitem__ico svg{ width: 28px; height: 28px; }
.trustitem__txt{ display: flex; flex-direction: column; line-height: 1.1; }
.trustitem__n{ font-family: var(--f-display); font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing: -0.02em; color: var(--fg); }
.trustitem__l{ font-family: var(--f-body); font-size: 0.95rem; color: var(--fg-2); margin-top: 3px; }
.trustbar__div{ width: 1px; height: 52px; background: var(--line); flex: none; }
@media (max-width: 820px){
  .trustbar__div{ display: none; }
  .trustbar__in{ gap: 20px 28px; }
}
@media (max-width: 560px){
  .trustbar__in{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; padding-block: 26px; }
  .trustitem{ flex-direction: column; text-align: center; gap: 8px; padding: 2px 4px; min-width: 0; }
  .trustitem + .trustitem{ border-left: 1px solid var(--line-soft); }
  .trustitem__ico{ width: 46px; height: 46px; }
  .trustitem__ico svg{ width: 22px; height: 22px; }
  .trustitem__txt{ align-items: center; min-width: 0; }
  .trustitem__n{ font-size: 1.05rem; letter-spacing: -0.01em; }
  .trustitem__l{ font-size: 0.72rem; line-height: 1.25; text-wrap: balance; }
}
@media (max-width: 400px){
  .trustitem__n{ font-size: 0.95rem; }
  .trustitem__l{ font-size: 0.68rem; }
}

/* ---------- service cards ---------- */
.cards{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card{
  position: relative; background: var(--bg-2); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 28px 26px 26px;
  display: flex; flex-direction: column; min-height: 290px;
  transition: transform .4s var(--ease), border-color .3s, background .3s;
  overflow: hidden;
}
.card::after{
  content:""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(120% 60% at 50% -10%, var(--accent-soft), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.cards--3{ grid-template-columns: repeat(3, 1fr); }
.card--feature{ border-color: var(--accent-line); background: linear-gradient(150deg, var(--bg-3), var(--bg-2)); }
.card--feature .card__n{ display: inline-flex; }
.card:hover{ transform: translateY(-6px); border-color: var(--accent-line); background: var(--bg-3); }
@media (max-width: 1000px){ .cards--3{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .cards--3{ grid-template-columns: 1fr; } }
/* reporting band */
.repband{ display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.repband__media{ aspect-ratio: 16/11; }
@media (max-width: 1000px){ .repband{ grid-template-columns: 1fr; } }
.card:hover::after{ opacity: 1; }
.card__n{ font-family: var(--f-mono); font-size: 0.78rem; color: var(--accent); letter-spacing: 0.1em; }
.card__t{ font-family: var(--f-display); font-weight: 600; font-size: 1.28rem; letter-spacing: -0.01em; margin-top: 16px; }
.card__d{ color: var(--fg-2); font-size: 0.98rem; margin-top: 12px; flex: 1; }
.card__link{ margin-top: 20px; }
/* hover photo reveal — shows what each experience looks like onsite */
.card__img{ position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.08); transition: opacity .5s var(--ease), transform .7s var(--ease); pointer-events: none; }
.card__img::after{ content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, oklch(0.14 0.04 264 / 0.45) 0%, oklch(0.12 0.035 264 / 0.82) 55%, oklch(0.11 0.03 264 / 0.95) 100%); }
.card:hover .card__img{ opacity: 1; transform: scale(1); }
.card > :not(.card__img){ position: relative; z-index: 2; }
.card:hover .card__d{ color: var(--fg); }
@media (prefers-reduced-motion: reduce){ .card__img{ transition: opacity .2s; transform: none; } }

/* ---------- process timeline ---------- */
.process{ background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.steps{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.step{ position: relative; padding: 38px 26px 0 0; }
.step:not(:last-child){ padding-right: 30px; }
.step__rail{ position: relative; height: 2px; background: var(--line); margin-bottom: 26px; }
.step__rail::before{ content:""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 13px; height: 13px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--glow); }
.step__n{ font-family: var(--f-mono); font-size: 0.78rem; color: var(--accent); letter-spacing: 0.12em; }
.step__t{ font-family: var(--f-display); font-weight: 600; font-size: 1.22rem; margin-top: 12px; letter-spacing: -0.01em; }
.step__d{ color: var(--fg-2); margin-top: 10px; font-size: 0.96rem; }

/* ---------- testimonials ---------- */
.quotes{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote{
  background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column;
}
.quote__mark{ font-family: var(--f-display); font-weight: 700; font-size: 3rem; line-height: 0.6; color: var(--accent-line); height: 28px; }
.quote__t{ font-size: 1.08rem; color: var(--fg); line-height: 1.55; flex: 1; margin-bottom: 26px; text-wrap: pretty; }
.quote__by{ display: flex; align-items: center; gap: 13px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.quote__av{ width: 42px; height: 42px; border-radius: 50%; background: var(--bg-4); border: 1px solid var(--line); flex: none; display: flex; align-items: center; justify-content: center; font-family: var(--f-mono); font-size: 0.7rem; color: var(--fg-3); }
.quote__nm{ font-family: var(--f-display); font-weight: 600; font-size: 0.96rem; }
.quote__rl{ font-size: 0.84rem; color: var(--fg-3); }

/* ---------- trust strip ---------- */
.trust{ text-align: center; }
.trust__l{ font-family: var(--f-mono); font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-3); }
.logos{ margin-top: 32px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.logo-ph{
  height: 64px; border-radius: 10px; border: 1px solid var(--line-soft);
  background: var(--bg-2); display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.08em; color: var(--fg-3);
  text-transform: uppercase;
}

/* ---------- contact / quote ---------- */
.contact__in{ display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.contact__aside h2{ margin-top: 18px; }
.contact__aside .lede{ margin-top: 20px; max-width: 38ch; }
.contact-list{ margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.contact-item{ display: flex; gap: 14px; align-items: flex-start; }
.contact-item__k{ font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-3); width: 78px; flex: none; padding-top: 3px; }
.contact-item__v{ color: var(--fg); font-size: 1rem; }
.contact-item__v a:hover{ color: var(--accent); }

.form{
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
}
.fgrid{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field{ display: flex; flex-direction: column; gap: 8px; }
.field--full{ grid-column: 1 / -1; }
.field label{ font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-2); }
.field label .req{ color: var(--accent); }
.field input, .field select, .field textarea{
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  color: var(--fg); font-family: var(--f-body); font-size: 1rem; padding: 13px 15px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
}
.field textarea{ resize: vertical; min-height: 104px; }
.field input::placeholder, .field textarea::placeholder{ color: var(--fg-3); }
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none; border-color: var(--accent-line); box-shadow: 0 0 0 3px var(--accent-soft); background: var(--bg-2);
}
.field.invalid input, .field.invalid select, .field.invalid textarea{ border-color: oklch(0.65 0.18 26); }
.field__err{ font-family: var(--f-mono); font-size: 0.7rem; color: oklch(0.72 0.16 26); display: none; }
.field.invalid .field__err{ display: block; }
.field select{ appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--fg-3) 50%), linear-gradient(135deg, var(--fg-3) 50%, transparent 50%); background-position: calc(100% - 19px) 50%, calc(100% - 14px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 38px; }

.checks{ display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check{ display: flex; align-items: center; gap: 11px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; transition: border-color .2s, background .2s; font-size: 0.92rem; }
.check:hover{ border-color: var(--accent-line); }
/* two badge types (pre-printed) */
.btypes{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btype{ background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: border-color .3s; }
.btype:hover{ border-color: var(--accent-line); }
.btype__media{ aspect-ratio: 16/10; overflow: hidden; border-bottom: 1px solid var(--line-soft); background: var(--bg-3); }
.btype__media img{ width: 100%; height: 100%; object-fit: cover; }
.btype__body{ padding: clamp(22px, 3vw, 32px); display: flex; flex-direction: column; flex: 1; }
.btype__tag{ align-self: flex-start; }
.btype__t{ font-family: var(--f-display); font-weight: 600; font-size: 1.4rem; letter-spacing: -0.01em; margin-top: 14px; }
.btype__intro{ color: var(--fg-2); margin-top: 11px; font-size: 0.95rem; line-height: 1.55; }
.spec{ display: flex; flex-direction: column; margin-top: 20px; border-top: 1px solid var(--line-soft); }
.spec > div{ display: grid; grid-template-columns: 120px 1fr; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); }
.spec dt{ font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); padding-top: 2px; margin: 0; }
.spec dd{ margin: 0; color: var(--fg-2); font-size: 0.93rem; line-height: 1.5; }
.btype__best{ margin-top: 18px; }
.btype__best > span{ font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-3); }
.chips{ display: flex; flex-wrap: wrap; gap: 8px; margin-top: 11px; }
.chips span{ font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.03em; color: var(--fg-2); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; }
@media (max-width: 860px){ .btypes{ grid-template-columns: 1fr; } }
/* preference segmented toggle */
.seg{ display: flex; gap: 10px; flex-wrap: wrap; }
.seg label{ flex: 1; min-width: 190px; display: flex; align-items: flex-start; gap: 11px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; transition: border-color .2s, background .2s; }
.seg label:hover{ border-color: var(--accent-line); }
.seg label.on{ border-color: var(--accent-line); background: var(--accent-soft); }
.seg input{ width: 17px; height: 17px; accent-color: var(--accent); flex: none; margin-top: 2px; }
.seg__t{ display: block; font-size: 0.95rem; color: var(--fg); }
.seg__d{ display: block; font-family: var(--f-mono); font-size: 0.67rem; color: var(--fg-3); margin-top: 3px; letter-spacing: 0.02em; }
.form.sent .seg, .form.sent .seg + *{ }
.check input{ width: 17px; height: 17px; accent-color: var(--accent); flex: none; }
.check.on{ border-color: var(--accent-line); background: var(--accent-soft); }

.form__foot{ margin-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.form__note{ font-family: var(--f-mono); font-size: 0.7rem; color: var(--fg-3); letter-spacing: 0.04em; max-width: 26ch; }
.form__success{
  display: none; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 30px 10px;
}
.form.sent .fgrid, .form.sent .form__foot, .form.sent .form__svctitle, .form.sent .checks{ display: none; }
.form.sent .form__success{ display: flex; }
.form__check{ width: 56px; height: 56px; border-radius: 50%; background: var(--accent-soft); border: 1px solid var(--accent-line); display: flex; align-items: center; justify-content: center; }
.form__check svg{ width: 26px; height: 26px; stroke: var(--accent); }
.form__svctitle{ font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-2); margin: 26px 0 12px; }

/* ---------- big CTA band ---------- */
.ctaband{ position: relative; overflow: clip; }
.ctaband__glow{ position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 70% 130% at 50% 120%, var(--glow), transparent 60%); pointer-events: none; }
.ctaband__in{ position: relative; z-index: 1; text-align: center; }
.ctaband h2{ margin: 20px auto 0; max-width: 16ch; }
.ctaband__cta{ margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer{ background: var(--bg-2); border-top: 1px solid var(--line); padding-top: clamp(56px, 7vw, 90px); }
.footer__top{ display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--line-soft); }
.footer__tag{ font-family: var(--f-display); font-weight: 600; font-size: 1.6rem; letter-spacing: -0.01em; }
.footer__tag b{ color: var(--accent); font-weight: 600; }
.footer__blurb{ color: var(--fg-3); margin-top: 16px; max-width: 32ch; font-size: 0.96rem; }
.fcol h4{ font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 18px; font-weight: 700; }
.fcol a, .fcol span{ display: block; color: var(--fg-2); font-size: 0.96rem; padding: 6px 0; transition: color .2s; }
.fcol a:hover{ color: var(--accent); }
.footer__bot{ display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 26px 0 40px; flex-wrap: wrap; }
.footer__legal{ font-family: var(--f-mono); font-size: 0.72rem; color: var(--fg-3); letter-spacing: 0.03em; }
.footer__legal .sep{ color: var(--line); margin-inline: 8px; }

/* ---------- floating WhatsApp button ---------- */
.wa-fab{
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  display: inline-flex; align-items: center; gap: 0;
  height: 58px; padding: 0; border-radius: 999px;
  background: #25D366; color: #fff;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,.55), 0 0 0 6px rgba(37,211,102,.16);
  overflow: hidden; max-width: 58px;
  transition: max-width .45s var(--ease), box-shadow .3s, transform .3s var(--ease), opacity .3s var(--ease);
}
.wa-fab__ico{ flex: none; width: 58px; height: 58px; display: grid; place-items: center; }
.wa-fab__ico svg{ width: 30px; height: 30px; }
.wa-fab__label{
  white-space: nowrap; font-family: var(--f-display); font-weight: 600; font-size: 0.98rem;
  max-width: 0; overflow: hidden; opacity: 0; order: -1;
  transition: max-width .45s var(--ease), opacity .3s, padding .3s;
}
.wa-fab:hover, .wa-fab:focus-visible{ max-width: 320px; transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(0,0,0,.6), 0 0 0 8px rgba(37,211,102,.2); }
.wa-fab:hover .wa-fab__label, .wa-fab:focus-visible .wa-fab__label{ opacity: 1; max-width: 240px; padding-left: 20px; }
@media (max-width: 560px){ .wa-fab{ right: 16px; bottom: 16px; height: 54px; max-width: 54px; } .wa-fab__ico{ width: 54px; height: 54px; } }
.wa-fab.is-hidden{ opacity: 0; transform: translateY(18px) scale(.82); pointer-events: none; }
@media print{ .wa-fab{ display: none !important; } }

/* ---------- reveal animation ---------- */@media (prefers-reduced-motion: no-preference){
  .reveal{ opacity: 0; transform: translateY(6px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
  .reveal.in{ opacity: 1; transform: none; }
  .reveal[data-d="1"]{ transition-delay: .08s; }
  .reveal[data-d="2"]{ transition-delay: .16s; }
  .reveal[data-d="3"]{ transition-delay: .24s; }
}

/* ============================================================
   sub-page components
   ============================================================ */
.pagehero{ position: relative; overflow: hidden; min-height: clamp(380px, 56vh, 540px); display: flex; align-items: flex-end; border-bottom: 1px solid var(--line); }
.pagehero__bg{ position: absolute; inset: 0; z-index: 0; }
.pagehero__bg img{ width: 100%; height: 100%; object-fit: cover; }
.pagehero__bg::after{ content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, oklch(0.185 0.052 264 / 0.45) 0%, oklch(0.185 0.052 264 / 0.72) 52%, var(--bg) 100%),
    linear-gradient(90deg, oklch(0.16 0.05 264 / 0.9), oklch(0.16 0.05 264 / 0.2) 72%);
}
.pagehero__in{ position: relative; z-index: 1; padding-block: clamp(40px, 7vw, 78px); width: 100%; }
.pagehero h1{ margin-top: 16px; max-width: 20ch; }
.pagehero .lede{ margin-top: 18px; max-width: 62ch; }
.pagehero__cta{ margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.crumb{ font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); display: inline-flex; gap: 8px; align-items: center; }
.crumb a{ color: var(--fg-3); } .crumb a:hover{ color: var(--accent); }

.bg-alt{ background: var(--bg-2); border-block: 1px solid var(--line-soft); }

/* alternating feature rows reuse .spotlight; add reverse */
.spotlight--rev .spotlight__text{ order: 2; }
@media (max-width: 1000px){ .spotlight--rev .spotlight__text{ order: 0; } }

/* comparison table */
.ctable-wrap{ overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-2); }
.ctable{ width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 640px; }
.ctable th, .ctable td{ text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.ctable thead th{ font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-3); background: var(--bg-3); }
.ctable thead th:first-child{ border-top-left-radius: var(--radius-lg); }
.ctable thead th:last-child{ border-top-right-radius: var(--radius-lg); }
.ctable tbody th{ font-family: var(--f-display); font-weight: 600; color: var(--fg); font-size: 0.96rem; }
.ctable tbody tr:last-child td, .ctable tbody tr:last-child th{ border-bottom: none; }
.ctable td{ color: var(--fg-2); }
.ctable .best{ color: var(--accent-fg); }
.pill-best{ display: inline-block; background: var(--accent); color: var(--accent-fg); font-family: var(--f-mono); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.pill-ok{ display: inline-block; border: 1px solid var(--accent-line); color: var(--accent); font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.pill-note{ color: var(--fg-3); font-family: var(--f-mono); font-size: 0.7rem; }

/* FAQ accordion */
.faq{ display: flex; flex-direction: column; gap: 12px; max-width: 860px; }
.faq details{ border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); overflow: hidden; transition: border-color .25s; }
.faq details[open]{ border-color: var(--accent-line); }
.faq summary{ list-style: none; cursor: pointer; padding: 20px 24px; font-family: var(--f-display); font-weight: 600; font-size: 1.06rem; display: flex; justify-content: space-between; gap: 16px; align-items: center; color: var(--fg); }
.faq summary::-webkit-details-marker{ display: none; }
.faq summary::after{ content: "+"; color: var(--accent); font-size: 1.5rem; line-height: 1; transition: transform .3s var(--ease); flex: none; }
.faq details[open] summary::after{ transform: rotate(45deg); }
.faq p{ padding: 0 24px 22px; color: var(--fg-2); margin: 0; }

/* two-column capability list */
.cap-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cap{ background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 26px 24px; transition: border-color .3s, transform .3s var(--ease); }
.cap:hover{ border-color: var(--accent-line); transform: translateY(-4px); }
.cap__t{ font-family: var(--f-display); font-weight: 600; font-size: 1.08rem; letter-spacing: -0.01em; }
.cap__d{ color: var(--fg-3); margin-top: 9px; font-size: 0.93rem; line-height: 1.55; }
@media (max-width: 1000px){ .cap-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .cap-grid{ grid-template-columns: 1fr; } }

/* simple two-col reporting split list */
.split2{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 760px){ .split2{ grid-template-columns: 1fr; } }
.panel{ background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; }
.panel h3{ display: flex; align-items: center; gap: 10px; }
.panel .eyebrow{ margin-bottom: 14px; }

/* mini contact strip on contact page */
.contact-cards{ display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; margin-top: 8px; }
@media (max-width: 760px){ .contact-cards{ grid-template-columns: 1fr; } }
.ccard{ background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 24px; }
.ccard__k{ font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.ccard__v{ margin-top: 10px; font-size: 1.05rem; color: var(--fg); }
.ccard__v a:hover{ color: var(--accent); }

/* hero product split for about */
.bio-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px){ .bio-grid{ grid-template-columns: 1fr; } }
@media (max-width: 1000px){
  .nav__links{ display: none; }
  .nav__burger{ display: flex; margin-left: auto; }
  .nav__cta .btn--primary{ display: none; }
  .cards{ grid-template-columns: 1fr 1fr; }
  .steps{ grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .step{ padding-right: 0 !important; }
  .quotes{ grid-template-columns: 1fr; }
  .logos{ grid-template-columns: repeat(3, 1fr); }
  .hero__in{ grid-template-columns: 1fr; }
  .hero__media{ order: -1; min-height: 300px; }
  .chip--tl{ left: 12px; } .chip--br{ right: 12px; }
  .contact__in{ grid-template-columns: 1fr; }
  .footer__top{ grid-template-columns: 1fr 1fr; }
  .footer__brandcol{ grid-column: 1 / -1; }
}
/* ============================================================
   home-specific components
   ============================================================ */

/* nav dropdown */
.has-drop{ position: relative; display: inline-flex; align-items: center; }
.has-drop::after{ content: ""; position: absolute; left: -14px; right: -14px; top: 100%; height: 16px; }
.drop{
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px;
  padding: 8px; min-width: 290px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
  box-shadow: 0 24px 50px -20px #000; z-index: 90;
}
.has-drop:hover .drop, .has-drop:focus-within .drop{ opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.drop a{ display: flex; flex-direction: column; gap: 2px; padding: 11px 13px !important; border-radius: 9px; background: transparent !important; }
.drop a:hover{ background: var(--bg-3) !important; }
.drop a strong{ font-family: var(--f-display); font-weight: 600; font-size: 0.95rem; color: var(--fg); display: flex; align-items: center; gap: 9px; }
.drop a span{ font-size: 0.82rem; color: var(--fg-3); }
.has-drop > a::after{ content: "▾"; font-size: 0.7em; margin-left: 5px; opacity: 0.6; }

/* hero mini-form */
.hero__quickform{ margin-top: 34px; display: flex; gap: 10px; flex-wrap: wrap; max-width: 460px; }
.hero__quickform input{ flex: 1; min-width: 200px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; padding: 14px 20px; color: var(--fg); font-family: var(--f-body); font-size: 0.98rem; }
.hero__quickform input:focus{ outline: none; border-color: var(--accent-line); box-shadow: 0 0 0 3px var(--accent-soft); }
.hero__bullets{ margin-top: 26px; display: flex; flex-direction: column; gap: 11px; }

/* check / slash list */
.tick-list{ list-style: none; display: flex; flex-direction: column; gap: 13px; }
.tick-list li{ display: flex; gap: 13px; align-items: flex-start; color: var(--fg-2); font-size: 1rem; line-height: 1.45; }
.tick{ flex: none; width: 22px; height: 22px; border-radius: 6px; background: var(--accent-soft); border: 1px solid var(--accent-line); display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }
.tick::after{ content: ""; width: 5px; height: 9px; border: solid var(--accent); border-width: 0 2px 2px 0; transform: translateY(-1px) rotate(45deg); }

/* process flow (5 steps) */
.flow{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.flow__step{ position: relative; padding: 0 22px 0 0; }
.flow__rail{ position: relative; height: 2px; background: var(--line); margin-bottom: 24px; }
.flow__rail::before{ content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--accent-line); display: grid; place-items: center; }
.flow__num{ position: absolute; left: 0; top: -16px; width: 34px; height: 34px; display: grid; place-items: center; font-family: var(--f-mono); font-size: 0.9rem; font-weight: 700; color: var(--accent); z-index: 1; }
.flow__t{ font-family: var(--f-display); font-weight: 600; font-size: 1.06rem; letter-spacing: -0.01em; }
.flow__d{ color: var(--fg-2); margin-top: 8px; font-size: 0.92rem; line-height: 1.5; }

/* ---------- process pipeline (animated check-in flow) ---------- */
.pipeline{ position: relative; margin-top: clamp(44px, 6vw, 70px); }
.pipeline__steps{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; z-index: 2; }
.pstep{ position: relative; }
.pstep__node{
  position: relative; width: 74px; height: 74px; display: grid; place-items: center;
  border-radius: 19px; background: var(--bg-3); border: 1px solid var(--line);
  margin-bottom: 24px;
  transition: transform .55s var(--ease), border-color .45s, background .45s, box-shadow .45s;
}
.pstep__ico{ color: var(--fg-3); display: grid; place-items: center; transition: color .4s, transform .5s var(--ease); }
.pstep__ico svg{ width: 32px; height: 32px; }
.pstep__num{
  position: absolute; top: -9px; right: -9px; width: 27px; height: 27px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--f-mono); font-size: 0.64rem; font-weight: 700;
  color: var(--fg-3); background: var(--bg-2); border: 1px solid var(--line);
  transition: color .4s, background .4s, border-color .4s; z-index: 2;
}
.pstep__ring{ position: absolute; inset: -6px; border-radius: 24px; border: 1.5px solid transparent; pointer-events: none; }
.pstep__t{ font-family: var(--f-display); font-weight: 600; font-size: 1.08rem; letter-spacing: -0.01em; transition: color .3s; }
.pstep__d{ color: var(--fg-2); margin-top: 8px; font-size: 0.92rem; line-height: 1.5; }

/* connecting rail (runs through node centres: 74px node → centre at 37px) */
.pipeline__track{ position: absolute; top: 37px; left: 10%; right: 10%; height: 2px; z-index: 1; transform: translateY(-1px); }
.pipeline__line{ position: absolute; inset: 0; background: var(--line); border-radius: 2px; overflow: hidden; }
.pipeline__line::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--accent-line) 50%, transparent 100%);
  background-size: 38% 100%; background-repeat: no-repeat;
  animation: plFlow 2.8s linear infinite; opacity: .7;
}
@keyframes plFlow{ 0%{ background-position: -40% 0; } 100%{ background-position: 140% 0; } }
.pipeline__fill{
  position: absolute; top: 0; left: 0; height: 100%; width: 0; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 14px var(--glow); transition: width .9s var(--ease);
}
.pipeline__token{
  position: absolute; top: 50%; left: 0; width: 26px; height: 34px; color: var(--accent);
  transform: translate(-50%, -50%); transition: left .9s var(--ease); z-index: 3;
  filter: drop-shadow(0 6px 16px var(--glow));
}
.pipeline__token svg{ width: 100%; height: 100%; display: block; animation: plBob 2.2s var(--ease) infinite; }
@keyframes plBob{ 0%,100%{ transform: translateY(0) rotate(-3deg); } 50%{ transform: translateY(-3px) rotate(3deg); } }

/* active / completed states */
.pstep.is-active .pstep__node{
  background: var(--accent-soft); border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 20px 44px -16px var(--glow);
  transform: translateY(-5px);
}
.pstep.is-active .pstep__ico{ color: var(--accent); transform: scale(1.06); }
.pstep.is-active .pstep__num{ color: var(--accent-fg); background: var(--accent); border-color: var(--accent); }
.pstep.is-active .pstep__t{ color: var(--fg); }
.pstep.is-active .pstep__ring{ border-color: var(--accent-line); animation: plPulse 1.7s var(--ease) infinite; }
.pstep.is-done .pstep__node{ border-color: var(--accent-line); }
.pstep.is-done .pstep__ico{ color: var(--accent-2); }
.pstep.is-done .pstep__num{ color: var(--accent-2); border-color: var(--accent-line); }
@keyframes plPulse{ 0%{ transform: scale(1); opacity: .85; } 70%{ transform: scale(1.14); opacity: 0; } 100%{ opacity: 0; } }

/* QR scanner icon (step 03) */
.pstep__ico--scan .qr{ opacity: .55; transition: opacity .4s; }
.pstep.is-active .pstep__ico--scan .qr,
.pstep.is-done .pstep__ico--scan .qr{ opacity: 1; }
.qr-scan{ stroke: var(--accent); stroke-width: 1.7; opacity: 0; transform-box: fill-box; transform-origin: center; }
.pstep.is-active .pstep__ico--scan .qr-scan{
  animation: qrScan 1.5s var(--ease) infinite;
  filter: drop-shadow(0 0 3px var(--accent));
}
@keyframes qrScan{
  0%   { transform: translateY(-5px); opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { transform: translateY(5px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce){
  .pipeline__line::after, .pipeline__token svg, .pstep.is-active .pstep__ring, .pstep.is-active .pstep__ico--scan .qr-scan{ animation: none; }
  .pipeline__token{ display: none; }
}

@media (max-width: 820px){
  .pipeline__track{ display: none; }
  .pipeline__steps{ grid-template-columns: 1fr; gap: 0; }
  .pstep{ display: grid; grid-template-columns: 74px 1fr; gap: 20px; padding-bottom: 30px; }
  .pstep__node{ margin-bottom: 0; }
  .pstep__text{ padding-top: 13px; }
  .pstep::before{ content: ""; position: absolute; left: 36px; top: 80px; bottom: -2px; width: 2px; background: var(--line); }
  .pstep:last-child::before{ display: none; }
  .pstep.is-active::before, .pstep.is-done::before{ background: var(--accent-line); }
}
@media (max-width: 420px){
  .pstep{ grid-template-columns: 60px 1fr; gap: 16px; }
  .pstep__node{ width: 60px; height: 60px; border-radius: 16px; }
  .pstep__ico svg{ width: 26px; height: 26px; }
  .pstep::before{ left: 29px; top: 66px; }
}

/* hero-product spotlight */
.spotlight{ display: grid; grid-template-columns: 1fr 1.02fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.spotlight__media{ aspect-ratio: 4/3; }
.spotlight__media.stage{ border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; padding: 8px; }
.spotlight__media.stage img{ width: 100%; height: 100%; object-fit: contain; }

/* featured-service strip */
.feature-strip{
  position: relative; display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--accent-line); border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 52px); overflow: hidden;
}
.feature-strip::before{ content: ""; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: linear-gradient(180deg, var(--accent), var(--accent-2)); }
.feature-strip__media{ aspect-ratio: 5/4; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.tag-new{ display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-fg); background: var(--accent); padding: 6px 13px; border-radius: 999px; font-weight: 700; }
.feature-strip h3{ margin: 18px 0 0; }
.feature-strip p{ margin-top: 14px; color: var(--fg-2); }
.microcopy{ font-family: var(--f-mono); font-size: 0.82rem; color: var(--accent); margin-top: 16px; letter-spacing: 0.02em; }

/* badge gallery */
.gallery{ display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; grid-auto-rows: 1fr; }
.gallery figure{ position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-2); }
.gallery figure img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery figure:hover img{ transform: scale(1.04); }
.gallery figcaption{ position: absolute; left: 14px; bottom: 12px; font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: oklch(0.18 0.05 264 / 0.72); backdrop-filter: blur(6px); padding: 5px 10px; border-radius: 6px; }
.g-a{ grid-column: span 5; grid-row: span 2; }
.g-b{ grid-column: span 4; }
.g-c{ grid-column: span 3; }
.g-d{ grid-column: span 4; }
.g-e{ grid-column: span 3; }

/* event essentials bento (badges & accessories) */
.bento{ display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(2, minmax(300px, 1fr)); gap: 16px; }
.bcard{ position: relative; display: flex; flex-direction: column; background: linear-gradient(160deg, var(--bg-3), var(--bg-2)); border: 1px solid var(--line-soft); border-radius: 16px; overflow: hidden; transition: border-color .3s, transform .4s var(--ease); }
.bcard:hover{ border-color: var(--accent-line); transform: translateY(-4px); }
.bcard__img{ flex: 1 1 auto; min-height: 0; overflow: hidden; }
.bcard__img img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.bcard:hover .bcard__img img{ transform: scale(1.04); }
.bcard__cap{ flex: none; display: flex; gap: 13px; align-items: flex-start; padding: 18px 20px 20px; }
.bcard__ico{ flex: none; width: 34px; height: 34px; border-radius: 9px; background: var(--accent-soft); border: 1px solid var(--accent-line); display: grid; place-items: center; color: var(--accent); }
.bcard__ico svg{ width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.bcard__t{ font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg); }
.bcard__d{ color: var(--fg-3); font-size: 0.86rem; line-height: 1.45; margin-top: 5px; }
.b-a{ grid-column: span 5; grid-row: span 2; }
.b-b{ grid-column: span 3; }
.b-c{ grid-column: span 4; }
.b-d{ grid-column: span 4; }
.b-e{ grid-column: span 3; }
@media (max-width: 1000px){
  .bento{ grid-template-columns: repeat(2, 1fr); grid-template-rows: none; }
  .b-a, .b-b, .b-c, .b-d, .b-e{ grid-column: span 1; grid-row: auto; }
  .b-a{ grid-column: span 2; min-height: 420px; }
  .bcard{ min-height: 340px; }
}
@media (max-width: 560px){
  .bento{ grid-template-columns: 1fr; }
  .b-a{ grid-column: span 1; min-height: 380px; }
  .bcard{ min-height: 320px; }
}

/* GEL advantage card */
.gel-card{ background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 64px); position: relative; overflow: hidden; }
.gel-card__glow{ position: absolute; top: -30%; right: -10%; width: 460px; height: 460px; background: radial-gradient(circle, var(--glow), transparent 65%); pointer-events: none; }
.gel-card__grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 48px; margin-top: 40px; position: relative; }
.adv__n{ font-family: var(--f-mono); font-size: 0.78rem; color: var(--accent); letter-spacing: 0.1em; }
.adv__t{ font-family: var(--f-display); font-weight: 600; font-size: 1.18rem; margin-top: 8px; }
.adv__d{ color: var(--fg-2); margin-top: 8px; font-size: 0.96rem; }

/* featured services compact grid */
.feat-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feat{ background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 24px 22px; transition: border-color .3s, background .3s, transform .3s var(--ease); }
.feat:hover{ border-color: var(--accent-line); background: var(--bg-3); transform: translateY(-4px); }
.feat__ico{ width: 34px; height: 34px; display: flex; align-items: center; gap: 2px; transform: skewX(-13deg); margin-bottom: 16px; }
.feat__ico i{ width: 4px; height: 18px; border-radius: 1px; background: var(--accent); }
.feat__ico i:nth-child(1){ opacity: .5; } .feat__ico i:nth-child(2){ opacity: .78; }
.feat__t{ font-family: var(--f-display); font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; }
.feat__d{ color: var(--fg-3); font-size: 0.9rem; margin-top: 8px; line-height: 1.5; }

@media (max-width: 1000px){
  .flow{ grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .flow__step{ padding-right: 0; }
  .spotlight{ grid-template-columns: 1fr; }
  .feature-strip{ grid-template-columns: 1fr; }
  .feature-strip__media{ order: -1; }
  .gel-card__grid{ grid-template-columns: 1fr; gap: 26px; }
  .feat-grid{ grid-template-columns: 1fr 1fr; }
  .gallery{ grid-template-columns: repeat(6, 1fr); }
  .g-a{ grid-column: span 6; grid-row: span 1; }
  .g-b, .g-c, .g-d, .g-e{ grid-column: span 3; }
}
@media (max-width: 560px){
  body{ font-size: 16px; }
  .flow{ grid-template-columns: 1fr; gap: 26px; }
  .feat-grid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr 1fr; }
  .g-a, .g-b, .g-c, .g-d, .g-e{ grid-column: span 1; }
  .hero__quickform input{ min-width: 0; }
  .cards{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; gap: 30px; }
  .stats{ grid-template-columns: 1fr; gap: 22px; }
  .fgrid{ grid-template-columns: 1fr; }
  .checks{ grid-template-columns: 1fr; }
  .logos{ grid-template-columns: repeat(2, 1fr); }
  .footer__top{ grid-template-columns: 1fr; }
  .hero__cta .btn{ flex: 1; justify-content: center; }
  .chip{ display: none; }
}

.form__error{ font-family: var(--f-mono); font-size: 0.8rem; color: oklch(0.72 0.16 26); background: oklch(0.65 0.18 26 / 0.1); border: 1px solid oklch(0.65 0.18 26 / 0.4); border-radius: 10px; padding: 12px 15px; margin-top: 16px; }

/* ============================================================
   carousel (real-event gallery)
   ============================================================ */
.carousel{ position: relative; }
.carousel__track{ display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; border-radius: var(--radius-lg); border: 1px solid var(--line); -ms-overflow-style: none; scrollbar-width: none; }
.carousel__track::-webkit-scrollbar{ display: none; }
.carousel__slide{ flex: 0 0 100%; scroll-snap-align: start; position: relative; aspect-ratio: 16/9; background: var(--bg-2); }
.carousel__slide img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel__slide figcaption{ position: absolute; left: 18px; bottom: 16px; font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; background: oklch(0.12 0.04 264 / 0.6); backdrop-filter: blur(6px); padding: 7px 13px; border-radius: 8px; }
.carousel__btn{ position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; background: oklch(0.12 0.04 264 / 0.58); backdrop-filter: blur(8px); border: 1px solid var(--line); color: #fff; font-size: 1.5rem; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s, color .2s; z-index: 2; cursor: pointer; }
.carousel__btn:hover{ background: var(--accent); color: var(--accent-fg); border-color: var(--accent); }
.carousel__btn--prev{ left: 16px; } .carousel__btn--next{ right: 16px; }
.carousel__dots{ display: flex; gap: 9px; justify-content: center; margin-top: 22px; }
.carousel__dots button{ width: 8px; height: 8px; border-radius: 50%; background: var(--line); border: none; padding: 0; cursor: pointer; transition: background .25s, width .25s; }
.carousel__dots button.on{ background: var(--accent); width: 24px; border-radius: 4px; }
@media (max-width: 560px){ .carousel__btn{ width: 42px; height: 42px; font-size: 1.3rem; } .carousel__slide figcaption{ font-size: 0.64rem; } }

/* card-designs variant: show full artwork (contain) on a stage */
.carousel--cards .carousel__track{ border: none; gap: 0; }
.carousel--cards .carousel__slide{ aspect-ratio: 16/9; background: radial-gradient(120% 130% at 50% 0%, var(--bg-3), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; }
.carousel--cards .carousel__slide img{ width: auto; height: auto; max-height: 82%; max-width: min(80%, 372px); object-fit: contain; filter: drop-shadow(0 22px 40px oklch(0.10 0.03 264 / 0.6)); transition: none; }
.carousel--cards .carousel__slide:hover img{ transform: none; }
.carousel--cards .carousel__slide figcaption{ background: oklch(0.16 0.04 264 / 0.78); }
@media (max-width: 560px){ .carousel--cards .carousel__slide img{ max-width: 92%; padding: 20px 0; } }
