/* 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:    #f7f5ff;
  --mkt-ink:       #0d0c1f;
  --mkt-ink-soft:  #4b4970;
  --mkt-ink-muted: #6b6994;
  --mkt-border:    #e4e2f0;

  --mkt-grad-1: #1e0a3c;
  --mkt-grad-2: #5b21b6;
  --mkt-grad-3: #7c3aed;
  --mkt-accent: #a78bfa;

  --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; scroll-margin-top: calc(var(--mkt-nav-h) + 24px); }
.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--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-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-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;
}

/* ---------- NyoFinance product-led refresh ---------- */
.mkt-finance-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 70px;
  color: #f8fffc;
  background:
    radial-gradient(circle at 16% 72%, rgba(16, 185, 129, .36), transparent 26%),
    radial-gradient(circle at 78% 42%, rgba(56, 189, 248, .20), transparent 28%),
    linear-gradient(135deg, #031b17, #052e2b 52%, #07192d);
}
.mkt-finance-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(110, 231, 183, .14) 1px, transparent 1px),
    linear-gradient(120deg, transparent 0 46%, rgba(255, 255, 255, .06) 46% 47%, transparent 47% 100%);
  background-size: 22px 22px, 100% 100%;
  opacity: .48;
  pointer-events: none;
}
.mkt-finance-hero .mkt-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 46px;
}
.mkt-finance-hero .mkt-hero-copy h1,
.mkt-finance-hero .mkt-hero-copy h1 em { color: #fff; }
.mkt-finance-hero .mkt-hero-copy h1 em {
  background: linear-gradient(120deg, #6ee7b7, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mkt-finance-hero .mkt-lead,
.mkt-finance-hero .mkt-hero-bullets { color: rgba(240, 253, 249, .82); }
.mkt-finance-hero .mkt-eyebrow {
  color: #d1fae5;
  background: rgba(16, 185, 129, .16);
  border: 1px solid rgba(110, 231, 183, .24);
}
.mkt-body .mkt-finance-hero .mkt-btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .14);
}
.mkt-body .mkt-finance-hero .mkt-btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, .20);
}
.mkt-finance-product,
.mkt-finance-mock,
.mkt-finance-usecases {
  color: #0d1330;
  border: 1px solid rgba(110, 231, 183, .24);
  border-radius: 26px;
  background:
    radial-gradient(circle at 16% 14%, rgba(16, 185, 129, .16), transparent 34%),
    linear-gradient(145deg, rgba(248, 255, 252, .96), rgba(239, 247, 255, .92));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .75);
}
.mkt-finance-product {
  position: relative;
  overflow: hidden;
  min-height: 438px;
  padding: 18px;
}
.mkt-finance-product::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 22%, rgba(56, 189, 248, .20), transparent 24%),
    radial-gradient(circle at 78% 82%, rgba(16, 185, 129, .18), transparent 26%);
  pointer-events: none;
}
.mkt-finance-product > * { position: relative; z-index: 1; }
.mkt-finance-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 0 4px 12px;
}
.mkt-finance-topbar strong { color: #052e2b; font-size: 15px; }
.mkt-finance-topbar span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  color: #4b4970;
  font-size: 12px;
  font-weight: 700;
}
.mkt-finance-dashboard {
  display: grid;
  gap: 14px;
}
.mkt-finance-hero-balance,
.mkt-finance-wide-card,
.mkt-finance-panel,
.mkt-finance-kpis div,
.mkt-finance-summary div,
.mkt-shopping-list-card,
.mkt-shopping-items {
  border: 1px solid rgba(9, 71, 62, .10);
  border-radius: 18px;
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 14px 34px rgba(8, 47, 73, .09);
}
.mkt-finance-hero-balance {
  min-height: 114px;
  padding: 20px 22px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 36%, rgba(16, 185, 129, .22), transparent 24%),
    linear-gradient(135deg, #10172f, #24304f);
}
.mkt-finance-hero-balance span,
.mkt-finance-wide-card span,
.mkt-finance-kpis span,
.mkt-finance-summary span {
  display: block;
  color: #68628b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.mkt-finance-hero-balance span,
.mkt-finance-hero-balance small { color: rgba(255, 255, 255, .70); }
.mkt-finance-hero-balance strong {
  display: block;
  margin: 12px 0 8px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}
.mkt-finance-hero-balance small { font-size: 13px; }
.mkt-finance-kpis,
.mkt-finance-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.mkt-finance-kpis div,
.mkt-finance-summary div {
  min-width: 0;
  padding: 14px;
}
.mkt-finance-kpis strong,
.mkt-finance-summary strong {
  display: block;
  margin-top: 7px;
  color: #047857;
  font-size: 18px;
  white-space: nowrap;
}
.mkt-finance-kpis .is-danger,
.mkt-finance-summary .is-danger,
.mkt-finance-history .is-danger { color: #dc2626; }
.mkt-finance-mini-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 12px;
}
.mkt-finance-panel { padding: 14px; }
.mkt-finance-panel header,
.mkt-finance-mock-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.mkt-finance-panel header strong,
.mkt-finance-mock-title strong {
  min-width: 0;
  color: #0d1330;
  font-size: 14px;
}
.mkt-finance-panel header span,
.mkt-finance-mock-title span {
  color: #68628b;
  font-size: 12px;
}
.mkt-finance-tx-row,
.mkt-finance-history div,
.mkt-shopping-items div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  background: rgba(245, 247, 255, .84);
}
.mkt-finance-tx-row + .mkt-finance-tx-row,
.mkt-finance-history div + div,
.mkt-shopping-items div + div { margin-top: 8px; }
.mkt-finance-tx-row i,
.mkt-shopping-items i {
  width: 30px;
  height: 30px;
  grid-row: 1;
  border-radius: 10px;
  background: linear-gradient(135deg, #38bdf8, #10b981);
}
.mkt-finance-tx-row.is-income i { background: linear-gradient(135deg, #10b981, #6ee7b7); }
.mkt-finance-tx-row b,
.mkt-finance-history span,
.mkt-shopping-items strong {
  min-width: 0;
  overflow: hidden;
  color: #0d1330;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mkt-finance-tx-row span,
.mkt-shopping-items span {
  color: #68628b;
  font-size: 12px;
  font-weight: 700;
}
.mkt-finance-bars {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 18px;
  min-height: 116px;
  padding: 14px 6px 4px;
}
.mkt-finance-bars i {
  position: relative;
  width: 38px;
  height: 100px;
}
.mkt-finance-bars i::before,
.mkt-finance-bars i::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 14px;
  border-radius: 7px 7px 0 0;
}
.mkt-finance-bars i::before {
  left: 3px;
  height: var(--in);
  background: #10b981;
}
.mkt-finance-bars i::after {
  right: 3px;
  height: var(--out);
  background: #ef4444;
}
.mkt-finance-mock {
  min-width: 0;
  padding: 18px;
}
.mkt-finance-showcase .mkt-showcase-copy { max-width: 470px; }
.mkt-finance-wide-card {
  padding: 18px;
  margin-bottom: 12px;
  color: #fff;
  background: linear-gradient(135deg, #10172f, #26314f);
}
.mkt-finance-wide-card span { color: rgba(255, 255, 255, .66); }
.mkt-finance-wide-card strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 28px;
}
.mkt-finance-months,
.mkt-finance-filterbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.mkt-finance-months span,
.mkt-finance-months strong,
.mkt-finance-filterbar span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 10px;
  background: #fff;
  color: #4b4970;
  font-size: 12px;
}
.mkt-finance-months strong {
  background: #10b981;
  color: #fff;
}
.mkt-finance-mock--transactions .mkt-finance-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 12px;
}
.mkt-finance-history {
  border: 1px solid rgba(9, 71, 62, .10);
  border-radius: 18px;
  background: #fff;
  padding: 10px;
}
.mkt-finance-history div {
  grid-template-columns: 92px minmax(0, 1fr) auto;
  background: transparent;
}
.mkt-finance-history b {
  color: #68628b;
  font-size: 12px;
}
.mkt-finance-history strong {
  white-space: nowrap;
  color: #047857;
  font-size: 13px;
}
.mkt-shopping-preview {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}
.mkt-shopping-list-card {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  min-height: 220px;
  text-align: center;
}
.mkt-shopping-list-card i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #d1fae5;
  font-style: normal;
}
.mkt-shopping-list-card strong {
  color: #0d1330;
  font-size: 17px;
}
.mkt-shopping-list-card span,
.mkt-shopping-list-card small {
  color: #68628b;
  font-size: 12px;
}
.mkt-shopping-list-card b { color: #0d1330; }
.mkt-shopping-items { padding: 12px; }
.mkt-finance-usecases {
  display: grid;
  gap: 14px;
  padding: 20px;
  background:
    radial-gradient(circle at 82% 22%, rgba(16, 185, 129, .18), transparent 30%),
    linear-gradient(145deg, #f8fffc, #edf7ff);
}
.mkt-finance-usecases div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px 14px;
  align-items: center;
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(9, 71, 62, .10);
  border-radius: 18px;
  background: rgba(255, 255, 255, .84);
}
.mkt-finance-usecases div::before {
  content: "";
  width: 44px;
  height: 44px;
  grid-row: 1 / span 2;
  border-radius: 14px;
  background: linear-gradient(135deg, #10b981, #38bdf8);
}
.mkt-finance-usecases strong { font-size: 18px; }
.mkt-finance-usecases span { color: #68628b; font-size: 13px; }
.mkt-body .mkt-card-icon {
  color: #fff;
  background: linear-gradient(135deg, #047857, #10b981);
  box-shadow: 0 14px 28px rgba(16, 185, 129, .18);
}
.mkt-body .mkt-card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mkt-body .mkt-trust {
  background: #052e2b;
  border-color: rgba(110, 231, 183, .18);
}
.mkt-body .mkt-trust-inner { color: rgba(240, 253, 249, .72); }
.mkt-body .mkt-trust-inner strong {
  color: #ecfdf5;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(110, 231, 183, .18);
  border-radius: 999px;
  padding: 7px 11px;
}

/* ---------- 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-finance-hero .mkt-hero-grid { grid-template-columns: 1fr; }
  .mkt-finance-product { max-width: 720px; 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-finance-hero { padding: 48px 0 42px; }
  .mkt-finance-hero .mkt-hero-copy h1 { font-size: 32px; }
  .mkt-lead { font-size: 16px; }
  .mkt-finance-product,
  .mkt-finance-mock,
  .mkt-finance-usecases { border-radius: 20px; }
  .mkt-finance-product { min-height: auto; padding: 12px; }
  .mkt-finance-hero-balance { min-height: auto; padding: 16px; }
  .mkt-finance-hero-balance strong { font-size: 28px; }
  .mkt-finance-kpis,
  .mkt-finance-summary,
  .mkt-finance-mini-grid,
  .mkt-shopping-preview { grid-template-columns: 1fr; }
  .mkt-finance-mock--transactions .mkt-finance-summary { grid-template-columns: 1fr; }
  .mkt-finance-history div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .mkt-finance-filterbar span { flex: 1 1 100%; }
  .mkt-finance-bars { min-height: 86px; }
  .mkt-finance-bars i { height: 74px; }
  .mkt-shopping-list-card { min-height: 150px; }
  .mkt-hero-product { padding: 48px 0 36px; }
  .mkt-hero-product .mkt-product-visual { height: auto; min-height: auto; }
  .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; }
}

/* ============================================================ *
 * Whitelist / waitlist LP (templates/marketing/whitelist.html)
 * Conversion page rendered on the emerald finance palette (the
 * _head override retints --mkt-grad-*). Some base components use a
 * hard-coded purple rgba tint; we re-tint those to emerald under
 * `.wl-page` so the page reads cohesively as "money/finance".
 * ============================================================ */
:root {
  --wl-emerald-50:  #ecfdf5;
  --wl-emerald-100: #d1fae5;
  --wl-emerald-600: #047857;
  --wl-emerald-tint:   rgba(16, 185, 129, 0.10);
  --wl-emerald-tint-2: rgba(16, 185, 129, 0.16);
}

/* Re-tint base components from purple → emerald on this page only. */
.wl-page .mkt-eyebrow { background: var(--wl-emerald-tint); }
.wl-page .mkt-card-icon { background: var(--wl-emerald-tint); color: var(--mkt-grad-2); }
/* body carries BOTH .mkt-body and .wl-page, so the override must be a compound
 * selector (no descendant combinator) to outrank `.mkt-body .mkt-btn-ghost`. */
.mkt-body.wl-page .mkt-btn-ghost { background: var(--wl-emerald-tint); color: var(--mkt-grad-2); }
.mkt-body.wl-page .mkt-btn-ghost:hover { background: var(--wl-emerald-tint-2); color: var(--mkt-grad-2); }

/* ---- Nav (minimal) ---- */
.wl-nav-inner { max-width: var(--mkt-max); margin: 0 auto; justify-content: space-between; }

/* ---- Hero ---- */
.wl-hero {
  padding: 56px 0 72px;
  background:
    radial-gradient(ellipse at top left, rgba(16, 185, 129, 0.16), transparent 56%),
    radial-gradient(ellipse at top right, rgba(4, 120, 87, 0.10), transparent 60%),
    var(--mkt-bg-alt);
}
.wl-hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
.wl-eyebrow { color: var(--wl-emerald-600); }

/* ---- Capture card ---- */
.wl-form-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-r-lg);
  box-shadow: var(--mkt-shadow-lg);
  padding: 30px 26px 26px;
}
.wl-form-ribbon {
  position: absolute;
  top: -13px;
  left: 26px;
  background: linear-gradient(135deg, var(--mkt-grad-2), var(--mkt-grad-3));
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(16, 185, 129, 0.32);
}
.wl-form-title { font-size: 23px; margin: 6px 0 6px; }
.wl-form-sub { color: var(--mkt-ink-soft); font-size: 14.5px; margin-bottom: 20px; }
.wl-form { display: flex; flex-direction: column; gap: 14px; }
.wl-field { display: flex; flex-direction: column; gap: 6px; }
.wl-field > span { font-size: 13.5px; font-weight: 600; color: var(--mkt-ink); }
.wl-field input {
  height: 46px;
  padding: 0 14px;
  font-size: 15px;
  color: var(--mkt-ink);
  background: #fff;
  border: 1px solid var(--mkt-border);
  border-radius: 12px;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.wl-field input::placeholder { color: var(--mkt-ink-muted); }
.wl-field input:focus {
  outline: none;
  border-color: var(--mkt-grad-3);
  box-shadow: 0 0 0 3px var(--wl-emerald-tint-2);
}
.wl-field input:user-invalid { border-color: #e11d48; }
.wl-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--mkt-ink-soft);
  line-height: 1.4;
  cursor: pointer;
}
.wl-consent input { margin-top: 2px; width: 16px; height: 16px; accent-color: var(--mkt-grad-2); flex: none; }
.wl-form-error {
  margin: -2px 0 0;
  padding: 10px 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  border-radius: 10px;
  font-size: 13.5px;
}
.wl-form-note { color: var(--mkt-ink-muted); font-size: 12px; margin-top: 4px; line-height: 1.45; }

/* ---- Success panel ---- */
.wl-success { text-align: center; padding: 18px 8px 12px; }
.wl-success-mark {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--mkt-grad-2), var(--mkt-grad-3));
  box-shadow: 0 10px 22px rgba(16, 185, 129, 0.34);
}
.wl-success h2 { font-size: 22px; margin-bottom: 8px; }
.wl-success p { color: var(--mkt-ink-soft); font-size: 15px; max-width: 380px; margin: 0 auto; }

