/* ==========================================================================
   Eduardo Edits - Boutique Cinematic Design System (Peter Apple Inspired)
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    --bg-dark: #000000;
    --bg-surface: #070708;
    --bg-glass: rgba(10, 10, 10, 0.45);
    --border-glass: rgba(255, 255, 255, 0.05);
    --border-glass-glow: rgba(255, 255, 255, 0.22);
    
    /* Elegant Accent Colors (Minimalist high contrast) */
    --accent-pure-white: #ffffff;
    --accent-slate: #8e8e93;
    --accent-cyan: #ffffff;
    --accent-violet: #ffffff;
    
    /* Software specific brands for glowing card states */
    --resolve-color: #ff9f0a;
    --premiere-color: #00e5ff;
    --ae-color: #d500f9;
    --ps-color: #2979ff;
    --figma-color: #00e676;
    
    /* Typography Font Tokens */
    --font-header: 'Outfit', sans-serif;
    --font-action: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Constants */
    --max-width: 1200px;
    --border-radius-lg: 0px;
    --border-radius-md: 0px;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-snappy: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base resets & Cinematic foundations */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--accent-pure-white);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
}

/* Cinematic film grain overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.035;
    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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typography styles */
h1, h2, h3, h4 {
    font-family: var(--font-header);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--accent-pure-white);
}

p {
    font-family: var(--font-body);
    color: var(--accent-slate);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-snappy);
}

/* Universal Containers with balanced Boutique vertical spacing */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Inmersive Cinema-Wide horizontal container (Peter Apple Style) */
.container-wide {
    width: 94% !important;
    max-width: 1680px !important;
}

/* Glassmorphism system */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-action);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 15px 30px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--accent-pure-white);
    color: var(--bg-dark);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

.btn-full {
    width: 100%;
}

/* Minimalist Sticky Header (Billy Boman Style) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 4%;
    background: rgba(255, 255, 255, 0.03); /* Very subtle clear light tint */
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-left {
    display: flex;
    justify-content: flex-start;
}

.header-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    text-decoration: none;
    transition: var(--transition-snappy);
}

.header-logo:hover {
    transform: scale(1.02);
}

.header-title {
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.04em;
    color: var(--accent-pure-white);
    text-transform: uppercase;
    line-height: 1.25;
}

.header-subtitle {
    font-family: var(--font-action);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    margin-top: 3px;
    transition: var(--transition-snappy);
}

.header-logo:hover .header-subtitle {
    color: var(--accent-cyan);
}

/* Desktop Navigation Menu Links */
.header-nav-desktop {
    display: flex;
    gap: 36px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-desktop-item {
    font-family: var(--font-action);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-smooth);
}

.nav-desktop-item:hover {
    color: var(--accent-pure-white);
}

.nav-desktop-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-cyan);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-desktop-item:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-desktop-item.active {
    color: var(--accent-pure-white);
}

.nav-desktop-item.active::after {
    transform: scaleX(1);
    background-color: var(--accent-cyan);
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-hamburger {
    width: 24px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition-snappy);
    padding: 2px 0;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--accent-pure-white);
    border-radius: 1px;
    transition: var(--transition-snappy);
}

/* Hamburger Hover Anim Removed as requested */

/* Fullscreen Menu Overlay Styles */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(-30px);
}

.menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.menu-close-btn {
    position: absolute;
    top: 40px;
    right: 5%;
    background: transparent;
    border: none;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-slate);
    transition: var(--transition-snappy);
}

.menu-close-btn:hover {
    color: var(--accent-pure-white);
    transform: rotate(90deg) scale(1.1);
}

.close-icon {
    width: 32px;
    height: 32px;
}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.menu-item {
    font-family: var(--font-header);
    font-weight: 800;
    font-size: clamp(3rem, 7vw, 6rem);
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-transform: uppercase;
}

.menu-item:hover {
    color: var(--accent-pure-white);
    transform: translateX(20px);
}

.menu-item.active {
    color: var(--accent-pure-white);
}

/* Immersive Cinematic Rectangle Hero Display */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen cinematic height */
    min-height: 480px;
    max-height: none;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: #000;
}

