@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Figtree:ital,wght@0,300..900;1,300..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Quicksand:wght@300..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Montserrat", "Open Sans", "DM Sans", "Quicksand", "Figtree", "Jost", sans-serif;
  outline: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.bottom-round-corner {
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
@media (max-width: 768px) {
  .bottom-round-corner {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}

@keyframes move {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}
@keyframes moveGlow {
  0% {
    background-position: 20% 20%, 80% 30%, 50% 80%;
  }
  50% {
    background-position: 40% 40%, 60% 50%, 70% 70%;
  }
  100% {
    background-position: 30% 60%, 50% 40%, 60% 90%;
  }
}
.background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #e8e0f0 0%, #a98dc4 100%);
  overflow: hidden;
  z-index: -1;
}
.background span {
  width: 50vmin;
  height: 50vmin;
  border-radius: 50vmin;
  backface-visibility: hidden;
  position: absolute;
  animation: move linear infinite;
  animation-duration: 45s;
}
@media (max-width: 768px) {
  .background span {
    width: 30vmin;
    height: 30vmin;
    border-radius: 30vmin;
  }
}
.background span:nth-child(0) {
  color: #8b6fa8;
  top: 87%;
  left: 64%;
  animation-duration: 40s;
  animation-delay: -43s;
  transform-origin: -11vw 8vh;
  box-shadow: 100vmin 0 12.8125489633vmin currentColor;
}
.background span:nth-child(1) {
  color: #6b5280;
  top: 25%;
  left: 51%;
  animation-duration: 22s;
  animation-delay: -50s;
  transform-origin: -22vw 2vh;
  box-shadow: 100vmin 0 13.0330541192vmin currentColor;
}
.background span:nth-child(2) {
  color: #9b7eb8;
  top: 48%;
  left: 48%;
  animation-duration: 31s;
  animation-delay: -43s;
  transform-origin: -1vw -11vh;
  box-shadow: -100vmin 0 13.1347052565vmin currentColor;
}
.background span:nth-child(3) {
  color: #a98dc4;
  top: 13%;
  left: 76%;
  animation-duration: 29s;
  animation-delay: -29s;
  transform-origin: -21vw 7vh;
  box-shadow: -100vmin 0 13.089721101vmin currentColor;
}
.background span:nth-child(4) {
  color: #6b5280;
  top: 6%;
  left: 50%;
  animation-duration: 12s;
  animation-delay: -5s;
  transform-origin: 24vw -5vh;
  box-shadow: -100vmin 0 13.4733157605vmin currentColor;
}
.background span:nth-child(5) {
  color: #8b6fa8;
  top: 93%;
  left: 45%;
  animation-duration: 40s;
  animation-delay: -44s;
  transform-origin: 1vw -18vh;
  box-shadow: 100vmin 0 13.1655382165vmin currentColor;
}
.background span:nth-child(6) {
  color: #9b7eb8;
  top: 74%;
  left: 10%;
  animation-duration: 33s;
  animation-delay: -23s;
  transform-origin: 1vw 3vh;
  box-shadow: 100vmin 0 12.7819891298vmin currentColor;
}
.background span:nth-child(7) {
  color: #a98dc4;
  top: 84%;
  left: 47%;
  animation-duration: 29s;
  animation-delay: -27s;
  transform-origin: 3vw 24vh;
  box-shadow: 100vmin 0 12.8613619959vmin currentColor;
}
.background span:nth-child(8) {
  color: #6b5280;
  top: 47%;
  left: 16%;
  animation-duration: 19s;
  animation-delay: -32s;
  transform-origin: 17vw 16vh;
  box-shadow: -100vmin 0 12.5406084953vmin currentColor;
}
.background span:nth-child(9) {
  color: #8b6fa8;
  top: 53%;
  left: 99%;
  animation-duration: 8s;
  animation-delay: -10s;
  transform-origin: 19vw -20vh;
  box-shadow: -100vmin 0 12.6943265155vmin currentColor;
}

.hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle at 20% 20%, rgba(155, 126, 184, 0.4), transparent 40%), radial-gradient(circle at 80% 30%, rgba(169, 141, 196, 0.3), transparent 50%), radial-gradient(circle at 50% 80%, rgba(139, 111, 168, 0.35), transparent 40%);
  background-blend-mode: screen;
  background-size: 200% 200%;
  background-color: rgba(232, 224, 240, 0.2);
  animation: moveGlow 5s infinite ease-in-out;
  filter: blur(20px);
  z-index: -1;
}

