* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000;
    color: #fff;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    transition: opacity 0.5s ease;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.loading-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 0;
}

#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loading-text {
    font-size: 18px;
    font-weight: 300;
}

.pencil {
    display: block;
    width: 10em;
    height: 10em;
    color: #fff;
}

.pencil__body1,
.pencil__body2,
.pencil__body3,
.pencil__eraser,
.pencil__eraser-skew,
.pencil__point,
.pencil__rotate,
.pencil__stroke {
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.pencil__body1,
.pencil__body2,
.pencil__body3 {
    transform: rotate(-90deg);
}

.pencil__body1 {
    animation-name: pencilBody1;
}

.pencil__body2 {
    animation-name: pencilBody2;
}

.pencil__body3 {
    animation-name: pencilBody3;
}

.pencil__eraser {
    animation-name: pencilEraser;
    transform: rotate(-90deg) translate(49px,0);
}

.pencil__eraser-skew {
    animation-name: pencilEraserSkew;
    animation-timing-function: ease-in-out;
}

.pencil__point {
    animation-name: pencilPoint;
    transform: rotate(-90deg) translate(49px,-30px);
}

.pencil__rotate {
    animation-name: pencilRotate;
}

.pencil__stroke {
    animation-name: pencilStroke;
    transform: translate(100px,100px) rotate(-113deg);
}

@keyframes pencilBody1 {
    from,
    to {
        stroke-dashoffset: 351.86;
        transform: rotate(-90deg);
    }
    50% {
        stroke-dashoffset: 150.8;
        transform: rotate(-225deg);
    }
}

@keyframes pencilBody2 {
    from,
    to {
        stroke-dashoffset: 406.84;
        transform: rotate(-90deg);
    }
    50% {
        stroke-dashoffset: 174.36;
        transform: rotate(-225deg);
    }
}

@keyframes pencilBody3 {
    from,
    to {
        stroke-dashoffset: 296.88;
        transform: rotate(-90deg);
    }
    50% {
        stroke-dashoffset: 127.23;
        transform: rotate(-225deg);
    }
}

@keyframes pencilEraser {
    from,
    to {
        transform: rotate(-45deg) translate(49px,0);
    }
    50% {
        transform: rotate(0deg) translate(49px,0);
    }
}

@keyframes pencilEraserSkew {
    from,
    32.5%,
    67.5%,
    to {
        transform: skewX(0);
    }
    35%,
    65% {
        transform: skewX(-4deg);
    }
    37.5%,
    62.5% {
        transform: skewX(8deg);
    }
    40%,
    45%,
    50%,
    55%,
    60% {
        transform: skewX(-15deg);
    }
    42.5%,
    47.5%,
    52.5%,
    57.5% {
        transform: skewX(15deg);
    }
}

@keyframes pencilPoint {
    from,
    to {
        transform: rotate(-90deg) translate(49px,-30px);
    }
    50% {
        transform: rotate(-225deg) translate(49px,-30px);
    }
}

@keyframes pencilRotate {
    from {
        transform: translate(100px,100px) rotate(0);
    }
    to {
        transform: translate(100px,100px) rotate(720deg);
    }
}

@keyframes pencilStroke {
    from {
        stroke-dashoffset: 439.82;
        transform: translate(100px,100px) rotate(-113deg);
    }
    50% {
        stroke-dashoffset: 164.93;
        transform: translate(100px,100px) rotate(-113deg);
    }
    75%,
    to {
        stroke-dashoffset: 439.82;
        transform: translate(100px,100px) rotate(112deg);
    }
}
    overflow-x: hidden;
}

.scroll-container {
    position: relative;
}

.scroll-section {
    position: relative;
    height: 100vh;
}

.intro-section.scroll-section {
    height: 2800px;
    overflow: visible;
}

.video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    pointer-events: none;
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    margin: 10px auto 0;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    animation: scrollArrow 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollArrow {
    0% { opacity: 0; transform: rotate(45deg) translate(0, 0); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(10px, 10px); }
}

.main-content {
    position: relative;
    min-height: 100vh;
    z-index: 1;
    padding-top: 100px;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: opacity 1s ease;
}

