
/* CSS Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: #2e9f8e;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }

/* Layout */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  gap: 2rem;
}
.header { margin-bottom: 2rem; }
.logo {
  max-width: 590px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.tagline {
  font-family: Inter, sans-serif;
  font-size: clamp(1rem, calc(48px * 0.8 + 1vw), calc(48px * 1.2));
  font-weight: 700;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
}
.footer {
  padding: 1.5rem;
  text-align: center;
  font-family: Inter, system-ui, sans-serif, sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #ffffff;
  margin-top: auto;
}
