/* ==========================================================================
   GLOBAL CSS SYSTEM
   ========================================================================== */

@import url("/assets/fonts/fonts.css");

:root {
    --bg-dark: #050505;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);

    --text-main: #ffffff;
    --text-muted: #d5d5d5;
    --text-dim: #959595;

    --mono: "Share Tech Mono", monospace;
    --sans: "Nunito Sans", sans-serif;
}

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

html,
body {
    height: 100%;
    background: #000;
    color: var(--text-main);
    font-family: var(--sans);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--sans);
    font-weight: 300;
    color: var(--text-main);
    line-height: 1.2;
    margin: 0;
}
strong,
b {
    font-weight: 700;
}
a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================================================
   MONITOR SHELL & BACKGROUNDS
   ========================================================================== */
.monitor-bezel {
    width: 95vw;
    max-width: 1400px;
    height: 95vh;
    background: #0a0a0a;
    border-radius: 24px;
    padding: 15px;
    box-shadow:
        0 0 0 2px #1a1a1a,
        0 20px 50px rgba(0, 0, 0, 0.8),
        inset 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
}

.monitor-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: var(--bg-dark);
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.9);
}

.monitor-screen::-webkit-scrollbar {
    width: 4px;
}
.monitor-screen::-webkit-scrollbar-track {
    background: transparent;
}
.monitor-screen::-webkit-scrollbar-thumb {
    background: var(--text-dim);
    border-radius: 4px;
}

.screen-bg {
    position: fixed;
    inset: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    filter: blur(15px) brightness(0.3) grayscale(50%);
    z-index: 0;
    pointer-events: none;
}

.screen-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%,
        rgba(0, 0, 0, 0.5) 50%
    );
    background-size: 100% 3px;
    pointer-events: none;
    z-index: 10;
}

/* Trippy Canvas Background */
#cyber-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* ==========================================================================
   LAYOUT & UTILITIES
   ========================================================================== */
.container {
    position: relative;
    z-index: 2;
    padding: 100px 5vw 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.micro-text {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    text-transform: uppercase;
    font-family: var(--mono);
}

.fade-element {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   HEADERS & HERO
   ========================================================================== */
.section-header {
    font-size: 32px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 300;
}

.hero {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin: 10px 0 20px;
}
.hero p {
    color: var(--text-muted);
    max-width: 600px;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Immersive Hero (Photo/Video) */
.hero-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 80px;
}
.hero-bg {
    position: absolute;
    inset: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.1);
    filter: brightness(0.6);
    transition:
        transform 0.1s linear,
        filter 0.1s linear,
        opacity 0.1s linear;
}
.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle, transparent 30%, var(--bg-dark) 100%),
        linear-gradient(0deg, var(--bg-dark) 0%, transparent 20%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.hero-title {
    font-size: clamp(40px, 8vw, 90px);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin: 0;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

/* Jump Links under Hero Headings */
.hero-jump-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}
.hero-jump-link {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero-jump-link:hover {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Social Links in Hero */
.hero-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}
.hero-social-link {
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero-social-link:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    opacity: 0.7;
    animation: bounce 2s infinite;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--text-main);
}
@keyframes bounce {
    0%,
    100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 10px);
    }
}

/* ==========================================================================
   INDEX DIRECTORY (Homepage)
   ========================================================================== */
.hud-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}
.hud-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    pointer-events: auto;
}
.hud-body::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -60px;
    right: -60px;
    height: 1px;
    background: var(--glass-border);
    pointer-events: none;
    z-index: -1;
}
.title-container {
    margin-bottom: 60px;
}
.title-main {
    font-family: var(--sans);
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--text-main);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.cycle-wrapper {
    position: relative;
    display: inline-block;
    min-width: 300px;
}
.directory-nav {
    max-width: 600px;
    margin-left: 10vw;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.dir-header {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    text-transform: uppercase;
}
.dir-list {
    list-style: none;
}
.dir-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.dir-item:last-child {
    border-bottom: none;
}
.dir-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-muted);
    padding: 16px 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.dir-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 2px;
    background: var(--text-main);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}
