:root {
    --ring: #0f766e;
}



body {
    font-family: "Plus Jakarta Sans", sans-serif;
    overflow-x: hidden;
    width: 100%;
}

* {
    box-sizing: border-box;
}

img,
svg,
video {
    max-width: 100%;
}

#app,
main,
section,
article,
aside,
form {
    min-width: 0;
}

h1,
h2,
h3,
p,
a,
span,
button {
    overflow-wrap: anywhere;
}

.font-display {
    font-family: "Fraunces", serif;
}

::-webkit-scrollbar {
    width: 11px;
    height: 11px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #d26d35;
    border-radius: 99px;
    border: 3px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background: #bb552a;
    background-clip: content-box;
}



.glass {
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}



.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
        transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.no-bar::-webkit-scrollbar {
    display: none;
}

.no-bar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.skel {
    position: relative;
    overflow: hidden;
    background: #ece3d8;
}



.skel::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    animation: shimmer 1.6s infinite;
}



a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
    border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

.clip-blob {
    clip-path: polygon(50% 0,
            83% 12%,
            100% 43%,
            92% 78%,
            62% 98%,
            30% 96%,
            4% 72%,
            0 38%,
            16% 11%);
}

.clip-star {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.clip-hexagon {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.clip-decagram {
    clip-path: polygon(50% 0%, 65% 15%, 85% 15%, 85% 35%, 100% 50%, 85% 65%, 85% 85%, 65% 85%, 50% 100%, 35% 85%, 15% 85%, 15% 65%, 0% 50%, 15% 35%, 15% 15%, 35% 15%);
}

.clip-diamond {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

[hidden] {
    display: none !important;
}

/* Enhanced Hero Styles */
.hero-slide {
    position: absolute;
    inset: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide.inactive {
    opacity: 0;
    pointer-events: none;
}

.hero-slide .bg-image {
    transition: transform 10s ease-in-out;
}

.hero-slide.active .bg-image {
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(255, 255, 255, 0.3) 100%);
}



.hero-dot {
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-dot.active {
    width: 2.5rem;
    background: #d26d35;
}

.hero-dot.inactive {
    width: 0.625rem;
    background: rgba(36, 28, 23, 0.2);
}



@media (max-width: 640px) {
    .hero-dot.active {
        width: 2rem;
    }

    #quickContent {
        border-radius: 1.25rem;
    }
}

@media (max-width: 380px) {
    .brand-word {
        display: none;
    }

    #app .grid.grid-cols-2,
    #app .grid.grid-cols-3 {
        grid-template-columns: minmax(0, 1fr) !important;
    }
}