/* ==========================================================================
   Laserglow — light-theme site stylesheet
   Brand tokens are the canonical values from design/design-system.html.
   The theme is light by default; dark is a *section* treatment, not a mode.
   Contrast floor on light surfaces: text/icons 4.5:1, borders/large type 3:1.
   ========================================================================== */

:root {
  /* Brand */
  --red: #ed1c24;          /* logo red — used as the UI accent on light */
  --red-ui: #ff3a42;       /* UI red, reserved for dark surfaces */
  --red-deep: #c4161c;
  --red-tint: #fff1f1;
  --red-line: rgba(237, 28, 36, 0.22);

  /* Light surfaces */
  --page: #ffffff;
  --surface: #f4f5f7;      /* visibly distinct from white */
  --surface-2: #eceef1;
  --line: #d5d9e0;         /* 3:1 against white */
  --line-soft: #e4e7ec;

  /* Ink */
  --ink: #101114;          /* body + headings */
  --ink-2: #3f444d;        /* secondary text, 4.5:1+ on white and on --surface */
  --ink-3: #5b616b;        /* minimum for small text on light */

  /* Dark sections */
  --dark: #0d0d0d;
  --dark-2: #161719;
  --dark-3: #1f2124;
  --dark-line: #33363b;
  --on-dark: #ffffff;
  --on-dark-2: #c3c7cd;

  --ok: #1f9d55;

  /* Type */
  --font-display: 'Wix Madefor Display', system-ui, sans-serif;
  --font-text: 'Wix Madefor Text', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;

  /* Layout */
  --wrap: 1320px;
  --wrap-narrow: 780px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --header-h: 84px;
  --r: 18px;
  --r-sm: 10px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 160ms;
  --t: 300ms;
  --hero-interval: 7000ms;  /* hero auto-advance; keep in sync with site.js */

  --shadow: 0 18px 44px rgba(16, 17, 20, 0.10);
  --shadow-lg: 0 30px 80px rgba(16, 17, 20, 0.16);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--page);
  color: var(--ink-2);
  font-family: var(--font-text);
  font-size: 1.1875rem;   /* base body up from 1.0625 — page read too small */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: var(--red); text-underline-offset: 3px; }
a:hover { color: var(--red-deep); }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------------------------------------------------------------- typography */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 .55em;
  text-wrap: balance;
  text-transform: uppercase;
}
/* Type ramp — one logical step per level, ~1.25 ratio. Do not add ad-hoc sizes;
   reuse these. Eyebrow < h4 < body < h3 < lede < h2 < h1. */
h1 { font-size: clamp(2.6rem, 5.4vw, 4.7rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.85rem); }
h3 { font-size: clamp(1.15rem, 1.5vw, 1.4rem); letter-spacing: -0.015em; }
h4 { font-size: 1.02rem; letter-spacing: 0; text-transform: none; }

p { margin: 0 0 1.1em; max-width: 66ch; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .875rem;      /* fixed so every red kicker is identical, no vw drift */
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1rem;
  display: block;
}
.lede { font-size: clamp(1.15rem, 1.5vw, 1.32rem); color: var(--ink-2); line-height: 1.55; }
.mark { color: var(--red); }

/* ------------------------------------------------------------------- layout */

.wrap { width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }
.wrap--narrow { width: min(var(--wrap-narrow), 100% - var(--gutter) * 2); }

