/* ────────────────────────────────────────────────────────────
   LakeSight preview — shared stylesheet
   Tokens mirror 02-design-system/tokens/tokens.css verbatim.
   ──────────────────────────────────────────────────────────── */

:root {
  --color-primary-50:  #16E9B8; --color-primary-100: #16E9B8;
  --color-primary-200: #14CFA4; --color-primary-300: #11B58F;
  --color-primary-400: #16876E; --color-primary-500: #115545;
  --color-primary-600: #0E493B; --color-primary-700: #0C3D32;
  --color-primary-800: #0A3127; --color-primary-900: #092922;

  --color-neutral-50:  #FAFAFA; --color-neutral-100: #F2F2F2;
  --color-neutral-200: #DFDFDF; --color-neutral-300: #BFBFBF;
  --color-neutral-400: #939393; --color-neutral-500: #949494;
  --color-neutral-600: #767676; --color-neutral-700: #595959;
  --color-neutral-800: #2C2C2C; --color-neutral-900: #0F0F0F;

  --color-success-50:#EAFCEC;--color-success-100:#BEF4C4;--color-success-200:#98E7A2;
  --color-success-300:#72E880;--color-success-400:#56E467;--color-success-500:#2CDD41;
  --color-success-600:#28C93B;--color-success-700:#1F9D2E;--color-success-800:#187A24;
  --color-success-900:#125D1B;

  --color-error-50:#FCEBEB;--color-error-100:#F7C0C0;--color-error-200:#F3A2A2;
  --color-error-300:#EE7777;--color-error-400:#EA5D5D;--color-error-500:#E53434;
  --color-error-600:#D02F2F;--color-error-700:#A32525;--color-error-800:#7E1D1D;
  --color-error-900:#601616;

  --color-warning-50:#FFFCEC;--color-warning-100:#FFF7C5;--color-warning-200:#FFF4A9;
  --color-warning-300:#FFEE82;--color-warning-400:#FFEB69;--color-warning-500:#FFE644;
  --color-warning-600:#E8D13E;--color-warning-700:#B5A330;--color-warning-800:#8C7F25;
  --color-warning-900:#6B611D;

  --color-white: #FFFFFF; --color-black: #000000;

  --color-background: var(--color-white);
  --color-background-subtle: var(--color-neutral-50);
  --color-background-muted: var(--color-neutral-100);
  --color-surface: var(--color-white);
  --color-surface-inverse: var(--color-primary-900);
  --color-text: var(--color-neutral-900);
  --color-text-muted: var(--color-neutral-700);
  --color-text-subtle: var(--color-neutral-500);
  --color-text-disabled: var(--color-neutral-400);
  --color-text-inverse: var(--color-white);
  --color-text-link: var(--color-primary-300);
  --color-border: var(--color-neutral-300);
  --color-border-strong: var(--color-neutral-500);
  --color-border-subtle: var(--color-neutral-200);
  --color-border-focus: var(--color-primary-300);
  --color-brand: var(--color-primary-700);
  --color-brand-hover: var(--color-primary-800);
  --color-brand-pressed: var(--color-primary-900);
  --color-brand-accent: var(--color-primary-300);
  --color-brand-highlight: var(--color-primary-100);
  --color-success: var(--color-success-500);
  --color-error: var(--color-error-500);
  --color-warning: var(--color-warning-500);

  --font-sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  /* Classier brand accent — use the dark forest gradient as the primary
     decorative device. The bright mint (primary-100) is now reserved
     for tiny accents (focus rings, status dots), not full backgrounds. */
  --gradient-forest: linear-gradient(135deg, var(--color-primary-900) 0%, var(--color-primary-500) 100%);
  --gradient-forest-soft: linear-gradient(135deg, var(--color-primary-900) 0%, var(--color-primary-700) 60%, var(--color-primary-500) 100%);
  --gradient-mist: linear-gradient(180deg, transparent 0%, rgba(15, 41, 34, 0.85) 100%);

  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 12px;
  --radius-xl: 16px; --radius-2xl: 24px; --radius-full: 9999px;
  --radius-button: var(--radius-md); --radius-card: var(--radius-lg);
  --radius-input: var(--radius-sm); --radius-badge: var(--radius-full);

  --shadow-sm:  0 1px 2px 0 rgba(15,15,15,0.05);
  --shadow-md:  0 1px 2px 0 rgba(15,15,15,0.06), 0 4px 8px -2px rgba(15,15,15,0.08);
  --shadow-lg:  0 2px 4px -1px rgba(15,15,15,0.06), 0 12px 24px -6px rgba(15,15,15,0.12);
  --shadow-xl:  0 4px 8px -2px rgba(15,15,15,0.08), 0 24px 48px -12px rgba(15,15,15,0.18);
  --shadow-focus: 0 0 0 3px rgba(17,181,143,0.35);

  --duration-1: 75ms; --duration-2: 150ms; --duration-3: 200ms;
  --duration-4: 300ms; --duration-5: 450ms; --duration-6: 600ms;

  --ease-out: cubic-bezier(0,0,0.2,1); --ease-in: cubic-bezier(0.4,0,1,1);
  --ease-in-out: cubic-bezier(0.42,0,0.58,1);
  --ease-snappy: cubic-bezier(0.19,1,0.22,1);
  --ease-swift: cubic-bezier(0.17,0.89,0.32,1.10);
  --ease-overshoot: cubic-bezier(0.17,0.89,0.32,1.27);
}

/* ─── Reset + base ─── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-size: 16px; line-height: 1.5;
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 36px; /* room for preview-nav */
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, h5, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--color-primary-100); color: var(--color-primary-900); }
:focus-visible { outline: none; box-shadow: var(--shadow-focus); border-radius: var(--radius-sm); }

/* ─── KEYFRAMES ─── */
@keyframes ls-spin { to { transform: rotate(360deg); } }
@keyframes ls-pulse-soft { 0%,100% { opacity:1; } 50% { opacity:.55; } }
@keyframes ls-shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes ls-progress-indeterminate { 0% { transform: translateX(-100%); } 100% { transform: translateX(400%); } }
@keyframes ls-dot-pulse { 0%,80%,100% { transform: scale(0.6); opacity: 0.5; } 40% { transform: scale(1); opacity: 1; } }
@keyframes reveal-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-eyebrow { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ────────────────────────────────────────────────────────────
   PREVIEW NAV (dev-only) — sticky bar at the very top,
   above the page's own sticky header.
   ──────────────────────────────────────────────────────────── */
.preview-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 36px;
  display: flex; align-items: center; gap: 6px;
  padding: 0 16px;
  background: var(--color-neutral-900); color: rgba(255,255,255,0.85);
  font-size: 12px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  /* Preview chrome only: scroll internally on narrow screens so it never stretches the page width. */
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.preview-nav::-webkit-scrollbar { display: none; }
.preview-nav-link { flex: 0 0 auto; }
.preview-nav-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5); margin-right: 12px;
}
.preview-nav-link {
  padding: 4px 10px; border-radius: 6px;
  color: rgba(255,255,255,0.7);
  transition: background-color var(--duration-2) var(--ease-snappy), color var(--duration-2) var(--ease-snappy);
}
.preview-nav-link:hover { color: white; background: rgba(255,255,255,0.08); }
.preview-nav-link.active { background: rgba(255,255,255,0.12); color: white; }
.preview-nav-spacer { flex: 1; }
.preview-nav-meta { font-size: 11px; color: rgba(255,255,255,0.4); }

/* ────────────────────────────────────────────────────────────
   LAYOUT
   ──────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 64px; } }
/* Masthead (header + hero) widens with the viewport for a more immersive hero; body sections stay at 1280 for readable line length. */
.header .container { max-width: 1600px; }
@media (min-width: 1760px) { .header .container { max-width: min(90vw, 1920px); } }
.container-narrow { max-width: 768px; margin: 0 auto; }

.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 112px 0; } }
.section-subtle { background: var(--color-background-subtle); }
.section-inverse { background: var(--color-surface-inverse); color: var(--color-text-inverse); }

.section-eyebrow {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 600; color: var(--color-brand); margin-bottom: 12px;
}
.section-inverse .section-eyebrow { color: var(--color-primary-100); }
.section-title {
  font-size: 36px; font-weight: 700; line-height: 1.05; letter-spacing: -0.01em;
  margin-bottom: 12px;
}
@media (min-width: 768px) { .section-title { font-size: 40px; } }
.section-subtitle { font-size: 18px; color: var(--color-text-muted); max-width: 640px; }
.section-inverse .section-subtitle { color: var(--color-primary-100); }
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-left: auto; margin-right: auto; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.visible { animation: reveal-up 600ms var(--ease-snappy) forwards; }
.reveal-stagger > * { opacity: 0; transform: translateY(16px); }
.reveal-stagger.visible > * { animation: reveal-up 500ms var(--ease-snappy) forwards; }
.reveal-stagger.visible > *:nth-child(1) { animation-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { animation-delay: 80ms; }
.reveal-stagger.visible > *:nth-child(3) { animation-delay: 160ms; }
.reveal-stagger.visible > *:nth-child(4) { animation-delay: 240ms; }
.reveal-stagger.visible > *:nth-child(5) { animation-delay: 320ms; }
.reveal-stagger.visible > *:nth-child(6) { animation-delay: 400ms; }

/* ─── HEADER (marketing) ─── */
.header {
  position: sticky; top: 0;
  z-index: 40; width: 100%;
  transition: background-color var(--duration-3) var(--ease-out), backdrop-filter var(--duration-3) var(--ease-out), box-shadow var(--duration-3) var(--ease-out);
}
.header.scrolled {
  background: color-mix(in srgb, var(--color-background) 85%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand-mark { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.brand-logo-img { height: 28px; width: auto; display: block; }
.brand-mark-logo {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--color-primary-700), var(--color-primary-300));
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-size: 14px; font-weight: 700;
}
.nav-links { display: none; gap: 28px; align-items: center; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--color-text-muted);
  transition: color var(--duration-2) var(--ease-snappy);
}
.nav-link:hover { color: var(--color-text); }
.header-cta { display: flex; gap: 8px; }
/* On mobile keep the primary "Open the app" CTA, drop the ghost "Sign in" (nav-links already hidden). */
@media (max-width: 767px) { .header-cta .btn-ghost { display: none; } }

/* ─── BUTTON ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: var(--radius-button); font-family: inherit;
  font-weight: 600; white-space: nowrap; cursor: pointer; text-decoration: none;
  transition: background-color var(--duration-2) var(--ease-snappy),
              color var(--duration-2) var(--ease-snappy),
              border-color var(--duration-2) var(--ease-snappy),
              box-shadow var(--duration-2) var(--ease-snappy),
              transform var(--duration-2) var(--ease-snappy);
}
.btn:active { transform: scale(0.98); transition-duration: var(--duration-1); }
.btn:disabled { opacity: 0.5; pointer-events: none; }
.btn-sm { height: 32px; padding: 0 12px; font-size: 14px; }
.btn-md { height: 40px; padding: 0 20px; font-size: 14px; }
.btn-lg { height: 48px; padding: 0 24px; font-size: 16px; }
.btn-icon { width: 40px; height: 40px; padding: 0; }
.btn-primary { background: var(--color-brand); color: white; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--color-brand-hover); box-shadow: var(--shadow-lg); }
.btn-secondary { background: var(--color-background-muted); color: var(--color-text); }
.btn-secondary:hover { background: var(--color-border-subtle); }
.btn-outline { background: transparent; color: var(--color-text); border: 1px solid var(--color-border); }
.btn-outline:hover { background: var(--color-background-muted); border-color: var(--color-border-strong); }
.btn-ghost { background: transparent; color: var(--color-text); }
.btn-ghost:hover { background: var(--color-background-muted); }
.btn-destructive { background: var(--color-error); color: white; box-shadow: var(--shadow-md); }
.btn-destructive:hover { background: var(--color-error-600); }
.btn-link { background: transparent; color: var(--color-text-link); padding: 0; height: auto; }
.btn-link:hover { text-decoration: underline; }
.section-inverse .btn-outline { border-color: rgba(255,255,255,0.25); color: white; }
.section-inverse .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.section-inverse .btn-ghost { color: white; }
.section-inverse .btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* ─── BADGE ─── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 10px; border-radius: var(--radius-badge);
  font-size: 12px; font-weight: 600; line-height: 1.4;
}
.badge-brand { background: var(--color-brand-highlight); color: var(--color-primary-900); }
.badge-neutral { background: var(--color-background-muted); color: var(--color-text-muted); }
.badge-success { background: var(--color-success-100); color: var(--color-success-900); }
.badge-warning { background: var(--color-warning-100); color: var(--color-warning-900); }
.badge-error { background: var(--color-error-100); color: var(--color-error-900); }
.badge-outline { background: transparent; border: 1px solid var(--color-border); color: var(--color-text-muted); }
.badge-dot::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 9999px; background: currentColor; }

/* ─── INPUT ─── */
.field { display: block; }
.field-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--color-text); }
.field-help { font-size: 12px; color: var(--color-text-muted); margin-top: 6px; }
.field-help.error { color: var(--color-error-700); }
.input {
  width: 100%; height: 40px; padding: 0 14px;
  border: 1px solid var(--color-border); border-radius: var(--radius-input);
  background: var(--color-surface); color: var(--color-text);
  font-family: inherit; font-size: 14px;
  transition: border-color var(--duration-2) var(--ease-snappy), box-shadow var(--duration-2) var(--ease-snappy);
}
.input::placeholder { color: var(--color-text-disabled); }
.input:hover { border-color: var(--color-border-strong); }
.input:focus { outline: none; border-color: var(--color-border-focus); box-shadow: var(--shadow-focus); }
.input[aria-invalid="true"] { border-color: var(--color-error); }
.input[aria-invalid="true"]:focus { box-shadow: 0 0 0 3px rgba(229,52,52,0.30); }
.input:disabled { background: var(--color-background-subtle); color: var(--color-text-disabled); cursor: not-allowed; }

