/*
Theme Name: The Creators
Theme URI: https://thecreators.com.br/
Author: The Creators
Author URI: https://thecreators.com.br/
Description: Tema personalizado para a agência The Creators - Animado, fluido e moderno.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thecreators
Tags: one-page, portfolio, dark, animations, creative-agency
*/

/* ============================================
   CUSTOM FONT
   ============================================ */
@font-face {
    font-family: 'TheCreators';
    src: url('./assets/font/TheCreators_1.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   CSS VARIABLES & ROOT
   ============================================ */
:root {
    --tc-black: #0a0a0a;
    --tc-dark: #111111;
    --tc-dark-alt: #1a1a1a;
    --tc-gray: #2a2a2a;
    --tc-gray-light: #888888;
    --tc-white: #ffffff;
    --tc-off-white: #f0f0f0;
    --tc-accent: #00d4ff;
    --tc-accent-alt: #7b2ff7;
    --tc-gradient: linear-gradient(135deg, var(--tc-accent), var(--tc-accent-alt));
    --tc-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --tc-font-display: 'Space Grotesk', var(--tc-font-primary);
    --tc-transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --tc-transition-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --tc-radius: 16px;
    --tc-radius-sm: 8px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--tc-font-primary);
    background-color: var(--tc-black);
    color: var(--tc-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--tc-accent);
    text-decoration: none;
    transition: color 0.3s var(--tc-transition);
}

a:hover {
    color: var(--tc-accent-alt);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--tc-font-display);
    font-weight: 700;
    line-height: 1.2;
}

/* ============================================
   LAYOUT
   ============================================ */
.tc-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.tc-section {
    padding: clamp(4rem, 10vh, 8rem) 0;
    position: relative;
}

/* ============================================
   NAV / HEADER
   ============================================ */
.tc-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s var(--tc-transition);
    backdrop-filter: blur(0px);
}

.tc-header.scrolled {
    padding: 0.8rem 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tc-header .tc-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tc-logo {
    font-family: var(--tc-font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--tc-white);
    letter-spacing: -0.5px;
    transition: transform 0.3s var(--tc-transition-spring);
}

.tc-logo:hover {
    transform: scale(1.05);
    color: var(--tc-white);
}

.tc-logo img {
    height: 60px;
    width: auto;
    filter: invert(1);
}

.tc-loader .tc-logo img {
    height: 120px;
    width: auto;
    filter: invert(1) drop-shadow(0 4px 25px rgba(160, 60, 255, 0.25));
}

.tc-logo .tc-logo-accent {
    background: var(--tc-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.tc-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.tc-nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.tc-nav-link {
    color: var(--tc-off-white);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s var(--tc-transition);
}

.tc-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: var(--tc-gradient);
    transition: transform 0.4s var(--tc-transition-spring);
    border-radius: 2px;
}

.tc-nav-link:hover,
.tc-nav-link.active {
    color: var(--tc-white);
}

.tc-nav-link:hover::after,
.tc-nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Mobile Menu Toggle */
.tc-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: none;
    border: none;
}

.tc-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--tc-white);
    transition: all 0.4s var(--tc-transition);
    border-radius: 2px;
}

.tc-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.tc-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.tc-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   FIRST SECTION (original layout: logo + menu)
   ============================================ */
