.creator-line {
    position: relative;
    display: inline-block;
    color: #66d9ff;
}

#progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2a81ea, #00d2ff, #a855f7, #2a81ea);
    background-size: 200% 100%;
    animation: progressGlow 3s linear infinite;
    z-index: 10000;
    transform-origin: 0 50%;
    transform: scaleX(0);
}

@keyframes progressGlow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

.page-title {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    letter-spacing: 10px;
    filter: blur(8px);
    will-change: transform, opacity;
    transition: opacity 1s cubic-bezier(.22, 1, .36, 1), transform 1s cubic-bezier(.22, 1, .36, 1), filter 1s cubic-bezier(.22, 1, .36, 1);
}
.page-title.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    letter-spacing: -1px;
    filter: blur(0px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: Arial, sans-serif;
}

:root {
    --brand-blue: #2a81ea;
    --brand-cyan: #00d2ff;
    --brand-red: #f03a3a;
    --brand-purple: #a855f7;
    --brand-pink: #ec4899;
    --bg-dark-core: #ffffff;
    --bg-dark-secondary: #f0f2f5;
    --text-pure: #111111;
    --text-dimmed: rgba(0, 0, 0, 0.55);
    --border-glass: rgba(0, 0, 0, 0.06);
    --border-glass-hover: rgba(0, 0, 0, 0.12);
    --font-heading: Arial, sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

html { 
    overflow-x: hidden; 
    width: 100%;
    scroll-padding-top: 90px;
}

body {
    background-color: var(--bg-dark-core);
    color: var(--text-pure);
    font-family: Arial, sans-serif;
    font-weight: 700;
    overflow-x: hidden;
    width: 100%;
}

#splash-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    pointer-events: all;
}

#splash-screen.exploding {
    animation: splashExplode 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes splashExplode {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.15);
    }
}

.splash-text {
    font-size: clamp(26px, 10vw, 400px);
    font-weight: 400;
    color: #111;
    letter-spacing: 2px;
    font-family: 'Changa One', 'Archivo Black', 'Poppins', 'Segoe UI', Arial, sans-serif;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.15), -1px -1px 0 rgba(255,255,255,0.3);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.1;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.splash-text.burst {
    transform: scale(1.8);
    opacity: 0;
}

.splash-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    margin-left: 3px;
    background: #0067f3;
    vertical-align: text-bottom;
    animation: cursorBlink 0.7s ease-in-out infinite;
}

.splash-cursor.hidden {
    opacity: 0;
    animation: none;
}



@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.bg-grid {
    position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: 0.08;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
    animation: orbFloat 20s ease-in-out infinite;
}

.bg-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(42, 129, 234, 0.3), transparent);
    top: -15%;
    right: -10%;
    animation-delay: 0s;
}

.bg-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent);
    bottom: -10%;
    left: -10%;
    animation-delay: -7s;
}

.bg-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15), transparent);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -40px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(40px, 30px) scale(1.02);
    }
}

/* #cursor-glow removed for performance */

::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark-core);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-blue);
}

::selection {
    background: rgba(42, 129, 234, 0.4);
    color: #fff;
}

.center-wrapper {
    max-width: 1150px;
    margin: 0 auto;
    width: 90%;
    position: relative;
    padding-top: 90px;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.is-visible {
    opacity: 1; 
    transform: translateY(0);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.852);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-width: 1150px;
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}


.studio-top-bar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 3px solid var(--border-glass);
    border-radius: 60px;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.brand-block h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
}px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 1px;
}

.gradient-text {
    color: #0067f3;
}

.brand-block h2.gradient-text {
    color: #0067f3;
}

.studio-horizontal-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-btn {
    text-decoration: none;
    color: var(--text-dimmed);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nav-btn::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--brand-blue);
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.nav-btn:hover {
    color: #0067f3;
    background: rgba(0, 103, 243, 0.06);
}

.nav-btn:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.btn-hire {
    background: #0067f3;
    color: #fff;
    text-decoration: none;
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 103, 243, 0.25);
}

.btn-hire:hover {
    transform: translateY(-2px);
    background: #0052cc;
    box-shadow: 0 8px 25px rgba(0, 103, 243, 0.35);
}

.hero-main {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 5px;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 140%;
    z-index: -1;
    background: #1a1f2e;
    overflow: hidden;
    pointer-events: none;
}

.bg-thumb-row {
    position: absolute;
    display: flex;
    gap: 16px;
    white-space: nowrap;
    will-change: transform;
}

