:root {
  --text: #f4fbff;
  --mute: rgba(244, 251, 255, 0.72);
  --glass: rgba(255, 255, 255, 0.12);
  --stroke: rgba(255, 255, 255, 0.28);
}

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

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  min-height: 100vh;
  background: #062a36;
  overflow-x: hidden;
}

.scene {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(145deg, #043447 0%, #0a5c55 40%, #1a3a6e 75%, #062033 100%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: float 14s ease-in-out infinite alternate;
}

.b1 {
  width: 55vmax;
  height: 55vmax;
  top: -15%;
  left: -10%;
  background: #2ec4b6;
  opacity: 0.55;
}

.b2 {
  width: 45vmax;
  height: 45vmax;
  bottom: -10%;
  right: -5%;
  background: #3d7cff;
  opacity: 0.5;
  animation-delay: -4s;
}

.b3 {
  width: 30vmax;
  height: 30vmax;
  top: 40%;
  left: 40%;
  background: #ff8a5b;
  opacity: 0.35;
  animation-delay: -8s;
  animation-duration: 18s;
}

.nav {
  display: flex;
  justify-content: space-between;
  margin: 1rem clamp(1rem, 4vw, 2.5rem);
  padding: 0.9rem 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: rise 0.8s ease both;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-family: "Sora", sans-serif;
}

.glass-bar,
.panel {
  background: var(--glass);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0, 20, 40, 0.25);
}

.wrap {
  padding: 1rem clamp(1rem, 4vw, 2.5rem) 3rem;
  max-width: 1000px;
}

.hero {
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 28px;
  margin-bottom: 1.25rem;
  animation: rise 0.9s 0.1s ease both;
}

.brand {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: clamp(3.5rem, 12vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
  text-shadow: 0 0 40px rgba(46, 196, 182, 0.35);
}

.hero h1 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.25;
  max-width: 16ch;
  margin-bottom: 0.9rem;
}

.sub {
  color: var(--mute);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 34ch;
  margin-bottom: 1.75rem;
}

.cta {
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: #043447;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.cta:hover {
  transform: translateY(-2px);
  background: #fff;
}

.features {
  display: grid;
  gap: 1rem;
}

.features .panel {
  padding: 1.5rem;
  border-radius: 22px;
  animation: rise 0.8s ease both;
}

.features .panel:nth-child(1) { animation-delay: 0.2s; }
.features .panel:nth-child(2) { animation-delay: 0.3s; }
.features .panel:nth-child(3) { animation-delay: 0.4s; }

.features h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.features p {
  color: var(--mute);
  line-height: 1.5;
  font-size: 0.95rem;
}

@keyframes float {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(4%, -5%) scale(1.08); }
}

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

@media (min-width: 780px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