.section { padding-block: clamp(4rem, 8vw, 8rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.section--surface { background: var(--surface); }

.section--dark {
  background: var(--dark);
  color: var(--on-dark-2);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--on-dark); }
.section--dark .eyebrow { color: var(--red-ui); }
.section--dark .mark { color: var(--red-ui); }
.section--dark a { color: var(--red-ui); }

/* curved mesh on the LEFT half only, faded into the white, warping toward the cursor */
.section--grid { perspective: 1200px; overflow: hidden; }
.section--grid::before {
  content: "";
  position: absolute; top: 0; bottom: 0; left: 0; width: 56%;
  background: url('/assets/approved/section-bg.jpg') left center / cover no-repeat;
  opacity: .4;
  transform-origin: 50% 50%; transform-style: preserve-3d;
  transform: rotateX(calc(var(--tly, 0) * 5deg)) rotateY(calc(var(--tlx, 0) * 5deg)) scale(1.03);
  transition: transform .4s var(--ease);
  will-change: transform; pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, #000 55%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 55%, transparent 100%);
}
.section--grid > * { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .section--grid::before { transition: none; transform: scale(1.01); } }
/* section 2 title: give the copy column more width so the headline fills ~2 lines
   on a wide monitor, and the fluid h2 size adapts it down on smaller screens */
/* minmax(0,fr) forces the ratio so the wide image can't squeeze the text column */
@media (min-width: 960px) { #laserglow-technologies .split { grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr); } }
#laserglow-technologies h2 { font-size: clamp(1.8rem, 2.9vw, 2.55rem); text-wrap: normal; }
/* the wide-screen line break disappears below 960px, so the title re-wraps
   naturally on tablets/phones instead of being locked to two lines */
.tlt-br { display: none; }
@media (min-width: 960px) { .tlt-br { display: inline; } }

/* ---- section 2: animated product circle -------------------------------- */
/* Four square 1024px PNGs that already share one centre, stacked and absolutely
   positioned. Only transform and opacity ever animate. The default state here is
   the FINAL composed circle, so no-JS still renders correctly; the pre-entrance
   state lives behind .js (set inline in <head>) so the scrub can't flash. */

/* The artwork fills only 70.2% of its 1024px square (359.5px radius), so a 30vw
   BOX gives the ~21vw CIRCLE the live site has. Capped by the 0.6fr column on
   wide screens; the 340px floor keeps it readable in the one-column phone layout. */
.pcircle {
  width: min(100%, max(30vw, 340px));
  aspect-ratio: 1;
  margin-inline: auto;
}
.pcircle__inner { position: relative; width: 100%; height: 100%; }
/* the ring gets a wrapper so its entrance scale and its idle spin are separate
   transforms that can't overwrite each other, so pin both levels */
.pcircle__inner > *, .pcircle__ringwrap > * { position: absolute; inset: 0; width: 100%; height: 100%; }
/* .split__media img adds a radius/shadow meant for photos — not wanted here */
.pcircle img { display: block; border-radius: 0; box-shadow: none; }

/* Each layer turns about its OWN measured centre (disc 514/1024, ring 516/1024)
   so nothing wobbles as it rotates. */
.pcircle__disc { transform-origin: 50.2% 50%; will-change: transform; }
.pcircle__ringwrap, .pcircle__ring { transform-origin: 50.4% 50.15%; }
/* ring.png is drawn at exactly the disc's radius, so at scale 1 it hides behind
   the navy border. 1.02 lifts it just clear of the edge as a hairline halo. */
.pcircle__ringwrap { transform: scale(1.02); will-change: transform; }

/* Rest state: only the thin ring moves — 360deg / 48s = 7.5deg/s, clockwise.
   Deliberately slow: imperceptible drift, not a spinner. Opposite direction to
   the disc's entrance spin, which is what stops the rest state reading as an
   entrance that never finished. */
@keyframes pcircle-drift { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.js .pcircle__ring { animation: pcircle-drift 48s linear infinite; }

/* Pre-entrance state (JS then scrubs these inline). */
.js .pcircle__inner { transform: scale(.6); }
.js .pcircle__ringwrap { transform: scale(1.09); }
.js .pcircle__disc { transform: rotate(180deg); }
.js .pcircle__products, .js .pcircle__logo { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .js .pcircle__inner, .js .pcircle__disc { transform: none; }
  .js .pcircle__ringwrap { transform: scale(1.02); }
  .js .pcircle__products, .js .pcircle__logo { opacity: 1; }
  .js .pcircle__ring { animation: none; }
}

/* oversized watermark word behind a section */
.watermark {
  position: absolute;
  inset-inline: 0;
  top: clamp(1rem, 4vw, 3rem);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 15vw, 16rem);   /* unified watermark scale */
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: center;
  line-height: .85;
  color: rgba(16, 17, 20, 0.05);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.section--dark .watermark { color: rgba(255, 255, 255, 0.045); }

.head { max-width: 900px; }              /* wider column keeps titles to <=2 lines */
.head p { font-size: 1.075rem; }
.head--center { margin-inline: auto; text-align: center; }
.head--center { max-width: 940px; }
.head--center p { margin-inline: auto; }

/* ------------------------------------------------------------------ buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1;
  padding: 1rem 1.7rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.btn__arrow { font-size: 1.05em; line-height: 0; transition: transform var(--t-fast) var(--ease); }
.btn:hover .btn__arrow { transform: translate(2px, 2px); }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-deep); color: #fff; }
.btn--outline { border-color: var(--red); color: var(--red); background: transparent; }
.btn--outline:hover { background: var(--red); color: #fff; }
.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--sm { padding: .72rem 1.25rem; font-size: .88rem; }
.section--dark .btn--ghost { border-color: var(--dark-line); color: var(--on-dark); }
.section--dark .btn--outline { border-color: var(--red-ui); color: var(--red-ui); }
.section--dark .btn--outline:hover { background: var(--red-ui); color: #fff; }
/* the generic `.section--dark a` colour was beating .btn--primary, leaving the
   button label red-on-red (invisible until hover) — keep primary labels white */
.section--dark .btn--primary, .section--dark .btn--primary:hover { color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

/* ------------------------------------------------------------------- header */

.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 4px solid var(--red);
}
.header__bar { height: var(--header-h); display: flex; align-items: center; gap: 2rem; }
.header__logo { flex: 0 0 auto; display: flex; align-items: center; }
.header__logo img { height: 44px; width: auto; }

.header__nav { display: none; margin-inline-start: auto; align-items: center; gap: .25rem; }
@media (min-width: 1080px) { .header__nav { display: flex; } }

.navitem__button {
  font-family: var(--font-text); font-weight: 600; font-size: 1rem;
  color: var(--ink); background: none; border: 0;
  padding: .7rem 1.1rem; border-radius: var(--r-sm);
  cursor: pointer; display: inline-flex; align-items: center; gap: .45rem;
  transition: color var(--t-fast) var(--ease);
}
.navitem__button::after {
  content: ""; width: 7px; height: 7px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--t-fast) var(--ease); opacity: .6;
}
.navitem:hover .navitem__button, .navitem[data-open="true"] .navitem__button { color: var(--red); }
.navitem[data-open="true"] .navitem__button::after { transform: translateY(1px) rotate(-135deg); }

.header__search {
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; display: grid; place-items: center;
  color: var(--ink); border-radius: var(--r-pill);
}
.header__search:hover { color: var(--red); background: var(--surface); }

/* visual mega panel: image cards, not a link list */
.panel {
  position: fixed;
  left: 0; right: 0; top: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.75rem, 3vw, 2.75rem) 0 clamp(2rem, 3vw, 3rem);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility var(--t);
}
.navitem[data-open="true"] .panel { opacity: 1; visibility: visible; transform: none; }

.panel__grid { display: grid; gap: clamp(1.25rem, 2vw, 2rem); grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1200px) { .panel__grid { grid-template-columns: repeat(2, 1fr); } }
.panel__group-label {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-3);
  margin: 0 0 .9rem; padding-bottom: .6rem; border-bottom: 1px solid var(--line);
}
.navcard {
  display: grid; grid-template-columns: 64px 1fr; gap: .9rem; align-items: center;
  padding: .7rem; margin-inline: -.7rem;
  border-radius: var(--r-sm); text-decoration: none;
  transition: background var(--t-fast) var(--ease);
}
.navcard:hover { background: var(--surface); }
.navcard__thumb {
  width: 64px; height: 56px; border-radius: 8px; overflow: hidden;
  background: var(--surface-2); border: 1px solid var(--line-soft);
}
.navcard__thumb img { width: 100%; height: 100%; object-fit: cover; }
.navcard__title {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: .96rem; color: var(--ink); letter-spacing: -.01em; line-height: 1.2;
}
.navcard:hover .navcard__title { color: var(--red); }
.navcard__desc { display: block; font-size: .82rem; color: var(--ink-3); line-height: 1.4; margin-top: .2rem; }

