:root {
  --bg: #f7f1e7;
  --text: #181413;
  --muted: #6f615c;
  --surface: rgba(255, 255, 255, 0.9);
  --line: rgba(50, 34, 29, 0.1);
  --shadow: 0 24px 80px rgba(42, 23, 18, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 20%, rgba(224, 186, 159, 0.55), transparent 25%),
    radial-gradient(circle at 82% 22%, rgba(214, 202, 188, 0.7), transparent 24%),
    linear-gradient(180deg, #fbf7f1 0%, #f3ebdf 100%);
}

.landing {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 1.4rem;
  overflow: hidden;
}

.landing > * {
  position: relative;
  z-index: 1;
}

.glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.7;
}

.glow-left {
  left: -8rem;
  bottom: -10rem;
  background: rgba(207, 170, 145, 0.55);
}

.glow-right {
  top: -10rem;
  right: -8rem;
  background: rgba(216, 208, 196, 0.8);
}

.hero-card {
  position: relative;
  width: min(860px, 100%);
  padding: clamp(1rem, 2.3vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  text-align: center;
}

.signup-panel {
  width: min(620px, calc(100% - 2rem));
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid #8e1f1f;
  border-radius: 18px;
  background: #b3261e;
  box-shadow: 0 18px 48px rgba(104, 18, 18, 0.22);
  backdrop-filter: blur(16px);
}

.signup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: center;
}

.brand-lockup {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(1.2rem, 3.2vw, 2.3rem);
}

.brand-logo {
  display: block;
  width: min(100%, 730px);
  margin: 0;
}

.signup-input {
  width: 100%;
  height: 2.2rem;
  padding: 0 0.8rem;
  border: 1px solid rgba(50, 34, 29, 0.18);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.signup-input::placeholder {
  color: #8b7e79;
}

.signup-button {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(50, 34, 29, 0.18);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
}

.signup-icon {
  width: 1rem;
  height: 1rem;
}

.signup-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signup-status {
  min-height: 1rem;
  margin: 0.45rem 0 0;
  color: #fff7f5;
  font-size: 0.74rem;
  text-align: left;
}

.signup-status[data-state="error"] {
  color: #ffe0dc;
}

.signup-status[data-state="success"] {
  color: #fff3c6;
}

.subcopy-group {
  display: grid;
  gap: 0.2rem;
  justify-items: center;
}

.subcopy {
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.04rem, 1.69vw, 1.69rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.subcopy-secondary {
  margin-top: 0.3rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(1.6rem, 5vw, 3.3rem);
  text-align: left;
}

.details-block {
  font-size: clamp(0.7rem, 1.3vw, 1rem);
  font-style: italic;
  line-height: 1.18;
}

.details-block p {
  margin: 0;
}

.details-block p + p {
  margin-top: 0.28rem;
}

.details-right {
  text-align: right;
  align-self: end;
}

.details-right p:last-child {
  margin-top: 0.45rem;
}

@media (max-width: 720px) {
  body {
    min-height: 100svh;
    overflow: hidden;
  }

  .glow {
    display: none;
  }

  .landing {
    min-height: 100svh;
    padding: 1rem 0.9rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 0.8rem;
  }

  .signup-panel {
    width: 100%;
    margin: 0;
    padding: 0.75rem 0.85rem;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(104, 18, 18, 0.14);
    backdrop-filter: none;
  }

  .hero-card {
    width: 100%;
    padding: 1.4rem 1rem;
    margin-top: 0;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(42, 23, 18, 0.08);
    backdrop-filter: none;
  }

  .brand-lockup {
    margin-bottom: 1rem;
  }

  .brand-logo {
    width: 100%;
    max-width: 620px;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .details-right {
    text-align: center;
  }

  .subcopy {
    white-space: normal;
  }

  .details-grid {
    margin-top: 1.5rem;
    text-align: center;
  }
}