.tc-first-section {
    background: linear-gradient(180deg, #1a0533 0%, #2d1b4e 25%, #4a1942 50%, #2d1b4e 75%, #1a0533 100%);
    background-size: 100% 300%;
    animation: tc-purple-shift 12s ease-in-out infinite;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.tc-first-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(128, 0, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(200, 50, 180, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(100, 20, 200, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.tc-first-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.tc-hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    pointer-events: none;
}

.tc-first-section .tc-container,
.tc-first-section-grid,
.tc-first-section-logo,
.tc-first-section-menu {
    position: relative;
    z-index: 2;
}

@keyframes tc-purple-shift {
    0%, 100% { background-position: 50% 0%; }
    50% { background-position: 50% 100%; }
}

.tc-first-section .tc-container {
    display: flex;
    align-items: stretch;
    width: 100%;
    padding: 0;
    max-width: 100%;
}

.tc-first-section-grid {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* Logo Column */
.tc-first-section-logo {
    flex: 0 0 auto;
    width: clamp(120px, 15vw, 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.tc-first-logo-img {
    width: 150px;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    transition: transform 0.6s var(--tc-transition), filter 0.6s var(--tc-transition);
    filter: drop-shadow(0 4px 25px rgba(160, 60, 255, 0.25));
}

.tc-first-logo-img:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 8px 40px rgba(160, 60, 255, 0.4));
}

/* Menu Column */
.tc-first-section-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.tc-first-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-first-menu-list {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.tc-first-menu-list .tc-nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(0.75rem, 1.2vw, 0.95rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0.75rem 1.5rem;
    position: relative;
    transition: color 0.3s var(--tc-transition), transform 0.3s var(--tc-transition), text-shadow 0.3s ease;
}

.tc-first-menu-list .tc-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, #a855f7, #d946ef);
    transition: transform 0.4s var(--tc-transition-spring);
    border-radius: 2px;
}

.tc-first-menu-list .tc-nav-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.tc-first-menu-list .tc-nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Hide the fixed header on front page when in first section view */
body.home .tc-header {
    transform: translateY(-100%);
    transition: transform 0.5s var(--tc-transition), background 0.5s var(--tc-transition), padding 0.5s var(--tc-transition);
}

body.home .tc-header.scrolled {
    transform: translateY(0);
}

/* ============================================
   HERO SECTION (kept for inner pages if needed)
   ============================================ */
.tc-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tc-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.tc-hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(123, 47, 247, 0.08) 0%, transparent 50%);
    animation: tc-hero-glow 15s ease-in-out infinite alternate;
}

@keyframes tc-hero-glow {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-5%, 5%) rotate(10deg); }
}

.tc-hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
}

.tc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--tc-gray-light);
    margin-bottom: 2rem;
}

.tc-hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--tc-accent);
    border-radius: 50%;
    animation: tc-pulse 2s ease-in-out infinite;
}

@keyframes tc-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.tc-hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
}

.tc-hero-title .line {
    display: block;
    overflow: hidden;
}

.tc-hero-title .line span {
    display: inline-block;
    transform: translateY(100%);
    animation: tc-reveal 1s var(--tc-transition) forwards;
}

.tc-hero-title .line:nth-child(2) span {
    animation-delay: 0.15s;
}

.tc-hero-title .gradient-text {
    background: var(--tc-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes tc-reveal {
    to { transform: translateY(0); }
}

.tc-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--tc-gray-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: tc-fade-up 0.8s var(--tc-transition) 0.5s forwards;
}

@keyframes tc-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

.tc-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--tc-gradient);
    color: var(--tc-white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.4s var(--tc-transition);
    opacity: 0;
    animation: tc-fade-up 0.8s var(--tc-transition) 0.7s forwards;
    position: relative;
    overflow: hidden;
}

.tc-hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s var(--tc-transition);
}

.tc-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
    color: var(--tc-white);
}

.tc-hero-cta:hover::before {
    left: 100%;
}

.tc-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--tc-gray-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: tc-bounce 2s ease-in-out infinite;
}

.tc-hero-scroll .arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--tc-gray-light);
    border-bottom: 2px solid var(--tc-gray-light);
    transform: rotate(45deg);
}

@keyframes tc-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.tc-section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vh, 5rem);
}

.tc-section-label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--tc-accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

.tc-section-title {
    font-family: 'TheCreators', var(--tc-font-display), sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 10px;
}

