/* PropSafety landing page — serious B2B, dual-audience (analyst + VP). */

:root {
  --ink: #0c1116;
  --ink-soft: #3a414a;
  --muted: #5d6573;
  --line: #e6e8eb;
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --accent: #11457a;
  --accent-ink: #ffffff;
  --radius: 8px;
  --maxw: 1040px;
  --maxw-narrow: 720px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Nav */
.nav {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 15px;
}
.nav-links a { color: var(--ink-soft); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 11px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: opacity 0.15s, transform 0.05s;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { text-decoration: none; opacity: 0.9; }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border: 1px solid var(--accent);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-block {
  display: block;
  text-align: center;
  width: 100%;
}

/* Hero */
.hero {
  padding: 84px 0 64px;
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 18px;
}
.hero h1 {
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  max-width: 720px;
}
.hero .lede {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 680px;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.micro {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* Sections */
.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}
.section-alt { background: var(--bg-alt); }
.section h2 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
}
.section h2.center { text-align: center; }
.section p { color: var(--ink-soft); }
.section p.center { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.muted { color: var(--muted); }

/* How it works (two-col) */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.two-col .copy h2 { margin-top: 0; }
.two-col .screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(12, 17, 22, 0.06);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.feature {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.feature h3 {
  font-size: 17px;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.feature p { font-size: 15px; margin: 0; }

/* Pricing */
.pricing-card {
  max-width: 480px;
  margin: 32px auto 0;
  padding: 36px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(12, 17, 22, 0.05);
}
.pricing-card .tag {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 12px;
}
.pricing-card .price {
  font-size: 44px;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.pricing-card .price span {
  font-size: 17px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 6px;
}
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pricing-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-foot {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 20px;
}

/* Honest list */
.honest-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.honest-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.honest-list li:last-child { border-bottom: none; }
.honest-list strong { color: var(--ink); }

/* Footer */
.footer {
  padding: 48px 0 56px;
  background: var(--bg-alt);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  font-size: 14px;
}
.footer p { margin: 0 0 6px; }
.footer .brand { font-size: 16px; }

/* Responsive */
@media (max-width: 720px) {
  .hero { padding: 60px 0 48px; }
  .hero h1 { font-size: 32px; }
  .hero .lede { font-size: 16px; }
  .section { padding: 56px 0; }
  .section h2 { font-size: 24px; }
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pricing-card { padding: 28px; }
  .pricing-card .price { font-size: 36px; }
  .nav-links { gap: 12px; }
  .nav-links a:not(.btn) { display: none; }
}
