@font-face {
  font-family: 'Rosnoc';
  src: url('/assets/fonts/Rosnoc.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* 

	font-family: 'Inter', sans-serif;

*/

/***Root Code Variables***/

.theme_color {
  color: var(--main-color);
}

/* Theme Color */

:root {

  /* #761FE3 in decimal RGB */
  --main-color: #00cacc;
  --main-color-rgb: 46, 58, 68;

  /* #141414 in decimal RGB */
  --color-two: rgb(20, 20, 20);
  --color-two-rgb: 20, 20, 20;

  /* #BDBDBD in decimal RGB */
  --color-three: rgb(189, 189, 189);
  --color-three-rgb: 189, 189, 189;

  /* #0F0F0F in decimal RGB */
  --color-four: rgb(15, 15, 15);
  --color-four-rgb: 15, 15, 15;

  /* #D093E8 in decimal RGB */
  --color-five: #141e26;
  --color-five-rgb: 208, 147, 232;

  /* #A3A3A3 in decimal RGB */
  --color-six: rgb(163, 163, 163);
  --color-six-rgb: 163, 163, 163;

  /* #1C1C1C in decimal RGB */
  --color-seven: rgb(28, 28, 28);
  --color-seven-rgb: 28, 28, 28;

  /* #333333 in decimal RGB */
  --color-eight: rgb(51, 51, 51);
  --color-eight-rgb: 51, 51, 51;

  /* #242424 in decimal RGB */
  --color-nine: rgb(36, 36, 36);
  --color-nine-rgb: 36, 36, 36;

  /* #343334 in decimal RGB */
  --color-ten: rgb(52, 51, 52);
  --color-ten-rgb: 52, 51, 52;



  /* #ffffff in decimal RGB */
  --white-color: rgb(255, 255, 255);
  --white-color-rgb: 255, 255, 255;

  /* #000000 in decimal RGB */
  --black-color: rgb(0, 0, 0);
  --black-color-rgb: 0, 0, 0;

}

/*** 

====================================================================
	Reset
====================================================================

 ***/

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

/*** 

====================================================================
	Global Settings
====================================================================

***/


/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-three);
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6em;
  font-weight: 400;
  font-size: 14px;

  background-color: #050b18;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.dark-layout {
  position: relative;
  background-color: var(--black-color);
}

/* Preloader */

.handle-preloader {
  background-color: var(--main-color);
}

.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader-close {
  position: fixed;
  z-index: 9999999999999;
  font-size: 18px;
  background: #ffffff;
  width: 30px;
  height: 30px;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
  right: 15px;
  top: 15px;
  border-radius: 0%;
  display: none;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 150px;
  margin: 0 auto 45px auto;
  width: 150px;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  text-transform: capitalize;
  left: 0;
  opacity: 0;
  top: 0;
  position: absolute;
  font-family: 'Inter', sans-serif;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
  font-weight: 500;
  letter-spacing: 15px;
  display: inline-block;
  position: relative;
  font-size: 70px;
  line-height: 70px;
  font-family: 'Inter', sans-serif;
  color: transparent;
  -webkit-text-stroke-width: 1px;

  -webkit-text-stroke-color: rgba(255, 255, 255, 0.30);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}

.handle-preloader .loader-section {
  background-color: #fff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  color: #fff;
}

.handle-preloader .animation-preloader .spinner {
  border: 3px solid #fff;
  border-top-color: rgba(255, 255, 255, 0.5);
}

/* AnimaciÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬ ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}

@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }

  .handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-size: 30px;
    letter-spacing: 10px;
  }
}

i {
  font-style: normal;
}

.bordered-layout .page-wrapper {
  padding: 0px 50px 0px;
}

a {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  color: var(--main-color);
}

button,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  margin: 0px;
  background: none;
  color: var(--color-four);
  font-family: 'Inter', sans-serif;
}

input,
button,
select,
textarea {}

.social-one_bg-shadow {
  background: #050b18;
}


textarea {
  overflow: hidden;
}

.text,
p {
  position: relative;
  line-height: 1.7em;
  color: var(--color-four);
  font-size: 16px;
}

/* Typography */

