/* © 2025 moucea. All rights reserved. */

:root {
  --white: #fff;
  --gray: #9aa0a6;
  --shadow: rgba(0, 0, 0, .3);
  --text-shadow: rgba(0, 0, 0, .7);
  --soft-shadow: 0 15px 10px rgba(0, 0, 0, .3);
  --radius: 10px;
  --radius-sm: 5px;
  --border: 1px solid var(--white);
  --header-size: clamp(1.75rem, 5.5vw, 2.75rem);
  --body-size: clamp(1rem, 2.5vw, 1.25rem);
  --sub-size: clamp(.9rem, 2vw, 1.2rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
}

body {
  display: flex;
  flex-direction: column;
}

.header-container {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 30px;
  margin-right: 1px;
}

.site-name {
  font-size: 1.4rem;
  font-weight: bold;
}

a {
  color: var(--white);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(28px, 5.2vw, 88px);
  white-space: nowrap;
  min-width: 0;
  padding-inline-end: clamp(12px, 2.5vw, 40px);
}

.nav-links a {
  margin: 0;
  padding-inline: .25rem;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .nav-links {
    gap: clamp(20px, 4vw, 56px);
  }

  .nav-links a {
    font-size: clamp(.95rem, 1.1vw, 1.05rem);
  }
}

.logo-container {
  flex: 0 0 auto;
}


.nav-links a {
  font-weight: 500;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 24px;
  cursor: pointer;
  color: var(--white);
}

.side-menu {
  position: fixed;
  inset: 0 auto 0 0;
  width: 250px;
  height: 100vh;
  background: rgba(0, 0, 0, .5);
  color: var(--white);
  box-shadow: 2px 0 5px rgba(0, 0, 0, .3);
  transform: translateX(-100%);
  transition: transform .3s ease;
  z-index: 500;
}

.side-menu.open {
  transform: translateX(0);
}

.side-menu nav {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.side-menu nav a {
  padding: 15px 20px;
  border-bottom: 1px solid #333;
}

h2.privacy-header,
h2.tech-title,
h2.aboutus-title,
h2.support-title {
  font-weight: 300;
  text-align: center;
  font-size: var(--header-size);
}

@media (max-width:640px) {

  h2.privacy-header,
  h2.tech-title,
  h2.aboutus-title,
  h2.support-title {
    font-size: clamp(2rem, 7vw, 2.85rem);
  }
}

.center-content p,
.aboutus-text p,
.support-tagline {
  font-size: var(--body-size);
}

.sub-content,
.support-footer {
  font-size: var(--sub-size);
}

.video-button,
.tech-button,
.support-button,
.learn-more,
.aboutus-button {
  background: transparent;
  border: var(--border);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .25s ease;
  display: inline-block;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.learn-more,
.aboutus-button {
  padding: .35rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

.video-button:hover,
.video-button:active,
.tech-button:hover,
.tech-button:active,
.support-button:hover,
.support-button:active,
.learn-more:hover,
.learn-more:active,
.aboutus-button:hover,
.aboutus-button:active {
  border-color: var(--gray);
  color: var(--gray);
}

@media (min-width:1025px) {
  body {
    overflow: hidden;
  }

  .js-snap-container {
    height: 100vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
  }

  .js-snap-container>section {
    scroll-snap-align: start;
    min-height: 100vh;
    position: relative;
  }
}

.video-section {
  height: 100vh;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.top-left {
  position: absolute;
  top: 80px;
  left: 20px;
  color: var(--white);
}

.animated-text {
  width: 85vw;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: bold;
  text-shadow: 1px 1px 3px var(--text-shadow);
  overflow-wrap: break-word;
}

.word-wrapper {
  display: block;
  margin-left: 5px;
  position: relative;
  width: auto;
  height: 1em;
}

.word-wrapper .word {
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 0;
  animation: wordAnimation 9s infinite;
}

@keyframes wordAnimation {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }

  10% {
    opacity: 1;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(0);
  }

  40%,
  100% {
    opacity: 0;
    transform: translateY(-20%);
  }
}

#word1 {
  animation-delay: 0s;
}

#word2 {
  animation-delay: 3s;
}

#word3 {
  animation-delay: 6s;
}

.center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
}

.sub-content {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  color: var(--white);
  z-index: 3;
}

.logo-container.small img {
  height: 60px;
  margin-right: -10px;
  margin-top: 5px;
}

.logo-container.small .sub-text {
  font-size: 30px;
}