.tc-section-desc {
    max-width: 600px;
    margin: 1rem auto 0;
    color: var(--tc-gray-light);
    font-size: 1.05rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.tc-about {
    background: linear-gradient(180deg, #3d1d57 0%, #1a0533 25%, #1a0533 55%, #2d1b4e 80%, #1a0533 100%);
    position: relative;
    overflow: hidden;
}

.tc-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(192, 80, 255, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 70%, rgba(103, 232, 249, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.tc-about > .tc-container {
    position: relative;
    z-index: 1;
}

.tc-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.tc-about-text p {
    color: var(--tc-gray-light);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.tc-about-text p:last-child {
    margin-bottom: 0;
}

.tc-about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.tc-stat {
    text-align: center;
    padding: 1.5rem 0.5rem;
    background: none;
    border: none;
    position: relative;
    transition: transform 0.4s var(--tc-transition);
}

.tc-stat:hover {
    transform: translateY(-8px) scale(1.05);
}

.tc-stat-number {
    font-family: 'TheCreators', var(--tc-font-display), sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 10px;
    line-height: 1;
    position: relative;
    display: inline-block;
    text-shadow:
        0 0 20px rgba(168, 85, 247, 0.6),
        0 0 40px rgba(192, 80, 255, 0.3),
        0 0 80px rgba(232, 121, 249, 0.15);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    background: none;
}

.tc-stat-number::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5), rgba(103, 232, 249, 0.5), transparent);
}

.tc-stat:hover .tc-stat-number {
    text-shadow:
        0 0 25px rgba(168, 85, 247, 0.8),
        0 0 50px rgba(192, 80, 255, 0.5),
        0 0 100px rgba(232, 121, 249, 0.25),
        0 0 150px rgba(103, 232, 249, 0.1);
}

.tc-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.6rem;
    font-family: 'Space Grotesk', var(--tc-font-body), sans-serif;
    font-weight: 500;
}

.tc-about-visual {
    position: relative;
}

.tc-about-image {
    border-radius: var(--tc-radius);
    overflow: hidden;
    position: relative;
}

.tc-about-image img {
    width: 100%;
    transition: transform 0.6s var(--tc-transition);
}

.tc-about-image:hover img {
    transform: scale(1.05);
}

/* ---- Vaporwave Athena Bust ---- */
.tc-vaporwave-bust {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--tc-radius);
    overflow: hidden;
    background: linear-gradient(180deg, #0d0221 0%, #120228 20%, #1a0533 50%, #2d1b4e 80%, #150525 100%);
    cursor: pointer;
    transform-style: preserve-3d;
}

.tc-vw-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 35%, rgba(192, 80, 255, 0.3) 0%, transparent 55%),
        radial-gradient(ellipse at 30% 70%, rgba(103, 232, 249, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 25%, rgba(232, 121, 249, 0.15) 0%, transparent 45%);
    animation: tc-vw-pulse 5s ease-in-out infinite alternate;
    z-index: 1;
    pointer-events: none;
}

.tc-vw-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.02) 2px,
        rgba(255, 255, 255, 0.02) 4px
    );
    z-index: 5;
    pointer-events: none;
}

.tc-vw-statue {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0.5rem;
    animation: tc-vw-float 6s ease-in-out infinite;
}

.tc-athena-img {
    width: 100%;
    max-width: 460px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.5)) drop-shadow(0 0 60px rgba(192, 80, 255, 0.25));
    transition: filter 0.5s ease, transform 0.5s ease;
}

/* Chromatic aberration layers */
.tc-vw-chromatic {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    animation: tc-vw-float 6s ease-in-out infinite;
}

.tc-chromatic-r,
.tc-chromatic-b {
    position: absolute;
    width: 100%;
    max-width: 460px;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tc-chromatic-r {
    mix-blend-mode: screen;
    filter: hue-rotate(-30deg) saturate(2);
    transform: translate(-4px, -2px);
}

.tc-chromatic-b {
    mix-blend-mode: screen;
    filter: hue-rotate(30deg) saturate(2);
    transform: translate(4px, 2px);
}

.tc-vaporwave-bust:hover .tc-chromatic-r,
.tc-vaporwave-bust:hover .tc-chromatic-b {
    opacity: 0.35;
}

.tc-vaporwave-bust:hover .tc-athena-img {
    filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.7)) drop-shadow(0 0 80px rgba(232, 121, 249, 0.35));
    transform: scale(1.02);
}

/* Retro perspective grid floor */
.tc-vw-grid {
    position: absolute;
    bottom: 0;
    left: -10%;
    right: -10%;
    height: 40%;
    background:
        linear-gradient(90deg, rgba(168, 85, 247, 0.2) 1px, transparent 1px),
        linear-gradient(0deg, rgba(168, 85, 247, 0.2) 1px, transparent 1px);
    background-size: 40px 30px;
    transform: perspective(300px) rotateX(55deg);
    transform-origin: bottom center;
    z-index: 1;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    animation: tc-vw-grid-scroll 4s linear infinite;
}

