:root {
  --ink: #0e0e0e;
  --paper: #fafaf7;
  --accent: #d04a1e;
  --accent-deep: #a8391c;
  --muted: #5a5a55;
  --rule: #d8d6cf;
  --rule-strong: #888580;
  --tile: #ffffff;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* Type */
h1, h2, h3, .display {
  font-family: 'IBM Plex Sans', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(40px, 6.4vw, 88px);
}
h2 { font-size: clamp(28px, 3.6vw, 44px); margin-bottom: 1.25rem; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 1.25rem;
}

/* Layout */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 4.5rem 0; }
section + section { border-top: 1px solid var(--rule); }

/* Site nav */
.site-nav {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
}
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand {
  font-family: 'IBM Plex Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.brand .dot { color: var(--accent); }
.nav-cta {
  display: inline-block;
  padding: 0.55rem 1.05rem;
  background: var(--ink);
  color: var(--paper);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-cta:hover { background: var(--accent); color: var(--paper); }

/* Hero */
.hero {
  padding-top: 5.5rem;
  padding-bottom: 5rem;
}
.hero .lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--muted);
  max-width: 38em;
  margin: 0 0 2rem;
  line-height: 1.55;
}
.hero-tagline {
  font-size: 1rem;
  color: var(--muted);
  margin: -0.25rem 0 2rem;
  letter-spacing: 0.005em;
}
.hero-ctas {
  display: flex;
  gap: 0.75rem;
  margin: 0 0 1.75rem;
  flex-wrap: wrap;
}
.hero-trust {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}
.hero-trust a { color: var(--ink); border-bottom: 1px solid var(--rule-strong); }
.hero-trust a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  transition: background 100ms ease, color 100ms ease, border-color 100ms ease;
  letter-spacing: 0.005em;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: var(--paper); }
.btn-secondary:hover { background: var(--ink); color: var(--paper); }

/* Wedge — old way vs NowLanded */
.wedge h2 { max-width: 18em; }
.wedge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.wedge-col {
  background: var(--tile);
  border: 1px solid var(--rule);
  padding: 1.75rem;
}
.wedge-col h3 {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}
.wedge-old { opacity: 0.78; }
.wedge-new { border-color: var(--ink); border-width: 2px; }
.wedge-col ul { padding: 0; margin: 0; list-style: none; }
.wedge-col li {
  padding: 0.6rem 0;
  border-top: 1px solid var(--rule);
  font-size: 1.02rem;
}
.wedge-col li:first-child { border-top: none; }
.wedge-col strong { font-weight: 600; }

/* Demos */
.demos h2 { max-width: 22em; }
.demos .section-lede {
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 36em;
}
.demos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.demo-card {
  display: block;
  background: var(--tile);
  border: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 120ms ease, transform 120ms ease;
}
.demo-card:hover {
  border-color: var(--ink);
  color: inherit;
  transform: translateY(-2px);
}
.demo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: var(--rule);
}
.demo-meta {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.demo-meta h3 {
  font-size: 1.02rem;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.demo-meta .vertical {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Pricing */
.pricing h2 { max-width: 16em; }
.pricing .section-lede {
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 36em;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 1.25rem;
}
.tier {
  position: relative;
  background: var(--tile);
  border: 1px solid var(--rule);
  padding: 1.85rem 1.65rem 1.65rem;
  display: flex;
  flex-direction: column;
}
.tier-featured {
  border-color: var(--ink);
  border-width: 2px;
  padding-top: 2.1rem;
}
.tier-badge {
  position: absolute;
  top: -11px;
  left: 1.65rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.25rem 0.7rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.tier h3 {
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
}
.tier .price {
  font-size: 2.25rem;
  font-weight: 600;
  font-family: 'IBM Plex Sans', sans-serif;
  margin: 0.25rem 0 1.25rem;
  letter-spacing: -0.01em;
}
.tier .price span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 0.4rem;
  letter-spacing: 0.005em;
}
.tier ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}
.tier li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--rule);
  font-size: 0.97rem;
  line-height: 1.45;
}
.tier li:first-child { border-top: none; }
.tier .checkout-btn { width: 100%; }
.pricing-foot {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 1.5rem;
  text-align: center;
}
.pricing-foot strong { color: var(--ink); }

/* Process */
.process h2 { max-width: 16em; }
.steps {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  counter-reset: steps;
}
.steps li {
  counter-increment: steps;
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  background: var(--tile);
  border: 1px solid var(--rule);
}
.steps li::before {
  content: counter(steps);
  position: absolute;
  top: 1.4rem;
  left: 1.5rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.steps strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* FAQ */
.faq h2 { max-width: 14em; }
.faq details {
  border-top: 1px solid var(--rule);
  padding: 1.1rem 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  font-family: 'IBM Plex Sans', sans-serif;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-right: 0.5rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1;
}
.faq details[open] summary::after { content: '−'; }
.faq details[open] summary { color: var(--accent); }
.faq details p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  max-width: 44em;
  line-height: 1.6;
}

/* Trust + footer */
.trust h2 { max-width: 14em; }
.trust p { max-width: 38em; color: var(--muted); }
.trust-contact {
  font-size: 1.15rem;
  color: var(--ink);
  margin-top: 1.25rem;
}
.trust-contact a { border-bottom: 1px solid var(--rule-strong); }
.trust-contact a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}
.site-footer p { margin: 0 0 0.4rem; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--accent); }

/* Mobile */
@media (max-width: 760px) {
  section { padding: 3rem 0; }
  .hero { padding-top: 3rem; padding-bottom: 3.5rem; }
  .wedge-grid, .pricing-grid, .steps { grid-template-columns: 1fr; }
  .demos-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .nav-cta { padding: 0.45rem 0.85rem; font-size: 0.88rem; }
}
