:root {
  color-scheme: dark;
  --bg: #03030a;
  --panel: rgba(13, 10, 24, 0.85);
  --panel-strong: rgba(13, 10, 24, 0.95);
  --border: rgba(255, 255, 255, 0.12);
  --accent: #f97316;
  --accent-2: #22d3ee;
  --accent-3: #a855f7;
  --text: #f8f5ff;
  --muted: rgba(248, 245, 255, 0.78);
  --shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-md: 18px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 18% -8%, rgba(168, 85, 247, 0.28), transparent 60%),
    radial-gradient(circle at 82% 4%, rgba(34, 211, 238, 0.2), transparent 52%), var(--bg);
  color: var(--text);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0, transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.18;
  pointer-events: none;
}

.page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.aurora {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 1;
}

.aurora span {
  position: absolute;
  width: 64vw;
  max-width: 900px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: float 18s infinite ease-in-out;
}

.aurora span:nth-child(1) {
  background: rgba(249, 115, 22, 0.4);
  top: 12vh;
  left: 8vw;
}

.aurora span:nth-child(2) {
  background: rgba(168, 85, 247, 0.35);
  bottom: 10vh;
  right: 12vw;
  animation-delay: 4s;
}

.aurora span:nth-child(3) {
  background: rgba(34, 211, 238, 0.35);
  top: 36vh;
  right: 24vw;
  animation-delay: 8s;
}

.header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem clamp(1.25rem, 5vw, 3rem);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(7, 5, 13, 0.85);
  box-shadow: var(--shadow);
}

.brand img {
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.brand__name {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand__title {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: border 0.2s ease, background 0.2s ease;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.06);
}

.promo {
  position: relative;
  z-index: 2;
  padding: 0 0 clamp(1.5rem, 4vw, 2.5rem);
}

.promo__inner {
  margin: 0 clamp(1.25rem, 5vw, 3.5rem);
  padding: 1.25rem clamp(1.2rem, 2.2vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.28), rgba(34, 197, 94, 0.25)),
    radial-gradient(circle at 15% 25%, rgba(248, 250, 252, 0.06), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(34, 197, 94, 0.12), transparent 46%),
    rgba(7, 5, 13, 0.9);
  box-shadow: var(--shadow);
  display: flex;
  gap: clamp(1rem, 3vw, 1.8rem);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.promo__inner::before,
.promo__inner::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 55%);
  filter: blur(12px);
  opacity: 0.6;
  animation: drift 16s linear infinite;
  pointer-events: none;
}

.promo__inner::after {
  inset: -55%;
  opacity: 0.35;
  animation-duration: 22s;
  animation-direction: reverse;
}

.promo__copy {
  display: grid;
  gap: 0.35rem;
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.promo__eyebrow {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.promo__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
}

.promo__desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.promo__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.98), rgba(34, 197, 94, 0.92));
  color: #05060f;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 40px rgba(248, 113, 113, 0.28), 0 16px 38px rgba(34, 197, 94, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  z-index: 1;
}

.promo__button:hover,
.promo__button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 24px 55px rgba(248, 113, 113, 0.34), 0 20px 48px rgba(34, 197, 94, 0.28);
}

.promo__floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.promo__float {
  position: absolute;
  font-size: 1.35rem;
  filter: drop-shadow(0 8px 18px rgba(248, 113, 113, 0.25)) drop-shadow(0 6px 14px rgba(34, 197, 94, 0.22));
  opacity: 0.7;
  animation: floaty 16s linear infinite;
}

.promo__float:nth-child(1) {
  top: 8%;
  left: 4%;
  animation-duration: 18s;
}

.promo__float:nth-child(2) {
  top: 14%;
  right: 10%;
  animation-duration: 20s;
  animation-delay: 3s;
}

.promo__float:nth-child(3) {
  bottom: 14%;
  left: 16%;
  animation-duration: 15s;
  animation-delay: 6s;
}

.promo__float:nth-child(4) {
  bottom: 10%;
  right: 14%;
  animation-duration: 19s;
  animation-delay: 1s;
}

.promo__float:nth-child(5) {
  top: 30%;
  left: 48%;
  animation-duration: 17s;
  animation-delay: 9s;
}

.promo__float:nth-child(6) {
  bottom: 24%;
  right: 48%;
  animation-duration: 21s;
  animation-delay: 12s;
}

.hero {
  position: relative;
  z-index: 2;
  padding: 3rem clamp(1.25rem, 5vw, 3.5rem) 2.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.25rem;
  align-items: center;
}

.hero__copy {
  background: var(--panel-strong);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: clamp(1.75rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow);
}

.hero__eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin: 0 0 0.6rem;
}

.hero h1 {
  margin: 0 0 0.6rem;
  font-family: 'Pirata One', cursive;
  font-size: clamp(2.6rem, 7vw, 3.6rem);
  letter-spacing: 0.04em;
}

.hero p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button,
.button--ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.button {
  color: #03030a;
  background: linear-gradient(120deg, rgba(249, 115, 22, 0.9), rgba(168, 85, 247, 0.9));
  box-shadow: 0 14px 36px rgba(249, 115, 22, 0.32);
}

.button--ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.button:hover,
.button:focus-visible,
.button--ghost:hover,
.button--ghost:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(168, 85, 247, 0.24);
}

.hero__panel {
  background: rgba(7, 5, 13, 0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.1rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-weight: 600;
}

.grid {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.25rem, 5vw, 3.5rem) 3rem;
  display: grid;
  gap: 1.9rem;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2rem);
}

.section-title p {
  margin: 0;
  color: var(--muted);
  max-width: 560px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.4rem;
  display: grid;
  gap: 0.8rem;
  box-shadow: var(--shadow);
}

.card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0;
}

.card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stack {
  background: rgba(7, 5, 13, 0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: grid;
  gap: 1.15rem;
  box-shadow: var(--shadow);
}

.stack__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
}

.stack__item {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-weight: 600;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.socials a {
  text-decoration: none;
  color: var(--text);
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
}

.belt {
  position: relative;
  z-index: 2;
  margin: 0 clamp(1.25rem, 5vw, 3.5rem) 3rem;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.14), rgba(34, 211, 238, 0.12));
  box-shadow: var(--shadow);
}

.footer {
  position: relative;
  z-index: 2;
  padding: 2rem clamp(1.25rem, 5vw, 3rem) 2.5rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

@media (max-width: 720px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .nav a {
    flex: 1 1 auto;
    text-align: center;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.03);
  }
}

@keyframes drift {
  0% {
    transform: translate3d(-12px, -8px, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(8px, 6px, 0) rotate(180deg);
  }
  100% {
    transform: translate3d(16px, 12px, 0) rotate(360deg);
  }
}

@keyframes floaty {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    opacity: 0.15;
  }
  10% {
    opacity: 0.75;
  }
  50% {
    transform: translate3d(6px, -10px, 0) rotate(12deg) scale(1.08);
    opacity: 0.9;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translate3d(-10px, 14px, 0) rotate(-14deg) scale(1.02);
    opacity: 0.15;
  }
}
