@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@font-face {
  font-family: "Elicyon";
  src: url("../fonts/Elicyon-Regular.woff2") format("woff2"), url("../fonts/Elicyon-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --cream: #f5f2ee;
  --dark: #090402;
  --gold: #b9854c;
  --red: #090402;
  --gold-bg: #b9854c1a;
  --dark-75: #090402bf;
  --dark-15: #09040226;
  --dark-20: #09040233;
  --white-15: #ffffff26;
  --inter: "Inter", sans-serif;
  --elicyon: "Elicyon", serif;
  --fraunces: "Fraunces", serif;
}

.white {
  color: #F5F2EE !important;
}

.red {
  color: #F94A3D !important;
}

.gold {
  color: #b9854c !important;
}

.inter {
  font-family: var(--inter);
}

.elicyon {
  font-family: var(--elicyon);
}

.fraunces {
  font-family: var(--fraunces);
}

body {
  background-color: var(--cream);
  color: var(--dark);
  font-family: "Inter", Helvetica, sans-serif;
  overflow-x: hidden;
}

.fw-6 {
  font-weight: 600 !important;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(24px, 4.2vw, 80px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(245, 242, 238, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(9, 4, 2, 0.08);
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: clamp(48px, 3.6vw, 54px);
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 46px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.25;
  white-space: nowrap;
  position: relative;
  transition: color 0.28s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links a.active {
  font-weight: 600;
  color: var(--dark);
}

.nav__links a.active::after {
  background: var(--dark);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  border-radius: 50px;
  padding: 13px 26px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(9, 4, 2, 0.22);
}

.nav__cta span {
  font-size: clamp(12px, 0.82vw, 15px);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1;
}

.nav__cta img {
  width: 9px;
  height: 10px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0px;
  margin: 0px;
  z-index: 110;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 30px;
}

.nav__mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-menu a {
  font-size: clamp(22px, 5vw, 36px);
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.04em;
  transition: color 0.22s;
}

.nav__mobile-menu a:hover {
  color: var(--gold);
}

.mob-cta {
  font-size: clamp(13px, 1vw, 16px) !important;
}

@media (max-width: 860px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav-btn {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .nav__mobile-menu {
    display: flex;
  }
}
@media only screen and (max-width: 860px) {
  .nav-wrapper {
    justify-content: flex-end;
  }
}
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  background-color: var(--gold);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(185, 133, 76, 0.42);
}

.hero__right {
  position: absolute;
  right: 0;
  top: 0;
  width: clamp(300px, 50vw, 900px);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  overflow: visible;
}

.hero__mask {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  pointer-events: none;
}

.hero__price-badge {
  position: absolute;
  top: 45%;
  transform: translateY(-45%);
  inset-inline-end: 37%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  z-index: 4;
}

.hero__price-circle {
  width: 100px;
  height: 100px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulseBadge 3s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(9, 4, 2, 0.28);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(9, 4, 2, 0);
  }
}
.hero__price-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-top: 4px;
  position: relative;
  top: -90px;
}

.hero__price-info img {
  position: relative;
  right: -90px;
  animation: moveTopBottom_2 6s linear infinite;
}

.hero__price-value {
  font-size: clamp(28px, 2.1vw, 50px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(9, 4, 2, 0.3);
}

.hero__limited-text {
  font-size: 18px;
  font-weight: 500;
  color: #090402;
  opacity: 0.75;
  letter-spacing: -0.01em;
  line-height: 1.2 !important;
  padding: 5px 10px;
  white-space: nowrap;
}

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

.hero__diamond {
  position: absolute;
  width: clamp(130px, 17vw, 340px);
  height: clamp(130px, 17vw, 340px);
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: clamp(9px, 1.1vw, 22px);
  transform: rotate(-45deg);
  animation: diamondFloat 8s ease-in-out infinite;
  display: none;
}

.hero__diamond:nth-child(1) {
  top: 18%;
  right: 22%;
  animation-delay: 0s;
  animation-duration: 9s;
}

.hero__diamond:nth-child(2) {
  top: 56%;
  right: 10%;
  animation-delay: 1.2s;
  animation-duration: 7s;
}

.hero__diamond:nth-child(3) {
  top: -12%;
  right: 48%;
  animation-delay: 0.6s;
  animation-duration: 10s;
}

.hero__diamond:nth-child(4) {
  top: 2%;
  right: 34%;
  animation-delay: 1.8s;
  animation-duration: 8.5s;
}

.hero__diamond:nth-child(5) {
  top: 28%;
  right: 1%;
  animation-delay: 0.3s;
  animation-duration: 11s;
}

.hero__diamond:nth-child(6) {
  top: 54%;
  right: -9%;
  animation-delay: 2s;
  animation-duration: 9.5s;
}

@keyframes diamondFloat {
  0%, 100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(-16px);
  }
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 52%;
  min-width: 280px;
  padding: clamp(100px, 10vw, 160px) clamp(24px, 4.2vw, 80px) clamp(100px, 15vw, 140px);
  min-height: 100svh;
}

.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: clamp(12px, 1.4vw, 120px);
}

.hero__stat-label {
  font-family: "Elicyon-Regular", Helvetica;
  font-size: clamp(15px, 0.9vw, 17px);
  letter-spacing: -0.02em;
  line-height: 1.44;
  color: var(--dark);
  margin-block: 15px;
}

.hero__divider-short {
  width: clamp(100px, 12vw, 237px);
  height: 2px;
  margin: clamp(6px, 0.6vw, 12px) 0;
  margin-block: 15px;
  border: 1px dashed rgba(9, 4, 2, 0.74);
}

.hero__divider-long {
  width: clamp(180px, 40vw, 800px);
  height: 2px;
  background: url("../images/vector-93.svg") center/cover no-repeat;
  margin: clamp(6px, 0.6vw, 12px) 0;
}

.hero__big-number {
  font-size: clamp(30px, 2.4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.8;
  color: var(--dark);
}

.hero__headline,
.hero__headline-two {
  font-size: clamp(28px, 3.7vw, 76px);
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1.3 !important;
  max-width: clamp(260px, 42vw, 820px);
  margin-top: clamp(8px, 1.2vw, 18px);
  perspective: 800px;
  border-top: 1px dashed rgba(9, 4, 2, 0.74);
  padding-top: 13px;
}

.hero__headline-two {
  border: 0px;
}

.hero__headline em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hero__headline strong {
  font-weight: 500;
}

.hero__headline .char {
  display: inline-block;
  transform-origin: top center;
}

.hero__headline span {
  display: inline;
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.hero__headline .elicyon {
  border-bottom: 1.5px solid black !important;
}

.hero__cta {
  margin-top: clamp(40px, 8vw, 60px);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.hero__cta span {
  font-size: clamp(12px, 0.82vw, 15px);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1;
}

.hero__cta img {
  width: 9px;
  height: 10px;
}

@media (max-width: 960px) {
  .hero__right {
    width: clamp(220px, 44vw, 500px);
  }
  .hero__content {
    width: 58%;
  }
}
@media (max-width: 991px) {
  .hero__right {
    width: 100%;
    height: 100%;
    opacity: 0.1;
  }
  .hero__content {
    width: 100%;
    padding-top: 130px !important;
    padding-right: clamp(20px, 5vw, 40px);
  }
  .hero__diamonds {
    display: none;
  }
  .hero__price-badge {
    inset-inline-end: 6%;
    top: 55%;
  }
}
@media (max-width: 700px) {
  .hero__headline {
    max-width: 100%;
  }
  .hero__price-badge {
    display: none;
  }
}
.about {
  padding: clamp(60px, 8vw, 145px) clamp(24px, 4.2vw, 80px);
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(22px, 1.8vw, 44px);
}

.about__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--dark-15);
  transition: background 0.3s;
}

.about__badge-two {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(245, 242, 238, 0.7137254902);
  transition: background 0.3s;
}

.about__badge-two span {
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(245, 242, 238, 0.7137254902) !important;
}

.about__badge:hover {
  background: rgba(9, 4, 2, 0.04);
}

.about__badge span {
  font-size: clamp(11px, 0.72vw, 14px);
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.about__headline {
  font-size: clamp(24px, 2.3vw, 44px);
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1.1 !important;
  text-align: center;
  max-width: clamp(260px, 28vw, 540px);
}

.demos-section {
  padding: 0 clamp(20px, 5vw, 80px) clamp(32px, 4vw, 60px);
  padding-bottom: 0px;
}

.demos-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.swiper-slide {
  width: 100%;
}

.demos__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.6vw, 28px);
  padding: 0 0 clamp(40px, 4vw, 70px);
}

.demo-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: pointer;
}

