:root {
  font-family: system-ui, sans-serif;
  --primary: #4f46e5;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-700: #374151;
}
body {
  margin: 0;
  background: var(--gray-100);
  color: var(--gray-700);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  background: #fff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
a.logo { font-weight: 700; color: var(--primary); text-decoration: none; }
nav a { margin-left: 1rem; color: var(--gray-700); text-decoration: none; }
main { flex: 1; padding: 2rem; max-width: 640px; margin: auto; }
form { display: flex; flex-direction: column; gap: 1rem; }
input, button, select {
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  font-size: 1rem;
}
button { background: var(--primary); color: #fff; cursor: pointer; border: none; }
button.secondary { background: #fff; color: var(--gray-700); border: 1px solid var(--gray-300); }
.hotkey-list { margin-top: 2rem; }
.hotkey { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid var(--gray-300); }


/* --- pricing ------------------------------------------------------------- */
.pricing-section {
  max-width: 640px;
  margin: 4rem auto;
  text-align: center;
  padding: 0 1rem;
}

.pricing-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.pricing-card {
  border: 1px solid #e2e8f0;      /* light grey */
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.pricing-label {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  margin: 0.5rem 0 2rem;
}

.pricing-price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-price .period {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-cta {
  background: #0074d9;
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

.pricing-cta:hover {
  background: #005ea6;
}
