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

:root {
  color-scheme: dark;

  --bg: #090b11;

  --surface: rgba(18, 24, 38, 0.95);

  --surface-strong: #121827;

  --text: #f5f8ff;

  --muted: #9da4af;

  --accent: #00e5ff;

  --accent-soft: rgba(0, 229, 255, 0.18);

  --border: rgba(90, 113, 142, 0.24);
}

html,
body {
  min-height: 100%;
}

body {
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 229, 255, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(149, 235, 255, 0.12),
      transparent 24%
    ),
    var(--bg);

  color: var(--text);

  font-family: Inter, system-ui, sans-serif;

  display: flex;

  flex-direction: column;

  min-height: 100vh;
}

.page-bg {
  position: fixed;

  inset: 0;

  pointer-events: none;

  background: radial-gradient(
    circle at center,
    rgba(0, 229, 255, 0.08),
    transparent 40%
  );
}

body::before {
  content: "";

  position: fixed;

  inset: 0;

  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(5, 9, 19, 0.85) 30%,
    rgba(5, 9, 19, 0.95) 100%
  );
}

body > * {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1080px, calc(100% - 40px));

  margin: 0 auto;

  padding: 48px 0 32px;
}

/* HEADER */

.site-header {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 24px;

  padding: 28px 20px 0;
}

.nav-links {
  display: flex;

  gap: 22px;

  flex-wrap: wrap;

  align-items: center;
}

.nav-links a {
  color: var(--muted);

  text-decoration: none;

  transition: 0.2s;
}

.nav-links a:hover {
  color: white;
}

.logo {
  display: block;

  max-width: 190px;

  width: 100%;

  margin: 0 auto 24px;
}

.logo-wrapper {
  position: relative;

  display: flex;
  align-items: center;

  gap: 18px;
}


.jelly {
  width: 82px;

  transform-origin: center top;
}

.jelly:hover {
  animation-duration:
    2.5s,
    3.5s,
    2s;
}

.bubble {
  position: absolute;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background:
    rgba(0,229,255,.45);

  filter:
    blur(1px);

  box-shadow:
    0 0 12px rgba(0,229,255,.6);

  opacity: 0;
}

.b1 {
  left: 20px;
  bottom: 5px;

  animation:
    bubbleRise 3s infinite;
}

.b2 {
  left: 50px;
  bottom: 12px;

  animation:
    bubbleRise 3s infinite .8s;
}

.b3 {
  left: 35px;
  bottom: -2px;

  animation:
    bubbleRise 3s infinite 1.6s;
}

@keyframes bubbleRise {

  0% {
    opacity: 0;

    transform:
      translateY(0)
      scale(.5);
  }

  20% {
    opacity: 1;
  }

  100% {

    opacity: 0;

    transform:
      translateY(-90px)
      translateX(8px)
      scale(1.4);

  }

}

.speech-bubble {
  position: relative;

  max-width: 220px;

  padding: 12px 16px;

  background:
    rgba(14,22,39,.92);

  border:
    1px solid rgba(0,229,255,.20);

  border-radius: 18px;

  color: #dff9ff;

  font-size: .9rem;

  line-height: 1.5;

  backdrop-filter: blur(10px);

  animation:
    bubbleFloat 4s ease-in-out infinite;

  box-shadow:
    0 10px 35px rgba(0,0,0,.25);
}

.speech-bubble::after {
  content: "";

  position: absolute;

  left: -8px;
  top: 24px;

  width: 16px;
  height: 16px;

  background:
    rgba(14,22,39,.92);

  border-left:
    1px solid rgba(0,229,255,.20);

  border-bottom:
    1px solid rgba(0,229,255,.20);

  transform:
    rotate(45deg);
}

@keyframes bubbleFloat {

  0% {
    transform:
      translateY(0px);
  }

  50% {
    transform:
      translateY(-5px);
  }

  100% {
    transform:
      translateY(0px);
  }

}

/* HERO */

.hero {
  max-width: 920px;

  margin: 0 auto;

  padding: 54px 38px;

  text-align: center;

  border-radius: 32px;

  background: rgba(14, 22, 39, 0.58);

  border: 1px solid rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(16px);

  position: relative;

  overflow: hidden;

  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.35),
    0 0 90px rgba(0, 229, 255, 0.08);
}