.bg-thumb-row img {
    height: 18.5vh;
    width: auto;
    border-radius: 12px;
    opacity: 0.25;
    object-fit: cover;
    filter: saturate(1.4) brightness(0.7);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.bg-thumb-row {
    gap: 16px;
}

.bg-thumb-row-1 { top: 2vh; animation: scrollLeft 50s linear infinite; }
.bg-thumb-row-2 { top: 22vh; animation: scrollRight 60s linear infinite; }
.bg-thumb-row-3 { top: 42vh; animation: scrollLeft 70s linear infinite; }
.bg-thumb-row-4 { top: 62vh; animation: scrollRight 80s linear infinite; }

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #1a1f2e 0%, transparent 15%, transparent 75%, #1a1f2e 100%);
    pointer-events: none;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-66.666%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-66.666%); }
    100% { transform: translateX(0); }
}

.fluid-title {
    font-size: clamp(68px, 11vw, 160px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 8px 25px rgba(0,0,0,0.8), 0 2px 8px rgba(0,0,0,0.6);
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fluid-title .creator-line {
    display: inline-block;
    color: #80c4ff;
}

.minimal-desc-box {
    margin-top: 20px;
    opacity: 0;
    animation: heroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.micro-text {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
    line-height: 1.2;
    margin-bottom: 4px;
}

.custom-italic {
    font-style: italic;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.7);
}

.hero-stats-wrapper {
    max-width: 800px;
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    animation: heroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.metric-card-group {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.metric-node {
    flex: 0 1 360px;
    padding: 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.metric-node::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(42, 129, 234, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.metric-node:hover::before {
    opacity: 1;
}

.metric-node .num {
    display: block;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    color: #111;
    line-height: 1;
    margin-bottom: 10px;
}

.metric-node .lbl {
    font-size: 13px;
    color: var(--text-dimmed);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
}

.hero-btn-group {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.hero-btn-group .btn-firework-burst {
    flex: 0 1 200px;
}

.btn-firework-burst {
    width: 100%;
    background: #0067f3;
    color: #fff;
    padding: 16px;
    font-size: 20px;
    font-weight: 800;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.btn-firework-burst:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 20px 40px rgba(42, 129, 234, 0.4);
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    padding: 28px 32px;
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.07);
    position: relative;
}

.ticker-wrap::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0,212,255,0.12) 0%, transparent 50%, rgba(0,212,255,0.06) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    animation: tickerGlow 4s ease-in-out infinite;
}

.ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,212,255,0.2), transparent);
    pointer-events: none;
    z-index: 2;
}

.ticker-fade {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}
.ticker-fade.left {
    left: 0;
    background: linear-gradient(90deg, #1a1f2e 0%, transparent 100%);
}
.ticker-fade.right {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #1a1f2e 100%);
}

.ticker {
    display: flex;
    align-items: center;
    white-space: nowrap;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    transition: transform 0.05s linear;
}

.ticker.dragging {
    cursor: grabbing;
}

.ticker__item {
    padding: 0 15px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.ticker__item:hover {
    transform: translateY(-3px);
}

.ticker__item img {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.ticker__item:hover img {
    transform: scale(1.12);
    border-color: rgba(0,212,255,0.35);
    box-shadow: 0 8px 28px rgba(0,212,255,0.18), 0 4px 12px rgba(0,0,0,0.3);
}

@keyframes tickerGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.creators-container {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: clamp(60px, 7vw, 90px);
}

.trusted-label {
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
    margin-bottom: clamp(32px, 4vw, 48px);
}

.big-pfp-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(16px, 2vw, 28px);
}

.big-pfp-extras {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(16px, 2vw, 28px);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.45s ease, margin-top 0.5s ease;
    pointer-events: none;
}
.big-pfp-extras.is-expanded {
    max-height: 1200px;
    opacity: 1;
    margin-top: clamp(16px, 2vw, 28px);
    pointer-events: auto;
}

.big-pfp-extras .big-pfp {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.big-pfp-extras.is-expanded .big-pfp {
    opacity: 1;
    transform: translateY(0);
}
.big-pfp-extras.is-expanded .big-pfp:nth-child(1) { transition-delay: 0.05s; }
.big-pfp-extras.is-expanded .big-pfp:nth-child(2) { transition-delay: 0.10s; }
.big-pfp-extras.is-expanded .big-pfp:nth-child(3) { transition-delay: 0.15s; }
.big-pfp-extras.is-expanded .big-pfp:nth-child(4) { transition-delay: 0.20s; }
.big-pfp-extras.is-expanded .big-pfp:nth-child(5) { transition-delay: 0.25s; }
.big-pfp-extras.is-expanded .big-pfp:nth-child(6) { transition-delay: 0.30s; }
.big-pfp-extras.is-expanded .big-pfp:nth-child(7) { transition-delay: 0.35s; }
.big-pfp-extras.is-expanded .big-pfp:nth-child(8) { transition-delay: 0.40s; }
.big-pfp-extras.is-expanded .big-pfp:nth-child(9) { transition-delay: 0.45s; }
.big-pfp-extras.is-expanded .big-pfp:nth-child(10) { transition-delay: 0.50s; }

.big-pfp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.big-pfp:hover {
    transform: translateY(-6px);
}
.big-pfp:hover .big-pfp-img {
    border-color: var(--brand-blue);
    box-shadow: 0 16px 40px -10px rgba(42, 129, 234, 0.35);
}
.big-pfp:hover .big-pfp-name {
    color: var(--brand-blue);
}

.big-pfp-img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.big-pfp-name {
    font-size: clamp(14px, 1.2vw, 16px);
    letter-spacing: 0.04em;
    color: #111;
    text-align: center;
    line-height: 1.1;
    font-weight: 600;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.big-pfp-subs {
    font-size: 11px;
    letter-spacing: 0.10em;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.big-pfp-more {
    margin-top: clamp(32px, 4vw, 44px);
    display: flex;
    justify-content: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    color: #111;
    padding: 13px 26px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.3);
}
.btn-outline:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}
.btn-outline svg {
    transition: transform 0.25s ease;
}
.btn-outline:hover svg {
    transform: translate(2px, -2px);
}




.section-title {
    font-size: clamp(32px, 5vw, 55px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #111;
}

.title-white {
    color: #111111 !important;
    -webkit-text-fill-color: #111 !important;
}

.section-divider {
    height: 1px;
    width: 100%;
    margin: 90px 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.work-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: -20px 0 40px;
    text-align: center;
}

.work-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.work-stat-num {
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 900;
    color: var(--brand-blue);
    line-height: 1;
    letter-spacing: -1px;
}

.work-stat-lbl {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-dimmed);
    font-weight: 600;
}

.work-stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border-glass);
}

@media (max-width: 640px) {
    .work-stats-row {
        gap: 20px;
    }
}

.gallery-container {
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 32px 0 40px;
}

.cat-btn {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 100px;
    border: 1px solid rgba(0,0,0,0.12);
    background: transparent;
    color: rgba(0,0,0,0.55);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.3px;
    user-select: none;
}

.cat-btn:hover {
    color: #000;
    border-color: rgba(0,0,0,0.3);
    background: rgba(0,0,0,0.05);
}

.cat-btn.active {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
}

.thumb-card {
    position: relative;
    aspect-ratio: 16/9;
    background: #e8ecf0;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.thumb-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.thumb-card:hover::after {
    opacity: 1;
}

.thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.thumb-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(42, 129, 234, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(42, 129, 234, 0.1);
    z-index: 2;
}

.thumb-card:hover img {
    transform: scale(1.08);
}

.thumb-card .thumb-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.thumb-card .thumb-overlay span {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-blue);
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 14px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hidden-thumb {
    display: none !important;
}
.fade-in-up {
    will-change: transform, opacity;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.show-more-box {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.btn-show-more {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
    border: none;
    color: #fff;
    padding: 20px 70px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(42, 129, 234, 0.25);
}

.btn-show-more::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-blue));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-show-more:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(42, 129, 234, 0.4);
}

.btn-show-more:hover::before {
    opacity: 1;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 10px;
}

.testimonial-header .section-title {
    margin-bottom: 10px;
}

.testimonial-wrapper {
    margin-top: 40px;
}

.testimonial-badge {
    display: inline-block;
    font-size: clamp(20px, 3vw, 28px);
    color: var(--text-dimmed);
    font-weight: 600;
    letter-spacing: 1px;
}

.testimonial-badge .highlight {
    color: #0067f3;
    font-weight: 600;
    text-shadow: 0 0 1px currentColor;
}

.testimonial-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    height: 580px;
    padding: 0;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-column {
    flex: 1;
    max-width: 320px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-column:nth-child(2) {
    max-width: 380px;
    transform: scale(1.05);
    z-index: 2;
}

.scroll-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    will-change: transform;
    animation: scrollDown 22s linear infinite;
}
.testimonial-column:nth-child(2) .scroll-inner {
    animation-name: scrollDown;
    animation-duration: 26s;
}

@keyframes scrollDown {
    from { transform: translateY(0); }
    to   { transform: translateY(-50%); }
}
@keyframes scrollUp {
    from { transform: translateY(-50%); }
    to   { transform: translateY(0); }
}


.testimonial-card {
    padding: 32px;
    border-radius: 20px;
    transition: transform 0.4s ease, border-color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.testimonial-column:nth-child(2) .testimonial-card {
    padding: 36px 32px;
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(42, 129, 234, 0.15);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.testimonial-column:nth-child(2) .testimonial-card:hover {
    border-color: rgba(42, 129, 234, 0.4);
}

/* testimonial-card::before removed for performance */

.testimonial-card:hover {
    border-color: rgba(42, 129, 234, 0.2);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.author-info {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    filter: grayscale(20%);
    transition: all 0.4s ease;
}

.testimonial-card:hover .author-avatar {
    border-color: var(--brand-blue);
    filter: grayscale(0%);
}

.author-info strong {
    font-size: 1.1rem;
    color: #111;
    font-weight: 700;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-dimmed);
    margin-top: 3px;
}

.quote {
    font-style: normal;
    color: #333;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 300;
    position: relative;
    padding-left: 16px;
    border-left: 2px solid rgba(42, 129, 234, 0.3);
}

.about-me-container {
    padding: 30px 0;
    margin: 0 auto;
    width: 100%;
}

.about-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.about-text {
    flex: 1;
    max-width: 540px;
}

.about-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-dimmed);
    margin-bottom: 15px;
    padding: 6px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.02);
}