h1 {
  line-height: 78px;
  font-size: 68px;
  font-weight: 600;
}

h2 {
  font-weight: 600;
  line-height: 58px;
  font-size: 48px;
}

h3 {
  line-height: 42px;
  font-size: 32px;
}

h4 {
  line-height: 38px;
  font-size: 28px;
}

h5 {
  line-height: 32px;
  font-size: 22px;
}

h6 {
  line-height: 28px;
  font-size: 18px;
}

.auto-container {
  position: static;
  max-width: 1350px;
  padding: 0px 15px;
  margin: 0 auto;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

img {
  display: inline-block;
  max-width: 100%;
}

.template-btn {
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.centered {
  text-align: center;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}

/***

====================================================================
	Scroll To Top style
====================================================================

***/

/* backtoup */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 40px;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.20);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px);
}

.progress-wrap::after {
  position: absolute;
  content: '\f176';
  font-family: "Font Awesome 5 Free";
  text-align: center;
  line-height: 35px;
  font-size: 15px;
  color: var(--main-color);
  left: 0;
  top: 0;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  font-weight: 700;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  font-size: 13px;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--main-color);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap.style2::after {
  color: var(--thm-color-2);
}

.progress-wrap.style2 svg.progress-circle path {
  stroke: var(--thm-color-2);
}

.progress-wrap.style3::after {
  color: var(--thm-color-3);
}

.progress-wrap.style3 svg.progress-circle path {
  stroke: var(--thm-color-3);
}

/* List Style One */

.list-style-one {
  position: relative;
}

.list-style-one li {
  position: relative;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  margin-bottom: 10px;
  padding-left: 30px;
}