/* ─── CARD ─── */
.card {
  background: var(--color-surface); border-radius: var(--radius-card);
  border: 1px solid var(--color-border-subtle);
  padding: 24px;
  transition: transform var(--duration-3) var(--ease-swift), box-shadow var(--duration-3) var(--ease-out);
}
.card-hover:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.card-title { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.card-description { font-size: 14px; color: var(--color-text-muted); }

/* ─── AVATAR ─── */
.avatar {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-background-muted); color: var(--color-text-muted);
  font-weight: 600; border-radius: var(--radius-full); overflow: hidden;
  user-select: none; vertical-align: middle;
}
.avatar-xs { width: 24px; height: 24px; font-size: 10px; }
.avatar-sm { width: 32px; height: 32px; font-size: 11px; }
.avatar-md { width: 40px; height: 40px; font-size: 13px; }
.avatar-lg { width: 48px; height: 48px; font-size: 14px; }
.avatar-xl { width: 64px; height: 64px; font-size: 18px; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-group { display: inline-flex; }
.avatar-group .avatar { box-shadow: 0 0 0 2px var(--color-background); }
.avatar-group .avatar + .avatar { margin-left: -8px; }

/* ─── LOADERS ─── */
.spinner {
  display: inline-block; border-radius: 9999px; flex-shrink: 0;
  border: 2px solid var(--color-border); border-top-color: var(--color-text);
  animation: ls-spin 0.9s linear infinite;
}
.spinner-xs { width: 12px; height: 12px; border-width: 1.5px; }
.spinner-sm { width: 16px; height: 16px; }
.spinner-md { width: 20px; height: 20px; }
.spinner-lg { width: 24px; height: 24px; }
.spinner-xl { width: 32px; height: 32px; border-width: 3px; }
.spinner-brand { border-color: var(--color-brand-highlight); border-top-color: var(--color-brand); }
.spinner-inverse { border-color: rgba(255,255,255,0.3); border-top-color: white; }

.skeleton {
  border-radius: var(--radius-sm); background: var(--color-background-muted);
  background-image: linear-gradient(90deg, transparent 0%, rgba(15,15,15,0.06) 50%, transparent 100%);
  background-size: 200% 100%; animation: ls-shimmer 1.4s linear infinite;
}

.progress {
  position: relative; width: 100%; height: 6px;
  background: var(--color-background-muted); border-radius: 9999px; overflow: hidden;
}
.progress-fill { height: 100%; background: var(--color-brand); border-radius: 9999px; transition: width var(--duration-3) var(--ease-out); }
.progress-indeterminate-fill {
  position: absolute; inset-block: 0; left: 0; width: 33%; height: 100%;
  background: var(--color-brand); border-radius: 9999px;
  animation: ls-progress-indeterminate 1.4s cubic-bezier(0.4,0,0.2,1) infinite;
}

.dot-pulse { display: inline-flex; align-items: center; gap: 4px; }
.dot-pulse > span {
  width: 8px; height: 8px; border-radius: 9999px; background: var(--color-text-subtle);
  animation: ls-dot-pulse 1.2s cubic-bezier(0.4,0,0.2,1) infinite both;
}
.dot-pulse > span:nth-child(2) { animation-delay: 0.16s; }
.dot-pulse > span:nth-child(3) { animation-delay: 0.32s; }
.dot-pulse-brand > span { background: var(--color-brand); }

/* ─── HERO (marketing) ─── */
.hero { padding: 128px 0 96px; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 9999px;
  border: 1px solid var(--color-border); background: var(--color-background-subtle);
  font-size: 12px; font-weight: 500; color: var(--color-text-muted);
  animation: hero-eyebrow 400ms var(--ease-snappy) both;
}
.hero-title {
  max-width: 760px; margin: 24px auto 0;
  font-size: 34px; font-weight: 700; line-height: 1.0; letter-spacing: -0.01em;
  animation: reveal-up 600ms var(--ease-snappy) both; animation-delay: 50ms;
}
@media (min-width: 768px) { .hero-title { font-size: 56px; line-height: 0.95; } }
.hero-subtitle {
  max-width: 600px; margin: 24px auto 0;
  font-size: 18px; color: var(--color-text-muted); line-height: 1.4;
  animation: reveal-up 600ms var(--ease-snappy) both; animation-delay: 150ms;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 20px; } }
.hero-actions {
  display: inline-flex; flex-direction: column; gap: 12px; margin-top: 32px;
  animation: reveal-up 600ms var(--ease-snappy) both; animation-delay: 250ms;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }
.hero-visual {
  margin: 64px auto 0; max-width: 1000px;
  border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-xl);
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--color-primary-900), var(--color-primary-500));
  display: flex; align-items: center; justify-content: center;
  animation: reveal-up 800ms var(--ease-snappy) both; animation-delay: 350ms;
}
.hero-visual-inner {
  width: 80%; height: 70%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary-100); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* ─── COLOR PALETTE (system page) ─── */
.palette-row { margin-bottom: 32px; }
.palette-label { font-size: 14px; font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.palette-label small { font-weight: 400; color: var(--color-text-subtle); text-transform: none; }
.palette-swatches { display: grid; grid-template-columns: repeat(10, 1fr); gap: 4px; border-radius: var(--radius-md); overflow: hidden; }
.swatch {
  aspect-ratio: 1; padding: 8px; display: flex; flex-direction: column; justify-content: space-between;
  font-size: 10px; font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.swatch-step { font-weight: 600; }
.swatch-hex { opacity: 0.8; font-size: 9px; }
.swatch.light { color: var(--color-text-muted); }
.swatch.dark { color: rgba(255,255,255,0.85); }

/* ─── TYPOGRAPHY SHOWCASE (system page) ─── */
.type-row {
  display: grid; grid-template-columns: 140px 1fr; gap: 24px;
  padding: 20px 0; border-bottom: 1px solid var(--color-border-subtle); align-items: baseline;
}
.type-meta { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px; color: var(--color-text-subtle); }
.type-meta strong { display: block; color: var(--color-text); font-family: var(--font-sans); font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.t-display-h1 { font-size: 64px; line-height: 0.9; font-weight: 700; letter-spacing: -0.01em; }
.t-display-h2 { font-size: 48px; line-height: 1.0; font-weight: 700; }
.t-heading-h3 { font-size: 36px; line-height: 1.0; font-weight: 600; }
.t-heading-h4 { font-size: 32px; line-height: 1.0; font-weight: 600; }
.t-heading-h5 { font-size: 24px; line-height: 1.2; font-weight: 600; }
.t-body-xl { font-size: 20px; line-height: 1.4; }
.t-body-lg { font-size: 18px; line-height: 1.44; }
.t-body-md { font-size: 16px; line-height: 1.5; }
.t-body-sm { font-size: 14px; line-height: 1.4; }
.t-body-xs { font-size: 12px; line-height: 1.4; }

/* ─── GRIDS ─── */
.grid-2 { display: grid; gap: 24px; grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: 24px; grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: 24px; grid-template-columns: 1fr 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .grid-3 { grid-template-columns: 1fr 1fr 1fr; } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Classier feature icon — dark forest, not bright mint. */
.feature-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--color-primary-900); color: var(--color-primary-100);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
  font-size: 18px;
}
.feature-icon-outline {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: transparent; color: var(--color-text);
  border: 1px solid var(--color-border);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
  font-size: 18px;
}
.feature-icon-subtle {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--color-background-muted); color: var(--color-text);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
  font-size: 18px;
}

/* ─── FAQ ACCORDION ─── */
.faq-list {
  border-radius: var(--radius-card); border: 1px solid var(--color-border-subtle);
  background: var(--color-surface); overflow: hidden;
}
.faq-item + .faq-item { border-top: 1px solid var(--color-border-subtle); }
.faq-trigger {
  display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 24px;
  padding: 20px 24px; background: transparent; border: 0; color: var(--color-text);
  font-size: 16px; font-weight: 600; text-align: left;
  transition: background-color var(--duration-2) var(--ease-snappy);
}
@media (min-width: 768px) { .faq-trigger { font-size: 18px; } }
.faq-trigger:hover { background: var(--color-background-subtle); }
.faq-icon {
  width: 32px; height: 32px; border-radius: 9999px;
  background: var(--color-background-muted); color: var(--color-text);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform var(--duration-2) var(--ease-snappy);
  font-size: 20px; font-weight: 400;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height var(--duration-4) var(--ease-swift); }
.faq-panel-inner { padding: 0 24px 20px; font-size: 15px; line-height: 1.6; color: var(--color-text-muted); }

/* ─── CTA BANDED ─── */
.cta-banded {
  background: var(--color-surface-inverse); color: var(--color-text-inverse);
  border-radius: var(--radius-2xl); padding: 64px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banded::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(22,233,184,0.18), transparent 50%),
              radial-gradient(circle at 10% 90%, rgba(17,181,143,0.15), transparent 50%);
}
.cta-banded > * { position: relative; z-index: 1; }
.cta-banded h2 { font-size: 36px; font-weight: 700; line-height: 1.05; max-width: 640px; margin: 0 auto 16px; }
@media (min-width: 768px) { .cta-banded h2 { font-size: 48px; } }
.cta-banded p { font-size: 18px; color: var(--color-primary-100); max-width: 540px; margin: 0 auto 32px; }

/* ─── FOOTER ─── */
.footer { background: var(--color-surface-inverse); color: var(--color-text-inverse); border-top: 1px solid rgba(255,255,255,0.08); }
.footer-inner { padding: 80px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 2fr; } }
.footer-tagline { max-width: 320px; font-size: 14px; color: var(--color-primary-100); margin-top: 16px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (min-width: 640px) { .footer-cols { grid-template-columns: repeat(4, 1fr); } }
.footer-col h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 12px;
}
.footer-col li + li { margin-top: 8px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.85); transition: color var(--duration-2) var(--ease-snappy); }
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex; flex-direction: column-reverse; gap: 16px;
  justify-content: space-between; align-items: flex-start;
  margin-top: 64px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: rgba(255,255,255,0.6);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; } }
.footer-meta { display: flex; gap: 16px; }

/* ─── MISC HELPERS ─── */
.stack { display: flex; flex-direction: column; gap: 16px; }
.row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.row-center { justify-content: center; }
.demo-box {
  padding: 32px; border: 1px dashed var(--color-border); border-radius: var(--radius-card);
  background: var(--color-background-subtle);
}
.demo-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-subtle); margin-bottom: 16px; font-weight: 600; }

/* ─── SYSTEM-PAGE SIDEBAR ─── */
.sys-layout { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 1024px) {
  .sys-layout { grid-template-columns: 220px 1fr; }
}
.sys-sidebar {
  display: none;
  position: sticky; top: 36px; align-self: flex-start;
  padding: 32px 24px; border-right: 1px solid var(--color-border-subtle);
  height: calc(100vh - 36px); overflow-y: auto;
}
@media (min-width: 1024px) { .sys-sidebar { display: block; } }
.sys-sidebar-title {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--color-text-subtle); font-weight: 600; margin-bottom: 16px;
}
.sys-sidebar a {
  display: block; padding: 6px 10px; font-size: 13px; color: var(--color-text-muted);
  border-radius: 6px; transition: background-color var(--duration-2), color var(--duration-2);
}
.sys-sidebar a:hover { background: var(--color-background-subtle); color: var(--color-text); }
.sys-sidebar-group + .sys-sidebar-group { margin-top: 24px; }
.sys-main { padding-bottom: 80px; }

/* ────────────────────────────────────────────────────────────
   APPLIED — Tenant app (app.html)
   ──────────────────────────────────────────────────────────── */
.app-header {
  position: sticky; top: 36px; z-index: 30;
  background: color-mix(in srgb, var(--color-background) 92%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
}
.app-header-inner {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 16px; height: 68px;
}
.app-search-bar {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--color-border); background: var(--color-surface);
  border-radius: 9999px; height: 44px; padding: 0 6px 0 18px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--duration-2) var(--ease-snappy), box-shadow var(--duration-2);
}
.app-search-bar:focus-within { border-color: var(--color-border-focus); box-shadow: var(--shadow-focus); }
.app-search-bar input {
  flex: 1; border: 0; outline: none; background: transparent;
  font-family: inherit; font-size: 14px; color: var(--color-text);
}
.app-search-bar input::placeholder { color: var(--color-text-subtle); }
.app-search-filters {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--color-text-muted);
  height: 32px; padding: 0 12px; border-radius: 9999px;
  transition: background-color var(--duration-2), color var(--duration-2);
}
.app-search-filters:hover { background: var(--color-background-muted); color: var(--color-text); }