/* ---- Plans comparison table ---- */
.wl-plans-table { table-layout: fixed; }
.wl-plans-table th, .wl-plans-table td { text-align: center; }
.wl-plans-table th:first-child, .wl-plans-table td:first-child { text-align: left; font-weight: 500; color: var(--mkt-ink); }
.wl-plans-table thead th { font-size: 15px; vertical-align: bottom; padding-top: 20px; padding-bottom: 18px; }
.wl-plans-table thead th:first-child { color: var(--mkt-ink-soft); font-weight: 600; }
.wl-yes { color: var(--mkt-grad-2); font-weight: 700; }
.wl-no { color: var(--mkt-ink-muted); }

/* Emphasized "free forever" column: tinted band + thicker side borders so it
 * reads as the highlighted choice top-to-bottom. */
.wl-plans-table .wl-col-free {
  background: var(--wl-emerald-tint);
  border-left: 2px solid var(--mkt-grad-3);
  border-right: 2px solid var(--mkt-grad-3);
}
.wl-plans-table thead .wl-col-free {
  border-top: 2px solid var(--mkt-grad-3);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.wl-plans-table tbody tr:last-child .wl-col-free {
  border-bottom: 2px solid var(--mkt-grad-3);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.wl-col-free-name { display: block; font-size: 16px; font-weight: 700; color: var(--wl-emerald-600); }
.wl-col-free-badge {
  display: inline-block;
  margin-top: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, var(--mkt-grad-2), var(--mkt-grad-3));
  padding: 3px 9px;
  border-radius: 999px;
}
.wl-plans-table .wl-price-row td { font-weight: 700; color: var(--mkt-ink); border-top: 2px solid var(--mkt-border); }
.wl-plans-table .wl-price-row .wl-col-free { color: var(--wl-emerald-600); }

.wl-free-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 26px;
  background: linear-gradient(120deg, var(--wl-emerald-50), #fff);
  border: 1px solid var(--wl-emerald-100);
  border-radius: var(--mkt-r-lg);
}
.wl-free-callout p { font-size: 16px; font-weight: 600; color: var(--mkt-ink); margin: 0; max-width: 640px; }

/* ---- Security / privacy cards ---- */
.wl-sec-card--total {
  position: relative;
  border: 2px solid var(--mkt-grad-3);
  background: linear-gradient(160deg, var(--wl-emerald-50), #fff 70%);
}
.wl-sec-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--mkt-grad-2), var(--mkt-grad-3));
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---- Dynamic plans (fetched from /api/plans) ---- */
.wl-plans-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin-bottom: 36px;
}
.wl-plans-controls .mkt-pricing-toggle { margin-top: 0; }
/* Fit all five business tiers on one row (auto-fit collapses to 4 for the
 * personal ladder). Narrower min + tighter gap/padding than the generic
 * .mkt-pricing-grid so 5 cards clear the 1180px container. */
