:root {
  --bg: #090909;
  --bg-deep: #141414;
  --text: #f4f4f0;
  --muted: #9a9a95;
  --panel: rgba(18, 18, 18, 0.78);
  --line: rgba(255, 255, 255, 0.08);
  --accent: #f4f4f0;
  --accent-dark: #d8d8d2;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 26%),
    linear-gradient(135deg, #050505 0%, var(--bg) 45%, var(--bg-deep) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0;
}

body::before {
  width: 18rem;
  height: 18rem;
  background: rgba(255, 255, 255, 0.03);
  top: -4rem;
  right: -4rem;
}

body::after {
  width: 14rem;
  height: 14rem;
  background: rgba(255, 255, 255, 0.02);
  bottom: 1rem;
  left: -4rem;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem clamp(1.5rem, 4vw, 4rem);
}

.hero__content {
  max-width: 42rem;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: 0.92;
  font-weight: 700;
}

.intro {
  margin: 1.5rem 0 0;
  max-width: 30rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--muted);
}

.notify-form {
  display: flex;
  gap: 0.9rem;
  max-width: 34rem;
  margin-top: 2.2rem;
}

.notify-form input {
  flex: 1;
  min-width: 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  font: inherit;
  color: inherit;
}

.notify-form button {
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.4rem;
  background: var(--accent);
  color: #090909;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.notify-form button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.status {
  margin-top: 1rem;
  color: var(--muted);
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__card {
  width: min(100%, 34rem);
  aspect-ratio: 4 / 5;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  transform: rotate(2deg);
}

.hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.4rem;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

  .hero__visual {
    order: -1;
  }

  .hero__card {
    transform: none;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .notify-form {
    flex-direction: column;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }
}
