::selection {
    background: rgba(212, 175, 55, 0.35);
    color: #faf8f5;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0b0f19;
}
::-webkit-scrollbar-thumb {
    background: #2a3450;
    border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c5a059;
}
html {
    scroll-behavior: auto;
}
body {
    background-color: #0b0f19;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
.gold-hairline {
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: border-color 0.3s ease;
}
.gold-hairline:hover {
    border-color: rgba(212, 175, 55, 0.5);
}
.glass-panel {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(11, 15, 25, 0.85);
    border-bottom: 1px solid rgba(212, 175, 55, 0.16);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.grain-overlay {
    position: relative;
}
.grain-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}
@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: none;
}
.reveal-d1 {
    transition-delay: 0.08s;
}
.reveal-d2 {
    transition-delay: 0.16s;
}
.reveal-d3 {
    transition-delay: 0.24s;
}
.mask-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.15em;
}
.mask-line > span {
    display: block;
    transform: translateY(115%);
    animation: mask-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.mask-line > span.d1 {
    animation-delay: 0.15s;
}
.mask-line > span.d2 {
    animation-delay: 0.32s;
}
.mask-line > span.d3 {
    animation-delay: 0.5s;
}
.mask-line > span.d4 {
    animation-delay: 0.68s;
}
.fade-in {
    opacity: 0;
    animation: fade-in 0.8s ease forwards;
}
.fade-in.d5 {
    animation-delay: 0.9s;
}
.fade-in.d6 {
    animation-delay: 1.1s;
}
@keyframes mask-up {
    to {
        transform: translateY(0);
    }
}
@keyframes fade-in {
    to {
        opacity: 1;
    }
}
.hero-img {
    animation: hero-zoom 9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform: scale(1.08);
    will-change: transform;
}
@keyframes hero-zoom {
    to {
        transform: scale(1);
    }
}
details.faq-item summary::-webkit-details-marker {
    display: none;
}
details.faq-item summary .faq-chevron {
    transition: transform 0.3s ease;
}
details.faq-item[open] summary .faq-chevron {
    transform: rotate(180deg);
}
input[type="date"] {
    color-scheme: dark;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
