/* home.css — marketing landing page. Loaded after main.css. */

body.home { background: var(--bg); }

.site-header {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: 1.1rem 1.5rem;
}
.site-header .brand { margin: 0; }
.site-nav { display: flex; align-items: center; gap: 1.2rem; }
.site-nav a { color: var(--text-muted); font-weight: 600; font-size: .92rem; }
.site-nav a.btn { color: inherit; }
.site-nav a:not(.btn):hover { color: var(--text); text-decoration: none; }

/* Hero */
.hero { max-width: 760px; margin: 0 auto; padding: 4rem 1.5rem 3rem; text-align: center; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 1rem; }
.hero .lead { font-size: 1.15rem; color: var(--text-muted); max-width: 580px; margin: 0 auto 2rem; }

.claim { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; }
.claim-field { display: flex; align-items: stretch; box-shadow: var(--shadow); border-radius: var(--radius-sm); }
.claim-field input {
  border: 1px solid var(--border); border-right: 0; padding: .8rem 1rem; font: inherit; font-size: 1.05rem;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm); background: var(--surface); color: var(--text); min-width: 180px;
}
.claim-field input:focus { outline: none; border-color: var(--primary); }
.claim-suffix {
  display: flex; align-items: center; padding: 0 1rem; background: var(--surface-2);
  color: var(--text-muted); border: 1px solid var(--border); border-left: 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; white-space: nowrap;
}
.claim .btn { font-size: 1.05rem; padding: .8rem 1.4rem; }
.claim-status { text-align: center; margin-top: .6rem; min-height: 1.2em; }

/* Sections */
.section { max-width: var(--maxw); margin: 0 auto; padding: 3.5rem 1.5rem; }
.section.alt { background: var(--surface); max-width: none; }
.section.alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section h2 { font-size: 1.9rem; text-align: center; margin-bottom: 2rem; letter-spacing: -0.02em; }

.steps, .feature-grid, .price-grid { display: grid; gap: 1.25rem; }
.steps { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.step-n { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: #fff; font-weight: 700; margin-bottom: .8rem; }
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--text-muted); margin: 0; }

.feature-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.feature { padding: 1.25rem; border-radius: var(--radius); }
.feature h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.feature p { color: var(--text-muted); margin: 0; font-size: .95rem; }

/* Pricing */
.price-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); align-items: stretch; }
.price-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem 1.5rem; display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--primary); box-shadow: var(--shadow); }
.price-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; font-size: .72rem; font-weight: 700; padding: .2rem .7rem; border-radius: 999px; }
.price-card h3 { margin-bottom: .3rem; }
.price { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; }
.price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.price-card ul { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.price-card li { padding: .35rem 0 .35rem 1.5rem; position: relative; color: var(--text-muted); font-size: .95rem; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 700; }

/* CTA */
.cta { text-align: center; }
.cta h2 { margin-bottom: 1.5rem; }
.btn-lg { font-size: 1.1rem; padding: .9rem 1.8rem; }

/* Footer */
.site-footer { max-width: var(--maxw); margin: 0 auto; padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border); text-align: center; }
.site-footer .brand { margin-bottom: .5rem; }

@media (max-width: 640px) {
  .site-nav a:not(.btn) { display: none; }
}