/* Glitch flash lines */
.tc-vw-glitch {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    opacity: 0;
    animation: tc-vw-glitch 6s ease-in-out infinite;
}

.tc-vw-glitch::before,
.tc-vw-glitch::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
}

.tc-vw-glitch::before {
    top: 28%;
    transform: translateX(-6px);
    background: rgba(232, 121, 249, 0.7);
    box-shadow: 0 0 8px rgba(232, 121, 249, 0.5);
}

.tc-vw-glitch::after {
    top: 62%;
    transform: translateX(6px);
    background: rgba(103, 232, 249, 0.6);
    box-shadow: 0 0 8px rgba(103, 232, 249, 0.4);
}

/* Floating particles container */
.tc-vw-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.tc-vw-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(200, 130, 255, 0.6);
    box-shadow: 0 0 6px rgba(200, 130, 255, 0.4);
    animation: tc-vw-particle-rise linear infinite;
}

.tc-vaporwave-bust:hover .tc-vw-glow {
    animation-duration: 2s;
}

/* Vanilla Tilt glare override */
.tc-vaporwave-bust .js-tilt-glare {
    border-radius: var(--tc-radius);
}

@keyframes tc-vw-pulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

@keyframes tc-vw-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes tc-vw-grid-scroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 30px; }
}

@keyframes tc-vw-glitch {
    0%, 85%, 100% { opacity: 0; }
    87% { opacity: 1; transform: translateX(-4px); }
    89% { opacity: 0; }
    91% { opacity: 1; transform: translateX(4px); }
    93% { opacity: 0.8; transform: translateX(-2px); }
    95% { opacity: 0; }
}

@keyframes tc-vw-particle-rise {
    0% {
        transform: translateY(100%) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(80%) translateX(5px) scale(1);
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-20%) translateX(-10px) scale(0.5);
        opacity: 0;
    }
}

/* ---- Manifesto watermark ---- */
.tc-about-manifesto {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.tc-manifesto-img {
    max-height: 90%;
    max-width: 60%;
    width: auto;
    object-fit: contain;
    object-position: left center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.4s ease, transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    mix-blend-mode: screen;
}

.tc-about-manifesto.active .tc-manifesto-img {
    opacity: 0.18;
    transform: translateY(0);
}

@keyframes tc-manifesto-write {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0%   0 0); }
}

.tc-about-float {
    position: absolute;
    padding: 1rem 1.5rem;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--tc-radius-sm);
    font-size: 0.9rem;
    animation: tc-float 6s ease-in-out infinite;
}

.tc-about-float.top-right {
    top: -20px;
    right: -20px;
}

.tc-about-float.bottom-left {
    bottom: -20px;
    left: -20px;
    animation-delay: -3s;
}

@keyframes tc-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   WORK / PORTFOLIO SECTION
   ============================================ */
.tc-work {
    background: #1a0534;
    position: relative;
    overflow: hidden;
}

.tc-work-space {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    pointer-events: none;
}

.tc-work > .tc-container {
    position: relative;
    z-index: 1;
}

.tc-work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.tc-work-card {
    position: relative;
    border-radius: var(--tc-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--tc-dark);
    transition: transform 0.4s var(--tc-transition), box-shadow 0.4s ease;
}

.tc-work-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.15), 0 0 0 1px rgba(168, 85, 247, 0.1);
}

.tc-work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--tc-transition), filter 0.6s var(--tc-transition);
    z-index: 1;
    position: relative;
}

.tc-work-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.4);
}

.tc-work-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--tc-dark), rgba(168, 85, 247, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: filter 0.6s var(--tc-transition);
}

.tc-work-card-placeholder span {
    font-size: 3rem;
    opacity: 0.08;
    font-weight: 800;
}

.tc-work-card:hover .tc-work-card-placeholder {
    filter: brightness(0.5);
}

.tc-work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s var(--tc-transition);
    z-index: 2;
}

.tc-work-card:hover .tc-work-overlay {
    transform: translateY(0);
    opacity: 1;
}