.demo-card__thumb {
  position: relative;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: transparent;
}

.demo-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-card:hover .demo-card__thumb img {
  transform: scale(1.05);
}

.demo-tag-corner {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  border-radius: 50px;
  font-size: clamp(12px, 0.68vw, 14px);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1;
}

.demo-tag-corner--free {
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(9, 4, 2, 0.12);
}

.demo-tag-corner--new {
  top: 24px;
  right: 24px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(249, 74, 61, 0.35);
}

.demo-card__info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: clamp(10px, 1.2vw, 18px) clamp(12px, 1.2vw, 18px);
  background: linear-gradient(to top, rgba(9, 4, 2, 0.72) 0%, transparent 100%);
}

.demo-card__num {
  font-size: clamp(11px, 0.72vw, 13px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.demo-card__title {
  font-size: clamp(12px, 0.88vw, 16px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}

.demo-card__thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 4, 2, 0);
  display: flex;
  align-items: flex-end;
  border-radius: 18px 18px 0 0;
  transition: background 0.4s ease;
  z-index: 2;
}

.demo-card:hover .demo-card__thumb-overlay {
  background: rgba(9, 4, 2, 0.08);
}

.demo-card__hover-actions {
  width: 100%;
  padding: clamp(10px, 1.2vw, 20px) 24px clamp(24px, 4vw, 24px) 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1), transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-card:hover .demo-card__hover-actions {
  opacity: 1;
  transform: translateY(0);
}

.demo-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.demo-btn {
  display: inline-block;
}

.demo-btn .btn-animated-text {
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 12px 16px !important;
  border-radius: 50px;
  display: inline-block;
}

.demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(9, 4, 2, 0.25);
}

