/* NyoVault — marketing site
 * Responsive landing pages. Uses tokens from /shared/css/common.css. Local
 * vars only when the marketing palette diverges from the in-app UI (deeper
 * purple gradient, bigger radii, generous spacing). */

:root {
  --mkt-bg:        #ffffff;
  --mkt-bg-alt:    #f3f7ff;
  --mkt-ink:       #0d0c1f;
  --mkt-ink-soft:  #4b4970;
  --mkt-ink-muted: #6b6994;
  --mkt-border:    #e4e2f0;

  --mkt-grad-1: #07112c;
  --mkt-grad-2: #1d7cff;
  --mkt-grad-3: #14b88a;
  --mkt-accent: #ff2c57;

  --mkt-nav-h: 64px;
  --mkt-max:   1180px;
  --mkt-r:     14px;
  --mkt-r-lg:  22px;

  --mkt-shadow-sm: 0 2px 6px rgba(15, 12, 31, 0.06), 0 1px 2px rgba(15, 12, 31, 0.04);
  --mkt-shadow-md: 0 10px 24px rgba(15, 12, 31, 0.10), 0 4px 8px rgba(15, 12, 31, 0.06);
  --mkt-shadow-lg: 0 24px 60px rgba(15, 12, 31, 0.14), 0 8px 24px rgba(15, 12, 31, 0.08);
}

html, body { height: auto; }
.mkt-body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  color: var(--mkt-ink);
  background: var(--mkt-bg);
  line-height: 1.55;
}
.mkt-body img { max-width: 100%; display: block; }
/* `:where()` keeps the default-link rule at zero specificity so any component
 * class (.mkt-btn-primary, .mkt-audience-card, .mkt-footer-col a, …) wins
 * its own color/decoration without needing !important. */
:where(.mkt-body) a { color: var(--mkt-grad-3); text-decoration: none; }
:where(.mkt-body) a:hover { text-decoration: underline; }

/* ---------- Layout helpers ---------- */
.mkt-container { max-width: var(--mkt-max); margin: 0 auto; padding: 0 24px; }
.mkt-container-narrow { max-width: 780px; }
.mkt-section { padding: 80px 0; }
.mkt-section-alt { background: var(--mkt-bg-alt); }
.mkt-section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.mkt-section-head h2 { font-size: 36px; line-height: 1.15; letter-spacing: 0; margin-bottom: 12px; }
.mkt-section-head p { color: var(--mkt-ink-soft); font-size: 17px; }
.mkt-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(124, 58, 237, 0.10);
  color: var(--mkt-grad-2);
  font-weight: 600;
  font-size: 13px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

/* ---------- Buttons ----------
 * Selectors are scoped with `.mkt-body` so they outrank the generic
 * `.mkt-body a { color: var(--mkt-grad-3) }` rule. Without this, anchors with
 * `.mkt-btn-primary` lose the specificity battle and the white label gets
 * recolored purple — illegible against the purple gradient background. */
.mkt-body .mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: transform 120ms ease, background 160ms ease, box-shadow 160ms ease;
  text-decoration: none;
}
.mkt-body .mkt-btn-lg { height: 52px; padding: 0 26px; font-size: 16px; border-radius: 14px; }
.mkt-body .mkt-btn-primary {
  background: linear-gradient(135deg, var(--mkt-grad-2), var(--mkt-grad-3));
  color: #fff;
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.30);
}
.mkt-body .mkt-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(124, 58, 237, 0.36); color: #fff; text-decoration: none; }
.mkt-body .mkt-btn-ghost {
  background: rgba(124, 58, 237, 0.08);
  color: var(--mkt-grad-2);
}
.mkt-body .mkt-btn-ghost:hover { background: rgba(124, 58, 237, 0.14); color: var(--mkt-grad-2); text-decoration: none; }
.mkt-body .mkt-btn-block { width: 100%; }
.mkt-body .mkt-link-ghost { color: var(--mkt-ink); font-weight: 500; padding: 8px 12px; }
.mkt-body .mkt-link-ghost:hover { color: var(--mkt-grad-2); text-decoration: none; }

/* ---------- Nav ---------- */
.mkt-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--mkt-border);
}
.mkt-nav-inner {
  /* Proton-style nav hugs the viewport edges. We intentionally drop the
   * `max-width: var(--mkt-max)` constraint here so the logo sits flush
   * left and the CTAs flush right — content sections still respect
   * `.mkt-container` for their own gutters. */
  width: 100%;
  padding: 0 24px;
  height: var(--mkt-nav-h);
  display: flex;
  align-items: center;
  gap: 6px;
}
.mkt-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--mkt-ink) !important; font-size: 17px; }
.mkt-brand:hover { text-decoration: none; }
.mkt-brand-mark {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--mkt-grad-1), var(--mkt-grad-3));
  display: inline-flex; align-items: center; justify-content: center;
}
.mkt-brand-text strong { font-weight: 700; }
.mkt-brand { line-height: 0; }
.mkt-brand-logo { height: 48px; width: auto; display: block; }
.mkt-brand-logo--nav { height: 42px; }
.mkt-brand-logo--footer { height: 48px; }
.mkt-mega-products-about-logo { display: block; }

.mkt-nav-links { display: flex; align-items: center; gap: 2px; margin-left: 18px; }
.mkt-nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  color: var(--mkt-ink);
  font-weight: 500;
  font-size: 14.5px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.mkt-nav-link:hover { background: rgba(124, 58, 237, 0.06); text-decoration: none; color: var(--mkt-grad-2); }
/* Item wrapper stretches to the full nav height so the cursor stays
 * inside its bounding box while crossing the (button → mega) gap. If
 * the item were just button-tall (36px), moving down past the button
 * would land in the 14px nav padding — outside any descendant — and
 * fire `mouseleave`, snapping the panel shut mid-transit. */
.mkt-nav-item { position: relative; display: flex; align-items: center; height: 100%; align-self: stretch; }

.mkt-nav-cta { display: flex; align-items: center; gap: 8px; margin-left: auto; }
/* Right-aligned product switcher ("Conheça Nyo" dropdown) lives between
 * the left nav links and the CTAs. Pushed to far right via auto margin
 * so it tracks the CTAs and not the brand. */
.mkt-nav-products { margin-left: auto; display: flex; align-items: center; }
.mkt-nav-products ~ .mkt-nav-cta { margin-left: 0; }

/* Mega menu (Proton-style). The panel sits flush against the bottom of
 * its trigger button (no margin-top, no gap) so the cursor can travel
 * from button → panel without ever leaving the `.mkt-nav-item` hover
 * target. Earlier we kept an 8-10px visual gap and bridged it with a
 * transparent ::before, but `.mkt-mega--products` carries
 * `overflow: hidden` which clipped that bridge. Flush attachment is the
 * cleaner fix — breathing room comes from the inner padding instead. */
.mkt-mega {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 720px;
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-r-lg);
  box-shadow: var(--mkt-shadow-lg);
  padding: 24px;
  margin-top: 0;
  z-index: 60;
}
.mkt-mega[hidden] { display: none; }
.mkt-mega--narrow { min-width: 280px; padding: 16px; }
.mkt-mega { min-width: 760px; }
/* Right-anchored mega (used by the "Conheça a Nyo" trigger near the
 * CTAs). Anchor by the right edge instead of the left so the panel
 * doesn't overflow the viewport. */
.mkt-mega--right { left: auto; right: 0; }