.list-style-one li a {
  position: relative;
  color: var(--white-color);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.list-style-one li a:hover {
  color: var(--main-color);
}

.list-style-one li .icon {
  position: absolute;
  left: 0px;
  top: 5px;
  color: var(--main-color);
  font-size: 18px;
  line-height: 1em;
  font-weight: 300;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

/* Btn Style One */

.btn-style-one {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  padding: 18px 34px;
  display: inline-block;
  color: var(--white-color);
  background-color: var(--main-color);
}

.btn-style-one:before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background-color: var(--white-color);
}

.btn-style-one:hover:before {
  top: 0%;
}

.btn-style-one .btn-wrap {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
  display: inline-block;
}

.btn-style-one .btn-wrap .text-one {
  position: relative;
  display: block;
  color: var(--white-color);
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap .text-one:first-child {
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}

.btn-style-one .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: var(--main-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap .text-two {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-style-one:hover .btn-wrap .text-two {}

.btn-style-one:hover {}

.btn-style-one:hover:before {
  top: -40%;
}

/* Btn Style Two */

.btn-style-two {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  padding: 18px 34px;
  display: inline-block;
  color: var(--white-color);
  border: 1px solid var(--main-color);
}

.btn-style-two:before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background-color: var(--main-color);
}

.btn-style-two:hover:before {
  top: 0%;
}

.btn-style-two .btn-wrap {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
  display: inline-block;
}

.btn-style-two .btn-wrap .text-one {
  position: relative;
  display: block;
  color: var(--white-color);
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap .text-one:first-child {
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}

.btn-style-two .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: var(--white-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap .text-two {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-style-two:hover .btn-wrap .text-two {}

.btn-style-two:hover {}

.btn-style-two:hover:before {
  top: -40%;
}

/* Btn Style Three */

.btn-style-three {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  overflow: hidden;
  text-align: center;
  border-radius: 8px;
  padding: 18px 34px;
  display: inline-block;
  color: #00cacc;
  background-color: #00cacc;
}

.btn-style-three:before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background-color: var(--white-color);
}

.btn-style-three:hover:before {
  top: 0%;
}

.btn-style-three .btn-wrap {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
  display: inline-block;
}

.btn-style-three .btn-wrap .text-one {
  position: relative;
  display: block;
  color: var(--white-color);
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.btn-style-three:hover .btn-wrap .text-one:first-child {
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}

.btn-style-three .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: #00cacc;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-style-three:hover .btn-wrap .text-two {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-style-three:hover .btn-wrap .text-two {}

.btn-style-three:hover {}

.btn-style-three:hover:before {
  top: -40%;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.lang-btn img {
  backdrop-filter: blur(5px);
}

/*** 

====================================================================
	Section Title
====================================================================

***/

.sec-title {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.sec-title_icon {
  position: relative;
  width: 64px;
  height: 64px;
  text-align: center;
  line-height: 64px;
  display: inline-block;
  margin: 0 auto;
  font-size: 20px;
  border-radius: 50px;
  margin-bottom: 10px;
  color: var(--color-five);
  border-top: 1px solid var(--color-five);
  background-color: rgba(var(--main-color-rgb), 0.20);
}

.sec-title_title {
  position: relative;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--main-color);
  display: inline-block;
  text-transform: uppercase;
}

.sec-title_heading {
  margin-top: 15px;
  color: var(--white-color);
}

.sec-title_heading span {
  position: relative;
  font-style: italic;
  display: inline-block;
  font-family: 'Lora', serif;
  text-transform: lowercase;
}

.sec-title_heading span::before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 8px;
  right: 0px;
  z-index: -1;
  height: 10px;
  border-radius: 50px;

  background: var(--main-color);
  background: linear-gradient(to top, var(--main-color) 0%, var(--color-two) 100%);
}

.sec-title_text {
  line-height: 30px;
  font-size: 17px;
  margin-top: 20px;
  color: var(--color-three);
}

.sec-title.light .sec-title_title {
  color: var(--white-color);
}

.sec-title.light .sec-title_heading span::before {
  opacity: 0.70;
  background: var(--white-color);
  background: linear-gradient(to top, var(--white-color) 0%, var(--main-color) 100%);
}

.sec-title.light .sec-title_text {
  opacity: 0.60;
  color: var(--white-color);
}

.sec-title.light .sec-title_heading {
  color: var(--white-color);
}

.sec-title.centered {
  text-align: center !important;
}

.sec-title.centered .separator {
  margin: 0 auto;
}

/* Style Two */

.sec-title.style-two .sec-title_title {
  color: var(--main-color);
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0px;
  border-radius: 3px;
  text-transform: capitalize;
}

.sec-title.style-two .sec-title_title::before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0.10;
  border-radius: 5px;
  background: var(--main-color);
  background: linear-gradient(to bottom, var(--main-color) 0%, var(--color-five) 100%);
}

.sec-title.style-two .sec-title_heading span {
  color: var(--main-color);
}

.sec-title.style-two .sec-title_heading span::before {
  display: none;
}

.sec-title.style-two.light .sec-title_title {
  color: var(--white-color);
  background-color: rgba(var(--white-color-rgb), 0.10);
}

.sec-title.style-two.light .sec-title_heading span {
  color: var(--white-color);
}

/* Style Three */

.sec-title.style-three .sec-title_title {
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 3px;
  letter-spacing: 0px;
  color: var(--white-color);
  text-transform: capitalize;
}

.sec-title.style-three .sec-title_title::before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: -1;
  border-radius: 5px;
  background: var(--main-color);
  background: linear-gradient(to right, var(--main-color) 0%, var(--color-five) 80%);
}

.sec-title.style-three .sec-title_heading span::before {
  display: none;
}

.sec-title.style-three.light .sec-title_title {
  color: var(--white-color);
  background-color: rgba(var(--white-color-rgb), 0.10);
}

.sec-title.style-three .sec-title_heading span {
  color: var(--main-color);
  display: inline-block;
  background: linear-gradient(to right, var(--main-color) 0%, var(--color-five) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-title.style-four .sec-title_title {
  padding: 0px 0px;
  color: #00cacc;
  text-transform: uppercase;
}

.sec-title.style-four .sec-title_heading span {
  color: var(--main-color);
  font-style: italic;
  display: inline-block;
  font-family: 'Lora', serif;
  text-transform: lowercase;
}

.sec-title.style-four .sec-title_heading span::before {
  display: none;
}

/* Custom Select */

.form-group .ui-selectmenu-button.ui-button {
  top: -2px;
  width: 100%;
  border: 0px;
  padding: 19px 25px;
  padding-left: 65px;
  font-weight: 600;
  line-height: 28px;
  font-size: 18px;
  border-radius: 6px;
  color: var(--white-color);
  background: none;
  border: 1px solid rgba(var(--white-color-rgb), 0.08);
}

.form-group .ui-button .ui-icon {
  background: none;
  position: relative;
  top: 3px;
  text-indent: 0px;
  color: #a5a5a5;
}

.form-group .ui-button .ui-icon:before {
  font-family: 'FontAwesome';
  content: "\f107";
  position: absolute;
  right: 0px;
  top: 2px !important;
  top: 10px;
  height: 22px;
  display: block;
  line-height: 20px;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  z-index: 5;
  color: var(--color-three);
}

.ui-menu .ui-menu-item {
  font-size: 14px;
}

.ui-menu .ui-menu-item:last-child {
  border: none;
}

.ui-state-active,
.ui-widget-content .ui-state-active {
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  display: block;
  padding: 8px 20px;
  line-height: 24px;
  font-size: 14px;
}

.ui-menu-item:hover {
  background-color: var(--color-two);
}

/* Cursor */

.cursor {
  position: fixed;
  background-color: var(--main-color);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.cursor.active {
  opacity: 1;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.cursor.menu-active {
  opacity: 1;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.cursor.hovered {
  opacity: 1;
}

.cursor-follower {
  position: fixed;
  border: 0.5px solid var(--main-color);
  width: 30px;
  height: 30px;
  border-radius: 100%;
  z-index: 1;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}

.cursor-follower.active {
  opacity: 1;
  -webkit-transform: scale(2);
  transform: scale(2);
}

.cursor-follower.menu-active {
  opacity: 1;
  -webkit-transform: scale(2);
  transform: scale(2);
}

.cursor-follower.hovered {
  opacity: 1;
}

/* Cursor End */

.xs-sidebar-group .close-button {
  font-family: "Flaticon";
}

.newsletter-popup-area-section {
  display: none;
}

.ui-datepicker td span,
.ui-datepicker td a {
  text-align: center !important;
}


/* ---- Form Wrap ---- */
.mp-form-wrap {
  background: rgba(6, 12, 28, 0.92);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 202, 204, 0.08);
}

.mp-form-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 202, 204, 0.4), transparent);
  pointer-events: none;
}

/* ---- Grid ---- */
.mp-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mp-row-wide {
  grid-column: 1 / -1;
}

/* ---- Field ---- */
.mp-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mp-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(14, 251, 255, 0.686);
}

/* ---- Inputs, Selects, Textarea ---- */
.mp-field input,
.mp-field select,
.mp-field textarea {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 202, 204, 0.1);
  background: rgba(0, 202, 204, 0.03);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  color: #e2eaf6;
  width: 100%;
  box-sizing: border-box;
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.mp-field input::placeholder,
.mp-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.mp-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(0,202,204,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.mp-field select option {
  background: rgb(6, 12, 28);
  color: #e2eaf6;
}

.mp-field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.65;
}

/* Focus */
.mp-field input:focus,
.mp-field select:focus,
.mp-field textarea:focus {
  border-color: rgba(0, 202, 204, 0.55);
  background: rgba(0, 202, 204, 0.04);
  box-shadow:
    0 0 0 3px rgba(0, 202, 204, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ---- Helper text ---- */
.mp-helper {
  font-size: 12px;
  color: rgba(0, 202, 204, 0.55);
  min-height: 18px;
  line-height: 1.5;
  transition: opacity 0.2s ease;
}

/* ---- Validation errors ---- */
.mp-field input.error,
.mp-field select.error,
.mp-field textarea.error {
  border-color: rgba(251, 113, 133, 0.55);
  background: rgba(251, 113, 133, 0.04);
  box-shadow: 0 0 0 3px rgba(251, 113, 133, 0.08);
}

.mp-field label.error-label {
  color: #fb7185;
}

.error-msg {
  font-size: 11.5px;
  font-weight: 500;
  color: #fb7185;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.error-msg::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  min-width: 14px;
  border-radius: 50%;
  background: rgba(251, 113, 133, 0.18);
  font-size: 9px;
  font-weight: 700;
}


/* ---- Button wrap ---- */
.mp-btn-wrap {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
}

/* ---- Submit Button ---- */
.mp-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #008f91 0%, #00cacc 100%);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 14px;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition:
    transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.22s ease,
    background 0.28s ease;
  box-shadow:
    0 4px 18px rgba(0, 202, 204, 0.3),
    0 1px 4px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.mp-btn.glow {
  animation: mpGlowPulse 2s ease-in-out infinite;
}

@keyframes mpGlowPulse {

  0%,
  100% {
    box-shadow:
      0 4px 18px rgba(0, 202, 204, 0.28),
      0 1px 4px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  50% {
    box-shadow:
      0 8px 32px rgba(0, 202, 204, 0.52),
      0 1px 4px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
}

.mp-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow:
    0 10px 30px rgba(0, 202, 204, 0.42),
    0 2px 8px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.mp-btn:active {
  transform: translateY(0) scale(0.985);
  filter: brightness(0.96);
  transition-duration: 0.08s;
}

.mp-btn:focus-visible {
  outline: 2px solid rgba(0, 202, 204, 0.65);
  outline-offset: 3px;
}

/* Shine sweep */
.mp-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

.mp-btn:hover::before {
  left: 130%;
}

/* Bottom glow */
.mp-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 232, 234, 0.18), transparent);
  border-radius: 0 0 10px 10px;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.mp-btn:hover::after {
  opacity: 1;
}

/* Button icon */
.mp-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

.mp-btn:hover .mp-btn-icon {
  transform: translateX(3px);
}

/* Loading state */
.mp-btn.loading {
  pointer-events: none;
  opacity: 0.82;
  animation: none;
}

.mp-btn.loading .mp-btn-text {
  opacity: 0.65;
}

.mp-btn.loading .mp-btn-icon {
  animation: mpSpin 0.75s linear infinite;
}

@keyframes mpSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Success state */
.mp-btn.success {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  pointer-events: none;
  animation: none;
  box-shadow:
    0 4px 18px rgba(16, 185, 129, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* ---- Toast ---- */
.mp-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: rgba(6, 12, 28, 0.97);
  border: 1px solid rgba(0, 202, 204, 0.2);
  padding: 14px 18px;
  border-radius: 12px;
  color: #e2eaf6;
  font-size: 13.5px;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  z-index: 9999;
  width: 310px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px) scale(0.97);
  transition:
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mp-toast::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, transparent, rgba(0, 202, 204, 0.45), transparent);
}

.mp-toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mp-toast.toast-error {
  border-color: rgba(251, 113, 133, 0.25);
}

.mp-toast.toast-error::before {
  background: linear-gradient(90deg, transparent, rgba(251, 113, 133, 0.45), transparent);
}

.mp-toast.toast-success {
  border-color: rgba(16, 185, 129, 0.25);
}

.mp-toast.toast-success::before {
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.45), transparent);
}

.mp-toast-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

/* =========================================
   RESPONSIVE
   ========================================= */

/* Tablet landscape (≤ 1024px) */
@media (max-width: 1024px) {
  .mp-form-wrap {
    padding: 28px;
  }
}

/* Tablet portrait (≤ 900px) */
@media (max-width: 900px) {
  .mp-form-wrap {
    padding: 24px;
    border-radius: 18px;
  }

  .mp-row {
    gap: 14px;
  }
}

/* Mobile (≤ 768px) — single column */
@media (max-width: 768px) {
  .mp-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mp-row-wide {
    grid-column: auto;
  }

  .mp-btn-wrap {
    justify-content: stretch;
    margin-top: 18px;
  }

  .mp-btn {
    width: 100%;
    justify-content: center;
  }

  .mp-toast {
    width: calc(100vw - 32px);
    right: 16px;
    top: 16px;
  }
}

/* Mobile small (≤ 480px) */
@media (max-width: 480px) {
  .mp-form-wrap {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .mp-field input,
  .mp-field select,
  .mp-field textarea {
    padding: 12px 14px;
    font-size: 15px;
    /* prevents iOS zoom on focus */
  }

  .mp-btn {
    padding: 14px 20px;
    font-size: 15px;
  }

  .mp-toast {
    width: calc(100vw - 24px);
    right: 12px;
    top: 12px;
    font-size: 13px;
    padding: 12px 14px;
  }
}

/*about cards*/
:root {
  --moz-cyan: #00ffe0;
  --moz-bg: #060c18;
  --moz-muted: #7a9ab5;
  --moz-border: rgba(12, 255, 227, 0.12);
}

/* ── SECTION ── */
.about-one {
  position: relative;
  padding: 100px 0 110px;
  overflow: hidden;
  background: var(--moz-bg) !important;
}

.about-one::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.about-one::after {
  content: '';
  position: absolute;
  left: -10%;
  top: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 224, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.about-one .auto-container {
  position: relative;
  z-index: 2;
}

/* ── ORB WRAPPER ── */
.orb-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 0;
}

#orbCanvas {
  display: block;
  width: 440px;
  height: 440px;
  max-width: 100%;
}

/* ── STATUS TEXT ──
   Classe renomeada para .orb-cursor para não colidir
   com o .cursor do tema (cursor do rato)              */
.orb-status {
  margin-top: 20px;
  font-family: 'SF Mono', 'Fira Mono', 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--moz-cyan);
  text-align: center;
  min-height: 16px;
  opacity: 0.85;
}

.orb-cursor {
  display: inline-block;
  width: 5px;
  height: 11px;
  background: var(--moz-cyan);
  margin-left: 2px;
  vertical-align: middle;
  animation: mozOrbBlink 1s step-end infinite;
}

@keyframes mozOrbBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ── CONTENT COLUMN ── */
.about-one .about-one_content-column {
  padding-left: 50px;
}

/* ── BADGE ── */
.about-one .sec-title_title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--moz-cyan);
  margin-bottom: 22px;
}

