/* ============================================================================
   ACS marketing site v2 — dark, cinematic, video-led.
   Hand-written on packages/tokens/tokens.css (loaded first). Dark-surface
   variables are scoped to body.mk-dark so the app's token defaults are untouched.
   Display: "Inter Tight" (300/400/500/600). Body: "Inter". No frameworks.
   ========================================================================== */

/* ---- Scoped surface tokens ------------------------------------------------ */
body.mk-dark {
  --mk-bg: #0f0f10;          /* page ground (measured from reference) */
  --mk-bg-2: #1e1e1e;        /* raised dark strip / FAQ ground */
  --mk-bg-3: #161617;        /* dark card */
  --mk-fg: #ffffff;
  --mk-fg-2: rgb(255 255 255 / .74);
  --mk-fg-3: rgb(255 255 255 / .55);
  --mk-line: rgb(255 255 255 / .12);
  --mk-line-2: rgb(255 255 255 / .22);
  --mk-white: #ffffff;       /* light section ground */
  --mk-white-2: #f4f4f5;
  --mk-ink: #0f0f10;         /* text on light */
  --mk-ink-2: #3f3f46;
  --mk-ink-3: #71717a;
  --mk-line-l: #e4e4e7;
  --cta: var(--brand-500);   /* single swap point for the filled button colour */
  --cta-hover: var(--brand-600);
  --cta-fg: #ffffff;
  --mk-display: "Inter Tight", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mk-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --nav-h: 64px;
}

/* ---- Base ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body.mk-dark {
  font-family: var(--mk-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--mk-fg);
  background: var(--mk-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--brand-400); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 100; background: #fff; color: #000; padding: 8px 14px; border-radius: 4px; }
.skip-link:focus { left: 8px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

h1, h2, h3, h4 { margin: 0 0 .4em; font-family: var(--mk-display); font-weight: 300; line-height: 1.05; letter-spacing: -0.03em; color: inherit; }
h1 { font-size: clamp(48px, 7vw, 100px); line-height: 1.0; letter-spacing: -0.04em; }
h2 { font-size: clamp(34px, 4vw, 56px); }
h3 { font-size: clamp(20px, 1.6vw, 24px); font-weight: 500; letter-spacing: -0.02em; }
h4 { font-size: 16px; font-weight: 500; letter-spacing: 0; }
h1 strong, h2 strong { font-weight: 500; }
.h-mid { font-size: clamp(40px, 5vw, 72px); }
.lead { font-size: clamp(17px, 1.3vw, 20px); font-weight: 300; line-height: 1.45; color: var(--mk-fg-2); }
.small { font-size: 13px; }
.muted { color: var(--mk-fg-3); }
.center { text-align: center; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 40px; } .mb-0 { margin-bottom: 0; }
.eyebrow { display: block; font-size: 14px; font-weight: 400; color: var(--mk-fg-3); margin-bottom: 18px; letter-spacing: 0; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 880px; }
@media (min-width: 900px) { .container { padding: 0 40px; } }

.section { padding: 72px 0; }
.section--tight { padding: 40px 0; }
.section--light { background: var(--mk-white); color: var(--mk-ink); }
.section--light .lead { color: var(--mk-ink-2); }
.section--light .muted, .section--light .eyebrow { color: var(--mk-ink-3); }
.section--raised { background: var(--mk-bg-2); }
.section-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }
.section-head h2 { margin-bottom: 18px; }
.section-head .lead { max-width: 640px; margin: 0 auto; }
.section-head--left .lead { margin-left: 0; }
@media (min-width: 900px) { .section { padding: 112px 0; } .section-head { margin-bottom: 56px; } }

/* ---- Buttons ------------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 44px; padding: 0 18px; border-radius: 4px; font-family: var(--mk-body); font-weight: 500; font-size: 15px; line-height: 1; border: 1px solid transparent; white-space: nowrap; transition: background .16s var(--ease), color .16s var(--ease), border-color .16s var(--ease), opacity .16s; }
.btn-primary { background: var(--cta); color: var(--cta-fg); }
.btn-primary:hover { background: var(--cta-hover); color: var(--cta-fg); }
.btn-white { background: #fff; color: #0f0f10; }
.btn-white:hover { background: #ececec; color: #0f0f10; }
.btn-ghost { background: transparent; color: #fff; border-color: rgb(255 255 255 / .35); }
.btn-ghost:hover { border-color: #fff; }
.btn-dark { background: #0f0f10; color: #fff; }
.btn-dark:hover { background: #2a2a2b; color: #fff; }
.section--light .btn-ghost { color: var(--mk-ink); border-color: #c9c9ce; }
.section--light .btn-ghost:hover { border-color: var(--mk-ink); }
.btn-lg { height: 48px; padding: 0 22px; font-size: 16px; }
.btn-sm { height: 36px; padding: 0 14px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }
.link-arrow { font-weight: 500; color: inherit; }
.link-arrow::after { content: " →"; }
.pill { display: inline-flex; align-items: center; gap: 8px; height: 34px; padding: 0 14px 0 12px; border-radius: 4px; background: rgb(15 15 16 / .55); border: 1px solid rgb(255 255 255 / .28); color: #fff; font-size: 13px; font-weight: 500; backdrop-filter: blur(6px); }
.pill:hover { background: rgb(15 15 16 / .8); }
.pill i { display: inline-block; width: 0; height: 0; border-style: solid; border-width: 5px 0 5px 8px; border-color: transparent transparent transparent #fff; }
.pill.is-playing i { width: 8px; height: 10px; border: 0; border-left: 3px solid #fff; border-right: 3px solid #fff; }

/* ---- Header / nav -------------------------------------------------------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; height: var(--nav-h); background: transparent; transition: background .2s var(--ease), border-color .2s; border-bottom: 1px solid transparent; }
.site-header.is-solid, .site-header.is-open { background: rgb(15 15 16 / .88); backdrop-filter: saturate(160%) blur(12px); border-bottom-color: var(--mk-line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 16px; }
.nav__logo img { height: 36px; width: auto; }
.nav__toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 8px; }
.nav__toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .16s var(--ease), opacity .16s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__panel { display: none; position: fixed; left: 0; right: 0; top: var(--nav-h); bottom: 0; background: var(--mk-bg); overflow-y: auto; padding-bottom: 32px; }
.nav__panel.is-open { display: block; }
.nav__menu { list-style: none; padding: 8px 20px 12px; }
.nav__menu > li { border-bottom: 1px solid var(--mk-line); }
.nav__menu > li:last-child { border-bottom: 0; }
.nav__link, .nav__sub-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 16px 0; font-size: 18px; font-weight: 400; color: #fff; text-align: left; }
.nav__sub-toggle .chev { width: 18px; height: 18px; transition: transform .16s var(--ease); }
.nav__sub-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
.nav__sub { display: none; list-style: none; padding: 0 0 12px 12px; }
.nav__sub.is-open { display: block; }
.nav__sub a { display: block; padding: 8px 0; color: var(--mk-fg-2); font-size: 15px; }
.nav__sub a strong { display: block; color: #fff; font-weight: 500; }
.nav__sub a span { color: var(--mk-fg-3); font-size: 13px; }
.nav__cta { display: flex; gap: 10px; padding: 12px 20px 20px; }
.nav__cta .btn { flex: 1; }
.nav__actions { display: none; }

@media (min-width: 1024px) {
  .nav__toggle { display: none; }
  .nav__panel { display: flex; position: static; background: transparent; padding: 0; overflow: visible; flex: 1; justify-content: flex-end; align-items: center; gap: 8px; }
  .nav__menu { display: flex; align-items: center; gap: 2px; padding: 0; margin-right: 12px; }
  .nav__menu > li { border: 0; position: relative; }
  .nav__link, .nav__sub-toggle { padding: 8px 12px; font-size: 14px; font-weight: 500; width: auto; gap: 4px; color: rgb(255 255 255 / .82); }
  .nav__link:hover, .nav__sub-toggle:hover, .nav__sub-toggle[aria-expanded="true"] { color: #fff; }
  .nav__sub-toggle .chev { width: 14px; height: 14px; }
  .nav__sub { position: absolute; top: calc(100% + 10px); left: 0; min-width: 280px; background: #18181a; border: 1px solid var(--mk-line); border-radius: 6px; box-shadow: 0 20px 50px rgb(0 0 0 / .5); padding: 8px; }
  .nav__sub--wide { min-width: 600px; display: none; grid-template-columns: 1fr 1fr; }
  .nav__sub--wide.is-open { display: grid; }
  .nav__sub a { padding: 10px 12px; border-radius: 4px; }
  .nav__sub a:hover { background: rgb(255 255 255 / .06); }
  .nav__cta { display: none; }
  .nav__actions { display: flex; align-items: center; gap: 10px; }
  .nav__actions .nav__login { padding: 8px 12px; font-weight: 500; color: rgb(255 255 255 / .82); font-size: 14px; }
  .nav__actions .nav__login:hover { color: #fff; }
  .nav__actions .btn { height: 40px; font-size: 14px; }
}

/* ---- Hero scene: scroll-driven video → reel + content collage ------------ */
/* Default (no JS / reduced motion): a normal video hero followed by a static
   collage. With JS the scene gets .is-live: the stage pins for ~2 viewports
   while the hero video shrinks into a phone "reel", the headline fades in and
   sample content cards fly in from the edges. Numbers are driven from JS via
   inline transforms; layout constants live here. */