.wl-plans-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  min-height: 120px;
}
.wl-plans-grid .mkt-plan { padding: 24px 18px; gap: 13px; }
.wl-plans-grid .mkt-plan-amount { font-size: 30px; }
.wl-plan-billed { display: block; margin-top: -8px; color: var(--mkt-ink-muted); font-size: 12.5px; }
.wl-plans-status {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--mkt-ink-muted);
  font-size: 15px;
  padding: 28px 0;
}
.wl-plan-free .mkt-plan-period { color: var(--wl-emerald-600); font-weight: 600; }
/* "(em breve)" feature lines: swap the ✓ for a neutral marker + mute them so
 * they don't read as already-included. */
.wl-plan-features li.wl-feat-soon { color: var(--mkt-ink-muted); }
.wl-plan-features li.wl-feat-soon::before { content: "⏳ "; color: var(--mkt-ink-muted); }

/* ---- Footer (social) ---- */
.wl-footer { padding: 48px 0 24px; }
.wl-footer-inner {
  max-width: var(--mkt-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wl-footer-brand { display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
.wl-footer-brand p { font-size: 14px; color: rgba(255, 255, 255, 0.72); margin: 0; }
.wl-social { display: flex; flex-direction: column; gap: 10px; }
.wl-social-title { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255, 255, 255, 0.6); }
.wl-social-links { display: flex; gap: 10px; }
.wl-social-links a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82) !important;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}
.wl-social-links a:hover {
  background: linear-gradient(135deg, var(--mkt-grad-2), var(--mkt-grad-3));
  color: #fff !important;
  transform: translateY(-2px);
  text-decoration: none;
}
.wl-social-links svg { width: 20px; height: 20px; }
.wl-footer-legal { display: flex; flex-direction: column; gap: 6px; }
.wl-footer-legal a { color: rgba(255, 255, 255, 0.72); font-size: 14px; }
.wl-footer-legal a:hover { color: #fff; text-decoration: none; }
.wl-footer-bottom { margin-top: 28px; }

@media (max-width: 860px) {
  .wl-footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .wl-hero { padding: 36px 0 48px; }
  .wl-form-card { padding: 26px 18px 22px; }
  .wl-plans-table thead th { font-size: 13.5px; }
  .wl-plans-table th, .wl-plans-table td { padding: 12px 10px; }
  .wl-free-callout { flex-direction: column; align-items: flex-start; }
}