.about-title {
    text-align: left !important;
    margin-bottom: 25px !important;
    line-height: 1.1;
    font-size: clamp(36px, 5vw, 52px) !important;
}

.about-text p {
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-highlight {
    font-weight: 900;
    color: #0067f3;
}

.about-lead {
    font-size: clamp(18px, 2vw, 20px) !important;
    font-weight: 400 !important;
    color: #111 !important;
    line-height: 1.7 !important;
}

.about-lead .text-accent {
    color: var(--brand-blue);
    font-weight: 700;
}

.about-visual {
    flex-shrink: 0;
    width: 40%;
    max-width: 380px;
    display: flex;
    justify-content: center;
}

.about-logo-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 30px;
    background: linear-gradient(160deg, #2876e7 , #164281);
    border: 1px solid var(--border-glass);
    animation: floatingEffect 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.about-logo-box::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.05), transparent, rgba(168, 85, 247, 0.05), transparent);
    animation: rotateBorder 8s linear infinite;
}

@keyframes rotateBorder {
    to {
        transform: rotate(360deg);
    }
}

.about-avatar {
    width: 220px;
    height: 220px;
    border-radius: 8%;
    object-fit: cover;
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.logo-name {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.logo-name span {
    color: var(--text-dimmed);
    margin-left: 8px;
    font-weight: 300;
    letter-spacing: 3px;
}

.about-mini-stats {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.849);
    border: 1px solid rgba(255, 255, 255, 0);
}

.mini-stat strong {
    font-size: 18px;
    font-weight: 900;
    color: #000000;
}

.mini-stat span {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dimmed);
    font-weight: 500;
}