.video-foreground {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 177.77vh; /* 16:9 ratio covers widescreen card */
    min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-foreground iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 140px 6% 60px 6%;
    z-index: 10;
}

.hero-tagline {
    font-family: var(--font-header);
    font-size: clamp(1.6rem, 2.8vw, 2.6rem);
    line-height: 1.18;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: auto;
}

.hero-tagline em {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    color: var(--accent-slate);
}

.hero-footer-title {
    margin-bottom: 0;
}

.hero-footer-title h1 {
    font-family: var(--font-header);
    font-size: clamp(3rem, 7vw, 7.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 0px;
    color: var(--accent-pure-white);
}

.hero-footer-title h2 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(3rem, 7vw, 7.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.6);
}

/* Core statements Pitch marquee */
.pitch-section {
    background-color: var(--bg-dark);
    padding: 36px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.pitch-marquee {
    width: 100vw;
    overflow: hidden;
}

.pitch-track {
    display: flex;
    gap: 70px;
    width: max-content;
    animation: scrollPitchMarquee 26s linear infinite;
}

@keyframes scrollPitchMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 35px)); }
}

.pitch-track span {
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.1em;
    color: var(--accent-slate);
}

.bullet {
    color: var(--accent-cyan) !important;
}

/* Alternating split-screen Case Studies */
.showcase-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1.22fr 0.78fr; /* Video player given dominant massive width ratio */
    gap: 80px;
    align-items: center;
    margin-bottom: 80px; /* Airy but compact vertical spacing */
}

.showcase-row.alternate {
    grid-template-columns: 0.78fr 1.22fr;
}

.showcase-row:last-child {
    margin-bottom: 0;
}

.showcase-visual {
    width: 100%;
    cursor: pointer;
    position: relative;
}

.visual-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent-pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    box-shadow: 0 6px 25px rgba(0,0,0,0.6);
    transition: var(--transition-smooth);
}

.play-indicator svg {
    width: 26px;
    height: 26px;
    fill: var(--bg-dark);
    margin-left: 4px;
}

.showcase-visual:hover .visual-wrapper {
    transform: scale(0.99) translateY(-4px);
    border-color: var(--border-glass-glow);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.showcase-visual:hover .play-indicator {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.visual-title {
    display: block;
    margin-top: 18px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-slate);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.showcase-visual:hover .visual-title {
    color: var(--accent-pure-white);
}

/* Showcase testimonial Card bubble */
.showcase-info {
    padding: 20px 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.client-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.brand-logo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--accent-pure-white);
    flex-shrink: 0;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.client-brand h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.client-brand span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--accent-slate);
    display: block;
}

.client-brand p {
    font-size: 0.75rem;
    color: var(--accent-slate);
    font-style: italic;
}

.client-quote {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.15vw, 1.15rem);
    line-height: 1.65;
    font-style: italic;
    color: var(--accent-slate);
    border-left: none;
    padding-left: 0;
}

/* Card Mouse Movement Glow Effect (Framer Style) */
.card-glow-hover {
    position: relative;
}

.card-glow-hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.045), transparent 42%);
    z-index: 1;
    pointer-events: none;
}

/* Additional Widescreen List Grid */
.more-work-section {
    background-color: var(--bg-surface);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 80px 0;
}

.more-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.more-item {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.more-item:hover {
    transform: translateY(-4px);
}

.more-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    border-radius: 0;
    transition: var(--transition-smooth);
}

.more-item:hover .more-thumb {
    border-color: var(--border-glass-glow);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.more-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.more-play svg {
    width: 18px;
    height: 18px;
    fill: var(--bg-dark);
    margin-left: 2px;
}

.more-item:hover .more-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.more-desc {
    padding: 16px 0 0 0;
}

.more-desc span {
    font-family: var(--font-action);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 4px;
}

.more-desc h4 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Shorts Vertical Grid Layout */
.shorts-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
}

