/* Merlin Match v2 - Product Plan Design System */
/* Primary: sky, Secondary/Neutral: slate */
/* Fonts: Plus Jakarta Sans (headings), Inter (body) */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --color-primary: #0ea5e9;
  --color-primary-hover: #0284c7;
  --color-slate-50: #f8fafc;
  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-slate-600: #475569;
  --color-slate-700: #334155;
  --color-slate-900: #0f172a;
}

body {
  font-family: var(--font-body);
  background: var(--color-slate-50);
  color: var(--color-slate-900);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
}

/* Header - Product plan style */
.v2-header {
  background: white;
  border-bottom: 1px solid var(--color-slate-200);
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1rem;
  padding-right: 1rem;
}

.v2-header .back-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-slate-600);
  text-decoration: none;
  transition: color 0.2s;
}

.v2-header .back-link:hover {
  color: var(--color-slate-900);
}

.v2-header .logo-img {
  height: 1.75rem;
}

.v2-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  background: linear-gradient(to right, #38bdf8, #0ea5e9, #0284c7);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.v2-btn-primary:hover {
  background: linear-gradient(to right, #0ea5e9, #0284c7, #0369a1);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.25);
}

.v2-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-slate-700);
  background: white;
  border: 1px solid var(--color-slate-200);
  cursor: pointer;
  transition: all 0.2s;
}

.v2-btn-secondary:hover {
  background: var(--color-slate-100);
}
