/* ==========================================================================
   InMark Website — from the "Inmark Website" Figma (node 1-536)
   Palette + type scale come from the file's Style Sheets.
   ========================================================================== */

:root {
  /* Brand */
  --olive-dark: #2E2F00;
  --olive-med: #383901;
  --olive-deep: #292901;
  --lime: #E4EA02;
  /* Accent */
  --pink: #FF77E5;
  --red: #FF2D02;
  --mint: #AADCC6;
  /* Dark */
  --green-deep: #0E3F2A;
  --green-forest: #1F2B25;
  --dark-red: #550F01;
  --red-deep: #330900;
  --plum: #33182E;
  /* Neutrals */
  --black: #000000;
  --ink: #141415;
  --charcoal: #0D0D0D;
  --gray-dark: #1F1F1F;
  --gray-light: #D9D9D9;
  --off-white: #F5F1F1;
  --cool-gray: #F1F1F1;
  --white: #FFFFFF;
  /* Derived tints observed on the page */
  --lime-tint: #F7F9DC;
  --cream: #F5F1EB;
  --coral: #F1684A;

  --font-display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  --font-body: "Be Vietnam Pro", "Helvetica Neue", sans-serif;
  --font-mono: "Roboto Mono", monospace;

  --container: 1312px;
  --gutter: 64px;
  --radius-card: 32px;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  background: var(--cool-gray);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

/* ---------- Type scale (Style Sheet — Typography) ---------- */
.h1, .h2, .h4, .h5 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "wdth" 75;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}
.h1 { font-size: clamp(44px, 5.85vw, 84px); letter-spacing: -3.5px; }
.h2 { font-size: clamp(36px, 5vw, 72px); letter-spacing: -1px; }
.h4 { font-size: clamp(22px, 2.2vw, 32px); letter-spacing: 0; }
.h5 { font-size: clamp(18px, 1.7vw, 24px); letter-spacing: 0.2px; }

.title-lg {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36;
  font-weight: 600;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.1;
  letter-spacing: -1px;
}
.title-md {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36;
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.body-md { font-size: 18px; font-weight: 400; line-height: 1.45; }
.body-sm { font-size: 16px; font-weight: 400; line-height: 1.5; }
.eyebrow-lg { font-size: 20px; font-weight: 500; line-height: 1.2; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background-color 0.3s;
}
.btn--lg { height: 52px; padding: 0 30px; font-size: 16px; }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--white { background: var(--white); color: var(--ink); }
.btn--lime { background: var(--lime); color: var(--ink); }
.btn--outline { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn:hover { transform: translateY(-2px); background: var(--ink); color: var(--white); box-shadow: none; }
.btn--dark:hover { background: var(--olive-dark); }
.btn { overflow: hidden; }
.btn__t { display: grid; overflow: hidden; }
.btn__t > span { grid-area: 1 / 1; transition: transform 0.55s var(--ease-expo); }
.btn__t > span + span { transform: translateY(130%); }
.btn:hover .btn__t > span { transform: translateY(-130%); }
.btn:hover .btn__t > span + span { transform: translateY(0); }

.btn-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex: 0 0 auto;
  transition: transform 0.3s var(--ease-out), background-color 0.3s;
}
.btn-circle svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.btn-circle--lime { background: var(--lime); color: var(--ink); }
.btn-circle--white { background: var(--white); color: var(--ink); }
.btn-circle--ghost { background: var(--white); color: var(--ink); box-shadow: inset 0 0 0 1px var(--gray-light); width: 48px; height: 48px; }
.btn-circle--outline { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-circle:hover { transform: translateY(-2px); background: var(--ink); color: var(--white); box-shadow: none; }

/* one-piece pill with attached arrow circle */
.btn-go {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 56px;
  padding: 4px 4px 4px 28px;
  border-radius: 999px;
  font-size: 16px;
  white-space: nowrap;
  transition: transform 0.3s var(--ease-out), background-color 0.32s, color 0.32s, box-shadow 0.32s;
}
.btn-go__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13, 13, 13, 0.1);
  transition: background-color 0.35s, color 0.35s, transform 0.5s var(--ease-expo);
}
.btn-go__arrow svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.btn-go--lime { background: var(--lime); color: var(--ink); }
.btn-go--white { background: var(--white); color: var(--ink); }
.btn-go--dark { background: var(--ink); color: var(--white); }
.btn-go--dark .btn-go__arrow { background: rgba(255, 255, 255, 0.16); }
.btn-go--outline { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-go:hover { transform: translateY(-2px); background: var(--ink); color: var(--white); box-shadow: none; }
.btn-go--dark:hover { background: var(--olive-dark); }
.btn-go:hover .btn-go__arrow { background: var(--lime); color: var(--ink); transform: translate(2px, -2px); }
.btn-circle--ghost:disabled { opacity: 0.35; transform: none; cursor: default; }

/* ---------- Launch banner ---------- */
:root { --banner-h: 44px; }
.topbanner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  background: var(--lime);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
.topbanner strong { font-weight: 700; }
.topbanner:hover { background: color-mix(in srgb, var(--lime) 84%, #ffffff); }
.topbanner .tb-short { display: none; }
.topbanner__spark { font-size: 11px; opacity: 0.75; }
.topbanner__arrow { display: inline-block; transition: transform 0.3s var(--ease-expo); }
.topbanner:hover .topbanner__arrow { transform: translateX(4px); }
body:has(.topbanner) .nav { top: var(--banner-h); }
@media (max-width: 640px) {
  :root { --banner-h: 40px; }
  .topbanner { font-size: 12px; padding: 0 14px; gap: 8px; }
  .topbanner .tb-full { display: none; }
  .topbanner .tb-short { display: inline; }
  .topbanner__spark { display: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: transform 0.45s var(--ease-expo), background-color 0.3s ease;
}
.nav--solid { background: color-mix(in srgb, var(--cool-gray) 86%, transparent); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.nav--hidden { transform: translateY(-110%); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1376px, calc(100% - 64px));
  margin-inline: auto;
  height: 84px;
}
.nav__logo img { height: 40px; width: auto; }
.nav__pill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--white);
  border-radius: 999px;
  padding: 6px 10px;
}
.nav__pill a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  transition: background-color 0.28s;
}
.nav__pill a:hover { background: #E9E9E5; }
.nav__pill a.is-active { background: var(--ink); color: var(--white); }
.chev { width: 10px; height: 6px; stroke: currentColor; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__actions .btn { font-size: 14px; }
.nav__burger { display: none; flex-direction: column; gap: 6px; padding: 10px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s; }
.nav__mobile { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(140px, 13vw, 200px) 0 0;
  min-height: 700px;
  overflow: hidden;
}
.hero__squiggle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero__card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
}
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__card--tl { left: 8%; top: 16%; width: clamp(80px, 8.4vw, 122px); aspect-ratio: 138/202; }
.hero__card--bl { left: 12.5%; top: 52%; width: clamp(96px, 10.6vw, 156px); aspect-ratio: 180/264; }
.hero__card--tr { right: 8.5%; top: 15%; width: clamp(80px, 8.4vw, 124px); aspect-ratio: 140/207; }
.hero__card--br { right: 6.5%; top: 60%; width: clamp(90px, 9.8vw, 144px); aspect-ratio: 163/240; }
.hero__card--bottom {
  position: relative;
  z-index: 1;
  width: clamp(150px, 14.2vw, 206px);
  aspect-ratio: 232/128;
  margin: clamp(30px, 4.5vw, 64px) auto -1px;
  border-radius: 16px 16px 0 0;
}
.hero__content { position: relative; z-index: 2; text-align: center; }
.hero__title { composes: h1; }
.hero__title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "wdth" 75;
  font-weight: 600;
  font-size: clamp(34px, 6.2vw, 90px);
  line-height: 0.98;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  color: var(--ink);
}
.hero__line { display: block; }
.hero__chip {
  display: inline-block;
  width: clamp(56px, 6.4vw, 92px);
  height: clamp(36px, 4vw, 57px);
  border-radius: 12px;
  overflow: hidden;
  vertical-align: 10%;
  margin: 0 6px;
}
.hero__chip img, .hero__chip video { width: 100%; height: 100%; object-fit: cover; }
.hero__sub {
  max-width: 500px;
  margin: 26px auto 0;
  font-size: 17px;
  color: var(--ink);
}
.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

/* ---------- Media band: a small card that expands into the full pill on scroll ---------- */
.band { padding: clamp(40px, 6vw, 90px) 0; }
.band__frame {
  position: relative;
  width: min(1360px, calc(100% - 48px));
  margin-inline: auto;
  height: clamp(280px, 38vw, 560px);
  border-radius: clamp(140px, 20vw, 300px);
  padding: 10px;
  background: linear-gradient(100deg, var(--pink) 0%, var(--red) 30%, var(--lime) 60%, var(--pink) 100%);
  overflow: hidden;
}
.band__win { width: 100%; height: 100%; border-radius: inherit; overflow: hidden; position: relative; }
.band__win img,
.band__win video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.band__blob { position: absolute; left: 14%; bottom: -3%; width: clamp(70px, 8vw, 118px); }
/* Scroll-driven morph: the headline chip zooms out into the full pill.
   The frame fills the viewport; JS moves a clip window from the chip's live
   rect to the centered pill, and the gradient line wraps the pill as border. */
html.js:not(.reduced-motion) .band {
  padding: 0;
  margin-top: -75vh;
  height: 200vh; /* scrub runway: the chip->pill morph paces over a full viewport of scroll */
  position: relative;
  z-index: 2;
  pointer-events: none; /* overlaps the hero; purely visual */
}
html.js:not(.reduced-motion) .band__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  pointer-events: none;
}
html.js:not(.reduced-motion) .band__frame {
  position: absolute;
  top: -20vh;
  left: 0;
  right: 0;
  height: 120vh;
  width: auto;
  margin: 0;
  padding: 0;
  background: none;
  border-radius: 0;
  overflow: hidden;
  pointer-events: none;
  /* hidden until the entrance choreography lands and JS has placed the window */
  opacity: 0;
}
html.js:not(.reduced-motion) body.is-settled .band__frame { opacity: 1; transition: opacity 0.3s ease; }
html.js:not(.reduced-motion) .band__win {
  position: absolute;
  overflow: hidden;
  border-radius: 12px;
  will-change: transform;
}
html.js:not(.reduced-motion) .band__win img,
html.js:not(.reduced-motion) .band__win video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%; /* default cover view in the chip, face stays framed while zooming */
  will-change: transform;
}
html.js:not(.reduced-motion) .band__blob { opacity: 0; transform: translateY(30%); }
.band__line { display: none; }
html.js:not(.reduced-motion) .band__line {
  display: block;
  position: absolute;
  inset: 0;
  overflow: visible;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}