.app-filter-row {
  display: flex; flex-wrap: nowrap; align-items: center; gap: 8px;
  overflow-x: auto; padding: 16px 0 4px;
  scrollbar-width: none;
}
.app-filter-row::-webkit-scrollbar { display: none; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  height: 32px; padding: 0 12px; border-radius: 9999px;
  font-size: 13px; font-weight: 500; white-space: nowrap;
  border: 1px solid var(--color-border); background: var(--color-surface); color: var(--color-text-muted);
  transition: background-color var(--duration-2) var(--ease-snappy), border-color var(--duration-2), color var(--duration-2);
}
.chip:hover { border-color: var(--color-border-strong); color: var(--color-text); }
.chip-active { background: var(--color-text); color: white; border-color: var(--color-text); }
.chip-active:hover { background: var(--color-neutral-700); border-color: var(--color-neutral-700); color: white; }
.chip-dismiss {
  display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px; border-radius: 9999px;
  background: rgba(255,255,255,0.18); font-size: 10px; line-height: 1; cursor: pointer;
}
.chip:not(.chip-active) .chip-dismiss { background: var(--color-background-muted); color: var(--color-text-muted); }

.seg {
  display: inline-flex; padding: 3px; gap: 2px;
  background: var(--color-background-muted); border-radius: var(--radius-md);
}
.seg button {
  display: inline-flex; align-items: center; gap: 6px;
  height: 30px; padding: 0 14px; border-radius: 6px; border: 0;
  font-family: inherit; font-size: 13px; font-weight: 500;
  background: transparent; color: var(--color-text-muted);
  transition: background-color var(--duration-2) var(--ease-snappy), color var(--duration-2);
}
.seg button:hover { color: var(--color-text); }
.seg button.active { background: var(--color-surface); color: var(--color-text); box-shadow: var(--shadow-sm); }

.results-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; gap: 16px;
}
.results-count { font-size: 14px; color: var(--color-text-muted); }
.results-count strong { color: var(--color-text); font-weight: 600; }

/* Listing card */
.listing-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .listing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .listing-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1300px) { .listing-grid { grid-template-columns: repeat(4, 1fr); } }

.listing {
  display: block; position: relative; overflow: hidden;
  background: var(--color-surface); border-radius: var(--radius-card);
  border: 1px solid var(--color-border-subtle);
  transition: transform var(--duration-3) var(--ease-swift), box-shadow var(--duration-3);
}
.listing:hover {
  transform: none;
  box-shadow:
    0 0 0 6px rgba(11, 61, 50, 0.04),
    0 18px 48px -12px rgba(11, 61, 50, 0.18),
    0 4px 12px -4px rgba(11, 61, 50, 0.10);
}
.listing-image {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--color-background-muted);
}
.listing-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-5) var(--ease-snappy); }
.listing:hover .listing-image img { transform: none; }
.listing-image .placeholder { width: 100%; height: 100%; }
.listing-badge {
  position: absolute; left: 12px; top: 12px;
}
.listing-save {
  position: absolute; right: 12px; top: 12px;
  width: 36px; height: 36px; border-radius: 9999px; border: 0;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
  box-shadow: var(--shadow-sm);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--color-text);
  transition: transform var(--duration-2) var(--ease-snappy), background-color var(--duration-2);
}
.listing-save:hover { background: white; }
.listing-save:active { transform: scale(0.9); }
.listing-save.saved { color: var(--color-error); }
.listing-meta { padding: 14px 16px 16px; }
.listing-row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.listing-price { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.listing-source { font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-text-subtle); }
.listing-loc { margin-top: 4px; font-size: 14px; font-weight: 500; color: var(--color-text); display: flex; align-items: center; gap: 4px; }
.listing-loc-pin { color: var(--color-text-subtle); font-size: 12px; }
.listing-attrs { margin-top: 4px; font-size: 13px; color: var(--color-text-muted); }
.listing-refresh {
  margin-top: 12px; font-size: 12px; color: var(--color-text-subtle);
  display: inline-flex; align-items: center; gap: 6px;
}
.listing-refresh::before {
  content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 9999px;
  background: var(--color-success);
}

/* Map preview */
.map-preview {
  position: relative; aspect-ratio: 21 / 9; min-height: 320px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  background-color: var(--color-background-subtle);
  background-image:
    linear-gradient(var(--color-border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border-subtle) 1px, transparent 1px),
    radial-gradient(circle at 30% 40%, rgba(17, 181, 143, 0.10), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(22, 233, 184, 0.08), transparent 40%);
  background-size: 32px 32px, 32px 32px, 100% 100%, 100% 100%;
  overflow: hidden;
}
.map-pin {
  position: absolute; transform: translate(-50%, -50%);
  width: 32px; height: 32px; border-radius: 9999px;
  background: var(--color-brand); color: white;
  box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  outline: 2px solid white;
  cursor: pointer;
  transition: transform var(--duration-2) var(--ease-snappy);
}
.map-pin:hover { transform: translate(-50%, -50%) scale(1.1); }
.map-pin.featured {
  background: var(--color-text); width: 56px; height: 56px; font-size: 13px;
  z-index: 1;
}
.map-caption {
  position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 9999px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
  font-size: 11px; font-weight: 500; color: var(--color-text-muted);
}

/* ────────────────────────────────────────────────────────────
   APPLIED — Landlord (landlord.html)
   ──────────────────────────────────────────────────────────── */
.ll-layout {
  display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - 36px);
  background: var(--color-background-subtle);
}
@media (max-width: 900px) { .ll-layout { grid-template-columns: 1fr; } }
.ll-sidebar {
  background: var(--color-surface-inverse); color: white;
  padding: 20px 12px;
  display: flex; flex-direction: column; gap: 4px;
}
@media (max-width: 900px) { .ll-sidebar { display: none; } }
.ll-brand {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 8px 16px;
  color: white; font-weight: 700; font-size: 16px;
}
.ll-nav-section-title {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4); font-weight: 600;
  padding: 16px 12px 6px;
}
.ll-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 6px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: background-color var(--duration-2), color var(--duration-2);
}
.ll-nav-item:hover { background: rgba(255,255,255,0.05); color: white; }
.ll-nav-item.active { background: rgba(255,255,255,0.10); color: white; }
.ll-nav-icon { width: 16px; height: 16px; display: inline-flex; align-items: center; justify-content: center; opacity: 0.7; font-size: 14px; }
.ll-nav-count { margin-left: auto; font-size: 11px; padding: 1px 8px; border-radius: 9999px; background: rgba(255,255,255,0.10); }
.ll-nav-count.alert { background: var(--color-primary-300); color: var(--color-primary-900); }

.ll-main { display: flex; flex-direction: column; min-width: 0; }
.ll-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; background: var(--color-surface);
  border-bottom: 1px solid var(--color-border-subtle);
}
.ll-topbar-title { font-size: 16px; font-weight: 600; }
.ll-tabs { display: inline-flex; gap: 4px; padding-top: 12px; padding-left: 24px; border-bottom: 1px solid var(--color-border-subtle); background: var(--color-surface); }
.ll-tab {
  position: relative;
  padding: 10px 16px; font-size: 14px; font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--duration-2);
}
.ll-tab:hover { color: var(--color-text); }
.ll-tab.active { color: var(--color-text); }
.ll-tab.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: -1px; height: 2px;
  background: var(--color-brand); border-radius: 2px;
}

/* Inbox 3-column */
.inbox {
  display: grid; grid-template-columns: 320px 1fr 320px;
  flex: 1; min-height: 0;
}
@media (max-width: 1200px) { .inbox { grid-template-columns: 280px 1fr; } .inbox-detail { display: none; } }
@media (max-width: 800px) { .inbox { grid-template-columns: 1fr; } .inbox-list { display: none; } }

.inbox-list, .inbox-thread, .inbox-detail {
  background: var(--color-surface);
  overflow-y: auto;
}
.inbox-list { border-right: 1px solid var(--color-border-subtle); }
.inbox-detail { border-left: 1px solid var(--color-border-subtle); padding: 20px; }

.inbox-search { padding: 12px 16px; border-bottom: 1px solid var(--color-border-subtle); }
.inbox-search input {
  width: 100%; height: 34px; border-radius: 6px; border: 1px solid var(--color-border);
  padding: 0 10px; font-size: 13px; font-family: inherit;
}
.inbox-item {
  display: flex; gap: 12px; padding: 14px 16px;
  border-bottom: 1px solid var(--color-border-subtle);
  cursor: pointer;
  transition: background-color var(--duration-2) var(--ease-snappy);
}
.inbox-item:hover { background: var(--color-background-subtle); }
.inbox-item.active { background: var(--color-brand-highlight); }
.inbox-item.active .inbox-item-snippet { color: var(--color-primary-800); }
.inbox-item-body { flex: 1; min-width: 0; }
.inbox-item-top { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.inbox-item-name { font-size: 13px; font-weight: 600; color: var(--color-text); }
.inbox-item-time { font-size: 11px; color: var(--color-text-subtle); white-space: nowrap; }
.inbox-item-subject { font-size: 12px; color: var(--color-text-muted); margin-top: 2px; font-weight: 500; }
.inbox-item-snippet {
  font-size: 12px; color: var(--color-text-subtle); margin-top: 2px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.inbox-item-unread {
  width: 8px; height: 8px; border-radius: 9999px; background: var(--color-brand);
  flex-shrink: 0; margin-top: 8px;
}

.inbox-thread {
  display: flex; flex-direction: column;
}
.thread-header {
  padding: 16px 24px; border-bottom: 1px solid var(--color-border-subtle);
  display: flex; align-items: center; justify-content: space-between;
}
.thread-header-info h3 { font-size: 16px; font-weight: 600; }
.thread-header-info p { font-size: 12px; color: var(--color-text-muted); margin-top: 2px; }
.thread-messages { padding: 24px; display: flex; flex-direction: column; gap: 16px; flex: 1; overflow-y: auto; }
.msg { display: flex; gap: 12px; max-width: 80%; }
.msg.outbound { flex-direction: row-reverse; margin-left: auto; }
.msg-bubble {
  padding: 12px 14px; border-radius: var(--radius-lg); font-size: 14px; line-height: 1.5;
}
.msg.inbound .msg-bubble { background: var(--color-background-muted); color: var(--color-text); border-top-left-radius: 4px; }
.msg.outbound .msg-bubble { background: var(--color-brand); color: white; border-top-right-radius: 4px; }
.msg-meta { font-size: 11px; color: var(--color-text-subtle); margin-top: 6px; padding: 0 4px; }
.msg.outbound .msg-meta { text-align: right; }

.thread-composer { border-top: 1px solid var(--color-border-subtle); padding: 16px 24px; background: var(--color-background-subtle); }
.thread-composer-input {
  display: flex; gap: 8px; align-items: end;
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 8px;
}
.thread-composer-input textarea {
  flex: 1; resize: none; border: 0; outline: none; background: transparent;
  font-family: inherit; font-size: 14px; color: var(--color-text); padding: 6px 8px; min-height: 36px; max-height: 120px;
}

.detail-card {
  border: 1px solid var(--color-border-subtle); border-radius: var(--radius-card);
  overflow: hidden;
}
.detail-image { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--color-primary-700), var(--color-primary-300)); }
.detail-body { padding: 16px; }
.detail-title { font-size: 16px; font-weight: 600; }
.detail-price { font-size: 22px; font-weight: 700; margin-top: 4px; }
.detail-meta { font-size: 13px; color: var(--color-text-muted); margin-top: 4px; }
.detail-stat-row { display: flex; gap: 16px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--color-border-subtle); }
.detail-stat { flex: 1; text-align: center; }
.detail-stat-value { font-size: 15px; font-weight: 700; }
.detail-stat-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-subtle); margin-top: 2px; }

/* Pipeline */
.pipeline {
  display: grid; gap: 16px; padding: 24px;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  overflow-x: auto;
}
@media (max-width: 1100px) { .pipeline { grid-template-columns: repeat(4, 260px); width: max-content; } }
.pipe-col {
  background: var(--color-background-muted);
  border-radius: var(--radius-lg); padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 400px;
}
.pipe-col-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 6px 8px;
}
.pipe-col-title { font-size: 13px; font-weight: 600; }
.pipe-col-count {
  font-size: 11px; font-weight: 600;
  padding: 1px 8px; border-radius: 9999px;
  background: var(--color-surface); color: var(--color-text-muted);
}
.pipe-card {
  background: var(--color-surface); border-radius: var(--radius-md);
  padding: 12px; border: 1px solid var(--color-border-subtle);
  display: flex; flex-direction: column; gap: 8px;
  cursor: grab;
  transition: transform var(--duration-2) var(--ease-snappy), box-shadow var(--duration-2);
}
.pipe-card:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.pipe-card-top { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }
.pipe-card-snippet { font-size: 12px; color: var(--color-text-muted); line-height: 1.4; }
.pipe-card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 6px; border-top: 1px solid var(--color-border-subtle); }
.pipe-card-time { font-size: 11px; color: var(--color-text-subtle); }
.pipe-card-tags { display: flex; gap: 4px; }