.demo-btn--light .btn-animated-text {
  background: var(--cream) !important;
  color: black !important;
}

.demo-btn--light .btn-animated-text span {
  color: black !important;
}

.demo-btn--dark .btn-animated-text {
  background: var(--dark) !important;
  color: var(--cream) !important;
}

.demo-btn--rtl .btn-animated-text {
  background: var(--gold) !important;
  color: var(--cream) !important;
}

.demo-card__browser {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--gold-bg);
  border-radius: 0 0 18px 18px;
}

.demo-card__dots {
  display: flex;
  gap: 4px;
}

.demo-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
  transition: transform 0.2s;
}

.demo-card:hover .demo-card__dot {
  transform: scale(1.3);
  opacity: 1;
}

.demo-card__url-bar {
  flex: 1;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 242, 238, 0.7);
  border-radius: 41px;
  padding: 6px 18px;
}

.demo-card__url-text {
  font-size: 11px;
  font-weight: 400;
  color: var(--dark);
  opacity: 0.45;
  white-space: nowrap;
}

.demos-swiper .swiper-pagination {
  bottom: 16px;
}

.demos-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--dark);
  opacity: 0.25;
  transition: opacity 0.28s, transform 0.28s;
}

.demos-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
}

.demos-swiper .swiper-button-prev,
.demos-swiper .swiper-button-next {
  width: 46px;
  height: 46px;
  background: var(--dark);
  border-radius: 50%;
  top: 44%;
}

.demos-swiper .swiper-button-prev::after,
.demos-swiper .swiper-button-next::after {
  font-size: 14px;
  color: var(--cream);
  font-weight: 700;
}

.demos-swiper .swiper-button-disabled {
  opacity: 0.3;
}