.about-one .sec-title_title::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--moz-cyan);
  flex-shrink: 0;
}

/* ── HEADING ── */
.about-one .sec-title_heading {
  font-family: 'inter', sans-serif;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.about-one .sec-title_heading span {
  color: var(--moz-cyan);
}

/* ── PARÁGRAFOS ── */
.about-one .about-one_content-outer>p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--moz-muted);
  margin-bottom: 16px;
  font-weight: 300;
}

.about-one .about-one_content-outer>p span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ── STATS ROW ── */
.about-one .stats-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin: 32px 0 36px;
  padding: 24px 0;
  border-top: 1px solid var(--moz-border);
  border-bottom: 1px solid var(--moz-border);
}

.about-one .stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-one .stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--moz-cyan);
  line-height: 1;
}

.about-one .stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moz-muted);
}

/* ── BOTÕES ── */
.about-one .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--moz-cyan);
  color: #060c18;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  transition: all 0.25s ease;
  line-height: normal;
}

.about-one .btn-primary::after {
  content: '→';
  display: inline-block;
  transition: transform 0.25s ease;
}

.about-one .btn-primary:hover {
  background: #ffffff;
  color: #060c18;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 255, 224, 0.35);
}

.about-one .btn-primary:hover::after {
  transform: translateX(4px);
}