.shorts-p {
    font-size: 0.95rem;
    color: var(--accent-slate);
    margin-top: -30px;
    margin-bottom: 50px;
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.short-card {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.short-card:hover {
    transform: translateY(-6px);
}

.short-thumb {
    width: 100%;
    aspect-ratio: 9 / 16;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    border-radius: 0;
    transition: var(--transition-smooth);
}

.short-card:hover .short-thumb {
    border-color: var(--border-glass-glow);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.short-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.short-play svg {
    width: 18px;
    height: 18px;
    fill: var(--bg-dark);
    margin-left: 2px;
}

.short-card:hover .short-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.short-info {
    padding: 16px 0 0 0;
}

.short-info span {
    font-family: var(--font-action);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 4px;
}

.short-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.35;
}

/* Toolstack Section ("My Toolstack" with customized glows) */
.toolstack-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
}

.toolstack-header {
    margin-bottom: 0;
}

.section-tagline {
    font-family: var(--font-action);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-cyan);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.toolstack-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
}

.tool-app-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 0px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tool-item:hover .tool-app-icon {
    transform: translateY(-8px) scale(1.05);
}

.tool-years {
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-slate);
    letter-spacing: 0.02em;
}

/* Process Section ("How It Works") */
.process-section {
    background-color: var(--bg-surface);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 80px 0;
}

.process-header {
    margin-bottom: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.process-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0px;
    padding: 60px 48px 48px 48px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-4px);
}

.process-chip {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0px;
    font-size: 0.9rem;
    font-family: var(--font-header);
    font-weight: 700;
    color: var(--accent-pure-white);
}

/* Illustration Boxes */
.illus-box {
    width: 100%;
    height: 180px;
    background: transparent;
    border: none;
    border-radius: 0;
    margin-top: 10px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card 1: Upload pipeline */
.illus-upload {
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 75, 43, 0.02) 0%, transparent 60%);
}
.illus-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.sat-node {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}
.sat-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 50%;
}
.sat-dropbox {
    background: rgba(0, 97, 255, 0.15) !important;
    border: 1px solid rgba(0, 97, 255, 0.3) !important;
    left: 15%;
    top: 50%;
    transform: translateY(-50%);
}
.sat-wetransfer {
    background: rgba(60, 20, 164, 0.15) !important;
    border: 1px solid rgba(60, 20, 164, 0.3) !important;
    left: 36%;
    top: 18%;
}
.sat-gdrive {
    background: rgba(28, 155, 94, 0.15) !important;
    border: 1px solid rgba(28, 155, 94, 0.3) !important;
    left: 36%;
    bottom: 18%;
}
.center-glow-node {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7e40, #ff4b2b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: absolute;
    right: 18%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    box-shadow: 0 0 25px rgba(255, 75, 43, 0.5);
}
.center-glow-node svg {
    width: 24px;
    height: 24px;
    animation: pulseGlowNode 3s infinite ease-in-out;
}
@keyframes pulseGlowNode {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.9; }
}

/* Card 2: Software badges & Timeline */
.illus-tools {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.mini-timeline {
    width: 85%;
    height: 62px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 6px;
}
.timeline-track {
    width: 100%;
    height: 12px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0;
    display: flex;
    gap: 2px;
    padding: 1px;
}
.timeline-clip {
    height: 100%;
    border-radius: 0;
}
.timeline-playhead {
    position: absolute;
    left: 40%;
    top: -4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}
.playhead-triangle {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #ffffff;
}
.playhead-line {
    width: 1px;
    height: 70px;
    background: #ffffff;
}
.tools-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.pr-mini, .ps-mini, .ae-mini, .au-mini {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.pr-mini-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.render-badge {
    position: absolute;
    bottom: -16px;
    background: #111;
    color: #bbb;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 0;
    font-size: 0.5rem;
    font-family: monospace;
    text-transform: uppercase;
}

/* Card 3: Frame.io Style Feedback */
.illus-feedback {
    background-image: radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.01) 0%, transparent 60%);
}
.frameio-player {
    height: 110px;
    aspect-ratio: 16 / 9;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.player-screen {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.01);
}
.player-timeline {
    height: 15px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.player-progress {
    height: 100%;
    width: 45%;
    background: linear-gradient(to right, #00d4ff, #9c27b0);
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}
.comment-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 8px #00d4ff;
}
.marker-1 { left: 45%; }
.marker-2 { left: 75%; background: #9c27b0; box-shadow: 0 0 8px #9c27b0; }

.feedback-bubble {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-15%);
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    z-index: 5;
    white-space: nowrap;
}
.feedback-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #9c27b0);
    color: #000000;
    font-size: 0.52rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feedback-bubble span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    color: #111;
}