.tc-work-overlay .tc-work-tag {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    background: rgba(168, 85, 247, 0.25);
    color: #c084fc;
    border-radius: 50px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(168, 85, 247, 0.15);
    backdrop-filter: blur(8px);
}

.tc-work-overlay h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #fff;
}

.tc-work-overlay .tc-work-client {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.tc-work-open-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s var(--tc-transition);
    z-index: 3;
}

.tc-work-card:hover .tc-work-open-icon {
    opacity: 1;
    transform: scale(1);
}

.tc-work-open-icon:hover {
    background: rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.4);
}

/* ============================================
   GLASS GALLERY MODAL (Apple-style)
   ============================================ */
.tc-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4vh 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.tc-gallery-modal.active {
    opacity: 1;
    visibility: visible !important;
    pointer-events: auto;
}

.tc-gm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.tc-gm-container {
    position: relative;
    width: 92vw;
    max-width: 1400px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.92) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tc-gallery-modal.active .tc-gm-container {
    transform: scale(1) translateY(0);
}

.tc-gm-close {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tc-gm-close:hover {
    background: rgba(255, 80, 80, 0.3);
    border-color: rgba(255, 80, 80, 0.5);
    transform: rotate(90deg);
}

.tc-gm-body {
    flex: 1;
    display: flex;
    gap: 0;
    min-height: 0;
    max-height: 92vh;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(20, 10, 35, 0.6);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Mosaic grid */
.tc-gm-mosaic {
    flex: 1;
    min-width: 0;
    padding: 1.25rem;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 160px;
    gap: 8px;
    align-content: start;
    scrollbar-width: thin;
    scrollbar-color: rgba(168, 85, 247, 0.3) transparent;
    /* mosaic minimum height: fits at least 2 rows + padding */
    min-height: calc(160px * 2 + 8px + 2.5rem);
}

.tc-gm-mosaic::-webkit-scrollbar { width: 4px; }
.tc-gm-mosaic::-webkit-scrollbar-thumb { background: rgba(168, 85, 247, 0.3); border-radius: 4px; }

.tc-gm-mosaic-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(168, 85, 247, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tc-gm-mosaic-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.tc-gm-mosaic-item:nth-child(7n+4) {
    grid-column: span 2;
}

.tc-gm-mosaic-item:hover {
    transform: scale(1.025);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.25);
    z-index: 2;
    border-color: rgba(168, 85, 247, 0.25);
}

.tc-gm-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.tc-gm-mosaic-item:hover img {
    transform: scale(1.06);
}

.tc-gm-mosaic-item.is-video {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 5, 20, 0.7);
}

.tc-gm-mosaic-item.is-video .tc-gm-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0.5;
}

.tc-gm-mosaic-item.is-video .tc-gm-play-btn {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.5);
    transition: transform 0.3s ease;
}

.tc-gm-mosaic-item.is-video:hover .tc-gm-play-btn {
    transform: scale(1.15);
}

.tc-gm-mosaic-item .tc-gm-enlarge {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(0,0,0,0.35);
    transition: opacity 0.3s ease;
    color: #fff;
}

.tc-gm-mosaic-item:hover .tc-gm-enlarge {
    opacity: 1;
}

@keyframes tc-gm-fade-in {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Lightbox (opens over modal on item click) */
.tc-gm-lightbox {
    position: absolute;
    inset: 0;
    z-index: 30;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border-radius: 20px;
}

.tc-gm-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.tc-gm-lb-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tc-gm-lb-close:hover {
    background: rgba(255,60,60,0.3);
    transform: rotate(90deg);
}

.tc-gm-lb-media {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 5rem;
}

.tc-gm-lb-media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: tc-gm-fade-in 0.3s ease;
}

.tc-gm-lb-media iframe,
.tc-gm-lb-media video {
    width: 100%;
    max-width: 860px;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: tc-gm-fade-in 0.3s ease;
}

.tc-gm-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tc-gm-lb-nav:hover {
    background: rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.tc-gm-lb-prev { left: 1rem; }
.tc-gm-lb-next { right: 1rem; }

.tc-gm-lb-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 1rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
}

