html {
  font-family: 'Nunito', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji',
  'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  /*overflow: hidden;*/
  /*-webkit-touch-callout: none;*/
  /*-webkit-user-select: none;*/
  /*-khtml-user-select: none;*/
  /*-moz-user-select: none;*/
  /*-ms-user-select: none;*/
  /*user-select: none;*/
}

body {
  color: #fff;
  margin: 0;
  padding: 0;
  /*height: 100vh;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at 50% 50%,
  rgba(238, 174, 202, 0.7),
  rgba(148, 187, 233, 0.7)),
  linear-gradient(-45deg,
    #ff9a9e,
    #fad0c4,
    #a1c4fd,
    #c2e9fb);
  background-size: 200% 200%, 400% 400%;
  animation: radialMove 15s ease-in-out infinite,
  gradient 20s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  /*overflow: hidden;*/
  position: relative;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%, 0% 50%;
  }
  25% {
    background-position: 100% 50%, 50% 100%;
  }
  50% {
    background-position: 50% 100%, 100% 50%;
  }
  75% {
    background-position: 0% 50%, 50% 0%;
  }
  100% {
    background-position: 0% 50%, 0% 50%;
  }
}

@keyframes radialMove {
  0%, 100% {
    background-size: 150% 150%, 400% 400%;
  }
  50% {
    background-size: 200% 200%, 400% 400%;
  }
}

.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
}

.polyline {
  fill: none;
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 0.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
}


.container {
  display: flex;
  align-items: center;
  text-align: center;
  /*padding: 2rem 4rem;*/
  height: 100vh;
  height: 100dvh;
  perspective: 1000px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.text-wrapper {
  transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  transform-style: preserve-3d;
}

h1 {
  font-size: clamp(3rem, 15vw, 10rem);
  cursor: default;
  margin: 0;
  animation: fadeText 20s ease infinite;
  will-change: transform;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  font-weight: 300;
}

p {
  font-size: clamp(0.875rem, 3vw, 1.2rem);
  margin-top: clamp(0.5rem, 2vw, 1rem);
  cursor: default;
  opacity: 0.9;
  will-change: transform;
  /*letter-spacing: 0.1em;*/
  /*text-transform: uppercase;*/
  font-weight: 400;
}

a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  transition: all 0.3s ease;
}

a:hover {
  color: #efefef;
  border-bottom: 1px solid #cccccc;
}

@keyframes fadeText {
  0%, 100% {
    opacity: 0.9;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

.hero-section {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 400;
  margin: 2rem 0 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  animation: fadeText 20s ease infinite;
}

.hero-description {
  font-size: clamp(1rem, 4vw, 1.4rem);
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  width: 100%;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.feature-card:hover {
  transform: translateY(-5px) rotateX(5deg);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  opacity: 1;
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.5;
  margin: 0;
  font-weight: 300;
  text-transform: none;
}

.cta-section {
  margin-top: 3rem;
  text-align: center;
}

.cta-text {
  font-size: clamp(1.2rem, 5vw, 1.6rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.coming-soon-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  cursor: default;
}

.coming-soon-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .hero-section {
    padding: 0 1rem;
    margin: 1rem auto;
  }
}