/* ── Products mega (Proton-style) ─────────────────────────────────
 * Two-column layout: a 3-col tile grid of products on the left,
 * a narrow "Nyo" / about column on the right. Bottom row is a
 * full-width "for Business" CTA card. The mega container itself
 * has 0 padding so the inner sections own their own padding and
 * the right column can paint its own tinted background edge-to-edge.
 */
.mkt-mega--products {
  min-width: 980px;
  max-width: 1080px;
  padding: 0;
  overflow: hidden;
}
.mkt-mega-products-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
}
.mkt-mega-products-main {
  padding: 24px 24px 20px;
  border-right: 1px solid var(--mkt-border);
}
.mkt-mega-products-about {
  padding: 24px 22px 20px;
  background: var(--mkt-bg-alt);
  display: flex; flex-direction: column; gap: 4px;
}
.mkt-mega-products-about-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 6px;
}
.mkt-mega-products-about-head strong { font-size: 15px; }
.mkt-mega-products-about-tagline {
  color: var(--mkt-ink-soft);
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 14px;
}
.mkt-mega-products-about a {
  padding: 9px 10px;
  margin: 0 -10px;
  border-radius: 8px;
  color: var(--mkt-ink) !important;
  font-size: 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.mkt-mega-products-about a:hover { background: rgba(124, 58, 237, 0.07); text-decoration: none; }

.mkt-mega-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
.mkt-mega-products-section {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--mkt-border);
  margin-bottom: 6px;
}
.mkt-mega-products-section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mkt-ink-muted);
}

/* Each product is a vertical tile: header row with a chunky rounded
 * logo + product name, then a one-line description below. */
.mkt-product-tile {
  display: flex; flex-direction: column; gap: 6px;
  padding: 12px;
  border-radius: 12px;
  color: var(--mkt-ink) !important;
  transition: background 140ms ease;
}
.mkt-product-tile:hover { background: var(--mkt-bg-alt); text-decoration: none; }
.mkt-product-tile.is-current { background: rgba(124, 58, 237, 0.07); }
.mkt-product-tile.is-soon { opacity: 0.78; }
.mkt-product-tile-head { display: flex; align-items: center; gap: 10px; }
.mkt-product-tile-head strong {
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.mkt-product-tile p {
  color: var(--mkt-ink-soft);
  font-size: 12.5px;
  line-height: 1.45;
}

/* Product logo squares — uniform light tile; the inner glyph/icon
 * carries the per-product identity. */
.mkt-product-logo {
  width: 34px; height: 34px;
  flex: 0 0 34px;
  border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 17px;
  color: var(--mkt-ink);
  background: #f3f1fb;
  box-shadow: inset 0 0 0 1px rgba(15, 12, 31, 0.04);
}
.mkt-product-logo img { display: block; width: 20px; height: 20px; }
.mkt-product-logo--pass,
.mkt-product-logo--iam,
.mkt-product-logo--people,
.mkt-product-logo--finance,
.mkt-product-logo--mail,
.mkt-product-logo--drive,
.mkt-product-logo--auth,
.mkt-product-logo--notes,
.mkt-product-logo--cards,
.mkt-product-logo--brand,
.mkt-product-logo--biz { background: #f3f1fb; color: var(--mkt-ink); }

/* Full-width "Nyo for Business" CTA at the bottom of the mega. Dark
 * card on tinted strip — matches Proton's "Proton for Business" row. */
.mkt-mega-business-card {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 24px;
  background: linear-gradient(90deg, #0d0c1f, #1e0a3c);
  color: #fff !important;
  border-top: 1px solid var(--mkt-border);
}
.mkt-mega-business-card:hover { text-decoration: none; filter: brightness(1.08); }
.mkt-mega-business-card strong { display: block; font-size: 15px; color: #fff; }
.mkt-mega-business-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  margin-top: 2px;
}
/* "Conheça a Nyo" trigger is the visually quieter sibling of the main
 * nav links — keeps focus on Features/Pricing/Business. */
.mkt-nav-link--quiet { color: var(--mkt-ink-soft); }
.mkt-nav-link--quiet:hover { color: var(--mkt-ink); background: rgba(124, 58, 237, 0.06); }
.mkt-mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mkt-mega-grid--others { grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.mkt-mega-section-title {
  margin: 18px 0 4px;
  padding-top: 14px;
  border-top: 1px solid var(--mkt-border);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mkt-ink-muted);
}
.mkt-mega-card--mini { padding: 10px 12px; gap: 10px; }
.mkt-mega-card--mini .mkt-mega-icon { width: 32px; height: 32px; font-size: 16px; border-radius: 8px; }
.mkt-mega-card--mini strong { font-size: 14px; }
.mkt-mega-card--mini p { font-size: 12.5px; line-height: 1.4; }
.mkt-mega-card.is-soon { opacity: 0.78; }
.mkt-mega-card.is-current { background: rgba(124, 58, 237, 0.06); }
.mkt-mega-tag {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 7px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--mkt-bg-alt);
  color: var(--mkt-ink-soft);
  border-radius: 999px;
  vertical-align: middle;
}
.mkt-mega-tag--here { background: linear-gradient(135deg, var(--mkt-grad-2), var(--mkt-grad-3)); color: #fff; }
.mkt-mega-icon--iam     { background: rgba(59, 130, 246, 0.14); }
.mkt-mega-icon--people  { background: rgba(244, 114, 182, 0.14); }
.mkt-mega-icon--finance { background: rgba(16, 185, 129, 0.14); }
.mkt-mega-icon--mail    { background: rgba(245, 158, 11, 0.14); }
.mkt-mega-icon--drive   { background: rgba(99, 102, 241, 0.14); }
.mkt-mega-card {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px;
  border-radius: 14px;
  color: var(--mkt-ink) !important;
}
.mkt-mega-card:hover { background: var(--mkt-bg-alt); text-decoration: none; }
.mkt-mega-card strong { display: block; font-weight: 600; margin-bottom: 4px; }
.mkt-mega-card p { color: var(--mkt-ink-soft); font-size: 13.5px; line-height: 1.45; }
.mkt-mega-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  background: rgba(124, 58, 237, 0.10);
}
.mkt-mega-icon--p { background: rgba(124, 58, 237, 0.12); }
.mkt-mega-icon--f { background: rgba(244, 114, 182, 0.14); }
.mkt-mega-icon--e { background: rgba(59, 130, 246, 0.14); }
.mkt-mega-icon--c { background: rgba(245, 158, 11, 0.16); }
.mkt-mega-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--mkt-border);
  color: var(--mkt-ink-soft); font-size: 13.5px;
}
.mkt-mega-list { display: flex; flex-direction: column; gap: 4px; }
.mkt-mega-list a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--mkt-ink) !important;
}
.mkt-mega-list a:hover { background: var(--mkt-bg-alt); text-decoration: none; }

/* Burger + mobile */
.mkt-nav-burger {
  display: none;
  width: 40px; height: 40px;
  margin-left: auto;
  border-radius: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
}
.mkt-nav-burger span {
  display: block; width: 22px; height: 2px; background: var(--mkt-ink); border-radius: 2px;
}
.mkt-mobile { display: none; }
.mkt-mobile[hidden] { display: none !important; }

