*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #F3F2EE;
  --bg2:     #ECEAE4;
  --surface: #FAFAF8;
  --border:  rgba(0,0,0,0.09);
  --text:    #0E0E0E;
  --muted:   #6b6b6b;
  --accent:  #7c5cfc;
  --accent2: #0ea5e9;
  --accent3: #e8642a;
  --grad:    linear-gradient(135deg, #7c5cfc, #0ea5e9);
  --mono:    'JetBrains Mono', ui-monospace, monospace;
  --serif:   'Fraunces', Georgia, serif;
  --sans:    'Inter Tight', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  background: rgba(243,242,238,0.88);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text { font-family: var(--sans); font-weight: 600; font-size: 17px; letter-spacing: -0.3px; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 32px; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.btn-nav {
  background: var(--text) !important; border: 1px solid var(--text);
  color: var(--surface) !important; padding: 8px 20px; border-radius: 6px;
  font-size: 13px !important; font-weight: 600 !important;
  transition: opacity .2s !important;
}
.btn-nav:hover { opacity: .8 !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 32px 80px;
  max-width: 1200px; margin: 0 auto;
  gap: 60px;
}
.hero-bg {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
}
.orb-1 { width: 600px; height: 600px; background: rgba(124,92,252,.12); top: -150px; left: -150px; }
.orb-2 { width: 500px; height: 500px; background: rgba(14,165,233,.08); bottom: 0; right: 0; }
.orb-3 { width: 400px; height: 400px; background: rgba(232,100,42,.07); top: 40%; left: 40%; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, transparent 30%, black 80%);
}
.hero-content { flex: 1; max-width: 600px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; border-radius: 4px;
  border: 1px solid rgba(124,92,252,.22);
  background: rgba(124,92,252,.07);
  font-family: var(--mono); font-size: 11px; font-weight: 500; color: #6c47e8;
  margin-bottom: 28px; letter-spacing: 0.5px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; } 50% { opacity: .4; }
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 6.8vw, 92px); font-weight: 500; line-height: 1.0;
  letter-spacing: -3px; margin-bottom: 24px;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
}
.hero-title .wonk {
  font-style: italic; font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  letter-spacing: -2px;
}
.gradient-text {
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 18px; color: var(--muted); line-height: 1.7; margin-bottom: 40px; max-width: 480px; }
.hero-cta { display: flex; gap: 16px; align-items: center; margin-bottom: 56px; flex-wrap: wrap; }
.btn-primary {
  padding: 14px 28px; border-radius: 10px;
  background: var(--grad); color: #fff; font-weight: 600; font-size: 15px;
  text-decoration: none; border: none; cursor: pointer;
  transition: opacity .2s, transform .15s;
  display: inline-block;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary.btn-large { padding: 18px 36px; font-size: 17px; }
.btn-ghost {
  color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500;
  transition: color .2s;
}
.btn-ghost:hover { color: var(--text); }
.hero-stats { display: flex; align-items: center; gap: 32px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--serif); font-size: 34px; font-weight: 500; letter-spacing: -0.5px; font-variation-settings: "opsz" 48, "SOFT" 50, "WONK" 0; }
.stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ── HERO VISUAL ── */
.hero-visual { flex: 0 0 420px; display: flex; justify-content: center; align-items: center; }
.card-stack { position: relative; width: 340px; height: 360px; }
.ui-card {
  position: absolute; border-radius: 20px; border: 1px solid var(--border);
  background: var(--surface);
}
.card-back-2 {
  inset: 0; transform: rotate(-6deg) translateY(16px) translateX(-12px);
  opacity: .35; background: rgba(124,92,252,.08);
}
.card-back-1 {
  inset: 0; transform: rotate(-3deg) translateY(8px) translateX(-6px);
  opacity: .6;
}
.card-front {
  inset: 0; padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 20px 60px rgba(124,92,252,.15), 0 4px 24px rgba(0,0,0,.08), 0 0 0 1px rgba(124,92,252,.15);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.card-header { display: flex; align-items: center; justify-content: space-between; }
.card-eyebrow {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted);
}
.card-tag { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--accent2); background: rgba(14,165,233,.08); padding: 3px 9px; border-radius: 4px; border: 1px solid rgba(14,165,233,.18); }
.card-body { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.ai-line {
  height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, rgba(0,0,0,.07), rgba(0,0,0,.03));
  width: var(--w);
  animation: shimmer 2.5s infinite;
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.ai-prompt {
  display: flex; align-items: center; gap: 10px;
  background: rgba(124,92,252,.07); border: 1px solid rgba(124,92,252,.2);
  border-radius: 10px; padding: 10px 14px;
  font-size: 12px; color: #6c47e8;
}
.prompt-icon { animation: spin 3s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.avatar-row { display: flex; }
.avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--grad); border: 2px solid var(--bg);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; background: linear-gradient(135deg, #ff4bac, #7c5cfc); }
.avatar:nth-child(2) { background: linear-gradient(135deg, #00e5ff, #7c5cfc); }
.card-label { font-size: 11px; color: var(--muted); }

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 14px 0; background: var(--bg2);
}
.marquee-track {
  display: flex; gap: 28px; width: max-content;
  animation: marquee 20s linear infinite;
  font-family: var(--mono); font-size: 11px; color: var(--muted); font-weight: 400; text-transform: uppercase; letter-spacing: 1.5px;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.dot { color: var(--accent); }

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section-dark { background: var(--bg2); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block; font-family: var(--mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 16px;
  background: rgba(124,92,252,.07); border: 1px solid rgba(124,92,252,.18);
  padding: 4px 12px; border-radius: 4px;
}
.section-header h2 {
  font-family: var(--serif); font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 500; letter-spacing: -1.8px; margin-bottom: 16px; line-height: 1.02;
  font-variation-settings: "opsz" 96, "SOFT" 50, "WONK" 0;
}
.section-header p { font-size: 17px; color: var(--muted); max-width: 500px; margin: 0 auto; }

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.service-card:hover { border-color: rgba(124,92,252,.35); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(124,92,252,.1); }
.service-card h3 { font-family: var(--sans); font-size: 19px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.3px; }
.service-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ── WORK ── */
.work-grid {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 20px;
}
.work-card-large { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.work-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; transition: border-color .2s;
}
.work-card:hover { border-color: rgba(124,92,252,.4); }
.work-preview {
  padding: 32px; min-height: 240px;
  display: flex; align-items: center; justify-content: center;
}
.preview-1 { background: linear-gradient(135deg, rgba(124,92,252,.15), rgba(0,229,255,.05)); }
.preview-2 { background: linear-gradient(135deg, rgba(0,229,255,.1), rgba(124,92,252,.05)); }
.preview-3 { background: linear-gradient(135deg, rgba(255,75,172,.1), rgba(124,92,252,.05)); }
.preview-ui { width: 100%; background: var(--bg); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.preview-bar { background: var(--surface); padding: 10px 14px; border-bottom: 1px solid var(--border); }
.preview-dots { display: flex; gap: 6px; }
.preview-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.preview-content { display: flex; gap: 12px; padding: 16px; }
.preview-block { background: rgba(255,255,255,.05); border-radius: 8px; }
.block-tall { width: 60%; height: 120px; }
.preview-side { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.block-short { height: 32px; }
.block-medium { height: 52px; }
.chat-mock { padding: 8px; display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 260px; }
.chat-msg {
  padding: 10px 14px; border-radius: 12px; font-size: 12px; max-width: 80%;
}
.chat-msg.user { background: rgba(124,92,252,.3); align-self: flex-end; border-radius: 12px 12px 2px 12px; }
.chat-msg.ai { background: var(--surface); border: 1px solid var(--border); align-self: flex-start; border-radius: 12px 12px 12px 2px; }
.typing { display: flex; gap: 4px; align-items: center; padding: 2px 0; }
.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent2); animation: typing-dot .8s infinite; }
.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing-dot { 0%, 80%, 100% { transform: scale(.6); opacity: .4; } 40% { transform: scale(1); opacity: 1; } }
.app-mock { width: 100%; max-width: 260px; }
.app-header-mock { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.app-title-mock { height: 14px; width: 100px; background: rgba(255,255,255,.1); border-radius: 4px; }
.app-btn-mock { height: 28px; width: 60px; background: rgba(124,92,252,.3); border-radius: 6px; }
.app-cards-mock { display: flex; flex-direction: column; gap: 8px; }
.app-card-mock { height: 48px; background: rgba(255,255,255,.05); border-radius: 8px; border: 1px solid var(--border); }
.app-card-accent { background: rgba(124,92,252,.15); border-color: rgba(124,92,252,.3); }
.work-info { padding: 28px; }
.work-tag { font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.work-info h3 { font-family: var(--sans); font-size: 19px; font-weight: 600; margin: 8px 0; letter-spacing: -0.3px; }
.work-info p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ── PRODUCTS ── */
.products-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 48px;
}
.product-card-wide { grid-column: 1 / -1; flex-direction: row !important; gap: 0 !important; padding: 0 !important; overflow: hidden; }
.product-card-wide .product-card-inner { padding: 32px; flex: 1; display: flex; flex-direction: column; gap: 16px; }
.product-card-wide .product-preview { flex: 0 0 380px; border-radius: 0; border: none; border-left: 1px solid var(--border); margin-top: 0; }

.product-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 28px; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: border-color .25s, transform .2s, box-shadow .2s;
}
.product-card:hover:not(.product-card-soon) { border-color: rgba(124,92,252,.3); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(124,92,252,.1); }
.product-card-tall { grid-row: span 2; }
.product-card-soon { opacity: .75; cursor: default; }
.product-card-soon:hover { transform: none !important; }

.product-header { display: flex; align-items: center; gap: 12px; }
.product-logo {
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  font-family: var(--sans); font-weight: 600; font-size: 13px; color: #fff;
  flex-shrink: 0; letter-spacing: -0.2px;
}
/* Brand-accurate RallyOpp orange from crawl: #E8642A */
.rallyopp-logo { background: linear-gradient(135deg, #E8642A, #C44E1A); }
.practops-logo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.novavms-logo  { background: linear-gradient(135deg, #0ea5e9, #0369a1); }
.novago-logo   { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.navumind-logo { background: linear-gradient(135deg, #f472b6, #be185d); }
.novapath-logo { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.distill-logo  { background: linear-gradient(135deg, #f59e0b, #b45309); }
.njhc-logo     { background: linear-gradient(135deg, #22c55e, #15803d); }
.unitcove-logo { background: linear-gradient(135deg, #0d9488, #f97316); }
.sterling-logo { background: linear-gradient(135deg, #1e3a8a, #b45309); }
.elegant-logo  { background: linear-gradient(135deg, #78350f, #d97706); }

.product-meta { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.product-name { font-family: var(--sans); font-weight: 600; font-size: 17px; letter-spacing: -0.3px; }
.product-url { font-size: 12px; color: var(--muted); }
.product-live {
  font-size: 11px; font-weight: 600; color: #4ade80;
  background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.25);
  padding: 3px 10px; border-radius: 100px; white-space: nowrap;
}
.product-soon {
  font-size: 11px; font-weight: 600; color: var(--muted);
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 100px; white-space: nowrap;
}
.product-private {
  font-size: 11px; font-weight: 600; color: #f472b6;
  background: rgba(244,114,182,.1); border: 1px solid rgba(244,114,182,.25);
  padding: 3px 10px; border-radius: 100px; white-space: nowrap;
}
.product-desc { color: var(--muted); font-size: 13.5px; line-height: 1.7; }
.product-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.product-tags span {
  font-family: var(--mono); font-size: 10px; font-weight: 400; color: var(--muted);
  background: rgba(0,0,0,.04); border: 1px solid var(--border);
  padding: 3px 9px; border-radius: 3px; letter-spacing: 0.3px;
}

/* ── shared preview shell — always dark so it reads as an app screenshot ── */
.product-preview {
  border-radius: 12px; overflow: hidden; border: 1px solid rgba(0,0,0,.12);
  background: #13151f; margin-top: 4px;
}
.pp-bar {
  background: #1e2130; padding: 7px 11px; border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; gap: 8px;
}
.pp-tag {
  font-family: var(--mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 3px 8px; border-radius: 4px;
}
.rallyopp-preview .pp-tag {
  color: #6b6b6b;
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.1);
}
.pp-addr { font-size: 10px; color: #9b9bbf; background: #13151f; padding: 2px 8px; border-radius: 4px; border: 1px solid rgba(255,255,255,.08); }

/* ── RallyOpp mock (warm cream bg, orange accent) ── */
.rallyopp-preview { background: #FAFAF8; border-color: #E8E0D8; }
.rallyopp-preview .pp-bar { background: #F0EDE8; border-color: #E8E0D8; }
.rally-mock { padding: 16px 14px 12px; display: flex; flex-direction: column; gap: 12px; }
.rally-hero-band { background: linear-gradient(160deg, #fff3e8 0%, #f9fafb 40%, #fff3e8 100%); border-radius: 10px; padding: 14px; border: 1px solid #E8E0D8; }
.rally-headline { height: 12px; width: 80%; background: #1A1A1A; border-radius: 4px; margin-bottom: 7px; opacity: .15; }
.rally-sub { height: 8px; width: 55%; background: #6B6459; border-radius: 4px; margin-bottom: 12px; opacity: .3; }
.rally-btns { display: flex; gap: 8px; }
.rally-btn-primary { height: 26px; width: 90px; background: #E8642A; border-radius: 6px; }
.rally-btn-ghost { height: 26px; width: 70px; background: transparent; border: 1px solid #E8E0D8; border-radius: 6px; }
.rally-tools { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.rally-tool-card { background: #fff; border: 1px solid #E8E0D8; border-radius: 8px; padding: 8px 6px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.rally-tool-accent { border-color: rgba(232,100,42,.35); background: rgba(232,100,42,.05); }
.rally-tool-icon { font-size: 14px; }
.rally-tool-lines div { height: 5px; border-radius: 3px; background: #E8E0D8; margin-bottom: 3px; }
.rally-tool-lines div:first-child { width: 36px; }
.rally-tool-lines div:last-child { width: 24px; }

/* ── PractOps mock ── */
.practops-preview .pp-body { display: flex; }
.pp-sidebar { width: 44px; border-right: 1px solid var(--border); padding: 10px 7px; display: flex; flex-direction: column; gap: 8px; }
.pp-nav-item { height: 7px; border-radius: 4px; background: rgba(255,255,255,.07); }
.pp-nav-active-po { background: rgba(99,102,241,.4); }
.pp-main { flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 6px; }
.pp-agent-card { display: flex; align-items: center; gap: 8px; padding: 7px 8px; background: rgba(255,255,255,.04); border-radius: 7px; border: 1px solid var(--border); }
.pp-agent-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.po-dot { background: #6366f1; box-shadow: 0 0 6px rgba(99,102,241,.6); animation: pulse 1.5s infinite; }
.po-dot-idle { background: rgba(255,255,255,.2); }
.pp-agent-lines { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.pp-agent-lines div { height: 5px; border-radius: 3px; background: rgba(255,255,255,.1); }
.pp-agent-lines div:first-child { width: 70%; }
.pp-agent-lines div:last-child { width: 45%; }
.pp-agent-status { font-size: 9px; color: var(--muted); white-space: nowrap; }

/* ── PractOps agents grid ── */
.agents-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.agent-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 10px;
  border: 1px solid var(--border); background: rgba(255,255,255,.03);
}
.agent-chip strong { display: block; font-size: 13px; font-weight: 600; }
.agent-chip span { display: block; font-size: 11px; color: var(--muted); }
.agent-stella { border-color: rgba(99,102,241,.3); background: rgba(99,102,241,.05); }
.agent-luna   { border-color: rgba(168,85,247,.3);  background: rgba(168,85,247,.05); }
.agent-nova   { border-color: rgba(236,72,153,.3);  background: rgba(236,72,153,.05); }
.agent-orion  { border-color: rgba(14,165,233,.3);  background: rgba(14,165,233,.05); }

/* ── Nova Go mock — kanban pipeline ── */
.novago-preview .pp-body { display: flex; }
.pp-nav-active-ng { background: rgba(139,92,246,.4); }
.ng-pipeline { display: flex; gap: 6px; padding: 10px; flex: 1; }
.ng-stage { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.ng-stage-label { height: 7px; border-radius: 3px; background: rgba(255,255,255,.1); margin-bottom: 4px; }
.ng-cards { display: flex; flex-direction: column; gap: 5px; }
.ng-card { height: 28px; border-radius: 6px; background: rgba(255,255,255,.05); border: 1px solid var(--border); }
.ng-card-accent { background: rgba(139,92,246,.15); border-color: rgba(139,92,246,.3); }

/* ── NovaVMS mock ── */
.novavms-preview .pp-body { display: flex; }
.pp-nav-active-nv { background: rgba(14,165,233,.4); }
.pp-row { display: flex; align-items: center; gap: 8px; padding: 5px 7px; background: rgba(255,255,255,.03); border-radius: 6px; }
.pp-cell { height: 7px; border-radius: 4px; background: rgba(255,255,255,.08); }
.pp-cell-wide { flex: 1; }
.pp-cell-status { width: 38px; border-radius: 100px; height: 14px; }
.nv-status-blue   { background: rgba(14,165,233,.25); }
.nv-status-green  { background: rgba(34,197,94,.2); }
.nv-status-yellow { background: rgba(245,158,11,.2); }

/* ── NJ Home Clarity mock ── */
.njhc-preview .pp-body-map { display: flex; gap: 8px; padding: 10px; }
.njhc-map { flex: 1; background: rgba(34,197,94,.06); border: 1px solid rgba(34,197,94,.15); border-radius: 8px; position: relative; min-height: 80px; }
.njhc-pin { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,.5); }
.njhc-pin-1 { top: 25%; left: 40%; }
.njhc-pin-2 { top: 55%; left: 60%; }
.njhc-pin-3 { top: 40%; left: 25%; }
.njhc-card { width: 100px; display: flex; flex-direction: column; gap: 5px; }
.njhc-card-img { height: 48px; background: rgba(34,197,94,.1); border-radius: 6px; border: 1px solid rgba(34,197,94,.15); }
.njhc-card-price { height: 9px; width: 70%; background: rgba(255,255,255,.15); border-radius: 4px; }
.njhc-card-addr { height: 7px; width: 90%; background: rgba(255,255,255,.07); border-radius: 4px; }
.njhc-card-tags { display: flex; gap: 4px; }
.njhc-card-tags span { height: 12px; width: 30px; background: rgba(34,197,94,.2); border-radius: 4px; }

.product-screenshot-preview { background: transparent !important; }
.screenshot-wrap { overflow: hidden; }
.screenshot-wrap img { width: 100%; display: block; object-fit: cover; object-position: top; max-height: 260px; }

.more-coming { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.more-coming p { color: var(--muted); font-size: 14px; }

@media (max-width: 860px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-card-wide { flex-direction: column !important; }
  .product-card-wide .product-preview { flex: none; border-left: none; border-top: 1px solid var(--border); border-radius: 0 0 20px 20px; }
}

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-left h2 {
  font-family: var(--serif); font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 500; letter-spacing: -1.8px; margin: 16px 0 24px; line-height: 1.02;
  font-variation-settings: "opsz" 96, "SOFT" 50, "WONK" 0;
}
.about-left p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.about-left .btn-primary { margin-top: 12px; }
.values-list { display: flex; flex-direction: column; gap: 32px; }
.value-item { display: flex; gap: 20px; }
.value-num {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  color: var(--accent); min-width: 28px; padding-top: 2px; letter-spacing: 0.5px;
}
.value-item h4 { font-family: var(--sans); font-size: 16px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.2px; }
.value-item p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ── CTA ── */
.section-cta { padding: 80px 0; }
.cta-box {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(124,92,252,.06), rgba(14,165,233,.04));
  border: 1px solid rgba(124,92,252,.15);
  border-radius: 24px; padding: 80px; text-align: center;
  box-shadow: 0 4px 24px rgba(124,92,252,.08);
}
.orb-cta-1 { width: 400px; height: 400px; background: rgba(124,92,252,.2); top: -150px; left: -100px; }
.orb-cta-2 { width: 300px; height: 300px; background: rgba(0,229,255,.12); bottom: -100px; right: -50px; }
.cta-box .section-tag { position: relative; z-index: 1; }
.cta-box h2 {
  position: relative; z-index: 1;
  font-family: var(--serif); font-size: clamp(44px, 5.8vw, 72px);
  font-weight: 500; letter-spacing: -2.5px; margin: 16px 0 20px; line-height: 1.0;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
}
.cta-box p { position: relative; z-index: 1; color: var(--muted); font-size: 17px; margin-bottom: 36px; }
.cta-box .btn-primary { position: relative; z-index: 1; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border); padding: 32px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-copy { color: var(--muted); font-size: 13px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding-top: 100px; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .work-card-large { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-box { padding: 48px 32px; }
}
@media (max-width: 600px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-card-large { grid-column: auto; }
  .nav-links { display: none; }
}

/* ── NavuMind mock — AI chat workspace ── */
.navumind-preview .pp-body { display: flex; }
.nm-sidebar { gap: 6px; }
.nm-note { height: 18px; border-radius: 5px; background: rgba(255,255,255,.04); border: 1px solid var(--border); }
.nm-note-active { background: rgba(236,72,153,.18); border-color: rgba(236,72,153,.4); box-shadow: 0 0 8px rgba(236,72,153,.15); }
.nm-chat { padding: 12px; gap: 7px; }
.nm-bubble-user { align-self: flex-end; width: 52%; height: 18px; background: rgba(99,102,241,.22); border: 1px solid rgba(99,102,241,.35); border-radius: 10px 10px 2px 10px; }
.nm-bubble-ai { align-self: flex-start; width: 78%; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 10px 10px 10px 2px; padding: 9px 11px; display: flex; flex-direction: column; gap: 5px; }
.nm-line { height: 5px; border-radius: 3px; background: linear-gradient(90deg, rgba(236,72,153,.35), rgba(99,102,241,.25)); width: var(--w); }
.nm-prompt { margin-top: auto; display: flex; align-items: center; gap: 9px; padding: 8px 11px; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 8px; }
.nm-prompt-icon { color: rgba(236,72,153,.75); font-size: 9px; }
.nm-prompt-line { flex: 1; height: 5px; border-radius: 3px; background: rgba(255,255,255,.1); }

/* ── NovaPath mock — decision matrix + timeline ── */
.novapath-preview .pp-body { display: flex; flex-direction: column; padding: 11px; gap: 8px; }
.np-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 1fr); gap: 5px; flex: 1; }
.np-cell { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 6px; padding: 6px 7px; display: flex; flex-direction: column; justify-content: space-between; min-height: 28px; position: relative; }
.np-cell-on { background: rgba(34,197,94,.14); border-color: rgba(34,197,94,.4); box-shadow: 0 0 8px rgba(34,197,94,.12); }
.np-cell-warn { background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.32); }
.np-label { height: 4px; border-radius: 2px; background: rgba(255,255,255,.18); width: 65%; }
.np-cell-on .np-label { background: rgba(34,197,94,.7); }
.np-cell-warn .np-label { background: rgba(245,158,11,.7); }
.np-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(34,197,94,.85); align-self: flex-end; box-shadow: 0 0 6px rgba(34,197,94,.6); }
.np-timeline { display: flex; gap: 4px; padding-top: 6px; border-top: 1px solid var(--border); }
.np-tick { flex: 1; height: 4px; border-radius: 2px; background: rgba(255,255,255,.08); }
.np-tick-on { background: rgba(14,165,233,.55); }

/* ── Fioliv Distill mock — screenshot grid ── */
.distill-preview .pp-body { padding: 11px; }
.dl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.dl-card { display: flex; flex-direction: column; gap: 4px; }
.dl-shot { aspect-ratio: 4 / 3; border-radius: 6px; border: 1px solid var(--border); position: relative; overflow: hidden; }
.dl-shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.2)); }
.dl-shot-a { background: linear-gradient(135deg, rgba(236,72,153,.45), rgba(245,158,11,.25)); }
.dl-shot-b { background: linear-gradient(135deg, rgba(14,165,233,.45), rgba(99,102,241,.3)); }
.dl-shot-c { background: linear-gradient(135deg, rgba(245,158,11,.45), rgba(236,72,153,.25)); }
.dl-shot-d { background: linear-gradient(135deg, rgba(34,197,94,.45), rgba(14,165,233,.25)); }
.dl-shot-e { background: linear-gradient(135deg, rgba(168,85,247,.45), rgba(236,72,153,.25)); }
.dl-shot-f { background: linear-gradient(135deg, rgba(99,102,241,.45), rgba(34,197,94,.25)); }
.dl-tag { height: 4px; width: 55%; border-radius: 2px; }
.dl-tag-pink   { background: rgba(236,72,153,.55); }
.dl-tag-blue   { background: rgba(14,165,233,.55); }
.dl-tag-amber  { background: rgba(245,158,11,.55); }
.dl-tag-green  { background: rgba(34,197,94,.55); }
.dl-tag-purple { background: rgba(168,85,247,.55); }

/* ── Detailed labels — shared ── */
:root { --mock-fg: rgba(255,255,255,.78); --mock-mute: rgba(255,255,255,.45); }

/* Distill — toolbar + filters + cards with labels */
.distill-preview .pp-body { padding: 10px 11px 11px; }
.dl-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.dl-title { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--mock-fg); font-weight: 500; letter-spacing: -0.3px; }
.dl-count { font-family: var(--mono); font-size: 9px; color: var(--mock-mute); }
.dl-filters { display: flex; gap: 5px; margin-bottom: 9px; }
.dl-chip { font-family: var(--sans); font-size: 8.5px; padding: 3px 7px; border-radius: 100px; background: rgba(255,255,255,.04); border: 1px solid var(--border); color: var(--mock-mute); letter-spacing: 0.2px; }
.dl-chip-on { background: rgba(236,72,153,.18); border-color: rgba(236,72,153,.4); color: rgba(255,255,255,.9); }
.dl-shot { position: relative; display: grid; place-items: stretch; overflow: hidden; }
.dl-art { width: 100%; height: 100%; position: relative; z-index: 1; display: block; }
.dl-cap { font-family: var(--sans); font-size: 9px; font-weight: 500; color: var(--mock-fg); letter-spacing: -0.1px; }
.dl-meta { font-family: var(--mono); font-size: 7.5px; color: var(--mock-mute); letter-spacing: 0.3px; }

/* NavuMind — cognitive game */
.navumind-preview .pp-body { display: flex; flex-direction: column; padding: 11px; gap: 9px; background: radial-gradient(circle at top right, rgba(236,72,153,.1), transparent 60%), radial-gradient(circle at bottom left, rgba(14,165,233,.1), transparent 60%); }
.nm-game-head { display: flex; justify-content: space-between; align-items: center; }
.nm-test { font-family: var(--mono); font-size: 9px; color: rgba(236,72,153,.95); text-transform: uppercase; letter-spacing: 1px; }
.nm-timer { font-family: var(--mono); font-size: 11px; color: #fff; font-weight: 500; background: rgba(255,255,255,.08); padding: 2px 7px; border-radius: 5px; border: 1px solid var(--border); }
.nm-question { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 15px; color: #fff; letter-spacing: -0.3px; line-height: 1; }
.nm-pattern { display: flex; gap: 6px; align-items: center; justify-content: center; padding: 9px; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 8px; }
.nm-shape { width: 18px; height: 18px; display: inline-block; flex-shrink: 0; }
.nm-shape-circle { border-radius: 50%; }
.nm-shape-square { border-radius: 4px; }
.nm-shape-tri { width: 0; height: 0; border-left: 9px solid transparent; border-right: 9px solid transparent; border-bottom-width: 16px; border-bottom-style: solid; background: transparent !important; }
.nm-c-pink   { background: #ec4899; }
.nm-c-blue   { background: #0ea5e9; }
.nm-c-amber  { background: #f59e0b; }
.nm-c-green  { background: #22c55e; }
.nm-c-purple { background: #a855f7; }
.nm-shape-tri.nm-c-pink   { border-bottom-color: #ec4899; }
.nm-shape-tri.nm-c-blue   { border-bottom-color: #0ea5e9; }
.nm-shape-tri.nm-c-amber  { border-bottom-color: #f59e0b; }
.nm-shape-tri.nm-c-green  { border-bottom-color: #22c55e; }
.nm-shape-tri.nm-c-purple { border-bottom-color: #a855f7; }
.nm-shape-q { width: 20px; height: 20px; border: 1.5px dashed rgba(255,255,255,.45); border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-style: italic; font-size: 13px; color: rgba(255,255,255,.8); }
.nm-choices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.nm-choice { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 7px; padding: 10px; display: grid; place-items: center; cursor: pointer; }
.nm-choice-on { background: rgba(245,158,11,.16); border-color: rgba(245,158,11,.55); box-shadow: 0 0 14px rgba(245,158,11,.22); }
.nm-progress { height: 4px; background: rgba(255,255,255,.06); border-radius: 100px; overflow: hidden; }
.nm-progress-bar { height: 100%; width: 33%; background: linear-gradient(90deg, #ec4899, #f59e0b); border-radius: 100px; }

/* Brighten Nova Go cards, NovaVMS rows, NovaPath cells */
.ng-card { background: rgba(139,92,246,.1); border-color: rgba(139,92,246,.22); }
.ng-card:nth-child(2n) { background: rgba(14,165,233,.1); border-color: rgba(14,165,233,.24); }
.ng-card:nth-child(2n) b { color: rgba(125,211,252,.98); }
.ng-card-accent { background: rgba(168,85,247,.22) !important; border-color: rgba(168,85,247,.45) !important; box-shadow: 0 0 12px rgba(168,85,247,.22); }
.ng-card-accent b { color: rgba(233,213,255,.98) !important; }

.nv-row:nth-child(2) { background: rgba(14,165,233,.09); }
.nv-row:nth-child(3) { background: rgba(236,72,153,.09); }
.nv-row:nth-child(4) { background: rgba(34,197,94,.09); }
.nv-row:nth-child(5) { background: rgba(245,158,11,.09); }
.nv-pill.nv-status-blue   { background: rgba(14,165,233,.38); }
.nv-pill.nv-status-green  { background: rgba(34,197,94,.38); }
.nv-pill.nv-status-yellow { background: rgba(245,158,11,.38); color: rgba(254,243,199,.98); }

.np-cell { background: rgba(99,102,241,.1); border-color: rgba(99,102,241,.24); }
.np-cell:nth-child(1) { background: rgba(14,165,233,.12); border-color: rgba(14,165,233,.3); }
.np-cell:nth-child(3) { background: rgba(168,85,247,.12); border-color: rgba(168,85,247,.3); }
.np-cell:nth-child(5) { background: rgba(236,72,153,.12); border-color: rgba(236,72,153,.3); }
.np-cell:nth-child(6) { background: rgba(99,102,241,.12); border-color: rgba(99,102,241,.32); }
.np-cell:nth-child(8) { background: rgba(248,113,113,.1); border-color: rgba(248,113,113,.32); }
.np-cell-on { background: rgba(34,197,94,.22) !important; border-color: rgba(34,197,94,.55) !important; box-shadow: 0 0 12px rgba(34,197,94,.22); }
.np-cell-warn { background: rgba(245,158,11,.16) !important; border-color: rgba(245,158,11,.45) !important; }

/* NovaPath — decision matrix with labels */
.novapath-preview .pp-body { display: flex; flex-direction: column; padding: 10px 11px 11px; gap: 7px; }
.np-head { display: flex; justify-content: space-between; align-items: baseline; }
.np-title { font-family: var(--serif); font-style: italic; font-size: 12px; color: var(--mock-fg); font-weight: 500; }
.np-score { font-family: var(--mono); font-size: 9px; color: rgba(34,197,94,.85); }
.np-cell { padding: 5px 7px; }
.np-name { font-family: var(--sans); font-size: 8.5px; font-weight: 500; color: var(--mock-fg); letter-spacing: -0.1px; }
.np-cell-on .np-name { color: rgba(220,252,231,.95); }
.np-cell-warn .np-name { color: rgba(254,243,199,.95); }
.np-timeline { display: flex; align-items: center; gap: 6px; padding-top: 7px; border-top: 1px solid var(--border); }
.np-yr { font-family: var(--mono); font-size: 7.5px; color: var(--mock-mute); letter-spacing: 0.5px; }

/* Nova Go — labeled pipeline */
.ng-sidebar { gap: 6px; padding: 10px 8px; width: 78px; }
.ng-side-label { font-family: var(--sans); font-size: 8.5px; color: var(--mock-mute); padding: 4px 7px; border-radius: 5px; letter-spacing: -0.1px; }
.ng-side-on { background: rgba(139,92,246,.2); color: #fff; border: 1px solid rgba(139,92,246,.4); padding: 3px 6px; }
.ng-pipeline { padding: 11px; }
.ng-stage-name { font-family: var(--mono); font-size: 8px; color: var(--mock-mute); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 5px; display: block; }
.ng-card { height: auto; padding: 6px 8px; display: flex; justify-content: space-between; align-items: center; gap: 4px; }
.ng-card span { font-family: var(--sans); font-size: 8.5px; color: var(--mock-fg); }
.ng-card b { font-family: var(--mono); font-size: 8px; color: rgba(139,92,246,.95); font-weight: 500; }
.ng-card-accent { box-shadow: 0 0 8px rgba(139,92,246,.18); }
.ng-card-accent span, .ng-card-accent b { color: rgba(237,233,254,.98); }

/* NovaVMS — table with avatars */
.novavms-preview .pp-body { display: flex; }
.nv-sidebar { width: 72px; padding: 10px 8px; gap: 5px; border-right: 1px solid var(--border); display: flex; flex-direction: column; }
.nv-side-label { font-family: var(--sans); font-size: 8.5px; color: var(--mock-mute); padding: 4px 7px; border-radius: 5px; }
.nv-side-on { background: rgba(14,165,233,.2); border: 1px solid rgba(14,165,233,.4); color: #fff; padding: 3px 6px; }
.nv-table { flex: 1; padding: 9px 10px; display: flex; flex-direction: column; gap: 4px; }
.nv-thead { display: grid; grid-template-columns: 22px 1fr 50px 56px; gap: 8px; align-items: center; padding: 0 6px 4px; border-bottom: 1px solid var(--border); }
.nv-thead span { font-family: var(--mono); font-size: 7.5px; color: var(--mock-mute); text-transform: uppercase; letter-spacing: 0.8px; }
.nv-thead span:first-child { grid-column: 1 / 3; }
.nv-row { display: grid; grid-template-columns: 22px 1fr 50px 56px; gap: 8px; align-items: center; padding: 4px 6px; background: rgba(255,255,255,.03); border-radius: 5px; }
.nv-av { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-family: var(--sans); font-size: 8px; font-weight: 600; color: #fff; }
.nv-av-a { background: linear-gradient(135deg,#0ea5e9,#6366f1); }
.nv-av-b { background: linear-gradient(135deg,#ec4899,#a855f7); }
.nv-av-c { background: linear-gradient(135deg,#22c55e,#0ea5e9); }
.nv-av-d { background: linear-gradient(135deg,#f59e0b,#ec4899); }
.nv-name { font-family: var(--sans); font-size: 9px; color: var(--mock-fg); font-weight: 500; }
.nv-role { font-family: var(--mono); font-size: 8px; color: var(--mock-mute); }
.nv-pill { font-family: var(--sans); font-size: 7.5px; padding: 2px 6px; border-radius: 100px; text-align: center; letter-spacing: 0.2px; color: #fff; }

/* ── Two-tone wordmark: Fioliv (serif italic) + LABS (mono) ── */
.logo-text { display: inline-flex; align-items: baseline; gap: 7px; }
.logo-serif {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 22px; letter-spacing: -0.4px; color: var(--text);
  font-variation-settings: "opsz" 48, "SOFT" 100, "WONK" 1;
}
.logo-mono {
  font-family: var(--mono); font-size: 9.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.8px; color: var(--muted);
  padding: 3px 7px; border: 1px solid var(--border); border-radius: 4px;
  background: rgba(0,0,0,.03);
}
.section-dark .logo-serif { color: rgba(255,255,255,.95); }
.section-dark .logo-mono { color: rgba(255,255,255,.55); border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.04); }

/* ── UnitCove mock — property manager table ── */
.unitcove-preview .pp-body { display: flex; }
.uc-sidebar { width: 78px; padding: 10px 8px; gap: 5px; border-right: 1px solid var(--border); display: flex; flex-direction: column; }
.uc-side-label { font-family: var(--sans); font-size: 8.5px; color: var(--mock-mute); padding: 4px 7px; border-radius: 5px; }
.uc-side-on { background: rgba(13,148,136,.2); border: 1px solid rgba(13,148,136,.45); color: #fff; padding: 3px 6px; }
.uc-table { flex: 1; padding: 9px 10px; display: flex; flex-direction: column; gap: 4px; }
.uc-thead { display: grid; grid-template-columns: 1.4fr 1fr 60px 62px; gap: 8px; align-items: center; padding: 0 6px 4px; border-bottom: 1px solid var(--border); }
.uc-thead span { font-family: var(--mono); font-size: 7.5px; color: var(--mock-mute); text-transform: uppercase; letter-spacing: 0.8px; }
.uc-row { display: grid; grid-template-columns: 1.4fr 1fr 60px 62px; gap: 8px; align-items: center; padding: 5px 6px; background: rgba(255,255,255,.03); border-radius: 5px; }
.uc-row:nth-child(3) { background: rgba(13,148,136,.08); }
.uc-row:nth-child(4) { background: rgba(20,184,166,.07); }
.uc-row:nth-child(5) { background: rgba(245,158,11,.08); }
.uc-row:nth-child(6) { background: rgba(249,115,22,.08); }
.uc-unit { font-family: var(--sans); font-size: 9px; color: var(--mock-fg); font-weight: 500; letter-spacing: -0.1px; }
.uc-tenant { font-family: var(--sans); font-size: 8.5px; color: var(--mock-mute); }
.uc-rent { font-family: var(--mono); font-size: 8.5px; color: rgba(255,255,255,.85); }
.uc-pill { font-family: var(--sans); font-size: 7.5px; padding: 2px 6px; border-radius: 100px; text-align: center; letter-spacing: 0.2px; color: #fff; font-weight: 500; }
.uc-status-green { background: rgba(34,197,94,.38); }
.uc-status-teal  { background: rgba(13,148,136,.42); }
.uc-status-amber { background: rgba(245,158,11,.4); color: rgba(254,243,199,.98); }
.uc-status-coral { background: rgba(249,115,22,.4); color: rgba(255,237,213,.98); }

/* ── Sterling Painting DW mock — marketing hero + swatches ── */
.sterling-preview .pp-body { background: linear-gradient(180deg, #f5f0e6 0%, #ebe1cc 100%); }
.sterling-preview .pp-bar { background: #1e3a8a; border-color: #1e3a8a; }
.sterling-preview .pp-tag { color: rgba(255,255,255,.85); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.sp-body { display: flex; flex-direction: column; padding: 14px 16px; gap: 12px; }
.sp-hero { display: flex; flex-direction: column; gap: 6px; }
.sp-eyebrow { font-family: var(--mono); font-size: 8.5px; color: #1e3a8a; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 500; }
.sp-title { font-family: var(--serif); font-size: 22px; font-weight: 500; line-height: 1.05; letter-spacing: -0.8px; color: #1a1a1a; font-variation-settings: "opsz" 96, "SOFT" 30, "WONK" 0; }
.sp-title em { font-style: italic; color: #b45309; font-variation-settings: "opsz" 96, "SOFT" 100, "WONK" 1; }
.sp-cta { display: flex; gap: 6px; margin-top: 4px; }
.sp-btn { font-family: var(--sans); font-size: 9px; font-weight: 600; padding: 6px 10px; border-radius: 4px; background: #1e3a8a; color: #fff; letter-spacing: -0.1px; }
.sp-btn-ghost { background: transparent; color: #1e3a8a; border: 1px solid #1e3a8a; }
.sp-swatches { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; margin-top: auto; }
.sp-swatch { aspect-ratio: 1 / 1.15; border-radius: 4px; display: flex; align-items: flex-end; justify-content: center; padding: 4px; position: relative; overflow: hidden; }
.sp-swatch span { font-family: var(--mono); font-size: 6.5px; color: rgba(255,255,255,.95); text-transform: uppercase; letter-spacing: 0.6px; text-align: center; line-height: 1.1; text-shadow: 0 1px 2px rgba(0,0,0,.4); }
.sp-sw-1 { background: #8a8477; }
.sp-sw-2 { background: #b5c2c9; }
.sp-sw-3 { background: #ede4d0; }
.sp-sw-3 span { color: #4a4437; text-shadow: none; }
.sp-sw-4 { background: #c9a67a; }
.sp-sw-5 { background: #6b7d6a; }

/* ── Elegant Realtor mock — warm luxury realtor site ── */
.elegant-preview .pp-body { background: linear-gradient(180deg, #f8f3ea 0%, #ede2ca 100%); }
.elegant-preview .pp-bar { background: #3a2817; border-color: #3a2817; }
.elegant-preview .pp-tag { color: rgba(255,255,255,.9); background: rgba(217,119,6,.25); border-color: rgba(217,119,6,.5); }
.er-body { display: flex; flex-direction: column; padding: 14px 16px; gap: 12px; }
.er-hero { display: flex; flex-direction: column; gap: 5px; }
.er-eyebrow { font-family: var(--mono); font-size: 8px; color: #b45309; text-transform: uppercase; letter-spacing: 1.4px; font-weight: 500; }
.er-title { font-family: var(--serif); font-size: 22px; font-weight: 500; line-height: 1.02; letter-spacing: -0.6px; color: #2a1e10; font-variation-settings: "opsz" 96, "SOFT" 40, "WONK" 0; }
.er-title em { font-style: italic; color: #b45309; font-variation-settings: "opsz" 96, "SOFT" 100, "WONK" 1; }
.er-cta { display: flex; gap: 6px; margin-top: 4px; }
.er-btn { font-family: var(--sans); font-size: 8.5px; font-weight: 600; padding: 5px 9px; border-radius: 3px; background: #2a1e10; color: #f8f3ea; letter-spacing: 0.1px; }
.er-btn-ghost { background: transparent; color: #2a1e10; border: 1px solid #2a1e10; }
.er-listings { display: flex; flex-direction: column; gap: 6px; margin-top: auto; }
.er-listing { display: flex; align-items: center; gap: 8px; padding: 5px; background: rgba(255,255,255,.55); border: 1px solid rgba(180,83,9,.15); border-radius: 5px; }
.er-photo { width: 34px; height: 26px; border-radius: 3px; flex-shrink: 0; position: relative; overflow: hidden; }
.er-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.15)); }
.er-photo-a { background: linear-gradient(135deg, #78716c, #a8a29e); }
.er-photo-b { background: linear-gradient(135deg, #d6d3d1, #a8a29e); }
.er-photo-c { background: linear-gradient(135deg, #92664a, #b45309); }
.er-info { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.er-price { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 12px; color: #b45309; letter-spacing: -0.2px; }
.er-addr { font-family: var(--sans); font-size: 8.5px; color: #2a1e10; font-weight: 500; letter-spacing: -0.1px; }
.er-meta { font-family: var(--mono); font-size: 7px; color: #78350f; letter-spacing: 0.3px; text-transform: uppercase; }