.hero-scene { position: relative; background: var(--mk-bg); --reel-w: clamp(230px, 22vw, 330px); --reel-h: calc(var(--reel-w) * 16 / 9); --reel-top: 60vh; --reel-r: 26px; }
.hero-stage { position: relative; }
.hero-frame { position: relative; height: 100vh; height: 100svh; min-height: 560px; }
.hero-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vhero__copy { position: absolute; left: 0; right: 0; top: 0; height: 100vh; height: 100svh; min-height: 560px; display: flex; align-items: flex-end; z-index: 6; }
.vhero__copy .container { width: 100%; }
.vhero__copy .container { padding-top: 120px; padding-bottom: 72px; }
@media (min-width: 900px) { .vhero__copy .container { padding-bottom: 96px; } }
.reel-ui { display: none; }
.collage { position: relative; display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 24px; padding: 88px 20px 40px; }
.collage__head { flex: 0 0 100%; text-align: center; margin: 0 0 40px; }
.collage__title { font-family: var(--mk-display); font-weight: 300; font-size: clamp(44px, 7vw, 100px); line-height: 1.02; letter-spacing: -.025em; color: #fff; margin: 0; }
.collage__sub { max-width: 46ch; margin: 18px auto 0; font-size: 15px; line-height: 1.5; color: var(--mk-fg-2); }
@media (min-width: 900px) { .collage__sub { font-size: 17px; } }
@media (max-width: 639px) { .collage__title br { display: none; } }

/* Cards (shared, static + live) */
.ccard { position: relative; width: 250px; margin: 0; background: #fff; color: #111114; border-radius: 14px; overflow: hidden; box-shadow: 0 30px 80px rgb(0 0 0 / .6), 0 2px 6px rgb(0 0 0 / .4); font-family: var(--mk-body); font-size: 11.5px; line-height: 1.35; }
.ccard img, .ccard video { display: block; width: 100%; height: auto; }
.ccard__head { display: flex; align-items: center; gap: 8px; padding: 10px 12px; }
.ccard__head b { display: block; font-size: 12px; font-weight: 600; }
.ccard__head span:not(.ccard__avatar) { display: block; font-size: 10.5px; color: #6b6b74; }
.ccard__avatar { width: 28px; height: 28px; border-radius: 50%; flex: 0 0 auto; background: linear-gradient(135deg, #7ad, #36c); }
.ccard__avatar--green { background: linear-gradient(135deg, #a3e635, #15803d); }
.ccard__avatar--rose { background: linear-gradient(135deg, #f9a8d4, #9d174d); }
.ccard__avatar--blue { background: linear-gradient(135deg, #7dd3fc, #1d4ed8); }
.ccard__avatar--indigo { background: linear-gradient(135deg, #a5b4fc, #312e81); }
.ccard__text { margin: 0 12px 10px; }
.ccard__text b { font-weight: 600; color: #444; }
.ccard__media { position: relative; }
.ccard__media img { aspect-ratio: 4 / 5; object-fit: cover; }
.ccard__quote { position: absolute; left: 12px; right: 12px; top: 18px; text-align: center; color: #fff; font-family: "Inter Tight", var(--mk-body); font-weight: 400; font-size: 17px; line-height: 1.15; letter-spacing: -.01em; text-shadow: 0 2px 14px rgb(0 0 0 / .55); }
.ccard__quote--top { top: 16px; }
.ccard__quote--bottom { top: auto; bottom: 18px; font-size: 14px; }
.ccard__foot { padding: 10px 12px; }
.ccard__foot p { margin: 6px 0 0; }
.ccard__icons { color: #333; letter-spacing: 6px; }
.ccard--reel { width: 200px; background: #000; }
.ccard--reel video { aspect-ratio: 9 / 16; object-fit: cover; }
.ccard__reel-side { position: absolute; right: 8px; bottom: 44px; display: flex; flex-direction: column; gap: 10px; color: #fff; text-align: center; font-size: 15px; text-shadow: 0 1px 6px rgb(0 0 0 / .6); }
.ccard__reel-side small { display: block; font-size: 10px; }
.ccard__reel-cap { position: absolute; left: 10px; right: 46px; bottom: 12px; color: #fff; text-shadow: 0 1px 6px rgb(0 0 0 / .7); font-size: 11px; }
.ccard--sm { width: 210px; }
.ccard--pod { width: 240px; background: #16161a; color: #fff; }
.ccard__cover { aspect-ratio: 16 / 10; object-fit: cover; }
.ccard__pod-body { padding: 12px 14px 14px; }
.ccard__pod-kicker { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: rgb(255 255 255 / .55); margin-bottom: 4px; }
.ccard__pod-body b { display: block; font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.ccard__pod-bar { height: 3px; border-radius: 2px; background: rgb(255 255 255 / .18); overflow: hidden; }
.ccard__pod-bar i { display: block; width: 38%; height: 100%; background: #fff; }
.ccard__pod-ctl { display: flex; justify-content: center; align-items: center; gap: 22px; margin-top: 12px; font-size: 12px; color: rgb(255 255 255 / .8); }
.ccard__pod-play { width: 30px; height: 30px; border-radius: 50%; background: #fff; color: #111; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; padding-left: 2px; }
.ccard--mail { width: 400px; background: #1b1b1f; color: #f2f2f2; font-size: 12.5px; }
.ccard__mail-bar { display: flex; align-items: center; gap: 6px; padding: 10px 12px; border-bottom: 1px solid rgb(255 255 255 / .08); }
.ccard__mail-bar i { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.ccard__mail-bar i:nth-child(2) { background: #febc2e; }
.ccard__mail-bar i:nth-child(3) { background: #28c840; }
.ccard__mail-bar span { margin-left: auto; font-size: 11px; color: rgb(255 255 255 / .55); }
.ccard__mail-head { display: flex; align-items: center; gap: 10px; padding: 12px 16px 6px; }
.ccard__mail-head b { display: block; font-size: 13px; }
.ccard__mail-head span:not(.ccard__avatar) { font-size: 11px; color: rgb(255 255 255 / .55); }
.ccard__mail-body { padding: 4px 16px 10px; }
.ccard__mail-body p { margin: 0 0 8px; }
.ccard__mail-img { aspect-ratio: 16 / 7; object-fit: cover; }

/* Video-in-card variants (collage) */
.ccard__media video { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.ccard__media--wide video { aspect-ratio: 16 / 10; }
.ccard--reel .ccard__reel-av { width: 26px; height: 26px; border-radius: 50%; background: #fff url('/acs-assets/images/logo/favicon.png') center / 70% no-repeat; margin: 0 auto 4px; box-shadow: 0 0 0 2px rgb(255 255 255 / .5); }
.ccard--tiktok .ccard__reel-side { bottom: 58px; gap: 12px; }
.ccard--tiktok .ccard__reel-cap { right: 52px; bottom: 12px; }
.ccard__reel-cap em { font-style: normal; color: rgb(255 255 255 / .8); }
.ccard__reel-music { display: block; margin-top: 4px; font-size: 10px; color: rgb(255 255 255 / .8); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ccard__fb-foot { display: flex; justify-content: space-between; padding: 8px 12px; font-size: 10.5px; color: #6b6b74; border-top: 1px solid #ececef; }
.ccard--li { width: 260px; }
.ccard--li .ccard__text { font-size: 11.5px; }
.ccard--li .ccard__text b { font-weight: 400; color: #6b6b74; }
.ccard__li-foot { display: flex; justify-content: space-around; padding: 8px 6px; font-size: 10.5px; color: #4b4b55; border-top: 1px solid #ececef; }
.ccard--pod video.ccard__cover { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

/* Short landscape viewports (phones rotated): shrink hero copy so it fits above the fold */
@media (max-height: 520px) {
  .vhero__copy .vhero__trust { display: none; }
  .vhero__copy h1 { font-size: clamp(28px, 9vh, 44px); margin-bottom: 8px; }
  .vhero__copy .lead { font-size: 13px; line-height: 1.4; margin-bottom: 12px; max-width: 520px; }
  .vhero__copy .container { padding-bottom: 18px; }
  .vhero__copy .btn-lg { height: 40px; font-size: 14px; }
}

/* Live (JS) mode */
.hero-scene.is-live { height: 300vh; height: 300svh; }
.is-live .hero-stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.is-live .hero-rot { position: absolute; inset: 0; z-index: 5; pointer-events: none; will-change: transform; }
.is-live .hero-frame { position: absolute; inset: 0; height: auto; min-height: 0; transform-origin: 0 0; will-change: transform, clip-path; }
.is-live .hero-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgb(255 255 255 / .08); opacity: var(--m, 0); pointer-events: none; }
.is-live .vhero__copy { top: auto; bottom: 0; height: auto; min-height: 0; display: block; will-change: opacity, transform; }
.is-live .reel-ui { display: block; position: absolute; left: calc(50% - var(--reel-w) / 2); top: var(--reel-top); width: var(--reel-w); height: var(--reel-h); opacity: 0; color: #fff; font-family: var(--mk-body); text-shadow: 0 1px 8px rgb(0 0 0 / .6); }
.reel-ui__top { position: absolute; left: 12px; top: 12px; right: 12px; display: flex; align-items: center; gap: 8px; font-size: 12px; }
.reel-ui__top b { font-weight: 600; }
.reel-ui__top span:last-child { color: rgb(255 255 255 / .75); }
.reel-ui__avatar { width: 30px; height: 30px; border-radius: 50%; background: #fff url('/acs-assets/images/logo/favicon.png') center / 70% no-repeat; box-shadow: 0 0 0 2px rgb(255 255 255 / .35); }
.reel-ui__side { position: absolute; right: 10px; bottom: 60px; display: flex; flex-direction: column; gap: 12px; text-align: center; font-size: 17px; }
.reel-ui__side small { display: block; font-size: 10.5px; }
.reel-ui__cap { position: absolute; left: 12px; right: 56px; bottom: 16px; font-size: 12.5px; }
.reel-ui__cap em { font-style: normal; color: rgb(255 255 255 / .7); }
.is-live .collage { position: absolute; inset: 0; z-index: 2; display: block; padding: 0; overflow: visible; pointer-events: none; }
.is-live .collage__head { position: absolute; left: 50%; top: 42%; width: 100%; margin: 0; padding: 0 20px; transform: translate(-50%, -50%); opacity: 0; will-change: opacity, transform; }
.is-live .collage__sub { text-shadow: 0 1px 12px rgb(0 0 0 / .8); }
.is-live .ccard { position: absolute; z-index: 3; opacity: 0; will-change: transform, opacity; }
/* Final resting spots (desktop) — clockwise from top-left */
.is-live .ccard:nth-of-type(1) { left: 7%; top: -3%; }
.is-live .ccard:nth-of-type(2) { left: 0.5%; top: 21%; width: 232px; }
.is-live .ccard:nth-of-type(3) { right: 12%; top: -6%; }
.is-live .ccard:nth-of-type(4) { right: 1%; top: 30%; }
.is-live .ccard:nth-of-type(5) { left: 7%; bottom: -10%; }
.is-live .ccard:nth-of-type(6) { left: 22%; bottom: -6%; }
.is-live .ccard:nth-of-type(7) { right: -3%; bottom: -12%; }
@media (max-width: 1199px) {
  .is-live .ccard:nth-of-type(5), .is-live .ccard:nth-of-type(6) { display: none; }
  .is-live .ccard:nth-of-type(2) { left: -2%; top: 30%; }
  .is-live .ccard:nth-of-type(4) { right: -3%; }
  .is-live .ccard:nth-of-type(7) { right: -8%; bottom: -14%; width: 340px; }
}
@media (max-width: 767px) {
  /* Portrait phones: smaller phone reel lower on the stage, headline in the clear
     band above it, four small cards pinned to the corners. */
  .hero-scene { --reel-w: 46vw; --reel-top: 60vh; --reel-r: 18px; }
  .hero-scene.is-live { height: 260vh; height: 260svh; }
  .is-live .collage__head { top: 40%; padding: 0 16px; }
  .is-live .collage__title { font-size: clamp(34px, 9.6vw, 40px); }
  .is-live .collage__sub { font-size: 12.5px; max-width: 32ch; margin-top: 10px; }
  .is-live .ccard { transform-origin: center; font-size: 10px; border-radius: 10px; }
  .is-live .ccard .ccard__head { padding: 7px 8px; gap: 6px; }
  .is-live .ccard .ccard__head b { font-size: 10.5px; }
  .is-live .ccard .ccard__head span:not(.ccard__avatar) { font-size: 9px; }
  .is-live .ccard .ccard__avatar { width: 20px; height: 20px; }
  .is-live .ccard .ccard__text { margin: 0 8px 7px; }
  .is-live .ccard .ccard__quote { font-size: 12px; left: 8px; right: 8px; }
  .is-live .ccard .ccard__foot, .is-live .ccard .ccard__fb-foot, .is-live .ccard .ccard__li-foot { padding: 6px 8px; font-size: 9px; }
  .is-live .ccard .ccard__reel-side { right: 5px; bottom: 30px; gap: 6px; font-size: 11px; }
  .is-live .ccard .ccard__reel-side small { font-size: 8px; }
  .is-live .ccard .ccard__reel-cap { left: 6px; right: 28px; bottom: 6px; font-size: 8.5px; }
  .is-live .ccard .ccard__reel-music { display: none; }
  .is-live .ccard:nth-of-type(1) { left: 3%; top: 9%; width: 24vw; }
  .is-live .ccard:nth-of-type(2) { display: block; left: -6%; top: auto; bottom: 5%; width: 34vw; }
  .is-live .ccard:nth-of-type(3) { right: 3%; top: 9%; width: 27vw; }
  .is-live .ccard:nth-of-type(4) { right: -6%; top: auto; bottom: 3%; width: 40vw; }
  .is-live .ccard:nth-of-type(5), .is-live .ccard:nth-of-type(6), .is-live .ccard:nth-of-type(7) { display: none; }
}
@media (max-height: 520px) {
  /* Phones in landscape: very short stage — tiny reel, compact headline, cards hugging the corners. */
  .hero-scene { --reel-w: 36vh; --reel-top: 52vh; --reel-r: 14px; }
  .hero-scene.is-live { height: 260vh; height: 260svh; }
  .is-live .collage__head { top: 44%; }
  .is-live .collage__title { font-size: clamp(28px, 9vh, 36px); }
  .is-live .collage__sub { font-size: 11.5px; max-width: 44ch; margin-top: 8px; }
  .is-live .ccard { font-size: 9.5px; border-radius: 10px; }
  .is-live .ccard .ccard__reel-music { display: none; }
  .is-live .ccard:nth-of-type(1) { display: block; left: 2%; top: -8%; width: 21vh; }
  .is-live .ccard:nth-of-type(2) { display: block; left: 12%; top: auto; bottom: -34%; width: 34vh; }
  .is-live .ccard:nth-of-type(3) { display: block; right: 2%; top: -14%; width: 26vh; }
  .is-live .ccard:nth-of-type(4) { display: block; right: 10%; top: auto; bottom: -22%; width: 40vh; }
  .is-live .ccard:nth-of-type(5), .is-live .ccard:nth-of-type(6), .is-live .ccard:nth-of-type(7) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scene.is-live { height: auto; }
}

/* ---- Video media blocks -------------------------------------------------- */
.media { position: relative; overflow: hidden; background-color: #0f0f10; background-size: cover; background-position: center; }
.media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media__shade { position: absolute; inset: 0; pointer-events: none; }
.media__shade--left { background: linear-gradient(90deg, rgb(15 15 16 / .82) 0%, rgb(15 15 16 / .55) 40%, rgb(15 15 16 / .15) 75%, rgb(15 15 16 / 0) 100%), linear-gradient(0deg, rgb(15 15 16 / .85) 0%, rgb(15 15 16 / 0) 35%); }
.media__shade--bottom { background: linear-gradient(0deg, rgb(15 15 16 / .85) 0%, rgb(15 15 16 / .35) 45%, rgb(15 15 16 / .05) 100%); }
.media__shade--dim { background: rgb(15 15 16 / .45); }
@media (prefers-reduced-motion: reduce) {
  .media video { display: none; }
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* ---- Hero (full-bleed video) --------------------------------------------- */
.vhero { min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; }
.vhero .container { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 72px; width: 100%; }
.vhero__trust { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 26px; }
.vhero__trust i { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-400); box-shadow: 0 0 0 4px rgb(89 176 255 / .3); }
.vhero h1 { max-width: 12ch; margin-bottom: 26px; }
.vhero__copy h1 { max-width: 14ch; margin-bottom: 26px; }
.vhero__tag { display: block; margin-top: .3em; font-size: .38em; font-weight: 400; letter-spacing: -0.02em; line-height: 1.15; color: var(--brand-300); }
.vhero .lead, .vhero__copy .lead { max-width: 560px; margin-bottom: 30px; color: #fff; }
@media (min-width: 900px) { .vhero .container { padding-bottom: 96px; } .vhero h1, .vhero__copy h1 { margin-bottom: 30px; } }
.vhero--short { min-height: 78vh; }
.vhero--short h1 { font-size: clamp(40px, 5.2vw, 76px); max-width: 16ch; }
.vhero--short .crumb { color: rgb(255 255 255 / .7); }
.spacer { height: 18vh; min-height: 90px; background: var(--mk-bg); }
@media (min-width: 900px) { .spacer { height: 30vh; } }

/* ---- Pillars row --------------------------------------------------------- */
.rail { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x proximity; scroll-padding: 0 20px; padding: 4px 20px 22px; margin: 0 -20px; scrollbar-width: thin; scrollbar-color: rgb(255 255 255 / .25) transparent; -webkit-overflow-scrolling: touch; }
.rail > * { flex: 0 0 min(78vw, 300px); scroll-snap-align: start; }
@media (min-width: 900px) { .rail { padding: 4px 40px 24px; margin: 0 -40px; gap: 16px; scroll-padding: 0 40px; } .rail > * { flex-basis: 300px; } }
@media (min-width: 1280px) { .rail { margin: 0 calc((100vw - 1280px) / -2 - 40px); padding-left: calc((100vw - 1280px) / 2 + 40px); padding-right: calc((100vw - 1280px) / 2 + 40px); scroll-padding: 0 calc((100vw - 1280px) / 2 + 40px); } }
.section--light .rail { scrollbar-color: rgb(0 0 0 / .25) transparent; }
.pcard { display: block; color: inherit; }
.pcard__thumb { position: relative; aspect-ratio: 5 / 4; border-radius: 10px; overflow: hidden; background: #e9e9ee; margin-bottom: 18px; }
.pcard__thumb img { position: absolute; top: 0; left: 0; width: 220%; max-width: none; height: auto; }
.pcard__thumb--article img { width: 260%; left: -128%; top: -3%; }
.pcard__thumb--social img { width: 300%; left: -214%; top: -80%; }
.pcard__thumb--video img { width: 220%; left: -70%; top: -6%; }
.pcard__thumb--podcast img { width: 220%; left: -39%; top: -42%; }
.pcard__thumb--images img { width: 240%; left: -114%; top: -100%; }
.pcard__thumb--leads img { width: 240%; left: -100%; top: -32%; }
.pcard__thumb--automation img { width: 220%; left: -30%; top: -22%; }
.pcard__thumb--calendar img { width: 200%; left: -30%; top: -8%; }
.pcard__thumb--home img { width: 190%; left: -32%; top: -4%; }
.pcard h3 { font-size: 20px; margin-bottom: 8px; font-weight: 500; }
.pcard p { font-size: 14px; line-height: 1.5; color: var(--mk-fg-2); margin: 0; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.pcard p strong { color: #fff; font-weight: 600; }
.pcard:hover h3 { text-decoration: underline; text-underline-offset: 4px; }
.pcard__badge { display: inline-block; font-size: 11px; font-weight: 500; padding: 3px 8px; border-radius: 4px; background: rgb(255 255 255 / .1); color: var(--mk-fg-2); margin-left: 8px; vertical-align: middle; }
.strip { background: var(--mk-bg-2); border-radius: 8px; padding: 32px 24px; text-align: center; margin-top: 24px; }
.strip h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 400; margin-bottom: 8px; }
.strip p { color: var(--mk-fg-2); font-size: 14px; max-width: 620px; margin: 0 auto 20px; }
@media (min-width: 900px) { .strip { padding: 44px 40px; } }

/* ---- Full-bleed statement blocks (DFY, finale, campaign) ---------------- */
.stmt { min-height: 72vh; display: flex; align-items: flex-end; }
.stmt .container { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 64px; }
.stmt h2 { max-width: 14ch; margin-bottom: 16px; }
.stmt p { max-width: 380px; font-size: 15px; color: #fff; margin-bottom: 20px; }
.finale { min-height: 88vh; align-items: center; }
.finale h2 { font-size: clamp(44px, 6.4vw, 92px); letter-spacing: -0.04em; max-width: 12ch; margin-bottom: 30px; }
@media (min-width: 900px) { .stmt .container { padding-bottom: 88px; } }

.campaign { position: relative; background: var(--mk-bg); overflow: hidden; }
.campaign .media { position: absolute; left: 0; right: 0; bottom: 0; height: 62%; }
.campaign .media::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, var(--mk-bg) 0%, rgb(15 15 16 / .55) 45%, rgb(15 15 16 / .35) 100%); }
.campaign .container { position: relative; z-index: 2; padding-top: 88px; padding-bottom: 34vh; }
.campaign__grid { display: grid; gap: 40px; align-items: center; }
.campaign h2 { margin-bottom: 18px; }
.campaign p { color: var(--mk-fg-2); font-size: 15px; max-width: 460px; }
@media (min-width: 900px) { .campaign__grid { grid-template-columns: 1fr 1.15fr; gap: 64px; } .campaign .container { padding-top: 120px; padding-bottom: 46vh; } }
.brief { background: #fff; color: var(--mk-ink); border-radius: 8px; padding: 14px; display: grid; gap: 14px; box-shadow: 0 30px 80px rgb(0 0 0 / .5); }
.brief__img { position: relative; overflow: hidden; border-radius: 6px; aspect-ratio: 16 / 9; background: #eee; }
.brief__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 30% 20%; }
.brief__eyebrow { font-size: 11px; color: var(--mk-ink-3); margin-bottom: 4px; }
.brief h3 { font-size: 15px; font-weight: 600; margin: 0 0 6px; letter-spacing: 0; }
.brief > div > p { font-size: 12px; color: var(--mk-ink-2); line-height: 1.45; margin: 0 0 12px; }
.brief dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; font-size: 12px; }
.brief dt { color: var(--mk-ink-3); }
.brief dd { margin: 0; color: var(--mk-ink); }
@media (min-width: 640px) { .brief { grid-template-columns: 150px 1fr; padding: 16px; } .brief__img { aspect-ratio: 3 / 4; } .brief__img img { inset: auto; height: auto; width: 190%; max-width: none; left: -30%; top: -12%; object-fit: fill; } }

/* ---- Testimonials (light) ------------------------------------------------ */
.filter-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 0 0 30px; }
.filter-chip { height: 38px; padding: 0 16px; border-radius: 4px; border: 1px solid #d4d4d8; background: #fff; font-size: 13px; font-weight: 500; color: var(--mk-ink-2); }
.filter-chip[aria-pressed="true"] { background: #0f0f10; color: #fff; border-color: #0f0f10; }
.filter-chip:hover { border-color: #0f0f10; }
.tcard { border-radius: 10px; padding: 22px 22px 24px; color: #fff; display: flex; flex-direction: column; min-height: 240px; position: relative; }
.tcard[hidden] { display: none; }
.tcard--purple { background: linear-gradient(160deg, #6a1e9a 0%, #3b1a6e 100%); }
.tcard--blue { background: linear-gradient(160deg, #1f5fd6 0%, #123f9c 100%); }
.tcard--slate { background: linear-gradient(160deg, #4b5566 0%, #2a3140 100%); }
.tcard--orange { background: linear-gradient(160deg, #e0762a 0%, #a8460f 100%); }
.tcard--indigo { background: linear-gradient(160deg, #3d2ac9 0%, #241a7a 100%); }
.tcard--teal { background: linear-gradient(160deg, #0f7b74 0%, #07423f 100%); }
.tcard--rose { background: linear-gradient(160deg, #c02454 0%, #7a1136 100%); }
.tcard__who { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; padding-right: 96px; }
.tcard__who img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.tcard__who strong { display: block; font-size: 15px; font-weight: 600; }
.tcard__who span { font-size: 12px; opacity: .8; }
/* Customers without a photo get an initials monogram in the same 42px slot. */
.tcard__mono { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; letter-spacing: .02em; opacity: 1; background: rgb(255 255 255 / .18); border: 1px solid rgb(255 255 255 / .22); }
.tcard__co { font-size: 12px; opacity: .85; color: inherit; text-decoration: underline; text-decoration-color: rgb(255 255 255 / .4); text-underline-offset: 2px; }
.tcard__co:hover { opacity: 1; text-decoration-color: rgb(255 255 255 / .9); }
.tcard__tag { position: absolute; top: 16px; right: 16px; font-size: 11px; font-weight: 500; padding: 4px 8px; border-radius: 4px; background: rgb(255 255 255 / .18); }
.stars { display: inline-flex; gap: 2px; margin-bottom: 12px; color: #ffcf33; font-size: 15px; letter-spacing: 1px; }
.tcard blockquote { margin: 0; font-size: 15px; line-height: 1.45; font-weight: 500; }
.tcard--fact { justify-content: flex-end; }
.tcard--fact .tcard__num { font-family: var(--mk-display); font-size: 56px; font-weight: 300; line-height: 1; letter-spacing: -0.03em; margin-bottom: 8px; }
/* Word-ish tokens ("Weekly", "1/VIN") would overflow the card at display size. */
.tcard--fact .tcard__num--word { font-size: 34px; letter-spacing: -0.02em; margin-bottom: 10px; }
.tcard--fact strong { display: block; font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.tcard--fact p { margin: 0; font-size: 13px; opacity: .85; }
.testimonials-empty { text-align: center; color: var(--mk-ink-3); font-size: 14px; padding: 8px 0 0; }
.testimonials-empty[hidden] { display: none; }

/* ---- Blue band ("newsroom") --------------------------------------------- */
.band { position: relative; overflow: hidden; background: linear-gradient(120deg, #0b3a9c 0%, #1a70f2 55%, #3d9bff 100%); color: #fff; }
.band .container { display: grid; gap: 40px; padding-top: 72px; padding-bottom: 0; }
.band .eyebrow { color: rgb(255 255 255 / .8); }
.band h2 { margin-bottom: 18px; font-size: clamp(30px, 3.4vw, 46px); }
.band p { color: rgb(255 255 255 / .9); font-size: 15px; max-width: 480px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 30px; border-top: 1px solid rgb(255 255 255 / .25); }
.stats div { padding: 22px 18px 24px 0; border-bottom: 1px solid rgb(255 255 255 / .25); }
.stats div:nth-child(odd) { border-right: 1px solid rgb(255 255 255 / .25); }
.stats div:nth-child(even) { padding-left: 18px; }
.stats strong { display: block; font-family: var(--mk-display); font-size: clamp(38px, 4vw, 52px); font-weight: 300; line-height: 1; letter-spacing: -0.03em; margin-bottom: 8px; }
.stats span { display: block; font-size: 14px; font-weight: 500; }
.stats small { display: block; font-size: 12px; opacity: .8; margin-top: 4px; }
.band__shot { align-self: end; }
.band__shot .frame { border-radius: 10px 10px 0 0; box-shadow: 0 30px 80px rgb(0 0 0 / .45); }
@media (min-width: 900px) {
  .band .container { grid-template-columns: 1fr 1.1fr; gap: 56px; padding-top: 104px; align-items: end; }
  .band__text { padding-bottom: 96px; }
  .band__shot { margin-right: -22%; }
  .band__shot .frame__screen { aspect-ratio: 16 / 11; }
}
.frame { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid rgb(0 0 0 / .08); }
.frame__screen { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: #f4f4f5; }
.frame__screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top left; }
.frame--tall .frame__screen { aspect-ratio: 4 / 3; }
.frame--zoom .frame__screen img { width: 140%; max-width: none; height: auto; inset: 0 auto auto -26%; }
.frame--zoom-tl .frame__screen img { width: 150%; max-width: none; height: auto; }
.frame--zoom-side .frame__screen img { width: 220%; max-width: none; height: auto; }
.frame--dark { background: #1c1c1e; border-color: rgb(255 255 255 / .12); box-shadow: 0 30px 80px rgb(0 0 0 / .55); }
.frame__bar { display: flex; align-items: center; gap: 6px; height: 34px; padding: 0 12px; background: #f1f1f3; border-bottom: 1px solid rgb(0 0 0 / .06); }
.frame--dark .frame__bar { background: #262628; border-bottom-color: rgb(255 255 255 / .08); }
.frame__bar i { width: 10px; height: 10px; border-radius: 50%; background: #d4d4d8; }
.frame__bar i:nth-child(1) { background: #ff5f57; } .frame__bar i:nth-child(2) { background: #febc2e; } .frame__bar i:nth-child(3) { background: #28c840; }
.frame__bar span { margin-left: 10px; flex: 1; height: 18px; border-radius: 4px; background: #fff; font-size: 10px; line-height: 18px; color: #8a8a90; padding: 0 8px; overflow: hidden; white-space: nowrap; }
.frame--dark .frame__bar span { background: #1c1c1e; color: #9a9aa2; }
.device { background: #17171a; border-radius: 22px; padding: 10px; box-shadow: 0 30px 80px rgb(0 0 0 / .35), inset 0 0 0 1px rgb(255 255 255 / .06); }
.device .frame { border-radius: 14px; border: 0; }
.device .frame__screen { aspect-ratio: 4 / 3; }

/* ---- Accordion ("Ready in 10 minutes") ---------------------------------- */
.ready { display: grid; gap: 40px; align-items: center; }
.ready h2 { margin-bottom: 14px; }
.ready .lead { font-size: 15px; margin-bottom: 26px; }
@media (min-width: 900px) { .ready { grid-template-columns: 1fr 1.05fr; gap: 72px; } }
.acc { border-top: 1px solid var(--mk-line-l); }
.acc details { border-bottom: 1px solid var(--mk-line-l); }
.acc summary { list-style: none; cursor: pointer; padding: 18px 40px 18px 0; font-weight: 600; font-size: 15px; position: relative; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::before, .acc summary::after { content: ""; position: absolute; right: 8px; top: 50%; width: 14px; height: 2px; background: currentColor; transform: translateY(-50%); transition: transform .16s var(--ease); }
.acc summary::after { transform: translateY(-50%) rotate(90deg); }
.acc details[open] summary::after { transform: translateY(-50%) rotate(0); }
.acc details p { color: var(--mk-ink-2); font-size: 14px; padding: 0 40px 18px 0; margin: 0; }
.acc--dark { border-color: var(--mk-line); }
.acc--dark details { border-color: var(--mk-line); }
.acc--dark details p { color: var(--mk-fg-2); }
.acc--dark summary { font-weight: 500; }

/* ---- Comparison table (light) ------------------------------------------ */
.compare-head { max-width: 640px; margin-bottom: 40px; }
.compare-head h2 { margin-bottom: 14px; }
.compare-head p { font-size: 15px; color: var(--mk-ink-2); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.tbl { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 760px; font-size: 14px; }
.tbl th, .tbl td { padding: 16px 16px; text-align: left; border-bottom: 1px solid var(--mk-line-l); vertical-align: middle; }
.tbl thead th { font-weight: 600; font-size: 14px; color: var(--mk-ink); border-bottom: 1px solid var(--mk-line-l); }
.tbl td:first-child { font-weight: 600; color: var(--mk-ink); }
.tbl td { color: var(--mk-ink-2); }
.tbl .hl { background: #f4f4f5; color: var(--mk-ink); font-weight: 600; }
.tbl thead th.hl { background: #0f0f10; color: #fff; padding-top: 22px; padding-bottom: 22px; border-radius: 6px 6px 0 0; }
.tbl thead th.hl small { display: block; font-weight: 400; color: rgb(255 255 255 / .7); font-size: 12px; margin-top: 2px; }
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl tbody tr:last-child td.hl { border-radius: 0 0 6px 6px; }
.tbl .ok { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: #16a34a; color: #fff; }
.tbl .ok svg { width: 12px; height: 12px; }
.compare-foot { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 12px; font-size: 13px; color: var(--mk-ink-2); }
.compare-foot span::before { content: "✓ "; }
/* dark table variant (pricing credits) */
.tbl--dark { min-width: 0; }
.tbl--dark th, .tbl--dark td { border-color: var(--mk-line); }
.tbl--dark thead th { color: var(--mk-fg-3); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; font-weight: 500; }
.tbl--dark td { color: var(--mk-fg-2); }
.tbl--dark td:first-child { color: #fff; font-weight: 400; }
.tbl--dark td:last-child { color: #fff; font-weight: 500; white-space: nowrap; }

/* ---- Pricing ------------------------------------------------------------- */
.page-hero { padding: calc(var(--nav-h) + 56px) 0 40px; }
.page-hero h1 { font-size: clamp(40px, 5.6vw, 76px); margin-bottom: 18px; }
.page-hero .lead { max-width: 660px; }
.page-hero--center { text-align: center; }
.page-hero--center .lead, .page-hero--center .btn-row { margin-left: auto; margin-right: auto; }
.crumb { font-size: 13px; color: var(--mk-fg-3); margin-bottom: 18px; }
.crumb a:hover { color: #fff; }
@media (min-width: 900px) { .page-hero { padding-top: calc(var(--nav-h) + 88px); padding-bottom: 56px; } }
.seg { display: inline-flex; padding: 3px; border: 1px solid var(--mk-line-2); border-radius: 4px; gap: 2px; background: rgb(255 255 255 / .04); }
.seg button { height: 38px; padding: 0 18px; border-radius: 3px; font-weight: 500; font-size: 14px; color: var(--mk-fg-2); }
.seg button[aria-pressed="true"] { background: #fff; color: #0f0f10; }
.plans { display: grid; gap: 16px; }
.plans[hidden] { display: none; }
@media (min-width: 900px) { .plans { grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; } }
.plan { position: relative; background: #fff; color: var(--mk-ink); border: 1px solid #fff; border-radius: 8px; padding: 26px 26px 24px; display: flex; flex-direction: column; }
.plan--popular { border-color: var(--cta); box-shadow: 0 0 0 1px var(--cta), 0 30px 60px rgb(0 0 0 / .4); }
.plan__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--cta); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 5px 10px; border-radius: 4px; white-space: nowrap; }
.plan h3 { font-size: 20px; margin-bottom: 4px; font-weight: 500; }
.plan__tag { color: var(--mk-ink-3); font-size: 14px; margin-bottom: 16px; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 18px; }
.plan__price .from { font-size: 13px; color: var(--mk-ink-3); }
.plan__price .amt { font-family: var(--mk-display); font-size: 44px; line-height: 1; letter-spacing: -0.03em; font-weight: 400; }
.plan__price .per { color: var(--mk-ink-3); font-size: 14px; }
.plan ul { list-style: none; margin: 0 0 22px; flex: 1; }
.plan li { position: relative; padding-left: 22px; font-size: 14px; color: var(--mk-ink-2); margin-bottom: 8px; }
.plan li::before { content: ""; position: absolute; left: 3px; top: 4px; width: 5px; height: 9px; border: solid var(--mk-ink); border-width: 0 1.5px 1.5px 0; transform: rotate(45deg); }
.plan .btn-ghost { color: var(--mk-ink); border-color: #c9c9ce; }
.plan .btn-ghost:hover { border-color: var(--mk-ink); }
.plan__foot { font-size: 12px; color: var(--mk-ink-3); margin: 12px 0 0; }
.plan__foot a { text-decoration: underline; }
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--mk-line); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 48px 20px 0; font-weight: 500; font-size: 16px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before, .faq summary::after { content: ""; position: absolute; right: 10px; top: 50%; width: 14px; height: 1.5px; background: #fff; transform: translateY(-50%); transition: transform .16s var(--ease); }
.faq summary::after { transform: translateY(-50%) rotate(90deg); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(0); }
.faq details p { color: var(--mk-fg-2); padding: 0 48px 22px 0; margin: 0; font-size: 15px; font-weight: 300; }

/* ---- Product / solutions pages ---------------------------------------- */
.phero { padding-top: calc(var(--nav-h) + 40px); }
.phero .split { align-items: center; }
.phero h1 { font-size: clamp(40px, 5.2vw, 76px); margin-bottom: 20px; }
.phero .lead { max-width: 560px; margin-bottom: 28px; }
@media (min-width: 900px) { .phero { padding-top: calc(var(--nav-h) + 72px); } }
.split { display: grid; gap: 36px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } .split--rev .split__text { order: 2; } .split--rev .split__media { order: 1; } }
.split__text h2 { margin-bottom: 16px; }
.split__text .lead { margin-bottom: 22px; }
.checks { list-style: none; margin: 0 0 24px; }
.checks li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--mk-fg-2); font-size: 15px; }
.checks li::before { content: ""; position: absolute; left: 4px; top: 5px; width: 6px; height: 11px; border: solid var(--brand-400); border-width: 0 1.5px 1.5px 0; transform: rotate(45deg); }
.checks li strong { color: #fff; font-weight: 500; }
.features { display: grid; gap: 14px; }
@media (min-width: 768px) { .features { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 1100px) { .features--3 { grid-template-columns: repeat(3, 1fr); } }
.feature { background: var(--mk-bg-3); border: 1px solid var(--mk-line); border-radius: 8px; padding: 26px 24px; }
.feature__num { font-family: var(--mk-display); font-size: 14px; color: var(--mk-fg-3); margin-bottom: 18px; }
.feature h3 { font-size: 18px; margin-bottom: 8px; }
.feature p { color: var(--mk-fg-2); font-size: 14px; margin: 0; }
.note { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: 6px; border: 1px solid var(--mk-line); color: var(--mk-fg-2); font-size: 14px; }
.note svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--brand-400); margin-top: 1px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.pill-list a { display: inline-flex; align-items: center; height: 36px; padding: 0 14px; border-radius: 4px; border: 1px solid var(--mk-line-2); color: #fff; font-size: 14px; font-weight: 500; }
.pill-list a:hover, .pill-list a[aria-current="page"] { border-color: #fff; }
.pill-list a[aria-current="page"] { background: #fff; color: #0f0f10; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.chip { display: inline-flex; align-items: center; height: 32px; padding: 0 12px; border-radius: 4px; border: 1px solid var(--mk-line-2); font-size: 13px; font-weight: 500; color: var(--mk-fg-2); }
.chips--center { justify-content: center; }
.int-group h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--mk-fg-3); margin: 40px 0 14px; font-weight: 500; }
.int-group:first-child h3 { margin-top: 0; }
.int-list { display: grid; gap: 12px; }
@media (min-width: 768px) { .int-list { grid-template-columns: repeat(2, 1fr); } }
.int-list .feature { padding: 18px 20px; }
.int-list .feature strong { display: block; margin-bottom: 4px; font-weight: 500; }
.steps { display: grid; gap: 14px; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { border-top: 1px solid var(--mk-line-2); padding-top: 18px; }
.step__n { font-family: var(--mk-display); font-size: 40px; font-weight: 300; line-height: 1; margin-bottom: 14px; color: var(--mk-fg-3); }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--mk-fg-2); font-size: 14px; margin: 0; }
.cta-band { text-align: center; padding: 72px 0; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--mk-fg-2); max-width: 560px; margin: 0 auto 26px; }
.stat-row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 20px; border: 1px solid var(--mk-line); border-radius: 8px; }
.stat strong { display: block; font-family: var(--mk-display); font-size: 32px; font-weight: 300; line-height: 1.1; }
.stat span { color: var(--mk-fg-3); font-size: 12px; }

/* ---- Footer -------------------------------------------------------------- */
.site-footer { background: var(--mk-bg); border-top: 1px solid var(--mk-line); padding: 64px 0 28px; font-size: 14px; }
.footer__grid { display: grid; gap: 32px; grid-template-columns: 1fr 1fr; }
.footer__brand { grid-column: 1 / -1; }
.footer__brand img { height: 40px; width: auto; margin-bottom: 16px; }
.footer__brand p { color: var(--mk-fg-3); max-width: 300px; font-size: 13px; }
.footer__col h4 { font-size: 13px; font-weight: 600; margin-bottom: 14px; color: #fff; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { color: var(--mk-fg-2); }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--mk-line); color: var(--mk-fg-3); font-size: 12px; }
.footer__bottom ul { list-style: none; display: flex; flex-wrap: wrap; gap: 16px; }
.footer__bottom a { color: var(--mk-fg-2); }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; } .footer__brand { grid-column: auto; } }

/* light-section overrides for shared components */
.section--light .pill-list a { color: var(--mk-ink); border-color: #c9c9ce; }
.section--light .pill-list a:hover { border-color: var(--mk-ink); }
.section--light .pill-list a[aria-current="page"] { background: var(--mk-ink); color: #fff; border-color: var(--mk-ink); }
.section--light .checks li { color: var(--mk-ink-2); }
.section--light .checks li strong { color: var(--mk-ink); }
.section--light .frame { box-shadow: 0 30px 80px rgb(0 0 0 / .18); }
.section--light .crumb { color: var(--mk-ink-3); }

@media (max-width: 639px) { .section-head h2 br, .compare-head h2 br, .ready h2 br, .band h2 br, .stmt h2 br, .page-hero h1 br { display: none; } }