.about-one .btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 0;
  background: transparent;
  color: var(--moz-muted);
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  border: none;
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}

.about-one .btn-ghost:hover {
  color: var(--moz-cyan);
  border-bottom-color: var(--moz-cyan);
}

/* ── ANIMAÇÕES ── */
@keyframes mozFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-one .about-one_content-outer>* {
  animation: mozFadeUp 0.7s ease both;
}

.about-one .sec-title {
  animation-delay: 0.1s;
}

.about-one .about-one_content-outer>p:nth-of-type(1) {
  animation-delay: 0.2s;
}

.about-one .about-one_content-outer>p:nth-of-type(2) {
  animation-delay: 0.3s;
}

.about-one .stats-row {
  animation-delay: 0.4s;
}

.about-one .about-one_options {
  animation-delay: 0.5s;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .about-one .about-one_content-column {
    padding-left: 15px;
    padding-top: 30px;
  }

  #orbCanvas {
    width: 300px;
    height: 300px;
  }

  .about-one .stats-row {
    gap: 20px;
  }
}

/* ==================================================
   AI Design so fucking good :) who saws this is gay! 
   ================================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --clr-bg: #050b18;
  --clr-surface: #0e1d2f33;
  --clr-surface-2: #111f33;
  --clr-border: rgba(255, 255, 255, 0.07);
  --clr-border-hi: rgba(0, 202, 204, 0.22);
  --clr-accent: #00cacc;
  --clr-accent-lo: rgba(0, 202, 204, 0.07);
  --clr-accent-md: rgba(0, 202, 204, 0.14);
  --clr-text: #a8c4d4;
  --clr-text-hi: #d8eaf4;
  --clr-muted: #4a6a80;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
}

/* ── Reset basics ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Wrapper ── */
.pp-wrap {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  min-height: 100vh;
}

