* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 35%),
    linear-gradient(180deg, #070707 0%, #000 100%);
  color: #fff;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
}

.landing-card {
  width: 100%;
  max-width: 430px;
  background: rgba(22,22,22,0.92);
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.75),
    0 0 80px rgba(255,255,255,0.04);
}

.cover {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.05);
}

.content {
  padding: 28px 24px 30px;
  text-align: center;
  background: linear-gradient(180deg, #1f1f1f, #151515);
}

h1 {
  font-size: 18px;
  line-height: 1.15;
  margin: 0 0 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.subtext {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 22px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 17px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.28);
  color: white;
  font-size: 15px;
  outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus {
  border-color: rgba(255,255,255,0.65);
}

input::placeholder {
  color: rgba(255,255,255,0.55);
}

.consent {
  display: flex;
  gap: 9px;
  text-align: left;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255,255,255,0.72);
  margin: 2px 0 6px;
}

button,
.button {
  width: 100%;
  display: block;
  padding: 17px;
  border-radius: 15px;
  border: 0;
  background: linear-gradient(180deg, #ffffff, #dcdcdc);
  color: #000;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(255,255,255,0.12);
}

button:hover,
.button:hover {
  transform: translateY(-1px);
}

.outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: none;
}

.hidden {
  display: none !important;
}

.error {
  color: #ff7777;
  margin-top: 14px;
  font-size: 13px;
}
