body {
  margin: 0;
  background-color: #EFEEEA;
  overflow: hidden;
}

.skeleton-loader {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 24px;
  box-sizing: border-box;
  animation: sk-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes sk-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.sk-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.sk-logo {
  display: inline-block;
  width: 120px;
  height: 32px;
  background: rgba(39, 63, 79, 0.08);
  border-radius: 8px;
  color: transparent;
  text-decoration: none;
  user-select: none;
  overflow: hidden;
}

.sk-links {
  display: flex;
  gap: 24px;
}

.sk-link {
  width: 70px;
  height: 20px;
  background: rgba(39, 63, 79, 0.08);
  border-radius: 4px;
  display: none;
  color: transparent;
  text-decoration: none;
  user-select: none;
  overflow: hidden;
}

@media(min-width: 768px) {
  .sk-link {
    display: block;
  }
}

.sk-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.sk-tag {
  display: inline-block;
  width: 220px;
  height: 32px;
  background: rgba(254, 119, 67, 0.15);
  border-radius: 20px;
  margin-bottom: 48px;
  color: transparent;
  user-select: none;
  overflow: hidden;
}

.sk-title-wrapper {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sk-title {
  display: block;
  width: 80%;
  max-width: 700px;
  height: 70px;
  background: rgba(39, 63, 79, 0.12);
  border-radius: 16px;
  margin-bottom: 24px;
  color: transparent;
  user-select: none;
  overflow: hidden;
}

.sk-title-2 {
  display: block;
  width: 60%;
  max-width: 500px;
  height: 70px;
  background: rgba(39, 63, 79, 0.08);
  border-radius: 16px;
  margin-bottom: 48px;
  color: transparent;
  user-select: none;
  overflow: hidden;
}

.sk-desc {
  display: block;
  width: 70%;
  max-width: 600px;
  height: 24px;
  background: rgba(39, 63, 79, 0.08);
  border-radius: 8px;
  margin-bottom: 16px;
  color: transparent;
  user-select: none;
  overflow: hidden;
}

.sk-desc-2 {
  display: block;
  width: 50%;
  max-width: 400px;
  height: 24px;
  background: rgba(39, 63, 79, 0.08);
  border-radius: 8px;
  margin-bottom: 64px;
  color: transparent;
  user-select: none;
  overflow: hidden;
}

.sk-btn {
  display: block;
  width: 240px;
  height: 64px;
  background: rgba(254, 119, 67, 0.4);
  border-radius: 40px;
  color: transparent;
  text-decoration: none;
  user-select: none;
  overflow: hidden;
}

/* Screen-reader only style for crawlable semantic SEO paragraphs */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Visible styled container for initial skeleton footer */
.sk-footer {
  border-top: 1px solid rgba(39, 63, 79, 0.1);
  margin-top: 60px;
  padding: 40px 20px;
  text-align: left;
}
.sk-footer-desc {
  color: rgba(0, 0, 0, 0.55);
  font-size: 13px;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 24px;
}
.sk-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.sk-footer-links a {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.sk-footer-links a:hover {
  color: #FE7743;
}