/* Info panel (glass sidebar) */
.tc-gm-info {
    flex: 0 0 320px;
    max-height: 92vh;
    padding: 2.5rem 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.tc-gm-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 0.25rem 0.8rem;
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
    border-radius: 50px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.tc-gm-title {
    font-family: 'TheCreators', var(--tc-font-display), sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tc-gm-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tc-gm-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tc-gm-meta-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.tc-gm-meta-label {
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.7rem;
}

.tc-gm-meta-value {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.tc-gm-link {
    display: inline-block;
    margin-top: auto;
    padding: 0.75rem 1.5rem;
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.tc-gm-link:hover {
    background: rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.5);
    color: #e9d5ff;
    transform: translateY(-2px);
}

.tc-gm-link.hidden {
    display: none;
}

/* Mosaic empty state */
.tc-gm-mosaic-empty {
    grid-column: span 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

/* Modal body scrollbar no scroll */
body.tc-modal-open {
    overflow: hidden;
}

/* ============================================
   CREW / TEAM SECTION
   ============================================ */
.tc-crew {
    background: var(--tc-dark);
    position: relative;
    overflow: hidden;
}

.tc-crew > .tc-container {
    position: relative;
    z-index: 1;
}

.tc-crew-bg-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.tc-crew-bg-cell {
    position: absolute;
    border: 1px solid transparent;
    transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
    will-change: background, border-color, box-shadow;
}

.tc-crew-bg-cell.lit {
    background: rgba(255, 20, 147, 0.1);
    border-color: rgba(255, 20, 147, 0.7);
    box-shadow:
        inset 0 0 18px rgba(255, 20, 147, 0.12),
        0 0 22px rgba(255, 20, 147, 0.2);
}

.tc-crew-bg-cell.lit-near {
    background: rgba(255, 20, 147, 0.04);
    border-color: rgba(255, 20, 147, 0.25);
}

.tc-crew-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tc-crew-card {
    border-radius: var(--tc-radius);
    perspective: 1000px;
    aspect-ratio: 2 / 3;
    position: relative;
    cursor: pointer;
}

.tc-crew-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: var(--tc-radius);
}

.tc-crew-card:hover .tc-crew-card-inner,
.tc-crew-card.flipped .tc-crew-card-inner {
    transform: rotateY(180deg);
}

.tc-crew-card-front,
.tc-crew-card-back {
    position: absolute;
    inset: 0;
    border-radius: var(--tc-radius);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
}

.tc-crew-card-front {
    background: var(--tc-dark-alt);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tc-crew-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(160deg, #0d0221 0%, #1a0533 50%, #2d1b4e 100%);
    border: 1px solid rgba(255, 20, 147, 0.25);
    box-shadow: inset 0 0 60px rgba(168, 85, 247, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.tc-crew-card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--tc-accent), var(--tc-accent-alt));
}

.tc-crew-photo {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--tc-gray);
}

.tc-crew-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--tc-transition);
    filter: grayscale(20%);
}

.tc-crew-card:hover .tc-crew-photo img {
    transform: scale(1.04);
}

.tc-crew-info {
    text-align: center;
    width: 100%;
}

.tc-crew-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--tc-white);
}

.tc-crew-role {
    font-size: 0.8rem;
    color: var(--tc-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.tc-crew-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ============================================
   FRIENDS / PARTNERS SECTION
   ============================================ */
.tc-friends {
    background: var(--tc-black);
    overflow: hidden;
    position: relative;
}

.tc-friends > .tc-container {
    position: relative;
    z-index: 1;
}

.tc-friends-bg-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.tc-friends-bg-cell-wrap {
    position: absolute;
    transition: filter 0.5s;
}

.tc-friends-bg-cell {
    position: absolute;
    inset: 0;
    transition: background 0.5s;
    background: transparent;
}

.tc-friends-bg-cell.up {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.tc-friends-bg-cell.down {
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.tc-friends-bg-cell-wrap.lit .tc-friends-bg-cell {
    background: rgba(0, 212, 255, 0.42);
}

.tc-friends-bg-cell-wrap.lit-near .tc-friends-bg-cell {
    background: rgba(0, 212, 255, 0.12);
}

.tc-friends-bg-cell-wrap.lit {
    filter: drop-shadow(0 0 14px rgba(0, 212, 255, 0.95)) drop-shadow(0 0 5px rgba(0, 212, 255, 0.7));
}

.tc-friends-bg-cell-wrap.lit-near {
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.45));
}

.tc-friends-marquee {
    display: flex;
    gap: 4rem;
    animation: tc-marquee 30s linear infinite;
    padding: 2rem 0;
}

.tc-friends-marquee:hover {
    animation-play-state: paused;
}

@keyframes tc-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tc-friend-logo {
    flex-shrink: 0;
    height: 60px;
    opacity: 0.4;
    filter: grayscale(100%) brightness(2);
    transition: all 0.4s var(--tc-transition);
    cursor: pointer;
}

.tc-friend-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.tc-friends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.tc-friend-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--tc-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--tc-transition);
    width: 100%;
    max-width: 280px;
    aspect-ratio: 16/9;
}

