/* properties.polarityparking.com — public property-type browser */
/* PP-1254 — Generated hand-written shared styles (not rebuilt by export script) */

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

:root {
  --bg: #09090b;
  --bg-subtle: #0f0f12;
  --bg-card: #141418;
  --bg-card-hover: #1a1a1f;
  --text: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --accent: #3b82f6;
  --accent-dim: rgba(59, 130, 246, 0.15);
  --accent-glow: rgba(59, 130, 246, 0.4);
  --green: #22c55e;
  --nav-bg: rgba(9, 9, 11, 0.85);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family:
    'Geist', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto,
    sans-serif;
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--accent);
}

/* ── Nav ───────────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.nav-logo img {
  height: 24px;
  filter: invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff !important;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s ease;
}

.nav-cta:hover {
  background: #2563eb;
  color: #fff !important;
}

/* ── Layout ────────────────────────────────────────────────────────── */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 64px 0;
}

.section-tight {
  padding: 32px 0;
}

/* ── Index hero ────────────────────────────────────────────────────── */

.hero {
  padding: 80px 24px 48px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

.hero-count {
  display: inline-block;
  margin-top: 24px;
  padding: 6px 14px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/* ── Vertical section ──────────────────────────────────────────────── */

.vertical-section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.vertical-header {
  margin-bottom: 24px;
}

.vertical-label {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.vertical-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.vertical-tagline {
  margin-top: 6px;
  color: var(--text-secondary);
  font-size: 15px;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.property-card {
  display: block;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease;
}

.property-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-2px);
  color: var(--text);
}

.property-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.property-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.property-card .card-arrow {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

/* ── Detail page ───────────────────────────────────────────────────── */

.detail-hero {
  padding: 80px 0 40px;
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--text);
}

.detail-vertical {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.detail-hero h1 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.detail-hero .lead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 720px;
}

.detail-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff !important;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
}

.detail-cta:hover {
  background: #2563eb;
  color: #fff !important;
}

/* ── Content blocks (pain points / value drivers / KPIs) ──────────── */

.content-block {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.content-block h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.content-block h2 .count {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 8px;
  font-weight: 500;
}

.bullets {
  display: grid;
  gap: 16px;
}

.bullet {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.bullet h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.bullet p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.bullet .metric {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 10px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.kpi {
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.kpi .label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.kpi .value {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 700;
}

.kpi .unit {
  display: inline-block;
  margin-left: 4px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.related-demos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.demo-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-secondary);
}

.demo-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Footer ────────────────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 64px;
  color: var(--text-muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--text-muted);
}

.footer a:hover {
  color: var(--text);
}

.footer-cols {
  display: flex;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col strong {
  color: var(--text-secondary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

/* ── Responsive ────────────────────────────────────────────────────── */

@media (max-width: 720px) {
  .hero {
    padding: 48px 24px 32px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 16px;
  }
  .detail-hero h1 {
    font-size: 32px;
  }
  .vertical-section {
    padding: 32px 0;
  }
  .content-block {
    padding: 32px 0;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-cols {
    flex-direction: column;
    gap: 20px;
  }
}
