/* Sales site — professional landing + redeem. Use with Tailwind CDN. */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  transition: all 0.2s;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
.btn-primary:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-1px);
}
.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #334155;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  border: 1px solid #f1f5f9;
  overflow: hidden;
}

.snippet-block {
  background: #0f172a;
  color: #f1f5f9;
  border-radius: 0.75rem;
  padding: 1rem;
  font-family: ui-monospace, monospace;
  font-size: 0.875rem;
  overflow-x: auto;
}

.focus-ring:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #3b82f6;
}

/* FAQ accordion */
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-weight: 500;
  color: #1e293b;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: '+';
  font-size: 1.25rem;
  color: #94a3b8;
  font-weight: 300;
}
.faq[open] summary::after {
  content: '−';
}
.faq .content {
  padding-bottom: 1rem;
  color: #64748b;
  line-height: 1.6;
}
