/* BECOME — Hero only (Beloved Ecosystem branding) */

:root {
  --burgundy: #6B0F1A;
  --burgundy-dark: #4A0000;
  --white: #ffffff;
  --font-sans: "IBM Plex Sans", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--burgundy);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--white);
  color: var(--burgundy);
  padding: 0.5rem 1rem;
  z-index: 100;
  border-radius: 4px;
}
.skip-link:focus {
  top: 0.5rem;
}

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

.hero-container {
  width: 100%;
  max-width: min(92vw, 1600px);
  margin: 0 auto;
}

.wordmark {
  margin-bottom: 1.75rem;
}

.wordmark a {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(4.5rem, 18vw, 14rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
}

.hero-content {
  display: block;
}

.hero-text h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
  text-wrap: balance;
}

@media (max-width: 959px) {
  .wordmark {
    margin-bottom: 1.25rem;
  }

  .wordmark a {
    font-size: clamp(3.5rem, 22vw, 7rem);
  }

  .hero-text h1 {
    font-size: clamp(1.75rem, 7vw, 3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
