/* =========================================================
WOLF STUDIOS
GLOBAL CSS 1
========================================================= */

/* =========================================================
RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 80% 10%, rgba(150, 100, 255, 0.08), transparent 35%),
        radial-gradient(circle at 10% 40%, rgba(90, 220, 255, 0.05), transparent 35%),
        #08090c;
    color: #f1f3f7;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================================
BACKGROUND
========================================================= */

.background-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
    opacity: 0.08;
    z-index: -1;
}

.glow-one {
    top: -250px;
    right: -150px;
    background: #a9f8ff;
}

.glow-two {
    bottom: -300px;
    left: -200px;
    background: #c391ff;
}

/* =========================================================
HEADER
========================================================= */

.site-header {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 100;
}

/* Brand */

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    overflow: hidden;
    background: #12141a;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 8px 30px rgba(0,0,0,0.35);

}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-tagline {
    margin-top: -1px;
    font-size: 11px;
    color: #737984;
}

/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
    font-size: 13px;
    color: #9298a4;
}

.main-nav a {
    transition:
        color 0.2s ease,
        transform 0.2s ease;
    cursor: pointer;
}

.main-nav a {
    color: #ffffff;
    transform: translateY(-1px);
}

/* Contribute */

.nav-contribute {
    padding: 9px 17px;
    border-radius: 8px;
    color: #0a0c10 !important;
    font-weight: 700;
    background: linear-gradient( 100deg, #a9f8ff, #c391ff);
    box-shadow: 0 5px 25px rgba(169,248,255,0.08);
    cursor: pointer;
}

/* Mobile button */

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid #292d36;
    border-radius: 9px;
    background: #101218;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-button span {
    width: 17px;
    height: 2px;
    background: #d5d8df;
    border-radius: 10px;
}

/* =========================================================
MAIN
========================================================= */

main {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
}

/* =========================================================
HERO
========================================================= */

.hero {
    min-height: 650px;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);
    align-items: center;
    gap: 90px;
    padding:
        90px
        0
        120px;
}

/* Hero content */

.hero-content {
    max-width: 650px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 11px;
    margin-bottom: 22px;
    border: 1px solid #222630;
    border-radius: 7px;
    background: rgba(255,255,255,0.015);
    color: #7e8592;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #a9f8ff;
    box-shadow:
        0 0 12px #a9f8ff;
}

/* Heading */

.hero h1 {
    font-size:
        clamp(3.5rem, 7vw, 6.6rem);
    line-height: 0.94;
    letter-spacing: -0.075em;
    font-weight: 800;
}

.hero h1 span {
    display: block;
    background:
        linear-gradient(
            100deg,
            #a9f8ff 0%,
            #c391ff 48%,
            #ff9ff8 100%
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Description */

.hero-description {
    max-width: 590px;
    margin-top: 28px;
    color: #858b97;
    font-size: 17px;
    line-height: 1.75;
}

/* Buttons */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 34px;
}

.button {
    min-height: 48px;
    padding: 0 19px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.button {
    transform: translateY(-2px);
}

.button-primary {
    color: #080a0e;
    background:
        linear-gradient(
            100deg,
            #a9f8ff,
            #c391ff
        );
    box-shadow:
        0 15px 45px rgba(195,145,255,0.12);
}

.button-primary {
    box-shadow:
        0 18px 50px rgba(195,145,255,0.2);
}

.button-secondary {
    color: #c3c7cf;
    border: 1px solid #292e38;
    background: rgba(255,255,255,0.015);
}

.button-secondary {
    border-color: #454b57;
    color: #ffffff;
}

/* Metadata */

.hero-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 32px;
    color: #555c68;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-meta strong {
    color: #8c929d;
}

.meta-divider {
    width: 1px;
    height: 12px;
    background: #292d35;
}

/* =========================================================
PRODUCT PREVIEW
========================================================= */

.hero-preview {
    position: relative;
    perspective: 1000px;
}

.preview-window {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #0e1015;
    border: 1px solid #252934;
    box-shadow:
        0 40px 100px rgba(0,0,0,0.55);
    transform:
        rotateY(-4deg)
        rotateX(2deg);
    transition:
        transform 0.5s ease;
}

.hero-preview .preview-window {
    transform:
        rotateY(0)
        rotateX(0)
        translateY(-5px);
}

/* Window header */

.window-top {
    height: 44px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 14px;
    background: #111319;
    border-bottom: 1px solid #20232b;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #383c45;
}

.window-title {
    font-size: 10px;
    color: #707681;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.window-version {
    justify-self: end;
    font-size: 9px;
    color: #505661;
}

/* Preview image */

.preview-image {
    height: 420px;
    position: relative;
    overflow: hidden;
    background: #080a0e;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.8s ease;
}

.hero-preview .preview-image img {
    transform: scale(1.025);
}

.preview-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.05),
            rgba(0,0,0,0.5)
        );
}

/* Preview label */

.preview-label {
    position: absolute;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border-radius: 7px;
    background: rgba(8,10,14,0.78);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    color: #b6bbc5;
    font-size: 10px;
    font-weight: 600;
}

