html {
  scroll-behavior: smooth;
}

/* Composition */
body {
  margin: 0;
  font-family: "Cormorant Upright", serif;
  color: #372D34;
  background-color: #F9F7F2;
}

/* Utility */
.title {
  font-family: "Cormorant Upright", serif;
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
}

.subtitle {
  font-family: "Source Code Pro", monospace;
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0;
}

.body-text {
  font-family: "Source Code Pro", monospace;
  font-size: 1.25rem;
  font-weight: 300;
  margin: 0;
}

.full-height {
  height: 100vh;
}

.hero {
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}
.hero .hero-head {
  order: 0;
}
.hero .hero-body {
  order: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7vh 3vw;
}
.hero .hero-foot {
  order: 2;
}

.highlight-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: color 0.22s cubic-bezier(0.7, 0.2, 0.2, 1);
}
.highlight-link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.08em;
  width: 0%;
  height: 1.35em;
  background: linear-gradient(100deg, transparent 5%, #ffe066 15%, #ffe066 85%, transparent 95%);
  -webkit-clip-path: polygon(0% 40%, 7% 100%, 98% 92%, 100% 22%, 93% 0%, 4% 10%);
          clip-path: polygon(0% 40%, 7% 100%, 98% 92%, 100% 22%, 93% 0%, 4% 10%);
  opacity: 1;
  z-index: -1;
  pointer-events: none;
  transition: width 0.44s cubic-bezier(0.32, 0.09, 0.53, 1.01), box-shadow 0.3s cubic-bezier(0.2, 0.75, 0.4, 1.2);
}
.highlight-link:hover, .highlight-link:focus-visible {
  color: #A580FF;
}
.highlight-link:hover::after, .highlight-link:focus-visible::after {
  width: 100%;
  box-shadow: 0 2px 18px 0 rgba(255, 224, 102, 0.15);
}
.highlight-link {
  position: relative;
  z-index: 1;
}

