
/* Custom styles */

body {
  font-family: Inter var,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji,Segoe UI,Roboto,Noto,sans-serif;
}
h1, h2, h3, h4, h5, h6, .logo {
  font-family: "Lexend", sans-serif;
  font-display: swap;
  font-weight: 400;
  text-transform: capitalize;
  z-index: 10;
}

.highlight {
  position: relative;
  z-index: 1;
  text-align: center;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.highlight::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: calc(100% + 20px); /* Extends beyond text */
  height: 0.6em;
  background: linear-gradient(90deg, #fddb92 0%, #d1fdff 100%);
  z-index: -1;
  transform: rotate(-2deg);
  border-radius: 0.2em;
  opacity: 0.8;
  margin-left: -10px; /* Centers the extended highlight */
}


 section a:not([class]) {
  color: #DC2626;
  background-image: linear-gradient(#DC2626, #DC2626);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size .25s;
}

section a:not([class]):hover {
  color: #4b5563;
  background-size: 100% 1px;
  background-position: 0 100%;
}
section ul {
    padding-left: 0;
    margin-bottom: 1rem;
    list-style: none;
}
section ul li {
    background: 0 0;
    border: 0;
    border-bottom: 1px solid #E7E5E4;
    border-radius: 0;
    position: relative;
    display: block;
    padding: .75rem 2rem;
}
section ul li:before {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAACnUlEQVR4nO2a32oTURDG98o/F0oFbb3ThxFFUPTS6jOIxbfQeqEoiLc+glrUNyjiZbBpWliy831ntibttbViZJKQqMkme9JNziZ0YK5CwvfLzJmdObNRdGILavV6/QLJu0pZV2JDKVUlDpQ47PqBQra6n62n5J04jpeiMlitVjtNJg8U8tlBfinR8vH2d4CPKZP79lvRrC1JkrMOeOwI+oof4SBlLY7jMzOBcE5uOmK3QIB/o0TskMmNqQFY6B3wYloAAw68tcgXCpGm6YpCvs4Mgj2YL6q6XAiEql61cM8cgr1Uq5mGY0E45y51y2gQCO3D7O7txZcngrDqESSdmJ1mE5VopbwOLp7/RQby0rvEhhatGU7yei4IC59StkML1qyoEDu5Hpr2xA4tVsd4SnmUIxpAaKE63mXkwW83gOFFtvJFhauZINbFhhao+X0jc56YpBUP5Q5y1Gw2zw9JKxuKwgtUHwduDaYV5VlwYfSMCuXpEBAbQecO5N0ASLvLLIE49XKpDovIfnhh8HPI92Egh6UQRy//sdAg+yUQ1iogtcrb8Wo2yNbill/tXHXOFwjkyeK2KHEcL81V00j8HNo0ttML+DRHIB+iLLNb8TlKq3sLMepWKpVTmSCdQy9rJRDaGu3Jw5EQ/aiEvybVDLcuPfeNo+0nSgkB+Z0C1yIfc5RX5QPBcy+IXorZfqI8KbU59oBnGcmLZVkrpGm6EhWw6Ak4Bsu2c+7KsSD+glkOkWaO2LRlUzSNZahVjpmAAG+munu3/cR0U02q3iV2UrN/yq72rVUoECCxJ3aQNyA6QFy16dLuYr3PAOTIulhrACcurUWbzQYK3LZrTEd533mBRpr9l2qkqZBvNp7aZGdDUaPROFe4kBOLymF/ABJLtnetLON2AAAAAElFTkSuQmCC);
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    margin-top: 1px;
    background-size: contain;
    left: 0;
}

.progress-wrap {
    position: fixed;
    right: 3rem;
    bottom: 3rem;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transform: translateY(1rem);
}

.progress-wrap.active {
    opacity: 1;
    transform: translateY(0);
}

.progress-circle {
    position: absolute;
    width: 100%;
    height: 100%;
}

.progress-circle path {
    fill: none;
    stroke: #1c1917; /* stone-800 */
    stroke-width: 4;
    transition: stroke-dashoffset 10ms linear;
}

.progress-arrow {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c1917; /* stone-800 */
    transition: all 0.2s;
}

.progress-arrow:hover {
    transform: scale(1.25);
}

.progress-arrow svg {
    width: 18px;
    height: 18px;
}

.fade-out {
  opacity: 0.5;
  transition: opacity 0.3s;
}
.fade-in {
  opacity: 1;
  transition: opacity 0.3s;
}