/* New Hover Animation for Homepage Links */
.dir-link:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
    padding-left: 25px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}
.dir-link:hover::before {
    transform: scaleY(1);
}
.dir-arrows {
    letter-spacing: -2px;
    margin-right: 15px;
    font-size: 12px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}
.dir-link:hover .dir-arrows {
    opacity: 1;
    transform: translateX(0);
}
.dir-name {
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-grow: 1;
    transition: transform 0.3s;
}
.dir-link:hover .dir-name {
    transform: translateX(5px);
}
.dir-meta {
    font-size: 10px;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    font-family: var(--mono);
    text-transform: uppercase;
}
.dir-link:hover .dir-meta {
    opacity: 1;
    transform: translateX(0);
}
.hud-arrows {
    position: absolute;
    bottom: 40px;
    right: 60px;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-dim);
}

/* ==========================================================================
   TABS & GALLERIES (Photography & Video)
   ========================================================================== */
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 5;
}

.filter-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.filter-tab {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--text-muted);
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: transparent;
    border-right: 1px solid var(--glass-border);
}
.filter-tab:last-child {
    border-right: none;
}
.filter-tab:hover {
    background: var(--glass-hover);
    color: var(--text-main);
}
.filter-tab.active {
    background: var(--text-main);
    color: #000;
    font-weight: 600;
}

#gallery {
    columns: 3;
    column-gap: 20px;
    margin-bottom: 100px;
    position: relative;
    z-index: 5;
}
.gallery-img {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    cursor: pointer;
    break-inside: avoid;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    background: var(--glass);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}
.gallery-img.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.gallery-img img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}
.gallery-img:hover img {
    transform: scale(1.03);
}
.gallery-img.hidden {
    display: none !important;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100%;
}

.gallery-img:hover .photo-overlay,
.photo-overlay.info-visible {
    opacity: 1;
}

.photo-overlay .title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.photo-overlay .description {
    font-size: 14px;
    margin: 5px 0 0 0;
}

/* Video Gallery Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
    position: relative;
    z-index: 5;
}
.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: #000;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        border-color 0.3s,
        box-shadow 0.3s;
}
.video-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.video-card.hidden {
    display: none !important;
}
.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    opacity: 0.8;
}
.video-card:hover video {
    transform: scale(1.03);
    opacity: 1;
}
.video-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}
.video-overlay {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 100%
    );
    pointer-events: none;
    transition: background 0.3s;
}
.video-overlay.always-visible {
    opacity: 1;
    pointer-events: auto;
}
.video-card:hover .video-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        transparent 100%
    );
}
.video-info {
    margin-bottom: 14px;
}
.video-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.3;
}
.video-desc {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    margin: 0;
    letter-spacing: 0.04em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.video-view-btn {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 7px 16px;
    border-radius: 3px;
    align-self: flex-start;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s;
}
.video-view-btn:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.7);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 5vw;
}
.lightbox.open {
    display: flex;
    opacity: 1;
}
.lightbox-container {
    width: 100%;
    height: 100%;
    max-width: 1400px;
    display: flex;
    background: #0a0a0a;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;
    cursor: auto;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.lightbox.open .lightbox-container {
    transform: scale(1);
}
.lightbox-media {
    flex: 3; /* Takes up 3/4 of the space */
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.lightbox-media img,
.lightbox-media video,
.lightbox-media iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
    outline: none;
    border: none;
}
.lightbox-info {
    flex: 1; /* Takes up 1/4 of the space */
    padding: 40px;
    overflow-y: auto;
    color: var(--text-muted);
}
.lightbox-info h3 {
    font-family: var(--sans);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}