/* ---------- Hero ---------- */
.mkt-hero {
  padding: 72px 0 80px;
  background: radial-gradient(ellipse at top left, rgba(167, 139, 250, 0.20), transparent 55%),
              radial-gradient(ellipse at top right, rgba(124, 58, 237, 0.12), transparent 60%),
              #ffffff;
}
.mkt-hero-tinted { background: linear-gradient(180deg, var(--mkt-bg-alt), #fff); }
.mkt-hero-personal { background: linear-gradient(180deg, #f3f0ff, #fff); }
.mkt-hero-family   { background: linear-gradient(180deg, #fff0f6, #fff); }
.mkt-hero-business { background: linear-gradient(180deg, #eef4ff, #fff); }
.mkt-hero-grid {
  max-width: var(--mkt-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.mkt-hero-copy h1 {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 18px;
  font-weight: 700;
}
.mkt-hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--mkt-grad-2), var(--mkt-grad-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mkt-lead { font-size: 18px; color: var(--mkt-ink-soft); margin-bottom: 28px; max-width: 540px; }
.mkt-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.mkt-hero-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; color: var(--mkt-ink-soft); font-size: 14.5px; }
.mkt-hero-art img { width: 100%; border-radius: var(--mkt-r-lg); box-shadow: var(--mkt-shadow-md); }

.mkt-hero-product {
  padding: 44px 0 30px;
  background: linear-gradient(180deg, var(--mkt-bg-alt), #fff 72%);
}
.mkt-hero-product .mkt-hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
}
.mkt-hero-product .mkt-hero-copy h1 {
  max-width: 620px;
  font-size: 42px;
  line-height: 1.08;
  margin-bottom: 14px;
}
.mkt-hero-product .mkt-lead { margin-bottom: 20px; }
.mkt-hero-product .mkt-hero-cta { margin-bottom: 18px; }
.mkt-hero-product .mkt-hero-proof { display: none; }
.mkt-hero-product .mkt-product-visual {
  height: 340px;
  min-height: 0;
  border: 1px solid rgba(15, 12, 31, 0.08);
}
.mkt-hero-product .mkt-product-visual img {
  height: 100%;
  aspect-ratio: auto;
}
.mkt-hero-product .mkt-product-visual::after {
  background: linear-gradient(180deg, transparent 55%, rgba(13, 12, 31, 0.62));
}
.mkt-hero-product .mkt-product-visual--ui {
  height: auto;
  min-height: 340px;
}

.mkt-hero-conversion {
  position: relative;
  min-height: min(720px, calc(100svh - var(--mkt-nav-h) - 72px));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 64px 0 52px;
  background: var(--mkt-ink);
}
.mkt-hero-conversion .mkt-hero-grid {
  position: relative;
  min-height: 540px;
}
.mkt-hero-conversion .mkt-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
  color: #fff;
}
.mkt-hero-conversion .mkt-eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.mkt-hero-conversion .mkt-lead,
.mkt-hero-conversion .mkt-hero-bullets {
  color: rgba(255, 255, 255, 0.82);
}
.mkt-body .mkt-hero-conversion .mkt-btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.mkt-body .mkt-hero-conversion .mkt-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.mkt-hero-checks li {
  position: relative;
  padding-left: 24px;
}
.mkt-hero-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mkt-grad-3);
  box-shadow: 0 0 0 5px rgba(124, 58, 237, 0.10);
}
.mkt-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  color: var(--mkt-ink-soft);
  font-size: 13.5px;
}
.mkt-hero-proof span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
}
.mkt-product-visual {
  position: relative;
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--mkt-r-lg);
  background: var(--mkt-ink);
  box-shadow: var(--mkt-shadow-lg);
}
.mkt-product-visual img,
.mkt-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mkt-product-visual img { aspect-ratio: 16 / 10; }
.mkt-product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(13, 12, 31, 0.58));
  pointer-events: none;
}
.mkt-hero-conversion .mkt-product-visual {
  position: absolute;
  z-index: 0;
  top: -64px;
  bottom: -52px;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  min-height: 100%;
  border-radius: 0;
  box-shadow: none;
}
.mkt-hero-conversion .mkt-product-visual img {
  height: 100%;
  aspect-ratio: auto;
}
.mkt-hero-conversion .mkt-product-visual::after {
  background:
    linear-gradient(90deg, rgba(5, 10, 20, 0.94) 0%, rgba(5, 10, 20, 0.78) 42%, rgba(5, 10, 20, 0.20) 78%),
    linear-gradient(180deg, rgba(5, 10, 20, 0.08), rgba(5, 10, 20, 0.46));
}
.mkt-visual-panel {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: #fff;
  background: rgba(9, 18, 18, 0.68);
  backdrop-filter: blur(12px);
}
.mkt-visual-panel--bottom { bottom: 18px; }
.mkt-visual-panel span { color: rgba(255, 255, 255, 0.74); font-size: 13px; }
.mkt-visual-panel strong { text-align: right; font-size: 14px; }
.mkt-hero-conversion .mkt-visual-panel {
  left: auto;
  right: 24px;
  bottom: 24px;
  width: min(360px, calc(100% - 48px));
}
.mkt-product-visual--ui {
  padding: 14px;
  background: #f4f2fb;
}
.mkt-product-visual--ui::after { display: none; }
.mkt-vault-ui {
  min-width: 0;
  color: #120f2d;
}
.mkt-vault-ui--hero {
  display: grid;
  gap: 12px;
}
.mkt-vault-score-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #100d2c;
  color: #fff;
}
.mkt-vault-score-strip strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}
.mkt-vault-score-strip span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}
.mkt-vault-score-ring {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#10b981 0 73%, rgba(255, 255, 255, 0.18) 73% 100%);
}
.mkt-vault-score-ring span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #100d2c;
  color: #10b981;
  font-weight: 800;
  font-size: 14px;
}
.mkt-vault-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.mkt-vault-item {
  min-width: 0;
  min-height: 116px;
  overflow: hidden;
  border: 1px solid #e5e1f4;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(31, 20, 80, 0.08);
}
.mkt-vault-item-head {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 8px;
  padding: 12px;
  color: #fff;
  background: linear-gradient(135deg, #6d28d9, #8b5cf6);
}
.mkt-vault-item--note .mkt-vault-item-head {
  background: linear-gradient(135deg, #b45309, #f59e0b);
}
.mkt-vault-item-head span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 10px;
  font-weight: 800;
}
.mkt-vault-item-head strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mkt-vault-item p {
  padding: 12px;
  color: #332a63;
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mkt-vault-auth-strip {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #e6e1f5;
  border-radius: 14px;
  background: #fff;
}
.mkt-vault-auth-strip span {
  color: #5c5288;
  font-size: 13px;
  font-weight: 700;
}
.mkt-vault-auth-strip strong,
.mkt-vault-auth-list strong {
  color: #7c3aed;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 18px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.mkt-vault-auth-strip em,
.mkt-vault-auth-list i {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid #c4b5fd;
  border-radius: 50%;
  color: #8b5cf6;
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
}
.mkt-showcase-media--mock {
  padding: 18px;
  background: #f4f2fb;
}
.mkt-showcase-media--mock .mkt-vault-ui {
  min-height: 300px;
}
.mkt-vault-ui--score,
.mkt-vault-ui--items,
.mkt-vault-ui--auth {
  display: grid;
  gap: 14px;
}
.mkt-vault-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.mkt-vault-stats div {
  padding: 14px 10px;
  border: 1px solid #e5e1f4;
  border-radius: 14px;
  background: #fff;
  text-align: center;
}
.mkt-vault-stats strong {
  display: block;
  color: #7c3aed;
  font-size: 22px;
}
.mkt-vault-stats span {
  color: #6b6292;
  font-size: 11px;
  font-weight: 700;
}
.mkt-vault-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mkt-vault-toolbar span {
  flex: 1;
  min-width: 0;
  padding: 9px 13px;
  border: 1px solid #e5e1f4;
  border-radius: 999px;
  color: #9b93b7;
  background: #fff;
  font-size: 12px;
}
.mkt-vault-toolbar strong,
.mkt-vault-mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6d28d9, #8b5cf6);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.mkt-vault-ui--items .mkt-vault-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mkt-vault-auth-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.mkt-vault-auth-head strong {
  display: block;
  font-size: 20px;
}
.mkt-vault-auth-head span {
  color: #6b6292;
  font-size: 12px;
}
.mkt-vault-auth-list {
  display: grid;
  gap: 9px;
}
.mkt-vault-auth-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #e5e1f4;
  border-radius: 13px;
  background: #fff;
}
.mkt-vault-auth-list span,
.mkt-vault-auth-list em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mkt-vault-auth-list span {
  grid-column: 1;
  color: #181433;
  font-size: 13px;
  font-weight: 800;
}
.mkt-vault-auth-list em {
  grid-column: 1;
  color: #6b6292;
  font-style: normal;
  font-size: 11px;
}
.mkt-vault-auth-list strong {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.mkt-vault-auth-list i {
  grid-column: 3;
  grid-row: 1 / span 2;
}

/* ---------- Vault homepage refresh ---------- */
.mkt-hero-product {
  position: relative;
  overflow: hidden;
  padding: 70px 0 58px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 8, 25, .92), rgba(5, 10, 28, .76) 44%, rgba(8, 9, 28, .55)),
    url("/static/images/marketing/vault-auth-bg.png") center / cover no-repeat,
    #050a1c;
}
.mkt-hero-product::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 76%, rgba(29, 124, 255, .44), transparent 24%),
    radial-gradient(circle at 84% 62%, rgba(255, 44, 87, .32), transparent 25%),
    radial-gradient(circle at 52% 26%, rgba(20, 184, 138, .2), transparent 24%);
  pointer-events: none;
}
.mkt-hero-product::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(78, 154, 255, .18) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .35;
  pointer-events: none;
}
.mkt-hero-product .mkt-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 48px;
}
.mkt-hero-product .mkt-eyebrow {
  color: #d7fbff;
  background: rgba(29, 124, 255, .18);
  border: 1px solid rgba(85, 171, 255, .26);
  box-shadow: 0 0 30px rgba(29, 124, 255, .16);
}
.mkt-hero-product .mkt-hero-copy h1,
.mkt-hero-product .mkt-hero-copy h1 em {
  color: #fff;
}
.mkt-hero-product .mkt-hero-copy h1 em {
  background: linear-gradient(120deg, #58e6a8, #2f91ff 58%, #ff3d66);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mkt-hero-product .mkt-lead {
  color: rgba(237, 246, 255, .82);
}
.mkt-hero-product .mkt-hero-bullets {
  color: rgba(237, 246, 255, .78);
}
.mkt-hero-checks li::before,
.mkt-check-list li::before {
  background: linear-gradient(135deg, #2f91ff, #14b88a);
  box-shadow: 0 0 0 5px rgba(47, 145, 255, .12);
}
.mkt-body .mkt-hero-product .mkt-btn-primary,
.mkt-body .mkt-btn-primary {
  background: linear-gradient(135deg, #704cff, #1d7cff 55%, #14b88a);
  color: #fff;
  box-shadow: 0 14px 32px rgba(29, 124, 255, .26);
}
.mkt-body .mkt-hero-product .mkt-btn-primary:hover,
.mkt-body .mkt-btn-primary:hover {
  box-shadow: 0 18px 38px rgba(29, 124, 255, .34);
  color: #fff;
}
.mkt-body .mkt-hero-product .mkt-btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
}
.mkt-body .mkt-hero-product .mkt-btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, .18);
}
.mkt-hero-product .mkt-product-visual--ui,
.mkt-showcase-media--mock {
  border: 1px solid rgba(86, 166, 255, .28);
  background:
    linear-gradient(145deg, rgba(45, 101, 205, .16), rgba(255, 255, 255, .045) 46%, rgba(255, 44, 87, .08)),
    rgba(7, 14, 38, .72);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, .34),
    0 0 42px rgba(29, 124, 255, .14),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}