/* Card 4: Calendar & Delivery */
.illus-launch {
    background-image: radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.01) 0%, transparent 60%);
}
.calendar-widget {
    width: 110px;
    height: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    position: absolute;
    top: 15%;
    left: 15%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transform: rotate(-3deg);
}
.calendar-header {
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
}
.calendar-dots {
    display: flex;
    gap: 3px;
}
.calendar-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}
.calendar-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}
.cal-row {
    display: flex;
    justify-content: space-between;
}
.cal-day {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}
.cal-day.active {
    background: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}
.scheduled-badge {
    position: absolute;
    bottom: -10px;
    right: -15px;
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.55rem;
    font-family: var(--font-header);
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transform: rotate(6deg);
}
.scheduled-badge svg {
    color: #00e676;
}
.publish-badge {
    position: absolute;
    right: 12%;
    bottom: 25%;
    background: #00d4ff;
    color: #000000;
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 10px 24px;
    border-radius: 0;
    transform: rotate(8deg);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.mp4-delivery-badge {
    position: absolute;
    left: 8%;
    bottom: 20%;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: monospace;
    font-size: 0.65rem;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    z-index: 5;
    transform: rotate(-4deg);
}
.mp4-delivery-badge svg.file-icon {
    color: #00d4ff;
    flex-shrink: 0;
}
.mp4-delivery-badge svg.download-icon {
    color: #00e676;
    margin-left: 2px;
    flex-shrink: 0;
}

.process-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-top: 10px;
}

.process-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ (Got Questions?) Accordion Layout */
.faq-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
}

.faq-container-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.faq-header-centered {
    text-align: center;
    margin-bottom: 40px;
}

.faq-desc-centered {
    font-size: 0.95rem;
    line-height: 1.65;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.faq-accordion-centered {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-glass);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition-snappy);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--accent-pure-white);
    text-align: left;
    outline: none;
}

.faq-question span {
    padding-right: 20px;
}

.chevron-svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-slate);
    transition: var(--transition-snappy);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.005);
}

.faq-answer p {
    padding: 0 30px 24px 30px;
    font-size: 0.92rem;
    line-height: 1.65;
}

/* Open Accordion States */
.faq-item.active {
    border-color: var(--border-glass-glow);
    background: rgba(255, 255, 255, 0.03);
}

.faq-item.active .chevron-svg {
    transform: rotate(180deg);
    fill: var(--accent-cyan);
}

/* About Me Section */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    position: relative;
}

.about-container {
    max-width: var(--max-width);
    width: 90%;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.about-visual {
    width: 100%;
    height: 100%;
}

.about-photo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    background: #000;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    transition: var(--transition-smooth);
}

.about-photo-wrapper:hover .about-photo {
    transform: scale(1.03);
    opacity: 1;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--accent-slate);
    margin-bottom: 40px;
    max-width: 800px;
    width: 100%;
}

.experience-stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.experience-number {
    font-size: 7.5rem;
    font-family: var(--font-header);
    font-weight: 900;
    line-height: 0.9;
    color: #ffffff;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.15));
}

.experience-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-header);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-pure-white);
}

.glowing-blue-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 0 12px #ffffff, 0 0 20px #ffffff;
}

.about-email-box {
    margin-bottom: 40px;
}

.about-email-box span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--accent-slate);
    display: block;
    margin-bottom: 6px;
}

.about-email-link {
    font-family: var(--font-header);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--accent-pure-white);
    text-decoration: none;
    transition: var(--transition-snappy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4px;
}

.about-email-link:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

.about-socials {
    display: flex;
    gap: 16px;
}

.about-social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-snappy);
}

.about-social-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-slate);
    transition: var(--transition-snappy);
}