/* ────────────────────────────────────────────────────────────
   APPLIED — Email (email.html)
   ──────────────────────────────────────────────────────────── */
.email-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 1100px) { .email-grid { grid-template-columns: repeat(3, 1fr); } }
.email-frame {
  display: flex; flex-direction: column; gap: 12px;
}
.email-frame-header {
  display: flex; align-items: center; justify-content: space-between;
}
.email-frame-title { font-size: 14px; font-weight: 600; }
.email-frame-meta { font-size: 11px; color: var(--color-text-subtle); }
.email-frame-window {
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  background: white; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.email-frame-chrome {
  background: #f4f4f4; border-bottom: 1px solid var(--color-border-subtle);
  padding: 10px 14px; display: flex; align-items: center; gap: 6px;
}
.email-chrome-dot { width: 10px; height: 10px; border-radius: 9999px; background: #d4d4d4; }
.email-chrome-bar { flex: 1; margin-left: 10px; height: 18px; background: rgba(0,0,0,0.05); border-radius: 4px; }
.email-body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #0F0F0F; padding: 32px 28px;
}
.email-logo {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px;
  margin-bottom: 24px;
}
.email-h1 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 12px; }
.email-p { font-size: 14px; line-height: 1.55; color: #444; margin: 0 0 16px; }
.email-cta {
  display: inline-block; padding: 12px 22px; border-radius: 8px;
  background: #0C3D32; color: white !important; font-weight: 600; font-size: 14px;
  text-decoration: none;
}
.email-card {
  border: 1px solid #DFDFDF; border-radius: 12px; overflow: hidden;
  margin: 20px 0;
}
.email-card-img {
  height: 140px;
  background: linear-gradient(135deg, #0C3D32, #11B58F);
}
.email-card-body { padding: 16px; }
.email-card-price { font-size: 20px; font-weight: 700; }
.email-card-loc { font-size: 14px; color: #2C2C2C; margin-top: 2px; font-weight: 500; }
.email-card-meta { font-size: 13px; color: #595959; margin-top: 2px; }
.email-divider { height: 1px; background: #DFDFDF; margin: 24px 0; border: 0; }
.email-footer { font-size: 12px; color: #767676; line-height: 1.5; }
.email-footer a { color: #767676; text-decoration: underline; }

.email-checklist { list-style: none; padding: 0; margin: 12px 0 24px; }
.email-checklist li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; font-size: 14px; color: #2C2C2C;
  border-bottom: 1px solid #F2F2F2;
}
.email-checklist li::before {
  content: "✓"; display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 9999px;
  background: #BEF4C4; color: #125D1B; font-size: 13px; font-weight: 700;
}
.email-otp {
  display: inline-block; padding: 18px 28px; border-radius: 12px;
  background: #FAFAFA; border: 1px solid #DFDFDF;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 26px; font-weight: 700; letter-spacing: 0.3em;
  margin: 12px 0 20px;
}

/* Misc helpers used by applied previews */
.icon { display: inline-flex; align-items: center; justify-content: center; }
.flex-1 { flex: 1; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; } .mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }

.ls-chip {
  display: inline-flex; align-items: center; padding: 10px 22px;
  border-radius: 9999px; border: 1px solid var(--color-border);
  background: transparent; color: var(--color-text);
  font-size: 14px; font-weight: 500; white-space: nowrap;
  transition: background-color var(--duration-2) var(--ease-snappy), border-color var(--duration-2), color var(--duration-2);
  cursor: pointer;
}
.ls-chip:hover { border-color: var(--color-border-strong); }
.ls-chip.active {
  background: var(--color-primary-900); color: white; border-color: var(--color-primary-900);
}

.tier-card.featured .tier-card.featured .tier-card.featured .compare-row + /* ────────────────────────────────────────────────────────────
   VOIT BLOCKS PAGE — generic layout helpers + variant chips
   ──────────────────────────────────────────────────────────── */

.voit-page-section { padding: 64px 0; }
.voit-cat-header { margin-bottom: 24px; }
.voit-cat-title {
  font-family: var(--font-sans); font-size: 40px; line-height: 1.05;
  letter-spacing: -0.01em; margin-bottom: 8px;
}
.voit-cat-desc { font-size: 16px; color: var(--color-text-muted); max-width: 700px; }

.voit-variant {
  margin-bottom: 56px;
  border: 1px solid var(--color-border-subtle); border-radius: var(--radius-xl);
  overflow: hidden; background: var(--color-surface);
}
.voit-variant-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  background: var(--color-background-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  font-size: 12px;
}
.voit-variant-id {
  display: inline-flex; align-items: center;
  padding: 2px 10px; border-radius: 9999px;
  background: var(--color-primary-900); color: white;
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em;
}
.voit-variant-name { font-weight: 600; color: var(--color-text); }
.voit-variant-desc { color: var(--color-text-muted); margin-left: auto; }

.voit-variant-body { padding: 40px 32px; }

/* Reusable VOIT layout primitives */
.v-eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; color: var(--color-brand); margin-bottom: 8px; }
.v-h-display { font-family: var(--font-sans); font-size: 36px; line-height: 1.05; letter-spacing: -0.01em; margin: 0 0 12px; }
.v-h-sans { font-size: 30px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; margin: 0 0 12px; }
.v-h-large { font-family: var(--font-sans); font-size: 56px; line-height: 1.0; letter-spacing: -0.015em; margin: 0 0 16px; }
.v-body { font-size: 15px; line-height: 1.55; color: var(--color-text-muted); margin: 0 0 16px; }
.v-body-narrow { max-width: 480px; }
.v-cta-pill {
  display: inline-flex; align-items: center; padding: 10px 18px; border-radius: var(--radius-button);
  background: var(--color-primary-900); color: white; font-size: 13px; font-weight: 600;
  transition: background-color var(--duration-2);
}
.v-cta-pill:hover { background: var(--color-primary-800); }
.v-cta-text {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--color-primary-700); font-size: 14px; font-weight: 600;
}

.v-img {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg);
  background: var(--gradient-forest); overflow: hidden;
}
.v-img.tall { aspect-ratio: 3/4; }
.v-img.wide { aspect-ratio: 16/9; }
.v-img.square { aspect-ratio: 1/1; }
.v-img img { width: 100%; height: 100%; object-fit: cover; }

.v-row { display: flex; gap: 12px; align-items: center; }
.v-stack { display: flex; flex-direction: column; gap: 12px; }

.v-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.v-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.v-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.v-grid-6 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 800px) { .v-grid-6 { grid-template-columns: repeat(3, 1fr); } }
.v-split { display: grid; gap: 32px; grid-template-columns: 1fr 1fr; align-items: center; }
.v-split-narrow { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .v-split-narrow { grid-template-columns: 380px 1fr; } }
.v-split-wide { display: grid; gap: 32px; grid-template-columns: 1fr 1.4fr; align-items: center; }

.v-icon-card { padding: 20px; border-radius: var(--radius-md); }
.v-icon-card-bg { background: var(--color-background-subtle); }
.v-icon-card-outline { background: transparent; border: 1px solid var(--color-border-subtle); }
.v-card-with-img {
  background: var(--color-surface); border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle); overflow: hidden;
}
.v-card-img-top { aspect-ratio: 4/3; background: var(--gradient-forest); }
.v-card-body-pad { padding: 16px 20px; }

/* Photo strip carousel */
.v-strip {
  display: flex; gap: 12px; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.v-strip::-webkit-scrollbar { display: none; }
.v-strip > * { flex: 0 0 280px; scroll-snap-align: start; }

.v-strip-edge {
  display: flex; gap: 12px;
  margin-left: calc(-1 * var(--container-x));
  margin-right: calc(-1 * var(--container-x));
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 24px; scrollbar-width: none;
}
.v-strip-edge::-webkit-scrollbar { display: none; }
.v-strip-edge > * { flex: 0 0 380px; scroll-snap-align: start; }

.v-chevron-row { display: inline-flex; gap: 8px; }
.v-chev {
  width: 40px; height: 40px; border-radius: 9999px;
  border: 1px solid var(--color-border);
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--color-text);
  cursor: pointer; transition: background-color var(--duration-2), border-color var(--duration-2);
}
.v-chev:hover { background: var(--color-background-muted); border-color: var(--color-border-strong); }

.v-mosaic { display: grid; gap: 12px; }
.v-mosaic-32 { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); }
.v-mosaic-32 > :nth-child(1) { grid-row: span 2; }
.v-mosaic-24 { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 100px); gap: 8px; }
.v-mosaic-tall-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.v-mosaic-tall-2 > :nth-child(1) { aspect-ratio: 1/1; }
.v-mosaic-tall-2 > :nth-child(2) { aspect-ratio: 3/4; }

/* Numbered list (for Text-04 / Text-05 patterns) */
.v-num-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (min-width: 800px) { .v-num-list { grid-template-columns: repeat(3, 1fr); } }
.v-num-list li { display: flex; flex-direction: column; gap: 6px; }
.v-num { font-family: var(--font-sans); font-size: 36px; line-height: 1; color: var(--color-primary-700); }
.v-num-title { font-size: 16px; font-weight: 600; }
.v-num-body { font-size: 14px; color: var(--color-text-muted); line-height: 1.5; }

/* Definition list (Text-04 pattern) */
.v-deflist {
  display: grid; gap: 24px; grid-template-columns: 1fr;
}
@media (min-width: 800px) { .v-deflist { grid-template-columns: repeat(3, 1fr); } }
.v-deflist dt { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.v-deflist dd { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; margin: 0; }

/* Magazine pattern (Text-07) */
.v-mag {
  display: grid; gap: 24px; grid-template-columns: 1fr;
}
@media (min-width: 900px) { .v-mag { grid-template-columns: 1fr 1fr; } }
.v-mag-issue { font-family: var(--font-sans); font-size: 18px; color: var(--color-primary-700); margin-bottom: 8px; }
.v-mag-headline { font-family: var(--font-sans); font-size: 56px; line-height: 1; letter-spacing: -0.015em; margin: 0 0 12px; }

/* Bottom CTA bar inside a variant */
.v-cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 8px; }

/* Image grid 8-tile mosaic */
.v-grid-8 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 90px); gap: 6px;
}

/* ────────────────────────────────────────────────────────────
   MARKETING PAGE — full LakeSight site assembled from VOIT blocks.
   Dark-forest gradient leads; bright mint reserved for subtle <em>
   emphasis on dark surfaces only.
   ──────────────────────────────────────────────────────────── */

/* Emphasis treatment — italic Manrope in body copy. Titles never italicize. */
.m-page em {
  font-style: normal;
  font-weight: 600;
  color: var(--color-primary-700);
}
.m-page h1 em,
.m-page h2 em,
.m-page h3 em,
.m-page h4 em,
.m-page .hero-title em,
.m-page .section-title em,
.m-page .card-title em,
.m-page .m-step-title em,
.m-page .m-tier-rung-name em,
.m-page .m-system-step-title em {
  font-style: normal;
}
.m-page .on-dark em,
.m-page .m-hero em,
.m-page .m-landlord-cine em,
.m-page .m-final-cta em,
.m-page .m-lifestyle em,
.m-page .m-compare-col.good em,
.m-page .m-price-card.featured em {
  color: var(--color-primary-200);
}

/* ─── Hero ─── */
.m-hero {
  position: relative; overflow: hidden;
  color: white;
  background:
    radial-gradient(ellipse 1000px 600px at 80% -10%, rgba(17, 181, 143, 0.18), transparent 60%),
    radial-gradient(ellipse 800px 400px at 0% 110%, rgba(11, 61, 50, 0.55), transparent 60%),
    linear-gradient(180deg, var(--color-primary-900) 0%, var(--color-primary-700) 75%, var(--color-primary-500) 100%);
  padding: 96px 0 80px;
}
@media (min-width: 768px) { .m-hero { padding: 144px 0 112px; } }

.m-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 9999px;
  background: rgba(255,255,255,0.10); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.88);
}
.m-hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 9999px;
  background: var(--color-primary-200);
  box-shadow: 0 0 12px var(--color-primary-200);
}

.m-hero-title {
  max-width: 880px; margin: 32px 0 24px;
  font-size: 44px; font-weight: 700; line-height: 0.98; letter-spacing: -0.015em;
  color: white;
}
@media (min-width: 768px) { .m-hero-title { font-size: 72px; } }

.m-hero-sub {
  max-width: 560px; font-size: 17px; line-height: 1.5;
  color: rgba(255,255,255,0.78); margin: 0 0 36px;
}
@media (min-width: 768px) { .m-hero-sub { font-size: 19px; } }

.m-hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.m-btn-on-dark-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--radius-button);
  background: white; color: var(--color-primary-900);
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: transform var(--duration-2) var(--ease-snappy), background-color var(--duration-2);
}
.m-btn-on-dark-primary:hover { background: var(--color-neutral-200); }
.m-btn-on-dark-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--radius-button);
  background: rgba(255,255,255,0.10); color: white;
  border: 1px solid rgba(255,255,255,0.22); backdrop-filter: blur(8px);
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: background-color var(--duration-2), border-color var(--duration-2);
}
.m-btn-on-dark-secondary:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); }