.mkt-vault-ui,
.mkt-vault-auth-head strong,
.mkt-vault-item p {
  color: #fff;
}
.mkt-vault-score-strip {
  background: rgba(8, 13, 35, .9);
  border: 1px solid rgba(86, 166, 255, .18);
}
.mkt-vault-score-ring {
  background: conic-gradient(#2f91ff 0 73%, rgba(255, 255, 255, .14) 73% 100%);
}
.mkt-vault-score-ring span {
  background: #080d23;
  color: #fff;
}
.mkt-vault-item,
.mkt-vault-auth-strip,
.mkt-vault-stats div,
.mkt-vault-toolbar span,
.mkt-vault-auth-list div {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .07);
  box-shadow: none;
}
.mkt-vault-item-head {
  background: linear-gradient(135deg, #1d7cff, #704cff);
}
.mkt-vault-item--note .mkt-vault-item-head {
  background: linear-gradient(135deg, #b45309, #ef8a08);
}
.mkt-vault-item p,
.mkt-vault-auth-strip span,
.mkt-vault-auth-head span,
.mkt-vault-auth-list em,
.mkt-vault-stats span,
.mkt-vault-toolbar span {
  color: rgba(237, 246, 255, .68);
}
.mkt-vault-stats strong,
.mkt-vault-auth-strip strong,
.mkt-vault-auth-list strong {
  color: #2f91ff;
}
.mkt-vault-toolbar strong,
.mkt-vault-mini-button {
  background: linear-gradient(135deg, #704cff, #1d7cff);
}
.mkt-vault-auth-strip em,
.mkt-vault-auth-list i {
  color: #bcd9ff;
  border-color: #2f91ff;
}
.mkt-trust {
  background: #07112c;
  border-color: rgba(86, 166, 255, .18);
}
.mkt-trust-inner {
  color: rgba(237, 246, 255, .68);
}
.mkt-trust-inner strong {
  padding: 7px 11px;
  border: 1px solid rgba(86, 166, 255, .18);
  border-radius: 999px;
  color: #edf6ff;
  background: rgba(255, 255, 255, .06);
  letter-spacing: 0;
  text-transform: none;
}
.mkt-section-alt {
  background:
    radial-gradient(circle at 14% 18%, rgba(29, 124, 255, .08), transparent 26%),
    radial-gradient(circle at 88% 28%, rgba(20, 184, 138, .08), transparent 24%),
    #f3f7ff;
}
.mkt-eyebrow {
  color: #0b6e56;
  background: rgba(20, 184, 138, .1);
}
.mkt-showcase {
  border-color: rgba(29, 124, 255, .16);
  background: linear-gradient(135deg, #fff, #f7fbff);
}
.mkt-showcase-kicker,
.mkt-proof-list article > span,
.mkt-card h3,
.mkt-steps h3 {
  color: #0f4fb2;
}
.mkt-card {
  border-color: rgba(29, 124, 255, .14);
}
.mkt-card-icon {
  color: #fff;
  background: linear-gradient(135deg, #1d7cff, #14b88a);
  box-shadow: 0 14px 28px rgba(29, 124, 255, .18);
}
.mkt-card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mkt-side-image--vault {
  position: relative;
  border: 1px solid rgba(29, 124, 255, .24);
  background: #07112c;
}
.mkt-side-image--vault img {
  aspect-ratio: 16 / 10;
  opacity: .96;
}
.mkt-side-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: rgba(7, 14, 38, .72);
  backdrop-filter: blur(14px);
}
.mkt-side-overlay span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #edf6ff;
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 800;
}
.mkt-cta-band {
  background:
    radial-gradient(circle at 18% 78%, rgba(29, 124, 255, .46), transparent 24%),
    radial-gradient(circle at 82% 34%, rgba(255, 44, 87, .32), transparent 26%),
    linear-gradient(135deg, #050a1c, #071b48 52%, #19091e);
}

.mkt-split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 52px;
  align-items: center;
}
.mkt-split h2 {
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 14px;
}
.mkt-split p { color: var(--mkt-ink-soft); }
.mkt-proof-list {
  display: grid;
  gap: 14px;
}
.mkt-proof-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  padding: 18px;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-r);
  background: #fff;
  box-shadow: var(--mkt-shadow-sm);
}
.mkt-proof-list article > span {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.10);
  color: var(--mkt-grad-2);
  font-weight: 700;
  font-size: 12px;
}
.mkt-proof-list h3 { font-size: 17px; }
.mkt-proof-list p { font-size: 14px; }
.mkt-proof-list-compact article > span { width: 48px; }
.mkt-feature-cards .mkt-card { min-height: 190px; }
.mkt-split-visual {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}
.mkt-side-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--mkt-r-lg);
  box-shadow: var(--mkt-shadow-md);
}
.mkt-side-image img { aspect-ratio: 16 / 10; }
.mkt-stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.mkt-stacked-cards article,
.mkt-stacked-cards a {
  display: block;
  padding: 18px;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-r);
  color: var(--mkt-ink) !important;
  background: #fff;
}
.mkt-stacked-cards a:hover {
  text-decoration: none;
  border-color: var(--mkt-accent);
  box-shadow: var(--mkt-shadow-sm);
}
.mkt-stacked-cards h3 { font-size: 18px; margin-bottom: 4px; }
.mkt-stacked-cards p { font-size: 14.5px; }