.lightbox-info p {
    font-family: var(--mono);
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: var(--text-dim);
}
.lb-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--text-main);
    cursor: pointer;
    transition: color 0.2s;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    z-index: 1001;
}
.lb-close:hover {
    background: var(--glass-border);
}
@media (max-width: 900px) {
    .lightbox-container {
        flex-direction: column;
        height: 100%; /* Fill the entire screen height */
        width: 100%;
        border-radius: 0;
    }
    .lightbox-media {
        flex-grow: 1; /* Allow media to fill available space */
        position: absolute;
        inset: 0;
    }
    .lightbox-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        flex: 0;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.9) 0%,
            transparent 100%
        );
        padding: 60px 20px 20px; /* More padding at top for gradient */
        z-index: 2;
    }
    .lb-close {
        top: 20px;
        right: 20px;
        z-index: 3;
    }
}

/* ==========================================================================
   OS WINDOWS / GLOW CARDS (Websites / Advertising)
   ========================================================================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
    perspective: 1000px;
}

/* Interactive Glow Card */
.glow-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}
.glow-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.glow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

/* The hover glow effect */
.glow-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x) var(--mouse-y),
        rgba(255, 255, 255, 0.08),
        transparent 40%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}
.glow-card:hover::before {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card-header {
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}
.card-title {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
    justify-content: flex-start;
}
.card-info h3 {
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 10px;
    color: var(--text-main);
}
.card-info p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.card-tags {
    display: flex;
    gap: 10px;
    margin-top: auto;
    flex-wrap: wrap;
}
.card-tag {
    font-size: 12px;
    padding: 6px 14px;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
}

/* Pricing variants */
.price-amt {
    font-size: 48px;
    font-weight: 300;
    color: var(--text-main);
    margin-bottom: 5px;
    line-height: 1;
}
.price-sub {
    font-size: 12px;
    color: var(--text-dim);
    font-family: var(--mono);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.price-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}
.price-features li {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.price-features li::before {
    content: "+";
    color: var(--text-dim);
    font-family: var(--mono);
}

/* ==========================================================================
   ABOUT / MANIFESTO PANEL
   ========================================================================== */
.manifesto-panel {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--glass-border);
    padding: 80px;
    margin-bottom: 100px;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.manifesto-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(
        800px circle at var(--mouse-x) var(--mouse-y),
        rgba(255, 255, 255, 0.06),
        transparent 40%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}
.manifesto-panel:hover::before {
    opacity: 1;
}
.manifesto-content {
    position: relative;
    z-index: 1;
}
.manifesto-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    color: var(--text-main);
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 800px;
}
.manifesto-text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 700px;
}
.service-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    border-top: 1px dashed var(--glass-border);
    padding-top: 50px;
    margin-top: 20px;
}
.matrix-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.matrix-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    text-transform: uppercase;
    font-family: var(--mono);
}
.matrix-val {
    font-size: 18px;
    color: var(--text-main);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ==========================================================================
   UI COMPONENTS & FORMS
   ========================================================================== */
.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.3s;
}
.view-btn:hover {
    color: var(--text-muted);
    padding-left: 5px;
}

.cta-box {
    text-align: center;
    padding: 80px 40px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.cta-box h2 {
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 300;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.cta-box p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--text-main);
    color: #000;
    font-size: 14px;
    font-weight: 600;
    padding: 18px 36px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--text-main);
    position: relative;
    z-index: 1;
}
.cta-btn:hover {
    background: transparent;
    color: var(--text-main);
}