/* ── Hero header ── */
.pp-hero {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 32px 48px;
}

.pp-hero__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent);
  border: 1px solid var(--clr-border);
  border-radius: 99px;
  padding: 4px 14px;
  margin-bottom: 28px;
  background: var(--clr-accent-lo);
}

.pp-hero__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  color: #e8f4f8;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.pp-hero__title span {
  color: var(--clr-accent);
}

.pp-hero__meta {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--clr-muted);
  letter-spacing: 0.06em;
}

.pp-hero__line {
  margin-top: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--clr-accent) 0%, transparent 70%);
  opacity: 0.4;
}

/* ── Main content ── */
.pp-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

/* ── Section ── */
.pp-section {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--clr-border);
  animation: fadeUp 0.5s ease both;
}

.pp-section:last-child {
  border-bottom: none;
}

/* staggered fade-in */
.pp-section:nth-child(1) {
  animation-delay: 0.05s;
}

.pp-section:nth-child(2) {
  animation-delay: 0.10s;
}

.pp-section:nth-child(3) {
  animation-delay: 0.15s;
}

.pp-section:nth-child(4) {
  animation-delay: 0.20s;
}

.pp-section:nth-child(5) {
  animation-delay: 0.25s;
}

.pp-section:nth-child(6) {
  animation-delay: 0.30s;
}

