.pricing-page {
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(59, 130, 246, 0.15), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(16, 185, 129, 0.12), transparent 60%),
    #0b1220;
}

.pricing-landing {
  gap: 24px;
}

.pricing-shell {
  margin: 0;
  padding: 0;
}

.pricing-title {
  margin-bottom: 8px;
  color: #f9fafb;
  letter-spacing: -0.02em;
}

.pricing-subtitle {
  margin-bottom: 16px;
  color: #9ca3af;
}

.pricing-plans-mount {
  margin-top: 18px;
  margin: 32px;
}

.pricing-billing-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.pricing-billing-toggle {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  background: rgba(15, 23, 36, 0.8);
  display: inline-flex;
  gap: 4px;
}

.pricing-billing-option {
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  font-size: 13px;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}

.pricing-billing-option.is-active {
  background: var(--accent);
  color: var(--text);
}

.pricing-billing-note {
  font-size: 13px;
  font-weight: 600;
  color: #86efac;
}

.pricing-plan-grid {
  display: flex;
  align-items: stretch;
  gap: 18px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.pricing-plan-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(160deg, rgba(17, 24, 37, 0.96) 0%, rgba(15, 23, 36, 0.96) 100%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  flex: 1 1 0;
  min-width: 0;
}

.pricing-plan-card:hover {
  /* transform: translateY(-2px); */
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.18);
  border-color: rgba(148, 163, 184, 0.45);
}

.pricing-plan-card.is-current {
  border-color: #0f766e;
  box-shadow: 0 0 0 1px rgba(15, 118, 110, 0.25) inset;
}

.pricing-plan-card.is-featured {
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.3) inset;
}

.pricing-plan-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.pricing-plan-header h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  color: var(--text);
}

.pricing-plan-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.pricing-plan-badge {
  font-size: 10px;
  font-weight: 600;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 999px;
  padding: 1px 6px;
  color: #475569;
  background: rgba(255, 255, 255, 0.8);
}

.pricing-plan-badge.is-featured {
  color: #1d4ed8;
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(59, 130, 246, 0.08);
}

.pricing-plan-price {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.pricing-plan-price span {
  font-size: 14px;
  font-weight: 500;
  margin-left: 4px;
  color: var(--muted);
}

.pricing-plan-price-sub {
  margin: -6px 0 0;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.pricing-plan-features {
  margin: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.pricing-plan-features li {
  border-left: 2px solid rgba(148, 163, 184, 0.35);
  padding: 4px 0 4px 10px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.pricing-feature-label {
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.pricing-feature-main {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.pricing-feature-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.pricing-feature-value {
  color: var(--success);
  font-weight: 600;
}

.pricing-value-custom {
  color: #c084fc;
  font-weight: 700;
}

.pricing-feature-highlight {
  color: #93c5fd;
  font-weight: 600;
}

.pricing-plan-select-btn {
  margin-top: auto;
  border-radius: 10px;
  font-weight: 600;
}

.pricing-plan-select-btn:disabled {
  opacity: 0.75;
  cursor: default;
}

.pricing-footer-actions {
  margin-top: 16px;
}

.pricing-comparison {
  margin-top: 48px;
}

.pricing-comparison h2 {
  margin: 0 0 12px;
  color: #f9fafb;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.pricing-comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.55);
}

.pricing-comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.pricing-comparison-table th,
.pricing-comparison-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  text-align: left;
  font-size: 14px;
}

.pricing-comparison-table thead th {
  color: #e2e8f0;
  font-weight: 700;
  background: rgba(30, 41, 59, 0.7);
}

.pricing-comparison-table tbody td {
  color: #cbd5e1;
}

.pricing-comparison-table tbody tr:nth-child(odd) td {
  background: rgba(15, 23, 42, 0.25);
}

.pricing-comparison-table tbody tr:last-child td {
  border-bottom: 0;
}