/* Forms */
.form-panel {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 12px;
    width: 100%;
}
.form-group {
    margin-bottom: 30px;
}
.form-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 600;
}
.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    font-family: var(--sans);
    font-size: 16px;
    padding: 18px;
    outline: none;
    transition: all 0.3s ease;
    border-radius: 6px;
}
.form-control:focus {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}
textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Radio grid */
.selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.radio-label {
    display: block;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    padding: 18px;
    text-align: center;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    color: var(--text-muted);
}
.radio-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.radio-label:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--text-main);
}
.radio-label.selected {
    background: var(--text-main);
    border-color: var(--text-main);
    color: #000;
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    background: var(--text-main);
    color: #000;
    border: 1px solid var(--text-main);
    border-radius: 6px;
    padding: 20px;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.submit-btn:hover {
    background: transparent;
    color: var(--text-main);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 900px) {
    #gallery {
        columns: 2;
    }
    .video-grid {
        grid-template-columns: 1fr;
    }
    .card-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .monitor-bezel {
        padding: 0;
        border-radius: 0;
        height: 100vh;
        width: 100vw;
        box-shadow: none;
        border: none;
    }
    .monitor-screen {
        border-radius: 0;
    }
    .container {
        padding: 100px 20px 40px;
    }
    .filter-tabs {
        flex-wrap: wrap;
    }
    .filter-tab {
        flex: 1 1 auto;
        text-align: center;
        border-bottom: 1px solid var(--glass-border);
        border-right: none;
    }
    .form-panel {
        padding: 30px 20px;
    }
    .selection-grid {
        grid-template-columns: 1fr;
    }
    .hud-layer {
        padding: 20px;
    }
    .manifesto-panel {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.global-footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 5vw;
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    background: rgba(0, 0, 0, 0.3);
}

.footer-nav-group {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav-col .label {
    color: var(--text-dim);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-nav-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
}

.footer-contact-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: right;
}

.footer-contact-group .email {
    color: var(--text-main);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.footer-contact-group .location {
    color: var(--text-dim);
    font-size: 13px;
}

@media (max-width: 768px) {
    .global-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
    }
    .footer-contact-group {
        align-items: flex-start;
        text-align: left;
    }
}

/* Glitch Hover Effect */
a,
button {
    transition:
        text-shadow 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}
.menu-link-glitch:hover,
.dir-link:hover .dir-name,
.view-btn:hover {
    text-shadow:
        2px 0px 0px rgba(0, 255, 255, 0.5),
        -2px 0px 0px rgba(255, 0, 255, 0.5);
    color: #fff !important;
}

/* Impressive Pricing Cards */
.price-card {
    background: linear-gradient(
        135deg,
        rgba(20, 20, 20, 0.8),
        rgba(5, 5, 5, 0.9)
    ) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 50px 40px !important;
    border-radius: 16px !important;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.price-card:hover {
    transform: translateY(-10px) !important;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}
.price-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    pointer-events: none;
}
.price-card:hover::after {
    left: 200%;
}
.price-amt {
    font-size: 56px !important;
    font-weight: 200 !important;
    letter-spacing: -0.03em !important;
    color: #fff !important;
    margin-bottom: 10px !important;
}
.tier-name {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #fff !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-bottom: 15px !important;
}

/* ==========================================================================
   FORM SUCCESS MESSAGE
   ========================================================================== */
.success-message {
    display: none;
    text-align: left;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    margin-top: 20px;
}
.success-message p {
    margin: 0;
    font-family: var(--mono);
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
}

/* ==========================================================================
   APPLE/TECH STYLE PRICING CARDS
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    margin-bottom: 100px;
}
.price-card {
    background: rgba(20, 20, 20, 0.6) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px !important;
    padding: 50px 40px !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}
.price-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}
.price-card.featured {
    background: rgba(30, 30, 30, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}
.price-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-main);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.tier-name {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: var(--text-main) !important;
    margin-bottom: 10px !important;
    border: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}
.price-amt {
    font-size: 48px !important;
    font-weight: 300 !important;
    color: var(--text-main) !important;
    margin-bottom: 5px !important;
    letter-spacing: -0.03em !important;
}
.price-sub {
    font-size: 15px !important;
    color: var(--text-muted) !important;
    margin-bottom: 30px !important;
    font-family: var(--sans) !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}
.price-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    width: 100%;
}
.price-features {
    list-style: none !important;
    margin-bottom: 40px !important;
    flex-grow: 1 !important;
    padding: 0 !important;
}
.price-features li {
    font-size: 15px !important;
    color: var(--text-muted) !important;
    margin-bottom: 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}
.price-features li::before {
    content: "" !important;
    display: inline-block !important;
    width: 16px !important;
    height: 16px !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    flex-shrink: 0 !important;
}
.price-btn {
    width: 100%;
    background: var(--text-main);
    color: #000;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition:
        opacity 0.2s,
        transform 0.2s;
}
.price-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}
.price-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.price-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}