.tc-friend-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.tc-friend-item img {
    
    opacity: 0.5;
    filter: grayscale(100%) brightness(2);
    transition: all 0.4s var(--tc-transition);
}

.tc-friend-item:hover img {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */
.tc-contact {
    background: var(--tc-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tc-contact > .tc-container {
    position: relative;
    z-index: 1;
}

/* ── Decorative images ── */
.tc-contact-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.tc-contact-deco img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 28px rgba(160, 60, 255, 0.35));
}

.tc-contact-deco--athena {
    left: -2%;
    bottom: 0;
    width: clamp(160px, 18vw, 280px);
    animation: tc-deco-float-a 7s ease-in-out infinite;
}

.tc-contact-deco--pc {
    right: -1%;
    bottom: 0;
    width: clamp(140px, 16vw, 260px);
    animation: tc-deco-float-b 8s ease-in-out infinite;
}

@keyframes tc-deco-float-a {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
}

@keyframes tc-deco-float-b {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

@keyframes tc-deco-float-c {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50%       { transform: translateX(-50%) translateY(-8px); }
}

.tc-contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.tc-contact-title {
    font-family: 'TheCreators', var(--tc-font-display), sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.tc-handwritten {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 1.3em;
    font-style: italic;
}

.tc-contact-desc {
    color: var(--tc-gray-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.tc-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.4s var(--tc-transition);
    cursor: pointer;
    border: none;
    font-family: var(--tc-font-primary);
    position: relative;
    overflow: hidden;
}

.tc-btn-primary {
    background: var(--tc-gradient);
    color: var(--tc-white);
}

.tc-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
    color: var(--tc-white);
}

.tc-btn-outline {
    background: transparent;
    color: var(--tc-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tc-btn-outline:hover {
    border-color: var(--tc-accent);
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-3px);
    color: var(--tc-white);
}

.tc-btn-whatsapp {
    background: #25D366;
    color: var(--tc-white);
}

.tc-btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
    color: var(--tc-white);
}

/* ============================================
   FOOTER
   ============================================ */
.tc-footer {
    background: var(--tc-black);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tc-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tc-footer-copy {
    color: var(--tc-gray-light);
    font-size: 0.85rem;
}

.tc-footer-links {
    display: flex;
    gap: 1.5rem;
}

.tc-footer-links a {
    color: var(--tc-gray-light);
    font-size: 0.85rem;
    transition: color 0.3s var(--tc-transition);
}

.tc-footer-links a:hover {
    color: var(--tc-accent);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.tc-whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.4s var(--tc-transition-spring);
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
}

.tc-whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

.tc-whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.tc-whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: tc-whatsapp-ping 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes tc-whatsapp-ping {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================
   SCROLL ANIMATIONS (reveal on scroll)
   ============================================ */
.tc-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--tc-transition), transform 0.8s var(--tc-transition);
}

.tc-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.tc-reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s var(--tc-transition), transform 0.8s var(--tc-transition);
}

.tc-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.tc-reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s var(--tc-transition), transform 0.8s var(--tc-transition);
}

.tc-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.tc-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s var(--tc-transition), transform 0.8s var(--tc-transition);
}

.tc-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.tc-stagger > * {
    transition-delay: calc(var(--i, 0) * 0.1s);
}

