@font-face {
  font-family: "Barmeno";
  src: url("../fonts/Barmeno-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Hong Kong Script Brush";
  src: url("../fonts/HongKongScriptBrush.ttf") format("truetype");
}

:root {
  --cream: #fbf6ee;
  --sand: #eee1d1;
  --ink: #173332;
  --text: #355553;
  --teal: #12aaa3;
  --deep-teal: #0b6f6a;
  --mint: #d6fbf4;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 18%, rgba(18, 170, 163, 0.16), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(214, 251, 244, 0.55), transparent 32%),
    linear-gradient(135deg, var(--cream), var(--sand));
  overflow: hidden;
}

.soon-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px 70px;
}

.soon-content {
  position: relative;
  z-index: 3;
  width: min(680px, 100%);
  text-align: center;
}

.soon-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin: 0 auto 24px;
  border-radius: 50%;
  animation: fadeUp 0.7s ease both;
}

.soon-content h1 {
  margin: 0;
  line-height: 0.78;
}

.soon-thisis {
  display: block;
  font-family: "Barmeno", serif;
  font-size: clamp(68px, 10vw, 140px);
  font-weight: 400;
  letter-spacing: -0.04em;
  animation: fadeUp 0.7s 0.12s ease both;
}

.soon-me {
  display: block;
  margin-top: -4px;
  font-family: "Hong Kong Script Brush", cursive;
  font-size: clamp(92px, 15vw, 220px);
  font-weight: 400;
  color: var(--teal);
  transform: rotate(-3deg);
  animation: fadeUp 0.7s 0.24s ease both;
}

.soon-lead {
  margin: 28px 0 0;
  color: var(--deep-teal);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  animation: fadeUp 0.7s 0.36s ease both;
}

.soon-line {
  width: 110px;
  height: 1px;
  margin: 30px auto;
  background: rgba(23, 51, 50, 0.28);
  animation: fadeUp 0.7s 0.48s ease both;
}

.soon-text {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text);
  font-size: 17px;
  line-height: 1.8;
  animation: fadeUp 0.7s 0.6s ease both;
}

.soon-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
  animation: fadeUp 0.7s 0.72s ease both;
}

.soon-links a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.soon-links a::after {
  content: "→";
  margin-left: 8px;
  color: var(--teal);
  transition: 0.22s ease;
}

.soon-links a:hover::after {
  margin-left: 13px;
}

.soon-orbit {
  position: absolute;
  z-index: 1;
  width: min(620px, 86vw);
  height: min(620px, 86vw);
  border-radius: 50%;
  opacity: 0.38;
  animation: orbitRotate 48s linear infinite;
}

.soon-orbit span {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
}

.soon-orbit span:nth-child(1) { top: 0; left: 50%; background: #12aaa3; }
.soon-orbit span:nth-child(2) { top: 14%; right: 14%; background: #d6fbf4; }
.soon-orbit span:nth-child(3) { top: 50%; right: 0; background: #2587bd; }
.soon-orbit span:nth-child(4) { right: 14%; bottom: 14%; background: #0b6f6a; }
.soon-orbit span:nth-child(5) { bottom: 0; left: 50%; background: #12aaa3; }
.soon-orbit span:nth-child(6) { bottom: 14%; left: 14%; background: #d6fbf4; }
.soon-orbit span:nth-child(7) { top: 50%; left: 0; background: #2587bd; }
.soon-orbit span:nth-child(8) { top: 14%; left: 14%; background: #0b6f6a; }

.soon-big-text {
  position: absolute;
  right: 4vw;
  bottom: 8vh;
  z-index: 0;
  color: rgba(23, 51, 50, 0.055);
  font-size: clamp(70px, 12vw, 190px);
  line-height: 0.82;
  font-weight: 900;
  letter-spacing: -0.08em;
  text-align: right;
  pointer-events: none;
}

.soon-big-text span {
  font-size: 0.45em;
}

.soon-footer {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 24px;
  z-index: 3;
  text-align: center;
  color: rgba(23, 51, 50, 0.62);
  font-size: 13px;
  font-weight: 700;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbitRotate {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 680px) {
  body {
    overflow: auto;
  }

  .soon-page {
    min-height: 100svh;
    padding-top: 34px;
  }

  .soon-logo {
    width: 76px;
    height: 76px;
  }

  .soon-links {
    flex-direction: column;
    gap: 12px;
  }

  .soon-big-text {
    display: none;
  }

  .soon-orbit {
    opacity: 0.22;
  }
}