.hero::before {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  top: -180px;

  left: 50%;

  transform: translateX(-50%);

  background: radial-gradient(circle, rgba(0, 229, 255, 0.18), transparent 70%);

  pointer-events: none;
}

.badge {
  display: inline-flex;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(14, 22, 39, 0.8);

  color: var(--accent);

  border: 1px solid rgba(0, 229, 255, 0.2);

  margin-bottom: 28px;
}

h1 {
  font-size: clamp(3rem, 5vw, 5.2rem);

  line-height: 0.95;

  letter-spacing: -0.08em;

  margin-bottom: 20px;
}

.slogan {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 0.55rem 1.1rem;

  border-radius: 999px;

  background: rgba(0, 229, 255, 0.08);

  border: 1px solid rgba(0, 229, 255, 0.18);

  color: #8feaff;

  font-weight: 700;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  margin-bottom: 24px;

  animation: fadeUp 0.7s ease;
}

.subtitle {
  font-size: clamp(1.4rem, 2.4vw, 2rem);

  color: #d8f9ff;

  font-weight: 600;

  margin-bottom: 22px;

  text-shadow: 0 4px 18px rgba(0, 229, 255, 0.18);
}

.description {
  max-width: 760px;

  margin: 0 auto 34px;

  color: var(--muted);

  line-height: 1.9;
}

/* BOTÕES */

.hero-actions {
  display: flex;

  justify-content: center;

  gap: 16px;

  flex-wrap: wrap;

  margin-bottom: 38px;
}

.button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 54px;

  padding: 0 30px;

  border-radius: 999px;

  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #75f0ff);

  color: #041019;

  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.25);
}

.button-primary:hover {
  box-shadow: 0 28px 80px rgba(0, 229, 255, 0.35);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.1);

  color: white;

  backdrop-filter: blur(10px);
}

/* TAGS */

.hero-tags {
  display: flex;

  justify-content: center;

  gap: 14px;

  flex-wrap: wrap;
}

.channel {
  padding: 12px 20px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.2s;
}

.channel:hover {
  transform: translateY(-2px);
}

/* FEATURES */

.features {
  margin-top: 64px;

  padding: 28px 20px;
}

.features h2 {
  text-align: center;

  margin-bottom: 30px;

  font-size: clamp(2rem, 2.4vw, 2.8rem);
}

.feature-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 24px;
}

.feature-card {
  background: linear-gradient(
    180deg,
    rgba(18, 25, 40, 0.95),
    rgba(12, 17, 30, 0.88)
  );

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 26px;

  padding: 30px;

  min-height: 210px;

  transition: 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);

  border-color: rgba(0, 229, 255, 0.22);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.feature-card strong {
  display: block;

  margin-bottom: 14px;

  font-size: 1.05rem;
}

.feature-card p {
  color: var(--muted);

  line-height: 1.9;
}

/* PILOT */

.pilot {
  margin: 64px 20px 0;

  padding: 44px;

  border-radius: 32px;

  background: rgba(12, 18, 31, 0.92);

  border: 1px solid rgba(0, 229, 255, 0.12);

  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.pilot h2 {
  margin-bottom: 18px;
}

.pilot p,
.pilot li {
  color: var(--muted);

  line-height: 1.9;

  margin-bottom: 16px;
}

.pilot ul {
  list-style: none;

  display: grid;

  gap: 12px;
}

.pilot li::before {
  content: "✓";

  color: var(--accent);

  margin-right: 10px;
}

.pilot-list {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 32px;
}

/* FOOTER */

footer {
  width: min(1080px, calc(100% - 40px));

  margin: 56px auto 24px;

  padding: 24px 20px;

  display: flex;

  justify-content: space-between;

  gap: 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  color: var(--muted);
}

footer strong {
  color: white;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVO */

@media (max-width: 860px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 28px 0;
  }

  .hero {
    padding: 34px 22px;

    border-radius: 24px;
  }

  .hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .pilot-content {
    display: grid;

    grid-template-columns:
      1.2fr
      1fr;

    gap: 48px;

    align-items: center;
  }

  @media (max-width: 860px) {
    .pilot-content {
      grid-template-columns: 1fr;
    }
  }

  footer {
    flex-direction: column;

    margin-top: 36px;

    gap: 12px;
  }
}
