:root {
  --thryv-navy: #29355d;
  --thryv-orange: #ff5000;
  --thryv-fog: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background: var(--thryv-navy);
  color: #fff;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  max-width: 64rem;
  width: 100%;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 1 1 0;
  min-width: 0;
}

.logo {
  width: clamp(140px, 22vw, 200px);
  height: auto;
  margin-bottom: 2.5rem;
}

.eyebrow {
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--thryv-orange);
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

.tagline {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--thryv-fog);
  max-width: 36rem;
  margin: 0;
}

.accent {
  display: inline-block;
  width: 3rem;
  height: 3px;
  background: var(--thryv-orange);
  border-radius: 2px;
  margin: 1.75rem 0 0;
}

.mascot {
  width: clamp(220px, 32vw, 320px);
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .hero {
    flex-direction: column;
    gap: 2.5rem;
  }

  .hero__content {
    align-items: center;
    text-align: center;
  }

  .mascot {
    order: -1;
    width: clamp(180px, 50vw, 260px);
  }
}
