.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 32px;
}

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

.nav-links a:not(.btn) {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.nav-links a:not(.btn):hover { color: var(--text); }

.btn {
  display: inline-block;
  background: var(--accent-btn);
  color: var(--bg);
  border: none;
  border-radius: 6px;
  padding: 9px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { opacity: 0.92; }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.hero {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 32px 40px;
  text-align: center;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.08;
  margin: 0 0 18px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .hero h1 { font-size: 2.4rem; white-space: normal; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 1.9rem; }
}

.hero .lede {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.hero-actions .btn { padding: 12px 24px; font-size: 0.95rem; }

.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 32px;
}

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

.section .section-lede {
  text-align: center;
  color: var(--muted);
  margin: 0 0 32px;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}

.credential {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
}

.credential .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(63, 185, 122, 0.15);
  color: var(--income);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.credential h3 { margin: 0 0 8px; font-size: 1.05rem; }
.credential p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  flex: 1 1 300px;
  max-width: 340px;
}

.feature .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(91, 140, 255, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.feature h3 { margin: 0 0 8px; font-size: 1.02rem; }
.feature p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

.pricing {
  display: flex;
  justify-content: center;
}

.price-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  max-width: 320px;
  width: 100%;
  text-align: center;
}

.price-card .plan-name {
  color: var(--muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}

.price-card .plan-price {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 8px 0 4px;
}

.price-card .plan-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 20px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
}

.price-card li::before {
  content: "✓";
  color: var(--income);
  margin-right: 8px;
}

.price-card .btn { display: block; }
