/* Marketing landing page — extends styles.css, same dark theme/colors,
   just a few extra layout bits for hero/pricing/steps sections. */

.landing-hero {
  text-align: center;
  padding: 2.5rem 1.5rem 3rem;
}

.landing-hero h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
}

.landing-hero p {
  max-width: 34rem;
  margin: 0 auto 1.5rem;
  color: rgba(245, 245, 245, 0.7);
}

.landing-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.landing-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.landing-pillar {
  background: #1a1a1a;
  border-radius: 0.6rem;
  padding: 1rem;
}

.landing-pillar-stat {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2ecc71;
  font-family: "Roboto Mono", monospace;
  margin-bottom: 0.35rem;
}

.landing-pillar h3 {
  font-size: 0.95rem;
  margin: 0 0 0.3rem;
}

.landing-pillar p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.6);
}

.landing-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin-top: 1rem;
}

.landing-compare-table th,
.landing-compare-table td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.landing-compare-table th {
  color: rgba(245, 245, 245, 0.6);
  font-weight: 600;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.landing-compare-table th.ours,
.landing-compare-table td.ours {
  color: #2ecc71;
}

.landing-compare-table .price {
  display: block;
  font-weight: 700;
  font-family: "Roboto Mono", monospace;
}

.landing-compare-note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: rgba(245, 245, 245, 0.45);
}

.landing-price-callout {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.landing-price-callout .amount {
  font-size: 1.9rem;
  font-weight: 700;
  font-family: "Roboto Mono", monospace;
  color: #2ecc71;
}

.landing-price-callout .amount span {
  font-size: 0.55em;
  font-weight: 600;
  color: rgba(245, 245, 245, 0.6);
}

.landing-price-callout p {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.6);
  max-width: 24rem;
}

.landing-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
  counter-reset: step;
}

.landing-step {
  background: #1a1a1a;
  border-radius: 0.6rem;
  padding: 1rem;
  counter-increment: step;
}

.landing-step::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #2ecc71;
  color: #06210f;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.landing-step h3 {
  font-size: 0.95rem;
  margin: 0 0 0.3rem;
}

.landing-step p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.6);
}

.landing-final {
  text-align: center;
}

.landing-final h2 {
  font-size: 1.3rem;
  margin: 0 0 1rem;
}

.landing-faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.landing-faq details {
  border-top: 1px solid rgba(245, 245, 245, 0.1);
  padding: 0.75rem 0 0.25rem;
}

.landing-faq details:first-child {
  border-top: none;
  padding-top: 0;
}

.landing-faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.landing-faq summary::-webkit-details-marker {
  display: none;
}

.landing-faq summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: rgba(245, 245, 245, 0.45);
}

.landing-faq details[open] summary::after {
  content: "–";
}

.landing-faq details p {
  margin: 0.6rem 0 0;
  color: rgba(245, 245, 245, 0.65);
  line-height: 1.5;
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 245, 245, 0.12);
  font-size: 0.875rem;
  color: rgba(245, 245, 245, 0.45);
}

.site-footer > span {
  font-weight: 600;
  color: rgba(245, 245, 245, 0.65);
}

.site-footer > a {
  color: rgba(245, 245, 245, 0.45);
  text-decoration: none;
}

.site-footer > a:hover {
  color: rgba(245, 245, 245, 0.85);
}

.site-footer .footer-note {
  flex: 1 1 100%;
  margin: 0;
  line-height: 1.55;
}

.site-footer .footer-note a {
  color: rgba(245, 245, 245, 0.8);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer .footer-note a:hover {
  color: #fff;
}
