:root {
  --color-primary: #260058;
  --color-primary-light: #6222be;
  --color-primary-dark: #260058;
  --color-secondary: #56525d;
  --color-secondary-light: #cac4d1;
  --color-secondary-dark: #1d1a23;
  --color-tertiary: #45a8c6;
  --color-tertiary-light: #75d3f2;
  --color-tertiary-dark: #001f28;
  --color-neutral: #cbc4d0;
  --color-neutral-dark: #1e1a23;
  --color-neutral-light: #f7edff;
  --color-bg: linear-gradient(120deg, #f7edff 0%, #2ea5f9 100%);
  --color-glass: rgba(255,255,255,0.72);
  --color-glass-border: rgba(98,34,190,0.10);
  --color-text: #1e1a23;
  --color-gradient: linear-gradient(90deg, #6222be 0%, #45a8c6 100%);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
}

.hero-glass {
  z-index: 1;
  max-width: 680px;
  width: 92vw;
  margin: 4vh auto 0 auto;
  padding: 3rem 2.2rem 2.5rem 2.2rem;
  background: var(--color-glass);
  border-radius: 2.2rem;
  box-shadow: 0 8px 48px 0 rgba(98,34,190,0.10), 0 1.5px 8px 0 rgba(69,168,198,0.08);
  border: 1.5px solid var(--color-glass-border);
  backdrop-filter: blur(18px) saturate(1.2);
  text-align: center;
  position: relative;
}

.brand-gradient {
  position: relative;
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 1.2rem;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-move 5s linear infinite alternate;
  cursor: pointer;
}

.brand-gradient .layer {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  color: var(--color-primary-light);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(.4,2,.3,1), opacity 0.4s;
}
.brand-gradient .layer.layer2 { color: var(--color-tertiary-light); }
.brand-gradient .layer.layer3 { color: var(--color-secondary-light); }
.brand-gradient .layer.layer4 { color: var(--color-primary-dark); }

.brand-gradient:hover .layer1 {
  opacity: 0.7;
  transform: translate(8px, 8px);
}
.brand-gradient:hover .layer2 {
  opacity: 0.5;
  transform: translate(16px, 16px);
}
.brand-gradient:hover .layer3 {
  opacity: 0.3;
  transform: translate(24px, 24px);
}
.brand-gradient:hover .layer4 {
  opacity: 0.2;
  transform: translate(32px, 32px);
}

/* Sleekstack pop-layers effect */
.brand-gradient.pop-layers {
  position: relative;
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 1.2rem;
  cursor: pointer;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  animation: none;
}
.brand-gradient.pop-layers span {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  color: var(--color-primary-light);
  transition: transform 0.5s cubic-bezier(.4,2,.3,1), opacity 0.5s cubic-bezier(.4,2,.3,1);
  opacity: 0.18;
  filter: blur(0.5px);
  pointer-events: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-align: center;
  transform: none;
}
.brand-gradient.pop-layers span:nth-child(1) { color: var(--color-primary-light); z-index: 1; opacity: 1; position: relative; pointer-events: auto; filter: none; transition: transform 0.5s cubic-bezier(.4,2,.3,1), opacity 0.5s cubic-bezier(.4,2,.3,1); }
.brand-gradient.pop-layers span:nth-child(2) { color: var(--color-tertiary-light); z-index: 0; }
.brand-gradient.pop-layers span:nth-child(3) { color: var(--color-secondary-light); z-index: 0; }
.brand-gradient.pop-layers span:nth-child(4) { color: var(--color-primary-dark); z-index: 0; }
.brand-gradient.pop-layers span:nth-child(5) { color: var(--color-tertiary-dark); z-index: 0; }

.brand-gradient.pop-layers:hover span:nth-child(1),
.brand-gradient.pop-layers:focus span:nth-child(1) {
  transform: translate(0, -48px) scale(1.12);
  opacity: 1;
  z-index: 2;
}
.brand-gradient.pop-layers:hover span:nth-child(2),
.brand-gradient.pop-layers:focus span:nth-child(2) {
  transform: translate(0, -24px) scale(1.06);
  opacity: 0.7;
}
.brand-gradient.pop-layers:hover span:nth-child(3),
.brand-gradient.pop-layers:focus span:nth-child(3) {
  transform: translate(0, 0) scale(1);
  opacity: 0.5;
}
.brand-gradient.pop-layers:hover span:nth-child(4),
.brand-gradient.pop-layers:focus span:nth-child(4) {
  transform: translate(0, 34px) scale(0.96);
  opacity: 0.30;
}
.brand-gradient.pop-layers:hover span:nth-child(5),
.brand-gradient.pop-layers:focus span:nth-child(5) {
  transform: translate(0, 58px) scale(0.92);
  opacity: 0.22;
}
.brand-gradient.pop-layers:hover span:nth-child(1),
.brand-gradient.pop-layers:focus span:nth-child(1) {
  transform: translate(0, -48px) scale(1.12);
  opacity: 1;
  z-index: 2;
}

@keyframes gradient-move {
  0% { background-position: 0% 50%;}
  100% { background-position: 100% 50%;}
}

.mission {
  color: var(--color-secondary);
  font-size: 1.22rem;
  margin-bottom: 2.4rem;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  background: var(--color-gradient);
  color: #fff;
  border: none;
  border-radius: 2.5rem;
  padding: 1.1rem 2.6rem;
  font-size: 1.18rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 24px 0 rgba(98,34,190,0.13);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  text-decoration: none;
  outline: none;
  position: relative;
  overflow: hidden;
}
.cta-btn svg {
  display: inline-block;
  vertical-align: middle;
  stroke: #fff;
  transition: transform 0.18s;
}
.cta-btn:hover {
  background: linear-gradient(90deg, var(--color-tertiary), var(--color-primary));
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 32px 0 rgba(98,34,190,0.18);
}
.cta-btn:hover svg {
  transform: translateX(4px) scale(1.1);
}

footer {
  z-index: 2;
  margin: 4vh auto 2vh auto;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-secondary-dark);
  font-size: 1.04rem;
  opacity: 0.82;
  font-weight: 500;
}

.footer-content {
  display: flex;
  gap: 1.5em;
  align-items: center;
  flex-wrap: wrap;
}

.footer-socials a {
  color: var(--color-primary);
  margin-left: 0.7em;
  transition: color 0.18s;
  display: inline-flex;
  align-items: center;
}
.footer-socials a:hover {
  color: var(--color-secondary-dark);
}

@media (max-width: 600px) {
  .hero-glass {
    padding: 1.5rem 0.7rem 1.5rem 0.7rem;
    border-radius: 1.1rem;
  }
  .brand-gradient {
    font-size: 2.1rem;
  }
  .mission {
    font-size: 1.01rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
  .footer-content {
    flex-direction: column;
    gap: 0.5em;
  }
  .brand-gradient.pop-layers { font-size: 2.1rem; }
}