/* ---------- Feature walkthrough ---------- */
.mkt-feature-walkthrough { background: #fff; }
.mkt-showcase-stack {
  display: grid;
  gap: 24px;
}
.mkt-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 34px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-r-lg);
  background: linear-gradient(135deg, #fff, var(--mkt-bg-alt));
  box-shadow: var(--mkt-shadow-sm);
}
.mkt-showcase--reverse {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}
.mkt-showcase--reverse .mkt-showcase-media { order: 2; }
.mkt-showcase-media {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--mkt-ink);
  box-shadow: var(--mkt-shadow-md);
}
.mkt-showcase-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.mkt-showcase-copy {
  max-width: 460px;
}
.mkt-showcase-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--mkt-grad-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mkt-showcase-copy h3 {
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.mkt-showcase-copy p {
  color: var(--mkt-ink-soft);
  margin-bottom: 18px;
}
.mkt-check-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--mkt-ink-soft);
  font-size: 14.5px;
}
.mkt-check-list li {
  position: relative;
  padding-left: 26px;
}
.mkt-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--mkt-grad-3);
  box-shadow: 0 0 0 5px rgba(124, 58, 237, 0.10);
}

/* ---------- Trust strip ---------- */
.mkt-trust { background: var(--mkt-bg-alt); border-top: 1px solid var(--mkt-border); border-bottom: 1px solid var(--mkt-border); }
.mkt-trust-inner {
  max-width: var(--mkt-max);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 28px;
  color: var(--mkt-ink-soft);
  font-size: 14px;
}
.mkt-trust-inner strong { color: var(--mkt-ink); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 13px; }

/* ---------- Cards ---------- */
.mkt-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.mkt-cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.mkt-card {
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-r-lg);
  padding: 28px 24px;
  box-shadow: var(--mkt-shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.mkt-card:hover { transform: translateY(-2px); box-shadow: var(--mkt-shadow-md); }
.mkt-card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.10);
  font-size: 22px;
  margin-bottom: 14px;
}
.mkt-card h3 { font-size: 18px; margin-bottom: 8px; }
.mkt-card p { color: var(--mkt-ink-soft); font-size: 14.5px; }

/* ---------- Other Nyo products grid (homepage) ---------- */
.mkt-suite-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mkt-suite-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-r-lg);
  padding: 22px 22px;
  color: var(--mkt-ink);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