.m-hero-search {
  margin-top: 56px;
  display: grid; gap: 0; grid-template-columns: 1fr;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(16px);
  border-radius: 20px; padding: 8px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.4);
  max-width: 880px;
}
@media (min-width: 768px) {
  .m-hero-search { grid-template-columns: repeat(3, 1fr) auto; border-radius: 9999px; padding: 8px 8px 8px 0; }
}
.m-hero-search-field {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 20px; border-radius: 14px;
  color: var(--color-primary-900);
  cursor: pointer;
  transition: background-color var(--duration-2) var(--ease-snappy);
}
.m-hero-search-field:hover { background: rgba(15, 41, 34, 0.04); }
.m-hero-search-field-label { font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(15, 41, 34, 0.55); }
.m-hero-search-field-value { font-size: 14px; font-weight: 600; }
.m-hero-search-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--color-primary-900); color: white;
  border: 0; border-radius: var(--radius-button);
  padding: 14px 24px; font-weight: 600; font-size: 14px; font-family: inherit;
  cursor: pointer; transition: background-color var(--duration-2);
}
.m-hero-search-submit:hover { background: var(--color-primary-800); }

.m-hero-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px;
}
.m-hero-chip {
  display: inline-flex; align-items: center;
  padding: 7px 14px; border-radius: 9999px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 12px; font-weight: 500;
  transition: background-color var(--duration-2), border-color var(--duration-2);
  cursor: pointer; text-decoration: none;
}
.m-hero-chip:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }
.m-hero-chip.active { background: white; color: var(--color-primary-900); border-color: white; }

/* ─── Trust row ─── */
.m-trust-quote { font-size: 17px; color: var(--color-text-muted); max-width: 560px; line-height: 1.55; }
.m-trust-stats {
  display: grid; gap: 16px; grid-template-columns: 1fr;
  margin-top: 32px;
}
@media (min-width: 700px) { .m-trust-stats { grid-template-columns: repeat(3, 1fr); } }
.m-trust-stat {
  padding: 20px 24px;
  border: 1px solid var(--color-border-subtle); border-radius: var(--radius-lg);
  background: var(--color-surface);
}
.m-trust-stat-value { font-size: 28px; font-weight: 700; letter-spacing: -0.01em; color: var(--color-primary-900); }
.m-trust-stat-label { font-size: 13px; color: var(--color-text-muted); margin-top: 4px; }

.m-press {
  display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: center;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--color-border-subtle);
}
.m-press-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; color: var(--color-text-subtle); }
.m-press-logo { font-size: 14px; font-weight: 600; color: var(--color-text-muted); }

/* ─── Step cards ─── */
.m-step {
  display: flex; flex-direction: column; gap: 10px; padding: 28px;
  background: var(--color-surface); border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  transition: transform var(--duration-3) var(--ease-swift), box-shadow var(--duration-3);
}
.m-step:hover { transform: none; box-shadow: none; }
.m-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 9999px;
  background: var(--color-primary-900); color: white;
  font-size: 13px; font-weight: 700; margin-bottom: 6px;
}
.m-step-title { font-size: 19px; font-weight: 700; letter-spacing: -0.005em; }
.m-step-body { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; }

/* ─── Quality Label checklist ─── */
.m-check-grid {
  display: grid; gap: 16px; grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 640px) { .m-check-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .m-check-grid { grid-template-columns: repeat(3, 1fr); } }
.m-check-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px; background: var(--color-surface);
  border: 1px solid var(--color-border-subtle); border-radius: var(--radius-lg);
}
.m-check-icon {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 9999px;
  background: var(--color-primary-900); color: white;
  font-size: 14px; font-weight: 700;
}
.m-check-title { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.m-check-body { font-size: 13px; color: var(--color-text-muted); line-height: 1.5; }

/* ─── Comparison split ─── */
.m-compare {
  display: grid; gap: 24px; grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 800px) { .m-compare { grid-template-columns: 1fr 1fr; } }
.m-compare-col {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
}
.m-compare-col.bad { background: var(--color-background-subtle); border-style: dashed; }
.m-compare-col.good {
  background: var(--color-primary-900); color: white; border-color: transparent;
  box-shadow: 0 20px 50px -20px rgba(11, 61, 50, 0.4);
}
.m-compare-eyebrow {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
  color: var(--color-text-subtle); margin-bottom: 12px;
}
.m-compare-col.good .m-compare-eyebrow { color: rgba(255,255,255,0.6); }
.m-compare-title { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.m-compare-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.m-compare-list li {
  display: flex; gap: 10px; font-size: 14px; line-height: 1.5;
  color: var(--color-text-muted);
}
.m-compare-col.good .m-compare-list li { color: rgba(255,255,255,0.85); }
.m-compare-list li::before {
  content: "—"; color: var(--color-text-subtle); flex-shrink: 0; font-weight: 600;
}
.m-compare-col.good .m-compare-list li::before {
  content: "✓"; color: var(--color-primary-200);
}

.m-rank-card {
  margin-top: 24px;
  padding: 16px 20px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: space-between;
}
.m-rank-label { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; }
.m-rank-value { font-size: 24px; font-weight: 700; }

/* ─── AI paperwork ─── */
.m-letter-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: 28px;
  font-size: 14px; line-height: 1.65; color: var(--color-text);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.m-letter-meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
  color: var(--color-text-subtle); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--color-border-subtle);
}
.m-letter-meta-flag {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 3px;
  background: var(--color-primary-900); color: white; font-size: 9px; font-weight: 700;
}
.m-letter-body p { margin: 0 0 12px; }
.m-letter-feature-list {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.m-letter-feature {
  display: flex; gap: 14px; align-items: flex-start;
}
.m-letter-feature-icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px;
  background: var(--color-background-muted); color: var(--color-primary-900);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.m-letter-feature-title { font-size: 15px; font-weight: 600; }
.m-letter-feature-body { font-size: 13px; color: var(--color-text-muted); line-height: 1.5; }

/* ─── Landlord cinematic ─── */
.m-landlord-cine {
  position: relative; overflow: hidden;
  border-radius: var(--radius-2xl);
  padding: 56px 32px;
  background:
    radial-gradient(ellipse 800px 400px at 100% 0%, rgba(17, 181, 143, 0.16), transparent 60%),
    radial-gradient(ellipse 600px 300px at 0% 100%, rgba(22, 233, 184, 0.10), transparent 60%),
    linear-gradient(135deg, var(--color-primary-900), var(--color-primary-700));
  color: white;
}
@media (min-width: 800px) { .m-landlord-cine { padding: 80px 64px; } }
.m-landlord-stat { font-size: 32px; font-weight: 700; letter-spacing: -0.01em; color: white; }
.m-landlord-stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); margin-top: 4px; }
.m-landlord-features {
  display: grid; gap: 20px; grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 800px) { .m-landlord-features { grid-template-columns: repeat(3, 1fr); } }
.m-landlord-feature {
  padding: 20px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.m-landlord-feature-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: white; }
.m-landlord-feature-body { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.78); }

