*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
}

button {
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
  padding: 0;
}

[hidden] {
  display: none !important;
}

body {
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  background: #FBFAF5;
  color: #131426;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.section--error {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-block {
  max-width: 40rem;
  text-align: center;
  margin-inline: auto;
}
.error-block .heading {
  margin-top: 1rem;
}
.error-block .lead {
  margin-top: 1rem;
}
.error-block .btn {
  margin-top: 2rem;
}

::selection {
  background: #3AE7AF;
  color: #131426;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 40rem) {
  .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 64rem) {
  .container {
    padding-inline: 2rem;
  }
}

.section {
  padding-block: 3.5rem;
}
@media (min-width: 48rem) {
  .section {
    padding-block: 5rem;
  }
}

.lead {
  color: #4B4F6B;
  font-size: 1.125rem;
}
@media (min-width: 48rem) {
  .lead {
    font-size: 1.25rem;
  }
}

.heading {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #131426;
}
.heading--xl {
  font-size: clamp(2rem, 5vw, 3.75rem);
}
.heading--xxl {
  font-size: clamp(2.4rem, 7vw, 5.5rem);
}
.heading--light {
  color: #FBFAF5;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: #FFFFFF;
  border: 1px solid rgba(19, 20, 38, 0.05);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(19, 20, 38, 0.7);
  box-shadow: 0 12px 40px -20px rgba(57, 67, 224, 0.22);
}
.eyebrow--light {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  color: #C6F5DE;
  letter-spacing: 0.25em;
}
.eyebrow--royal {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  color: #3943E0;
  letter-spacing: 0.25em;
}

.dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #3AE7AF;
}
.dot--royal {
  background: #3943E0;
}
.dot--mint {
  background: #3AE7AF;
}
.dot--pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.text-brand {
  background: linear-gradient(135deg, #3943E0 0%, #3AE7AF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.1em;
  padding-top: 0.05em;
  padding-right: 0.1em;
}

.shadow-brand {
  box-shadow: 0 20px 50px -20px rgba(57, 67, 224, 0.45);
}

.shadow-soft {
  box-shadow: 0 12px 40px -20px rgba(57, 67, 224, 0.22);
}

[data-lucide] {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2;
}

.float--a {
  animation: float-a 9s ease-in-out infinite;
}

.float--b {
  animation: float-b 11s ease-in-out 1.5s infinite;
}

@keyframes float-a {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes float-b {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.spin-slow {
  animation: spin 32s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn--primary {
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  background: #131426;
  color: #FBFAF5;
}
.btn--primary:hover {
  background: #3943E0;
}
.btn--ghost {
  background: #FFFFFF;
  border: 1px solid rgba(19, 20, 38, 0.1);
  color: #131426;
  box-shadow: 0 12px 40px -20px rgba(57, 67, 224, 0.22);
}
.btn--ghost:hover {
  border-color: #3943E0;
  color: #3943E0;
}
.btn--block {
  width: 100%;
  justify-content: center;
}
.btn--between {
  justify-content: space-between;
}
.btn__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #3AE7AF;
  color: #131426;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease;
}
.btn__icon [data-lucide] {
  width: 1rem;
  height: 1rem;
}
.btn:hover .btn__icon {
  transform: rotate(-45deg);
}

.logo {
  display: inline-flex;
  align-items: center;
}
.logo img {
  width: auto;
}
.logo--sm img {
  height: 2rem;
}
.logo--md img {
  height: 3rem;
}
.logo--lg img {
  height: 3rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}
.navbar.is-scrolled {
  background: rgba(251, 250, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px -20px rgba(57, 67, 224, 0.22);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}
.navbar__brand {
  flex-shrink: 0;
}
.navbar__nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  border: 1px solid rgba(19, 20, 38, 0.05);
  box-shadow: 0 12px 40px -20px rgba(57, 67, 224, 0.22);
}
@media (min-width: 64rem) {
  .navbar__nav {
    display: inline-flex;
  }
}
.navbar__link {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(19, 20, 38, 0.75);
  transition: background-color 0.2s, color 0.2s;
}
.navbar__link:hover {
  background: #F3F0E7;
  color: #131426;
}
.navbar__cta {
  display: none;
}
@media (min-width: 64rem) {
  .navbar__cta {
    display: flex;
  }
}
.navbar__toggle {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(19, 20, 38, 0.1);
  box-shadow: 0 12px 40px -20px rgba(57, 67, 224, 0.22);
  display: grid;
  place-items: center;
}
.navbar__toggle .icon-close {
  display: none;
}
@media (min-width: 64rem) {
  .navbar__toggle {
    display: none;
  }
}
.navbar.is-open .navbar__toggle .icon-open {
  display: none;
}
.navbar.is-open .navbar__toggle .icon-close {
  display: block;
}
.navbar__mobile {
  display: none;
  margin: 0 1rem 0.75rem;
  padding: 0.75rem;
  background: #FFFFFF;
  border-radius: 2rem;
  border: 1px solid rgba(19, 20, 38, 0.05);
  box-shadow: 0 12px 40px -20px rgba(57, 67, 224, 0.22);
}
@media (min-width: 64rem) {
  .navbar__mobile {
    display: none !important;
  }
}
.navbar.is-open .navbar__mobile {
  display: block;
}
.navbar__mobile-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 1.5rem;
  font-weight: 600;
  color: #131426;
}
.navbar__mobile-link:hover {
  background: #F3F0E7;
}
.navbar__mobile .btn {
  margin-top: 0.5rem;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
}
.hero__orb--royal {
  top: -6rem;
  left: -6rem;
  width: 30rem;
  height: 30rem;
  background: rgba(57, 67, 224, 0.2);
}
.hero__orb--mint {
  top: 10rem;
  right: -8rem;
  width: 32.5rem;
  height: 32.5rem;
  background: rgba(58, 231, 175, 0.25);
}
.hero__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
  padding-block: 2rem 3rem;
}
@media (min-width: 48rem) {
  .hero__inner {
    padding-block: 3rem 4rem;
  }
}
@media (min-width: 64rem) {
  .hero__inner {
    grid-template-columns: 7fr 5fr;
    gap: 3rem;
  }
}
.hero__title {
  margin-top: 1.5rem;
  font-weight: 800;
  color: #131426;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
}
.hero__highlight {
  position: relative;
  display: inline-block;
}
.hero__underline {
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 0.75rem;
}
.hero__lead {
  margin-top: 1.75rem;
  font-size: 1.125rem;
  color: #4B4F6B;
  max-width: 36rem;
}
@media (min-width: 48rem) {
  .hero__lead {
    font-size: 1.25rem;
  }
}
.hero__lead strong {
  font-weight: 700;
  color: #131426;
}
.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero__visual {
  position: relative;
}

.hero-circle {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 35rem;
  margin-inline: auto;
}
.hero-circle__ring {
  position: absolute;
  border-radius: 50%;
}
.hero-circle__ring--outer {
  inset: 1.5rem;
  border: 1px solid rgba(19, 20, 38, 0.05);
}
.hero-circle__ring--dashed {
  inset: 3.5rem;
  border: 1px dashed rgba(19, 20, 38, 0.1);
}
.hero-circle__core {
  position: absolute;
  inset: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #3943E0 0%, #3AE7AF 100%);
  box-shadow: 0 20px 50px -20px rgba(57, 67, 224, 0.45);
  overflow: hidden;
}
.hero-circle__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
.hero-circle__bars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6%;
  padding: 0 14% 22%;
}
.hero-circle__bar {
  flex: 1;
  border-radius: 9999px 9999px 0 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.value-chip {
  position: absolute;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.375rem 1.25rem 0.375rem 0.375rem;
  background: #FFFFFF;
  border: 1px solid rgba(19, 20, 38, 0.05);
  border-radius: 9999px;
  box-shadow: 0 12px 40px -20px rgba(57, 67, 224, 0.22);
}
.value-chip__badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
@media (min-width: 48rem) {
  .value-chip__badge {
    width: 2.75rem;
    height: 2.75rem;
  }
}
.value-chip__badge--royal {
  background: #3943E0;
  color: #FBFAF5;
}
.value-chip__badge--mint {
  background: #3AE7AF;
  color: #131426;
}
.value-chip__label {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #131426;
  white-space: nowrap;
}
@media (min-width: 48rem) {
  .value-chip__label {
    font-size: 1rem;
  }
}
.value-chip--tl {
  left: 14%;
  top: 6%;
}
.value-chip--tr {
  right: -2%;
  top: 38%;
}
.value-chip--br {
  right: 16%;
  bottom: 2%;
}
.value-chip--bl {
  left: -2%;
  bottom: 24%;
}
@media (min-width: 48rem) {
  .value-chip--tl {
    left: 16%;
    top: 4%;
  }
  .value-chip--tr {
    right: -4%;
    top: 34%;
  }
  .value-chip--br {
    right: 20%;
    bottom: 3%;
  }
  .value-chip--bl {
    left: -4%;
    bottom: 22%;
  }
}

.about__card {
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #3943E0 0%, #3AE7AF 100%);
  box-shadow: 0 20px 50px -20px rgba(57, 67, 224, 0.45);
  padding: 2rem;
}
@media (min-width: 48rem) {
  .about__card {
    padding: 3.5rem;
  }
}
.about__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.about__circle {
  position: absolute;
  border-radius: 50%;
}
.about__circle--1 {
  right: -6rem;
  top: -6rem;
  width: 26rem;
  height: 26rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.about__circle--2 {
  right: -3rem;
  top: 5rem;
  width: 16rem;
  height: 16rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.about__circle--3 {
  left: -7rem;
  bottom: -7rem;
  width: 26rem;
  height: 26rem;
  background: rgba(255, 255, 255, 0.1);
}
.about__circle--4 {
  left: 33%;
  top: -4rem;
  width: 10rem;
  height: 10rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.about__head {
  position: relative;
  max-width: 48rem;
  color: #FBFAF5;
}
.about__head .heading {
  margin-top: 1rem;
}
.about__grid {
  position: relative;
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 48rem) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pillar {
  position: relative;
  padding: 1.75rem;
  background: #FFFFFF;
  border-radius: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.3s ease;
}
@media (min-width: 48rem) {
  .pillar {
    padding: 2.25rem;
  }
}
.pillar:hover {
  transform: translateY(-4px);
}
.pillar__head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.pillar__badge {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 40px -20px rgba(57, 67, 224, 0.22);
}
@media (min-width: 48rem) {
  .pillar__badge {
    width: 4rem;
    height: 4rem;
  }
}
.pillar__badge [data-lucide] {
  width: 1.5rem;
  height: 1.5rem;
}
.pillar__badge--royal {
  background: #3943E0;
  color: #FBFAF5;
}
.pillar__badge--mint {
  background: #3AE7AF;
  color: #131426;
}
.pillar__badge--ink {
  background: #131426;
  color: #3AE7AF;
}
.pillar__badge--brand {
  background: linear-gradient(135deg, #3943E0 0%, #3AE7AF 100%);
  color: #FBFAF5;
}
.pillar__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #131426;
}
@media (min-width: 48rem) {
  .pillar__title {
    font-size: 1.875rem;
  }
}
.pillar__text {
  margin-top: 1.25rem;
  color: rgba(19, 20, 38, 0.75);
  line-height: 1.6;
}

.services {
  position: relative;
  overflow: hidden;
}
.services__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(57, 67, 224, 0.1) 0%, rgba(58, 231, 175, 0.12) 100%);
}
.services__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
}
.services__orb--mint {
  top: 5rem;
  left: -5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(58, 231, 175, 0.2);
}
.services__orb--royal {
  bottom: 5rem;
  right: -5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(57, 67, 224, 0.15);
}
.services__head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 48rem) {
  .services__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.services__head-left {
  max-width: 40rem;
}
.services__head-left .heading {
  margin-top: 1rem;
}
.services__intro {
  color: #4B4F6B;
  max-width: 22rem;
}
.services__grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 64rem) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  padding: 2rem;
  background: #FFFFFF;
  border: 1px solid rgba(19, 20, 38, 0.05);
  border-radius: 2rem;
  box-shadow: 0 12px 40px -20px rgba(57, 67, 224, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 48rem) {
  .service-card {
    padding: 2.5rem;
  }
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(57, 67, 224, 0.45);
}
.service-card__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 40px -20px rgba(57, 67, 224, 0.22);
}
.service-card__icon [data-lucide] {
  width: 1.75rem;
  height: 1.75rem;
}
.service-card__icon--royal {
  background: #3943E0;
  color: #FBFAF5;
}
.service-card__icon--mint {
  background: #3AE7AF;
  color: #131426;
}
.service-card__index {
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #4B4F6B;
}
.service-card__title {
  margin-top: 0.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #131426;
}
.service-card__list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-card__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(19, 20, 38, 0.85);
  font-weight: 500;
}
.service-card__check {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #F3F0E7;
  display: grid;
  place-items: center;
  transition: background-color 0.2s;
}
.service-card__check [data-lucide] {
  width: 0.875rem;
  height: 0.875rem;
  color: #131426;
}
.service-card__item:hover .service-card__check {
  background: #3AE7AF;
}

