:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #090909;
  color: #f7f3ef;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.2), transparent 22rem),
    radial-gradient(circle at 79% 72%, rgba(112, 8, 12, 0.46), transparent 26rem),
    linear-gradient(135deg, #030303 0%, #161616 47%, #080707 100%);
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  padding: clamp(1.25rem, 3vw, 3rem);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(20rem, 0.8fr);
  align-items: center;
  min-height: calc(100vh - clamp(2.5rem, 6vw, 6rem));
  max-width: 1180px;
  margin: 0 auto;
  gap: clamp(2rem, 5vw, 5rem);
  isolation: isolate;
}

.hero__glow {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(12px);
  pointer-events: none;
}

.hero__glow--red {
  right: 4%;
  bottom: 9%;
  width: min(31rem, 62vw);
  height: min(31rem, 62vw);
  background: rgba(122, 8, 13, 0.38);
}

.hero__glow--white {
  top: 4%;
  left: 1%;
  width: min(23rem, 52vw);
  height: min(23rem, 52vw);
  background: rgba(255, 255, 255, 0.16);
}

.brand-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 28rem;
}

.brand-panel::after {
  position: absolute;
  right: 11%;
  bottom: 8%;
  left: 11%;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(106, 8, 12, 0.62);
  filter: blur(26px);
  content: "";
}

.brand-logo {
  width: min(100%, 49rem);
  height: auto;
  filter: drop-shadow(0 2rem 5rem rgba(0, 0, 0, 0.74));
}

.hero__content {
  max-width: 32rem;
  padding: clamp(1rem, 2vw, 1.5rem) 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #e6b7b2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin: 0;
  color: #fffaf4;
  font-size: clamp(3.2rem, 7.3vw, 6.6rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.intro {
  max-width: 31rem;
  margin: 1.4rem 0 2rem;
  color: rgba(247, 243, 239, 0.76);
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.65;
}

.notify-form {
  width: min(100%, 34rem);
}

.hidden {
  display: none;
}

.input-label {
  display: block;
  margin-bottom: 0.58rem;
  color: rgba(247, 243, 239, 0.7);
  font-size: 0.85rem;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 0.7rem;
}

input[type="email"] {
  width: 100%;
  min-height: 3.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
  padding: 0 1rem;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

input[type="email"]::placeholder {
  color: rgba(247, 243, 239, 0.42);
}

input[type="email"]:focus {
  border-color: rgba(197, 47, 53, 0.85);
  background: rgba(255, 255, 255, 0.11);
  box-shadow:
    0 0 0 4px rgba(197, 47, 53, 0.18),
    inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

button {
  min-width: 13.8rem;
  min-height: 3.55rem;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent),
    #8f1117;
  color: #fff9f6;
  cursor: pointer;
  font-weight: 900;
  box-shadow:
    0 1.2rem 2.5rem rgba(96, 8, 12, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

button:hover {
  transform: translateY(-1px);
  background-color: #a6161d;
  box-shadow:
    0 1.45rem 2.9rem rgba(96, 8, 12, 0.46),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.privacy-note,
.form-status {
  min-height: 1.35rem;
  margin: 0.8rem 0 0;
  color: rgba(247, 243, 239, 0.58);
  font-size: 0.86rem;
  line-height: 1.5;
}

.form-status {
  color: #f0c1bd;
  font-weight: 700;
}

@media (max-width: 900px) {
  .page-shell {
    padding: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 0.6rem;
    padding: 1.25rem 0 2rem;
  }

  .brand-panel {
    min-height: 17rem;
    order: -1;
  }

  .brand-logo {
    width: min(100%, 36rem);
  }

  .hero__content {
    max-width: 100%;
    padding: 0 clamp(0.35rem, 2vw, 1rem);
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.1rem, 16vw, 5.2rem);
  }
}

@media (max-width: 560px) {
  .brand-panel {
    min-height: 12.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  button {
    width: 100%;
    min-width: 0;
  }

  .intro {
    margin-bottom: 1.55rem;
  }
}