@media (max-width: 700px) {
  .demos__row {
    grid-template-columns: 1fr;
  }
  .demo-card__hover-actions {
    opacity: 1;
    transform: none;
  }
  .demo-card__thumb-overlay {
    background: rgba(9, 4, 2, 0.5);
  }
}
@media (max-width: 480px) {
  .demos-section {
    padding: 0 clamp(14px, 4vw, 24px) 40px;
  }
  .demos-swiper .swiper-button-prev,
  .demos-swiper .swiper-button-next {
    display: none;
  }
}
.demo-cr-row {
  max-width: 1290px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.demo-cr-single {
  padding: 20px 20px 25px;
  background-color: rgba(185, 132, 76, 0.1294117647);
  border-radius: 25px;
  width: calc(50% - 20px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.demo-section-two {
  padding: clamp(60px, 7vw, 100px) clamp(20px, 7vw, 40px);
}

@media only screen and (max-width: 1400px) {
  .demo-section-two .demo-tag-corner--free {
    display: none !important;
  }
}
.demo-section-two .demo-cr-row {
  flex-wrap: nowrap;
  gap: 16px;
  max-width: unset;
  width: 100%;
}

.demo-section-two .demo-cr-single {
  width: 100%;
  flex-grow: 1;
}

@media only screen and (max-width: 1200px) {
  .demo-section-two .demo-cr-row {
    flex-wrap: wrap;
    gap: 40px;
  }
  .demo-section-two .demo-tag-corner--free {
    display: block !important;
  }
  .demo-section-two .demo-cr-single {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 768px) {
  .demo-section-two .demo-cr-single {
    width: 100%;
  }
}
.demo-section-two .demo-cr-single .main-img {
  margin-top: 0px;
}

.demo-cr-single .main-img {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}

.demo-cr-single .content a {
  transition: all 0.4s ease;
}

.demo-cr-single:hover {
  background-color: #B9854C;
}

.demo-cr-single:hover .content a {
  color: white;
}

@media only screen and (max-width: 991px) {
  .demo-cr-single {
    width: 100%;
  }
}
.main-img {
  margin-top: 15px;
}

.main-img img {
  min-height: 260px;
}

.demo-cr-single img {
  width: 100%;
}

.demo-cr-single .content {
  text-align: center;
  margin-top: 25px;
}

.demo-cr-single .content a {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
}

.more-demos {
  margin-top: clamp(8px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-bottom: clamp(48px, 6vw, 120px);
}

.more-demos__divider {
  width: 100%;
  height: 1px;
  background: url("../images/vector-93.svg") center/cover no-repeat;
  opacity: 0.2;
}

.more-demos__icon-row {
  margin: clamp(22px, 2.4vw, 48px) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.more-demos__circle {
  width: clamp(78px, 5.6vw, 108px);
  height: clamp(78px, 5.6vw, 108px);
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinCircle 14s linear infinite;
  margin-bottom: 20px;
}

@keyframes spinCircle {
  to {
    transform: rotate(360deg);
  }
}
.more-demos__circle img {
  width: clamp(22px, 2vw, 38px);
  height: clamp(22px, 2vw, 38px);
  animation: spinCircleCounter 14s linear infinite;
}

@keyframes spinCircleCounter {
  to {
    transform: rotate(-360deg);
  }
}
.more-demos__heading {
  font-size: clamp(24px, 3.8vw, 76px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1.19;
  text-align: center;
  margin-top: clamp(6px, 0.7vw, 14px);
}

.plugins-section {
  padding: clamp(60px, 8vw, 140px) clamp(24px, 7vw, 130px);
  background: #fff;
}

.plugins-section__top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(14px, 1.8vw, 30px);
}

.plugins-section__label {
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.plugins-section__label-highlight {
  display: inline-block;
  background: #d4f040;
  color: var(--dark);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.plugins-section__heading {
  font-size: clamp(30px, 4.8vw, 80px);
  font-weight: 800;
  color: #090402;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: clamp(40px, 6vw, 100px);
  font-style: italic;
}

.plugins-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(28px, 3.2vw, 64px) clamp(16px, 2vw, 40px);
}

@media (max-width: 1100px) {
  .plugins-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 700px) {
  .plugins-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 420px) {
  .plugins-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.plugin-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.plugin-item__icon {
  width: clamp(66px, 5.8vw, 96px);
  height: clamp(66px, 5.8vw, 96px);
  border-radius: 50%;
  background: #f2f2ee;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
}

.plugin-item:hover .plugin-item__icon {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 12px 32px rgba(9, 4, 2, 0.1);
}

.plugin-item__icon img {
  width: clamp(30px, 2.8vw, 50px);
  height: auto;
}

.plugin-item__icon--dark {
  background: #1a1a1a;
}

.plugin-item__icon--black {
  background: #090402;
}

.plugin-item__icon--red {
  background: var(--red);
}

.plugin-item__icon--swiper {
  background: #f2f2ee;
}

.plugin-item__icon--isotope {
  background: #f2f2ee;
}

.plugin-gsap-label {
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.5px;
}

.plugin-w3c-label {
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.5px;
}

.plugin-item__name {
  font-size: clamp(12px, 0.9vw, 16px);
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-top: 6px;
}

.plugin-item__sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 50px;
  background: #f0f0ec;
  font-size: clamp(10px, 0.66vw, 12px);
  font-weight: 500;
  color: #666;
  white-space: nowrap;
}

.elements-section {
  background: #fff;
  padding: clamp(40px, 6vw, 120px) clamp(24px, 7vw, 130px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 100px);
  align-items: center;
  border-top: 1px solid rgba(9, 4, 2, 0.06);
}

@media (max-width: 760px) {
  .elements-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .elements-section__right {
    order: -1;
  }
  .elements-section__arrow-wrap {
    justify-content: center;
  }
  .elements-section__desc {
    margin: 12px auto 0;
  }
}
.elements-section__left {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1.2vw, 16px);
}

.elements-section__big-num {
  font-size: clamp(70px, 11vw, 210px);
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.06em;
  line-height: 0.88;
  font-style: italic;
}

.elements-section__arrow-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.elements-arrow-svg {
  width: clamp(48px, 5.5vw, 92px);
  height: auto;
  flex-shrink: 0;
}

.elements-section__arrow-label {
  font-size: clamp(11px, 0.82vw, 14px);
  color: var(--red);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
}

.elements-section__heading {
  font-size: clamp(34px, 5vw, 86px);
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.04em;
  line-height: 1;
  font-style: italic;
}

.elements-section__desc {
  font-size: clamp(14px, 0.98vw, 18px);
  font-weight: 400;
  color: #555;
  line-height: 1.65;
  margin-top: clamp(12px, 1.4vw, 22px);
  max-width: 420px;
}

.marquee-section {
  background: #fff;
  padding: clamp(14px, 1.6vw, 36px) 0 clamp(40px, 5vw, 100px);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.1vw, 18px);
  overflow: hidden;
}

.marquee-track {
  overflow: hidden;
  width: 100%;
}

.marquee-inner {
  display: flex;
  gap: clamp(10px, 1vw, 16px);
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track--reverse .marquee-inner {
  animation-direction: reverse;
}

.marquee-track:hover .marquee-inner {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(9px, 0.75vw, 13px) clamp(14px, 1.1vw, 22px);
  border-radius: 50px;
  border: 1px solid rgba(9, 4, 2, 0.1);
  background: #fff;
  font-size: clamp(11px, 0.78vw, 14px);
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
  cursor: default;
}

.marquee-pill:hover {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
  transform: scale(1.04);
}

.marquee-pill svg {
  flex-shrink: 0;
  opacity: 0.55;
}

.marquee-pill:hover svg {
  opacity: 1;
  stroke: var(--cream);
}

.cta-section {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 45vw, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 20% 50%, rgba(140, 20, 60, 0.85) 0%, transparent 60%), radial-gradient(ellipse 70% 70% at 80% 30%, rgba(60, 30, 180, 0.8) 0%, transparent 65%), radial-gradient(ellipse 60% 60% at 50% 80%, rgba(20, 10, 80, 0.9) 0%, transparent 70%);
  background-color: #0d0820;
}

.cta-section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.cta-section__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 3.5vw, 52px);
  padding: clamp(60px, 8vw, 120px) clamp(24px, 5vw, 80px);
}

.cta-section__heading {
  font-size: clamp(34px, 5.5vw, 96px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-align: center;
}

.cta-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #d4f040;
  color: var(--dark);
  border-radius: 50px;
  padding: clamp(14px, 1.4vw, 22px) clamp(26px, 2.4vw, 42px);
  font-size: clamp(13px, 0.95vw, 18px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s, background 0.25s;
}

.cta-section__btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(212, 240, 64, 0.35);
  background: #e0ff55;
}

.ticker-strip {
  background: #0d0820;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: clamp(14px, 1.5vw, 22px) 0;
}

.ticker-inner {
  display: flex;
  gap: clamp(28px, 3vw, 52px);
  width: max-content;
  animation: tickerScroll 22s linear infinite;
  align-items: center;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker-inner span {
  font-size: clamp(12px, 0.88vw, 16px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.ticker-dot {
  color: #d4f040 !important;
  font-size: clamp(10px, 0.7vw, 13px) !important;
}

.footer {
  background: var(--dark);
  color: var(--cream);
  padding: clamp(60px, 8vw, 120px) clamp(24px, 6vw, 110px) 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 80px);
  padding-bottom: clamp(48px, 5vw, 80px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 520px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__brand {
    grid-column: auto;
  }
}
.footer__logo {
  height: clamp(32px, 3vw, 48px);
  width: auto;
  display: block;
  filter: invert(1) brightness(0.9);
  margin-bottom: clamp(14px, 1.5vw, 22px);
}

.footer__tagline {
  font-size: clamp(13px, 0.88vw, 16px);
  color: rgba(245, 242, 238, 0.55);
  line-height: 1.65;
  max-width: 320px;
  margin-bottom: clamp(20px, 2vw, 32px);
}

.footer__socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 242, 238, 0.6);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.footer__social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

.footer__nav-title {
  font-size: clamp(11px, 0.72vw, 13px);
  font-weight: 600;
  color: rgba(245, 242, 238, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: clamp(16px, 1.8vw, 28px);
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.1vw, 18px);
}

.footer__nav-list a {
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 400;
  color: rgba(245, 242, 238, 0.65);
  letter-spacing: -0.02em;
  transition: color 0.22s, padding-left 0.22s;
}

.footer__nav-list a:hover {
  color: var(--cream);
  padding-left: 4px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(20px, 2vw, 32px) 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: clamp(11px, 0.72vw, 13px);
  color: rgba(245, 242, 238, 0.35);
}

.footer__bottom-links {
  display: flex;
  gap: clamp(16px, 1.5vw, 28px);
}

.footer__bottom-links a {
  font-size: clamp(11px, 0.72vw, 13px);
  color: rgba(245, 242, 238, 0.35);
  transition: color 0.22s;
}

.footer__bottom-links a:hover {
  color: var(--cream);
}

.dark-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-inline: clamp(20px, 10vw, 80px);
  padding-top: clamp(100px, 10vw, 480px);
  padding-bottom: clamp(80px, 10vw, 140px);
}

.dark-section .bg-img {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  z-index: -1;
}

.dark-section__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.dark-section__content img {
  animation: moveTopBottom 3s linear infinite;
  max-width: 10vw;
  min-width: 60px;
}

@media only screen and (max-width: 600px) {
  .dark-section__content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .dark-section__content .left-cr {
    width: 100%;
  }
  .dark-section__content img {
    scale: -1 1;
  }
  .hero__headline-two {
    max-width: clamp(360px, 42vw, 820px);
  }
}
.btn-primary {
  gap: 0px;
  overflow: hidden;
  transition: 0.5s;
}

.btn-primary .btn-animated-text {
  padding: 16px 30px 16px;
  background-color: #090402;
  border-radius: 30px;
  font-size: 13px;
  display: inline-block;
  transition: 0.5s;
  line-height: 1;
  position: relative;
  z-index: 2;
  direction: ltr;
  width: 100%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.btn-primary .btn-animated-text span {
  color: #fff;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary .btn-animated-text span:nth-child(odd) {
  transform: translateY(-50px);
}

.btn-primary .btn-animated-text span:nth-child(odd)::before {
  content: attr(data-text);
  position: absolute;
  transform: translateY(50px);
  left: 0;
}

.btn-primary .btn-animated-text span:nth-child(even) {
  transform: translateY(50px);
}

.btn-primary .btn-animated-text span:nth-child(even)::before {
  content: attr(data-text);
  position: absolute;
  transform: translateY(-50px);
  left: 0;
}

.btn-primary:hover {
  color: white;
}

.btn-primary:hover .btn-animated-text span {
  color: white;
}

.btn-primary:hover .btn-animated-text span:nth-child(odd) {
  transform: translateY(0);
}

.btn-primary:hover .btn-animated-text span:nth-child(even) {
  transform: translateY(0);
}

.preloader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.preloader-inner {
  text-align: center;
  width: 300px;
}

.preloader-logo span {
  font-size: 18px;
  letter-spacing: 6px;
  color: #aaa;
  margin-bottom: 30px;
  display: inline-block;
}

.preloader-bar {
  height: 2px;
  background: #222;
  overflow: hidden;
  margin-bottom: 20px;
}

.preloader-progress {
  height: 100%;
  width: 0%;
  background: #fff;
}

.preloader-count {
  color: #aaa;
  font-size: 14px;
}

@keyframes moveTopBottom {
  0% {
    transform: translateY(0px);
  }
  30% {
    transform: translateY(-40px);
  }
  30% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes moveTopBottom_2 {
  0% {
    transform: translateY(0px);
  }
  30% {
    transform: translateY(-20px);
  }
  30% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}/*# sourceMappingURL=style.css.map */