/* ---------- Tabs (shared) ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: 12px; }
.tab {
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--off-white);
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s, transform 0.3s var(--ease-out);
}
.tab:hover { transform: translateY(-2px); }
.tab.is-active { background: var(--ink); color: var(--white); }

/* ---------- Four Audiences ---------- */
.audiences {
  position: relative;
  z-index: 3; /* above the band's tail line */
  overflow: hidden;
  padding: clamp(70px, 8vw, 120px) 0 clamp(60px, 7vw, 110px);
  background: var(--cream);
  border-radius: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 48px) 0 0;
}
.audiences .tab { background: var(--white); }
.audiences .tab.is-active { background: var(--ink); color: var(--white); }
.audiences__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 3.5vw, 56px);
}
.audiences__sticky { position: relative; }
.audiences__headwrap { position: relative; z-index: 1; }
.aud-bgline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}
.aud-row {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 32px;
  width: max-content;
  padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2));
  padding-right: 64px;
  will-change: transform;
}
html.js:not(.reduced-motion) .audiences { height: 230vh; padding: 0; overflow: visible; }
html.js:not(.reduced-motion) .audiences__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: clamp(40px, 6vh, 70px);
  padding-bottom: clamp(36px, 7vh, 72px);
}
html.js:not(.reduced-motion) .audiences__head { margin-bottom: clamp(24px, 4vh, 44px); }
/* no-JS / reduced: native horizontal snap track */
html:not(.js) .aud-row, html.reduced-motion .aud-row {
  width: auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.aud-card {
  flex: 0 0 min(1160px, 86vw);
  scroll-snap-align: center;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 3vw, 56px);
  border-radius: var(--radius-card);
  padding: clamp(28px, 3.3vw, 48px);
  min-height: min(520px, 60vh);
  overflow: hidden;
  color: var(--white);
}
.aud-card--olive { background: var(--olive-dark); }
.aud-card--red { background: var(--dark-red); }
.aud-card--green { background: var(--green-deep); }
.aud-card--plum { background: var(--plum); }
.aud-card__text { display: flex; flex-direction: column; position: relative; z-index: 1; }
.aud-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: clamp(28px, 4vw, 64px);
}
.aud-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
}
.aud-card__title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36;
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.15;
  letter-spacing: -1px;
  max-width: 480px;
}
.aud-card__body { margin-top: 20px; font-size: 15px; line-height: 1.55; color: rgba(255, 255, 255, 0.72); max-width: 440px; }
.aud-card__cta { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 40px; }
.aud-card__cta .btn { min-width: 230px; }
.aud-card__phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /* bleed to the right and off the card's bottom edge (no gap beneath the phone) */
  margin: 0 calc(-1 * clamp(28px, 3.3vw, 48px) / 2) calc(-1 * clamp(28px, 3.3vw, 48px)) 0;
}

/* ---------- Audience phone screenshots (bezel baked into the PNG) ---------- */
.aud-shot {
  width: min(370px, 94%);
  height: auto;
  display: block;
  /* sit flush at the bottom and bleed a touch past the edge */
  transform: translateY(4%);
  filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.34));
}