/* ============================================
   CURSOR GLOW EFFECT
   ============================================ */
.tc-cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ============================================
   PARTICLE CANVAS
   ============================================ */
#tc-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.tc-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--tc-black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--tc-transition), visibility 0.6s;
}

.tc-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.tc-loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tc-loader-bar {
    width: 200px;
    height: 3px;
    background: var(--tc-gray);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 1.5rem;
}

.tc-loader-bar-inner {
    width: 0;
    height: 100%;
    background: var(--tc-gradient);
    border-radius: 3px;
    animation: tc-loading 1.5s var(--tc-transition) forwards;
}

@keyframes tc-loading {
    to { width: 100%; }
}

/* ============================================
   MAGNETIC EFFECT ON BUTTONS
   ============================================ */
.tc-magnetic {
    transition: transform 0.2s var(--tc-transition);
}

/* ============================================
   HORIZONTAL RULE / DIVIDER
   ============================================ */
.tc-divider {
    width: 60px;
    height: 3px;
    background: var(--tc-gradient);
    border: none;
    border-radius: 3px;
    margin: 2rem auto;
}

/* ============================================
   SERVICES GRID (optional)
   ============================================ */
.tc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tc-service-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--tc-radius);
    transition: all 0.5s var(--tc-transition);
    position: relative;
    overflow: hidden;
}

.tc-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--tc-gradient);
    opacity: 0;
    transition: opacity 0.5s var(--tc-transition);
    z-index: 0;
}

.tc-service-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
}

.tc-service-card:hover::before {
    opacity: 0.08;
}

.tc-service-card > * {
    position: relative;
    z-index: 1;
}

.tc-service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    background: var(--tc-gradient);
    border-radius: var(--tc-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.tc-service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.tc-service-card p {
    color: var(--tc-gray-light);
    font-size: 0.95rem;
}

/* ============================================
   WORDPRESS DEFAULTS
   ============================================ */
.alignnone { margin: 5px 20px 20px 0; }
.aligncenter { display: block; margin: 5px auto; }
.alignright { float: right; margin: 5px 0 20px 20px; }
.alignleft { float: left; margin: 5px 20px 20px 0; }
a img.alignright { float: right; margin: 5px 0 20px 20px; }
a img.alignnone { margin: 5px 20px 20px 0; }
a img.alignleft { float: left; margin: 5px 20px 20px 0; }
a img.aligncenter { display: block; margin-left: auto; margin-right: auto; }

.wp-caption {
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone { margin: 5px 20px 20px 0; }
.wp-caption.alignleft { margin: 5px 20px 20px 0; }
.wp-caption.alignright { margin: 5px 0 20px 20px; }

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--tc-dark);
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: var(--tc-accent);
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media screen and (max-width: 1024px) {
    .tc-about-grid {
        grid-template-columns: 1fr;
    }

    .tc-work-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .tc-menu-toggle {
        display: flex;
    }

    .tc-nav-list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        transform: translateX(100%);
        transition: transform 0.5s var(--tc-transition);
    }

    .tc-nav-list.active {
        transform: translateX(0);
    }

    .tc-nav-link {
        font-size: 1.2rem;
        padding: 1rem;
    }

    /* First section responsive */
    .tc-first-section-grid {
        flex-direction: column;
        min-height: auto;
    }

    .tc-first-section-logo {
        width: 100%;
        padding: 3rem 2rem 2rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        min-height: 50vh;
    }

    .tc-first-logo-img {
        width: 120px;
        max-height: 50vh;
    }

    .tc-first-section-menu {
        padding: 2rem;
        min-height: 50vh;
    }

    .tc-first-menu-list {
        flex-direction: column;
        gap: 0.25rem;
    }

    .tc-first-menu-list .tc-nav-link {
        font-size: 1rem;
        letter-spacing: 4px;
        padding: 1rem;
    }

    .tc-hero-title {
        letter-spacing: -1px;
    }

    .tc-about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .tc-crew-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .tc-work-grid {
        grid-template-columns: 1fr;
    }

    .tc-footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .tc-about-stats {
        grid-template-columns: 1fr;
    }

    .tc-contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tc-btn {
        width: 100%;
        justify-content: center;
    }
}