.pp-section:nth-child(7) {
  animation-delay: 0.35s;
}

.pp-section:nth-child(8) {
  animation-delay: 0.40s;
}

.pp-section:nth-child(9) {
  animation-delay: 0.45s;
}

.pp-section:nth-child(10) {
  animation-delay: 0.50s;
}

.pp-section:nth-child(11) {
  animation-delay: 0.55s;
}

.pp-section:nth-child(12) {
  animation-delay: 0.60s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pp-section__num {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--clr-accent);
  background: var(--clr-num);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.pp-section__body h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #dceef7;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.pp-section__body p {
  margin-bottom: 12px;
  color: var(--clr-text);
}

.pp-section__body strong {
  color: #dceef7;
  font-weight: 500;
}

/* ── Cards (section 2) ── */
.pp-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  margin-bottom: 14px;
  transition: border-color 0.25s, background 0.25s;
}

.pp-card:hover {
  border-color: rgba(0, 202, 204, 0.35);
  background: var(--clr-accent-lo);
}

.pp-card__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-accent-lo);
  border-radius: 10px;
  border: 1px solid var(--clr-border);
}

.pp-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--clr-accent);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pp-card ul {
  list-style: none;
  padding: 0;
}

.pp-card ul li {
  font-size: 0.9rem;
  color: var(--clr-text);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.pp-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clr-accent);
  opacity: 0.6;
}

/* ── Generic list ── */
.pp-list {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.pp-list li {
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.95rem;
  color: var(--clr-text);
}

.pp-list li:last-child {
  border-bottom: none;
}

.pp-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-size: 0.85rem;
}

/* Rights list variant */
.pp-list--rights li::before {
  content: '✓';
  font-size: 0.8rem;
}