/* ─── Pricing ─── */
.m-price-grid {
  display: grid; gap: 24px; grid-template-columns: 1fr;
  max-width: 920px; margin: 0 auto;
}
@media (min-width: 900px) { .m-price-grid { grid-template-columns: 1fr 1fr; } }
.m-price-card {
  display: flex; flex-direction: column;
  padding: 32px;
  border: 1px solid var(--color-border-subtle); border-radius: var(--radius-xl);
  background: var(--color-surface);
}
.m-price-card.featured {
  background: var(--color-primary-900); color: white; border-color: transparent;
  box-shadow: 0 20px 50px -20px rgba(11, 61, 50, 0.4);
}
.m-price-badge {
  display: inline-flex; align-self: flex-start;
  padding: 4px 10px; border-radius: 9999px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
  background: var(--color-background-muted); color: var(--color-text-muted);
  margin-bottom: 12px;
}
.m-price-card.featured .m-price-badge {
  background: rgba(255,255,255,0.14); color: white; backdrop-filter: blur(8px);
}
.m-price-title { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.m-price-tagline { font-size: 14px; color: var(--color-text-muted); margin-top: 4px; line-height: 1.5; }
.m-price-card.featured .m-price-tagline { color: rgba(255,255,255,0.78); }
.m-price-amount { display: flex; align-items: baseline; gap: 6px; margin-top: 24px; }
.m-price-amount-value { font-size: 40px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.m-price-amount-note { font-size: 13px; color: var(--color-text-muted); }
.m-price-card.featured .m-price-amount-note { color: rgba(255,255,255,0.6); }
.m-price-features {
  list-style: none; padding: 0; margin: 24px 0; flex: 1;
  display: flex; flex-direction: column; gap: 10px;
}
.m-price-features li { display: flex; gap: 10px; font-size: 14px; line-height: 1.5; }
.m-price-features li::before {
  content: "✓"; color: var(--color-primary-700); font-weight: 700; flex-shrink: 0;
}
.m-price-card.featured .m-price-features li::before { color: var(--color-primary-200); }

/* ─── Testimonials ─── */
.m-testi-grid {
  display: grid; gap: 20px; grid-template-columns: 1fr;
}
@media (min-width: 700px) { .m-testi-grid { grid-template-columns: 1fr 1fr; } }
.m-testi-card {
  padding: 28px;
  border: 1px solid var(--color-border-subtle); border-radius: var(--radius-xl);
  background: var(--color-surface);
}
.m-testi-quote { font-size: 17px; line-height: 1.55; color: var(--color-text); margin: 0 0 20px; }
.m-testi-author { display: flex; align-items: center; gap: 12px; }
.m-testi-avatar {
  width: 44px; height: 44px; border-radius: 9999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  background: var(--color-background-muted); color: var(--color-text);
}
.m-testi-name { font-size: 14px; font-weight: 600; }
.m-testi-meta { font-size: 12px; color: var(--color-text-subtle); display: flex; gap: 6px; align-items: center; }
.m-testi-role-tag {
  display: inline-flex; padding: 1px 8px; border-radius: 9999px;
  font-size: 11px; font-weight: 600;
  background: var(--color-background-muted); color: var(--color-text-muted);
}

/* ─── Final CTA ─── */
.m-final-cta {
  position: relative; overflow: hidden;
  border-radius: var(--radius-2xl);
  padding: 72px 32px; text-align: center;
  background:
    radial-gradient(ellipse 1000px 500px at 50% 0%, rgba(17, 181, 143, 0.16), transparent 60%),
    linear-gradient(180deg, var(--color-primary-900) 0%, var(--color-primary-700) 100%);
  color: white;
}
@media (min-width: 700px) { .m-final-cta { padding: 96px 56px; } }
.m-final-cta h2 {
  font-size: 36px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.05;
  max-width: 680px; margin: 0 auto 16px;
}
@media (min-width: 700px) { .m-final-cta h2 { font-size: 52px; } }
.m-final-cta p {
  font-size: 17px; color: rgba(255,255,255,0.78);
  max-width: 480px; margin: 0 auto 32px;
}
/* Higher specificity than `.m-final-cta p` so the note stays small + spaced (was losing the cascade). */
.m-final-cta p.m-final-cta-note { font-size: 13px; color: rgba(255,255,255,0.5); margin: 36px 0 0; letter-spacing: 0.01em; }

/* ─── Subpage helpers ─── */

/* Image slot variants (reuse .v-img base, vary tint) */
.v-img.lake { background: linear-gradient(135deg, var(--color-primary-900) 0%, #1d6f5a 60%, #2d8f76 100%); }
.v-img.dusk { background: linear-gradient(135deg, #052220 0%, var(--color-primary-700) 50%, #1a8068 100%); }
.v-img.deep { background: radial-gradient(ellipse at 30% 30%, #1d6f5a, var(--color-primary-900) 60%); }

/* Big stat block (problem-validation numbers) */
.m-stat-big {
  padding: 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
}
.m-stat-big.dark { background: var(--color-primary-900); color: white; border-color: transparent; }
.m-stat-big-value {
  font-size: 44px; font-weight: 700; line-height: 1; letter-spacing: -0.02em;
  color: var(--color-primary-900);
}
.m-stat-big.dark .m-stat-big-value { color: white; }
.m-stat-big-label {
  font-size: 13px; line-height: 1.4; color: var(--color-text-muted); margin-top: 8px;
}
.m-stat-big.dark .m-stat-big-label { color: rgba(255,255,255,0.7); }
.m-stat-big-source { font-size: 11px; color: var(--color-text-subtle); margin-top: 12px; }
.m-stat-big.dark .m-stat-big-source { color: rgba(255,255,255,0.45); }

/* Vertical timeline (numbered steps connected by a line) */
.m-vtimeline {
  position: relative; padding-left: 0;
  display: flex; flex-direction: column; gap: 20px;
}
.m-vtimeline-item {
  display: grid; grid-template-columns: 52px 1fr; gap: 20px; align-items: start;
  position: relative;
}
.m-vtimeline-item:not(:last-child)::before {
  content: ""; position: absolute;
  left: 25px; top: 52px; bottom: -20px; width: 2px;
  background: var(--color-border-subtle);
}
.m-vtimeline-num {
  width: 52px; height: 52px; border-radius: 9999px;
  background: var(--color-primary-900); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--color-background);
}
.m-vtimeline-body {
  background: var(--color-surface); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg); padding: 20px 24px;
  flex: 1;
}
.m-vtimeline-title { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.m-vtimeline-body p { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; margin: 0; }

/* Tier cards — Bronze / Silver / Gold */
.m-tier-grid {
  display: grid; gap: 20px; grid-template-columns: 1fr;
}
@media (min-width: 800px) { .m-tier-grid { grid-template-columns: repeat(3, 1fr); } }
.m-tier {
  background: var(--color-surface); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl); padding: 28px;
  display: flex; flex-direction: column;
  transition: transform var(--duration-3) var(--ease-swift), box-shadow var(--duration-3);
}
.m-tier:hover { transform: none; box-shadow: var(--shadow-md); }
.m-tier.featured {
  background: var(--color-primary-900); color: white; border-color: transparent;
  box-shadow: 0 20px 50px -20px rgba(11, 61, 50, 0.4);
}
.m-tier-ribbon {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px;
  border-radius: 9999px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; width: fit-content; margin-bottom: 16px;
}
.m-tier-ribbon.bronze { background: linear-gradient(135deg, #fdf1e1, #f1d9ac); color: #7b4c16; }
.m-tier-ribbon.silver { background: linear-gradient(135deg, #eceef2, #c8ccd3); color: #4a5160; }
.m-tier-ribbon.gold   { background: linear-gradient(135deg, #fff4d1, #f0c861); color: #6f4a07; }

/* Quality Label section — VOIT Card-07 split (left text, right stacked tier ladder) */
.m-tier-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 900px) {
  .m-tier-split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 64px;
  }
}
.m-tier-split-lede { padding-top: 8px; }
@media (min-width: 900px) {
  /* Center the lede vertically against the tall ladder instead of pinning it to the top. */
  .m-tier-split { align-items: center; }
}
.m-tier-ladder {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.m-tier-rung {
  position: relative;
  padding: 28px 32px;
  border-top: 1px solid var(--color-border-subtle);
}
.m-tier-rung:first-child { border-top: none; }
.m-tier-rung-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.m-tier-rung .m-tier-ribbon { margin: 0; }
.m-tier-rung-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.m-tier-rung-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--color-text);
}
.m-tier-rung-time {
  font-size: 12px;
  color: var(--color-text-subtle);
  font-variant-numeric: tabular-nums;
}
.m-tier-rung-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
@media (min-width: 600px) {
  .m-tier-rung-checks { grid-template-columns: 1fr 1fr; column-gap: 24px; }
}
.m-tier-rung-checks li {
  display: flex;
  gap: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--color-text);
}
.m-tier-rung-checks li::before {
  content: "✓";
  color: var(--color-primary-700);
  font-weight: 700;
  flex-shrink: 0;
}
.m-tier-rung-says {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
  padding-top: 12px;
  border-top: 1px dashed var(--color-border-subtle);
}

/* ════════════════════════════════════════════════════════════════════
 * HOMEPAGE REBUILD (7-beat arc) — fit-score ring, match card,
 * what-we-match-on, featured testimonial, trust strip.
 * ════════════════════════════════════════════════════════════════════ */

/* ── Fit-score ring: the recurring brand device (CSS conic-gradient) ── */
.m-fit-ring {
  --pct: 84;
  width: 88px;
  height: 88px;
  border-radius: 9999px;
  background: conic-gradient(
    var(--color-primary-500) calc(var(--pct) * 1%),
    rgba(255, 255, 255, 0.4) 0
  );
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px -10px rgba(9, 41, 34, 0.55);
}
.m-fit-ring-inner {
  width: 66px;
  height: 66px;
  border-radius: 9999px;
  background: var(--color-surface, #fff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.m-fit-ring-pct { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; color: var(--color-primary-900); }
.m-fit-ring-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-subtle); margin-top: 2px; }

/* ── Beat 2: "what a match looks like" — text left / listing card right ── */
.m-match-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .m-match-split { grid-template-columns: 1fr 1.05fr; gap: 64px; }
}
.m-listing-match {
  margin: 0;
  border-radius: var(--radius-xl, 20px);
  overflow: hidden;
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border-subtle);
  box-shadow: 0 24px 60px -28px rgba(9, 41, 34, 0.28), 0 4px 12px -6px rgba(9, 41, 34, 0.08);
}
.m-listing-match-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}
.m-listing-match .m-fit-ring { position: absolute; top: 16px; right: 16px; }
.m-listing-match-body { padding: 20px 22px 22px; }
.m-listing-match-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.m-listing-match-title { font-size: 17px; font-weight: 700; letter-spacing: -0.005em; color: var(--color-text); }
.m-listing-match-meta { font-size: 13px; color: var(--color-text-muted); margin-top: 2px; }
.m-match-reasons { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.m-match-reasons li {
  display: flex;
  gap: 9px;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-text);
}
.m-match-reasons li::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: 6px;
  border-radius: 9999px;
  background: var(--color-primary-500);
}

/* ── Beat 4: "what we match on" — 50/50 image + stacked key/value list ── */
.m-matchon {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .m-matchon { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.m-matchon-media {
  border-radius: var(--radius-xl, 20px);
  background-size: cover;
  background-position: center;
  min-height: 320px;
  aspect-ratio: 4 / 3;
}
.m-matchon-list { list-style: none; padding: 0; margin: 0; }
.m-matchon-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--color-border-subtle);
}
.m-matchon-list li:last-child { border-bottom: 1px solid var(--color-border-subtle); }
.m-matchon-k { font-size: 14px; font-weight: 700; color: var(--color-primary-700); letter-spacing: -0.005em; }
.m-matchon-v { font-size: 14px; line-height: 1.5; color: var(--color-text-muted); }
@media (max-width: 520px) {
  .m-matchon-list li { grid-template-columns: 1fr; gap: 4px; }
}

/* ── Beat 7: featured single testimonial ── */
.m-testi-feature { max-width: 760px; margin: 0 auto; text-align: center; }
.m-testi-quote {
  font-size: 26px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 14px 0 28px;
}
@media (min-width: 768px) { .m-testi-quote { font-size: 30px; } }
.m-testi-author { display: inline-flex; align-items: center; gap: 12px; text-align: left; }
.m-testi-avatar {
  width: 48px; height: 48px; border-radius: 9999px;
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.m-testi-name { font-size: 15px; font-weight: 700; color: var(--color-text); }
.m-testi-role { font-size: 13px; color: var(--color-text-muted); }

/* ── Beat 7: trust strip (merged traction + coverage) ── */
.m-trust-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border-subtle);
}
.m-trust-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 48px; }
.m-trust-stats > div { display: flex; flex-direction: column; align-items: center; }
/* Near-black numbers: green stays reserved for eyebrows + accents only, so the stats don't compete with the pricing headline below. */
.m-trust-stats strong { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; color: var(--color-text); font-variant-numeric: tabular-nums; }
.m-trust-stats span { font-size: 12px; color: var(--color-text-muted); margin-top: 3px; }
.m-trust-press { font-size: 13px; color: var(--color-text-subtle); margin: 0; max-width: 560px; line-height: 1.5; }

/* ── Match-rate anatomy (how-it-works: the core, made concrete) ── */
.m-anatomy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .m-anatomy { grid-template-columns: 1fr 1fr 1.15fr; gap: 24px; }
}
.m-anatomy-input {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.m-anatomy-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; color: var(--color-primary-700); }
.m-anatomy-title { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin: 8px 0 14px; }
.m-anatomy-list { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.m-anatomy-list li { display: flex; gap: 9px; font-size: 14px; line-height: 1.45; color: var(--color-text); }
.m-anatomy-list li::before { content: ""; flex-shrink: 0; width: 6px; height: 6px; margin-top: 7px; border-radius: 9999px; background: var(--color-primary-300); }
.m-anatomy-note { font-size: 13px; color: var(--color-text-muted); margin: 0; }
.m-anatomy-output {
  background: var(--color-primary-900);
  color: white;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
/* Bright-mint ring arc for any fit-ring on a dark (primary-900) surface */
.m-anatomy-output .m-fit-ring,
.m-soon .m-fit-ring {
  background: conic-gradient(var(--color-primary-200) calc(var(--pct) * 1%), rgba(255, 255, 255, 0.16) 0);
  box-shadow: none;
}
.m-anatomy-output .m-fit-ring-inner,
.m-soon .m-fit-ring-inner { background: var(--color-primary-900); }
.m-anatomy-output .m-fit-ring-pct,
.m-soon .m-fit-ring-pct { color: white; }
.m-anatomy-output .m-fit-ring-label,
.m-soon .m-fit-ring-label { color: rgba(255, 255, 255, 0.6); }
.m-anatomy-output-title { font-size: 15px; font-weight: 600; }
.m-anatomy-reasons { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; width: 100%; }
.m-anatomy-reasons li { font-size: 13px; color: rgba(255, 255, 255, 0.85); display: flex; gap: 8px; text-align: left; line-height: 1.4; }
.m-anatomy-reasons li::before { content: "✓"; color: var(--color-primary-200); font-weight: 700; flex-shrink: 0; }
.m-anatomy-rule { text-align: center; font-size: 15px; color: var(--color-text-muted); max-width: 600px; margin: 28px auto 0; line-height: 1.55; }
.m-anatomy-rule strong { color: var(--color-text); font-weight: 600; }

/* ── Coming-soon holding page (early access) ── */
.m-soon {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px 64px;
  background: var(--color-primary-900);
  color: white;
  overflow: hidden;
}
.m-soon-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 900px 520px at 50% 0%, rgba(17, 181, 143, 0.20), transparent 62%);
  pointer-events: none;
}
.m-soon-brand {
  position: absolute;
  top: 56px;
  left: 0; right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: white;
}
@media (min-width: 768px) { .m-soon-brand { left: 56px; right: auto; justify-content: flex-start; top: 64px; } }
.m-soon-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 560px;
}
.m-soon-ring { margin-bottom: 6px; }
.m-soon .hero-eyebrow.m-soon-eyebrow {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.m-soon-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}
@media (min-width: 768px) { .m-soon-title { font-size: 44px; } }
.m-soon-sub {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 480px;
}
@media (min-width: 768px) { .m-soon-sub { font-size: 17px; } }
.m-soon-form {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 440px;
  margin-top: 8px;
}
@media (max-width: 479px) { .m-soon-form { flex-direction: column; } }
.m-soon-input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  border-radius: var(--radius-md, 10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: inherit;
  font-size: 15px;
}
.m-soon-input::placeholder { color: rgba(255, 255, 255, 0.5); }
.m-soon-input:focus {
  outline: none;
  border-color: var(--color-primary-200);
  box-shadow: 0 0 0 3px rgba(22, 233, 136, 0.25);
}
.m-soon-submit {
  flex: 0 0 auto;
  height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius-md, 10px);
  background: white;
  color: var(--color-primary-900);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--duration-3, 0.2s) var(--ease-out, ease);
}
.m-soon-submit:hover { background: var(--color-neutral-200, #e8e8e8); }
.m-soon-note { font-size: 12px; color: rgba(255, 255, 255, 0.45); margin: 4px 0 0; }
.m-soon-back {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--duration-3, 0.2s) var(--ease-out, ease);
}
.m-soon-back:hover { color: white; }

/* How-it-works system overview — 4 connected pillars */
.m-system-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}
@media (min-width: 720px) {
  .m-system-flow { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (min-width: 1100px) {
  .m-system-flow { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.m-system-step {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.m-system-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-700);
  font-weight: 600;
}
.m-system-step-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin: 0;
  color: var(--color-text);
}
.m-system-step-body {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}
.m-system-step-tag {
  margin: auto 0 0;
  padding-top: 14px;
  border-top: 1px dashed var(--color-border-subtle);
  font-size: 12px;
  color: var(--color-text-subtle);
  line-height: 1.45;
}

@media (min-width: 1100px) {
  /* Subtle connector dots between pillars on wide screens, suggesting flow without an actual arrow */
  .m-system-step + .m-system-step::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-primary-300);
    transform: translateY(-50%);
  }
}

.m-system-handoff {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.m-system-handoff p {
  font-size: 14px;
  color: var(--color-text-subtle);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.m-tier.featured .m-tier-ribbon { backdrop-filter: blur(8px); }
.m-tier-title { font-size: 22px; font-weight: 700; letter-spacing: -0.005em; }
.m-tier-time { font-size: 13px; color: var(--color-text-muted); margin-top: 4px; }
.m-tier.featured .m-tier-time { color: rgba(255,255,255,0.7); }
.m-tier-list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.m-tier-list li { display: flex; gap: 10px; font-size: 14px; line-height: 1.5; color: var(--color-text); }
.m-tier-list li::before { content: "✓"; color: var(--color-primary-700); font-weight: 700; flex-shrink: 0; }
.m-tier.featured .m-tier-list li { color: rgba(255,255,255,0.88); }
.m-tier.featured .m-tier-list li::before { color: var(--color-primary-200); }

/* Promise grid on dark surface */
.m-section-dark {
  background: var(--color-primary-900);
  color: white;
  border-radius: var(--radius-2xl);
  padding: 64px 32px;
}
@media (min-width: 700px) { .m-section-dark { padding: 80px 56px; } }
.m-promise {
  padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.m-promise-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-primary-200); font-size: 16px;
  margin-bottom: 8px;
}
.m-promise-title { font-size: 18px; font-weight: 700; color: white; }
.m-promise-body { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.72); }

