/* Marketing landing page. Reuses the design tokens and .btn styles from
   style.css; this file only adds the page-specific layout. */

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.landing-nav .brand {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-text);
  text-decoration: none;
}

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

.landing-nav .nav-links a {
  color: var(--color-text-muted);
  font-weight: 500;
  text-decoration: none;
}

.landing-nav .nav-links a:hover {
  color: var(--color-text);
}

.landing-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 32px 56px;
  text-align: center;
}

.landing-hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.landing-hero p.lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin: 0 0 32px;
  line-height: 1.6;
}

.landing-hero .cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.landing-hero .btn {
  padding: 13px 28px;
  font-size: 1rem;
}

.landing-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 32px;
}

.landing-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin: 0 0 8px;
}

.landing-section p.section-lead {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 800px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .landing-hero h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 560px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.feature-card .icon {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.feature-card .icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.flow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 180px;
}

.flow-step .icon {
  width: 44px;
  height: 44px;
  color: var(--color-primary);
  background: var(--color-bg);
  border-radius: 999px;
  padding: 14px;
  margin-bottom: 12px;
}

.flow-step .icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-step strong {
  font-size: 0.95rem;
}

.flow-arrow {
  color: var(--color-text-muted);
  font-size: 1.6rem;
  padding: 0 12px;
  margin-bottom: 30px;
}

@media (max-width: 700px) {
  .flow-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
    margin-bottom: 0;
  }
  .flow-row {
    flex-direction: column;
  }
}

.landing-cta-band {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 56px 32px;
  margin-top: 24px;
}

.landing-cta-band h2 {
  color: #fff;
  margin: 0 0 10px;
}

.landing-cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px;
}

.landing-cta-band .btn-primary {
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
}

.landing-cta-band .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.landing-footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.landing-footer .nav-links {
  display: flex;
  gap: 16px;
}

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