.highlight-link-mint::after {
  background: linear-gradient(100deg, transparent 5%, #74f9d4 15%, #74f9d4 85%, transparent 95%);
}

/* Blocks */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.navbar nav {
  display: flex;
  justify-content: right;
  align-items: center;
  padding: 1rem 3vw;
  gap: 2rem;
}
.navbar a {
  text-decoration: none;
  color: #372D34;
}

.logo-container {
  justify-content: center;
  gap: 1rem;
}
.logo-container .logo {
  width: 22%;
  height: auto;
}
.logo-container .sprite_1 {
  position: absolute;
  top: 6rem;
  left: -2vw;
  width: 15%;
}
.logo-container .sprite_2 {
  position: absolute;
  top: 6rem;
  right: -3vw;
  width: 17%;
}
.logo-container .sprite_3 {
  position: absolute;
  bottom: 2rem;
  right: 5vw;
  width: 16%;
}

.about-container {
  height: 75vh;
  display: flex;
  flex-direction: row !important;
  padding: 0 10vw 10vh 10vw !important;
}
.about-container div {
  flex: 1;
}
.about-container img {
  max-width: 100%;
  max-height: 75vh;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto;
}

.cta-container {
  padding: 15vh 3vw !important;
  background-color: #A580FF;
  color: #F9F7F2;
}
.cta-container p {
  max-width: 650px;
  text-align: center;
}

.case-studies-container {
  padding: 15vh 3vw !important;
}
.case-studies-container .section-title {
  font-family: "Cormorant Upright", serif;
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0;
  color: #372D34;
  margin-bottom: 4rem;
}
.case-studies-container .case-study-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: linear-gradient(135deg, #ffffff 0%, #faf8f5 50%, #f5f0eb 100%);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: #372D34;
  box-shadow: 0 4px 20px rgba(55, 45, 52, 0.06), 0 1px 3px rgba(55, 45, 52, 0.04);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  position: relative;
}
.case-studies-container .case-study-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(165, 128, 255, 0.3) 0%, rgba(165, 128, 255, 0.05) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.case-studies-container .case-study-card:hover, .case-studies-container .case-study-card:focus-visible {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 50px rgba(165, 128, 255, 0.15), 0 10px 30px rgba(55, 45, 52, 0.08), 0 4px 12px rgba(55, 45, 52, 0.04);
}
.case-studies-container .case-study-card:hover::before, .case-studies-container .case-study-card:focus-visible::before {
  opacity: 1;
}
.case-studies-container .case-study-card:hover .card-image img, .case-studies-container .case-study-card:focus-visible .card-image img {
  transform: scale(1.05);
}
.case-studies-container .case-study-card:hover .card-title::after, .case-studies-container .case-study-card:focus-visible .card-title::after {
  width: calc(100% + 1rem);
}
.case-studies-container .card-content {
  flex: 1;
  padding: 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
.case-studies-container .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.case-studies-container .tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #A580FF;
  color: #F9F7F2;
  font-family: "Source Code Pro", monospace;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.case-studies-container .case-study-card:hover .tag,
.case-studies-container .case-study-card:focus-visible .tag {
  background: #8857ff;
}
.case-studies-container .card-title {
  font-family: "Cormorant Upright", serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.1;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.case-studies-container .card-title::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 0;
  height: 0.15em;
  background: linear-gradient(90deg, #A580FF, rgba(165, 128, 255, 0.3));
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.case-studies-container .body-text {
  font-family: "Source Code Pro", monospace;
  margin: 0;
  color: rgba(55, 45, 52, 0.75);
  max-width: 400px;
}
.case-studies-container .card-image {
  flex: 0 0 40%;
  max-width: 400px;
  overflow: hidden;
}
.case-studies-container .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (max-width: 768px) {
  .case-studies-container .case-study-card {
    flex-direction: column-reverse;
  }
  .case-studies-container .card-content {
    padding: 2rem;
  }
  .case-studies-container .card-title {
    font-size: 2.5rem;
  }
  .case-studies-container .card-image {
    max-width: 100%;
    height: 250px;
  }
}

.under-construction {
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(165, 128, 255, 0.15) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 80% 100%, rgba(165, 128, 255, 0.1) 0%, transparent 40%), #F9F7F2;
}
.under-construction .construction-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}
.under-construction .construction-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  background: rgba(165, 128, 255, 0.1);
  border: 1px solid rgba(165, 128, 255, 0.2);
  border-radius: 100px;
  font-family: "Source Code Pro", monospace;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A580FF;
  margin-bottom: 2rem;
}
.under-construction .construction-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: #A580FF;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.under-construction .construction-title {
  font-family: "Cormorant Upright", serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 600;
  line-height: 1;
  margin: 0;
  color: #372D34;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #372D34 0%, rgba(55, 45, 52, 0.7) 50%, #A580FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.under-construction .construction-subtitle {
  font-family: "Source Code Pro", monospace;
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(55, 45, 52, 0.6);
  margin: 1rem 0 2.5rem;
  letter-spacing: 0.05em;
}
.under-construction .construction-divider {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.under-construction .construction-divider span {
  width: 6px;
  height: 6px;
  background: #A580FF;
  border-radius: 50%;
  opacity: 0.4;
}
.under-construction .construction-divider span:nth-child(2) {
  opacity: 0.7;
  animation: bounce 1.5s ease-in-out infinite 0.1s;
}
.under-construction .construction-divider span:nth-child(1), .under-construction .construction-divider span:nth-child(3) {
  animation: bounce 1.5s ease-in-out infinite;
}
.under-construction .construction-divider span:nth-child(3) {
  animation-delay: 0.2s;
}
.under-construction .construction-message {
  font-family: "Source Code Pro", monospace;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(55, 45, 52, 0.7);
  max-width: 400px;
  margin: 0 0 3rem;
}
.under-construction .construction-link {
  font-family: "Source Code Pro", monospace;
  font-size: 1.1rem;
  font-weight: 400;
  color: #372D34;
  text-decoration: none;
  padding: 0.25rem 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
.sticky-nav {
  position: fixed;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
  z-index: 1000;
  padding: 0.75rem;
  background: rgba(249, 247, 242, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(55, 45, 52, 0.08);
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(55, 45, 52, 0.08);
  transition: padding 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
}
.sticky-nav:hover {
  padding: 0.75rem;
  box-shadow: 0 6px 24px rgba(55, 45, 52, 0.12);
}
.sticky-nav:hover .nav-home span {
  width: 3.75rem;
  opacity: 1;
  margin-left: 0.5rem;
}
.sticky-nav .nav-home {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #372D34;
}
.sticky-nav .nav-home img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.sticky-nav .nav-home span {
  font-family: "Source Code Pro", monospace;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease, margin 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.sticky-nav .nav-home:hover img, .sticky-nav .nav-home:focus-visible img {
  transform: scale(1.1);
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5vh 3vw;
  background-color: #A580FF;
  color: #F9F7F2;
}/*# sourceMappingURL=style.css.map */