﻿
body {
    font-family: 'Inter', sans-serif;
    background-color: #EAEAE5;
    color: #1C1C1C;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}


.transparent-lettering {
    -webkit-text-stroke: 1px rgba(28, 28, 28, 0.15);
    color: transparent;
    font-weight: 700;
}

.hero-big-text {
    font-size: clamp(6rem, 15vw, 20rem);
    line-height: 0.8;
    letter-spacing: -0.05em;
    text-align: center;
    opacity: 0.08;
    user-select: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}


.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}


.text-clip-anim>span {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

.text-clip-anim.active>span {
    transform: translateY(0);
    opacity: 1;
}


.flashlight-card {
    background: rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.flashlight-card::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.8),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 2;
}

.flashlight-card:hover::before {
    opacity: 1;
}


.bg-grid {
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

.noise-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}


.btn-beam {
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-radius: 9999px;
    padding: 2px;
    display: inline-flex;
}

.btn-beam::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    background: conic-gradient(from 90deg at 50% 50%, #ffffff 0%, #1c1917 50%, #ffffff 100%);
    animation: spin 3s linear infinite;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-beam:hover::before {
    opacity: 1;
}

.btn-beam-content {
    background-color: #1c1917;
    color: #EAEAE5;
    padding: 0.75rem 1.5rem;
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.4s ease;
}

.btn-beam:hover .btn-beam-content {
    background-color: #292524;
}


.parallax-element {
    will-change: transform;
}


.glass-panel {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #EAEAE5;
}

::-webkit-scrollbar-thumb {
    background: #d6d3d1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a29e;
}