.label-indicator {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #a9f8ff;
    box-shadow:
        0 0 10px #a9f8ff;
}

/* Shadow */

.preview-shadow {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -35px;
    height: 70px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(169,248,255,0.09),
            rgba(195,145,255,0.09),
            transparent
        );
    filter: blur(30px);
    z-index: -1;
}

/* =========================================================
FEATURES
========================================================= */

.features-section {
    padding: 40px 0 120px;
}

.section-heading {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 42px;
}

.section-number {
    padding-top: 7px;
    color: #a9f8ff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.section-label {
    color: #555c67;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.section-heading h2 {
    margin-top: 7px;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

/* Feature grid */

.feature-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 12px;
}

.feature-card {
    min-height: 245px;
    padding: 28px;
    border-radius: 13px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.008)
        );
    border: 1px solid #20242d;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.feature-card {
    transform: translateY(-4px);
    border-color: #333946;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.012)
        );
}

.feature-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 42px;
    border-radius: 9px;
    color: #a9f8ff;
    background: #12151b;
    border: 1px solid #272c35;
    font-size: 16px;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 9px;
    letter-spacing: -0.02em;
}

.feature-card p {
    max-width: 360px;
    color: #6e7581;
    font-size: 13px;
    line-height: 1.7;
}

/* =========================================================
PROJECT ANCIENT
========================================================= */

.ancient-section {
    padding-bottom: 120px;
}

.ancient-card {
    min-height: 390px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 65px;
    border-radius: 18px;
    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(195,145,255,0.09),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #11131a,
            #0b0d12
        );
    border: 1px solid #242832;
}
.ancient-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.project-label {
    color: #626975;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    margin-bottom: 17px;
}

.ancient-card h2 {
    font-size:
        clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.ancient-card h2 span {
    color: #c391ff;
}

.ancient-card p {
    max-width: 520px;
    margin: 25px 0 29px;
    color: #777e8b;
    font-size: 14px;
    line-height: 1.8;
}

/* Roman decoration */

.ancient-decoration {
    position: absolute;
    right: 5%;
    width: 390px;
    height: 390px;
    opacity: 0.28;
}

.roman-circle {
    position: absolute;
    inset: 40px;
    border: 1px solid #c391ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c391ff;
    font-size: 35px;
    font-weight: 300;
    letter-spacing: 0.2em;
}

.roman-circle::before,
.roman-circle::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(195,145,255,0.3);
    border-radius: 50%;
}

.roman-circle::after {
    inset: 75px;
    border-color: rgba(195,145,255,0.45);
}

.roman-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background:
        linear-gradient(
            transparent,
            rgba(195,145,255,0.45),
            transparent
        );
    transform-origin: center;
}

.line-one {
    transform: rotate(0deg);
}

.line-two {
    transform: rotate(60deg);
}

.line-three {
    transform: rotate(-60deg);
}

/* =========================================================
FOOTER
========================================================= */

.site-footer {
    padding: 45px 0 30px;
    border-top: 1px solid #1d2027;
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 34px;
    height: 34px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #242832;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand strong {
    display: block;
    font-size: 13px;
}

.footer-brand p {
    color: #555c67;
    font-size: 10px;
}

.footer-links {
    display: flex;
    gap: 25px;
    color: #686f7b;
    font-size: 11px;
}

.footer-links a {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #171a20;
    color: #444a54;
    font-size: 10px;
}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 900px) {

    .main-nav {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        padding: 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
        border: 1px solid #242832;
        border-radius: 12px;
        background: rgba(12,14,19,0.97);
        backdrop-filter: blur(20px);
        box-shadow:
            0 30px 80px rgba(0,0,0,0.5);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 12px;
        border-radius: 7px;
    }

    .main-nav a:hover {
        background: rgba(255,255,255,0.04);
        transform: none;
    }

    .nav-contribute {
        text-align: center;
        margin-top: 5px;
    }

    .mobile-menu-button {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 60px;
        padding-top: 60px;
    }

    .hero-content {
        max-width: 800px;
    }

    .hero-preview {
        max-width: 800px;
        width: 100%;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .ancient-decoration {
        right: -130px;
        opacity: 0.16;
    }

    }

    @media (max-width: 600px) {
    .site-header,
    main {
        width: min( 100% - 30px, 1400px);
    }

    .hero {
        padding-top: 45px;
        padding-bottom: 90px;
    }

    .hero h1 {
        font-size: 3.6rem;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-meta {
        flex-wrap: wrap;
        line-height: 1.5;
    }

    .preview-image {
        height: 280px;
    }

    .features-section,
    .ancient-section {
        padding-bottom: 90px;
    }

    .ancient-card {
        padding: 38px 28px;
        min-height: 470px;
    }

    .ancient-card h2 {
        font-size: 3.5rem;
    }

    .ancient-decoration {
        width: 280px;
        height: 280px;
        right: -110px;
        bottom: -70px;
    }

    .footer-main,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

}