.about-social-icon:hover {
    border-color: var(--border-glass-glow);
    background: rgba(255, 255, 255, 0.04);
}

.about-social-icon:hover svg {
    fill: var(--accent-pure-white);
}

.about-visual {
    display: flex;
    justify-content: center;
}

.visual-badge-frame {
    width: 100%;
    max-width: 380px;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.timeline-visual-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.visual-stack-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-md);
    font-family: monospace;
    font-size: 0.8rem;
}

.stack-tag {
    color: var(--accent-cyan);
}

.stack-val {
    color: var(--accent-slate);
}

/* Premium Cinematic Contact Section */
.contact-section {
    background-color: var(--bg-dark);
    padding: 80px 0 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: var(--max-width);
    width: 90%;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-visual-wrapper {
    position: sticky;
    top: 120px;
    width: 100%;
}

.contact-visual-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1.3 / 1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-loop-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.contact-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    pointer-events: none;
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form-heading {
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--accent-pure-white);
    margin-bottom: 30px;
    text-transform: capitalize;
}

.contact-form-sleek {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group-sleek {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group-sleek label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: none;
}

.form-row-sleek {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-subgroup {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-label-desc {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--accent-slate);
    opacity: 0.8;
}

.form-group-sleek input,
.form-group-sleek select,
.form-group-sleek textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #000000;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    border-radius: 0;
}

.form-group-sleek input::placeholder,
.form-group-sleek textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.form-group-sleek select option {
    background-color: #ffffff;
    color: #000000;
}

.form-group-sleek input:focus,
.form-group-sleek select:focus,
.form-group-sleek textarea:focus {
    outline: none;
    border-color: #ffffff;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.insta-input-wrapper-sleek {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 0;
    overflow: hidden;
}

.insta-input-wrapper-sleek .at-prefix {
    padding: 0 14px;
    font-family: var(--font-body);
    font-weight: 500;
    color: #000000;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.insta-input-wrapper-sleek input {
    border: none;
    background: transparent;
    color: #000000;
    padding: 14px 18px 14px 10px;
    border-radius: 0;
}

.insta-input-wrapper-sleek input:focus {
    box-shadow: none;
}

.insta-input-wrapper-sleek:focus-within {
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.btn-sleek-send {
    margin-top: 15px;
    width: 100%;
    padding: 16px;
    background-color: var(--accent-pure-white);
    color: var(--bg-dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.btn-sleek-send:hover {
    background-color: var(--accent-pure-white);
    color: var(--bg-dark);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.premium-hourglass-wrapper {
    position: relative;
    width: 240px;
    height: 280px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.premium-hourglass-video {
    width: 100%;
    max-width: 220px;
    height: auto;
    mix-blend-mode: screen;
    filter: drop-shadow(0 15px 35px rgba(255, 255, 255, 0.15));
    position: relative;
    z-index: 2;
}

.hourglass-3d {
    position: relative;
    width: 100px;
    height: 180px;
    transform-style: preserve-3d;
    animation: rotate3dHourglass 12s infinite linear;
}

@keyframes rotate3dHourglass {
    0% { transform: rotateY(0deg) rotateX(8deg); }
    50% { transform: rotateY(180deg) rotateX(-8deg); }
    100% { transform: rotateY(360deg) rotateX(8deg); }
}

.cone-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 8px 16px rgba(255, 255, 255, 0.2);
}

.cone-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 85%);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.cone-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 80px;
    background: linear-gradient(315deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 -8px 16px rgba(255, 255, 255, 0.2);
}

.cone-bottom::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 85%);
    box-shadow: 0 -4px 12px rgba(255, 255, 255, 0.15);
}

.glass-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 24px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    z-index: 5;
    animation: flowSand 3s infinite linear;
}

@keyframes flowSand {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; height: 28px; }
}

.btn-outline-minimal {
    display: inline-block;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: var(--accent-pure-white);
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    padding: 16px 44px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-top: 20px;
}

.btn-outline-minimal:hover {
    background: var(--accent-pure-white);
    color: #000;
    border-color: var(--accent-pure-white);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Minimal Footer Layout */
.footer-minimal {
    padding: 40px 0 40px 0;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-minimal-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    font-family: var(--font-header);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--accent-pure-white);
    margin-bottom: 8px;
}

