/*==================== VARIABLES ====================*/
:root {
  --header-height: 4rem;

  --first-color: #6C4FD8;
  --first-color-alt: #8B6FF0;
  --first-color-soft: #EFEAFD;
  --accent-color: #F0A08C;

  --title-color: #16121F;
  --text-color: #5B5766;
  --text-color-light: #8F8A9B;
  --body-color: #FDFBFF;
  --container-color: #FFFFFF;
  --border-color: #ECE8F5;
  --shadow: 0 12px 30px rgba(38, 25, 80, .08);
  --shadow-hover: 0 22px 50px rgba(38, 25, 80, .16);

  --body-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.75rem;
  --h2-font-size: 1.35rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  --mb-1: .5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;

  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 768px) {
  :root {
    --biggest-font-size: 3.75rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*==================== DARK THEME ====================*/
body.dark-theme {
  --title-color: #F5F2FF;
  --text-color: #B6B0C6;
  --text-color-light: #8B84A0;
  --body-color: #14111C;
  --container-color: #1D1929;
  --border-color: #2C2740;
  --first-color-soft: #262038;
  --shadow: 0 12px 30px rgba(0, 0, 0, .35);
  --shadow-hover: 0 22px 50px rgba(0, 0, 0, .5);
}

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

html { scroll-behavior: smooth; }

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.7;
  transition: background-color .35s, color .35s;
}

h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/*==================== LAYOUT ====================*/
.bd-container {
  max-width: 1120px;
  width: calc(100% - 2.5rem);
  margin-left: auto;
  margin-right: auto;
}

.bd-grid { display: grid; gap: 1.5rem; }

.section { padding: 4.5rem 0 2.5rem; }

.section-title, .section-subtitle { text-align: center; }

.section-title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  font-weight: var(--font-bold);
  line-height: 1.25;
  margin-bottom: var(--mb-2);
  letter-spacing: -.02em;
}

.section-subtitle {
  display: block;
  color: var(--text-color-light);
  margin-bottom: var(--mb-5);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-center { text-align: center; }

/*==================== BUTTONS ====================*/
.button {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  color: #fff;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-weight: var(--font-semi-bold);
  font-size: var(--small-font-size);
  box-shadow: 0 10px 24px rgba(108, 79, 216, .28);
  transition: transform .3s, box-shadow .3s, opacity .3s;
}

.button:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(108, 79, 216, .38); }
.button i { font-size: .85em; }

.button--ghost {
  background: transparent;
  color: var(--title-color);
  border: 2px solid var(--border-color);
  box-shadow: none;
}
.button--ghost:hover { border-color: var(--first-color); color: var(--first-color); box-shadow: none; }

.button-link {
  background: none;
  color: var(--first-color);
  padding: 0;
  box-shadow: none;
  font-size: var(--small-font-size);
}
.button-link:hover { transform: none; box-shadow: none; opacity: .75; }

/*==================== HEADER & NAV ====================*/
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: color-mix(in srgb, var(--body-color) 85%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .3s, background-color .35s;
}

.l-header.scroll-header { box-shadow: 0 2px 20px rgba(38, 25, 80, .08); }

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--title-color);
  font-weight: var(--font-bold);
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  letter-spacing: -.01em;
}
.nav__logo i { color: var(--first-color); }
.nav__logo span { color: var(--first-color); }

.nav__list { display: flex; column-gap: 2rem; }

.nav__link {
  color: var(--text-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  position: relative;
  transition: color .3s;
}
.nav__link:hover { color: var(--first-color); }

.nav__link.active-link { color: var(--title-color); font-weight: var(--font-semi-bold); }
.nav__link.active-link::after {
  content: '';
  position: absolute;
  bottom: -.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--first-color);
}

.nav__btns { display: flex; align-items: center; gap: 1rem; }

.change-theme, .nav__toggle {
  font-size: 1.1rem;
  color: var(--title-color);
  cursor: pointer;
}