/* Horizontal step timeline (5-step landlord) */
.m-htimeline {
  display: grid; gap: 12px; grid-template-columns: 1fr;
  margin-top: 32px;
}
@media (min-width: 800px) {
  .m-htimeline {
    grid-template-columns: repeat(5, 1fr);
    position: relative;
  }
  .m-htimeline::before {
    content: ""; position: absolute;
    left: 4%; right: 4%; top: 24px; height: 2px;
    background: var(--color-border-subtle); z-index: 0;
  }
}
.m-htimeline-step { display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; position: relative; z-index: 1; }
.m-htimeline-num {
  width: 48px; height: 48px; border-radius: 9999px;
  background: var(--color-primary-900); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 0 0 6px var(--color-background-subtle);
}
.m-htimeline-day { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; color: var(--color-primary-700); }
.m-htimeline-title { font-size: 14px; font-weight: 700; }
.m-htimeline-body { font-size: 12px; color: var(--color-text-muted); line-height: 1.5; }

/* Generic data table */
.m-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl); overflow: hidden;
  background: var(--color-surface);
}
.m-table th, .m-table td {
  padding: 14px 18px; text-align: left;
  font-size: 14px; line-height: 1.4;
  border-bottom: 1px solid var(--color-border-subtle);
}
.m-table th {
  background: var(--color-background-subtle); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-text-muted);
}
.m-table tr:last-child td { border-bottom: 0; }
.m-table-mini { display: inline-flex; align-items: center; gap: 6px; }
.m-table .cell-yes { color: var(--color-primary-700); font-weight: 700; }
.m-table .cell-no { color: var(--color-text-subtle); }
.m-table .col-featured { background: rgba(17, 181, 143, 0.04); }
.m-table .col-featured th { background: var(--color-primary-900); color: white; }

/* Applicant fit-score row in table */
.m-fit-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 2px 10px; border-radius: 9999px;
  font-size: 12px; font-weight: 600;
  background: var(--color-background-muted); color: var(--color-text);
}
.m-fit-pill.gold   { background: linear-gradient(135deg, #fff4d1, #f0c861); color: #6f4a07; }
.m-fit-pill.silver { background: linear-gradient(135deg, #eceef2, #c8ccd3); color: #4a5160; }
.m-fit-pill.bronze { background: linear-gradient(135deg, #fdf1e1, #f1d9ac); color: #7b4c16; }

/* Pilot form on dark surface */
.m-pilot-form {
  display: grid; gap: 12px; grid-template-columns: 1fr;
  margin-top: 24px;
}
@media (min-width: 800px) { .m-pilot-form { grid-template-columns: 1fr 1fr 1fr auto; align-items: end; } }
.m-pilot-field { display: flex; flex-direction: column; gap: 6px; }
.m-pilot-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.04em; }
.m-pilot-input {
  height: 44px; padding: 0 14px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18);
  color: white; font-family: inherit; font-size: 14px;
  transition: border-color var(--duration-2);
}
.m-pilot-input::placeholder { color: rgba(255,255,255,0.45); }
.m-pilot-input:focus { outline: none; border-color: var(--color-primary-200); }

/* Tabs (used on /how-it-works and /pricing toggle) */
.m-tab-toggle {
  display: inline-flex; padding: 4px; gap: 2px;
  background: var(--color-background-muted); border-radius: 9999px;
}
.m-tab-toggle button {
  border: 0; padding: 8px 20px; border-radius: 9999px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  background: transparent; color: var(--color-text-muted);
  cursor: pointer;
  transition: background-color var(--duration-2) var(--ease-snappy), color var(--duration-2);
}
.m-tab-toggle button.active { background: var(--color-primary-900); color: white; }
.m-tab-toggle button:hover:not(.active) { color: var(--color-text); }

/* Pricing 3-tier card grid */
.m-price-3 {
  display: grid; gap: 20px; grid-template-columns: 1fr;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 900px) { .m-price-3 { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }

/* Centered info box ("what the fees fund") */
.m-info {
  max-width: 720px; margin: 0 auto;
  padding: 32px;
  background: var(--color-background-subtle);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  text-align: center;
}
.m-info-icon {
  width: 48px; height: 48px; border-radius: 9999px;
  background: var(--color-primary-900); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 12px;
}
.m-info-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.m-info-body { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; max-width: 540px; margin: 0 auto; }

/* Dashboard mockup card (used on landlord hero + applicant inbox section) */
.m-dashboard {
  background: var(--color-surface); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(11, 61, 50, 0.35);
}
.m-dashboard-chrome {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--color-border-subtle);
  background: var(--color-background-subtle);
}
.m-dashboard-title { font-size: 13px; font-weight: 700; }
.m-dashboard-pill {
  display: inline-flex; padding: 2px 10px; border-radius: 9999px;
  background: var(--color-primary-900); color: white;
  font-size: 11px; font-weight: 600;
}

/* ────────────────────────────────────────────────────────────
   VOIT Card-03 / 04 / 05 helpers — new asymmetric patterns
   ──────────────────────────────────────────────────────────── */

/* Card-05 — content card overlapping a wide background photo */
.v-overlap { position: relative; }
.v-overlap-bg {
  height: 380px; width: 100%;
  border-radius: var(--radius-2xl);
  background-size: cover; background-position: center;
  background-color: var(--color-background-muted);
}
@media (min-width: 800px) { .v-overlap-bg { height: 480px; } }
.v-overlap-card {
  position: relative; z-index: 1;
  margin-top: -120px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 30px 60px -30px rgba(11, 61, 50, 0.25);
  max-width: 760px; margin-left: auto; margin-right: auto;
  transition: transform var(--duration-3) var(--ease-swift), box-shadow var(--duration-3);
}
@media (min-width: 700px) { .v-overlap-card { padding: 40px 48px; } }
.v-overlap-card:hover { transform: none; box-shadow: 0 30px 60px -30px rgba(11, 61, 50, 0.25); }
.v-overlap.dark .v-overlap-card {
  background: var(--color-primary-900); color: white; border-color: transparent;
}
.v-overlap.dark .v-overlap-card h2,
.v-overlap.dark .v-overlap-card h3 { color: white; }
.v-overlap.dark .v-overlap-card p { color: rgba(255,255,255,0.78); }
.v-overlap-stats {
  display: grid; gap: 12px; grid-template-columns: 1fr;
  margin-top: 20px;
}
@media (min-width: 600px) { .v-overlap-stats { grid-template-columns: repeat(3, 1fr); } }
.v-overlap-stat {
  padding: 14px 18px; border-radius: 12px;
  background: rgba(11, 61, 50, 0.04);
}
.v-overlap.dark .v-overlap-stat { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); }
.v-overlap-stat-value { font-size: 24px; font-weight: 700; letter-spacing: -0.01em; line-height: 1; color: var(--color-primary-900); }
.v-overlap.dark .v-overlap-stat-value { color: white; }
.v-overlap-stat-label { font-size: 12px; color: var(--color-text-muted); margin-top: 4px; }
.v-overlap.dark .v-overlap-stat-label { color: rgba(255,255,255,0.66); }

/* Card-04 — asymmetric photo + stacked content card */
.v-card-split { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 900px) { .v-card-split { grid-template-columns: 1fr 1fr; gap: 48px; } }
.v-card-split.reverse > :first-child { order: 1; }
@media (min-width: 900px) { .v-card-split.reverse > :first-child { order: 0; } }
.v-card-split-photo {
  border-radius: var(--radius-xl); min-height: 360px;
  background-size: cover; background-position: center;
  background-color: var(--color-background-muted);
}
.v-card-split-content {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-subtle);
  padding: 32px;
  align-self: center;
  transition: transform var(--duration-3) var(--ease-swift), box-shadow var(--duration-3);
}
@media (min-width: 700px) { .v-card-split-content { padding: 40px 44px; } }
.v-card-split-content:hover { transform: none; box-shadow: none; }
.v-card-split.dark .v-card-split-content { background: var(--color-primary-900); color: white; border-color: transparent; }
.v-card-split.dark .v-card-split-content h2,
.v-card-split.dark .v-card-split-content h3 { color: white; }
.v-card-split.dark .v-card-split-content p { color: rgba(255,255,255,0.78); }

/* Card-03 — layered tier card: small content card on top of a colored gradient panel */
.v-layered {
  position: relative;
  display: flex; flex-direction: column;
  transition: transform var(--duration-3) var(--ease-swift);
}
.v-layered:hover { transform: none; }
.v-layered-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  padding: 22px 24px;
  margin: 0 16px -28px;
  z-index: 1;
  box-shadow: var(--shadow-md);
}
.v-layered-panel {
  border-radius: var(--radius-xl);
  padding: 56px 24px 24px;
  min-height: 260px;
  color: white;
  display: flex; align-items: end;
}
.v-layered-panel.bronze { background: linear-gradient(180deg, #d4a358 0%, #7b4c16 100%); }
.v-layered-panel.silver { background: linear-gradient(180deg, #a8b2c4 0%, #4a5160 100%); }
.v-layered-panel.gold   { background: linear-gradient(180deg, #ebcb5a 0%, #8a6014 100%); }
.v-layered-panel-body {
  font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.92);
}
.v-layered-panel-body strong { color: white; }

/* ────────────────────────────────────────────────────────────
   Hover polish across all .m-* card surfaces
   ──────────────────────────────────────────────────────────── */
.m-check-item, .m-stat-big, .m-testi-card, .m-htimeline-step, .m-info {
  transition: transform var(--duration-3) var(--ease-swift), box-shadow var(--duration-3) var(--ease-out), background-color var(--duration-3);
}
.m-check-item:hover, .m-stat-big:hover, .m-testi-card:hover, .m-info:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-lg);
}
.m-htimeline-step:hover .m-htimeline-num { transform: scale(1.1); }
.m-htimeline-num { transition: transform var(--duration-2) var(--ease-snappy); }

.m-price-card:not(.featured) {
  transition: transform var(--duration-3) var(--ease-swift), box-shadow var(--duration-3);
}
.m-price-card:not(.featured):hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.m-promise, .m-landlord-feature {
  transition: background-color var(--duration-3) var(--ease-out), border-color var(--duration-3);
}
.m-promise:hover, .m-landlord-feature:hover {
  background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.22);
}

/* .v-img scale inside any hover-card */
.v-card-split:hover .v-card-split-photo,
.v-overlap:hover .v-overlap-bg,
.m-check-item:hover .v-img,
.card-hover:hover .v-img,
.m-step:hover .v-img,
.m-tier:hover .v-img {
  transform: scale(1.02);
}
.v-card-split-photo, .v-overlap-bg {
  transition: transform var(--duration-4) var(--ease-snappy);
}

/* Buttons darken on hover only — no position shift. The :active scale(0.98) on .btn provides press feedback. */
.btn:hover:not(:disabled) { transform: none; }

/* Featured customer card (Card-01 with image-top) — already styled via .v-card-with-img */
.v-card-with-img {
  transition: transform var(--duration-3) var(--ease-swift), box-shadow var(--duration-3);
}
.v-card-with-img:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* Carousel-01 / 04 chevron row + edge strip — already in preview.css */

/* Lifestyle cinematic (Carousel-04) — full-bleed strip with overlay */
.m-lifestyle {
  position: relative; overflow: hidden;
  border-radius: var(--radius-2xl);
  padding: 64px 32px;
  background: linear-gradient(135deg, var(--color-primary-900), var(--color-primary-700));
  color: white;
}
@media (min-width: 800px) { .m-lifestyle { padding: 96px 56px; } }
.m-lifestyle-strip {
  display: grid; gap: 12px; grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 700px) { .m-lifestyle-strip { grid-template-columns: repeat(3, 1fr); } }
.m-lifestyle-tile {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background-size: cover; background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-3) var(--ease-swift);
}
.m-lifestyle-tile:hover { transform: scale(1.02); }
.m-lifestyle-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9, 41, 34, 0.7) 100%);
}
.m-lifestyle-tile-caption {
  position: absolute; bottom: 16px; left: 20px; right: 20px;
  z-index: 1; color: white; font-size: 14px; font-weight: 600;
}

