* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Silver Mist - Aura (aura) */

/* Base color on BODY - blend modes composite against this */
body {
  background-color: #faf8f2;
  position: relative;
}

.aura-bg {
  position: relative;
  overflow: hidden;
  min-height: 100vh; /* height must be explicit - absolute layers add none */
  /* NO background-color - layers blend against body */
}

.aura-layer-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #9f583c 0%, #9f583c 32%, #1b2339 68%, #1b2339 100%);
  mix-blend-mode: normal;
  transform: translateZ(0);
  will-change: transform;
  pointer-events: none;
}

/* Layer 2 - screen */
.aura-layer-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 45% at 68% 42%, rgba(27, 35, 57, 0.2) 0%, rgba(20,184,166,0.08) 50%, transparent 76%);
  mix-blend-mode: screen;
  filter: blur(120px); /* use 173px on desktop */
  transform: translateZ(0);
  will-change: transform;
  pointer-events: none;
}

/* Content wrapper - keep it above the absolute layers */
.aura-content {
  position: relative;
  z-index: 1;
}

.container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  padding: 60px 40px;
  text-align: center;
}

.logo-section {
  margin-bottom: 0;
}

.logo {
  margin-bottom: 20px;
}

h1 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 350px;
    margin: auto;
  margin-bottom: 0;
}

.construction-icon {
  font-size: 48px;
  margin-bottom: 24px;
  opacity: 0.8;
}

.form-section {
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 16px;
}

input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

input[type="email"]:focus {
  outline: none;
  border-color: #1a73e8;
  background: white;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.button {
  width: 100%;
  padding: 14px 24px;
  background: #1a73e8;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.button:hover {
  background: #1557b0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.button:active {
  transform: translateY(0);
}

.contact-section {
  border-top: 1px solid #eee;
  padding-top: 40px;
  margin-top: 40px;
}

.contact-title {
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-methods {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-link:hover {
  background: #e8f0fe;
  border-color: #1a73e8;
  color: #1a73e8;
}

.whatsapp-icon {
  font-size: 18px;
}

.email-icon {
  font-size: 18px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.feature {
  text-align: center;
}

.feature-number {
  font-size: 24px;
  font-weight: 700;
  color: #1a73e8;
  margin-bottom: 4px;
}

.feature-text {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .container {
    padding: 40px 24px;
  }

  h1 {
    font-size: 28px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    flex-direction: column;
  }

  .contact-link {
    width: 100%;
    justify-content: center;
  }
}