:root {
  --bg: #050505;
  --bg-deep: #000000;
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.92);
  --text-muted: rgba(255, 255, 255, 0.78);
  --text-faded: rgba(255, 255, 255, 0.68);

  --accent-cyan: rgba(50, 210, 200, 0.9);
  --accent-cyan-soft: rgba(50, 210, 200, 0.18);

  --accent-orange: rgba(255, 145, 70, 0.95);
  --accent-orange-soft: rgba(255, 145, 70, 0.16);

  --border-soft: rgba(255, 255, 255, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 115%, rgba(35, 68, 52, 0.34), transparent 34%),
    radial-gradient(circle at 18% 22%, rgba(50, 210, 200, 0.06), transparent 26%),
    linear-gradient(180deg, #050505 0%, #000000 62%, #08110c 82%, #10241a 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
  opacity: 0.65;
  animation: floatGlow 14s ease-in-out infinite;
}

body::before {
  top: 12%;
  left: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(64, 140, 110, 0.08);
}

body::after {
  right: -90px;
  bottom: -10px;
  width: 340px;
  height: 220px;
  border-radius: 50%;
  background: rgba(28, 70, 50, 0.22);
  animation-delay: -7s;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.landing {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.landing::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: -80px;
  height: 220px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at center, rgba(36, 74, 55, 0.22) 0%, rgba(36, 74, 55, 0) 70%);
}


.card {
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 1rem;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 340px;
  height: 340px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.015) 38%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
  z-index: -1;
}

.logo {
  width: min(280px, 80vw);
  margin-bottom: 2rem;
  filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.08))
    drop-shadow(0 0 36px rgba(50, 210, 200, 0.05));
  animation: fadeUp 0.8s ease-out both, logoFloat 5s ease-in-out infinite;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.01em;
  animation: fadeUp 0.8s ease-out 0.08s both;
}

.lead {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
  animation: fadeUp 0.8s ease-out 0.16s both;
}

.lead span {
color: #8fbc9f;
text-shadow: 0 0 10px rgba(143, 188, 159, 0.18);
}

.lead {
  letter-spacing: 0.01em;
}

.intro {
  max-width: 560px;
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 1rem;
  animation: fadeUp 0.8s ease-out 0.24s both;
}

.coming-soon {
  margin: 0.5rem 0 1.5rem;
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 700;
  animation: fadeUp 0.8s ease-out 0.32s both;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease-out 0.4s both;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.socials a:hover,
.socials a:focus-visible {
  opacity: 1;
  outline: none;
}

.socials a:first-child:hover,
.socials a:first-child:focus-visible {
  transform: translateY(-4px) rotate(-4deg) scale(1.05);
  background: rgba(50, 210, 200, 0.1);
  border-color: rgba(50, 210, 200, 0.35);
  box-shadow: 0 0 0 6px rgba(50, 210, 200, 0.07);
}

.socials a:last-child:hover,
.socials a:last-child:focus-visible {
  background: rgba(76, 122, 92, 0.14);
  border-color: rgba(126, 199, 162, 0.28);
  box-shadow: 0 0 0 6px rgba(76, 122, 92, 0.10);
}

.social-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.socials a:hover .social-icon,
.socials a:focus-visible .social-icon {
  transform: scale(1.06);
}

.email {
  color: var(--text-faded);
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: color 0.2s ease, opacity 0.2s ease, text-decoration-color 0.2s ease;
  animation: fadeUp 0.8s ease-out 0.48s both;
}

.email:hover,
.email:focus-visible {
  color: #7ec7a2;
  text-decoration-color: rgba(126, 199, 162, 0.65);
  opacity: 1;
  outline: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.04);
  }
}

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

@keyframes twinkleOne {
  0%,
  100% {
    opacity: 0.16;
    transform: translateY(0);
  }
  50% {
    opacity: 0.24;
    transform: translateY(-2px);
  }
}

@keyframes twinkleTwo {
  0%,
  100% {
    opacity: 0.1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.18;
    transform: translateY(1px);
  }
}

@media (max-width: 480px) {
  .landing {
    padding: 1.75rem 1.2rem;
  }

  .logo {
    width: min(240px, 78vw);
    margin-bottom: 1.5rem;
  }

  h1 {
    font-size: 1.45rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .intro,
  .coming-soon,
  .email {
    font-size: 0.96rem;
  }

  .socials a {
    width: 50px;
    height: 50px;
  }

  .social-icon {
    width: 20px;
    height: 20px;
  }

  .card::before {
    width: 260px;
    height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

body::before,
body::after {
  pointer-events: none;
}

.landing::before,
.landing::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.landing::before {
  z-index: 0;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.95) 0 1px, transparent 1.6px),
    radial-gradient(circle at 28% 72%, rgba(255,255,255,0.75) 0 1px, transparent 1.6px),
    radial-gradient(circle at 44% 32%, rgba(255,255,255,0.7) 0 1px, transparent 1.6px),
    radial-gradient(circle at 62% 82%, rgba(255,255,255,0.85) 0 1px, transparent 1.6px),
    radial-gradient(circle at 78% 26%, rgba(255,255,255,0.7) 0 1px, transparent 1.6px),
    radial-gradient(circle at 88% 64%, rgba(255,255,255,0.9) 0 1px, transparent 1.6px);
  animation: twinkleOne 8s ease-in-out infinite;
}

.landing::after {
  z-index: 0;
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 18% 54%, rgba(143,188,159,0.9) 0 1px, transparent 1.8px),
    radial-gradient(circle at 36% 14%, rgba(255,255,255,0.7) 0 1px, transparent 1.8px),
    radial-gradient(circle at 54% 66%, rgba(255,255,255,0.8) 0 1px, transparent 1.8px),
    radial-gradient(circle at 70% 38%, rgba(143,188,159,0.75) 0 1px, transparent 1.8px),
    radial-gradient(circle at 84% 18%, rgba(255,255,255,0.75) 0 1px, transparent 1.8px),
    radial-gradient(circle at 92% 78%, rgba(255,255,255,0.85) 0 1px, transparent 1.8px);
  animation: twinkleTwo 11s ease-in-out infinite;
}

.card {
  position: relative;
  z-index: 1;
}