nav {
  padding: 20px;
  background-color: #2a2330;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100vw;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
    align-items: center;
  }
}
nav .brand {
  display: flex;
  align-items: center;
  gap: 15px;
}
nav .brand .menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  order: -1;
}
@media (max-width: 768px) {
  nav .brand .menu {
    display: block;
  }
  nav .brand .menu::before {
    content: "☰";
    color: #d4c9de;
    font-size: 1.5rem;
  }
}
nav .brand .logo {
  display: block;
  max-width: 100px;
  min-width: 100px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  nav .brand .logo {
    max-width: 80px;
    min-width: 80px;
  }
}
nav .brand .logo img {
  width: 100%;
  height: auto;
}
nav .options {
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  nav .options {
    display: none;
  }
}
nav .options a {
  padding: 10px;
  color: #d4c9de;
  white-space: nowrap;
}
@media (max-width: 992px) {
  nav .options a {
    padding: 8px;
    font-size: 0.9rem;
  }
}

a {
  color: inherit;
}
a:hover {
  text-decoration: underline;
}

.hero {
  font-family: "Product Sans";
  padding: 200px 20px;
  text-align: center;
  color: #f5f3f7;
}
@media (max-width: 768px) {
  .hero {
    padding: 120px 15px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 100px 15px;
  }
}
.hero h1 {
  font-size: 5rem;
  text-shadow: 2px 2px 8px rgba(107, 82, 128, 0.3);
}
@media (max-width: 992px) {
  .hero h1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}
