@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

/* ── CTA button ────────────────────────────────────────────────────── */
.btn-cta {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  background-color: #E08608;
  color: white;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 150ms;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.btn-cta:hover { background-color: #c87507; }
.btn-cta:active { background-color: #b56906; }
.btn-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #E08608, 0 0 0 4px rgba(224, 134, 8, 0.3);
}

/* ── Feature label — orange bold prefix ────────────────────────────── */
.feature-label {
  color: #E08608;
  font-weight: 500;
}

/* ── Detail cards ──────────────────────────────────────────────────── */
.detail-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: border-color 200ms;
}
.dark .detail-card {
  border-color: rgba(255, 255, 255, 0.08);
}
.detail-card:hover {
  border-color: rgba(224, 134, 8, 0.3);
}
.detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background-color: rgba(224, 134, 8, 0.1);
  color: #E08608;
}

/* ── Pricing card ──────────────────────────────────────────────────── */
.pricing-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.75rem;
  padding: 1.5rem;
  background-color: white;
}
.dark .pricing-card {
  background-color: rgba(17, 24, 39, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
}
.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

/* ── AI tier buttons ───────────────────────────────────────────────── */
.ai-tier-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: all 150ms;
  cursor: pointer;
  background: transparent;
}
.dark .ai-tier-btn {
  border-color: rgba(255, 255, 255, 0.1);
}
.ai-tier-btn:hover {
  border-color: rgba(0, 0, 0, 0.2);
}
.dark .ai-tier-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.ai-tier-btn.active {
  border-color: #E08608;
  background-color: rgba(224, 134, 8, 0.05);
  box-shadow: 0 0 0 1px rgba(224, 134, 8, 0.3);
}
.dark .ai-tier-btn.active {
  background-color: rgba(224, 134, 8, 0.1);
}

/* ── Pricing slider ────────────────────────────────────────────────── */
.pricing-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(to right, #E08608 8%, #e5e7eb 8%);
}
.pricing-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #E08608;
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(224, 134, 8, 0.15);
}
.pricing-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #E08608;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 0 3px rgba(224, 134, 8, 0.15);
}

/* ── Hosting badge — green tint ────────────────────────────────────── */
.hosting-card {
  border: 1px solid rgba(34, 197, 94, 0.3);
  background-color: rgba(34, 197, 94, 0.04);
  border-radius: 0.75rem;
  padding: 1.25rem;
}
.dark .hosting-card {
  background-color: rgba(34, 197, 94, 0.08);
}

/* ── Coming-soon badge ─────────────────────────────────────────────── */
.badge-soon {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 9999px;
  background-color: rgba(0, 0, 0, 0.07);
  color: #6b7280;
  vertical-align: middle;
  margin-left: 0.35rem;
}
.dark .badge-soon {
  background-color: rgba(255, 255, 255, 0.1);
  color: #9ca3af;
}

/* ── Enterprise upsell row ─────────────────────────────────────────── */
.enterprise-row {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 1.25rem;
  margin-top: 2rem;
}
.dark .enterprise-row {
  border-color: rgba(255, 255, 255, 0.06);
}