@keyframes floatingEffect {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.faq-container {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 80px;
    padding: 0;
}

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

.faq-subtitle {
    color: var(--text-dimmed);
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.faq-box {
    padding: 15px 40px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: clamp(17px, 2vw, 20px);
    transition: all 0.3s ease;
    color: #111;
    padding: 4px 0;
}

.faq-question:hover {
    color: var(--brand-blue);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 15px;
}

.faq-content-inner {
    overflow: hidden;
}

.faq-content-inner p {
    margin: 0;
    color: var(--text-dimmed);
    line-height: 1.8;
    font-weight: 300;
}

.icon-plus {
    font-size: 24px;
    transition: all 0.4s ease;
    font-weight: 300;
    display: inline-block;
}

.faq-item.active .icon-plus {
    transform: rotate(45deg);
    color: var(--brand-blue);
}

.get-in-touch-section {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.contact-cta-box {
    position: relative;
    width: 100%;
    max-width: 1150px;
    background: linear-gradient(180deg, #2876e7, #164281);
    border: none;
    border-radius: 16px;
    padding: 100px 30px;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.contact-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    background: radial-gradient(ellipse at 30% 50%, rgba(42, 129, 234, 0.08), transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(168, 85, 247, 0.05), transparent 60%);
    pointer-events: none;
}

.contact-cta-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
}

.contact-heading {
    margin-bottom: 45px;
}

.contact-subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-cta-box .section-title {
    margin-bottom: 0;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.contact-note {
    margin-top: 18px;
    font-size: clamp(14px, 1.8vw, 16px);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.6;
}

.pill-contact-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}




.pill-btn2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--border-glass);
    background: #0e6ae1;
    color: #FFF;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pill-btn2:hover {
    transform: scale(1.06);
    box-shadow: 0 0 40px rgba(8, 77, 251, 0.9);
}









.pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--border-glass);
    background: #FFF;
    color: var(--text-pure);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pill-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
}