.sub-content .sub-link {
  color: var(--white);
}

.sub-content .sub-link:hover {
  color: var(--gray);
}

@media (min-width: 1025px) {
  .center-content {
    top: 52%;
    width: 50vw;
  }

  .center-content p {
    font-size: clamp(1rem, 1.7vw, 1.75rem);
    line-height: 1.3;
    font-weight: 500;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .55);
    margin-bottom: 1rem;
  }


  .video-button {
    font-size: clamp(1.125rem, 1.4vw, 1.5rem);
    padding: 14px 28px;
    border: 1px solid var(--white);
  }

  .video-button+.video-button {
    margin-left: 24px;
  }
}


@media (max-width:1025px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .video-container {
    aspect-ratio: 9/16;
  }

  .video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }

  .animated-text {
    width: 100vw;
    text-shadow: 1px 1px 3px var(--text-shadow);
  }

  .center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .video-button+.video-button {
    margin: 0;
  }

  .logo-container.small img {
    height: 30px;
    margin-right: -7px;
    margin-top: 2px;
  }

  .logo-container.small .sub-text {
    font-size: 15px;
  }
}

.privacy-section {
  padding: 4rem 2rem;
  color: var(--white);
  background: url('images/animation_3.jpg') center/cover no-repeat fixed;
}

.privacy-section-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.privacy-videos {
  display: flex;
  justify-content: space-between;
  max-width: 95%;
  gap: 2rem;
}

.privacy-video {
  flex: 1;
  max-width: 30%;
}

.privacy-video img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: var(--soft-shadow);
  border-radius: var(--radius-sm);
}

.video-text {
  text-align: center;
  margin-top: .5rem;
  word-wrap: break-word;
}

.privacy-more {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.privacy-more p {
  margin: 0;
  font-size: var(--body-size);
}

@media (max-width:1025px) {
  .privacy-section {
    padding: 2rem 1rem;
    background-attachment: scroll;
  }

  .privacy-videos {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0;
    overflow: visible;
  }

  .privacy-video {
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .privacy-more {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (min-width:1025px) {
  .privacy-section-div {
    gap: 3.5rem;
  }

  .privacy-videos {
    gap: 2rem;
    width: 100%;
  }

  .privacy-video {
    max-width: 33%;
    margin: 0;
  }
}

.technologies-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.tech-video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.tech-video-container video.tech-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.tech-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 7vh 2vw 0;
  text-align: center;
}

.tech-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  flex-grow: 1;
}

.tech-line {
  max-width: 30%;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, .6);
  word-wrap: break-word;
}

.tech-line.left {
  align-self: flex-start;
  text-align: left;
}

.tech-line.right {
  align-self: flex-end;
  text-align: right;
}

.tech-subtext {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin: 2rem 0 1rem;
}


@media (max-width:1025px) {
  .tech-lines {
    gap: 2rem;
    align-items: center;
  }

  .tech-line {
    align-self: center !important;
    text-align: center !important;
    max-width: 80%;
  }
}

.technologies-section .tech-bottom {
  margin-bottom: 1rem;
}

.aboutus-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.aboutus-background video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.aboutus-overlay {
  position: relative;
  z-index: 2;
  color: var(--white);
  height: 60%;
  padding: 9vh 2vw;
  display: flex;
  flex-direction: column;
}

.aboutus-grid {
  display: flex;
  flex: 1;
  width: 100%;
  height: 80vh;
  gap: 2vw;
  padding: 0 1vw;
  padding-top: 10px;
}

.aboutus-left,
.aboutus-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.aboutus-right {
  box-shadow: var(--soft-shadow);
}

.aboutus-image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.aboutus-image-container img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.aboutus-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5vh 2vw;
  text-align: center;
}

.aboutus-text p {
  max-width: 90%;
  line-height: 1.6;
}

.aboutus-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

@media (max-width:1025px) {
  .aboutus-grid {
    flex-direction: column;
    gap: 2vh;
  }

  .aboutus-left,
  .aboutus-right {
    height: 50vh;
    width: 100%;
  }

  .aboutus-image-container img,
  .aboutus-right video {
    width: auto;
    height: 100%;
    object-fit: cover;
  }

  .aboutus-text {
    padding: 1rem 1.5rem;
  }
}

.support-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.support-video-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.support-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.support-overlay {
  position: relative;
  z-index: 2;
  color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(64px, 8vh, 120px) 2vw 0;
}