/* ── Highlight callout ── */
.pp-highlight {
  background: var(--clr-accent-md);
  border-left: 3px solid var(--clr-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 20px;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-accent);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

/* ── Inline link ── */
.pp-link {
  color: var(--clr-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0, 202, 204, 0.4);
  transition: text-decoration-color 0.2s;
}

.pp-link:hover {
  text-decoration-color: var(--clr-accent);
}

/* ── Email button ── */
.pp-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 14px 24px;
  background: var(--clr-accent-lo);
  border: 1px solid rgba(0, 202, 204, 0.35);
  border-radius: var(--radius);
  color: var(--clr-accent);
  font-family: 'Syne', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}



.pp-email-btn:hover {
  background: var(--clr-accent-md);
  border-color: var(--clr-accent);
  transform: translateY(-2px);
}

.pp-email-btn__icon {
  font-size: 1rem;
}

/* ── Footer ── */
.pp-footer {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 32px 48px;
  border-top: 1px solid var(--clr-border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--clr-muted);
  letter-spacing: 0.05em;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .pp-hero {
    padding: 48px 20px 32px;
  }

  .pp-content {
    padding: 0 20px 60px;
  }

  .pp-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pp-section__num {
    width: 40px;
    height: 40px;
    font-size: 0.65rem;
  }

  .pp-card {
    flex-direction: column;
    gap: 12px;
  }

  .pp-footer {
    padding: 20px;
  }
}


.mzpt-web-section {
  position: relative;
  min-height: 100vh;
  padding: 112px 24px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: #050d1a;
  color: #f0f4fa;
  font-family: 'Syne', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

.mzpt-web-section *,
.mzpt-web-section *::before,
.mzpt-web-section *::after {
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .mzpt-web-section {
    padding: 112px 48px 96px;
  }
}

.mzpt-web-section::before {
  content: '';
  position: absolute;
  inset: -160px 0 auto 0;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(0, 202, 204, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.mzpt-web-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 202, 204, 0.25), transparent);
  pointer-events: none;
}

.mzpt-web-header {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.mzpt-web-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  margin-bottom: 32px;
  border-radius: 999px;
  border: 1px solid rgba(0, 202, 204, 0.2);
  background: rgba(0, 202, 204, 0.04);
  animation: mzpt-web-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mzpt-web-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00cacc;
  box-shadow: 0 0 8px rgba(0, 202, 204, 0.7);
}

.mzpt-web-pill-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #00cacc;
}

.mzpt-web-headline {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #f0f4fa;
  margin: 0 0 20px;
  animation: mzpt-web-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.mzpt-web-subheadline {
  font-size: 16px;
  line-height: 1.6;
  color: #7d90a8;
  max-width: 520px;
  margin: 0 auto;
  animation: mzpt-web-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.mzpt-web-tabs {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1080px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  animation: mzpt-web-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@media (min-width: 768px) {
  .mzpt-web-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mzpt-web-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition:
    background-color 200ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 200ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mzpt-web-tab:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.mzpt-web-tab.is-active {
  background: rgba(0, 202, 204, 0.04);
  border-color: rgba(0, 202, 204, 0.3);
}

.mzpt-web-tab-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #7d90a8;
  transition:
    background-color 200ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 200ms cubic-bezier(0.22, 1, 0.36, 1),
    color 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mzpt-web-tab:hover .mzpt-web-tab-icon {
  color: #cdd9e8;
}

.mzpt-web-tab.is-active .mzpt-web-tab-icon {
  background: rgba(0, 202, 204, 0.1);
  border-color: rgba(0, 202, 204, 0.3);
  color: #00cacc;
}

.mzpt-web-tab-icon svg {
  width: 17px;
  height: 17px;
}

.mzpt-web-tab-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #b8c8d8;
  transition: color 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mzpt-web-tab:hover .mzpt-web-tab-label,
.mzpt-web-tab.is-active .mzpt-web-tab-label {
  color: #f0f4fa;
}

.mzpt-web-stage {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1080px;
  margin-bottom: 64px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #070f1e;
  box-shadow:
    0 24px 60px -24px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  animation: mzpt-web-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.mzpt-web-stage-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1080 / 620;
}

.mzpt-web-stage-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 450ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 450ms cub
  }