/* Carousel-01 city strip (re-uses .v-strip-edge but adds city-tile styling) */
.m-city-strip { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 16px 0 40px; scrollbar-width: none; }
.m-city-strip::-webkit-scrollbar { display: none; }
.m-city-tile {
  flex: 0 0 280px; scroll-snap-align: start;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  transition: box-shadow var(--duration-4) var(--ease-snappy);
  cursor: pointer;
}
.m-city-tile:hover {
  transform: none;
  box-shadow:
    0 0 0 6px rgba(11, 61, 50, 0.04),
    0 18px 48px -12px rgba(11, 61, 50, 0.18),
    0 4px 12px -4px rgba(11, 61, 50, 0.10);
}
.m-city-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9, 41, 34, 0.85) 100%);
}
.m-city-tile-name {
  position: absolute; bottom: 16px; left: 20px; right: 20px;
  z-index: 1; color: white;
}
.m-city-tile-name strong { font-size: 20px; font-weight: 700; display: block; line-height: 1.1; }
.m-city-tile-name span { font-size: 12px; color: rgba(255,255,255,0.72); font-weight: 500; }

@media (min-width: 800px) { .m-promise-split { grid-template-columns: 1fr 1fr !important; } }

/* ─── HOVER & EM FIXES (2026-05-25) ─── */

/* 1. Make italic <em> brighter on dark surfaces it was missing — m-section-dark especially */
.m-page .m-section-dark em,
.m-page .m-overlap.dark em,
.m-page .v-card-split.dark em {
  color: var(--color-primary-200);
}

/* 2. Strip hover effects from non-interactive cards.
      These display info, not call to action. Static rendering. */
.m-check-item,
.m-stat-big,
.m-info,
.m-testi-card,
.m-promise,
.m-landlord-feature,
.m-step,
.m-htimeline-step,
.v-overlap-card,
.v-card-split-content {
  transition: none !important;
}
.m-check-item:hover,
.m-stat-big:hover,
.m-info:hover,
.m-testi-card:hover,
.m-promise:hover,
.m-landlord-feature:hover,
.m-step:hover,
.m-htimeline-step:hover,
.v-overlap-card:hover,
.v-card-split-content:hover {
  transform: none !important;
}
.m-htimeline-step:hover .m-htimeline-num { transform: none !important; }

/* 3. Stop image backgrounds from scaling on parent hover.
      Backdrop images shouldn't react to "card hover" anymore. */
.v-card-split:hover .v-card-split-photo,
.v-overlap:hover .v-overlap-bg,
.m-check-item:hover .v-img,
.card-hover:hover .v-img,
.m-step:hover .v-img,
.m-tier:hover .v-img {
  transform: none !important;
}

/* What we KEEP hover on (clearly clickable / CTA): .btn, .listing, .v-card-with-img,
   .m-tier (tier cards link to Quality Label explainer), .m-price-card non-featured
   (pricing has CTA). Those rules stay as defined above. */

/* ────────────────────────────────────────────────────────────
   voit-blocks.html — CSS helpers for the 109 additional variants
   ──────────────────────────────────────────────────────────── */

/* Category jump nav at top of voit-blocks */
.voit-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 32px; }
.voit-nav a { padding: 6px 12px; border-radius: 9999px; background: var(--color-background-muted); color: var(--color-text); font-size: 12px; font-weight: 500; transition: background-color var(--duration-2); }
.voit-nav a:hover { background: var(--color-primary-100); color: var(--color-primary-900); }

/* Category header inside voit-blocks */
.voit-cat-header { margin-bottom: 32px; }
.voit-cat-title-h { font-size: 36px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; margin: 0 0 8px; }
.voit-cat-desc { font-size: 15px; color: var(--color-text-muted); max-width: 640px; line-height: 1.5; margin: 0; }

/* Hero variants — special patterns */
.h-stickynote {
  position: absolute; padding: 16px 20px; font-family: 'Caveat', cursive, ui-sans-serif;
  font-size: 18px; line-height: 1.3; border-radius: 4px;
  box-shadow: 0 8px 16px -4px rgba(0,0,0,0.15), 0 4px 8px -2px rgba(0,0,0,0.08);
  transform: rotate(-3deg);
}
.h-stickynote.yellow { background: #fff8a8; color: #5a4a00; transform: rotate(-3deg); }
.h-stickynote.pink { background: #ffc1d4; color: #5a0030; transform: rotate(2deg); }
.h-stickynote.green { background: #c1ffd1; color: #003c20; transform: rotate(-1deg); }

.h-dotpattern {
  height: 100px; width: 100%;
  background-image: radial-gradient(circle, var(--color-primary-900) 1px, transparent 1px);
  background-size: 14px 14px; background-position: 0 0;
}

.h-bubble-bg {
  background-image: radial-gradient(circle at center, rgba(255,255,255,0.4) 8px, transparent 9px);
  background-size: 30px 30px;
}

/* Pricing — feature comparison matrix */
.p-matrix { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 13px; }
.p-matrix th { background: var(--color-background-subtle); padding: 12px 14px; text-align: center; font-weight: 600; border-bottom: 1px solid var(--color-border-subtle); }
.p-matrix th:first-child { text-align: left; }
.p-matrix th.featured { background: var(--color-primary-900); color: white; }
.p-matrix td { padding: 10px 14px; text-align: center; border-bottom: 1px solid var(--color-border-subtle); }
.p-matrix td:first-child { text-align: left; font-weight: 500; }
.p-matrix td.featured { background: rgba(17, 181, 143, 0.04); font-weight: 600; }
.p-matrix .yes { color: var(--color-primary-700); }
.p-matrix .no { color: var(--color-text-subtle); }

.p-toggle { display: inline-flex; padding: 4px; background: var(--color-background-muted); border-radius: 9999px; gap: 2px; }
.p-toggle button { border: 0; padding: 6px 16px; border-radius: 9999px; background: transparent; color: var(--color-text-muted); font-size: 13px; font-weight: 500; cursor: pointer; }
.p-toggle button.active { background: var(--color-primary-900); color: white; }

.p-gradient-bg {
  background: linear-gradient(135deg, #b347d9 0%, #ec61b3 50%, #f06f5a 100%);
}
.p-darkmode-bg { background: #0a0a0a; color: white; }
.p-darkmode-bg th { background: #1a1a1a; color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.08); }
.p-darkmode-bg td { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.06); }

/* Dashboard mockup chrome */
.d-chrome {
  background: var(--color-surface); border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg); overflow: hidden;
}
.d-sidebar { background: var(--color-primary-900); color: white; padding: 16px 12px; }
.d-sidebar-item { padding: 8px 10px; border-radius: 6px; font-size: 12px; display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); }
.d-sidebar-item.active { background: rgba(255,255,255,0.10); color: white; }
.d-tile { padding: 16px; border: 1px solid var(--color-border-subtle); border-radius: 10px; background: var(--color-surface); }
.d-stat { font-size: 22px; font-weight: 700; }
.d-stat-label { font-size: 11px; color: var(--color-text-subtle); text-transform: uppercase; letter-spacing: 0.04em; }

/* Blog index */
.blog-post-card { background: var(--color-surface); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border-subtle); }
.blog-post-image { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.blog-post-body { padding: 16px 18px; }
.blog-post-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-primary-700); font-weight: 600; }
.blog-post-title { font-size: 16px; font-weight: 700; line-height: 1.3; margin: 4px 0; }
.blog-post-meta { font-size: 12px; color: var(--color-text-subtle); }

/* Footer variants */
.f-newsletter { display: flex; gap: 8px; max-width: 360px; }
.f-newsletter input { flex: 1; height: 40px; padding: 0 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: white; font-family: inherit; font-size: 13px; }
.f-newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.f-newsletter button { padding: 0 18px; border-radius: 8px; border: 0; background: white; color: var(--color-primary-900); font-weight: 600; font-size: 13px; cursor: pointer; }

/* Activity feed */
.af-panel { background: var(--color-surface); border: 1px solid var(--color-border-subtle); border-radius: var(--radius-lg); padding: 16px; max-width: 640px; }
.af-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--color-border-subtle); }
.af-item:last-child { border-bottom: 0; }
.af-time { font-size: 11px; color: var(--color-text-subtle); white-space: nowrap; min-width: 50px; }
.af-avatar { width: 28px; height: 28px; border-radius: 9999px; flex-shrink: 0; background: var(--color-background-muted); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; color: var(--color-text-muted); }
.af-content { flex: 1; min-width: 0; font-size: 13px; line-height: 1.4; }
.af-content strong { font-weight: 600; }
.af-quote { background: var(--color-background-subtle); padding: 8px 12px; border-radius: 6px; margin-top: 6px; font-size: 12px; color: var(--color-text-muted); }
.af-actions { display: inline-flex; gap: 4px; margin-top: 6px; }
.af-action-pill { padding: 3px 10px; border-radius: 9999px; font-size: 11px; font-weight: 500; }
.af-action-pill.primary { background: var(--color-primary-700); color: white; }
.af-action-pill.subtle { background: var(--color-background-muted); color: var(--color-text-muted); }

/* Award banner — Features-15 */
.f-award-strip { background: #0a0a0a; color: white; border-radius: var(--radius-lg); padding: 24px 32px; }

/* Mascot CTA — Features-18 */
.f-mascot-cta { background: linear-gradient(135deg, #fff4d1 0%, #ffd699 100%); border-radius: var(--radius-xl); padding: 32px 40px; position: relative; overflow: hidden; }

/* Sticky note column */
.h-sticky-row { position: relative; display: flex; justify-content: center; gap: 32px; padding: 32px 0; min-height: 200px; }

/* ────────────────────────────────────────────────────────────────────
 * Rounded hero card. Image fills the card. Copy sits on top with scrim.
 * Used by index.html hero only.
 * ──────────────────────────────────────────────────────────────────── */
/* Hero card has passe-partout mat on the SIDES only — top sits flush under the nav, bottom sits flush against the next section. Rounded corners on all four corners gently curve against the adjacent edges. */
.m-hero-card {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background-color: var(--color-primary-900);
  min-height: 560px;
  color: white;
}
@media (min-width: 768px) {
  .m-hero-card {
    border-radius: 32px;
    min-height: 76svh;
  }
}
.m-hero-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: -2;
}
.m-hero-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 41, 34, 0) 0%,
    rgba(9, 41, 34, 0) 25%,
    rgba(9, 41, 34, 0.35) 60%,
    rgba(9, 41, 34, 0.55) 80%,
    rgba(9, 41, 34, 0.75) 100%
  );
  z-index: -1;
}
.m-hero-card-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: inherit;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 32px;
  padding: 32px 24px 48px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .m-hero-card-inner { padding: 40px 40px 56px; gap: 40px; }
}
@media (min-width: 1024px) {
  .m-hero-card-inner { padding: 48px 64px 64px; }
}
.m-hero-card-inner .hero-eyebrow { align-self: flex-start; }
.m-hero-card-inner .hero-title,
.m-hero-card-inner .hero-subtitle { margin-left: 0; margin-right: 0; }

/* Bottom row: headline on the left, description + CTAs on the right */
.m-hero-card-foot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: end;
}
@media (min-width: 900px) {
  .m-hero-card-foot {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 48px;
  }
}
.m-hero-card-foot .hero-title { max-width: 640px; }
.m-hero-card-aside { display: flex; flex-direction: column; gap: 18px; max-width: 460px; }
.m-hero-card-aside .hero-subtitle { font-size: 16px; line-height: 1.5; }
@media (min-width: 768px) {
  .m-hero-card-aside .hero-subtitle { font-size: 17px; }
}
.m-hero-card-aside .hero-actions { margin-top: 4px; }
.m-hero-card .hero-eyebrow {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.m-hero-card .hero-title {
  color: white;
  text-align: left;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.22);
}
.m-hero-card .hero-title em {
  color: white;
  font-weight: 400;
  font-style: normal;
  opacity: 0.92;
}
.m-hero-card .hero-subtitle {
  color: rgba(255, 255, 255, 0.94);
  text-align: left;
}
.m-hero-card .hero-actions {
  margin-top: 16px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

/* Hero host: scales wider than the body sections on large screens for an immersive, viewport-adaptive hero. Body content stays at 1280 below. */
.hero.hero-card-host {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: left;
}
@media (min-width: 768px) { .hero.hero-card-host { padding: 0 40px; } }
@media (min-width: 1024px) { .hero.hero-card-host { padding: 0 64px; } }
@media (min-width: 1760px) { .hero.hero-card-host { max-width: min(90vw, 1920px); } }

/* ────────────────────────────────────────────────────────────────────
 * Overlap card: fully static. No hover transforms, no transitions on
 * the background image. The card sits on the image and stays put.
 * Em accent inside .v-overlap.dark stays legible on the primary-900 fill.
 * ──────────────────────────────────────────────────────────────────── */
.v-overlap-card {
  transition: none;
}
.v-overlap-card:hover {
  transform: none;
  box-shadow: 0 30px 60px -30px rgba(11, 61, 50, 0.25);
  border-color: var(--color-border-subtle);
}
.v-overlap .v-overlap-bg {
  transition: none;
}
.v-overlap:hover .v-overlap-bg {
  transform: none;
  filter: none;
}

.v-overlap.dark em {
  color: var(--color-primary-200);
}

.v-layered { transition: none; }
.v-layered:hover { transform: none; }
.v-layered-card { transition: none; }
.v-layered:hover .v-layered-card { transform: none; box-shadow: none; }
.v-layered-panel { transition: none; }
.v-layered:hover .v-layered-panel { transform: none; }