.panel__feature {
  background: var(--dark); border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column; color: var(--on-dark-2);
  text-decoration: none; min-height: 100%;
}
.panel__feature img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.panel__feature div { padding: 1.1rem 1.25rem 1.35rem; }
.panel__feature strong { color: #fff; font-family: var(--font-display); display: block; margin-bottom: .3rem; }
.panel__feature span { font-size: .85rem; }

/* mobile drawer */
.header__toggle {
  margin-inline-start: auto; display: inline-flex; flex-direction: column;
  justify-content: center; gap: 5px; width: 46px; height: 46px;
  background: none; border: 0; cursor: pointer; padding: 0 9px;
}
@media (min-width: 1080px) { .header__toggle { display: none; } }
.header__toggle span { display: block; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform var(--t) var(--ease), opacity var(--t-fast); }
.header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.drawer { display: none; background: #fff; border-top: 1px solid var(--line); max-height: calc(100dvh - var(--header-h)); overflow-y: auto; padding-bottom: 2rem; }
.drawer[data-open="true"] { display: block; }
@media (min-width: 1080px) { .drawer { display: none !important; } }
.drawer__group { border-bottom: 1px solid var(--line-soft); }
.drawer__toggle {
  width: 100%; background: none; border: 0; color: var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: -.01em;
  text-align: left; padding: 1.1rem 0; display: flex; justify-content: space-between; cursor: pointer;
}
.drawer__toggle::after { content: "+"; color: var(--red); font-size: 1.5rem; line-height: 1; }
.drawer__group[data-open="true"] .drawer__toggle::after { content: "\2013"; }
.drawer__list { display: none; padding: 0 0 1rem; margin: 0; list-style: none; }
.drawer__group[data-open="true"] .drawer__list { display: block; }
.drawer__list a { display: block; padding: .6rem 0 .6rem 1rem; color: var(--ink-2); text-decoration: none; border-left: 2px solid var(--line); }
.drawer__list a:hover { color: var(--red); border-left-color: var(--red); }

/* --------------------------------------------------------------------- hero */

.hero { position: relative; background: var(--dark); color: #fff; overflow: hidden; }
.heroslide {
  position: relative;
  /* fill the screen below the sticky header on entry (dvh handles mobile chrome) */
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex; align-items: center;
  padding-block: clamp(4rem, 10vw, 8rem) clamp(6rem, 12vw, 9rem);
}
.heroslide[hidden] { display: none; }
.hero__media { position: absolute; inset: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.46) 42%, rgba(0,0,0,.06) 78%),
    linear-gradient(0deg, rgba(13,13,13,.72) 0%, transparent 42%);
}
.hero__inner { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--red-ui); font-size: clamp(.8rem, .55vw + .6rem, .95rem); margin-bottom: 1.15rem; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 4.4vw, 4.4rem); margin-bottom: .5em; }
.hero p { color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 1.15vw, 1.3rem); max-width: none; }
/* Fluid width: the text block fills the content column, so on a wide monitor the
   kicker and sub-line each sit on one line, while on a tablet/phone the narrower
   column lets them wrap. Nothing here forces a fixed line count. */
.heroslide__body { max-width: min(80rem, 100%); animation: heroIn 520ms var(--ease) both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.hero__foot {
  position: absolute; z-index: 3; inset-inline: 0; bottom: clamp(1.5rem, 3vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.scrollcue { display: inline-flex; align-items: center; gap: .7rem; color: rgba(255,255,255,.75); font-size: .85rem; }
.scrollcue__mouse {
  width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.6); border-radius: 12px;
  position: relative; flex: 0 0 auto;
}
.scrollcue__mouse::after {
  content: ""; position: absolute; left: 50%; top: 6px; width: 3px; height: 6px;
  background: #fff; border-radius: 2px; transform: translateX(-50%);
  animation: wheel 1.8s var(--ease) infinite;
}
@keyframes wheel { 0%,100% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; transform: translate(-50%, 8px); } }

.herodots { display: flex; align-items: center; gap: .75rem; }
.herodots__dot {
  position: relative; overflow: hidden;
  width: clamp(64px, 10vw, 168px); height: 5px; border: 0; padding: 0;
  background: rgba(255,255,255,.28); cursor: pointer; border-radius: 3px;
  transition: background var(--t-fast) var(--ease);
}
/* progress fill: animates 0 -> 100% across the fixed slide interval, so the
   auto-advance reads as deliberate and consistent, never random */
.herodots__dot::after {
  content: ""; position: absolute; inset: 0; width: 0;
  background: var(--red-ui); border-radius: inherit;
}
.herodots__dot[aria-current="true"]::after {
  animation: dotprogress var(--hero-interval, 7000ms) linear forwards;
}
@keyframes dotprogress { from { width: 0; } to { width: 100%; } }
@media (prefers-reduced-motion: reduce) {
  .herodots__dot[aria-current="true"]::after { animation: none; width: 100%; }
}

/* -------------------------------------------------------------------- split */

.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 960px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
}
.split__media img, .split__media video { width: 100%; border-radius: var(--r); }
.split__media--bleed img { border-radius: var(--r); box-shadow: var(--shadow); }

/* --------------------------------------------------------------- accordion */

.acc { border-top: 1px solid var(--line); margin-top: 2.25rem; }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__toggle {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 0; text-align: left;
  font-family: var(--font-display); font-weight: 800; font-size: clamp(.98rem, 1.3vw, 1.12rem);
  text-transform: uppercase; letter-spacing: -.01em; color: var(--ink);
}
.acc__toggle:hover { color: var(--red); }
.acc__toggle::after {
  content: ""; flex: 0 0 auto; width: 9px; height: 9px;
  border-right: 2.5px solid var(--red); border-bottom: 2.5px solid var(--red);
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--t) var(--ease);
}
.acc__item[data-open="true"] .acc__toggle::after { transform: rotate(-135deg) translateY(-2px); }
.acc__panel { display: none; padding-bottom: 1.5rem; }
.acc__item[data-open="true"] .acc__panel { display: block; }

