/* Tibber brand palette
   Blue       #1ED0E7  actuals, primary, active filters
   Light Blue #BEFBFF  budget lines, selected backgrounds
   Soft Black #16191D  text, axes
   White      #FFFFFF  page background
   Light Grey #F3F6F9  card backgrounds
*/

:root {
  --tibber-blue: #1ed0e7;
  --tibber-light-blue: #befbff;
  --tibber-soft-black: #16191d;
  --tibber-white: #ffffff;
  --tibber-light-grey: #f3f6f9;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--tibber-white);
  color: var(--tibber-soft-black);
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.card {
  background: var(--tibber-light-grey);
  border-radius: 16px;
  padding: 48px 56px;
  max-width: 560px;
  width: 100%;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--tibber-blue);
  margin-bottom: 24px;
}

h1 {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.lede {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 24px 0;
  color: var(--tibber-soft-black);
}

.meta {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  color: var(--tibber-soft-black);
  opacity: 0.7;
  line-height: 1.5;
}