.pill-btn-text {
    font-family: 'Poppins', 'Space Grotesk', Arial, sans-serif;
    font-weight: 900;
    font-size: 17px;
    letter-spacing: 0.5px;
}

.pill-social-row {
    display: flex;
    gap: 8px;
}

.pill-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #1a1f2e;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pill-icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    color: #00d4ff;
}

.pop-icon {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pop-icon.pop-visible {
    opacity: 1;
    transform: scale(1);
}
.pill-btn.pop-icon.pop-visible {
    animation: pulseShake 4.5s ease-in-out infinite;
    animation-delay: 0.6s;
    box-shadow: 0 0 0 0 rgba(42, 129, 234, 0);
    transition: scale 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.pill-btn.pop-icon.pop-visible:hover {
    scale: 1.12;
    box-shadow: 0 0 60px rgba(42, 129, 234, 0.8);
}

@keyframes pulseShake {
    0%   { transform: scale(1)     rotate(0deg);    }
    7%   { transform: scale(1.07)  rotate(0deg);    }
    9%   { transform: scale(1.08)  rotate(0deg);    }
    10.5%{ transform: scale(1.08)  rotate(-2.5deg); }
    12%  { transform: scale(1.08)  rotate(2.5deg);  }
    13.5%{ transform: scale(1.08)  rotate(-2deg);   }
    15%  { transform: scale(1.08)  rotate(2deg);    }
    16.5%{ transform: scale(1.08)  rotate(-1deg);   }
    18%  { transform: scale(1.08)  rotate(0deg);    }
    27%  { transform: scale(1)     rotate(0deg);    }
    48%  { transform: scale(1)     rotate(0deg);    }
    55%  { transform: scale(1.07)  rotate(0deg);    }
    57%  { transform: scale(1.08)  rotate(0deg);    }
    58.5%{ transform: scale(1.08)  rotate(-2.5deg); }
    60%  { transform: scale(1.08)  rotate(2.5deg);  }
    61.5%{ transform: scale(1.08)  rotate(-2deg);   }
    63%  { transform: scale(1.08)  rotate(2deg);    }
    64.5%{ transform: scale(1.08)  rotate(-1deg);   }
    66%  { transform: scale(1.08)  rotate(0deg);    }
    75%  { transform: scale(1)     rotate(0deg);    }
    100% { transform: scale(1)     rotate(0deg);    }
}
.float-avatar.pop-icon {
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.float-avatar.pop-icon.pop-visible {
    opacity: 1;
    animation: floatAnim 8s ease-in-out infinite;
}

@media (max-width: 480px) {
    .pill-btn {
        padding: 12px 24px;
    }
    .pill-btn-text {
        font-size: 13px;
    }
}

.btn-x {
    background-color: #000;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-x:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.copy-btn {
    background-color: #5865F2 !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.2);
}

.copy-btn:hover {
    background-color: #4752C4 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(88, 101, 242, 0.4);
}

.float-avatar {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    animation: floatAnim 8s ease-in-out infinite;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.08);
    filter: grayscale(30%);
    transition: all 0.4s ease;
}



.float-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.av-1 {
    width: 75px;
    height: 75px;
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}
.av-2 {
    width: 95px;
    height: 95px;
    top: 50%;
    left: 12%;
    animation-delay: 1.5s;
}
.av-3 {
    width: 70px;
    height: 70px;
    bottom: 15%;
    left: 4%;
    animation-delay: 0.5s;
}
.av-4 {
    width: 85px;
    height: 85px;
    top: 15%;
    right: 12%;
    animation-delay: 1s;
}
.av-6 {
    width: 90px;
    height: 90px;
    bottom: 18%;
    right: 10%;
    animation-delay: 0.8s;
}
.av-7 {
    width: 60px;
    height: 60px;
    bottom: 45%;
    right: 3%;
    animation-delay: 2.5s;
}

@keyframes floatAnim {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.footer-section {
    width: 100%;
    padding: 80px 5% 0;
    background: linear-gradient(180deg, rgb(40, 118, 231) 0%, rgb(22, 66, 129) 100%);
    box-sizing: border-box;
    position: relative;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-box {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
}

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

.footer-brand-col {
    gap: 14px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-brand-title {
    font-family: 'Paperlogy', 'Archivo Black', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin: 0;
    max-width: 260px;
}

.footer-heading {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    padding: 2px 0;
    font-family: inherit;
    text-align: left;
    width: fit-content;
    background-image: linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.4));
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0% 1px;
    transition: color 0.25s ease, background-size 0.3s ease;
}

.footer-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.45;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-link:hover {
    color: #fff;
    background-size: 100% 1px;
}

.footer-link:hover svg {
    opacity: 1;
    transform: translateX(2px);
}

.footer-email {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    word-break: break-all;
    text-decoration: none;
}
.footer-email:hover {
    color: #fff;
}

.footer-bar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 60px;
}

.footer-brand {
    font-family: 'Archivo Black', Arial, sans-serif;
    font-size: 15px;
    color: #fff;
    letter-spacing: -0.3px;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

@media (max-width: 900px) {
    .footer-box { grid-template-columns: 1fr 1fr; gap: 36px 48px; }
    .footer-desc { max-width: 100%; }
}

@media (max-width: 600px) {
    .footer-section { padding: 40px 5% 0; }
    .footer-box { grid-template-columns: 1fr; gap: 28px; }
    .footer-bar { flex-direction: column; gap: 8px; text-align: center; padding: 16px 0; }
}

.toast-notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 36, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 32px;
    text-align: center;
    z-index: 10000;
    opacity: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: max-content;
}

.toast-notification.active {
    bottom: 40px;
    opacity: 1;
}

.toast-notification p {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
    width: 100%;
    border-radius: 0 0 16px 16px;
}

.toast-notification.active .toast-progress {
    animation: liveLine 3.5s linear forwards;
}

@keyframes liveLine {
    0% {
        width: 100%;
    }
    100% {
        width: 0%;
    }
}

.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 10, 0.95);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

.close-modal {
    position: absolute;
    top: 40px;
    right: 50px;
    font-size: 40px;
    color: #111;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 300;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    line-height: 1;
}

.close-modal:hover {
    color: var(--brand-red);
    transform: scale(1.1) rotate(90deg);
    background: rgba(240, 58, 58, 0.1);
    border-color: rgba(240, 58, 58, 0.2);
}

.modal-content-wrapper {
    max-width: 1400px;
    width: 100%;
    text-align: center;
}

.modal-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(18, 22, 30, 0.7);
    backdrop-filter: blur(10px);
    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;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    box-shadow: 0 10px 30px rgba(42, 129, 234, 0.3);
}