.minicards { display: grid; gap: .85rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.minicard {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r-sm); padding: 1.15rem 1rem; text-align: center;
}
.minicard__icon { width: 40px; height: 40px; margin: 0 auto .8rem; color: var(--red); }
.minicard__icon svg { width: 100%; height: 100%; }
.minicard h4 {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: .98rem; letter-spacing: .01em; color: var(--ink); margin: 0 0 .4rem; line-height: 1.15;
}
.minicard p { font-size: .95rem; color: var(--ink-3); margin: 0; line-height: 1.45; }

/* ------------------------------------------------------------ logo marquee */

.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; gap: clamp(1.75rem, 3vw, 3rem); width: max-content; align-items: center; animation: slide 46s linear infinite; }
.marquee--rev .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* the logo PNGs are white marks on transparent, so they show as white on the
   dark strip (the filter normalises any stray colour to a clean white silhouette) */
.marquee img {
  height: clamp(64px, 7vw, 110px); width: auto; object-fit: contain;
  filter: brightness(0) invert(1); opacity: .95; flex: 0 0 auto;
}
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; }
  .marquee__track { animation: none; }
}

/* ------------------------------------------------------------- testimonials */

.quotes { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
/* when testimonials share the logos screen, tighten them so all fit one view */
.quotes--compact { margin-top: clamp(2.25rem, 4vw, 3.25rem); }
.quotes--compact .quote { padding: clamp(1.15rem, 1.8vw, 1.6rem); gap: 1rem; }
.quotes--compact .quote p { font-size: .95rem; }
.quotes--compact .quote__mark { font-size: clamp(3.25rem, 4vw, 4.25rem); }
.quote {
  background: var(--dark-2); border: 1px solid var(--dark-line);
  border-radius: var(--r); padding: clamp(1.5rem, 2.4vw, 2.25rem);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.quote__mark { font-family: var(--font-display); font-weight: 800; font-size: clamp(3.5rem, 4.5vw, 5rem); line-height: .55; color: var(--red-ui); }
.quote p { color: var(--on-dark-2); flex: 1; }
.quote__who { display: flex; align-items: center; gap: .8rem; }
.quote__logo {
  width: 52px; height: 52px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; flex: 0 0 auto; overflow: hidden; padding: 0;
}
/* brand logo images are saved with their own background and fill the circle */
.quote__logo img { width: 100%; height: 100%; object-fit: cover; }
.quote__who strong { display: block; color: var(--red-ui); font-size: .95rem; }
.quote__who span { display: block; color: var(--on-dark-2); font-size: .85rem; }

/* ----------------------------------------------------------- stats / map */

.mapwrap { position: relative; border-radius: var(--r); overflow: hidden; background: var(--dark-2); border: 1px solid var(--dark-line); }
.mapwrap img { width: 100%; opacity: .9; }
.statcard {
  background: #fff; border-radius: var(--r); padding: clamp(1.5rem, 2.5vw, 2.4rem);
  box-shadow: var(--shadow-lg); max-width: 420px;
}
.statcard h2 { font-size: clamp(1.5rem, 2.3vw, 2.1rem); }
.stats { display: flex; gap: 2.5rem; margin: 1.5rem 0; }
.stat__n { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--ink); line-height: 1; letter-spacing: -.03em; }
.stat__l { font-size: .96rem; color: var(--ink-3); }
.legend { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 1.25rem; font-size: .92rem; color: var(--on-dark-2); }
.legend span { display: inline-flex; align-items: center; gap: .5rem; }
.legend i { width: 12px; height: 12px; background: var(--red-ui); border-radius: 3px; display: inline-block; }

/* ------------------------------------------------------------- rail (timeline) */

.rail { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1.5rem; scrollbar-width: thin; }
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.rail__item { scroll-snap-align: start; flex: 0 0 min(88vw, 420px); border-radius: var(--r); overflow: hidden; }
.rail__item--media { flex-basis: min(88vw, 460px); }
.rail__item--media img, .rail__item--media video { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.rail__card { background: #fff; border: 1px solid var(--line); padding: clamp(1.5rem, 2.4vw, 2.25rem); height: 100%; display: flex; flex-direction: column; }
.rail__card--accent { background: var(--red); border-color: var(--red); color: #fff; }
.rail__card--accent h3, .rail__card--accent .rail__step { color: #fff; }
.rail__card--accent p { color: rgba(255,255,255,.94); }
.rail__step {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--red); margin-bottom: 1rem; display: block;
}
.rail__card h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); text-transform: uppercase; }
.rail__card p { font-size: .95rem; }

/* --------------------------------------------------------------- post cards */

.cards { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 16/10; background: var(--surface-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.35rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.card__meta { font-size: .8rem; color: var(--ink-3); font-family: var(--font-mono); letter-spacing: .04em; }
.pill {
  align-self: flex-start; background: var(--red); color: #fff;
  font-size: .72rem; font-weight: 700; padding: .3rem .75rem; border-radius: var(--r-pill);
  text-transform: uppercase; letter-spacing: .05em; text-decoration: none;
}
.card h3 { font-size: 1.08rem; text-transform: none; letter-spacing: -.02em; line-height: 1.25; margin: 0; }
.card h3 a { color: var(--ink); text-decoration: none; }
.card h3 a:hover { color: var(--red); }
.card p { font-size: .9rem; color: var(--ink-3); margin: 0; }
.card__link { margin-top: auto; padding-top: .5rem; font-weight: 700; font-size: .88rem; text-decoration: none; }

.pager { display: flex; justify-content: center; align-items: center; gap: .35rem; margin-top: 2.5rem; }
.pager button, .pager a {
  min-width: 38px; height: 38px; border-radius: var(--r-pill);
  border: 0; background: none; color: var(--ink-2); cursor: pointer;
  font-family: var(--font-text); font-size: .95rem; display: grid; place-items: center; text-decoration: none;
}
.pager [aria-current="true"] { background: var(--red); color: #fff; font-weight: 700; }
.pager button:hover:not([aria-current="true"]) { background: var(--surface); color: var(--red); }

/* -------------------------------------------------------------- trade shows */

.shows { display: grid; gap: clamp(1rem, 1.4vw, 1.5rem); grid-template-columns: repeat(5, 1fr); }
.show {
  background: #fff; border-radius: var(--r); padding: clamp(1.25rem, 1.7vw, 1.75rem);
  display: flex; flex-direction: column; gap: .6rem; color: var(--ink-2); box-shadow: var(--shadow);
}
.show__status {
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  padding-bottom: .85rem; border-bottom: 1px solid var(--line); margin-bottom: .4rem; color: var(--ink-3);
}
.show__status--up { color: var(--ok); }
.show__name { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; color: var(--red); font-size: clamp(1.1rem, 1.35vw, 1.4rem); letter-spacing: -.01em; line-height: 1.1; }
.show__booth { font-family: var(--font-display); font-weight: 800; color: var(--ink); text-transform: uppercase; font-size: clamp(1rem, 1.2vw, 1.15rem); }
.show__meta { font-size: .95rem; color: var(--ink-2); line-height: 1.4; }
.show a { font-size: .92rem; font-weight: 600; }
@media (max-width: 1080px) { .shows { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .shows { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------- signup */

.signup {
  background: var(--red); border-radius: var(--r);
  padding: clamp(2rem, 4vw, 3.25rem); color: #fff;
  display: grid; gap: 2rem; align-items: center; grid-template-columns: 1fr;
}
@media (min-width: 900px) { .signup { grid-template-columns: 1.1fr 1fr; } }
.signup h2 { color: #fff; }
.signup p { color: rgba(255,255,255,.94); }
.signup__form { display: flex; gap: .6rem; flex-wrap: wrap; }
.signup__form input {
  flex: 1 1 240px; border: 0; border-radius: var(--r-pill);
  padding: 1rem 1.35rem; font-family: var(--font-text); font-size: .98rem; color: var(--ink);
}
.signup__form input::placeholder { color: var(--ink-3); }
.signup__form .btn { background: var(--ink); color: #fff; }
.signup__form .btn:hover { background: #000; }
.signup small { display: block; margin-top: .85rem; color: rgba(255,255,255,.85); font-size: .8rem; }

/* ------------------------------------------------------------------- footer */

.footer { background: var(--dark); color: var(--on-dark-2); padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; }
.footer__top { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 820px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__brand img { height: 46px; margin-bottom: 1.25rem; }
.footer address { font-style: normal; font-size: .92rem; line-height: 1.75; color: var(--on-dark-2); }
.footer h3 {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: #fff; font-weight: 400; margin-bottom: 1.1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer a { color: var(--on-dark-2); text-decoration: none; font-size: .93rem; }
.footer a:hover { color: var(--red-ui); }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--dark-line);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .85rem; color: var(--on-dark-2);
}

/* --------------------------------------------------------------- utilities */

.skip-link { position: absolute; left: -9999px; background: var(--red); color: #fff; padding: .9rem 1.3rem; z-index: 300; font-weight: 700; border-radius: 0 0 var(--r-sm) 0; }
.skip-link:focus { left: 0; top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.breadcrumb { font-size: .85rem; color: var(--ink-3); }
.breadcrumb a { color: var(--ink-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--red); }

.tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-pill); padding: .45rem .9rem;
}
.section--dark .tag { color: var(--on-dark-2); border-color: var(--dark-line); }

.chips { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.chip {
  border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff;
  padding: 1.25rem 1rem; text-align: center; font-family: var(--font-display);
  font-weight: 800; color: var(--ink); font-size: .95rem; text-transform: uppercase; line-height: 1.2;
}
.specs { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.specs li { display: flex; gap: .7rem; padding: .6rem 0; border-bottom: 1px solid var(--line-soft); font-size: .94rem; }
.specs li::before { content: ""; flex: 0 0 auto; width: 7px; height: 7px; margin-top: .55em; border-radius: 50%; background: var(--red); }

.gallery { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.gallery figure { margin: 0; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: #fff; }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery figcaption { padding: .7rem .9rem; font-size: .85rem; color: var(--ink-3); }

.strip { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); align-items: center; }
.strip__item { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-sm); padding: .9rem; display: grid; place-items: center; min-height: 84px; }
.strip__item img { max-height: 56px; width: auto; object-fit: contain; }

.article { padding-block: clamp(2.5rem, 6vw, 5rem); }
.article__meta { color: var(--ink-3); font-family: var(--font-mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.article__body { font-size: 1.1rem; color: var(--ink-2); }
.article__body h1 { text-transform: none; letter-spacing: -.035em; }
.article__body h2 { margin-top: 2.2em; text-transform: none; font-size: clamp(1.5rem, 2.6vw, 2.05rem); }
.article__body img, .article__body video { border-radius: var(--r); margin: 2rem 0; width: 100%; }
.article__body blockquote {
  margin: 2rem 0; padding: 1.3rem 1.6rem; border-left: 4px solid var(--red);
  background: var(--surface); border-radius: 0 var(--r-sm) var(--r-sm) 0; color: var(--ink); font-size: 1.12rem;
}
.article__body ul, .article__body ol { padding-left: 1.3rem; }
.article__body li { margin-bottom: .5rem; }

/* map pins */
.mapwrap { position: relative; }
.mapwrap img { filter: grayscale(1) brightness(.55) contrast(1.1); }
.mapwrap__pins { position: absolute; inset: 0; }
.pin {
  position: absolute; width: 9px; height: 9px; margin: -4.5px 0 0 -4.5px;
  border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px rgba(255,58,66,.55);
}
.pin::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(255,58,66,.5); animation: ping 3.2s var(--ease) infinite;
}
@keyframes ping { 0% { transform: scale(.6); opacity: .9; } 70%,100% { transform: scale(1.9); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .pin::after { animation: none; } }

/* --- fixes ---------------------------------------------------------------- */

/* browser default blockquote margin was squeezing testimonial copy */
.quote blockquote { margin: 0; }
.quote p { max-width: none; font-size: 1rem; }

/* a light card inside a dark section must re-assert light-surface ink */
.statcard { color: var(--ink-2); }
.statcard h2, .statcard .stat__n { color: var(--ink); }
.statcard .eyebrow { color: var(--red); }
.statcard p { color: var(--ink-2); }
.statcard .btn--primary { background: var(--red); color: #fff; }
.statcard .btn--primary:hover { background: var(--red-deep); color: #fff; }

/* the map should carry the section, not sit in a corner of it */
.mapwrap img { width: 100%; }
#global-presence .split { align-items: center; }
@media (min-width: 960px) { #global-presence .split { grid-template-columns: 1fr 1.15fr; } }

/* show cards live on the dark section: keep their own ink */
.show { color: var(--ink-2); }
.show a { color: var(--red); }
.show a:hover { color: var(--red-deep); }

/* trade-show + blog watermarks must never overlap the heading */
#whats-new .head, #trade-shows .head { position: relative; z-index: 1; }

/* blockquote, not the paragraph, is the flexible child now */
.quote blockquote { flex: 1; }

/* customer logos: large white chips (sizing lives in the base .marquee img rule) */
.marquee + .head, .head + .marquee { margin-block: clamp(2.5rem, 4vw, 3.5rem) !important; }

/* ------------------------------------------------------------------ timeline */

.timeline { margin-top: clamp(2.5rem, 4vw, 3.5rem); position: relative; }
.timeline__rail {
  list-style: none; margin: 0; padding: 0 0 1.5rem;
  display: flex; gap: 0; overflow-x: auto;
  scroll-snap-type: x proximity; scrollbar-width: thin;
}
.timeline__rail::-webkit-scrollbar { height: 6px; }
.timeline__rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

.step {
  flex: 0 0 min(78vw, 310px);
  scroll-snap-align: start;
  padding-inline-end: 1.25rem;
  position: relative;
}
/* the connector: one continuous rule through every node */
.step::before {
  content: ""; position: absolute;
  left: 0; right: 0; top: 21px; height: 2px;
  background: var(--line);
}
.step:first-child::before { left: 21px; }
.step:last-child::before { right: calc(1.25rem + 50%); }

.step__node {
  position: relative; z-index: 1;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: .82rem; font-weight: 700;
  box-shadow: 0 0 0 6px var(--surface);
}
.step__card { padding-top: 1.5rem; }
.step__label {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--red); display: block; margin-bottom: .5rem;
}
.step__card h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); text-transform: uppercase; margin-bottom: .6rem; }
.step__card p { font-size: 1rem; color: var(--ink-2); line-height: 1.5; }

.timeline__hint {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-3); margin: 0;
}

/* consecutive dark sections read as one band: don't double the padding */
.section--dark + .section--dark { padding-top: 0; }
#trusted { padding-bottom: clamp(2rem, 3vw, 3.5rem); }

/* ===== global presence — lg-worldmap component (dark, ported from the =====
   Component Library): faded equirectangular map as the section background,
   pulsing distributor pins + ringed HQ markers, content centred on top. */
.section--presence { position: relative; overflow: hidden; }
.lg-worldmap { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.lg-worldmap::before {
  content: ''; position: absolute; inset: 0;
  /* stretch to fill (100% 100%) so plate-carree pin %s align to the image */
  background: url('/assets/world-equirectangular.jpg') center / 100% 100% no-repeat;
  filter: grayscale(1) brightness(.55) contrast(1.08);
  opacity: .3;
  -webkit-mask-image: radial-gradient(ellipse 84% 90% at 50% 50%, #000 55%, transparent 92%);
  mask-image: radial-gradient(ellipse 84% 90% at 50% 50%, #000 55%, transparent 92%);
}
.lg-wpin { position: absolute; transform: translate(-50%, -50%); border-radius: 50%; }
.lg-wpin-dep {
  width: 7px; height: 7px; background: var(--red-ui);
  box-shadow: 0 0 8px 1px rgba(255, 58, 66, .75); opacity: .85;
  animation: lgDepPulse 3.2s ease-in-out infinite;
}
@keyframes lgDepPulse { 0%, 100% { opacity: .4; } 50% { opacity: .95; } }
.lg-wpin-hq {
  width: 13px; height: 13px; background: var(--red-ui);
  box-shadow: 0 0 16px 4px rgba(255, 58, 66, .9); z-index: 2;
}
.lg-wpin-hq::after {
  content: ''; position: absolute; left: 50%; top: 50%; width: 13px; height: 13px;
  border-radius: 50%; border: 2px solid var(--red-ui);
  transform: translate(-50%, -50%); animation: lgHqRing 2.6s ease-out infinite;
}
@keyframes lgHqRing {
  0% { transform: translate(-50%, -50%) scale(1); opacity: .8; }
  100% { transform: translate(-50%, -50%) scale(3.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .lg-wpin-dep, .lg-wpin-hq::after { animation: none; }
}

.presence__inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin-inline: auto; }
.presence__inner .stats { justify-content: center; margin-inline: auto; }
/* stats sit on the dark map now, not a white card — force light ink */
.presence__inner .stat__n { color: #fff; }
.presence__inner .stat__l { color: var(--on-dark-2); }
.lg-map-legend { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; justify-content: center; }
.lg-map-legend span {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--on-dark-2);
}
.lg-legend-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.lg-legend-dot.hq { background: var(--red-ui); box-shadow: 0 0 10px 2px rgba(255, 58, 66, .8); }
.lg-legend-dot.dep { background: var(--red-ui); opacity: .7; }

/* ===== Why OHS leaders choose us ======================================== */
.pillars { position: relative; background: var(--surface); }
/* the intro is now its OWN full-screen vertical panel that scrolls up before
   the horizontal pillar scroll begins (it is no longer part of the track) */
.pillars__open {
  position: relative; overflow: hidden;
  min-height: calc(100vh - var(--header-h)); min-height: calc(100dvh - var(--header-h));
  display: flex; align-items: center; justify-content: center;
}
.pillars__introcopy { position: relative; z-index: 1; width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; }
/* pinned horizontal scroll container (JS sets its height for the scroll distance) */
.pillars__pin { position: relative; }
.pillars__sticky {
  position: sticky; top: var(--header-h);
  height: calc(100vh - var(--header-h)); height: calc(100dvh - var(--header-h));
  overflow: hidden; display: flex; align-items: center;
}
.pillars__track {
  display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3rem);
  will-change: transform; position: relative; z-index: 1;
  padding-inline: clamp(1.5rem, 5vw, 6rem);
}
.pillars__track::after { content: ''; flex: 0 0 clamp(1rem, 12vw, 12rem); }
.pillars__panel { flex: 0 0 auto; }
.pillars__wm {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 0; pointer-events: none; user-select: none; text-align: center;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(3.5rem, 15vw, 16rem); line-height: .82; letter-spacing: -.04em;
  color: rgba(16, 17, 20, .05);
}

/* big, centred cards — each pillar dominates the view */
.pcard {
  width: min(90vw, 640px); height: min(80vh, 640px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r);
  padding: clamp(2rem, 4vw, 4rem); box-shadow: var(--shadow);
}
.pcard h3 { font-size: clamp(1.9rem, 3vw, 2.9rem); text-transform: uppercase; margin-bottom: 1.2rem; line-height: 1.05; }
.pcard p { color: var(--ink-2); font-size: clamp(1.05rem, 1.35vw, 1.32rem); max-width: 34ch; }
.pcard .btn-row { justify-content: center; }
.pcard--red { background: var(--red); border-color: var(--red); color: #fff; }
.pcard--red h3, .pcard--red p, .pcard--red .mark { color: #fff; }

/* animated 3-dot marker: a wave scaling left-to-right, reads as rightward motion */
.pdots { display: inline-flex; gap: .55rem; margin-bottom: 1.5rem; }
.pdots i { width: 10px; height: 10px; border-radius: 50%; background: var(--ink); animation: pdotWave 1.5s ease-in-out infinite; }
.pdots i:nth-child(2) { animation-delay: .2s; }
.pdots i:nth-child(3) { animation-delay: .4s; }
@keyframes pdotWave { 0%, 100% { transform: scale(.6); opacity: .45; } 50% { transform: scale(1.35); opacity: 1; } }
.pcard--red .pdots i { background: #fff; }
@media (prefers-reduced-motion: reduce) { .pdots i { animation: none; } }

.pcard--media {
  width: min(92vw, 820px); height: min(80vh, 640px);
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow);
}
.pcard--media img { width: 100%; height: 100%; object-fit: cover; }

.pillars__progress {
  position: absolute; left: clamp(1.25rem, 6vw, 4rem); bottom: clamp(1.5rem, 4vw, 2.5rem);
  z-index: 2; display: flex; align-items: center; gap: 1rem;
}
.pillars__hint { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
.pillars__dots { display: flex; gap: .5rem; }
.pillars__dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease); }
.pillars__dots i.is-active { background: var(--red); transform: scale(1.35); }

/* no-pin fallback (mobile / reduced motion): plain horizontal swipe */
.pillars__pin.no-pin { height: auto !important; }
.pillars__pin.no-pin .pillars__sticky { position: static; height: auto; overflow-x: auto; padding-block: clamp(3rem, 8vw, 6rem); scroll-snap-type: x proximity; }
.pillars__pin.no-pin .pillars__track { transform: none !important; height: auto; }
.pillars__pin.no-pin .pillars__panel { scroll-snap-align: center; }
.pillars__pin.no-pin .pcard, .pillars__pin.no-pin .pcard--media { height: min(70vh, 520px); }

/* ===== compact splitter bars: catalog (red) + newsletter (grey) ========= */
/* catalog: copy left, catalog mockup bleeding off the right edge */
.catbar { position: relative; overflow: hidden; background: var(--red); color: #fff; padding-block: clamp(2.5rem, 5vw, 4rem); }
.catbar__inner { position: relative; z-index: 1; }
.catbar__copy { max-width: 42ch; }
.catbar__copy p { font-family: var(--font-text); font-weight: 700; font-size: clamp(1.1rem, 1.5vw, 1.45rem); line-height: 1.35; color: #fff; margin: 0 0 1.5rem; }
.catbar__btn { background: #fff; color: var(--red); border-color: #fff; }
.catbar__btn:hover { background: rgba(255, 255, 255, .88); color: var(--red); }
.catbar__media { position: absolute; z-index: 0; top: 50%; right: -3%; transform: translateY(-50%); width: clamp(340px, 42vw, 660px); pointer-events: none; }
.catbar__media img { width: 100%; display: block; }

/* newsletter: mockup bleeding off the left, copy right */
.newsbar { position: relative; overflow: hidden; background: var(--surface); color: var(--ink-2); padding-block: clamp(2.5rem, 5vw, 4rem); }
.newsbar__inner { position: relative; z-index: 1; display: flex; justify-content: flex-end; }
.newsbar__copy { max-width: 44ch; }
.newsbar__copy .eyebrow { color: var(--red); }
.newsbar__copy h2 { color: var(--ink); font-size: clamp(2rem, 3.6vw, 3rem); }
.newsbar__copy p { color: var(--ink-2); font-size: 1.075rem; margin: 0 0 1.5rem; }
.newsbar__media { position: absolute; z-index: 0; top: 50%; left: -2%; transform: translateY(-50%); width: clamp(320px, 40vw, 580px); pointer-events: none; }
.newsbar__media img { width: 100%; display: block; }

@media (max-width: 820px) {
  .catbar__media, .newsbar__media { display: none; }
  .newsbar__inner { justify-content: center; }
}

/* ===== blog: uniform 4:5 sharp-edged tiles + pagination ================= */
.blog__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 1.6vw, 1.5rem); }
.btile {
  display: flex; flex-direction: column; aspect-ratio: 4 / 5;
  background: #fff; border: 1px solid var(--line); border-radius: 0; overflow: hidden;
  text-decoration: none; color: var(--ink);
  transition: box-shadow var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.btile:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.btile__media { flex: 0 0 50%; overflow: hidden; }
.btile__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.btile__body { flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; gap: .55rem; padding: clamp(.9rem, 1.2vw, 1.35rem); }
.btile__tag {
  align-self: flex-start; font-family: var(--font-display); font-weight: 700;
  font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: #fff;
  background: var(--red); padding: .3rem .65rem; border-radius: 6px;
}
.btile__title {
  font-family: var(--font-display); font-weight: 800; color: var(--ink);
  font-size: clamp(.98rem, 1.05vw, 1.12rem); line-height: 1.18; letter-spacing: -.01em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.btile__desc {
  font-size: .85rem; color: var(--ink-3); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog__nav { display: flex; align-items: center; justify-content: center; gap: .75rem; margin-top: clamp(1.75rem, 3vw, 2.5rem); }
.blog__arrow {
  width: 40px; height: 40px; border: 1px solid var(--line); background: #fff; border-radius: 50%;
  cursor: pointer; display: grid; place-items: center; color: var(--ink); font-size: 1.3rem; line-height: 1;
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.blog__arrow:hover:not([disabled]) { border-color: var(--red); color: var(--red); }
.blog__arrow[disabled] { opacity: .35; cursor: default; }
.blog__pages { display: flex; gap: .25rem; }
.blog__page {
  min-width: 36px; height: 36px; border: 0; background: none; cursor: pointer;
  font-family: var(--font-text); font-weight: 600; font-size: .95rem; color: var(--ink-3); border-radius: 6px;
}
.blog__page:hover { color: var(--ink); }
.blog__page.is-active { color: var(--red); }
@media (max-width: 1080px) { .blog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog__grid { grid-template-columns: 1fr; } .btile { aspect-ratio: auto; } }

/* ===== Laserglow Way — vertical timeline with cross-fading media ======== */
.tl { position: relative; background: #fff; }   /* white to match the image plates */
.tl__open {
  position: relative; overflow: hidden;
  min-height: calc(100vh - var(--header-h)); min-height: calc(100dvh - var(--header-h));
  display: flex; align-items: center; justify-content: center;
}
.tl__opencopy { position: relative; z-index: 1; width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; }
.tl__wm {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 0; pointer-events: none; user-select: none; text-align: center;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(3.5rem, 15vw, 16rem); line-height: .82; letter-spacing: -.04em;
  color: rgba(16, 17, 20, .05);
}
.tl__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; gap: clamp(1.5rem, 3vw, 3.5rem); }
/* left column: sticky, all 6 images stacked, cross-fading on opacity — big */
.tl__media {
  position: sticky; top: var(--header-h); align-self: start;
  height: calc(100vh - var(--header-h)); height: calc(100dvh - var(--header-h));
  display: grid; place-items: center;
}
.tl__media img {
  grid-area: 1 / 1; width: 100%; max-height: 88%; object-fit: contain;
  opacity: 0; transition: opacity .6s var(--ease);
}
.tl__media img.is-active { opacity: 1; }
/* right column: one full-height, centred block per step, with a dotted spine
   running above and below the text (so it "comes from below" the centred copy) */
.tl__steps { position: relative; }
.tl__step {
  position: relative;
  min-height: calc(100vh - var(--header-h)); min-height: calc(100dvh - var(--header-h));
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding-inline: clamp(1rem, 2vw, 2rem);
}
.tl__step::before, .tl__step::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 4px;
  background-image: radial-gradient(circle, var(--line) 1.8px, transparent 2px);
  background-size: 4px 16px; background-repeat: repeat-y;
}
.tl__step::before { top: 0; height: calc(50% - 290px); }
.tl__step::after  { bottom: 0; height: calc(50% - 290px); }
.tl__step:first-child::before { display: none; }
.tl__step:last-child::after { display: none; }
.tl__icon { width: 54px; height: 54px; color: var(--ink); margin: 0 auto 1.6rem; }
.tl__icon svg { width: 100%; height: 100%; }
/* the 3 equalizer knobs bob up and down in a wave */
.tl__icon svg circle { transform-box: fill-box; transform-origin: center; animation: tlKnob 2.2s ease-in-out infinite; }
.tl__icon svg circle:nth-of-type(2) { animation-delay: .35s; }
.tl__icon svg circle:nth-of-type(3) { animation-delay: .7s; }
@keyframes tlKnob { 0%, 100% { transform: translateY(-3px); } 50% { transform: translateY(3px); } }
@media (prefers-reduced-motion: reduce) { .tl__icon svg circle { animation: none; } }
.tl__step h3 { font-size: clamp(2rem, 3.2vw, 3.1rem); text-transform: uppercase; line-height: 1.06; margin-bottom: 1.2rem; }
.tl__step p { color: var(--ink-2); font-size: clamp(1.1rem, 1.4vw, 1.4rem); max-width: 32ch; margin-inline: auto; }
@media (max-width: 860px) {
  .tl__grid { grid-template-columns: 1fr; gap: 0; }
  .tl__media { height: 42vh; top: var(--header-h); }
  .tl__media img { max-height: 92%; width: auto; max-width: 100%; }
  .tl__step { min-height: 62vh; }
  .tl__step::before, .tl__step::after { display: none; }
}

/* ===== one section per screen ==========================================
   On desktop, every section fills the viewport below the sticky header and
   snaps into place, so scrolling completes the current section and lands on
   the next — no two sections half-visible, no leftover blank bands. Scoped to
   larger screens so content-heavy sections aren't trapped on phones/tablets. */
@media (min-width: 1024px) and (min-height: 640px) {
  html { scroll-snap-type: y proximity; scroll-padding-top: var(--header-h); }
  .hero { scroll-snap-align: start; }
  .section {
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100dvh - var(--header-h));
    display: flex; flex-direction: column; justify-content: center;
    scroll-snap-align: start;
  }
  /* the horizontal-scroll timeline keeps its own inner scroll; don't stretch it */
  #the-laserglow-way { justify-content: center; }
}