.nav__toggle { display: none; }
.nav__close { display: none; }

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    padding: 4rem 1.75rem;
    background-color: var(--container-color);
    box-shadow: -8px 0 40px rgba(38, 25, 80, .18);
    transition: right .4s cubic-bezier(.4, 0, .2, 1);
    z-index: var(--z-fixed);
  }
  .nav__menu.show-menu { right: 0; }
  .nav__list { flex-direction: column; row-gap: 1.75rem; }
  .nav__link { font-size: 1rem; }
  .nav__link.active-link::after { left: -.75rem; transform: none; bottom: 45%; }
  .nav__toggle { display: block; }
  .nav__close {
    display: block;
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 1.35rem;
    color: var(--title-color);
    cursor: pointer;
  }
}

/*==================== HOME ====================*/
.home { padding: 3.5rem 0 2rem; overflow: hidden; }

.home__container {
  align-items: center;
  row-gap: 3rem;
}

.home__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background-color: var(--first-color-soft);
  color: var(--first-color);
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
  padding: .4rem .9rem;
  border-radius: 999px;
  margin-bottom: var(--mb-3);
}

.home__title {
  font-size: var(--biggest-font-size);
  color: var(--title-color);
  font-weight: var(--font-bold);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: var(--mb-3);
}
.home__title span {
  background: linear-gradient(120deg, var(--first-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home__description { margin-bottom: var(--mb-4); max-width: 460px; }

.home__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: var(--mb-4); }

.home__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}
.home__trust i { color: var(--first-color); margin-right: .35rem; }

.home__img { position: relative; }
.home__img img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-hover);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.home__badge {
  position: absolute;
  left: -.5rem;
  bottom: -1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: .85rem 1.1rem;
  box-shadow: var(--shadow);
}
.home__badge i {
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: .75rem;
}
.home__badge strong { display: block; color: var(--title-color); font-size: var(--small-font-size); line-height: 1.3; }
.home__badge span { font-size: var(--smaller-font-size); color: var(--text-color-light); }

/*==================== SHARE / ABOUT ====================*/
.share__container { align-items: center; row-gap: 2.5rem; }

.share__img img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.share__data .section-title { text-align: left; }
.share__description { margin-bottom: var(--mb-3); }

.share__list { margin-bottom: var(--mb-4); display: grid; gap: .65rem; }
.share__list li { display: flex; align-items: flex-start; gap: .65rem; font-size: var(--small-font-size); }
.share__list i {
  color: var(--first-color);
  background-color: var(--first-color-soft);
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: .65rem;
  flex-shrink: 0;
  margin-top: .28rem;
}

/*==================== DECORATION / WHY CHOOSE ====================*/
.decoration__container { grid-template-columns: 1fr; }

.decoration__data {
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.decoration__data:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.decoration__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto var(--mb-3);
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  color: #fff;
  font-size: 1.35rem;
}

.decoration__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-1);
}

.decoration__text { font-size: var(--small-font-size); margin-bottom: var(--mb-2); }

/*==================== ACCESSORY / OFFERS ====================*/
.accessory__container { grid-template-columns: 1fr; }

.accessory__content {
  position: relative;
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  padding: 1rem 1rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.accessory__content:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

.accessory__content--featured { border-color: var(--first-color); }

.accessory__tag {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  z-index: 2;
  background-color: var(--title-color);
  color: var(--body-color);
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
  padding: .3rem .75rem;
  border-radius: 999px;
}

.accessory__imgbox {
  width: 100%;
  border-radius: .9rem;
  overflow: hidden;
  margin-bottom: var(--mb-3);
}

.accessory__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .5s;
}
.accessory__content:hover .accessory__img { transform: scale(1.06); }

.accessory__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-1);
}

.accessory__category {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-bottom: var(--mb-2);
  padding: 0 .5rem;
  min-height: 3rem;
}

.accessory__preci {
  display: block;
  font-size: 1.85rem;
  color: var(--title-color);
  font-weight: var(--font-bold);
  letter-spacing: -.02em;
  margin-bottom: var(--mb-3);
}

.accessory__button { margin-top: auto; }

/*==================== SEND / FULLY DIGITAL ====================*/
.send { padding-bottom: 4.5rem; }

