@font-face {
  font-family: "Helvetica Neue Wix";
  src: url("https://static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.latin.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  font-size:16px;
}

:root {
  --purple: #601eb2;
  --purple-deep: #5418a0;
  --purple-soft: #7a52b3;
  --gray: #f5f5f5;
  --ink: #601eb2;
  --line: #d8d8d8;
  --font: "Helvetica Neue Wix", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, cite { font-family: inherit; }

.wrap {
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
}

.header {
  background: #fff;
  border-bottom: 1px solid #d8e6f2;
}
.header-inner {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--purple);
  font-size: 26px;
  font-weight: 500;
  flex: 0 0 auto;
}
.logo img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1;
}
.nav a {
  color: var(--purple-soft);
  font-size: 15px;
  font-weight: 700;
}
.nav a.active,
.nav a:hover { color: var(--purple); }
.get-started {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-size: 15px;
}
.menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 26px;
  color: var(--purple-deep);
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: #fff;
}
.hero img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  color: var(--purple);
  background: #fff;
}
.hero-copy p {
  font-size: 18px;
  margin-bottom: 10px;
}
.hero-copy h1 {
  font-size: 64px;
  line-height: 1;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 22px;
}
.explore {
  display: inline-block;
  background: var(--purple-deep);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 15px;
}

.section { padding: 72px 0 80px; }
.home-services {
  background: #f7f7f7;
  padding: 96px 0 88px;
}
h2,
.page h1,
.members-box h1 {
  color: var(--purple);
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.card {
  border: 1px solid var(--purple);
  background: #fff;
  padding: 36px 32px 28px;
}
.card h3 {
  color: var(--purple);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
}
.card p {
  color: var(--purple);
  font-size: 18px;
  line-height: 1.55;
  min-height: 72px;
}
.card hr {
  border: 0;
  border-top: 1px solid var(--purple);
  width: 70%;
  margin: 22px 0 20px;
}
.book {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  padding: 8px 14px;
  font-size: 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.about p {
  color: var(--purple);
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
}
.about-small {
  width: 72%;
  margin-top: 28px;
  height: 170px;
  object-fit: cover;
}
.about-circle {
  width: min(390px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  justify-self: center;
}
.stories {
  background: var(--gray);
}
.stories p {
  color: var(--purple-soft);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
}
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 8px;
}
.quotes p {
  margin-bottom: 22px;
}
.quotes cite {
  font-style: normal;
  font-weight: 600;
  color: var(--purple);
  font-size: 16px;
}

.page {
  padding: 48px 0 80px;
  background: #f7f7f7;
}
.page h1 {
  color: var(--purple);
  margin-bottom: 16px;
}
.page.center h1 {
  text-align: center;
  margin-bottom: 36px;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  background: transparent;
  border: 0;
}
.service-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 0 0 22px;
}
.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  margin-bottom: 16px;
}
.service-card h3,
.service-card .time,
.service-card .book {
  margin-left: 18px;
  margin-right: 18px;
}
.service-card h3 {
  color: var(--purple);
  font-size: 20px;
  font-weight: 400;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 12px;
}
.service-card .time {
  color: var(--purple-soft);
  font-size: 14px;
  margin-bottom: 14px;
}
.book {
  cursor: pointer;
  border: 0;
}
.page .sub {
  color: var(--purple);
  margin-bottom: 28px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.feedback {
  background: var(--gray);
  padding: 72px 0 80px;
}
.feedback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.feedback-left .brand-label {
  color: var(--purple);
  font-size: 18px;
  margin-bottom: 10px;
}
.feedback-left h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 320px;
}
.feedback-left p,
.feedback-left a {
  color: var(--purple);
  font-size: 15px;
  line-height: 1.6;
  word-break: break-all;
}
.contact {
  max-width: 460px;
}
.contact h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact .sub {
  margin-bottom: 22px;
  font-size: 15px;
  color: var(--purple);
}
label {
  display: block;
  color: var(--purple);
  font-size: 14px;
  margin-bottom: 6px;
}
.names {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
input[type="text"],
input[type="email"],
input[type="search"] {
  width: 100%;
  height: 40px;
  border: 1px solid var(--purple);
  padding: 0 10px;
  margin-bottom: 14px;
  background: #fff;
  color: var(--ink);
}
.radios { margin: 6px 0 18px; }
.radios label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.submit {
  width: 100%;
  height: 42px;
  border: 0;
  background: var(--purple-deep);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}
.ok { display: none; color: #2d8a4e; margin-top: 10px; }

.members-box {
  text-align: center;
  padding: 80px 20px 100px;
}
.members-box h1 {
  margin-bottom: 12px;
}
.members-box .sub {
  font-size: 16px;
  margin-bottom: 22px;
}
.login-btn {
  display: inline-block;
  min-width: 96px;
  height: 40px;
  padding: 0 22px;
  border: 0;
  background: var(--purple);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.feed {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr;
  gap: 28px;
  align-items: start;
}
.post, .side {
  border: 1px solid #ddd;
  background: #fff;
}
.suggest {
  background: #f4eefc;
  color: var(--purple);
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.join {
  border: 1px solid var(--purple);
  color: var(--purple);
  background: #fff;
  padding: 4px 14px;
  cursor: pointer;
}
.post-body { padding: 16px 18px 12px; }
.post-user { display: flex; gap: 10px; margin-bottom: 12px; }
.post-user strong { color: var(--purple); }
.verified { color: #3b82f6; font-size: 12px; }
.post-meta { color: var(--purple-soft); font-size: 13px; }
.post-text { color: var(--purple); margin-bottom: 16px; }
.reacts {
  display: flex;
  gap: 18px;
  color: var(--purple);
  font-size: 14px;
  padding-bottom: 12px;
}
.comment-box {
  border-top: 1px solid #eee;
  padding: 12px 0 8px;
}
.comment-box input {
  border: 1px solid #ddd;
  margin: 0;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f4b4c8;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
}
.side { padding: 16px; }
.side-search {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 18px;
}
.side-search input {
  border: 0;
  height: 34px;
  margin: 0;
  padding: 0;
  background: transparent;
}
.side h3 { color: var(--purple); margin: 0 0 14px; font-size: 16px; }
.sgroup {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.sgroup img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}
.sgroup strong { display: block; color: var(--purple); font-size: 14px; }
.sgroup small { color: #888; font-size: 12px; }
.files-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}
.files-head h1 { margin-bottom: 0; }
.files-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 260px;
  border-bottom: 1px solid var(--purple-soft);
  padding-bottom: 4px;
}
.files-search span { color: var(--purple); }
.files-search input {
  border: 0;
  height: 32px;
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--purple);
  outline: none;
}
.files-search input::placeholder { color: var(--purple-soft); }
.files-table { width: 100%; }
.files-row,
.files-cols {
  display: grid;
  grid-template-columns: 32px 1.6fr 1fr 70px 90px 1.1fr 36px;
  gap: 12px;
  align-items: center;
  padding: 14px 4px;
  color: var(--purple);
}
.files-cols {
  font-size: 13px;
  border-bottom: 1px solid #ddd;
}
.files-row {
  border-bottom: 1px solid #eee;
  position: relative;
  background: #fff;
}
.files-row.hidden { display: none; }
.item-name {
  display: flex;
  align-items: center;
  gap: 12px;
}
.folder-ico {
  width: 28px;
  height: 22px;
  background: var(--purple);
  clip-path: polygon(0 6px, 10px 6px, 13px 0, 100% 0, 100% 100%, 0 100%);
  flex: 0 0 auto;
}
.item-name strong { display: block; font-weight: 600; }
.item-name small { color: var(--purple-soft); font-size: 12px; }
.private {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding: 1px 8px;
  border: 1px solid var(--purple-soft);
  border-radius: 999px;
  font-size: 11px;
  color: var(--purple);
}
.star { color: var(--purple); }
.who {
  display: flex;
  align-items: center;
  gap: 8px;
}
.who .avatar {
  width: 28px;
  height: 28px;
  font-size: 12px;
  background: #f4b4c8;
  color: #fff;
}
.more-btn {
  border: 0;
  background: none;
  color: var(--purple);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}
.file-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 46px;
  z-index: 8;
  min-width: 140px;
  background: #f3f3f3;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  padding: 8px 0;
}
.file-menu.open { display: block; }
.file-menu button {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: none;
  color: var(--purple);
  padding: 8px 16px;
  cursor: pointer;
}
.file-menu hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 6px 0;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0,0,0,.45);
  place-items: center;
  padding: 20px;
}
.modal.open { display: grid; }
.modal-box {
  width: min(460px, 100%);
  background: #fff;
  padding: 28px 28px 24px;
  text-align: center;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: none;
  font-size: 22px;
  color: #333;
  cursor: pointer;
}
.modal-box p {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  margin: 18px 0 22px;
}
.got-it {
  min-width: 88px;
  height: 38px;
  border: 0;
  background: #111;
  color: #fff;
  padding: 0 18px;
  cursor: pointer;
}

