:root {
  --bg-1: #071123;
  --bg-2: #0c1f3d;
  --surface: rgba(6, 18, 35, 0.68);
  --text: #e9f0ff;
  --muted: #b6c4e6;
  --accent: #58d3ff;
  --accent-2: #9dffdb;
  --stroke: rgba(136, 182, 255, 0.25);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background-image:
    linear-gradient(rgba(3, 10, 20, 0.7), rgba(3, 10, 20, 0.82)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(88, 211, 255, 0.3), rgba(88, 211, 255, 0));
  top: -90px;
  left: -120px;
  animation: float 8s ease-in-out infinite;
}

.orb-2 {
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(157, 255, 219, 0.25), rgba(157, 255, 219, 0));
  right: -160px;
  bottom: -120px;
  animation: float 9.5s ease-in-out infinite reverse;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  z-index: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0 1px, transparent 1px);
  background-size: 120px 120px;
}

.container {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 2.4rem));
  margin: 3.5rem auto;
  padding: clamp(1.2rem, 2vw, 2.2rem);
  border: 1px solid var(--stroke);
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(6, 18, 35, 0.78), rgba(9, 22, 44, 0.6));
  backdrop-filter: blur(8px);
  box-shadow: 0 28px 70px rgba(0, 6, 16, 0.45);
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: rgba(88, 211, 255, 0.14);
  border: 1px solid rgba(88, 211, 255, 0.38);
  color: #d9f6ff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.title {
  margin: 1rem 0 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.title span {
  color: #cbffe9;
}

.subtitle {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 60ch;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.65;
}

.coming-soon-card {
  margin-top: 1.4rem;
  border: 1px solid rgba(88, 211, 255, 0.28);
  border-radius: 18px;
  padding: 0.95rem 1.1rem;
  background: linear-gradient(170deg, rgba(10, 32, 60, 0.72), rgba(4, 15, 30, 0.7));
}

.coming-soon-card p {
  margin: 0;
  font-weight: 700;
  color: #dcf8ff;
  letter-spacing: 0.01em;
}

.contact-list {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-weight: 700;
  padding: 0.82rem 1.1rem;
  border-radius: 12px;
  color: #dff2ff;
  border: 1px solid rgba(136, 182, 255, 0.36);
  background: rgba(6, 22, 42, 0.62);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(157, 255, 219, 0.5);
  background: rgba(11, 35, 64, 0.72);
}

.icon {
  width: 1.45rem;
  height: 1.45rem;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(88, 211, 255, 0.27), rgba(157, 255, 219, 0.25));
}

.icon svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: #f4ffff;
}

.footer {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(136, 182, 255, 0.36);
  background: rgba(6, 22, 42, 0.65);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(157, 255, 219, 0.5);
  background: rgba(11, 35, 64, 0.72);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #e9f8ff;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.7s ease forwards;
}

.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }
.reveal:nth-child(4) { animation-delay: 0.24s; }
.reveal:nth-child(5) { animation-delay: 0.32s; }
.reveal:nth-child(6) { animation-delay: 0.4s; }
.reveal:nth-child(7) { animation-delay: 0.48s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-14px) translateX(10px);
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(920px, calc(100% - 1.6rem));
    margin: 2rem auto;
    padding: 1.3rem;
  }

  .title {
    max-width: 16ch;
    font-size: clamp(2.1rem, 5.4vw, 3.4rem);
  }

  .subtitle {
    max-width: 66ch;
  }

  .contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .contact-item {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 760px) {
  .bg-orb {
    display: none;
  }

  .container {
    margin: 0.8rem auto;
    width: calc(100% - 1rem);
    border-radius: 18px;
    padding: 1.05rem;
  }

  .badge {
    font-size: 0.74rem;
    letter-spacing: 0.07em;
  }

  .title {
    margin-top: 0.8rem;
    font-size: clamp(1.75rem, 8vw, 2.45rem);
    line-height: 1.08;
  }

  .subtitle {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-wrap: wrap;
    gap: 0.7rem;
  }

  .contact-item {
    width: 100%;
    justify-content: flex-start;
    font-size: 0.96rem;
    padding: 0.78rem 0.9rem;
  }

  body {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 0.7rem);
    border-radius: 14px;
    padding: 0.9rem;
  }

  .coming-soon-card {
    padding: 0.84rem 0.86rem;
  }

  .coming-soon-card p {
    font-size: 0.95rem;
  }

  .contact-item {
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .social-link {
    width: 2.55rem;
    height: 2.55rem;
  }
}
