/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@15.3.4_@opentelemetry+api@1.9.0_react-dom@19.2.1_react@19.2.1__react@19.2.1/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!../../node_modules/.pnpm/next@15.3.4_@opentelemetry+api@1.9.0_react-dom@19.2.1_react@19.2.1__react@19.2.1/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./src/app/(home)/home.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --primary-color: #000;
  --accent-color: #f1fae4;
  --background-color: #f6f6f5;
  --border-color: #e2e2e1;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--primary-color);
  background: var(--accent-color);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

a {
  color: inherit;
  opacity: 1;
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: all 0.2s ease;
  will-change: opacity, text-decoration-thickness;
}

a:hover {
  opacity: 0.7;
  text-decoration-thickness: 2px;
}

.button:hover {
  opacity: 1;
}

.button:active {
  transform: scale(0.98);
}

strong {
  font-weight: 600;
}

small {
  font-size: 12px;
}

p {
  line-height: 1.5em;
  margin: 0;
}

.cl-rootBox > .cl-cardBox {
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1), 0 20px 80px 0 rgba(0, 0, 0, 0.25);
  border: none;
}
.cl-footerAction,
.cl-logoBox {
  display: none;
}

#top {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
  min-height: 90vh;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  background-color: var(--accent-color);
  border-bottom: 1px solid var(--border-color);
  will-change: color;
  transition: 0.2s color ease;
}

#top.text {
  min-height: auto;
}

.top-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background-image: url("/top-bg.jpg");
  background-size: cover;
  background-position: center;
}

.top-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  mix-blend-mode: difference;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
  will-change: opacity;
  transition: 0.4s opacity ease-out;
}

.top-bg-overlay-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
  will-change: opacity;
  transition: 0.2s opacity ease;
}

#top.dark .top-bg-overlay,
#top.dark .top-bg-overlay-2 {
  opacity: 0;
}

#top.dark {
  color: var(--background-color);
}

.top-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 60px;
}

.top-header svg {
  will-change: fill;
  transition: 0.2s fill ease;
}

.top-header-left {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}

.top-header-right {
  display: flex;
  align-items: center;
  gap: 70px;
  font-weight: 600;
}

.top-body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 60px;
  background: linear-gradient(
    rgba(241, 250, 228, 0),
    rgba(241, 250, 228, 0.2),
    rgba(241, 250, 228, 0.6)
  );
}

#top.dark .top-bottom {
  background: none;
}

.top-bottom-overlay {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 280px;
  width: 100%;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  -webkit-mask: linear-gradient(transparent, black, black);
          mask: linear-gradient(transparent, black, black);
}

.top-marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 40px 0 60px 0;
}

.top-marquee-inner {
  display: flex;
  align-items: center;
  gap: 70px;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.top-marquee-inner img {
  display: flex;
  width: auto;
  flex-shrink: 0;
}

.top-marquee .company-light {
  display: none;
}

#top.dark .top-marquee .company-dark {
  display: none;
}

#top.dark .top-marquee .company-light {
  display: flex;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

#preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 70px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  background: var(--background-color);
  padding: 120px 100px 0 100px;
  border-bottom: 1px solid var(--border-color);
}

#preview p {
  font-size: 20px;
}

#preview img {
  max-width: 100%;
  height: auto;
}

#preview h2 {
  width: 100%;
  text-align: center;
}

#preview h3 {
  margin-top: 40px;
}

#preview.text {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: left;
  gap: 10px;
}

#preview .button {
  display: flex;
  gap: 10px;
  margin: 0 auto;
  padding: 10px 20px 10px 12px;
  background-color: var(--accent-color);
  border-radius: 50px;
  border: 1px solid var(--border-color);
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-size: 16px;
}

.play-icon {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--primary-color);
  border-radius: 50%;
  position: relative;
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--primary-color);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

#bottom {
  display: flex;
  justify-content: space-between;
  background-color: var(--background-color);
  max-width: 1280px;
  margin: 0 auto;
}

.bottom-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1;
  gap: 124px;
  padding: 70px 64px;
}

.bottom-left {
  border-right: 1px solid var(--border-color);
}

.bottom-first {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bottom-last {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.bottom-social {
  display: flex;
  gap: 40px;
}

.bottom-social a {
  text-decoration: underline;
}

.bottom-item small span {
  white-space: nowrap;
}

.bottom-item .button {
  display: flex;
  padding: 12px 50px;
  color: var(--background-color);
  background-color: var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
}

.bottom-right .bottom-first strong {
  margin-top: -7px;
  font-size: 30px;
}

@media (min-width: 1280px) {
  body {
    background-color: var(--background-color);
  }

  #top,
  #preview,
  #bottom {
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
  }

  #bottom {
    border-bottom: 1px solid var(--border-color);
  }
}

@media (max-width: 800px) {
  .top-header {
    align-items: start;
  }

  .top-header-left {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .top-header-right {
    margin-top: 2px;
  }

  #preview {
    padding-top: 100px;
    padding-left: 60px;
    padding-right: 60px;
  }

  #bottom {
    flex-direction: column;
  }

  .bottom-left {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  #top {
    gap: 30px;
  }

  .top-header {
    padding: 50px 30px;
  }

  .top-header svg {
    width: 163px;
    height: 40px;
  }

  .top-header-left {
    flex: 1 1;
    align-items: center;
    text-align: center;
  }

  .top-header-right {
    display: none;
  }

  #preview {
    padding-left: 40px;
    padding-right: 40px;
  }

  #preview p {
    font-size: 16px;
  }

  .bottom-item {
    gap: 60px;
    padding: 60px 40px;
  }

  .bottom-last {
    gap: 30px;
  }
}

