:root {
  color-scheme: dark;
  --ink: #f7f1ff;
  --muted: #c8bce7;
  --deep: #0b0920;
  --violet: #a78bfa;
  --cyan: #6ee7f9;
  --line: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--deep);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: #0b0920;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

main {
  min-height: 100svh;
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 86svh;
  padding: clamp(28px, 7vw, 88px);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    url("Brand%20%26%20Website/LoveYouAlarmLogo.png") center right 10% / min(86vw, 920px) no-repeat,
    #0b0920;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(5, 4, 18, 0.42);
}

.hero-mark {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(18px, 5vw, 72px);
  width: clamp(72px, 14vw, 132px);
  height: auto;
  border-radius: 22%;
  opacity: 0.9;
}

.hero-copy {
  width: min(780px, 100%);
  padding-block: 44px;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 22px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.8rem, 13vw, 9.5rem);
  line-height: 0.88;
  font-weight: 850;
}

.lede {
  max-width: 14ch;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(1.75rem, 4.5vw, 3.6rem);
  line-height: 1;
  font-weight: 750;
}

.mantra {
  max-width: 42rem;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.signal {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.signal p {
  min-height: 14svh;
  margin: 0;
  padding: 22px clamp(18px, 4vw, 34px);
  display: flex;
  align-items: center;
  color: var(--muted);
  background: rgba(11, 9, 32, 0.96);
  font-size: clamp(0.96rem, 2vw, 1.12rem);
  font-weight: 700;
}

@media (max-width: 760px) {
  .hero {
    min-height: 82svh;
    align-items: end;
  }

  .hero::before {
    background:
      url("Brand%20%26%20Website/LoveYouAlarmLogo.png") center top 12% / min(118vw, 720px) no-repeat,
      #0b0920;
  }

  .hero-mark {
    display: none;
  }

  h1 {
    font-size: clamp(3.35rem, 18vw, 6.25rem);
  }

  .lede {
    max-width: 12ch;
  }

  .signal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal p {
    min-height: 11svh;
  }
}

@media (max-width: 420px) {
  .hero {
    padding: 24px;
  }

  .status {
    font-size: 0.72rem;
  }

  .signal {
    grid-template-columns: 1fr;
  }

  .signal p {
    min-height: 56px;
  }
}