.footer-email {
    font-family: var(--font-header);
    font-size: 0.95rem;
    color: var(--accent-slate);
    text-decoration: none;
    transition: var(--transition-snappy);
    margin-bottom: 40px;
}

.footer-email:hover {
    color: var(--accent-pure-white);
}

.footer-copyright {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.18);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.footer-right {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    position: relative;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link-item {
    font-family: var(--font-header);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--accent-slate);
    text-decoration: none;
    transition: var(--transition-snappy);
}

.footer-link-item:hover {
    color: var(--accent-pure-white);
    transform: translateX(2px);
}

.footer-credit {
    position: absolute;
    bottom: -40px;
    right: 0;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.18);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Widescreen & Vertical Lightbox Video Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 960px;
    transition: var(--transition-smooth);
    transform: scale(0.92);
}

.modal-container.short-format {
    max-width: 360px; /* Centered Vertical Shorts framework */
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.modal-close svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-slate);
    transition: var(--transition-snappy);
}

.modal-close:hover svg {
    fill: var(--accent-pure-white);
    transform: rotate(90deg);
}

.modal-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 0;
    border: 1px solid var(--border-glass);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-video-wrapper.short-wrapper {
    aspect-ratio: 9 / 16;
}

.modal-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
    .showcase-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 100px;
    }
    .showcase-row.alternate {
        grid-template-columns: 1fr;
    }
    .showcase-row.alternate .showcase-info {
        order: 2; /* Testimonial falls below video */
    }
    .more-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shorts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .faq-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}

@media (max-width: 768px) {
    .header {
        height: 70px;
        padding: 0 6%;
    }
    .header-title {
        font-size: 0.95rem;
    }
    .header-subtitle {
        font-size: 0.5rem;
    }
    .hero-content {
        padding: 110px 6% 40px 6%;
    }
    .more-grid {
        grid-template-columns: 1fr;
    }
    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-container {
        padding: 40px 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    /* Standardized mobile spacing & grid stack */
    .showcase-section,
    .more-work-section,
    .shorts-section,
    .toolstack-section,
    .process-section,
    .faq-section,
    .about-section,
    .contact-section {
        padding: 80px 0;
    }
    .process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .toolstack-flex {
        gap: 30px;
    }
    .more-title,
    .faq-header-centered {
        margin-bottom: 40px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }
    .about-photo-wrapper {
        max-width: 340px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .shorts-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Multi-Page Core Styles & Exploration Grid
   ========================================================================== */

/* Page Intro Section */
.page-intro-section {
    padding: 150px 0 30px;
    position: relative;
    z-index: 10;
}

.intro-eyebrow {
    font-family: var(--font-action);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: var(--accent-cyan);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.intro-title {
    font-family: var(--font-header);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--accent-pure-white);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.intro-tagline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Quick Explore Section on Homepage */
.explore-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.explore-header {
    margin-bottom: 60px;
}

.explore-eyebrow {
    font-family: var(--font-action);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: var(--accent-cyan);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.explore-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 16px auto 0;
    line-height: 1.6;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.explore-card {
    position: relative;
    height: 440px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.explore-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    z-index: 1;
}

.explore-card:hover .explore-card-bg {
    transform: scale(1.05);
    opacity: 0.75;
}

.explore-card-content {
    position: relative;
    z-index: 2;
}

.explore-card-icon {
    color: var(--accent-cyan);
    margin-bottom: 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
}

.explore-card:hover .explore-card-icon {
    transform: translateY(-5px);
}

.explore-card h3 {
    font-family: var(--font-header);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-pure-white);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.explore-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 24px;
}

.explore-card-link {
    font-family: var(--font-action);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
}

.explore-card:hover .explore-card-link {
    color: var(--accent-pure-white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.explore-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

/* Responsive Header Links & Explorer */
@media (max-width: 1024px) {
    .header-nav-desktop {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .explore-card {
        height: 340px;
        padding: 30px;
    }
}

@media (min-width: 1025px) {
    .nav-hamburger {
        display: none;
    }
}
