:root {
  --text: #111827;
  --muted: #6b7280;
  --background: #ffffff;
  --accent: #1e2a38;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--text);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.hero {
  text-align: center;
  max-width: 760px;
}

.logo{
width:90px;
height:auto;
margin-bottom:3rem;
opacity:0.95;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.subtitle {
  margin: 1.5rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--muted);
}

.caption {
  margin: 4rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}