.send__container {
  background: linear-gradient(135deg, var(--first-color), #4B34A8);
  border-radius: 1.75rem;
  padding: 3rem 2rem;
  align-items: center;
  row-gap: 2.5rem;
  overflow: hidden;
}

.send__title { color: #fff; text-align: left; }
.send__description { color: rgba(255, 255, 255, .82); margin-bottom: var(--mb-4); }

.send__direction {
  display: flex;
  align-items: center;
  background-color: var(--container-color);
  border-radius: 999px;
  padding: .35rem .35rem .35rem 1.25rem;
  gap: .5rem;
  max-width: 440px;
}

.send__input {
  width: 100%;
  border: none;
  outline: none;
  background: none;
  font-family: var(--body-font);
  font-size: var(--small-font-size);
  color: var(--title-color);
}
.send__input::placeholder { color: var(--text-color-light); }

.send__direction .button { flex-shrink: 0; background: var(--title-color); box-shadow: none; }
.send__direction .button:hover { transform: none; opacity: .88; }

.send__img img {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

/*==================== FOOTER ====================*/
.footer {
  background-color: var(--container-color);
  border-top: 1px solid var(--border-color);
  padding-bottom: 2rem;
}

.footer__container { grid-template-columns: 1fr; row-gap: 2.25rem; }

.footer__logo { margin-bottom: var(--mb-2); }
.footer__text { font-size: var(--small-font-size); max-width: 300px; }

.footer__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-2);
}

.footer__links { display: grid; gap: .6rem; font-size: var(--small-font-size); }
.footer__links a { transition: color .3s; }
.footer__links a:hover { color: var(--first-color); }
.footer__links--contact i { color: var(--first-color); margin-right: .4rem; }

.footer__social { display: flex; gap: .75rem; margin-top: var(--mb-3); }
.footer__social a {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: .75rem;
  background-color: var(--first-color-soft);
  color: var(--first-color);
  transition: background-color .3s, color .3s, transform .3s;
}
.footer__social a:hover { background-color: var(--first-color); color: #fff; transform: translateY(-3px); }

.footer__copy {
  text-align: center;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 2.5rem);
}

/*==================== SCROLL TOP ====================*/
.scrolltop {
  position: fixed;
  right: 1.25rem;
  bottom: -25%;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  color: #fff;
  border-radius: .9rem;
  box-shadow: 0 10px 24px rgba(108, 79, 216, .35);
  opacity: .9;
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .3s, opacity .3s;
}
.scrolltop:hover { opacity: 1; transform: translateY(-3px); }
.show-scroll { bottom: 1.5rem; }

/*==================== REVEAL ANIMATION ====================*/
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal--right { transform: translateY(28px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/*==================== MEDIA QUERIES ====================*/
@media screen and (min-width: 576px) {
  .decoration__container,
  .accessory__container { grid-template-columns: repeat(2, 1fr); }
  .footer__container { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (min-width: 768px) {
  body { margin: 0; }
  .section { padding: 6rem 0 3rem; }

  .home { padding: 8rem 0 4rem; }
  .home__container { grid-template-columns: 1.05fr 1fr; column-gap: 3.5rem; }

  .share__container { grid-template-columns: 1fr 1fr; column-gap: 3.5rem; }

  .decoration__container,
  .accessory__container { grid-template-columns: repeat(3, 1fr); column-gap: 1.75rem; }

  .send__container { grid-template-columns: 1fr 1fr; column-gap: 3.5rem; padding: 4rem 3.5rem; }

  .footer__container { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; column-gap: 2rem; }

  .reveal--right { transform: translateX(34px); }
  .reveal:not(.reveal--right) { transform: translateX(-34px); }
  .reveal.is-visible { transform: translateX(0); }
  .decoration__data.reveal,
  .accessory__content.reveal { transform: translateY(30px); }
  .decoration__data.reveal.is-visible,
  .accessory__content.reveal.is-visible { transform: translateY(0); }
}

@media screen and (min-width: 1024px) {
  .bd-container { margin-left: auto; margin-right: auto; }
  .home__badge { left: -2rem; }
}

/*==================== SHOP LINK ====================*/
.nav__link--shop{
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
}
.nav__link--shop::after{ display: none !important; }

/*==================== WORDMARK ====================*/
.nav__logo .logo-word{ color: var(--title-color); }
.nav__logo .logo-word em{ font-style: normal; color: var(--first-color); }