@media (max-width: 992px) {
    .about-content-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 50px;
    }
    .about-text {
        max-width: 100%;
    }
    .about-title {
        text-align: center !important;
    }
    .about-visual {
        width: 100%;
        max-width: 320px;
    }
    .testimonial-wrapper {
        height: 480px;
        gap: 16px;
    }
    .hide-on-mobile {
        display: none;
    }
    .testimonial-column {
        max-width: 48%;
    }
    .testimonial-card {
        padding: 24px;
    }
    .av-2, .av-4, .av-6, .av-7 {
        display: none;
    }
    .contact-cta-box {
        padding: 80px 30px;
    }
}

@media (max-width: 768px) {
    .center-wrapper {
        padding-top: 15px;
    }
    .studio-top-bar {
        position: relative;
        top: 0;
        flex-direction: column;
        padding: 14px 18px;
        gap: 12px;
        border-radius: 24px;
    }
    .brand-block h2 {
        font-size: 20px;
    }
    .btn-hire {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        text-align: center;
        display: block;
    }
    .studio-horizontal-menu {
        width: 100%;
        justify-content: center;
        gap: 4px;
        flex-wrap: wrap;
    }
    .nav-btn {
        font-size: 13px;
        padding: 7px 14px;
    }
    .hero-main {
        margin-bottom: 40px;
        padding-top: 30px;
    }
    .fluid-title {
        font-size: clamp(44px, 12vw, 100px);
        letter-spacing: -2px;
    }
    .metric-card-group {
        flex-direction: column;
        gap: 15px;
    }
    .metric-node {
        padding: 30px 20px;
    }
    .btn-firework-burst {
        padding: 18px;
        font-size: 16px;
    }
    .ticker-wrap {
        padding: 10px 0;
        margin-top: 20px;
    }
    .ticker__item {
        padding: 0 10px;
    }
    .ticker__item img {
        width: 80px;
        height: 80px;
        border-radius: 10px;
    }
    .big-pfp-row,
    .big-pfp-extras {
        gap: 10px;
    }
    .big-pfp {
        gap: 8px;
    }
    .big-pfp-name {
        font-size: 11px;
        letter-spacing: 0.05em;
    }
    .big-pfp-subs {
        display: none;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .about-title {
        font-size: clamp(32px, 9vw, 42px) !important;
        margin-bottom: 20px !important;
    }
    .about-text p {
        font-size: 15px;
        line-height: 1.8;
    }
    .about-logo-box {
        border-radius: 24px;
        gap: 12px;
    }
    .about-avatar {
        width: 160px;
        height: 160px;
    }
    .about-mini-stats {
        gap: 8px;
        margin-top: 4px;
    }
    .mini-stat {
        padding: 6px 14px;
        border-radius: 12px;
    }
    .mini-stat strong {
        font-size: 15px;
    }
    .mini-stat span {
        font-size: 9px;
        letter-spacing: 1px;
    }
    .testimonial-wrapper {
        flex-direction: column;
        height: auto !important;
        overflow: visible;
        gap: 16px;
    }
    .hide-on-mobile,
    .hide-on-tablet {
        display: block !important;
    }
    .testimonial-column {
        max-width: 100% !important;
        width: 100% !important;
        max-height: none !important;
        overflow: visible !important;
        transform: none !important;
    }
    .scroll-inner {
        animation: none !important;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    .scroll-inner > .testimonial-card:nth-child(n+6) {
        display: none;
    }
    .faq-box {
        padding: 15px 20px;
    }
    .contact-cta-box {
        padding: 60px 20px;
        border-radius: 30px;
        width: 100%;
    }
    .av-1 {
        width: 40px;
        height: 40px;
        top: 15px;
        left: 15px;
        opacity: 0.5;
    }
    .av-3 {
        width: 40px;
        height: 40px;
        bottom: 15px;
        left: 15px;
        opacity: 0.5;
    }
    .contact-title {
        font-size: clamp(30px, 9vw, 40px) !important;
    }
    .pill-contact-container {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .pill-btn {
        width: 100%;
        padding: 15px;
        font-size: 14px;
    }
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .ticker-wrap {
        padding: 6px 0;
        margin-top: 12px;
        border-radius: 10px;
    }
    .ticker__item {
        padding: 0 4px;
    }
    .ticker__item img {
        width: 36px;
        height: 36px;
        border-radius: 6px;
    }
    .author-avatar {
        width: 36px;
        height: 36px;
    }
    .about-avatar {
        width: 120px;
        height: 120px;
    }
}

.page-email {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #080b12;
    position: relative;
    overflow: hidden;
}
.page-email .bg-overlay-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}
.page-email .bg-overlay-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #2563EB, transparent);
    top: -20%; right: -15%;
    animation: orbFloat 25s ease-in-out infinite;
}
.page-email .bg-overlay-orb-2 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, #7c3aed, transparent);
    bottom: -20%; left: -15%;
    animation: orbFloat 25s ease-in-out infinite;
    animation-delay: -8s;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    25% { transform: translate(40px,-50px) scale(1.05); }
    50% { transform: translate(-30px,30px) scale(0.95); }
    75% { transform: translate(50px,40px) scale(1.02); }
}

