:root {
  color-scheme: dark;
  --ink: #eefcff;
  --muted: #9fb9bd;
  --green: #53f0a9;
  --blue: #4db8ff;
  --charcoal: #020506;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--charcoal);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: clamp(1.5rem, 4vw, 4rem);
  place-items: center start;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image {
  background-image: url("assets/hero-violin.png");
  background-position: center;
  background-size: cover;
  filter: grayscale(0.42) saturate(0.82) hue-rotate(144deg) brightness(0.74) contrast(1.18);
  transform: scale(1.02);
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 5, 6, 0.95), rgba(2, 10, 13, 0.76) 44%, rgba(5, 28, 45, 0.38)),
    radial-gradient(circle at 26% 48%, rgba(83, 240, 169, 0.22), transparent 29%),
    radial-gradient(circle at 82% 22%, rgba(77, 184, 255, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(7, 27, 47, 0.2), rgba(2, 5, 6, 0.88));
}

.hero__content {
  width: min(100%, 720px);
  padding-block: 8vh;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green);
  font-size: clamp(0.78rem, 1.4vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(83, 240, 169, 0.26);
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 11vw, 9.25rem);
  font-weight: 600;
  line-height: 0.86;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.62);
}

.status {
  margin: clamp(1.25rem, 3vw, 2rem) 0 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 0 36px rgba(77, 184, 255, 0.2);
}

.divider {
  width: min(42vw, 260px);
  height: 1px;
  margin: clamp(1.5rem, 4vw, 2.5rem) 0;
  background: linear-gradient(90deg, var(--green), var(--blue), rgba(77, 184, 255, 0));
  box-shadow: 0 0 22px rgba(83, 240, 169, 0.3);
}

.note {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.7;
}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
    padding: 1.25rem;
    place-items: end start;
  }

  .hero__image {
    background-position: 58% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(2, 5, 6, 0.2), rgba(2, 10, 13, 0.82) 58%, rgba(2, 5, 6, 0.97)),
      radial-gradient(circle at 24% 58%, rgba(83, 240, 169, 0.22), transparent 35%),
      radial-gradient(circle at 82% 18%, rgba(77, 184, 255, 0.2), transparent 32%),
      linear-gradient(90deg, rgba(2, 5, 6, 0.66), rgba(5, 28, 45, 0.24));
  }

  .hero__content {
    padding-block: 0 8vh;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.7rem);
  }
}
