html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/Inter.ttf) format('truetype');
}

/* @font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/UcCo3FwrK3iLTcvmYwYL8g.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
} */
button {
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: #FAF5FF;
  margin: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
  /* cursor: url(../images/logo.png), auto; */
}

.container {
  max-width: 1460px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}

.header {
  background: rgba(250, 245, 255, 0.25);
  backdrop-filter: blur(16px);
  padding: 22px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9;
}

.header-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

a.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #371D52;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.28px;
  text-transform: uppercase;
  text-decoration: none;
  width: fit-content;
  transition: opacity .2s ease;
}

a.logo:hover {
  opacity: 0.5;
}

.logo-img {
  width: 40px;
  height: 56px;
  aspect-ratio: 5/7;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 40px;
}

.nav-list .list-item {}

.nav-link {
  color: #371D52;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.72px;
  text-decoration: none;
  padding: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity .2s ease;

}

.nav-link:hover {
  opacity: 0.5;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 16px 20px;
  font-family: inherit;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.96px;
  border-radius: 160px;
  text-decoration: none;
  color: rgba(55, 29, 82, 0.50);
  transition: color .2s ease, background .2s ease;
}

@property --myColor1 {
  syntax: '<color>';
  initial-value: #AD5BFE;
  inherits: false;
}

@property --myColor2 {
  syntax: '<color>';
  initial-value: #BF7FFE;
  inherits: false;
}

.btn.accent {
  padding: 16px 40px;
  color: #FAF5FF;
  background: linear-gradient(90deg, var(--myColor1) 0%, var(--myColor2) 100%);
  transition: --myColor1 .3s, --myColor2 .3s, transform .3s ease;
}

.btn.accent:hover {
  --myColor1: #BF7FFE;
  --myColor2: #BF7FFE;
  transform: scale(1.05);
}

.btn.about:hover {
  color: rgba(55, 29, 82);
}

.header-button {
  display: flex;
  justify-content: end;
  align-items: center;
}

.header-button .btn.accent {
  padding: 14px 32px;
  font-size: 18px;
  letter-spacing: -0.72px;
}

.section.main {
  border-radius: 0px 0px 64px 64px;
  position: relative;
  overflow: hidden;
}

.section.main::before {
  content: '';
  background-image: url(../images/main-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  filter: blur(8px);
  transition: filter .4s ease, transform .4s ease;
  transform: scale(1.05);
  opacity: 0.5;

}

.section.main:hover::before {
  filter: blur(0px);
  transform: scale(1);
}


/* 
.main-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(8px);
  transition: filter .4s ease, transform .4s ease;
  transform: scale(1.05);
  }
  
  .main-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    }
    
    .section.main:hover .main-bg {
      filter: blur(0px);
      transform: scale(1);
      } */

.main-text {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  text-align: center;
  padding: 235px 0;
  --glow-color: #00000042;
}

.section.main .main-text *:not(.btn) {
  transition: text-shadow .3s ease;
}

.section.main:hover .main-text *:not(.btn) {
  text-shadow: 0px 0px 20px var(--glow-color);
}

h1.title {
  color: #371D52;
  text-align: center;
  font-size: 56px;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -2.24px;
}

h2.title {
  color: #371D52;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.6px;
}

h4.title {
  color: #371D52;
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.04px;
}

.color-accent {
  color: #AD5BFE;
  --glow-color: #ad5bfe70;
}

.main-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

section.second {
  padding-top: 110px;
}

section.second .section-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-content .item {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-content .item:nth-child(even) {
  justify-content: end;
  flex-direction: row-reverse;
}

.item-img {
  width: 360px;
  height: 336px;
  pointer-events: none;
  user-select: none;
}

.item-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
}

.item-text .title {
  color: #371D52;
  font-size: 32px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -1.28px;
}

.item-text .context {
  color: rgba(55, 29, 82, 0.50);
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.96px;
}

.item-text.wide {
  max-width: 720px;
}

.mission {
  border-radius: 64px;
  background-color: #ffffff0f;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: '';
  background-image: url(../images/office-vibe.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  filter: blur(8px);
  transition: filter .4s ease, transform .4s ease;
  transform: scale(1.05);
}

.mission:hover::before {
  filter: blur(0px);
  transform: scale(1);
}

.mission-text {
  padding: 240px 0;
}

.mission-text .title {
  color: #FAF5FF;
}

p.subtitle {
  /* color: rgba(250, 245, 255, 0.70); */
  color: #E2D4DA;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.96px;
}

.mission:hover p,
.mission:hover h1 {
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25)
}

.roadmap-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 64px;
}

.roadmap-content .line {
  display: flex;
  gap: 160px;
  justify-content: center;
  align-items: center;
}

.roadmap-content .line .item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.roadmap-content .item-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: unset;
}

.roadmap-content .item-text .item-subtitle {
  color: rgba(55, 29, 82, 0.50);
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.8px;
}