.video-background.active {
    opacity: 0.3;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-wrapper {
    position: relative;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
    min-height: 100vh;
    padding: 120px 5% 5%;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease;
    z-index: 1000;
}

.main-nav.visible {
    opacity: 1;
    transform: translateY(0);
}

.logo.depth-text {
    --depth-text-perspective: 600px;
    --depth-text-font-size: 32px;
    --depth-text-font-weight: 900;
    --depth-text-face-color: #f0f4ff;
    --depth-text-depth-color: #667eea;
    --depth-text-shadow: 0 10px 18px color-mix(in srgb, #667eea 36%, transparent), 0 3px 6px rgba(0, 0, 0, 0.28);
}

.depth-text {
    display: inline-block;
    perspective: var(--depth-text-perspective);
    perspective-origin: 50% 48%;
    isolation: isolate;
}

.depth-text__stage {
    position: relative;
    display: inline-grid;
    place-items: center;
    transform-style: preserve-3d;
    transform: rotateX(-1.6deg) rotateY(2.1deg);
    transform-origin: 50% 50%;
    will-change: transform;
}

.depth-text__layer,
.depth-text__face {
    grid-area: 1 / 1;
    display: inline-block;
    font-size: var(--depth-text-font-size);
    font-weight: var(--depth-text-font-weight);
    line-height: 0.86;
    letter-spacing: -0.04em;
    white-space: nowrap;
    user-select: none;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    font-kerning: normal;
    text-rendering: geometricPrecision;
}

.depth-text__layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    filter: saturate(0.95) brightness(0.92);
    pointer-events: none;
}

.depth-text__face {
    position: relative;
    z-index: 1;
    color: var(--depth-text-face-color);
    text-shadow: var(--depth-text-shadow);
    transform: translateZ(0.6px);
}

@media (hover: hover) and (pointer: fine) {
    .depth-text {
        cursor: default;
    }
}

@media (prefers-reduced-motion: reduce) {
    .depth-text__stage {
        will-change: auto;
    }
}

.shiny-text {
    display: inline-block;
    background-image: linear-gradient(
        var(--shiny-spread, 120deg),
        var(--shiny-color, #e8e8e8) 0%,
        var(--shiny-color, #e8e8e8) 35%,
        var(--shiny-shine, #ffffff) 50%,
        var(--shiny-color, #e8e8e8) 65%,
        var(--shiny-color, #e8e8e8) 100%
    );
    background-size: 200% auto;
    background-position: 150% center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shiny-text-sweep var(--shiny-speed, 2s) linear infinite;
    animation-delay: var(--shiny-delay, 0s);
}

@keyframes shiny-text-sweep {
    0% { background-position: 150% center; }
    100% { background-position: -50% center; }
}

.nav-links a.shiny-text:hover,
.dropdown-menu a.shiny-text:hover {
    --shiny-color: #667eea;
    --shiny-shine: #c4b5fd;
}

@media (prefers-reduced-motion: reduce) {
    .shiny-text {
        animation: none;
        background: none;
        -webkit-text-fill-color: #fff;
        color: #fff;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-20px);
}

.main-nav.visible .nav-links a {
    opacity: 1;
    transform: translateY(0);
}

.nav-links li:nth-child(1) a { transition-delay: 0.1s; }
.nav-links li:nth-child(2) a { transition-delay: 0.2s; }
.nav-links li:nth-child(3) a { transition-delay: 0.3s; }

.dropdown {
    position: relative;
    z-index: 100;
}

.dropdown-toggle {
    cursor: pointer;
    padding: 8px 12px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    list-style: none;
    margin: 0;
    z-index: 10000;
    pointer-events: none;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
    opacity: 1;
    transform: none;
}

.dropdown-menu a:hover {
    background: rgba(102, 126, 234, 0.3);
}
.nav-links li:nth-child(4) a { transition-delay: 0.4s; }

.hero-content {
    text-align: center;
    padding: 100px 0 80px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease 0.3s;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    font-size: 72px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 24px;
    color: rgba(255,255,255,0.8);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    transition: all 0.6s ease;
    cursor: pointer;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.feature-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: #667eea;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a5b4fc;
    transition: color 0.3s ease, transform 0.3s ease;
}

.feature-icon .lucide-icon {
    width: 44px;
    height: 44px;
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.35));
}

.feature-card:hover .feature-icon {
    color: #dbe4ff;
    transform: translateY(-2px);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.product-section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    overflow: visible;
}

.product-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #fff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-grid {
    --card-accent: #667eea;
    --card-accent-light: #c4b5fd;
    --card-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 20px 0;
}

/* From Uiverse.io by imtausef - hungry-rattlesnake-3 */
.product-grid .parent {
    width: 300px;
    padding: 20px;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    text-decoration: none;
    color: inherit;
}

.product-grid .card {
    position: relative;
    padding-top: 50px;
    border: 3px solid #141414;
    transform-style: preserve-3d;
    background: linear-gradient(135deg, #0000 18.75%, #f3f3f3 0 31.25%, #0000 0),
        repeating-linear-gradient(45deg, #f3f3f3 -6.25% 6.25%, #141414 0 18.75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 0;
    background-color: #141414;
    width: 100%;
    box-shadow: rgba(102, 126, 234, 0.25) 0px 30px 30px -10px;
    transition: all 0.5s ease-in-out;
}

.product-grid .card:hover {
    background-position: -100px 100px, -100px 100px;
    transform: rotate3d(0.5, 1, 0, 30deg);
}

.product-grid .content-box {
    background: var(--card-gradient);
    transition: all 0.5s ease-in-out;
    padding: 60px 25px 25px 25px;
    transform-style: preserve-3d;
}

.product-grid .content-box .card-title {
    display: inline-block;
    color: #ffffff;
    font-size: 25px;
    font-weight: 900;
    transition: all 0.5s ease-in-out;
    transform: translate3d(0px, 0px, 50px);
}

.product-grid .content-box .card-title:hover {
    transform: translate3d(0px, 0px, 60px);
}

.product-grid .content-box .card-content {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    transition: all 0.5s ease-in-out;
    transform: translate3d(0px, 0px, 30px);
}

.product-grid .content-box .card-content:hover {
    transform: translate3d(0px, 0px, 60px);
}

.product-grid .content-box .see-more {
    cursor: pointer;
    margin-top: 1rem;
    display: inline-block;
    font-weight: 900;
    font-size: 9px;
    text-transform: uppercase;
    color: var(--card-accent-light);
    background: rgba(20, 20, 20, 0.85);
    padding: 0.5rem 0.7rem;
    transition: all 0.5s ease-in-out;
    transform: translate3d(0px, 0px, 20px);
}

.product-grid .content-box .see-more:hover {
    transform: translate3d(0px, 0px, 60px);
}

.product-grid .content-box .see-more.coming-soon {
    color: rgba(255, 255, 255, 0.55);
    background: rgba(20, 20, 20, 0.55);
    cursor: default;
}

.product-grid .content-box .see-more.coming-soon:hover {
    transform: translate3d(0px, 0px, 20px);
}

.product-grid .date-box {
    position: absolute;
    top: 30px;
    right: 30px;
    height: 60px;
    width: 60px;
    background: #141414;
    border: 1px solid var(--card-accent-light);
    padding: 10px;
    transform: translate3d(0px, 0px, 80px);
    box-shadow: rgba(102, 126, 234, 0.35) 0px 17px 10px -10px;
}

.product-grid .date-box span {
    display: block;
    text-align: center;
}

.product-grid .date-box .month {
    color: var(--card-accent-light);
    font-size: 9px;
    font-weight: 700;
}

.product-grid .date-box .date {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
}

.product-section.visible .product-grid .parent {
    opacity: 1;
    transform: translateY(0);
}

.product-section.visible .product-grid .parent:nth-child(1) { transition-delay: 0.2s; }
.product-section.visible .product-grid .parent:nth-child(2) { transition-delay: 0.4s; }
.product-section.visible .product-grid .parent:nth-child(3) { transition-delay: 0.6s; }

.product-card-link {
    display: block;
}

.main-footer {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 80px;
    opacity: 0;
    transition: opacity 0.8s ease 0.5s;
}

.main-footer.visible {
    opacity: 1;
}

.main-footer p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .nav-links {
        display: none;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}