:root {
  --sand: #f6eedf;
  --sunrise: #f2b56b;
  --cliff: #8a4b30;
  --pine: #1f3d30;
  --deep: #13231b;
  --mist: #fff7ec;
  --paper: rgba(255, 247, 236, 0.8);
  --edge: rgba(138, 75, 48, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--deep);
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 181, 107, 0.42) 0%, transparent 35%),
    radial-gradient(circle at 88% 10%, rgba(31, 61, 48, 0.2) 0%, transparent 34%),
    linear-gradient(160deg, #fff9f1 0%, var(--sand) 55%, #f4e0c3 100%);
  overflow-x: hidden;
  position: relative;
}

.terrain {
  position: fixed;
  bottom: -8vh;
  width: 56vw;
  height: 38vh;
  z-index: 0;
  filter: blur(0.5px);
  opacity: 0.55;
}

.terrain-left {
  left: -10vw;
  background: linear-gradient(40deg, #9f5a37, #6f3c27);
  clip-path: polygon(0 88%, 20% 62%, 42% 70%, 58% 42%, 78% 57%, 100% 35%, 100% 100%, 0 100%);
}

.terrain-right {
  right: -14vw;
  background: linear-gradient(20deg, #3a5b4b, #244334);
  clip-path: polygon(0 55%, 14% 63%, 34% 38%, 52% 61%, 78% 29%, 100% 48%, 100% 100%, 0 100%);
}

.coming-soon-card {
  width: min(92vw, 760px);
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 24px;
  backdrop-filter: blur(4px);
  background: var(--paper);
  border: 1px solid var(--edge);
  box-shadow:
    0 18px 50px rgba(31, 61, 48, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  text-align: center;
  position: relative;
  z-index: 1;
  animation: rise-in 0.85s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.logo {
  width: min(210px, 45vw);
  height: auto;
  margin-bottom: 0.5rem;
  animation: drift 5.2s ease-in-out infinite;
}

.tag {
  margin: 0;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--cliff);
  font-weight: 700;
}

h1 {
  margin: 0.8rem 0 0.6rem;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(1.9rem, 5.2vw, 3.1rem);
  line-height: 1.15;
  color: var(--pine);
}

.lead {
  margin: 0 auto;
  width: min(56ch, 100%);
  color: #274235;
  font-size: clamp(0.98rem, 2vw, 1.1rem);
  line-height: 1.6;
}

.domain {
  margin: 1.35rem 0 1.15rem;
  font-weight: 600;
}

.domain a {
  color: var(--cliff);
  text-decoration: none;
  border-bottom: 1px dashed rgba(138, 75, 48, 0.5);
}

.domain a:hover,
.domain a:focus-visible {
  color: #6c341f;
  border-bottom-color: currentColor;
}

.cta {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.82rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  color: #fffefb;
  font-weight: 700;
  background: linear-gradient(135deg, #a85633, #2f5848);
  box-shadow: 0 10px 28px rgba(47, 88, 72, 0.28);
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(47, 88, 72, 0.34);
  filter: saturate(1.05);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 600px) {
  .coming-soon-card {
    padding: 1.3rem 1rem 1.5rem;
    border-radius: 18px;
  }

  .terrain {
    height: 26vh;
    opacity: 0.45;
  }

  .cta {
    width: 100%;
    max-width: 380px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon-card,
  .logo,
  .cta {
    animation: none;
    transition: none;
  }
}