.roadmap-content .item-image {
  width: 170px;
  height: 122px;
}

.section.roadmap {
  padding: 110px 0;
}

.section.team {
  padding-bottom: 110px;
}

.team-content {
  gap: 20px 24px;
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-template-areas: none;
}

.card {
  display: flex;
  flex-direction: column;
  border-radius: 32px;
  overflow: hidden;
  background: #FFF;
  padding-bottom: 32px;
  gap: 14px;
  transition: transform .4s ease, box-shadow .4s ease;
  box-shadow: 0px 0px 1px 0px rgba(173, 91, 254, 0.25);

}

.card:hover {
  transform: translateY(-16px);
  /* box-shadow: 0px 0px 19.9px 0px rgba(0, 0, 0, 0.25); */
  box-shadow: 0px 0px 19.9px 0px rgba(173, 91, 254, 0.25);
}

.card-effect-image {
  max-height: 72px;
  max-width: 162px;
  pointer-events: none;
  user-select: none;
  pointer-events: none;
}

.card-header {
  display: flex;
  justify-content: end;
}

.card-profile-image {
  border-radius: 128px;
  display: flex;
  width: fit-content;
  overflow: hidden;
  margin-top: -50px;
  border: 4px solid white;
  margin-inline: 32px;
  user-select: none;
  pointer-events: none;
}

.card-profile-image-item {
  width: 100%;
  height: 100%;
  max-width: 72px;
  aspect-ratio: 1/1;
}

.card hr {
  border: none;
  border-top: 1px solid #E6E2E9;
  margin: 0;
  margin-inline: 32px;
}

.card>*:not(.card-header, .card-profile-image, hr) {
  padding-inline: 32px;
}

.card-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card .name {
  color: #371D52;
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.04px;
}

.card .position {
  color: rgba(55, 29, 82, 0.50);
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.8px;
}

.card .slogan,
.card .description,
.card .vibe-info {
  color: #371D52;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.8px;
}

.team-content .card:nth-child(1) .card-header {
  background: #E9E5E6;
}

.team-content .card:nth-child(2) .card-header {
  background: #BFC9D3;
}

.team-content .card:nth-child(3) .card-header {
  background: #C2C9C2;
}

.team-content .card:nth-child(4) .card-header {
  background: #DADADC;
}

.team-content .card:nth-child(5) .card-header {
  background: #91815F;
}

.team-content .card:nth-child(6) .card-header {
  background: #BDAD9D;
}

.team-content .card:nth-child(7) .card-header {
  background: #B4862F;
}

.team-content .card:nth-child(8) .card-header {
  background: #96A9BA;
}

.footer-content {
  padding-top: 48px;
  border-top: 1px solid #E6E2E9;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 72px;
}

.footer-content .start {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-content .end {
  display: flex;
  gap: 70px;
}

.copyright {
  color: rgba(55, 29, 82, 0.50);
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.8px;
}

.social {
  width: 21px;
  height: 21px;
}

.nav-link[data-id="twitter"]:before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg class='social' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='currentColor' d='M389.2 48h70.6L305.6 224.2L487 464H345L233.7 318.6L106.5 464H35.8l164.9-188.5L26.8 48h145.6l100.5 132.9zm-24.8 373.8h39.1L151.1 88h-42z' /%3E%3C/svg%3E");
  width: 21px;
  height: 21px;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  top: 0;
  z-index: 110;
  padding: 60px 30px;
  visibility: hidden;
  opacity: 0;
  transition: visibility .4s ease, opacity .4s ease;
}

.modal .btn.close {
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
}

.modal.active {
  visibility: visible;
  opacity: 1;
}

.modal-content {
  background: #FAF5FF;
  border: 1px solid #c6c3ca;
  padding: 32px;
  border-radius: 20px;
  text-align: left !important;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: calc(100dvh - 120px);
  overflow: auto;
  scrollbar-width: thin;
}

.modal-content .title {
  text-align: left !important;

}

.modal-content .context {
  font-size: 16px;
  line-height: 130%;
}

@media (max-width:850px) {
  .header .nav {
    display: none;
  }

  .header-content {
    display: flex;
    justify-content: space-between;
  }

}

@media (max-width: 768px) {
  .about-content .item {
    flex-direction: column !important;
  }

  .mission-text {
    padding: 74px 0;
  }

  .roadmap-content .line {
    flex-direction: column;
    gap: 56px;
  }

  .roadmap-content .line .item {
    flex-direction: column-reverse;
    align-items: center;
  }

  .item-text .title {
    text-align: center;
  }

  .roadmap-content {
    gap: 56px;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-content .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .footer-content .nav-link {
    padding: 16px 0;
    width: 100%;
  }

  .footer-content .end {
    margin-top: 10px;
  }

  .container:not(.section.main .container, .modal .container) {
    padding: 0 36px
  }

  .modal {
    padding: 60px 0px 10px;
  }

  .modal-content {
    max-height: calc(100dvh - 70px);
  }

}