a.mkt-suite-card:hover { transform: translateY(-2px); box-shadow: var(--mkt-shadow-md); text-decoration: none; border-color: var(--mkt-accent); }
.mkt-suite-card--soon { opacity: 0.78; cursor: default; }
.mkt-suite-card--here { border-color: var(--mkt-accent); background: linear-gradient(165deg, #faf7ff, #fff); }
.mkt-suite-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 8px;
}
.mkt-suite-card strong { font-size: 16px; }
.mkt-suite-card p { color: var(--mkt-ink-soft); font-size: 13.5px; line-height: 1.45; }
.mkt-suite-tag {
  position: absolute; top: 14px; right: 14px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 999px;
  background: var(--mkt-bg-alt); color: var(--mkt-ink-soft);
}
.mkt-suite-tag--here { background: linear-gradient(135deg, var(--mkt-grad-2), var(--mkt-grad-3)); color: #fff; }

/* ---------- Audience split ---------- */
.mkt-audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mkt-audience-card {
  display: flex; flex-direction: column; gap: 8px;
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-r-lg);
  padding: 32px 28px;
  color: var(--mkt-ink) !important;
  box-shadow: var(--mkt-shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.mkt-audience-card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--mkt-shadow-md); }
.mkt-audience-emoji { font-size: 32px; }
.mkt-audience-card h3 { font-size: 22px; }
.mkt-audience-card p { color: var(--mkt-ink-soft); }
.mkt-audience-link { color: var(--mkt-grad-2); font-weight: 600; margin-top: auto; }
.mkt-audience-personal { background: linear-gradient(165deg, #faf7ff, #fff); }
.mkt-audience-family   { background: linear-gradient(165deg, #fff3f8, #fff); }
.mkt-audience-business { background: linear-gradient(165deg, #f1f6ff, #fff); }

/* ---------- Steps ---------- */
.mkt-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mkt-steps li {
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-r-lg);
  padding: 28px 24px;
}
.mkt-step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mkt-grad-2), var(--mkt-grad-3));
  color: #fff; font-weight: 700;
  margin-bottom: 14px;
}
.mkt-steps h3 { font-size: 18px; margin-bottom: 6px; }
.mkt-steps p { color: var(--mkt-ink-soft); font-size: 14.5px; }

/* ---------- Compare teaser + comparison page table ---------- */
.mkt-compare-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mkt-compare-card {
  display: flex; flex-direction: column; gap: 6px;
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-r);
  padding: 18px 18px;
  color: var(--mkt-ink) !important;
  font-size: 14px;
}
.mkt-compare-card:hover { text-decoration: none; border-color: var(--mkt-accent); }
.mkt-compare-card strong { font-size: 15.5px; }
.mkt-compare-card span { color: var(--mkt-ink-soft); }

.mkt-compare-hero {
  padding: 72px 0 48px;
  background: linear-gradient(180deg, var(--mkt-bg-alt), #fff);
}
.mkt-compare-hero h1 { font-size: 44px; letter-spacing: 0; margin-bottom: 14px; }
.mkt-compare-hero .mkt-lead { max-width: 680px; }
.mkt-compare-note { color: var(--mkt-ink-muted); font-size: 13.5px; margin-top: 16px; text-align: center; }

/* ---------- Tables ---------- */
.mkt-table-wrap { overflow-x: auto; border: 1px solid var(--mkt-border); border-radius: var(--mkt-r-lg); }
.mkt-table { width: 100%; border-collapse: collapse; background: #fff; }
.mkt-table th, .mkt-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--mkt-border); }
.mkt-table thead th { background: var(--mkt-bg-alt); font-size: 14px; font-weight: 600; }
.mkt-table tbody tr:last-child td { border-bottom: none; }
.mkt-th-nyo, .mkt-td-nyo { background: rgba(124, 58, 237, 0.06); color: var(--mkt-grad-2); font-weight: 600; }

/* ---------- Pricing ---------- */
.mkt-pricing-head { padding: 72px 0 24px; text-align: center; background: linear-gradient(180deg, var(--mkt-bg-alt), #fff); }
.mkt-pricing-head h1 { font-size: 42px; letter-spacing: 0; }
.mkt-pricing-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 22px;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: 999px;
}
.mkt-pricing-toggle button {
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--mkt-ink-soft);
  font-weight: 500;
}
.mkt-pricing-toggle .is-active {
  background: linear-gradient(135deg, var(--mkt-grad-2), var(--mkt-grad-3));
  color: #fff;
}
.mkt-pricing-badge { font-size: 12px; background: rgba(255, 255, 255, 0.25); padding: 2px 8px; border-radius: 999px; margin-left: 6px; }
.mkt-pricing-currency {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: 999px;
  color: var(--mkt-ink-soft);
  font-size: 13.5px;
}
.mkt-pricing-currency label { font-weight: 500; }
.mkt-pricing-currency select {
  border: none; background: transparent;
  font-weight: 600;
  color: var(--mkt-ink);
  cursor: pointer;
  outline: none;
}
.mkt-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; align-items: stretch; }
.mkt-plan {
  display: flex; flex-direction: column; gap: 16px;
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-r-lg);
  padding: 28px 24px;
  position: relative;
}
.mkt-plan-featured {
  border: 2px solid var(--mkt-grad-3);
  box-shadow: var(--mkt-shadow-md);
  transform: translateY(-6px);
}
.mkt-plan-badge {
  position: absolute; top: -12px; right: 16px;
  background: linear-gradient(135deg, var(--mkt-grad-2), var(--mkt-grad-3));
  color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.mkt-plan header h3 { font-size: 20px; }
.mkt-plan header p { color: var(--mkt-ink-muted); font-size: 13.5px; }
.mkt-plan-price { display: flex; align-items: baseline; gap: 6px; }
.mkt-plan-amount { font-size: 34px; font-weight: 700; letter-spacing: 0; }
.mkt-plan-period { color: var(--mkt-ink-soft); font-size: 14px; }
.mkt-plan ul { list-style: none; display: flex; flex-direction: column; gap: 8px; color: var(--mkt-ink-soft); font-size: 14.5px; flex-grow: 1; }
.mkt-plan ul li::before { content: "✓ "; color: var(--mkt-grad-3); font-weight: 700; }
.mkt-pricing-note { text-align: center; color: var(--mkt-ink-muted); font-size: 13.5px; margin-top: 28px; }

/* ---------- FAQ accordion ---------- */
.mkt-faq { display: flex; flex-direction: column; gap: 10px; }
.mkt-faq-item {
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-r);
  overflow: hidden;
}
.mkt-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
}
.mkt-faq-item summary::-webkit-details-marker { display: none; }
.mkt-faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--mkt-grad-2);
  transition: transform 160ms ease;
}
.mkt-faq-item[open] summary::after { content: "−"; }
.mkt-faq-item > div { padding: 0 22px 18px; color: var(--mkt-ink-soft); }

/* ---------- Compliance row ---------- */
.mkt-compliance { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mkt-compliance > div {
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-r);
  padding: 20px;
  text-align: center;
}
.mkt-compliance strong { display: block; font-size: 18px; margin-bottom: 4px; color: var(--mkt-grad-2); }
.mkt-compliance span { color: var(--mkt-ink-soft); font-size: 13.5px; }

/* ---------- Contact ---------- */
.mkt-contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.mkt-contact-card {
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-r-lg);
  padding: 24px;
}
.mkt-contact-card h3 { font-size: 18px; margin: 12px 0 6px; }
.mkt-contact-card p { color: var(--mkt-ink-soft); margin-bottom: 8px; }

/* ---------- Prose (about/legal) ---------- */
.mkt-prose h2 { font-size: 22px; margin-top: 32px; margin-bottom: 12px; }
.mkt-prose h2:first-child { margin-top: 0; }
.mkt-prose p, .mkt-prose ul { color: var(--mkt-ink-soft); margin-bottom: 14px; }
.mkt-prose ul { padding-left: 22px; }
.mkt-prose ul li { margin-bottom: 6px; }
.mkt-prose strong { color: var(--mkt-ink); }