/* ---------- Workbench phone mock (core features) ---------- */
.phone {
  width: min(320px, 88%);
  background: var(--charcoal);
  border-radius: 44px;
  padding: 10px;
  border: 1px solid #2c2c2e;
  position: relative;
  transform: translateY(6%);
}
.phone__notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 24px;
  border-radius: 14px;
  background: var(--charcoal);
  z-index: 2;
}
.phone__screen {
  background: var(--white);
  border-radius: 36px;
  padding: 14px 16px 20px;
  min-height: 480px;
  overflow: hidden;
}
.ph-status { display: flex; justify-content: space-between; font-size: 12px; font-weight: 600; padding: 2px 6px 12px; }
.ph-status__icons { letter-spacing: 1px; font-size: 10px; }
.ph-head { display: flex; justify-content: space-between; align-items: center; padding: 6px 2px 12px; border-bottom: 1px solid #ECECEC; }
.ph-head strong { font-size: 17px; font-weight: 600; }
.ph-head__dot { color: #8a8a8e; }
.ph-search {
  margin-top: 12px;
  background: #F2F2F3;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 12px;
  color: #9a9aa0;
}
.ph-chips { display: flex; gap: 8px; margin: 12px 0 14px; }
.ph-chip { font-size: 11px; font-weight: 500; padding: 5px 12px; border-radius: 999px; border: 1px solid #E4E4E6; color: #55555a; }
.ph-chip--on { background: var(--lime-tint); border-color: var(--lime); color: var(--olive-med); }
.ph-item { border-top: 1px solid #F0F0F1; padding: 12px 0 14px; }
.ph-item__row { display: flex; align-items: center; gap: 8px; font-size: 11px; }
.ph-logo {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--white); flex: 0 0 auto;
}
.ph-logo--olive { background: var(--olive-med); color: var(--lime); }
.ph-logo--blue { background: #2f6fed; }
.ph-item__brand { font-weight: 600; }
.ph-item__date { margin-left: auto; color: #9a9aa0; font-size: 10px; }
.ph-item__title { font-size: 13px; font-weight: 600; margin: 8px 0; line-height: 1.35; }
.ph-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ph-tags span { font-size: 10px; padding: 4px 8px; border-radius: 999px; border: 1px solid #E4E4E6; color: #55555a; }
.ph-amount { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 12px; }
.ph-amount__label { display: block; font-size: 10px; color: #9a9aa0; margin-bottom: 2px; }
.ph-amount strong { font-size: 13px; }
.ph-amount em { font-style: normal; font-size: 11px; color: #9a9aa0; }
.ph-avatar { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }

/* ---------- Core Features ---------- */
.features { background: var(--black); padding: clamp(70px, 8vw, 120px) 0 clamp(80px, 9vw, 130px); }
.features__title { color: var(--white); margin-bottom: clamp(36px, 4.5vw, 70px); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(300px, auto);
  gap: 28px;
}
.fcard {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 32px;
  min-height: 340px;
  display: flex;
  transition: transform 0.35s var(--ease-out);
}
.fcard:hover { transform: translateY(-2px); }
.fcard--wide { grid-column: span 2; }
.fcard--lime { background: var(--lime); color: var(--olive-dark); }
.fcard--coral { background: var(--coral); color: var(--red-deep); }
.fcard--pink { background: var(--pink); color: var(--plum); }
.fcard--mint { background: var(--mint); color: var(--green-forest); }
.fcard__body { position: relative; z-index: 1; max-width: 340px; display: flex; flex-direction: column; }
.fcard__icon { display: block; margin-bottom: 40px; }
.fcard__icon svg { width: 34px; height: 34px; stroke: currentColor; stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.fcard--mint .fcard__icon svg { fill: currentColor; stroke: none; }
.fcard .title-md { margin-bottom: 14px; }
.fcard p { font-size: 15px; line-height: 1.5; }
.fcard__panel { position: absolute; right: 28px; top: 50%; transform: translateY(-50%); width: min(46%, 340px); z-index: 0; }
.invite-panel {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  color: var(--ink);
}
.invite-panel__title { font-size: 15px; font-weight: 500; line-height: 1.4; max-width: 240px; }
.invite-panel__row { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.invite-panel__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.invite-panel__who { display: grid; }
.invite-panel__who strong { font-size: 14px; font-weight: 600; }
.invite-panel__who span { font-size: 12px; color: #8a8a8e; }
.invite-panel__meta { margin-left: auto; text-align: right; display: grid; }
.invite-panel__meta strong { font-size: 14px; }
.invite-panel__meta span { font-size: 11px; color: #8a8a8e; }
.invite-panel__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.invite-panel__thumbs img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; }

.fcard__zigzag, .fcard__chevrons { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 42%; }
.fcard__chevrons { height: 54%; }
.fcard__mascot { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; }
.fcard__phone { position: absolute; right: 0; left: 0; bottom: 0; display: flex; justify-content: center; }
.fcard__phone-img { display: block; width: min(80%, 315px); }
.fcard--lime { min-height: 550px; }

/* ---------- Feature-card hover play ---------- */
.fcard__icon { transition: transform 0.45s var(--ease-expo); }
.fcard:hover .fcard__icon { transform: rotate(-8deg) scale(1.12); }

/* coral: the ridges ripple upward, brightest row first */
.fcard__zigzag path,
.fcard__chevrons path { transition: transform 0.55s var(--ease-expo); }
.fcard:hover .fcard__zigzag path { transform: translateY(-16px); }
.fcard:hover .fcard__zigzag path:nth-child(4) { transition-delay: 0.04s; }
.fcard:hover .fcard__zigzag path:nth-child(3) { transition-delay: 0.08s; }
.fcard:hover .fcard__zigzag path:nth-child(2) { transition-delay: 0.12s; }
.fcard:hover .fcard__zigzag path:nth-child(1) { transition-delay: 0.16s; }

/* pink: the chevrons cascade top-to-bottom */
.fcard:hover .fcard__chevrons path { transform: translateY(-20px); }
.fcard:hover .fcard__chevrons path:nth-child(2) { transition-delay: 0.04s; }
.fcard:hover .fcard__chevrons path:nth-child(3) { transition-delay: 0.08s; }
.fcard:hover .fcard__chevrons path:nth-child(4) { transition-delay: 0.12s; }
.fcard:hover .fcard__chevrons path:nth-child(5) { transition-delay: 0.16s; }
.fcard:hover .fcard__chevrons path:nth-child(6) { transition-delay: 0.2s; }
.fcard:hover .fcard__chevrons path:nth-child(7) { transition-delay: 0.24s; }

/* lime + mint: bottom-cropped art grows from its base, edges stay flush */
html.js .features__grid.is-in .fcard--lime:hover .fcard__phone-img { transform: scale(1.035); transform-origin: 50% 100%; }
html.js .features__grid.is-in .fcard--mint:not(.fcard--wide):hover .fcard__mascot { transform: scale(1.045); transform-origin: 50% 100%; }

/* wide mint: the invite panel media perks up */
.invite-panel__avatar,
.invite-panel__thumbs img { transition: transform 0.5s var(--ease-expo); }
.fcard--wide:hover .invite-panel__thumbs img { transform: translateY(-6px); }
.fcard--wide:hover .invite-panel__thumbs img:nth-child(2) { transition-delay: 0.05s; }
.fcard--wide:hover .invite-panel__thumbs img:nth-child(3) { transition-delay: 0.1s; }
.fcard--wide:hover .invite-panel__avatar { transform: rotate(-4deg) scale(1.08); }
.phone--sm { width: min(260px, 80%); transform: none; }
.phone--sm .phone__screen { min-height: 380px; }

/* ---------- AI Agent ---------- */
.agent { position: relative; padding: clamp(70px, 9vw, 140px) 0 clamp(50px, 6vw, 90px); overflow: hidden; }
/* desktop: the section pins and the cards travel horizontally with scroll */
@media (min-width: 761px) {
  html.js:not(.reduced-motion) .agent { height: 200vh; padding: 0; overflow: visible; }
  html.js:not(.reduced-motion) .agent__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }
  html.js:not(.reduced-motion) .agent .arrows { display: none; }
  html.js:not(.reduced-motion) .agent__track {
    overflow: visible;
    width: max-content;
    scroll-snap-type: none;
    cursor: default;
    will-change: transform;
  }
}
.agent__squiggle { position: absolute; top: -70px; left: 0; width: min(62vw, 880px); height: auto; pointer-events: none; }
.agent__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 3.5vw, 56px);
}
.arrows { display: flex; gap: 10px; }
.agent__track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-inline: max(var(--gutter), calc((100% - var(--container)) / 2));
  scroll-padding-inline: max(var(--gutter), calc((100% - var(--container)) / 2));
  padding-bottom: 8px;
}
.agent__track::-webkit-scrollbar { display: none; }
.agent__track, .blogs__track { cursor: grab; }
.agent__track.is-dragging, .blogs__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
  scroll-behavior: auto;
}
.agent-card {
  flex: 0 0 clamp(280px, 29.5vw, 428px);
  scroll-snap-align: start;
}
.agent-card__art {
  background: var(--white);
  border-radius: 20px;
  margin-bottom: 22px;
}
.agent-card__art { padding: clamp(18px, 1.8vw, 28px); aspect-ratio: 4/3; display: flex; align-items: center; }
.agent-card__title { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.mock-report {
  background: var(--white);
  border: 1px solid #ECECEE;
  border-radius: 14px;
  padding: 18px;
  width: 100%;
  box-shadow: 0 8px 22px rgba(20, 20, 21, 0.05);
}
.mr-head { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.mr-chip { font-size: 10px; padding: 3px 9px; border-radius: 999px; background: #FBE9E4; color: #B93A1B; font-weight: 600; }
.mr-chip--green { background: #E4F3EA; color: #0E3F2A; }
.mr-score { margin: 14px 0 12px; display: flex; align-items: baseline; gap: 6px; }
.mr-score strong { font-size: 34px; font-weight: 700; color: #C8452A; line-height: 1; }
.mr-score--green strong { color: #0E3F2A; }
.mr-score span { font-size: 11px; color: #8a8a8e; }
.mr-prog { height: 8px; border-radius: 5px; background: #EFEFF0; margin: 16px 0 14px; overflow: hidden; }
.mr-prog i { display: block; height: 100%; border-radius: 5px; background: var(--lime); }
.mr-row { display: flex; align-items: center; gap: 9px; margin-top: 9px; }
.mr-dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.mr-dot--red { background: #C8452A; }
.mr-dot--amber { background: #E8A13C; }
.mr-dot--green { background: #2E7D4F; }
.mr-check { width: 16px; height: 16px; border-radius: 50%; background: #E4F3EA; color: #0E3F2A; font-size: 10px; display: inline-flex; align-items: center; justify-content: center; font-style: normal; flex: 0 0 auto; }
.mr-check--wait { background: #EFEFF0; color: #8a8a8e; }
.mr-line { height: 8px; border-radius: 4px; background: #ECECEE; }
.mr-line.w48 { width: 48%; } .mr-line.w56 { width: 56%; } .mr-line.w58 { width: 58%; }
.mr-line.w60 { width: 60%; } .mr-line.w64 { width: 64%; } .mr-line.w66 { width: 66%; }
.mr-line.w70 { width: 70%; } .mr-line.w74 { width: 74%; } .mr-line.w76 { width: 76%; } .mr-line.w82 { width: 82%; }
.mock-sheet { width: 100%; }
.ms-nav { font-size: 12px; color: #55555a; margin-bottom: 10px; }
.ms-panel { background: linear-gradient(180deg, #EFE9FB, #FBFAFE); border-radius: 14px 14px 0 0; padding: 14px 16px 20px; }
.ms-bar { display: flex; align-items: center; gap: 10px; font-size: 13px; padding-bottom: 10px; border-bottom: 1px solid rgba(20,20,21,0.07); }
.ms-bar strong { flex: 1; text-align: center; font-weight: 600; }
.ms-bar em { font-style: normal; color: #4B2FD6; font-weight: 600; font-size: 12px; }
.ms-panel p { margin-top: 12px; font-size: 12px; line-height: 1.5; color: #8a8a8e; }
.agent-card .h5 { color: var(--ink); margin-bottom: 10px; }
.agent-card .body-sm { color: #5c5c5e; max-width: 380px; }

/* ---------- Workflow: dark scroll collage (wisprflow-style) ---------- */
.workflow { position: relative; background: var(--gray-dark); }
.workflow__sticky { position: relative; overflow: hidden; padding: clamp(70px, 9vw, 120px) 0; }
html.js:not(.reduced-motion) .workflow { height: 270vh; }
html.js:not(.reduced-motion) .workflow__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.workflow__headline { position: relative; z-index: 1; text-align: center; padding: 0 24px; }
.workflow__headline .h2 { color: var(--white); font-size: clamp(36px, 5.2vw, 84px); }
.wf-title { display: grid; text-align: center; }
.wf-title > span {
  grid-area: 1 / 1;
  transition: opacity 1s ease, filter 1.1s ease, transform 1.1s var(--ease-expo);
}
.wf-title__b { opacity: 0; filter: blur(14px); transform: translateY(26px); }
.workflow--end .wf-title__a { opacity: 0; filter: blur(14px); transform: translateY(-26px); }
.workflow--end .wf-title__b { opacity: 1; filter: blur(0); transform: none; }
.workflow__line { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 0.85; }
.workflow__line path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.workflow__sub { margin-top: 18px; font-size: 16px; color: rgba(255, 255, 255, 0.55); }
.workflow__cards {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  perspective: 1900px;
  perspective-origin: 50% 40%;
}
html.js:not(.reduced-motion) .workflow__cards { position: absolute; }
.wf-card {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 50% 50%;
  backface-visibility: visible;
  width: clamp(320px, 30vw, 440px);
  border-radius: 24px;
  padding: 22px;
  color: var(--ink);
  pointer-events: auto;
  will-change: transform;
}
.wf-card--limetint { background: var(--lime-tint); }
.wf-card--pinklight { background: #FFD3F2; }
.wf-card--cream { background: var(--cream); }
.wf-card--mint { background: var(--mint); }
.wf-card--white { background: var(--white); }
.wf-card--corallight { background: #FFC9B4; }
.wf-card--lime { background: var(--lime); }
.wf-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 26px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}
.wf-card .h4 { font-size: clamp(22px, 2.1vw, 30px); }
.wf-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 12px; margin-top: 16px; }
.wf-card__illo {
  margin-top: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.45);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wf-card__illo svg { width: 74%; height: auto; }
.wf-card__caption { margin-top: 14px; font-size: 14px; color: rgba(20, 20, 21, 0.62); }

/* static / reduced / no-JS fallback: tidy grid */
html.reduced-motion .wf-card,
html:not(.js) .wf-card { position: static; }
html.reduced-motion .workflow__cards,
html:not(.js) .workflow__cards {
  position: relative;
  inset: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  width: min(var(--container), calc(100% - 48px));
  margin: 48px auto 0;
}

/* ---------- Blogs ---------- */
.blogs { background: var(--cool-gray); padding: clamp(70px, 8vw, 110px) 0 clamp(60px, 7vw, 100px); }
.blogs__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 3.5vw, 52px);
}
.blogs__track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-inline: max(var(--gutter), calc((100% - var(--container)) / 2));
  scroll-padding-inline: max(var(--gutter), calc((100% - var(--container)) / 2));
  padding-bottom: 8px;
}
.blogs__track::-webkit-scrollbar { display: none; }
.blog-card {
  flex: 0 0 clamp(260px, 22.5vw, 320px);
  scroll-snap-align: start;
  display: block;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}
.blog-card figure { position: relative; }
.blog-card figure { border-radius: 14px; overflow: hidden; aspect-ratio: 320/200; }
.blog-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-expo); }
.blog-card:hover img { transform: scale(1.06); }
.blog-card h3 { font-size: 17px; font-weight: 600; line-height: 1.35; margin-top: 16px; }
.blog-card__meta { margin-top: 10px; font-size: 13px; color: #7a7a7e; }

/* ---------- FAQ ---------- */
.faq { background: var(--cool-gray); padding: clamp(70px, 9vw, 130px) 0; }
.faq__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) 1.2fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.faq__left .h2 { margin-bottom: 36px; }
.tabs--faq .tab { background: var(--white); }
.tabs--faq .tab.is-active { background: var(--ink); color: var(--white); }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding: 26px 0;
  font-size: 19px;
  font-weight: 600;
}
.faq-item__icon { position: relative; width: 20px; height: 20px; flex: 0 0 auto; }
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--ink);
  transition: transform 0.45s var(--ease-expo);
}
.faq-item__icon::before { width: 20px; height: 2px; }
.faq-item__icon::after { width: 2px; height: 20px; }
.faq-item.is-open .faq-item__icon::before { transform: rotate(45deg); }
.faq-item.is-open .faq-item__icon::after { transform: rotate(45deg); }
.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease-expo);
}
.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a-inner { overflow: hidden; min-height: 0; }
.faq-item__a p {
  padding: 0 40px 26px 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--olive-med);
}

/* ---------- Final CTA ---------- */
.cta { padding: clamp(30px, 4vw, 50px) 0 clamp(70px, 9vw, 120px); }
.cta__app {
  position: relative;
  width: min(1376px, calc(100% - 48px));
  margin-inline: auto;
  border-radius: 24px;
  background: var(--lime-tint);
  padding: clamp(20px, 2.4vw, 36px);
  overflow: hidden;
}
.cta__illo {
  display: block;
  width: min(560px, 74%);
  margin: 0 auto;
}
.cta__qr {
  position: absolute;
  top: clamp(18px, 2.4vw, 34px);
  right: clamp(18px, 2.4vw, 34px);
  display: grid;
  justify-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--pink);
  border-radius: 18px;
  padding: 12px 14px;
  transition: transform 0.2s var(--ease-out);
}
.cta__qr:hover { transform: translateY(-2px); }
.cta__qr img { width: 90px; height: 90px; }
.cta__qr span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cta__panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  background: var(--lime);
  border-radius: 16px;
  padding: clamp(28px, 3.3vw, 48px) clamp(28px, 4.5vw, 64px);
  align-items: center;
}
.cta__copy .h2 { color: var(--ink); }
.cta__copy .body-md { margin-top: 22px; max-width: 560px; color: var(--olive-deep); }
.cta__try { font-size: 16px; font-weight: 500; margin-bottom: 20px; }
.checks--dark li { color: var(--ink); font-weight: 400; }
.checks--dark li::before { background: var(--ink); }
.cta__buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* Promo duo */
.promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: clamp(48px, 6vw, 96px);
}
.promo-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  min-height: clamp(260px, 24vw, 340px);
  display: flex;
}
.promo-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 2.8vw, 40px);
}
.promo-card .h5 { color: var(--olive-deep); }
.promo-card__cta { display: flex; align-items: center; gap: 10px; }
.promo-card__art { position: absolute; right: 0; top: 0; height: 100%; width: auto; }

/* ---------- Footer ---------- */
.footer { background: var(--cool-gray); padding-top: clamp(20px, 3vw, 40px); }
.footer__inner {
  position: relative;
  background: var(--black);
  border-radius: clamp(80px, 18vw, 260px) 0 0 0;
  margin-left: max(0px, calc((100% - 1448px) / 2));
  color: var(--white);
  overflow: hidden;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(70px, 9vw, 120px) clamp(28px, 6vw, 96px) clamp(30px, 4vw, 60px) clamp(48px, 12vw, 170px);
}
.footer__tagline {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-variation-settings: "opsz" 24, "wdth" 80;
  font-weight: 600;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
  max-width: 280px;
}
.footer__copyright { margin-top: 20px; font-size: 13px; color: rgba(255, 255, 255, 0.55); }
.footer__cols { display: flex; gap: clamp(40px, 5vw, 90px); }
.footer__col { display: grid; gap: 15px; align-content: start; }
.footer__label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}
.footer__col a { font-size: 15px; color: rgba(255, 255, 255, 0.92); transition: color 0.15s; }
.footer__col a:hover { color: var(--lime); }
.footer__news { max-width: 420px; }
.footer__form {
  display: flex;
  align-items: center;
  gap: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 5px 5px 5px 20px;
}
.footer__form input {
  flex: 1;
  min-width: 0;
  background: none;
  border: 0;
  outline: none;
  color: var(--white);
  font: inherit;
  font-size: 15px;
}
.footer__form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.footer__label--follow { margin-top: 34px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  transition: transform 0.18s var(--ease-out);
}
.footer__social a:hover { transform: translateY(-2px); }
.footer__social svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.6; fill: none; }
.footer__prixa {
  display: flex;
  justify-content: center;
  padding: clamp(28px, 4vw, 52px) 24px clamp(2px, 1vw, 10px);
}
.footer__prixa img { width: clamp(150px, 19vw, 210px); height: auto; opacity: 0.55; }
.footer__watermark {
  padding: clamp(10px, 2vw, 30px) clamp(28px, 6vw, 96px) 0 clamp(48px, 12vw, 170px);
  margin-bottom: -4%;
}
.footer__watermark img { width: 100%; opacity: 0.13; }

/* ==========================================================================
   Motion system
   Everything is JS-gated behind html.js so a failed script never hides content.
   Entrances use transform / opacity / clip-path / stroke-dashoffset only.
   ========================================================================== */
:root { --ease-expo: cubic-bezier(0.16, 1, 0.3, 1); }

/* ---------- Preloader ---------- */
.loader { display: none; }
body.is-loading .loader,
.loader.is-done {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cool-gray);
  border-radius: 0 0 clamp(48px, 9vw, 160px) clamp(48px, 9vw, 160px);
  transition: transform 0.85s var(--ease-expo);
  will-change: transform;
}
.loader.is-done { transform: translateY(-103%); pointer-events: none; }
.loader__inner {
  position: absolute;
  top: clamp(48px, 11vh, 110px);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
  transition: opacity 0.35s ease, transform 0.5s var(--ease-expo);
}
.loader.is-done .loader__inner { opacity: 0; transform: translateY(-24px) scale(0.97); }
.loader__logo {
  width: clamp(240px, 32vw, 480px);
  height: auto;
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  animation: loader-logo-in 0.9s var(--ease-expo) 0.2s forwards;
}
@keyframes loader-logo-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.loader__count {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(24px, 5vh, 56px);
  text-align: center;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "wdth" 75;
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  color: var(--ink);
  z-index: 2;
}
.loader.is-done .loader__count { opacity: 0; transition: opacity 0.3s ease; }

/* ---------- Hero entrance choreography ---------- */
.nav__inner,
.hero__card,
.hero__chip img,
.hero__chip video,
.hero__sub,
.hero__cta,
.hero__line {
  transition:
    opacity 1.05s var(--ease-expo),
    transform 1.2s var(--ease-expo),
    clip-path 1.2s var(--ease-expo),
    filter 1.25s var(--ease-expo);
  filter: blur(0);
}
.hero__line { clip-path: inset(-12% -6% -12% -6%); }
body.is-loading .nav__inner { opacity: 0; transform: translateY(-14px); transition: none; }
body.is-loading .hero__card { opacity: 0; transform: translateY(34px) scale(0.94); filter: blur(18px); transition: none; }
body.is-loading .hero__line { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(30px); filter: blur(16px); transition: none; }
body.is-loading .hero__chip img,
body.is-loading .hero__chip video { transform: scale(0); transition: none; }
body.is-loading .hero__sub,
body.is-loading .hero__cta { opacity: 0; transform: translateY(24px); filter: blur(14px); transition: none; }
body.is-ready .nav__inner { transition-delay: 0.5s; }
body.is-ready .hero__line:nth-child(1) { transition-delay: 0.1s; }
body.is-ready .hero__line:nth-child(2) { transition-delay: 0.22s; }
body.is-ready .hero__chip img,
body.is-ready .hero__chip video { transition-delay: 0.55s; transition-duration: 0.55s; }
body.is-ready .hero__sub { transition-delay: 0.4s; }
body.is-ready .hero__cta { transition-delay: 0.5s; }
body.is-ready .hero__card--tl { transition-delay: 0.55s; }
body.is-ready .hero__card--tr { transition-delay: 0.63s; }
body.is-ready .hero__card--bl { transition-delay: 0.71s; }
body.is-ready .hero__card--br { transition-delay: 0.79s; }
body.is-ready .hero__card--bottom { transition-delay: 0.87s; }

/* ---------- Squiggle line draws ---------- */
.sq-line {
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}
html.js .sq-line {
  stroke-dashoffset: 1;
  opacity: 0;
  transition: stroke-dashoffset 2.4s cubic-bezier(0.5, 0, 0.2, 1), opacity 0.4s ease;
}
html.js .sq-draw .sq-line { stroke-dashoffset: 0; opacity: 1; }
.hero__squiggle .sq-line { transition-delay: 0.35s; }

/* ---------- Scroll reveals ---------- */
html.js .reveal { opacity: 0; transform: translateY(28px); }
html.js .reveal,
html.js .reveal-head,
html.js .reveal-pill,
html.js [data-stagger] > * {
  transition:
    opacity 1.05s var(--ease-expo),
    transform 1.2s var(--ease-expo),
    clip-path 1.2s var(--ease-expo),
    filter 1.25s var(--ease-expo);
  filter: blur(0);
}
html.js .reveal.is-in { opacity: 1; transform: none; }

/* headings wipe upward out of their own baseline */
html.js .reveal-head { clip-path: inset(0 0 100% 0); transform: translateY(30px); opacity: 0; }
html.js .reveal-head.is-in { clip-path: inset(0 0 -8% 0); transform: none; opacity: 1; }


/* staggered children: cards rise, carousel items slide in from the right */
html.js [data-stagger] > * { opacity: 0; transform: translateY(34px); }
html.js .agent__track > *,
html.js .workflow__track > * { transform: translateX(48px); }
html.js [data-stagger].is-in > * { opacity: 1; transform: none; }
html.js [data-stagger].is-in > *:nth-child(1) { transition-delay: 0s; }
html.js [data-stagger].is-in > *:nth-child(2) { transition-delay: 0.12s; }
html.js [data-stagger].is-in > *:nth-child(3) { transition-delay: 0.24s; }
html.js [data-stagger].is-in > *:nth-child(4) { transition-delay: 0.36s; }
html.js [data-stagger].is-in > *:nth-child(5) { transition-delay: 0.48s; }
html.js [data-stagger].is-in > *:nth-child(n + 6) { transition-delay: 0.44s; }

/* ---------- Section-specific accents ---------- */
/* feature-card interiors play after their card lands */
html.js .fcard__zigzag,
html.js .fcard__chevrons { transform: translateY(60%); opacity: 0; transition: transform 0.9s var(--ease-expo), opacity 0.5s ease; }
html.js .features__grid.is-in .fcard__zigzag,
html.js .features__grid.is-in .fcard__chevrons { transform: none; opacity: 1; transition-delay: 0.45s; }
html.js .fcard__mascot { transform: translateY(24%) scale(0.7); opacity: 0; transform-origin: 50% 80%; transition: transform 0.7s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.3s ease; }
html.js .features__grid.is-in .fcard__mascot { transform: none; opacity: 1; transition-delay: 0.55s; }
html.js .invite-panel { opacity: 0; transform: translateY(22px) rotate(1.2deg); transition: opacity 0.5s ease, transform 0.8s var(--ease-expo); transition-delay: 0.45s; }
html.js .features__grid.is-in .invite-panel { opacity: 1; transform: none; }
html.js .fcard__phone .phone,
html.js .fcard__phone-img { transform: translateY(26%); transition: transform 1s var(--ease-expo) 0.45s; }
html.js .features__grid.is-in .fcard__phone .phone,
html.js .features__grid.is-in .fcard__phone-img { transform: none; }
/* entrance delays are cleared once the choreography has landed (is-settled,
   added by JS shortly after is-in) so art hovers respond instantly */
html.js .features__grid.is-settled .fcard__zigzag,
html.js .features__grid.is-settled .fcard__chevrons,
html.js .features__grid.is-settled .fcard__mascot,
html.js .features__grid.is-settled .fcard__phone-img,
html.js .features__grid.is-settled .invite-panel { transition-delay: 0s; }

/* agent diagram: connectors draw, nodes pop */
html.js .agent-card__art path[stroke] {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.5, 0, 0.2, 1);
}
html.js .agent__track.is-in .agent-card__art path[stroke] { stroke-dashoffset: 0; transition-delay: 0.35s; }
html.js .agent-card__art rect { transform: scale(0); transform-origin: center; transform-box: fill-box; transition: transform 0.55s var(--ease-expo); }
html.js .agent__track.is-in .agent-card__art rect { transform: none; }
html.js .agent__track.is-in .agent-card__art rect:nth-of-type(1) { transition-delay: 0.2s; }
html.js .agent__track.is-in .agent-card__art rect:nth-of-type(2) { transition-delay: 0.28s; }
html.js .agent__track.is-in .agent-card__art rect:nth-of-type(3) { transition-delay: 0.36s; }
html.js .agent__track.is-in .agent-card__art rect:nth-of-type(4) { transition-delay: 0.75s; }
html.js .agent-card__art path[fill] { opacity: 0; transition: opacity 0.4s ease; }
html.js .agent__track.is-in .agent-card__art path[fill] { opacity: 1; transition-delay: 1s; }

/* workflow photos breathe in once their step lands; step dimming survives the stagger */
html.js .step img { transform: scale(1.06); transition: transform 1.1s var(--ease-expo); }
html.js .workflow__track.is-in .step img { transform: none; }
html.js .workflow__track.is-in > .step { opacity: 0.45; }
html.js .workflow__track.is-in > .step.is-active { opacity: 1; }

/* CTA: lime panel rises off the photo, checks cascade */
html.js .cta__panel { opacity: 0; transform: translateY(40px); transition: opacity 0.7s var(--ease-expo), transform 0.9s var(--ease-expo); }
html.js .reveal.is-in .cta__panel { opacity: 1; transform: none; transition-delay: 0.25s; }
html.js .cta .checks li { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.6s var(--ease-expo); }
html.js .cta .reveal.is-in .checks li { opacity: 1; transform: none; }
html.js .cta .reveal.is-in .checks li:nth-child(1) { transition-delay: 0.45s; }
html.js .cta .reveal.is-in .checks li:nth-child(2) { transition-delay: 0.55s; }
html.js .cta .reveal.is-in .checks li:nth-child(3) { transition-delay: 0.65s; }

/* FAQ rows cascade on load and on tab switch */
html.js .faq-item { opacity: 0; transform: translateY(18px); }
html.js .faq__list.is-anim .faq-item { opacity: 1; transform: none; transition: opacity 0.55s ease, transform 0.6s var(--ease-expo); }
html.js .faq__list.is-anim .faq-item:nth-child(2) { transition-delay: 0.06s; }
html.js .faq__list.is-anim .faq-item:nth-child(3) { transition-delay: 0.12s; }
html.js .faq__list.is-anim .faq-item:nth-child(4) { transition-delay: 0.18s; }
html.js .faq__list.is-anim .faq-item:nth-child(5) { transition-delay: 0.24s; }
html.js .faq__list.is-anim .faq-item:nth-child(6) { transition-delay: 0.3s; }
html.js .faq__list.is-anim .faq-item:nth-child(n + 7) { transition-delay: 0.36s; }

/* footer watermark surfaces from below the fold line */
html.js .footer__watermark img { transform: translateY(36%); opacity: 0; transition: transform 1.1s var(--ease-expo), opacity 0.6s ease; }
html.js .footer.is-in .footer__watermark img { transform: none; opacity: 0.13; }

/* generic image parallax (JS writes translateY + cover-scale each frame) */
html.js:not(.reduced-motion) [data-plx] { will-change: transform; }
html.js:not(.reduced-motion) .cta__photo [data-plx] { transform: scale(1.15); }

/* ---------- Hover interactions (pointer devices) ---------- */
@media (hover: hover) and (pointer: fine) {
  /* hero photo cards tilt toward the cursor's attention */
  body.is-settled .hero__card { transition: transform 0.4s var(--ease-expo); }
  body.is-settled .hero__card:hover {
    transform: translate3d(var(--mx, 0px), calc(var(--my, 0px) - 8px), 0) rotate(-1.5deg) scale(1.03);
  }
  body.is-settled .hero__card--tr:hover,
  body.is-settled .hero__card--br:hover {
    transform: translate3d(var(--mx, 0px), calc(var(--my, 0px) - 8px), 0) rotate(1.5deg) scale(1.03);
  }

  /* audience media zooms; its number drifts up */
  .aud-card .aud-shot { transition: transform 0.7s var(--ease-expo); }
  .aud-card:hover .aud-shot { transform: translateY(2%); }

  /* feature cards: icon acknowledges the visit */
  .fcard__icon svg { transition: transform 0.4s var(--ease-expo); }
  .fcard:hover .fcard__icon svg { transform: translateY(-3px); }

  /* agent cards: the diagram leans in */
  .agent-card__art { transition: background-color 0.35s ease; }
  .agent-card:hover .agent-card__art { background: #F6F6F7; }
  .agent-card__art svg { transition: transform 0.55s var(--ease-expo); }
  .agent-card:hover .agent-card__art svg { transform: scale(1.04); }

  /* workflow: dimmed steps answer the cursor */
  html.js .workflow__track.is-in > .step:hover { opacity: 0.8; }
  html.js .workflow__track.is-in > .step.is-active:hover { opacity: 1; }
  .workflow__track .step:hover img { transform: scale(1.04); }

  /* promo art drifts toward the copy */
  .promo-card__art { transition: transform 0.6s var(--ease-expo); }
  .promo-card:hover .promo-card__art { transform: translateX(-10px); }

  /* FAQ questions step forward */
  .faq-item__q > span:first-child { transition: transform 0.35s var(--ease-expo); }
  .faq-item__q:hover > span:first-child { transform: translateX(6px); }

  /* arrows point where they go */
  .btn-circle svg { transition: transform 0.3s var(--ease-expo); }
  .btn-circle--lime:hover svg,
  .btn-circle--white:hover svg,
  .btn-circle--outline:hover svg { transform: translate(2px, -2px); }
  [data-carousel-prev]:hover svg { transform: translateX(-2px); }
  [data-carousel-next]:hover svg { transform: translateX(2px); }
}

/* ---------- Reduced motion: everything lands instantly ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal,
  html.js .reveal-head,
  html.js .reveal-pill,
  html.js [data-stagger] > *,
  html.js .fcard__zigzag,
  html.js .fcard__chevrons,
  html.js .fcard__mascot,
  html.js .invite-panel,
  html.js .fcard__phone .phone,
  html.js .fcard__phone-img,
  html.js .step img,
  html.js .cta__panel,
  html.js .cta .checks li,
  html.js .faq-item,
  html.js .footer__watermark img,
  body.is-loading .nav__inner,
  body.is-loading .hero__card,
  body.is-loading .hero__line,
  body.is-loading .hero__chip img,
  body.is-loading .hero__sub,
  body.is-loading .hero__cta {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
  html.js .footer__watermark img { opacity: 0.13 !important; }
  html.js .band__win, html.js .band__win img { transform: none !important; will-change: auto; }
  html.js [data-plx] { transform: none !important; will-change: auto; }
  html.js .band__frame { clip-path: none !important; }
  html.js .workflow__track.is-in > .step { opacity: 0.45 !important; }
  html.js .workflow__track.is-in > .step.is-active { opacity: 1 !important; }
  html.js .sq-line,
  html.js .agent-card__art path[stroke] { stroke-dashoffset: 0 !important; opacity: 1 !important; transition: none !important; }
  html.js .agent-card__art rect { transform: none !important; }
  html.js .agent-card__art path[fill] { opacity: 1 !important; }
  .loader { display: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav__pill { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.is-open {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 24px 24px;
    background: var(--cool-gray);
    border-bottom: 1px solid var(--gray-light);
  }
  .nav__mobile a { padding: 12px 0; font-size: 17px; border-bottom: 1px solid rgba(20, 20, 21, 0.06); }
  .nav__mobile-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
  .nav__mobile-cta .btn { width: 100%; height: 52px; font-size: 16px; }
}
@media (max-width: 1024px) {
  :root { --gutter: 32px; }
  .features__grid { grid-template-columns: 1fr 1fr; }
  .fcard--wide { grid-column: span 2; }
  .fcard__panel { position: static; transform: none; width: 100%; margin-top: 20px; }
  .fcard--wide { flex-direction: column; }
  .fcard--wide .fcard__body { max-width: none; }
  .aud-card { grid-template-columns: 1fr; flex-basis: 86vw; }
  .aud-card__phone { margin: 0; padding-top: 8px; max-height: 360px; overflow: hidden; align-items: flex-start; }
  .aud-shot { transform: none; }
  html.js:not(.reduced-motion) .audiences { height: auto; padding: 70px 0; }
  html.js:not(.reduced-motion) .audiences__sticky { position: relative; height: auto; display: block; overflow: visible; padding-top: 0; }
  .aud-row { width: auto; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 8px; }
  .aud-bgline { display: none; }
  .faq__grid { grid-template-columns: 1fr; }
  .cta__panel { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__news { grid-column: span 2; }
}
@media (max-width: 760px) {
  :root { --gutter: 16px; }
  .hero { padding-top: 112px; }
  .hero__cta { flex-wrap: wrap; }
  .text-loop-text { font-size: 76px; letter-spacing: 1px; }
  .loader__logo { width: clamp(200px, 56vw, 300px); }
  .blogpage { padding-top: 112px; }
  .aud-card { min-height: 0; }
  .fcard { min-height: 300px; padding: 24px; }
  .fcard__icon { margin-bottom: 24px; }
  /* reserve room below the text for the bottom-anchored artwork */
  .fcard--coral { min-height: 0; padding-bottom: 48%; }
  .fcard--pink { min-height: 0; padding-bottom: 62%; }
  .fcard--mint:not(.fcard--wide) { min-height: 0; padding-bottom: 66%; }
  .fcard--lime { min-height: 0; padding-bottom: 82%; }
  .cta__illo-img { width: 92%; }
  .promo-card { min-height: 220px; }
  .footer__tagline { font-size: 20px; }
  .nav__actions .btn--white { display: none; }
  .hero {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    row-gap: 8px;
  }
  .hero__squiggle { display: none; } /* the line would cross the copy at narrow widths */
  .hero__card--tl, .hero__card--tr, .hero__card--bl, .hero__card--br {
    position: static;
    display: block;
    width: auto;
  }
  .hero__card--tl { grid-area: 1 / 1; width: 64%; margin-left: var(--gutter); }
  .hero__card--tr { grid-area: 1 / 2; width: 76%; justify-self: end; margin: 14% var(--gutter) 0 0; }
  .hero__content { grid-area: 2 / 1 / 3 / 3; padding-top: 26px; }
  .hero__card--bl { grid-area: 3 / 1; width: 78%; margin: 30px 0 0 var(--gutter); }
  .hero__card--br { grid-area: 3 / 2; width: 64%; justify-self: end; margin: 60px var(--gutter) 0 0; }
  .hero__card--bottom { display: none; }
  .hero__title { font-size: clamp(42px, 11.8vw, 58px); letter-spacing: -1.4px; }
  .hero__chip { width: clamp(72px, 19vw, 104px); height: clamp(44px, 11.6vw, 64px); }
  .hero__sub { font-size: 17px; }
  .hero__sub { padding-inline: 24px; }
  .features__grid { grid-template-columns: 1fr; }
  .fcard--wide { grid-column: auto; }
  .promo { grid-template-columns: 1fr; }
  .promo-card__art { opacity: 0.5; }
  .footer__top { grid-template-columns: 1fr; padding-left: clamp(28px, 8vw, 60px); }
  .footer__news { grid-column: auto; }
  .wf-card { position: static; width: 100%; }
  html.js:not(.reduced-motion) .workflow { height: auto; }
  html.js:not(.reduced-motion) .workflow__sticky { position: relative; height: auto; display: block; padding: 70px 0; }
  html.js:not(.reduced-motion) .workflow__cards { position: relative; inset: auto; display: grid; gap: 18px; width: calc(100% - 40px); margin: 40px auto 0; }
  .cta__qr { position: relative; top: auto; right: auto; margin: 0 auto 18px; width: max-content; }
  .blog-card { flex-basis: 78vw; }
}


/* ---------- Blog pages ---------- */
.blogpage { padding: 150px 0 90px; min-height: 60vh; }
.blogpage__eyebrow { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--olive-med); margin-bottom: 14px; }
.blogpage__sub { margin-top: 18px; font-size: 17px; color: #5c5c5e; max-width: 460px; }
.blogpage__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 34px 26px;
  margin-top: clamp(36px, 4vw, 60px);
}
.blogpage__grid .blog-card { flex: none; }
.blog-card__excerpt { margin-top: 8px; font-size: 14px; line-height: 1.5; color: #5c5c5e; }
.blogpage__footer { background: var(--black); color: var(--white); padding: 34px 0; margin-top: 60px; }
.blogpage__footer .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.blogpage__footer img { height: 26px; width: auto; opacity: 0.95; }
.blogpage__footer p { font-size: 13px; color: rgba(255, 255, 255, 0.6); }
.post__article { width: min(760px, calc(100% - 48px)); margin-inline: auto; }
.post__back { display: inline-block; font-size: 14px; color: #5c5c5e; margin-bottom: 26px; }
.post__back:hover { color: var(--ink); }
.post__title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "wdth" 75;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -1px;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.02;
  margin: 14px 0 26px;
}
.post__cover { border-radius: 18px; overflow: hidden; aspect-ratio: 16/8; margin-bottom: 36px; }
.post__cover img { width: 100%; height: 100%; object-fit: cover; }
.post__body p { font-size: 17px; line-height: 1.65; color: #333336; margin-bottom: 20px; }
/* rich content authored in Studio */
.post__body h2,
.post__body h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; margin: 36px 0 14px; }
.post__body h2 { font-size: clamp(24px, 2.6vw, 32px); }
.post__body h3 { font-size: clamp(19px, 2vw, 24px); }
.post__body ul,
.post__body ol { margin: 0 0 20px; padding-left: 26px; }
.post__body li { font-size: 17px; line-height: 1.65; color: #333336; margin-bottom: 8px; }
.post__body blockquote {
  background: var(--lime-tint);
  padding: 20px 26px;
  border-radius: 18px;
  margin: 26px 0;
  font-size: 18px;
  line-height: 1.55;
}
.post__body blockquote p:last-child { margin-bottom: 0; }
.post__body img { display: block; width: 100%; border-radius: 16px; margin: 28px 0; }
.post__body a { text-decoration: underline; text-underline-offset: 3px; }
.post__body strong { font-weight: 600; }
.post__lede { font-size: 20px !important; font-weight: 500; color: var(--ink) !important; }
.post__morewrap { margin-top: 70px; }
.blogpage__grid--related { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }


/* ---------- Footer creator loop (text on the brand line) ---------- */
.text-loop { position: relative; width: 100%; overflow: hidden; }
.text-loop--loader {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.94;
}
.text-loop-svg { display: block; width: 100%; height: auto; }
.text-loop-text {
  user-select: none;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "wdth" 80;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 0.5px;
  fill: var(--ink);
}
.text-loop-measure { visibility: hidden; pointer-events: none; }


/* ---------- CTA illustration + store buttons ---------- */
.cta__illo-img { display: block; width: min(640px, 78%); margin: 0 auto; }
.cta__stores { display: none; gap: 12px; margin: 6px 0 22px; flex-wrap: wrap; justify-content: center; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  border-radius: 14px;
  padding: 10px 18px;
  line-height: 1.15;
  transition: transform 0.28s var(--ease-out), background-color 0.28s;
}
.store-btn:hover { transform: translateY(-2px); background: var(--olive-dark); }
.store-btn__glyph { font-size: 22px; }
.store-btn small { display: block; font-size: 10px; opacity: 0.7; }
.store-btn span:last-child { font-size: 15px; font-weight: 500; }
@media (max-width: 760px) {
  .cta__qr { display: none; }
  .cta__stores { display: flex; }
}


/* ---------- Blog listing: featured + chips (Flow-style) ---------- */
.blogpage__chips { display: flex; gap: 10px; margin-top: 28px; }
.blogpage__chips .tab { background: var(--white); cursor: default; }
.blogpage__chips .tab.is-active { background: var(--ink); color: var(--white); }
.blog-feat {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(20px, 3vw, 44px);
  background: var(--white);
  border-radius: 24px;
  padding: clamp(14px, 1.6vw, 22px);
  margin-top: clamp(28px, 3.5vw, 48px);
  transition: transform 0.5s var(--ease-out);
}
.blog-feat:hover { transform: translateY(-4px); }
.blog-feat figure { border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; }
.blog-feat img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-expo); }
.blog-feat:hover img { transform: scale(1.05); }
.blog-feat__body { display: flex; flex-direction: column; justify-content: center; padding-right: clamp(4px, 1.5vw, 24px); }
.blog-feat__chip {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: var(--lime);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 16px;
}
.blog-feat h2 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36;
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.5px;
}
.blog-feat__body > p { margin-top: 14px; font-size: 15px; line-height: 1.55; color: #5c5c5e; }
.blog-feat .blog-card__meta { margin-top: 14px; }
.blog-feat__cta { margin-top: 20px; font-weight: 600; font-size: 15px; }
@media (max-width: 860px) {
  .blog-feat { grid-template-columns: 1fr; }
}


/* ---------- Footer ribbons (WebGL cursor trails) ---------- */
.ribbons-wrap {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}
.ribbons-wrap canvas { position: absolute; inset: 0; width: 100%; height: 100%; }


/* ---------- 404 ---------- */
.page-404 { background: var(--lime); min-height: 100vh; min-height: 100svh; overflow: hidden; }
.p404__logo { position: fixed; top: 26px; left: 32px; z-index: 3; }
.p404__logo img { height: 34px; width: auto; }
.p404 {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 24px 60px;
}
.p404__line { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.p404__code {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 24px);
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "wdth" 75;
  font-weight: 600;
  font-size: clamp(120px, 26vw, 340px);
  line-height: 0.9;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.p404__zero {
  display: inline-block;
  width: clamp(90px, 19vw, 250px);
  height: clamp(120px, 26vw, 336px);
  border-radius: 999px;
  overflow: hidden;
  border: clamp(4px, 0.8vw, 10px) solid var(--ink);
  transition: transform 0.45s var(--ease-out);
  will-change: transform;
}
.p404__zero img { width: 100%; height: 100%; object-fit: cover; }
.p404__title {
  margin-top: clamp(22px, 4vh, 40px);
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}
.p404__sub { margin-top: 12px; font-size: 16px; color: var(--olive-med); max-width: 420px; position: relative; z-index: 1; }
.p404__cta { margin-top: 30px; position: relative; z-index: 1; }
.p404__blob { position: absolute; right: 8%; bottom: -3%; width: clamp(70px, 9vw, 130px); transform: rotate(-8deg); }

/* ---------- Legal ---------- */
.legal__wrap { width: min(760px, calc(100% - 48px)); margin-inline: auto; }
.legal__tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.legal__tabs .tab { background: var(--white); }
.legal__title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "wdth" 75;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -1px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  margin: 12px 0 34px;
}
.legal__body h2 { font-size: 20px; font-weight: 600; margin: 30px 0 10px; }


/* ---------- Blog hero carousel (Flow-style) ---------- */
.bhero { text-align: center; }
.bhero__title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "wdth" 75;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 1;
}
.bhero__track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: clamp(30px, 4vw, 54px) max(24px, calc((100vw - 900px) / 2)) 10px;
}
.bhero__track::-webkit-scrollbar { display: none; }
.bh-card {
  flex: 0 0 min(880px, 82vw);
  scroll-snap-align: center;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(16px, 2vw, 28px);
  border-radius: 26px;
  padding: clamp(18px, 2.2vw, 30px);
  min-height: clamp(300px, 36vw, 400px);
  text-align: left;
  transition: transform 0.5s var(--ease-out);
}
.bh-card:hover { transform: translateY(-4px); }
.bh-card--pink { background: #FFD3F2; }
.bh-card--lime { background: var(--lime-tint); }
.bh-card--mint { background: var(--mint); }
.bh-card__body { display: flex; flex-direction: column; padding: clamp(4px, 1vw, 12px); }
.bh-card__chips { display: flex; gap: 10px; }
/* labels follow the Four Audiences pill language: dark lead chip + white pills */
.bh-card__chips span {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 16px;
}
.bh-card__chips span:first-child { background: var(--ink); color: var(--white); }
.bh-card__title {
  margin: auto 0;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -1px;
}
.bh-card__meta { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(20, 20, 21, 0.72); }
.bh-card__meta img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.bh-card__media { border-radius: 16px; overflow: hidden; }
.bh-card__media img { width: 100%; height: 100%; object-fit: cover; }
.bhero__dots { display: flex; justify-content: center; gap: 10px; margin-top: 22px; }
.bhero__dots button { width: 84px; height: 4px; border-radius: 3px; background: var(--gray-light); transition: background-color 0.3s; }
.bhero__dots button.is-active { background: var(--lime); }
@media (max-width: 760px) {
  .bh-card { grid-template-columns: 1fr; min-height: 0; }
  .bh-card__media { aspect-ratio: 16/9; order: -1; }
  .bh-card__title { margin: 16px 0; }
  .bhero__dots button { width: 52px; }
}


/* ---------- Page transitions ---------- */
body { transition: opacity 0.55s ease, transform 0.6s var(--ease-expo), filter 0.6s ease; }
html.pt-enter body { opacity: 0; transform: translateY(12px); filter: blur(6px); }
html.reduced-motion body, html.reduced-motion.pt-enter body { opacity: 1; transform: none; filter: none; transition: none; }
.pt-curtain {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--ink);
  border-radius: clamp(36px, 7vw, 120px) clamp(36px, 7vw, 120px) 0 0;
  transform: translateY(102%);
  transition: transform 0.5s var(--ease-expo);
  pointer-events: none;
}
.pt-curtain.is-on { transform: translateY(0); border-radius: 0; transition: transform 0.5s var(--ease-expo), border-radius 0.4s ease 0.2s; }


/* CMS: audience card image (replaces the phone mockup when set) */
.aud-card__img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: 18px; }


/* CMS: agent card custom media (replaces the mock UI when set) */
.agent-card__art--media { padding: 0; overflow: hidden; }
.agent-card__art--media img,
.agent-card__art--media video { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
