@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

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

body {
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
  background: #0a1a1a;
}

.coming-soon-root {
  position: relative;
  width: 100vw;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-layer {
  position: absolute;
  inset: 0;
  background-image: url('cygnus_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: subtle-zoom 20s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(4, 14, 16, 0.82) 0%,
    rgba(4, 14, 16, 0.70) 50%,
    rgba(4, 14, 16, 0.84) 100%
  );
}

.content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  padding: 2rem 1.5rem;
  animation: fade-up 1.2s ease both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.logo-wrap {
  width: min(320px, 68vw);
  margin-bottom: 1.4rem;
}

.logo {
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 2px 18px rgba(32, 178, 170, 0.20));
}

.divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(178, 155, 100, 0.7), transparent);
  margin: 0 auto 1.1rem;
}

.tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  color: rgba(200, 175, 115, 0.92);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.coming-soon-text {
  display: flex;
  gap: 0.45em;
  align-items: baseline;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.cs-word {
  font-size: clamp(2.8rem, 9.5vw, 6rem);
  color: #ffffff;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}

.cs-soon {
  color: rgba(200, 175, 115, 0.95);
  font-style: italic;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}

.domain {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.email-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.8rem;
}

.email-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.email-form {
  display: flex;
  gap: 0;
  width: min(420px, 88vw);
  border: 1px solid rgba(178, 155, 100, 0.4);
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: border-color 0.3s;
}

.email-form:focus-within {
  border-color: rgba(178, 155, 100, 0.75);
}

.email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.78rem 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.email-btn {
  background: rgba(178, 155, 100, 0.88);
  border: none;
  padding: 0.78rem 1.3rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #0a1a1a;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
}

.email-btn:hover:not(:disabled) {
  background: rgba(178, 155, 100, 1);
}

.email-btn:disabled {
  opacity: 0.7;
  cursor: default;
}

.email-error {
  font-size: 0.68rem;
  color: rgba(255, 140, 140, 0.9);
  letter-spacing: 0.05em;
}

.thank-you {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(200, 175, 115, 0.95);
  letter-spacing: 0.06em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.social-links {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.social-link {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.25s, transform 0.25s;
  display: inline-flex;
  text-decoration: none;
}

.social-link:hover {
  color: rgba(200, 175, 115, 0.9);
  transform: translateY(-2px);
}

/* ── Footer ── */

.site-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.footer-copy,
.footer-made,
.footer-sep {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-heart {
  color: rgba(200, 175, 115, 0.75);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.45;
  transition: opacity 0.2s;
}

.footer-brand:hover {
  opacity: 0.75;
}

.footer-logo {
  height: 14px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 480px) {
  .coming-soon-text {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
  .cs-word {
    line-height: 0.95;
  }
}