footer {
  border-top: 1px solid #eee;
  padding: 22px 0 32px;
  text-align: center;
  color: var(--purple-soft);
  font-size: 14px;
  background: #fff;
}

@media (max-width: 900px) {
  .menu-btn { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 82px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 20px;
    border-bottom: 1px solid #eee;
    z-index: 10;
  }
  .nav.open { display: flex; }
  .header { position: relative; }
  .get-started { display: none; }
  .hero, .cards, .quotes, .split, .feed, .names, .about-grid, .feedback-grid, .service-cards {
    grid-template-columns: 1fr;
  }
  .service-card { border-right: 0; border-bottom: 1px solid #e5e5e5; }
  .hero img { min-height: 320px; }
  .hero-copy h1 { font-size: 48px; }
  h2,
  .page h1,
  .members-box h1 { font-size: 32px; }
  .about-small { width: 100%; }
  .contact { margin: 0; }
  .card p { min-height: 0; }
  .files-head { flex-direction: column; align-items: stretch; }
  .files-row,
  .files-cols {
    grid-template-columns: 28px 1fr 36px;
  }
  .files-row span:nth-child(3),
  .files-row span:nth-child(4),
  .files-row span:nth-child(5),
  .files-row .who,
  .files-cols span:nth-child(3),
  .files-cols span:nth-child(4),
  .files-cols span:nth-child(5),
  .files-cols span:nth-child(6) { display: none; }
}