/* ---------- Big CTA band ---------- */
.mkt-cta-band {
  background: linear-gradient(135deg, var(--mkt-grad-1), var(--mkt-grad-2) 55%, var(--mkt-grad-3));
  color: #fff;
  padding: 64px 0;
}
.mkt-cta-inner { text-align: center; }
.mkt-cta-band h2 { font-size: 32px; letter-spacing: 0; margin-bottom: 8px; }
.mkt-cta-band p { color: rgba(255, 255, 255, 0.78); margin-bottom: 24px; }
.mkt-body .mkt-cta-band .mkt-btn-primary { background: #fff; color: var(--mkt-grad-2); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18); }
.mkt-body .mkt-cta-band .mkt-btn-primary:hover { background: #f3f0ff; color: var(--mkt-grad-2); }
.mkt-body .mkt-cta-band .mkt-btn-ghost { background: rgba(255, 255, 255, 0.15); color: #fff; }
.mkt-body .mkt-cta-band .mkt-btn-ghost:hover { background: rgba(255, 255, 255, 0.22); color: #fff; }
.mkt-cta-band .mkt-hero-cta { justify-content: center; }

/* ---------- Footer ---------- */
.mkt-footer { background: #0d0c1f; color: rgba(255, 255, 255, 0.78); padding: 64px 0 24px; }
.mkt-footer .mkt-brand { color: #fff !important; }
.mkt-footer-inner {
  max-width: var(--mkt-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 32px;
}
.mkt-footer-brand p { font-size: 14px; margin: 14px 0 16px; max-width: 320px; }
.mkt-footer-badges { display: flex; flex-wrap: wrap; gap: 10px; font-size: 12.5px; }
.mkt-footer-badges span { background: rgba(255, 255, 255, 0.08); padding: 4px 10px; border-radius: 999px; }
.mkt-footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.mkt-footer-col a { display: block; color: rgba(255, 255, 255, 0.72); font-size: 14px; padding: 4px 0; }
.mkt-footer-col a:hover { color: #fff; text-decoration: none; }
.mkt-footer-bottom {
  max-width: var(--mkt-max);
  margin: 32px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: rgba(255, 255, 255, 0.55); font-size: 13px;
}

.mkt-body .mkt-trust {
  background: #07112c;
  border-color: rgba(86, 166, 255, .18);
}
.mkt-body .mkt-trust-inner {
  color: rgba(237, 246, 255, .68);
}
.mkt-body .mkt-trust-inner strong {
  padding: 7px 11px;
  border: 1px solid rgba(86, 166, 255, .18);
  border-radius: 999px;
  color: #edf6ff;
  background: rgba(255, 255, 255, .06);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.mkt-body .mkt-cta-band {
  background:
    radial-gradient(circle at 18% 78%, rgba(29, 124, 255, .46), transparent 24%),
    radial-gradient(circle at 82% 34%, rgba(255, 44, 87, .32), transparent 26%),
    linear-gradient(135deg, #050a1c, #071b48 52%, #19091e);
}
.mkt-body .mkt-vault-auth-list span {
  color: #edf6ff;
}
.mkt-body .mkt-card-icon {
  color: #fff;
  background: linear-gradient(135deg, #1d7cff, #14b88a);
  box-shadow: 0 14px 28px rgba(29, 124, 255, .18);
}
.mkt-body .mkt-card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Audience landing pages ---------- */
.mkt-hero-audience {
  position: relative;
  overflow: hidden;
  padding: 78px 0 84px;
  color: #edf6ff;
  background:
    radial-gradient(circle at 14% 76%, rgba(29, 124, 255, .42), transparent 24%),
    radial-gradient(circle at 86% 56%, rgba(255, 44, 87, .30), transparent 25%),
    radial-gradient(circle at 52% 12%, rgba(20, 184, 138, .18), transparent 24%),
    linear-gradient(135deg, #050a1c, #071b48 52%, #19091e);
}
.mkt-hero-audience::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(86, 166, 255, .18) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, .05) 48% 49%, transparent 49% 100%);
  background-size: 22px 22px, 100% 100%;
  opacity: .42;
  pointer-events: none;
}
.mkt-hero-audience--family {
  background:
    radial-gradient(circle at 13% 76%, rgba(29, 124, 255, .42), transparent 24%),
    radial-gradient(circle at 84% 58%, rgba(255, 44, 87, .34), transparent 26%),
    radial-gradient(circle at 52% 16%, rgba(20, 184, 138, .16), transparent 24%),
    linear-gradient(135deg, #050a1c, #071738 50%, #220a2a);
}
.mkt-hero-audience--business {
  background:
    radial-gradient(circle at 14% 70%, rgba(29, 124, 255, .42), transparent 24%),
    radial-gradient(circle at 82% 40%, rgba(20, 184, 138, .24), transparent 24%),
    radial-gradient(circle at 86% 72%, rgba(255, 44, 87, .30), transparent 25%),
    linear-gradient(135deg, #050a1c, #071b48 52%, #160b22);
}
.mkt-hero-audience .mkt-hero-grid {
  position: relative;
  z-index: 1;
}
.mkt-hero-audience .mkt-hero-copy h1 {
  color: #fff;
  max-width: 680px;
}
.mkt-hero-audience .mkt-lead {
  color: rgba(237, 246, 255, .82);
}
.mkt-hero-audience .mkt-eyebrow {
  color: #d7fbff;
  background: rgba(29, 124, 255, .18);
  border: 1px solid rgba(85, 171, 255, .26);
  box-shadow: 0 0 30px rgba(29, 124, 255, .16);
}
.mkt-body .mkt-hero-audience .mkt-btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .14);
}
.mkt-body .mkt-hero-audience .mkt-btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, .19);
}
.mkt-audience-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(86, 166, 255, .28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 72%, rgba(29, 124, 255, .28), transparent 26%),
    radial-gradient(circle at 84% 68%, rgba(255, 44, 87, .24), transparent 26%),
    linear-gradient(145deg, rgba(8, 24, 64, .82), rgba(31, 12, 44, .78));
  box-shadow: 0 34px 90px rgba(0, 0, 0, .32), inset 0 0 0 1px rgba(255, 255, 255, .08);
}
.mkt-audience-visual::before {
  content: "";
  position: absolute;
  inset: -80px -60px;
  background:
    radial-gradient(circle at 20% 28%, rgba(29, 124, 255, .38), transparent 18%),
    radial-gradient(circle at 84% 64%, rgba(255, 44, 87, .30), transparent 19%);
  filter: blur(12px);
}
.mkt-audience-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(closest-side at 22% 72%, rgba(29, 124, 255, .74), transparent 16%),
    radial-gradient(closest-side at 84% 35%, rgba(255, 44, 87, .70), transparent 14%),
    radial-gradient(rgba(86, 166, 255, .20) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 20px 20px;
  opacity: .36;
  pointer-events: none;
}
.mkt-audience-visual > * {
  position: absolute;
  z-index: 1;
}
.mkt-phone-card,
.mkt-vault-mini-panel,
.mkt-family-hub,
.mkt-family-list,
.mkt-business-panel,
.mkt-audit-panel {
  border: 1px solid rgba(113, 177, 255, .34);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, rgba(23, 50, 108, .78), rgba(50, 22, 66, .76));
  box-shadow: 0 24px 50px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}
.mkt-phone-card {
  top: 44px;
  left: 36px;
  width: 178px;
  padding: 22px;
}
.mkt-phone-card span,
.mkt-family-hub span,
.mkt-business-panel header span {
  display: block;
  color: rgba(237, 246, 255, .70);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.mkt-phone-card strong {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin: 14px 0 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #07112c 0 55%, transparent 56%),
    conic-gradient(#1d7cff 0 73%, rgba(255, 255, 255, .16) 73% 100%);
  color: #fff;
  font-size: 34px;
  line-height: 1;
}
.mkt-phone-card small,
.mkt-family-hub small {
  display: block;
  color: rgba(237, 246, 255, .72);
  font-size: 13px;
  line-height: 1.35;
}
.mkt-vault-mini-panel {
  right: 34px;
  bottom: 36px;
  width: min(390px, calc(100% - 76px));
  padding: 18px;
}
.mkt-vault-mini-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.mkt-vault-mini-panel header strong,
.mkt-family-hub strong,
.mkt-business-panel header strong,
.mkt-audit-panel strong {
  color: #fff;
  font-size: 20px;
}
.mkt-vault-mini-panel header span {
  max-width: 140px;
  overflow: hidden;
  color: rgba(237, 246, 255, .54);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mkt-vault-mini-panel div,
.mkt-family-list div,
.mkt-business-panel div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 60px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
}
.mkt-vault-mini-panel div + div,
.mkt-family-list div + div,
.mkt-business-panel div + div {
  margin-top: 9px;
}
.mkt-vault-mini-panel i,
.mkt-family-list i,
.mkt-business-panel i {
  width: 42px;
  height: 42px;
  grid-row: 1 / span 2;
  border-radius: 13px;
  background: linear-gradient(135deg, #1d7cff, #6754ff);
  box-shadow: 0 0 26px rgba(29, 124, 255, .32);
}
.mkt-vault-mini-panel div strong,
.mkt-family-list div strong,
.mkt-business-panel div strong {
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mkt-vault-mini-panel div span,
.mkt-family-list div span,
.mkt-business-panel div span,
.mkt-audit-panel span {
  min-width: 0;
  overflow: hidden;
  color: rgba(237, 246, 255, .67);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mkt-vault-mini-panel div::after {
  content: "...";
  grid-column: 3;
  grid-row: 1 / span 2;
  color: rgba(237, 246, 255, .54);
  letter-spacing: .12em;
}
.mkt-family-hub {
  top: 42px;
  left: 38px;
  width: 280px;
  padding: 24px;
}
.mkt-family-hub strong {
  display: block;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.05;
}
.mkt-family-avatars {
  display: flex;
  margin-top: 20px;
}
.mkt-family-avatars i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-right: -8px;
  border: 2px solid rgba(7, 17, 44, .88);
  border-radius: 50%;
  background: linear-gradient(135deg, #1d7cff, #14b88a);
  color: #fff;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
}
.mkt-family-list {
  right: 34px;
  bottom: 34px;
  width: min(380px, calc(100% - 76px));
  padding: 18px;
}
.mkt-audience-visual--family .mkt-family-list i {
  background: linear-gradient(135deg, #1d7cff, #ff2c57);
}
.mkt-business-panel {
  top: 36px;
  left: 34px;
  width: min(430px, calc(100% - 70px));
  padding: 18px;
}
.mkt-business-panel header {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}
.mkt-business-panel em {
  display: grid;
  place-items: center;
  grid-column: 3;
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(20, 184, 138, .14);
  color: #58e6a8;
  font-style: normal;
  font-weight: 900;
}
.mkt-audit-panel {
  right: 38px;
  bottom: 36px;
  width: 300px;
  padding: 20px;
  display: grid;
  gap: 10px;
}
.mkt-audit-panel span {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .mkt-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .mkt-hero-product .mkt-hero-grid { grid-template-columns: 1fr; }
  .mkt-hero-product .mkt-product-visual--ui { max-width: 680px; }
  .mkt-audience-visual { max-width: 680px; width: 100%; margin: 0 auto; }
  .mkt-hero-conversion { min-height: auto; }
  .mkt-hero-conversion .mkt-hero-grid { min-height: 520px; }
  .mkt-hero-copy h1 { font-size: 38px; }
  .mkt-split, .mkt-split-visual { grid-template-columns: 1fr; gap: 32px; }
  .mkt-showcase,
  .mkt-showcase--reverse { grid-template-columns: 1fr; }
  .mkt-showcase--reverse .mkt-showcase-media { order: 0; }
  .mkt-cards, .mkt-cards-4 { grid-template-columns: repeat(2, 1fr); }
  .mkt-suite-grid { grid-template-columns: repeat(2, 1fr); }
  .mkt-audience { grid-template-columns: 1fr; }
  .mkt-steps { grid-template-columns: 1fr; }
  .mkt-compare-grid { grid-template-columns: repeat(2, 1fr); }
  .mkt-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .mkt-plan-featured { transform: none; }
  .mkt-compliance { grid-template-columns: repeat(2, 1fr); }
  .mkt-footer-inner { grid-template-columns: repeat(2, 1fr); }
  .mkt-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .mkt-nav-links, .mkt-nav-cta { display: none; }
  .mkt-nav-burger { display: inline-flex; }
  .mkt-mobile {
    display: block;
    border-top: 1px solid var(--mkt-border);
    padding: 16px 24px;
    background: #fff;
  }
  .mkt-mobile a { display: block; padding: 12px 0; color: var(--mkt-ink); font-weight: 500; }
  .mkt-mobile hr { border: none; border-top: 1px solid var(--mkt-border); margin: 8px 0; }
  .mkt-mobile .mkt-btn { display: flex; margin-top: 8px; }

  .mkt-section { padding: 56px 0; }
  .mkt-section-head h2 { font-size: 28px; }
  .mkt-hero-copy h1 { font-size: 32px; }
  .mkt-hero-product .mkt-hero-copy h1 { font-size: 32px; }
  .mkt-lead { font-size: 16px; }
  .mkt-hero-product { padding: 48px 0 36px; }
  .mkt-hero-audience { padding: 48px 0 44px; }
  .mkt-audience-visual {
    min-height: auto;
    padding: 16px;
  }
  .mkt-audience-visual > * {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }
  .mkt-audience-visual > * + * { margin-top: 14px; }
  .mkt-phone-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 14px;
    align-items: center;
  }
  .mkt-phone-card strong {
    grid-row: 1 / span 3;
    width: 86px;
    height: 86px;
    margin: 0;
    font-size: 28px;
  }
  .mkt-vault-mini-panel,
  .mkt-family-list,
  .mkt-business-panel,
  .mkt-audit-panel {
    padding: 14px;
  }
  .mkt-family-hub strong { font-size: 24px; }
  .mkt-vault-mini-panel div,
  .mkt-family-list div,
  .mkt-business-panel div {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    min-height: 54px;
  }
  .mkt-vault-mini-panel i,
  .mkt-family-list i,
  .mkt-business-panel i {
    width: 36px;
    height: 36px;
  }
  .mkt-family-list div {
    grid-template-columns: 36px minmax(0, 1fr);
  }
  .mkt-family-list div span {
    grid-column: 2;
  }
  .mkt-hero-product .mkt-product-visual { height: auto; min-height: auto; }
  .mkt-product-visual--ui,
  .mkt-showcase-media--mock { padding: 10px; }
  .mkt-vault-card-grid,
  .mkt-vault-ui--items .mkt-vault-card-grid { grid-template-columns: 1fr; }
  .mkt-vault-ui--hero .mkt-vault-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mkt-vault-item { min-height: 98px; }
  .mkt-vault-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mkt-vault-auth-head { align-items: flex-start; flex-direction: column; }
  .mkt-vault-auth-list div { grid-template-columns: minmax(0, 1fr) auto; }
  .mkt-vault-auth-list strong {
    grid-column: 1;
    grid-row: auto;
    font-size: 16px;
  }
  .mkt-vault-auth-list i {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
  .mkt-hero-conversion { padding: 46px 0 34px; }
  .mkt-hero-conversion .mkt-hero-grid { min-height: auto; }
  .mkt-hero-conversion .mkt-product-visual { inset: 0; border-radius: 0; }
  .mkt-hero-conversion .mkt-product-visual::after {
    background: linear-gradient(180deg, rgba(5, 10, 20, 0.88), rgba(5, 10, 20, 0.78));
  }
  .mkt-hero-conversion .mkt-visual-panel { display: none; }
  .mkt-hero-proof { display: none; }
  .mkt-product-visual { min-height: auto; }
  .mkt-visual-panel { position: relative; margin: 10px; grid-template-columns: 1fr; }
  .mkt-visual-panel strong { text-align: left; }
  .mkt-split h2 { font-size: 28px; }
  .mkt-showcase { padding: 14px; gap: 20px; }
  .mkt-showcase-copy h3 { font-size: 24px; }
  .mkt-showcase-copy { max-width: none; }
  .mkt-proof-list article { grid-template-columns: 1fr; }
  .mkt-proof-list article > span { grid-row: auto; }
  .mkt-cards, .mkt-cards-4 { grid-template-columns: 1fr; }
  .mkt-suite-grid { grid-template-columns: 1fr; }
  .mkt-compare-grid { grid-template-columns: 1fr; }
  .mkt-pricing-grid { grid-template-columns: 1fr; }
  .mkt-compliance { grid-template-columns: 1fr; }
  .mkt-contact-grid { grid-template-columns: 1fr; }
  .mkt-footer-inner { grid-template-columns: 1fr; }
  .mkt-footer-bottom { flex-direction: column; align-items: flex-start; }
  .mkt-table-wrap { font-size: 14px; }
}

/* Mega menu collapses to plain links on touch */
@media (max-width: 720px) {
  .mkt-mega { display: none !important; }
}
