* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #141414;
  color: #f5f5f5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding: 80px 24px 60px;
}

.landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.08) 0%, transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(255,255,255,0.035) 0%, transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.02) 0%, transparent 24%);
}

.landing::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.1) 20%, rgba(0,0,0,0.42) 100%),
    radial-gradient(circle at center, transparent 32%, rgba(0,0,0,0.76) 100%);
}

.landing-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.landing-logo {
  width: 340px;
  max-width: 80vw;
  height: auto;
  filter: drop-shadow(0 16px 34px rgba(0,0,0,0.38));
  margin-bottom: 52px;
}

/* BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(245,243,239,0.2);
  background: rgba(245,243,239,0.05);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(245,245,245,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: badge-fade-in 1s ease forwards;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c97b5a;
  flex-shrink: 0;
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 123, 90, 0.55);
  }
  50% {
    transform: scale(1.25);
    box-shadow: 0 0 0 5px rgba(201, 123, 90, 0);
  }
}

@keyframes badge-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* TAGLINE */
.landing-tagline {
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(245,245,245,0.5);
  margin-top: 20px;
  margin-bottom: 52px;
}

/* EMAIL FORM */
.email-form {
  display: flex;
  width: 100%;
  max-width: 400px;
}

.email-input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(245,243,239,0.06);
  border: 1px solid rgba(245,243,239,0.18);
  border-right: none;
  color: #f5f5f5;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.email-input::placeholder {
  color: rgba(245,245,245,0.3);
}

.email-input:focus {
  border-color: rgba(245,243,239,0.4);
  background: rgba(245,243,239,0.09);
}

.email-btn {
  padding: 14px 22px;
  background: #f5f3ef;
  color: #111;
  border: 1px solid #f5f3ef;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.22s ease;
}

.email-btn:hover {
  background: #ffffff;
}

/* CONFIRMATION */
.form-note {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(245,245,245,0.45);
  min-height: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* MANIFESTO */
.manifesto {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 48px;
}

.manifesto-line {
  width: 40px;
  height: 1px;
  background: rgba(245,243,239,0.2);
}

.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(245,245,245,0.7);
  letter-spacing: 0.2px;
  font-style: italic;
  max-width: 480px;
}

.manifesto-attr {
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: rgba(245,245,245,0.35);
}

/* MOBILE */
@media (max-width: 480px) {
  .landing-logo {
    width: 260px;
  }

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

  .email-input {
    border-right: 1px solid rgba(245,243,239,0.18);
    border-bottom: none;
  }

  .email-btn {
    padding: 15px;
  }
}
