:root {
  --bg-deep: #070a14;
  --bg-panel: #10152a;
  --blue-electric: #1B4166;
  --blue-bright: #2A608F;
  --purple-accent: #6246A8;
  --purple-deep: #49327F;
  --text-main: #eef1fb;
  --text-muted: #8891ab;
  --border-soft: rgba(255, 255, 255, 0.08);
  --brand-gradient: linear-gradient(115deg, var(--blue-bright) 0%, var(--blue-electric) 45%, var(--purple-accent) 100%);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at 18% 12%, #ffffff 0%, #FAF8F2 55%);
  color: var(--text-main);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
}

/* Floating geometric blocks, echoing the fragmenting cubes in the logo */
.blocks {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.block {
  position: absolute;
  border-radius: 5px;
  background: var(--brand-gradient);
  opacity: 0.16;
  filter: blur(0.3px);
  animation: drift 14s ease-in-out infinite;
}

.b1 {
  width: 46px;
  height: 46px;
  top: 12%;
  left: 8%;
  animation-delay: 0s;
}

.b2 {
  width: 28px;
  height: 28px;
  top: 68%;
  left: 12%;
  animation-delay: 2.5s;
}

.b3 {
  width: 34px;
  height: 34px;
  top: 20%;
  right: 10%;
  animation-delay: 1.2s;
}

.b4 {
  width: 22px;
  height: 22px;
  top: 78%;
  right: 16%;
  animation-delay: 3.8s;
}

.b5 {
  width: 18px;
  height: 18px;
  top: 46%;
  right: 6%;
  animation-delay: 5.5s;
}

@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(10px, -16px) rotate(8deg);
  }
}

.stage {
  position: relative;
  z-index: 1;
  width: min(560px, 88vw);
  text-align: center;
  padding: 48px 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 480px;
  height: auto;
  margin-bottom: 28px;
  opacity: 0;
  animation: rise 0.7s ease-out 0.05s forwards;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  color: var(--blue-bright);
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: rise 0.7s ease-out 0.18s forwards;
}

h1 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(1.7rem, 4.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.22;
  margin: 0 0 16px;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: rise 0.7s ease-out 0.3s forwards;
}

.lead {
  margin: 0 0 34px;
  max-width: 40ch;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0;
  animation: rise 0.7s ease-out 0.42s forwards;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  opacity: 0;
  animation: rise 0.7s ease-out 0.54s forwards;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

.btn .icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin-right: 2px;
}

.btn-whatsapp {
  background: var(--brand-gradient);
  color: #ffffff;
  box-shadow: 0 8px 22px -8px rgba(59, 157, 255, 0.55);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -8px rgba(123, 47, 247, 0.6);
}

.btn-email {
  background: rgba(59, 157, 255, 0.3);
  color: var(--blue-bright);
  border-color: var(--border-soft);
}

.btn-email:hover {
  transform: translateY(-2px);
  border-color: var(--blue-bright);
  background: rgba(59, 157, 255, 0.08);
}

.btn:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
}

.foot {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  padding: 20px 0 28px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 430px) {
  .logo {
    width: 320px;
  }

  .actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {

  .logo,
  .eyebrow,
  h1,
  .lead,
  .actions {
    animation: none;
    opacity: 1;
  }

  .block {
    animation: none;
  }
}