:root {
  color-scheme: light;
  --peach: #f7b9a4;
  --peach-dark: #f29c84;
  --peach-light: #fde6dd;
  --ink: #2e1f1b;
  --cream: #fff7f3;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", "Segoe UI", sans-serif;
}

body {
  background: linear-gradient(135deg, var(--cream), var(--peach-light));
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  overflow-x: hidden;
}

.page {
  max-width: 960px;
  width: 100%;
  display: grid;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.hero {
  display: grid;
  gap: 1.25rem;
  text-align: left;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
}

.hero p {
  font-size: 1.1rem;
  max-width: 580px;
  line-height: 1.6;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--peach-dark);
  box-shadow: 0 0 0 6px rgba(242, 156, 132, 0.2);
  animation: pulse 2.8s infinite;
}

.card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(46, 31, 27, 0.12);
  display: grid;
  gap: 1rem;
}

.notify-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.input-field {
  flex: 1 1 240px;
}

input[type="email"] {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 31, 27, 0.15);
  background: var(--cream);
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input[type="email"]:focus {
  outline: none;
  border-color: var(--peach-dark);
  box-shadow: 0 0 0 4px rgba(242, 156, 132, 0.2);
}

button {
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: var(--peach-dark);
  color: var(--cream);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(242, 156, 132, 0.35);
}

.form-message {
  min-height: 1.5rem;
  font-size: 0.98rem;
}

.details {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.detail {
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.detail h2 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.detail p {
  line-height: 1.5;
}

.floating-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-orbs span {
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(247, 185, 164, 0.6), rgba(247, 185, 164, 0));
  border-radius: 50%;
  animation: drift 12s linear infinite;
}

.floating-orbs span:nth-child(1) {
  top: -40px;
  left: -80px;
}

.floating-orbs span:nth-child(2) {
  bottom: -80px;
  right: 10%;
  animation-delay: -4s;
}

.floating-orbs span:nth-child(3) {
  top: 20%;
  right: -100px;
  animation-delay: -8s;
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

@keyframes drift {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(30px) translateX(20px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

@media (max-width: 720px) {
  .hero {
    text-align: center;
  }

  .hero p {
    margin: 0 auto;
  }

  .notify-form {
    flex-direction: column;
  }

  button {
    width: 100%;
  }
}