.contact__head {
  max-width: 48rem;
}
.contact__head .heading {
  margin-top: 1rem;
}
.contact__head .lead {
  margin-top: 1.25rem;
}
.contact__grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 64rem) {
  .contact__grid {
    grid-template-columns: 5fr 7fr;
  }
}
.contact__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #FFFFFF;
  border: 1px solid rgba(19, 20, 38, 0.05);
  border-radius: 1.5rem;
  box-shadow: 0 12px 40px -20px rgba(57, 67, 224, 0.22);
  transition: transform 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
}
.contact-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.contact-card__icon--royal {
  background: #3943E0;
  color: #FBFAF5;
}
.contact-card__icon--mint {
  background: #3AE7AF;
  color: #131426;
}
.contact-card__body {
  flex: 1;
}
.contact-card__label {
  font-size: 0.65625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4B4F6B;
}
.contact-card__value {
  font-weight: 700;
  color: #131426;
}
.contact-card__arrow {
  color: rgba(19, 20, 38, 0.3);
  transition: color 0.2s;
}
.contact-card__arrow [data-lucide] {
  width: 1.25rem;
  height: 1.25rem;
}
.contact-card:hover .contact-card__arrow {
  color: #3943E0;
}

.form-card {
  background: #FFFFFF;
  border: 1px solid rgba(19, 20, 38, 0.05);
  border-radius: 2rem;
  box-shadow: 0 12px 40px -20px rgba(57, 67, 224, 0.22);
  padding: 2rem;
}
@media (min-width: 48rem) {
  .form-card {
    padding: 2.5rem;
  }
}
.form-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #131426;
}
.form-card__subtitle {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #4B4F6B;
}