.hero p {
  text-shadow: 1px 1px 4px rgba(107, 82, 128, 0.2);
}
@media (max-width: 768px) {
  .hero p {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .hero p {
    font-size: 0.9rem;
  }
}

section {
  max-width: 100vw;
}
section.dark {
  background-color: #1a1520;
  color: #d4c9de;
  text-align: center;
  margin: 15vh 5vw;
  border-radius: 40px;
}
@media (max-width: 768px) {
  section.dark {
    margin: 10vh 4vw;
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  section.dark {
    margin: 8vh 3vw;
    border-radius: 15px;
  }
}
section.dark p {
  padding: 20px 0;
}
@media (max-width: 768px) {
  section.dark p {
    padding: 15px 0;
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
@media (max-width: 480px) {
  section.dark p {
    padding: 12px 0;
    font-size: 0.9rem;
  }
}
section.dark h1,
section.dark h2,
section.dark h3 {
  text-transform: uppercase;
  color: #a98dc4;
}
@media (max-width: 768px) {
  section.dark h1,
  section.dark h2,
  section.dark h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  section.dark h1,
  section.dark h2,
  section.dark h3 {
    font-size: 1.3rem;
  }
}
section.dark .grid {
  grid-template-columns: repeat(2, 1fr);
  padding: 50px 5%;
  align-items: center;
  gap: 20px;
}
@media (max-width: 992px) {
  section.dark .grid {
    padding: 40px 5%;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  section.dark .grid {
    grid-template-columns: 1fr;
    padding: 30px 5%;
    gap: 30px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  section.dark .grid {
    padding: 25px 3%;
    gap: 25px;
  }
}
@media (max-width: 768px) {
  section.dark .grid .col:first-child {
    order: 2;
  }
  section.dark .grid .col:last-child {
    order: 1;
  }
}
section.dark .grid .col img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 3px solid #8b6fa8;
}
@media (max-width: 768px) {
  section.dark .grid .col img {
    border-radius: 15px;
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 480px) {
  section.dark .grid .col img {
    border-radius: 10px;
  }
}
section.dark.download {
  padding: 20px 20px 30px;
}
@media (max-width: 768px) {
  section.dark.download {
    padding: 20px 15px 25px;
  }
}
section.dark.download h2 {
  padding: 20px 0;
}
@media (max-width: 768px) {
  section.dark.download h2 {
    padding: 15px 0;
  }
}
section.dark.download .flex {
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 480px) {
  section.dark.download .flex {
    gap: 10px;
  }
}
section.dark.download .flex a {
  display: block;
  padding: 20px;
  transition: transform 0.2s ease;
}
section.dark.download .flex a:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  section.dark.download .flex a {
    padding: 15px;
  }
}
@media (max-width: 480px) {
  section.dark.download .flex a {
    padding: 12px;
  }
}
@media (max-width: 768px) {
  section.dark.download .flex a svg {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  section.dark.download .flex a svg {
    width: 35px;
    height: 35px;
  }
}
section.dark.download .flex a svg path {
  fill: #9b7eb8;
}
@media (max-width: 768px) {
  section.subscribe {
    padding: 40px 20px;
  }
}
@media (max-width: 480px) {
  section.subscribe {
    padding: 30px 15px;
  }
}
@media (max-width: 768px) {
  section.subscribe form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
  }
}
section.subscribe form input {
  margin: 0;
  width: 500px;
  min-width: 100px;
  padding: 20px 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  font-size: 16px;
  border: #8b6fa8 solid 2px;
  background-color: rgba(255, 255, 255, 0.95);
}
section.subscribe form input:focus {
  border-color: #9b7eb8;
  outline: none;
}
@media (max-width: 768px) {
  section.subscribe form input {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    padding: 15px 10px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  section.subscribe form input {
    padding: 12px 8px;
    font-size: 14px;
  }
}
section.subscribe form button {
  font-size: 16px;
  background-color: #8b6fa8;
  padding: 20px;
  margin: 0;
  color: #f5f3f7;
  border: #8b6fa8 2px solid;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
section.subscribe form button:hover {
  background-color: #9b7eb8;
  border-color: #9b7eb8;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  section.subscribe form button {
    border-radius: 10px;
    padding: 15px 25px;
    width: 100%;
    max-width: 150px;
  }
}
@media (max-width: 480px) {
  section.subscribe form button {
    padding: 12px 20px;
    font-size: 14px;
  }
}

footer {
  padding: 60px 40px;
  background-color: #1a1520;
  color: #d4c9de;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  display: flex;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    padding: 40px 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    text-align: center;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 30px 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    font-size: 0.9rem;
  }
}
footer div:nth-of-type(1) {
  flex: 1;
  padding-right: 20px;
}
@media (max-width: 768px) {
  footer div:nth-of-type(1) {
    padding-right: 0;
  }
}
footer div:nth-of-type(2) {
  flex-shrink: 0;
  margin-left: auto;
}
@media (max-width: 768px) {
  footer div:nth-of-type(2) {
    margin-left: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  footer div:nth-of-type(2) {
    gap: 15px;
  }
}
footer div:nth-of-type(2) a {
  color: #a98dc4;
  transition: color 0.2s ease;
}
footer div:nth-of-type(2) a:hover {
  color: #9b7eb8;
}
@media (max-width: 768px) {
  footer div:nth-of-type(2) a {
    display: inline-block;
  }
}

h2#sub {
  margin: 40px 0;
  font-size: 2.2rem;
}
@media (max-width: 768px) {
  h2#sub {
    margin: 30px 0;
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
@media (max-width: 480px) {
  h2#sub {
    margin: 25px 0;
    font-size: 1.5rem;
    line-height: 1.3;
  }
}

/*# sourceMappingURL=main.css.map */
