:root {
  --brand-teal: #178CA0;
  --brand-teal-soft: #5eead4;
  --text-dark: #1f2937;
  --text-light: #f8fafc;
  --overlay: rgba(15, 23, 42, 0.55);
}

.dot-white {
  color: var(--White, #FFF);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Outfit', sans-serif;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
}

.hero {
  position: absolute;
  inset: 0;
  background: var(--text-dark) url('../images/hero-bg.png') center / cover no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 44rem;
}

.logo {
  width: 160px;
  height: 160px;
  background: #178CA0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0 auto 2.5rem;
}

.logo-img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.tagline {
  color: var(--White, #FFF);
  text-align: center;
  font-family: "Avenir Next", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 125% */
  margin: 0 0 1.5rem;
}

.highlight-block {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(248, 250, 252, 0.95);
}

.highlight-block.highlight-experience {
  color: var(--White, #FFF);
  text-align: center;
  font-family: "Avenir Next", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  margin: 0 0 1.25rem;
}

.highlight-block.highlight-experience .highlight-experience__lead {
  color: var(--White, #FFF);
  font-style: normal;
}

.highlight-block.highlight-experience .accent {
  color: var(--Primary, #178CA0);
  font-style: italic;
  font-weight: 700;
}

.highlight-block.highlight-benessere {
  color: var(--White, #FFF);
  text-align: center;
  font-family: "Avenir Next", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  margin: 0 0 5rem;
}

.highlight-block.highlight-benessere .highlight-benessere__lead {
  color: var(--White, #FFF);
  font-style: normal;
}

.highlight-block.highlight-benessere .accent {
  color: var(--Primary, #178CA0);
  font-style: italic;
  font-weight: 700;
}

.highlight-block .accent {
  color: var(--brand-teal);
  font-weight: 700;
}

.brand-statement {
  text-align: center;
  font-family: "Avenir Next", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 74px; /* 115.625% */
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.brand-statement__primary,
.brand-statement__white {
  color: var(--Primary, #178CA0);
}

.coming-soon {
  color: var(--White, #FFF);
  font-family: "Avenir Next", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 59px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

/* Mobile: testi un po' più piccoli */
@media (max-width: 639px) {
  html {
    font-size: 14px;
  }

  .tagline {
    font-size: 32px;
    line-height: 42px;
  }

  .highlight-block {
    font-size: 1rem;
  }

  .highlight-block.highlight-experience,
  .highlight-block.highlight-benessere {
    font-size: 32px;
    line-height: 42px;
  }

  .brand-statement {
    font-size: 42px;
    line-height: 50px;
  }

  .coming-soon {
    font-size: 28px;
    line-height: 38px;
  }
}

@media (min-width: 640px) {
  .content {
    padding: 3rem 2rem;
  }
}
