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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #faf8f5;
  color: #1a1e2b;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.page-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 3rem 3rem 2rem 2rem;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 2.5rem 2rem 1.5rem;
  transition: all 0.2s ease;
}

/* ----------------------------------------------
   HERO
---------------------------------------------- */
.hero {
  text-align: center;
  padding: 1rem 0 2rem;
  background: linear-gradient(145deg, #fefcf9 0%, #f6f2ed 100%);
  border-radius: 2.5rem;
  margin-bottom: 2.5rem;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: #2c3a4b;
}

.brand-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.brand-name {
  background: #1a1e2b;
  color: #fff;
  padding: 0.25rem 1.2rem;
  border-radius: 100px;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.main-title {
  font-size: clamp(2.8rem, 10vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1a1e2b;
  margin-bottom: 0.5rem;
}

.main-title .highlight {
  background: linear-gradient(135deg, #d4a373, #b8865b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.subhead {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #4a5568;
  max-width: 500px;
  margin: 0.5rem auto 1.5rem;
  font-weight: 400;
  line-height: 1.6;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.pill {
  background: #eae7e2;
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #2c3a4b;
  letter-spacing: 0.2px;
}

/* ----------------------------------------------
   COUNTDOWN
---------------------------------------------- */
.countdown-section {
  padding: 1.2rem 0 2rem;
}

.countdown-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.countdown-card {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  background: #f8f5f1;
  padding: 2rem 1.5rem;
  border-radius: 2.5rem;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.02);
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.countdown-item .number {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1e2b;
  line-height: 1.2;
  background: #fff;
  padding: 0.1rem 0.4rem;
  border-radius: 1rem;
  min-width: 70px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.02);
}

.countdown-item .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6b7a8d;
  margin-top: 0.3rem;
  font-weight: 600;
}

.countdown-note {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: #5a6a7c;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* ----------------------------------------------
   NOTIFY SECTION
---------------------------------------------- */
.notify-section {
  padding: 0.5rem 0 2rem;
}

.notify-card {
  max-width: 520px;
  margin: 0 auto;
  background: #faf8f5;
  padding: 2rem 2rem 2.2rem;
  border-radius: 2.5rem;
  text-align: center;
  border: 1px solid #f0ebe6;
}

.notify-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1e2b;
  margin-bottom: 0.3rem;
}

.notify-desc {
  color: #5a6a7c;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.notify-form {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.notify-form input {
  flex: 2 1 200px;
  padding: 0.9rem 1.2rem;
  border: 1px solid #ddd6cf;
  border-radius: 60px;
  font-size: 1rem;
  background: #ffffff;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
  font-family: inherit;
}

.notify-form input:focus {
  border-color: #b8865b;
  box-shadow: 0 0 0 3px rgba(184, 134, 91, 0.15);
}

.notify-form button {
  flex: 1 0 auto;
  background: #1a1e2b;
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  font-family: inherit;
  letter-spacing: 0.3px;
}

.notify-form button:hover {
  background: #2c3a4b;
}

.notify-form button:active {
  transform: scale(0.97);
}

.form-feedback {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #4a7c59;
  min-height: 1.4rem;
}

/* ----------------------------------------------
   FOOTER
---------------------------------------------- */
.footer {
  margin-top: 2rem;
  border-top: 1px solid #ede8e2;
  padding-top: 1.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: #6b7a8d;
}

.footer-copy {
  font-weight: 400;
  letter-spacing: 0.2px;
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-icon {
  font-size: 1.3rem;
  opacity: 0.7;
  transition: opacity 0.2s;
  cursor: default;
}

.social-icon:hover {
  opacity: 1;
}

/* ----------------------------------------------
   RESPONSIVE
---------------------------------------------- */
@media (max-width: 640px) {
  .page-wrapper {
    padding: 1.2rem 1rem;
    border-radius: 2rem;
  }

  .hero {
    padding: 1.2rem 0.5rem;
  }

  .countdown-card {
    gap: 0.8rem;
    padding: 1.5rem 0.8rem;
  }

  .countdown-item .number {
    font-size: 2.2rem;
    min-width: 54px;
  }

  .notify-card {
    padding: 1.5rem 1rem;
  }

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

  .notify-form input,
  .notify-form button {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}