.support-topright {
  align-self: flex-start;
  text-align: left;
  max-width: 40%;
  margin-top: 5%;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, .6);
}

.support-center {
  flex: 0 0 auto;
  margin-top: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.support-footer {
  position: absolute;
  color: white;
  left: 0;
  right: 0;
  bottom: 0;
  padding: .75rem 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  box-shadow: 0 -18px 28px rgba(0, 0, 0, .45);
  z-index: 2;
}

@media (max-width:1025px) {
  .support-topright {
    max-width: 90%;
  }

  .support-footer {
    padding-bottom: 1rem;
    color: white;
  }

  .support-center {
    margin-top: 30%;
  }

  .support-title {
    margin: 0 0 20% 0;
  }
}

.technologies-section .tech-bottom {
  margin-bottom: 1rem;
}









@media (min-width:1025px) {
  .page-tech {
    overflow: auto !important;
  }
}

#techMain {
  min-height: 100vh;
  overflow: visible;
}

.tch-section {
  position: relative;
  min-height: 100vh;
  height: auto;
  overflow: hidden;
  padding-top: clamp(25px, 3.5vh, 45px);
}

.tch-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tch-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tch-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 3rem 6vw 5rem;
}

.tch-title {
  font-weight: 300;
  text-align: center;
  font-size: var(--header-size);
  margin-bottom: 2rem;
}

.tch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(56px, 8vw, 112px);
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .tch-grid {
    grid-template-columns: 1fr;
  }
}

.tch-card {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  isolation: isolate;
}

.tch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tch-card figcaption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  backdrop-filter: saturate(100%) brightness(0.85);
  color: var(--white);
}

.tch-center-note {
  text-align: center;
  margin: clamp(24px, 6vh, 56px) auto 0;
  font-size: var(--body-size);
  max-width: 65ch;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

.tch-footer {
  position: absolute;
  color: white;
  left: 0;
  right: 0;
  bottom: 0;
  padding: .75rem 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  box-shadow: 0 -18px 28px rgba(0, 0, 0, .45);
  z-index: 2;
}























.page-support .support-section {
  min-height: 100vh;
  height: auto;
  overflow: visible;
}

.page-support .support-overlay {
  align-items: center;
  padding: clamp(80px, 10vh, 120px) 4vw 96px;
}

.page-support .support-title {
  margin-bottom: clamp(24px, 4vh, 32px);
}

.page-support .support-layout {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  width: min(1100px, 100%);
}

.page-support .support-card {
  flex: 1;
  border-radius: var(--radius);
  box-shadow: 0 -6px 18px rgba(0, 0, 0, .25), 10px 16px 28px rgba(0, 0, 0, .45);
  padding: clamp(20px, 3vh, 32px);
  min-height: clamp(340px, 60vh, 520px);
  display: flex;
  flex-direction: column;
}

.page-support .support-card-left {
  background-color: transparent;
  color: white;
}


.page-support .support-card-right {
  background-color: gray;
  color: var(--white);
}

.page-support .support-card-right-content {
  margin-top: auto;
  margin-bottom: auto;
  text-align: center;
  line-height: 1.6;
}

.page-support .support-card-intro {
  font-size: var(--body-size);
  margin-bottom: 1.5rem;
}

.support-card-intro {
  text-align: center;
}

.page-support .support-options {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.page-support .support-option-btn,
.page-support .support-email-btn {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: var(--body-size);
  cursor: pointer;
  transition: all .2s ease;
  text-align: center;
}

.page-support .support-option-btn {
  background-color: gray;
  color: white;
  border-color: transparent;
}

.page-support .support-option-btn:hover,
.page-support .support-option-btn:focus-visible {
  background-color: transparent;
  color: #fff;
  border-color: transparent;
}

.page-support .support-email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
}

.page-support .support-email-btn:hover,
.page-support .support-email-btn:focus-visible {
  background-color: #fff;
  color: #000;
}


@media (max-width: 900px) {
  .page-support .support-layout {
    flex-direction: column;
    width: 100%;
  }

  .page-support .support-card {
    min-height: auto;
  }

  .page-support .support-overlay {
    padding: clamp(80px, 12vh, 120px) 1.5rem 96px;
  }

  .page-support .support-bottom-text {
    max-width: 100%;
  }

  .page-support .support-option-btn {
    margin-bottom: 5%;
  }
}

.page-support .support-card-left a {
  color: inherit;
}





/* © 2025 moucea. All rights reserved. */