:root {
  --bg1: #061226;
  --bg2: #0d1b2a;
  --orange: #ff7a00;
  --blue: #2562eb;
  --text: #eaf2ff;
  --muted: #a8bbd8;
}

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

body {
  min-height: 100vh;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 15%, rgba(37, 98, 235, 0.25), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255, 122, 0, 0.2), transparent 40%),
    linear-gradient(130deg, var(--bg1), var(--bg2));
  display: grid;
  place-items: center;
  padding: 20px;
  overflow: hidden;
  background-size: 140% 140%;
  animation: bgFlow 18s ease-in-out infinite alternate;
}

@keyframes bgFlow {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 100% 100%;
  }
}

.orb {
  position: fixed;
  width: 34vmax;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.28;
  pointer-events: none;
  animation: drift 22s ease-in-out infinite alternate;
  transition: transform 450ms ease-out;
}

.orb.one {
  top: -12vmax;
  left: -10vmax;
  background: #2562eb;
}

.orb.two {
  right: -12vmax;
  bottom: -14vmax;
  background: #ff7a00;
  animation-duration: 18s;
}

@keyframes drift {
  from {
    transform: translate3d(-6px, 0, 0) scale(1);
  }
  to {
    transform: translate3d(8px, 10px, 0) scale(1.05);
  }
}

.card {
  width: min(860px, 92vw);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 40px);
  backdrop-filter: blur(11px);
  box-shadow: 0 30px 70px rgba(2, 8, 20, 0.5);
  position: relative;
  z-index: 1;
  animation: rise 700ms ease;
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 420ms ease;
  will-change: transform;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(255, 255, 255, 0.2),
    transparent 55%
  );
  opacity: 0.38;
  pointer-events: none;
}

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

.logo-wrap {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.logo-image {
  width: clamp(190px, 26vw, 280px);
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(4, 10, 20, 0.5);
}

.tag {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.18);
  border: 1px solid rgba(255, 122, 0, 0.45);
  color: #ffd9bc;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease, background 250ms ease;
}

.tag:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, 0.85);
  box-shadow: 0 8px 16px rgba(255, 122, 0, 0.2);
  background: rgba(255, 122, 0, 0.24);
}

.features {
  margin-top: 4px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  justify-items: center;
  perspective: 900px;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: revealUp 700ms ease forwards;
}

.reveal-delay-1 {
  animation-delay: 120ms;
}

.reveal-delay-2 {
  animation-delay: 220ms;
}

.reveal-delay-3 {
  animation-delay: 320ms;
}

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

h1 {
  margin-top: 14px;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.05;
}

h1 .accent {
  color: var(--orange);
}

p {
  margin-top: 18px;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.7;
  font-size: clamp(0.98rem, 2vw, 1.1rem);
}

.actions {
  margin-top: 72px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn.primary {
  color: #fff;
  background: linear-gradient(90deg, var(--orange), #ff9a46);
  box-shadow: 0 12px 25px rgba(255, 122, 0, 0.38);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 29px rgba(255, 122, 0, 0.5);
  filter: saturate(1.1);
}

.btn.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(37, 98, 235, 0.2);
}

.footer {
  margin-top: 34px;
  color: #c4d4ee;
  font-size: 0.93rem;
  letter-spacing: 0.03em;
  text-align: center;
}

@media (max-width: 720px) {
  .logo-wrap {
    flex-direction: column;
    align-items: center;
  }

  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .orb,
  .reveal,
  .card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