.page-email .hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}
.page-email .bg-thumb-row {
    left: 0;
}
.page-email .bg-thumb-row img {
    opacity: 0.3;
    filter: saturate(1.4) brightness(0.7);
}
.page-email .bg-thumb-row-1,
.page-email .bg-thumb-row-2,
.page-email .bg-thumb-row-3,
.page-email .bg-thumb-row-4 {
    animation: none;
}
.page-email .hero-bg::after {
    background: radial-gradient(ellipse at center, transparent 25%, #080b12 80%);
}
.page-email .email-header {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 24px 0;
}
.page-email .email-header-logo {
    font-family: 'Archivo', Arial, sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: #f8fafc;
    opacity: 0;
    animation: fadeSlideIn 0.6s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.page-email .email-header-logo span { color: #2563EB; }
.page-email .email-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeSlideIn 0.6s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.page-email .email-header-right a {
    color: rgba(148, 163, 184, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-email .email-header-right a:hover {
    color: #fff;
    border-color: rgba(37, 99, 235, 0.4);
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}
.page-email .email-main {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px 24px;
}
.page-email .email-card {
    width: 100%;
    max-width: 500px;
    background: rgba(8, 11, 18, 0.5);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 44px 40px 40px;
    backdrop-filter: blur(16px);
    opacity: 0;
    animation: cardIn 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes cardIn {
    0% { opacity: 0; transform: translateY(30px) scale(0.97); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.page-email .email-card h1 {
    font-family: 'Archivo', Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(26px, 3.5vw, 36px);
    letter-spacing: -1px;
    line-height: 1.15;
    margin: 0 0 6px;
    text-align: center;
}
.page-email .email-card .sub {
    color: rgba(148, 163, 184, 0.8);
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 32px;
}
.page-email .form-group {
    margin-bottom: 18px;
    opacity: 0;
    animation: fieldIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.page-email .form-group:nth-child(1) { animation-delay: 0.45s; }
.page-email .form-group:nth-child(2) { animation-delay: 0.55s; }
.page-email .form-group:nth-child(3) { animation-delay: 0.65s; }
.page-email .form-group:nth-child(4) { animation-delay: 0.75s; }
@keyframes fieldIn {
    0% { opacity: 0; transform: translateY(16px); }
    100% { opacity: 1; transform: translateY(0); }
}
.page-email .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
    color: rgba(248, 250, 252, 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.page-email .form-group input,
.page-email .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #f8fafc;
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-email .form-group input:focus,
.page-email .form-group textarea:focus {
    border-color: #2563EB;
    background: rgba(37, 99, 235, 0.06);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12), 0 4px 20px rgba(37, 99, 235, 0.08);
}
.page-email .form-group textarea { resize: vertical; min-height: 110px; }
.page-email .form-group input::placeholder,
.page-email .form-group textarea::placeholder {
    color: rgba(148, 163, 184, 0.4);
}
.page-email .submit-btn {
    width: 100%;
    padding: 16px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #2563EB, #7c3aed);
    color: #fff;
    font-family: 'Archivo', Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fieldIn 0.5s 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.page-email .submit-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: rotate(25deg);
    transition: left 0.6s ease;
}
.page-email .submit-btn:hover::after { left: 120%; }
.page-email .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}
.page-email .submit-btn:active { transform: scale(0.97); }
.page-email .submit-btn.loading { pointer-events: none; }
.page-email .submit-btn .btn-text { position: relative; z-index: 1; transition: opacity 0.3s ease; }
.page-email .submit-btn.loading .btn-text { opacity: 0; }
.page-email .submit-btn .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 2px solid rgba(255,255,255,0.2);
    border-top-color: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.page-email .submit-btn.loading .spinner {
    opacity: 1;
    animation: spin 0.6s linear infinite;
}
.page-email .success-state { display: none; flex-direction: column; align-items: center; text-align: center; }
.page-email .success-state.active { display: flex; }
.page-email .success-ring { position: relative; width: 96px; height: 96px; margin-bottom: 24px; }
.page-email .success-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.page-email .success-ring .track { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 3; }
.page-email .success-ring .arc {
    fill: none;
    stroke: url(#successGrad);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: drawArc 0.8s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes drawArc { to { stroke-dashoffset: 0; } }
.page-email .success-ring .check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    opacity: 0;
    animation: checkAppear 0.5s 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.page-email .success-ring .check svg {
    stroke: #2563EB;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
@keyframes checkAppear {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.page-email .success-state h2 {
    font-family: 'Archivo', Arial, sans-serif;
    font-weight: 900;
    font-size: 24px;
    margin: 0 0 6px;
    opacity: 0;
    animation: fadeSlideUp 0.5s 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.page-email .success-state p {
    color: rgba(148, 163, 184, 0.8);
    font-size: 15px;
    margin: 0 0 32px;
    opacity: 0;
    animation: fadeSlideUp 0.5s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 1; transform: translateY(0); }
}
.page-email .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563EB;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    opacity: 0;
    animation: fadeSlideUp 0.5s 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: gap 0.25s ease, color 0.25s ease;
}
.page-email .back-link:hover { gap: 14px; color: #7c3aed; }
.page-email .back-link svg { transition: transform 0.25s ease; }
.page-email .back-link:hover svg { transform: translateX(2px); }
.page-email .email-footer {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 600px;
    padding: 0 24px 28px;
    text-align: center;
    opacity: 0;
    animation: fadeSlideIn 0.6s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.page-email .email-footer p { color: rgba(148, 163, 184, 0.5); font-size: 13px; font-weight: 500; }

@media (max-width: 520px) {
    .page-email .bg-thumb-row img { height: 12vh; }
    .page-email .email-card { padding: 32px 20px 28px; border-radius: 20px; }
    .page-email .email-card h1 { font-size: 24px; }
    .page-email .form-group input,
    .page-email .form-group textarea { padding: 12px 14px; font-size: 14px; border-radius: 12px; }
    .page-email .submit-btn { padding: 14px; font-size: 15px; }
    .page-email .email-header { padding: 20px 16px 0; }
    .page-email .email-main { padding: 24px 16px; }
    .page-email .success-ring { width: 76px; height: 76px; }
}

@media (prefers-reduced-motion: reduce) {
    .page-email .bg-thumb-row,
    .page-email .email-card,
    .page-email .form-group,
    .page-email .submit-btn,
    .page-email .success-ring .arc,
    .page-email .success-ring .check,
    .page-email .success-state h2,
    .page-email .success-state p,
    .page-email .back-link,
    .page-email .email-header-logo,
    .page-email .email-header-right,
    .page-email .email-footer {
        animation: none !important;
        opacity: 1 !important;
    }
    .page-email .submit-btn::after { display: none; }
    .page-email .submit-btn .spinner { animation: none !important; }
}

@keyframes fadeSlideIn {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