.form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form__row {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 40rem) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}
.form__input, .form__textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: #F3F0E7;
  border: 1px solid transparent;
  border-radius: 9999px;
  outline: none;
  color: #131426;
  transition: background-color 0.2s, border-color 0.2s;
}
.form__input::placeholder, .form__textarea::placeholder {
  color: rgba(19, 20, 38, 0.5);
}
.form__input:focus, .form__textarea:focus {
  border-color: #3943E0;
  background: #FFFFFF;
}
.form__textarea {
  border-radius: 1.5rem;
  resize: none;
  font-family: inherit;
}
.form__success {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: #C6F5DE;
  color: #131426;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.form__success [data-lucide] {
  width: 1.25rem;
  height: 1.25rem;
  color: #3943E0;
}

.footer {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  background: #131426;
  color: #FBFAF5;
  overflow: hidden;
}
.footer__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.footer__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
}
.footer__orb--royal {
  top: -5rem;
  right: -5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(57, 67, 224, 0.4);
}
.footer__orb--mint {
  bottom: -6rem;
  left: -5rem;
  width: 26rem;
  height: 26rem;
  background: rgba(58, 231, 175, 0.2);
}
.footer__inner {
  position: relative;
}
.footer__grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 48rem) {
  .footer__grid {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (min-width: 48rem) {
  .footer__brand {
    grid-column: span 5;
  }
}
@media (min-width: 48rem) {
  .footer__col {
    grid-column: span 3;
  }
}
@media (min-width: 48rem) {
  .footer__col:last-child {
    grid-column: span 4;
  }
}
.footer__desc {
  margin-top: 1.25rem;
  max-width: 28rem;
  color: rgba(251, 250, 245, 0.7);
}
.footer__socials {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}
.footer__social {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FBFAF5;
  display: grid;
  place-items: center;
  transition: background-color 0.2s, color 0.2s;
}
.footer__social:hover {
  background: #3AE7AF;
  color: #131426;
}
.footer__title {
  margin-bottom: 1rem;
  color: #3AE7AF;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(251, 250, 245, 0.7);
}
.footer__list a:hover {
  color: #3AE7AF;
}
.footer__bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(251, 250, 245, 0.5);
}
@media (min-width: 48rem) {
  .footer__bottom {
    flex-direction: row;
  }
}
.footer__legal {
  display: flex;
  gap: 1.25rem;
}
.footer__legal a:hover {
  color: #3AE7AF;
}

footer .logo--md img {
    height: 4rem;
}