:root {
  --brand: #f90363;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: ui-rounded, system-ui, -apple-system, "Segoe UI", Roboto,
    Helvetica, Arial;
  background: linear-gradient(180deg, #ff1b77 0%, #f90363 60%, #ea005c 100%);
  color: var(--white);
}

.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.content {
  max-width: 700px;
  width: 100%;
}

.logo {
  width: clamp(180px, 35vw, 320px);
  margin-bottom: 50px;
}

h1 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  margin-bottom: 30px;
  opacity: 0.95;
}

.text {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto;
}
